mirror of
https://github.com/open-goal/jak-project
synced 2026-08-20 22:35:07 -04:00
5d5e35fb9b
## Problem Windows builds break with a current local toolchain (Scoop LLVM 22.1.8, CMake 4.4.0, VS 2026), in two independent ways: 1. The build stops at curl's deliberate guard: `#error "no non-blocking method was found/used/set"` in `third-party/curl/lib/nonblock.c`. 2. From the second configure onward, `cmake --build` re-runs CMake in an endless loop (observed 42 consecutive reconfigure cycles in a single build). Likely the same mechanism behind the "endlessly building" VS 2026 note in `docs/setup/dev/vs.md`. ## Root cause 1. `third-party/curl/CMake/CurlTests.c` passes `int *` to `ioctlsocket()`, whose third parameter is `u_long *`. Clang 22 promotes `-Wincompatible-pointer-types` to a hard error in C, so the `HAVE_IOCTLSOCKET_FIONBIO` try_compile silently fails and `curl_config.h` never defines it. Upstream CI does not see this because the windows-2022 runner image ships an older LLVM. GCC 14 promotes the same warning to a hard error, which is very likely the `CurlTests.c.obj` failure reported from MSYS2 in open-goal/jak-project#3551. Upstream curl hit the identical problem with GCC 14 and fixed the probe in curl 8.8.0 (curl/curl#13578). 2. The root CMakeLists copies the build tree's `compile_commands.json` into `<src>/build/` for clangd using `configure_file()`, which registers its input as a configure dependency. CMake rewrites `compile_commands.json` late in every generation, after `CTestTestfile.cmake` and `cmake_install.cmake` (outputs of the same Ninja regen rule), so once the dependency is registered the rule is deterministically dirty and every `ninja` invocation re-runs CMake. A pristine first configure is safe (the file does not exist yet, so the `if(EXISTS ...)` guard skips the copy), which is why the loop looks machine- or IDE-specific. ## Fix 1. Per review, re-vendor `third-party/curl` at the `curl-8_21_0` tag (previously `curl-8_3_0`), which carries the upstream probe fix plus two years of upstream development; `vendor.yaml` updated to match. Adjustments the version jump forced: - curl 8.15 removed the native macOS Secure Transport backend (`CURL_USE_SECTRANSP`), so macOS now builds curl against OpenSSL like Linux. The two macOS workflows install Homebrew `openssl@3` and export `OPENSSL_ROOT_DIR` (keg-only), and the macOS setup docs gained the same two lines. - `CURL_BROTLI` / `CURL_ZSTD` switched to AUTO-detection in curl 8.10; pinned OFF to keep the previous no-compression behavior and avoid silently linking whatever the CI images happen to have. - curl's new top-level `BUILD_EXAMPLES` cache option (default ON) leaked into discord-rpc's identically named option and broke configure at a nonexistent `examples/send-presence` directory; pinned OFF ahead of the third-party subdirectories. The diff is dominated by the mechanical tag-tree swap under `third-party/curl` (linguist-vendored, collapsed in review). The hand-written changes are `CMakeLists.txt`, the two macOS workflows, `docs/setup/system/macos.md`, and `vendor.yaml`. 2. Swap `configure_file()` for `file(COPY ...)`: the same clangd copy with no configure dependency registered. (`file(COPY_FILE ... ONLY_IF_DIFFERENT)` would be cleaner still but requires CMake 3.21, above the declared `cmake_minimum_required(VERSION 3.10)`.) ## Test plan - [x] Fresh `cmake --preset Release-windows-clang` (LLVM 22, no cache seeding) completes and logs `Enabled SSL backends: Schannel`; the FIONBIO probe passes without the previous `#error` - [x] Full Windows Release build from scratch in the branch worktree (all 1422 targets) - [x] goalc-test suite: 1509 passed, 0 failed - [x] Second consecutive configure with `compile_commands.json` present: the regen rule in `build.ninja` has no `compile_commands.json` input; `<src>/build/compile_commands.json` is still refreshed for clangd - [x] Repeated `ninja` invocations after a full build no longer re-run CMake - [x] macOS Intel and ARM CI green (first exercise of the OpenSSL backend switch) --- I work off a self-hosted forge, so this GitHub account is quiet; the configure logs and ninja dirty-node traces from the investigation are available if anyone wants the raw data. (AI-assisted)
342 lines
12 KiB
C
Vendored
Generated
342 lines
12 KiB
C
Vendored
Generated
#ifndef HEADER_CURL_VAUTH_H
|
|
#define HEADER_CURL_VAUTH_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) Steve Holme, <steve_holme@hotmail.com>.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
* SPDX-License-Identifier: curl
|
|
*
|
|
***************************************************************************/
|
|
#include "curl_setup.h"
|
|
|
|
#include "bufref.h"
|
|
#include "curlx/dynbuf.h"
|
|
#include "urldata.h"
|
|
|
|
struct Curl_easy;
|
|
struct Curl_creds;
|
|
struct connectdata;
|
|
struct Curl_peer;
|
|
|
|
#ifndef CURL_DISABLE_DIGEST_AUTH
|
|
struct digestdata;
|
|
#endif
|
|
|
|
#ifdef USE_NTLM
|
|
struct ntlmdata;
|
|
#endif
|
|
|
|
#if (defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)) && defined(USE_SPNEGO)
|
|
struct negotiatedata;
|
|
#endif
|
|
|
|
#ifdef USE_GSASL
|
|
struct gsasldata;
|
|
#endif
|
|
|
|
#ifdef USE_WINDOWS_SSPI
|
|
#include "curl_sspi.h"
|
|
#define GSS_ERROR(status) ((status) & 0x80000000)
|
|
#endif
|
|
|
|
/*
|
|
* Curl_auth_allowed_to_host() tells if authentication, cookies or other
|
|
* "sensitive data" can (still) be sent to this host.
|
|
*/
|
|
bool Curl_auth_allowed_to_host(struct Curl_easy *data);
|
|
bool Curl_auth_allowed_to_origin(struct Curl_easy *data,
|
|
struct Curl_peer *origin);
|
|
|
|
/* This is used to build an SPN string */
|
|
#ifndef USE_WINDOWS_SSPI
|
|
char *Curl_auth_build_spn(const char *service, const char *host,
|
|
const char *realm);
|
|
#else
|
|
TCHAR *Curl_auth_build_spn(const char *service, const char *host,
|
|
const char *realm);
|
|
#endif
|
|
|
|
/* This is used to test if the user contains a Windows domain name */
|
|
bool Curl_auth_user_contains_domain(struct Curl_creds *creds);
|
|
|
|
/* This is used to generate a PLAIN cleartext message */
|
|
CURLcode Curl_auth_create_plain_message(struct Curl_creds *creds,
|
|
struct bufref *out);
|
|
|
|
/* This is used to generate a LOGIN cleartext message */
|
|
void Curl_auth_create_login_message(const char *value, struct bufref *out);
|
|
|
|
/* This is used to generate an EXTERNAL cleartext message */
|
|
void Curl_auth_create_external_message(const char *user, struct bufref *out);
|
|
|
|
#ifndef CURL_DISABLE_DIGEST_AUTH
|
|
/* This is used to generate a CRAM-MD5 response message */
|
|
CURLcode Curl_auth_create_cram_md5_message(const struct bufref *chlg,
|
|
struct Curl_creds *creds,
|
|
struct bufref *out);
|
|
|
|
/* This is used to evaluate if DIGEST is supported */
|
|
bool Curl_auth_is_digest_supported(void);
|
|
|
|
/* This is used to generate a base64 encoded DIGEST-MD5 response message */
|
|
CURLcode Curl_auth_create_digest_md5_message(struct Curl_easy *data,
|
|
const struct bufref *chlg,
|
|
struct Curl_creds *creds,
|
|
const char *default_service,
|
|
struct bufref *out);
|
|
|
|
/* This is used to decode an HTTP DIGEST challenge message */
|
|
CURLcode Curl_auth_decode_digest_http_message(const char *chlg,
|
|
struct digestdata *digest);
|
|
|
|
/* This is used to generate an HTTP DIGEST response message */
|
|
CURLcode Curl_auth_create_digest_http_message(struct Curl_easy *data,
|
|
struct Curl_creds *creds,
|
|
const unsigned char *request,
|
|
const unsigned char *uripath,
|
|
struct digestdata *digest,
|
|
char **outptr, size_t *outlen);
|
|
|
|
/* This is used to clean up the digest specific data */
|
|
void Curl_auth_digest_cleanup(struct digestdata *digest);
|
|
#else
|
|
#define Curl_auth_digest_cleanup(x)
|
|
#define Curl_auth_is_digest_supported() FALSE
|
|
#endif /* !CURL_DISABLE_DIGEST_AUTH */
|
|
|
|
#ifdef USE_GSASL
|
|
|
|
/* meta key for storing GSASL meta at connection */
|
|
#define CURL_META_GSASL_CONN "meta:auth:gsasl:conn"
|
|
|
|
#include <gsasl.h>
|
|
struct gsasldata {
|
|
Gsasl *ctx;
|
|
Gsasl_session *client;
|
|
};
|
|
|
|
struct gsasldata *Curl_auth_gsasl_get(struct connectdata *conn);
|
|
|
|
/* This is used to evaluate if MECH is supported by gsasl */
|
|
bool Curl_auth_gsasl_is_supported(struct Curl_easy *data,
|
|
const char *mech,
|
|
struct gsasldata *gsasl);
|
|
/* This is used to start a gsasl method */
|
|
CURLcode Curl_auth_gsasl_start(struct Curl_easy *data,
|
|
struct Curl_creds *creds,
|
|
struct gsasldata *gsasl);
|
|
|
|
/* This is used to process and generate a new SASL token */
|
|
CURLcode Curl_auth_gsasl_token(struct Curl_easy *data,
|
|
const struct bufref *chlg,
|
|
struct gsasldata *gsasl,
|
|
struct bufref *out);
|
|
|
|
/* This is used to clean up the gsasl specific data */
|
|
void Curl_auth_gsasl_cleanup(struct gsasldata *gsasl);
|
|
#endif
|
|
|
|
#ifdef USE_NTLM
|
|
|
|
/* meta key for storing NTML meta at connection */
|
|
#define CURL_META_NTLM_CONN "meta:auth:ntml:conn"
|
|
/* meta key for storing NTML-PROXY meta at connection */
|
|
#define CURL_META_NTLM_PROXY_CONN "meta:auth:ntml-proxy:conn"
|
|
|
|
struct ntlmdata {
|
|
#ifdef USE_WINDOWS_SSPI
|
|
/* The sslContext is used for the Schannel bindings. The
|
|
* api is available on the Windows 7 SDK and later.
|
|
*/
|
|
#ifdef SECPKG_ATTR_ENDPOINT_BINDINGS
|
|
CtxtHandle *sslContext;
|
|
#endif
|
|
CredHandle *credentials;
|
|
CtxtHandle *context;
|
|
SEC_WINNT_AUTH_IDENTITY identity;
|
|
SEC_WINNT_AUTH_IDENTITY *p_identity;
|
|
size_t token_max;
|
|
BYTE *output_token;
|
|
BYTE *input_token;
|
|
size_t input_token_len;
|
|
TCHAR *spn;
|
|
#else
|
|
unsigned int flags;
|
|
unsigned char nonce[8];
|
|
unsigned int target_info_len;
|
|
void *target_info; /* TargetInfo received in the NTLM type-2 message */
|
|
#endif
|
|
};
|
|
|
|
/* This is used to evaluate if NTLM is supported */
|
|
bool Curl_auth_is_ntlm_supported(void);
|
|
|
|
struct ntlmdata *Curl_auth_ntlm_get(struct connectdata *conn, bool proxy);
|
|
void Curl_auth_ntlm_remove(struct connectdata *conn, bool proxy);
|
|
|
|
/* This is used to clean up the NTLM specific data */
|
|
void Curl_auth_cleanup_ntlm(struct ntlmdata *ntlm);
|
|
|
|
/* This is used to generate a base64 encoded NTLM type-1 message */
|
|
CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data,
|
|
struct Curl_creds *creds,
|
|
const char *default_service,
|
|
const char *host,
|
|
struct ntlmdata *ntlm,
|
|
struct bufref *out);
|
|
|
|
/* This is used to decode a base64 encoded NTLM type-2 message */
|
|
CURLcode Curl_auth_decode_ntlm_type2_message(struct Curl_easy *data,
|
|
const struct bufref *type2ref,
|
|
struct ntlmdata *ntlm);
|
|
|
|
/* This is used to generate a base64 encoded NTLM type-3 message */
|
|
CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data,
|
|
struct Curl_creds *creds,
|
|
struct ntlmdata *ntlm,
|
|
struct bufref *out);
|
|
|
|
#else
|
|
#define Curl_auth_is_ntlm_supported() FALSE
|
|
#endif /* USE_NTLM */
|
|
|
|
/* This is used to generate a base64 encoded OAuth 2.0 message */
|
|
CURLcode Curl_auth_create_oauth_bearer_message(struct Curl_creds *creds,
|
|
const char *host,
|
|
const long port,
|
|
struct bufref *out);
|
|
|
|
/* This is used to generate a base64 encoded XOAuth 2.0 message */
|
|
CURLcode Curl_auth_create_xoauth_bearer_message(struct Curl_creds *creds,
|
|
struct bufref *out);
|
|
|
|
#ifdef USE_KERBEROS5
|
|
|
|
/* meta key for storing KRB5 meta at connection */
|
|
#define CURL_META_KRB5_CONN "meta:auth:krb5:conn"
|
|
|
|
struct kerberos5data {
|
|
#ifdef USE_WINDOWS_SSPI
|
|
CredHandle *credentials;
|
|
CtxtHandle *context;
|
|
TCHAR *spn;
|
|
SEC_WINNT_AUTH_IDENTITY identity;
|
|
SEC_WINNT_AUTH_IDENTITY *p_identity;
|
|
size_t token_max;
|
|
BYTE *output_token;
|
|
#else
|
|
gss_ctx_id_t context;
|
|
gss_name_t spn;
|
|
#endif
|
|
};
|
|
|
|
struct kerberos5data *Curl_auth_krb5_get(struct connectdata *conn);
|
|
|
|
/* This is used to evaluate if GSSAPI (Kerberos V5) is supported */
|
|
bool Curl_auth_is_gssapi_supported(void);
|
|
|
|
/* This is used to generate a base64 encoded GSSAPI (Kerberos V5) user token
|
|
message */
|
|
CURLcode Curl_auth_create_gssapi_user_message(struct Curl_easy *data,
|
|
struct Curl_creds *creds,
|
|
const char *default_service,
|
|
const char *host,
|
|
const bool mutual_auth,
|
|
const struct bufref *chlg,
|
|
struct kerberos5data *krb5,
|
|
struct bufref *out);
|
|
|
|
/* This is used to generate a base64 encoded GSSAPI (Kerberos V5) security
|
|
token message */
|
|
CURLcode Curl_auth_create_gssapi_security_message(struct Curl_easy *data,
|
|
const char *authzid,
|
|
const struct bufref *chlg,
|
|
struct kerberos5data *krb5,
|
|
struct bufref *out);
|
|
|
|
/* This is used to clean up the GSSAPI specific data */
|
|
void Curl_auth_cleanup_gssapi(struct kerberos5data *krb5);
|
|
#else
|
|
#define Curl_auth_is_gssapi_supported() FALSE
|
|
#endif /* USE_KERBEROS5 */
|
|
|
|
#ifdef USE_SPNEGO
|
|
|
|
bool Curl_auth_is_spnego_supported(void);
|
|
|
|
/* meta key for storing NEGO meta at connection */
|
|
#define CURL_META_NEGO_CONN "meta:auth:nego:conn"
|
|
/* meta key for storing NEGO PROXY meta at connection */
|
|
#define CURL_META_NEGO_PROXY_CONN "meta:auth:nego-proxy:conn"
|
|
|
|
/* Struct used for Negotiate (SPNEGO) authentication */
|
|
struct negotiatedata {
|
|
#ifdef HAVE_GSSAPI
|
|
OM_uint32 status;
|
|
gss_ctx_id_t context;
|
|
gss_name_t spn;
|
|
gss_buffer_desc output_token;
|
|
#ifdef GSS_C_CHANNEL_BOUND_FLAG
|
|
struct dynbuf channel_binding_data;
|
|
#endif
|
|
#else
|
|
#ifdef USE_WINDOWS_SSPI
|
|
#ifdef SECPKG_ATTR_ENDPOINT_BINDINGS
|
|
CtxtHandle *sslContext;
|
|
#endif
|
|
SECURITY_STATUS status;
|
|
CredHandle *credentials;
|
|
CtxtHandle *context;
|
|
SEC_WINNT_AUTH_IDENTITY identity;
|
|
SEC_WINNT_AUTH_IDENTITY *p_identity;
|
|
TCHAR *spn;
|
|
size_t token_max;
|
|
BYTE *output_token;
|
|
size_t output_token_length;
|
|
#endif
|
|
#endif
|
|
BIT(noauthpersist);
|
|
BIT(havenoauthpersist);
|
|
BIT(havenegdata);
|
|
BIT(havemultiplerequests);
|
|
};
|
|
|
|
struct negotiatedata *Curl_auth_nego_get(struct connectdata *conn, bool proxy);
|
|
|
|
/* This is used to decode a base64 encoded SPNEGO (Negotiate) challenge
|
|
message */
|
|
CURLcode Curl_auth_decode_spnego_message(struct Curl_easy *data,
|
|
struct Curl_creds *creds,
|
|
const char *default_service,
|
|
const char *host,
|
|
const char *chlg64,
|
|
struct negotiatedata *nego);
|
|
|
|
/* This is used to generate a base64 encoded SPNEGO (Negotiate) response
|
|
message */
|
|
CURLcode Curl_auth_create_spnego_message(struct negotiatedata *nego,
|
|
char **outptr, size_t *outlen);
|
|
|
|
/* This is used to clean up the SPNEGO specific data */
|
|
void Curl_auth_cleanup_spnego(struct negotiatedata *nego);
|
|
|
|
#endif /* USE_SPNEGO */
|
|
|
|
#endif /* HEADER_CURL_VAUTH_H */
|