Aka "jumbo" or "amalgamation" builds. It means to compile all sources per target as a single C source. This is experimental. You can enable it by passing `-DCMAKE_UNITY_BUILD=ON` to cmake. It requires CMake 3.16 or newer. It makes builds (much) faster, allows for better optimizations and tends to promote less ambiguous code. Also add a new AppVeyor CI job and convert an existing one to use "unity" mode (one MSVC, one MinGW), and enable it for one macOS CI job. Fix related issues: - add missing include guard to `easy_lock.h`. - rename static variables and functions (and a macro) with names reused across sources, or shadowed by local variables. - add an `#undef` after use. - add a missing `#undef` before use. - move internal definitions from `ftp.h` to `ftp.c`. - `curl_memory.h` fixes to make it work when included repeatedly. - stop building/linking curlx bits twice for a static-mode curl tool. These caused doubly defined symbols in unity builds. - silence missing extern declarations compiler warning for ` _CRT_glob`. - fix extern declarations for `tool_freq` and `tool_isVistaOrGreater`. - fix colliding static symbols in debug mode: `debugtime()` and `statename`. - rename `ssl_backend_data` structure to unique names for each TLS-backend, along with the `ssl_connect_data` struct member referencing them. This required adding casts for each access. - add workaround for missing `[P]UNICODE_STRING` types in certain Windows builds when compiling `lib/ldap.c`. To support "unity" builds, we had to enable `SCHANNEL_USE_BLACKLISTS` for Schannel (a Windows `schannel.h` option) _globally_. This caused an indirect inclusion of Windows `schannel.h` from `ldap.c` via `winldap.h` to have it enabled as well. This requires `[P]UNICODE_STRING` types, which is apperantly not defined automatically (as seen with both MSVS and mingw-w64). This patch includes `<subauth.h>` to fix it. Ref: https://github.com/curl/curl/runs/13987772013 Ref: https://dev.azure.com/daniel0244/curl/_build/results?buildId=15827&view=logs&jobId=2c9f582d-e278-56b6-4354-f38a4d851906&j=2c9f582d-e278-56b6-4354-f38a4d851906&t=90509b00-34fa-5a81-35d7-5ed9569d331c - tweak unity builds to compile `lib/memdebug.c` separately in memory trace builds to avoid PP confusion. - force-disable unity for test programs. - do not compile and link libcurl sources to libtests _twice_ when libcurl is built in static mode. KNOWN ISSUES: - running tests with unity builds may fail in cases. - some build configurations/env may not compile in unity mode. E.g.: https://ci.appveyor.com/project/curlorg/curl/builds/47230972/job/51wfesgnfuauwl8q#L250 Ref: https://github.com/libssh2/libssh2/issues/1034 Ref: https://cmake.org/cmake/help/latest/prop_tgt/UNITY_BUILD.html Ref: https://en.wikipedia.org/wiki/Unity_build Closes #11095
158 lines
4.3 KiB
C
158 lines
4.3 KiB
C
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* 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 "tool_setup.h"
|
|
|
|
#ifdef HAVE_PWD_H
|
|
# undef __NO_NET_API /* required for building for AmigaOS */
|
|
# include <pwd.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
#include <sys/stat.h>
|
|
#endif
|
|
#ifdef HAVE_FCNTL_H
|
|
#include <fcntl.h>
|
|
#endif
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
#include "tool_findfile.h"
|
|
|
|
#include "memdebug.h" /* keep this as LAST include */
|
|
|
|
struct finder {
|
|
const char *env;
|
|
const char *append;
|
|
bool withoutdot;
|
|
};
|
|
|
|
/* The order of the variables below is important, as the index number is used
|
|
in the findfile() function */
|
|
static const struct finder conf_list[] = {
|
|
{ "CURL_HOME", NULL, FALSE },
|
|
{ "XDG_CONFIG_HOME", NULL, FALSE }, /* index == 1, used in the code */
|
|
{ "HOME", NULL, FALSE },
|
|
#ifdef WIN32
|
|
{ "USERPROFILE", NULL, FALSE },
|
|
{ "APPDATA", NULL, FALSE },
|
|
{ "USERPROFILE", "\\Application Data", FALSE},
|
|
#endif
|
|
/* these are for .curlrc if XDG_CONFIG_HOME is not defined */
|
|
{ "CURL_HOME", "/.config", TRUE },
|
|
{ "HOME", "/.config", TRUE },
|
|
|
|
{ NULL, NULL, FALSE }
|
|
};
|
|
|
|
static char *checkhome(const char *home, const char *fname, bool dotscore)
|
|
{
|
|
const char pref[2] = { '.', '_' };
|
|
int i;
|
|
for(i = 0; i < (dotscore ? 2 : 1); i++) {
|
|
char *c;
|
|
if(dotscore)
|
|
c = curl_maprintf("%s" DIR_CHAR "%c%s", home, pref[i], &fname[1]);
|
|
else
|
|
c = curl_maprintf("%s" DIR_CHAR "%s", home, fname);
|
|
if(c) {
|
|
int fd = open(c, O_RDONLY);
|
|
if(fd >= 0) {
|
|
char *path = strdup(c);
|
|
close(fd);
|
|
curl_free(c);
|
|
return path;
|
|
}
|
|
curl_free(c);
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* findfile() - return the full path name of the file.
|
|
*
|
|
* If 'dotscore' is TRUE, then check for the file first with a leading dot
|
|
* and then with a leading underscore.
|
|
*
|
|
* 1. Iterate over the environment variables in order, and if set, check for
|
|
* the given file to be accessed there, then it is a match.
|
|
* 2. Non-windows: try getpwuid
|
|
*/
|
|
char *findfile(const char *fname, int dotscore)
|
|
{
|
|
int i;
|
|
bool xdg = FALSE;
|
|
DEBUGASSERT(fname && fname[0]);
|
|
DEBUGASSERT((dotscore != 1) || (fname[0] == '.'));
|
|
|
|
if(!fname[0])
|
|
return NULL;
|
|
|
|
for(i = 0; conf_list[i].env; i++) {
|
|
char *home = curl_getenv(conf_list[i].env);
|
|
if(home) {
|
|
char *path;
|
|
const char *filename = fname;
|
|
if(i == 1 /* XDG_CONFIG_HOME */)
|
|
xdg = TRUE;
|
|
if(!home[0]) {
|
|
curl_free(home);
|
|
continue;
|
|
}
|
|
if(conf_list[i].append) {
|
|
char *c = curl_maprintf("%s%s", home, conf_list[i].append);
|
|
curl_free(home);
|
|
if(!c)
|
|
return NULL;
|
|
home = c;
|
|
}
|
|
if(conf_list[i].withoutdot) {
|
|
if(!dotscore || xdg) {
|
|
/* this is not looking for .curlrc, or the XDG_CONFIG_HOME was
|
|
defined so we skip the extended check */
|
|
curl_free(home);
|
|
continue;
|
|
}
|
|
filename++; /* move past the leading dot */
|
|
dotscore = 0; /* disable it for this check */
|
|
}
|
|
path = checkhome(home, filename, dotscore ? dotscore - 1 : 0);
|
|
curl_free(home);
|
|
if(path)
|
|
return path;
|
|
}
|
|
}
|
|
#if defined(HAVE_GETPWUID) && defined(HAVE_GETEUID)
|
|
{
|
|
struct passwd *pw = getpwuid(geteuid());
|
|
if(pw) {
|
|
char *home = pw->pw_dir;
|
|
if(home && home[0])
|
|
return checkhome(home, fname, FALSE);
|
|
}
|
|
}
|
|
#endif /* PWD-stuff */
|
|
return NULL;
|
|
}
|