2018-07-09 22:24:28 +03:00
|
|
|
#ifndef HEADER_CURL_SETUP_H
|
2012-04-07 01:35:15 +04:00
|
|
|
#define HEADER_CURL_SETUP_H
|
2002-09-03 15:52:59 +04:00
|
|
|
/***************************************************************************
|
2004-05-24 11:53:25 +04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 17:20:26 +03:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 15:51:48 +03:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 17:20:26 +03:00
|
|
|
*
|
2002-09-03 15:52:59 +04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 16:02:01 +03:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-05-24 11:53:25 +04:00
|
|
|
*
|
2001-01-03 12:29:33 +03:00
|
|
|
* 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
|
2002-09-03 15:52:59 +04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 17:20:26 +03:00
|
|
|
*
|
2001-01-03 12:29:33 +03:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 17:20:26 +03:00
|
|
|
*
|
2002-09-03 15:52:59 +04:00
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 12:16:50 +03:00
|
|
|
*
|
2002-09-03 15:52:59 +04:00
|
|
|
***************************************************************************/
|
1999-12-29 17:20:26 +03:00
|
|
|
|
2017-08-01 09:56:48 +03:00
|
|
|
#if defined(BUILDING_LIBCURL) && !defined(CURL_NO_OLDIES)
|
|
|
|
#define CURL_NO_OLDIES
|
|
|
|
#endif
|
|
|
|
|
2023-12-09 05:45:19 +03:00
|
|
|
/* FIXME: Delete this once the warnings have been fixed. */
|
|
|
|
#if !defined(CURL_WARN_SIGN_CONVERSION)
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2023-10-27 13:20:47 +03:00
|
|
|
/* Set default _WIN32_WINNT */
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <_mingw.h>
|
|
|
|
#endif
|
|
|
|
|
2019-11-30 11:29:36 +03:00
|
|
|
/*
|
|
|
|
* Disable Visual Studio warnings:
|
|
|
|
* 4127 "conditional expression is constant"
|
|
|
|
*/
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(disable:4127)
|
|
|
|
#endif
|
|
|
|
|
2023-11-21 19:54:49 +03:00
|
|
|
#ifdef _WIN32
|
2017-07-10 15:56:11 +03:00
|
|
|
/*
|
|
|
|
* Don't include unneeded stuff in Windows headers to avoid compiler
|
|
|
|
* warnings and macro clashes.
|
|
|
|
* Make sure to define this macro before including any Windows headers.
|
|
|
|
*/
|
|
|
|
# ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
# define WIN32_LEAN_AND_MEAN
|
|
|
|
# endif
|
2018-10-08 12:33:15 +03:00
|
|
|
# ifndef NOGDI
|
|
|
|
# define NOGDI
|
|
|
|
# endif
|
2021-03-05 00:10:45 +03:00
|
|
|
/* Detect Windows App environment which has a restricted access
|
|
|
|
* to the Win32 APIs. */
|
|
|
|
# if (defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0602)) || \
|
|
|
|
defined(WINAPI_FAMILY)
|
|
|
|
# include <winapifamily.h>
|
|
|
|
# if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && \
|
|
|
|
!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
|
|
|
|
# define CURL_WINDOWS_APP
|
|
|
|
# endif
|
|
|
|
# endif
|
2017-07-10 15:56:11 +03:00
|
|
|
#endif
|
|
|
|
|
2005-12-17 23:37:53 +03:00
|
|
|
/*
|
|
|
|
* Include configuration script results or hand-crafted
|
|
|
|
* configuration file for platforms which lack config tool.
|
|
|
|
*/
|
|
|
|
|
1999-12-29 17:20:26 +03:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2009-06-04 23:11:11 +04:00
|
|
|
|
2009-07-14 17:25:14 +04:00
|
|
|
#include "curl_config.h"
|
2009-06-04 23:11:11 +04:00
|
|
|
|
|
|
|
#else /* HAVE_CONFIG_H */
|
2005-12-17 23:37:53 +03:00
|
|
|
|
2004-11-02 13:12:22 +03:00
|
|
|
#ifdef _WIN32_WCE
|
2009-06-04 23:11:11 +04:00
|
|
|
# include "config-win32ce.h"
|
2004-11-02 13:12:22 +03:00
|
|
|
#else
|
2023-11-21 19:54:49 +03:00
|
|
|
# ifdef _WIN32
|
2009-06-04 23:11:11 +04:00
|
|
|
# include "config-win32.h"
|
|
|
|
# endif
|
2005-12-17 23:37:53 +03:00
|
|
|
#endif
|
2001-08-06 16:27:28 +04:00
|
|
|
|
2022-08-27 03:31:31 +03:00
|
|
|
#ifdef macintosh
|
2008-09-05 05:27:24 +04:00
|
|
|
# include "config-mac.h"
|
2001-11-27 10:27:32 +03:00
|
|
|
#endif
|
2005-12-17 23:37:53 +03:00
|
|
|
|
2012-04-07 01:35:15 +04:00
|
|
|
#ifdef __riscos__
|
|
|
|
# include "config-riscos.h"
|
|
|
|
#endif
|
|
|
|
|
2007-02-28 17:45:48 +03:00
|
|
|
#ifdef __AMIGA__
|
2012-04-07 01:35:15 +04:00
|
|
|
# include "config-amigaos.h"
|
2004-01-13 11:35:57 +03:00
|
|
|
#endif
|
2001-11-27 10:27:32 +03:00
|
|
|
|
2007-08-23 18:30:24 +04:00
|
|
|
#ifdef __OS400__
|
2008-07-22 04:12:06 +04:00
|
|
|
# include "config-os400.h"
|
2007-08-23 18:30:24 +04:00
|
|
|
#endif
|
|
|
|
|
2019-03-26 16:26:05 +03:00
|
|
|
#ifdef __PLAN9__
|
|
|
|
# include "config-plan9.h"
|
|
|
|
#endif
|
|
|
|
|
2022-11-22 11:25:05 +03:00
|
|
|
#ifdef MSDOS
|
|
|
|
# include "config-dos.h"
|
|
|
|
#endif
|
|
|
|
|
2005-12-17 23:37:53 +03:00
|
|
|
#endif /* HAVE_CONFIG_H */
|
2005-12-16 23:55:07 +03:00
|
|
|
|
2008-08-07 04:29:08 +04:00
|
|
|
/* ================================================================ */
|
|
|
|
/* Definition of preprocessor macros/symbols which modify compiler */
|
2009-10-21 11:40:33 +04:00
|
|
|
/* behavior or generated code characteristics must be done here, */
|
2008-08-07 04:29:08 +04:00
|
|
|
/* as appropriate, before any system header file is included. It is */
|
|
|
|
/* also possible to have them defined in the config file included */
|
|
|
|
/* before this point. As a result of all this we frown inclusion of */
|
|
|
|
/* system header files in our config files, avoid this at any cost. */
|
|
|
|
/* ================================================================ */
|
|
|
|
|
2009-11-14 21:51:37 +03:00
|
|
|
/*
|
|
|
|
* AIX 4.3 and newer needs _THREAD_SAFE defined to build
|
|
|
|
* proper reentrant code. Others may also need it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef NEED_THREAD_SAFE
|
|
|
|
# ifndef _THREAD_SAFE
|
|
|
|
# define _THREAD_SAFE
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-07-14 21:31:39 +04:00
|
|
|
/*
|
2008-07-30 12:21:25 +04:00
|
|
|
* Tru64 needs _REENTRANT set for a few function prototypes and
|
2008-07-14 21:31:39 +04:00
|
|
|
* things to appear in the system header files. Unixware needs it
|
|
|
|
* to build proper reentrant code. Others may also need it.
|
|
|
|
*/
|
|
|
|
|
2008-07-27 07:16:37 +04:00
|
|
|
#ifdef NEED_REENTRANT
|
|
|
|
# ifndef _REENTRANT
|
|
|
|
# define _REENTRANT
|
|
|
|
# endif
|
2008-07-14 21:31:39 +04:00
|
|
|
#endif
|
|
|
|
|
2014-07-14 12:40:33 +04:00
|
|
|
/* Solaris needs this to get a POSIX-conformant getpwuid_r */
|
|
|
|
#if defined(sun) || defined(__sun)
|
|
|
|
# ifndef _POSIX_PTHREAD_SEMANTICS
|
|
|
|
# define _POSIX_PTHREAD_SEMANTICS 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2008-08-07 04:29:08 +04:00
|
|
|
/* ================================================================ */
|
|
|
|
/* If you need to include a system header file for your platform, */
|
|
|
|
/* please, do it beyond the point further indicated in this file. */
|
|
|
|
/* ================================================================ */
|
|
|
|
|
2008-07-14 16:39:50 +04:00
|
|
|
/*
|
|
|
|
* Disable other protocols when http is the only one desired.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HTTP_ONLY
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_DICT
|
|
|
|
# define CURL_DISABLE_DICT
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_FILE
|
|
|
|
# define CURL_DISABLE_FILE
|
2011-01-17 03:27:57 +03:00
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_FTP
|
|
|
|
# define CURL_DISABLE_FTP
|
|
|
|
# endif
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_GOPHER
|
|
|
|
# define CURL_DISABLE_GOPHER
|
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_IMAP
|
|
|
|
# define CURL_DISABLE_IMAP
|
|
|
|
# endif
|
2011-01-17 03:27:57 +03:00
|
|
|
# ifndef CURL_DISABLE_LDAP
|
|
|
|
# define CURL_DISABLE_LDAP
|
|
|
|
# endif
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_LDAPS
|
|
|
|
# define CURL_DISABLE_LDAPS
|
2011-01-17 03:27:57 +03:00
|
|
|
# endif
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_MQTT
|
|
|
|
# define CURL_DISABLE_MQTT
|
2011-01-17 03:27:57 +03:00
|
|
|
# endif
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_POP3
|
|
|
|
# define CURL_DISABLE_POP3
|
2011-01-17 03:27:57 +03:00
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_RTSP
|
|
|
|
# define CURL_DISABLE_RTSP
|
|
|
|
# endif
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_SMB
|
|
|
|
# define CURL_DISABLE_SMB
|
2012-09-19 13:00:17 +04:00
|
|
|
# endif
|
|
|
|
# ifndef CURL_DISABLE_SMTP
|
|
|
|
# define CURL_DISABLE_SMTP
|
|
|
|
# endif
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_TELNET
|
|
|
|
# define CURL_DISABLE_TELNET
|
2012-09-19 13:00:17 +04:00
|
|
|
# endif
|
2021-08-20 19:29:10 +03:00
|
|
|
# ifndef CURL_DISABLE_TFTP
|
|
|
|
# define CURL_DISABLE_TFTP
|
2015-01-26 19:15:32 +03:00
|
|
|
# endif
|
2008-07-14 16:39:50 +04:00
|
|
|
#endif
|
|
|
|
|
2010-01-22 17:20:08 +03:00
|
|
|
/*
|
|
|
|
* When http is disabled rtsp is not supported.
|
|
|
|
*/
|
|
|
|
|
2010-01-22 18:15:08 +03:00
|
|
|
#if defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_RTSP)
|
2010-01-22 17:20:08 +03:00
|
|
|
# define CURL_DISABLE_RTSP
|
|
|
|
#endif
|
|
|
|
|
2023-10-28 12:05:13 +03:00
|
|
|
/*
|
|
|
|
* When HTTP is disabled, disable HTTP-only features
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(CURL_DISABLE_HTTP)
|
|
|
|
# define CURL_DISABLE_ALTSVC 1
|
|
|
|
# define CURL_DISABLE_COOKIES 1
|
|
|
|
# define CURL_DISABLE_BASIC_AUTH 1
|
|
|
|
# define CURL_DISABLE_BEARER_AUTH 1
|
|
|
|
# define CURL_DISABLE_AWS 1
|
|
|
|
# define CURL_DISABLE_DOH 1
|
|
|
|
# define CURL_DISABLE_FORM_API 1
|
|
|
|
# define CURL_DISABLE_HEADERS_API 1
|
|
|
|
# define CURL_DISABLE_HSTS 1
|
|
|
|
# define CURL_DISABLE_HTTP_AUTH 1
|
|
|
|
#endif
|
|
|
|
|
2008-08-07 04:29:08 +04:00
|
|
|
/* ================================================================ */
|
|
|
|
/* No system header file shall be included in this file before this */
|
2022-09-07 11:54:16 +03:00
|
|
|
/* point. */
|
2008-08-07 04:29:08 +04:00
|
|
|
/* ================================================================ */
|
|
|
|
|
2008-07-22 04:12:06 +04:00
|
|
|
/*
|
|
|
|
* OS/400 setup file includes some system headers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __OS400__
|
|
|
|
# include "setup-os400.h"
|
|
|
|
#endif
|
|
|
|
|
2013-02-06 07:53:34 +04:00
|
|
|
/*
|
|
|
|
* VMS setup file includes some system headers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __VMS
|
|
|
|
# include "setup-vms.h"
|
|
|
|
#endif
|
|
|
|
|
2016-06-07 13:11:37 +03:00
|
|
|
/*
|
2020-03-07 11:21:33 +03:00
|
|
|
* Windows setup file includes some system headers.
|
2005-12-16 23:55:07 +03:00
|
|
|
*/
|
|
|
|
|
2023-12-09 23:37:11 +03:00
|
|
|
#ifdef _WIN32
|
2020-03-07 11:21:33 +03:00
|
|
|
# include "setup-win32.h"
|
2005-12-16 23:55:07 +03:00
|
|
|
#endif
|
|
|
|
|
2022-09-07 13:30:15 +03:00
|
|
|
#include <curl/system.h>
|
2022-09-07 11:54:16 +03:00
|
|
|
|
2024-02-10 21:28:27 +03:00
|
|
|
/* Helper macro to expand and concatenate two macros.
|
|
|
|
* Direct macros concatenation does not work because macros
|
|
|
|
* are not expanded before direct concatenation.
|
|
|
|
*/
|
|
|
|
#define CURL_CONC_MACROS_(A,B) A ## B
|
|
|
|
#define CURL_CONC_MACROS(A,B) CURL_CONC_MACROS_(A,B)
|
|
|
|
|
2023-12-08 16:05:09 +03:00
|
|
|
/* curl uses its own printf() function internally. It understands the GNU
|
|
|
|
* format. Use this format, so that is matches the GNU format attribute we
|
|
|
|
* use with the mingw compiler, allowing it to verify them at compile-time.
|
|
|
|
*/
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
# undef CURL_FORMAT_CURL_OFF_T
|
|
|
|
# undef CURL_FORMAT_CURL_OFF_TU
|
|
|
|
# define CURL_FORMAT_CURL_OFF_T "lld"
|
|
|
|
# define CURL_FORMAT_CURL_OFF_TU "llu"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* based on logic in "curl/mprintf.h" */
|
|
|
|
|
|
|
|
#if (defined(__GNUC__) || defined(__clang__)) && \
|
|
|
|
defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \
|
|
|
|
!defined(CURL_NO_FMT_CHECKS)
|
|
|
|
#if defined(__MINGW32__) && !defined(__clang__)
|
|
|
|
#define CURL_PRINTF(fmt, arg) \
|
|
|
|
__attribute__((format(gnu_printf, fmt, arg)))
|
|
|
|
#else
|
|
|
|
#define CURL_PRINTF(fmt, arg) \
|
|
|
|
__attribute__((format(__printf__, fmt, arg)))
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define CURL_PRINTF(fmt, arg)
|
|
|
|
#endif
|
|
|
|
|
2006-10-18 19:57:49 +04:00
|
|
|
/*
|
2020-03-07 11:21:33 +03:00
|
|
|
* Use getaddrinfo to resolve the IPv4 address literal. If the current network
|
|
|
|
* interface doesn't support IPv4, but supports IPv6, NAT64, and DNS64,
|
|
|
|
* performing this task will result in a synthesized IPv6 address.
|
2006-10-18 19:57:49 +04:00
|
|
|
*/
|
2020-11-26 19:26:59 +03:00
|
|
|
#if defined(__APPLE__) && !defined(USE_ARES)
|
2021-05-24 17:38:40 +03:00
|
|
|
#include <TargetConditionals.h>
|
2020-03-07 11:21:33 +03:00
|
|
|
#define USE_RESOLVE_ON_IPS 1
|
2023-07-25 12:32:59 +03:00
|
|
|
# if TARGET_OS_MAC && !(defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) && \
|
|
|
|
defined(ENABLE_IPV6)
|
|
|
|
# define CURL_MACOS_CALL_COPYPROXIES 1
|
2021-05-24 17:38:40 +03:00
|
|
|
# endif
|
2006-10-18 19:57:49 +04:00
|
|
|
#endif
|
|
|
|
|
2011-08-04 23:27:29 +04:00
|
|
|
#ifdef USE_LWIPSOCK
|
2011-08-07 10:45:57 +04:00
|
|
|
# include <lwip/init.h>
|
2011-08-04 23:27:29 +04:00
|
|
|
# include <lwip/sockets.h>
|
|
|
|
# include <lwip/netdb.h>
|
|
|
|
#endif
|
|
|
|
|
2008-07-14 20:10:29 +04:00
|
|
|
#ifdef HAVE_EXTRA_STRICMP_H
|
|
|
|
# include <extra/stricmp.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_EXTRA_STRDUP_H
|
|
|
|
# include <extra/strdup.h>
|
|
|
|
#endif
|
|
|
|
|
2012-04-07 01:35:15 +04:00
|
|
|
#ifdef __AMIGA__
|
2022-08-07 16:42:19 +03:00
|
|
|
# ifdef __amigaos4__
|
|
|
|
# define __USE_INLINE__
|
|
|
|
/* use our own resolver which uses runtime feature detection */
|
|
|
|
# define CURLRES_AMIGA
|
|
|
|
/* getaddrinfo() currently crashes bsdsocket.library, so disable */
|
|
|
|
# undef HAVE_GETADDRINFO
|
|
|
|
# if !(defined(__NEWLIB__) || \
|
|
|
|
(defined(__CLIB2__) && defined(__THREAD_SAFE)))
|
|
|
|
/* disable threaded resolver with clib2 - requires newlib or clib-ts */
|
|
|
|
# undef USE_THREADS_POSIX
|
|
|
|
# endif
|
|
|
|
# endif
|
2019-03-08 03:06:59 +03:00
|
|
|
# include <exec/types.h>
|
|
|
|
# include <exec/execbase.h>
|
|
|
|
# include <proto/exec.h>
|
|
|
|
# include <proto/dos.h>
|
2020-11-18 21:44:35 +03:00
|
|
|
# include <unistd.h>
|
2022-08-07 19:04:47 +03:00
|
|
|
# if defined(HAVE_PROTO_BSDSOCKET_H) && \
|
|
|
|
(!defined(__amigaos4__) || defined(USE_AMISSL))
|
|
|
|
/* use bsdsocket.library directly, instead of libc networking functions */
|
2023-07-19 21:58:44 +03:00
|
|
|
# define _SYS_MBUF_H /* m_len define clashes with curl */
|
2022-08-07 19:04:47 +03:00
|
|
|
# include <proto/bsdsocket.h>
|
|
|
|
# ifdef __amigaos4__
|
|
|
|
int Curl_amiga_select(int nfds, fd_set *readfds, fd_set *writefds,
|
|
|
|
fd_set *errorfds, struct timeval *timeout);
|
|
|
|
# define select(a,b,c,d,e) Curl_amiga_select(a,b,c,d,e)
|
|
|
|
# else
|
|
|
|
# define select(a,b,c,d,e) WaitSelect(a,b,c,d,e,0)
|
|
|
|
# endif
|
|
|
|
/* must not use libc's fcntl() on bsdsocket.library sockfds! */
|
|
|
|
# undef HAVE_FCNTL
|
|
|
|
# undef HAVE_FCNTL_O_NONBLOCK
|
|
|
|
# else
|
|
|
|
/* use libc networking and hence close() and fnctl() */
|
|
|
|
# undef HAVE_CLOSESOCKET_CAMEL
|
|
|
|
# undef HAVE_IOCTLSOCKET_CAMEL
|
2012-04-07 01:35:15 +04:00
|
|
|
# endif
|
2020-11-18 21:44:35 +03:00
|
|
|
/*
|
|
|
|
* In clib2 arpa/inet.h warns that some prototypes may clash
|
|
|
|
* with bsdsocket.library. This avoids the definition of those.
|
|
|
|
*/
|
|
|
|
# define __NO_NET_API
|
2012-04-07 01:35:15 +04:00
|
|
|
#endif
|
|
|
|
|
2000-08-24 18:27:51 +04:00
|
|
|
#include <stdio.h>
|
2003-12-10 18:27:06 +03:00
|
|
|
#include <assert.h>
|
|
|
|
|
2022-09-22 17:49:13 +03:00
|
|
|
#ifdef __TANDEM /* for ns*-tandem-nsk systems */
|
|
|
|
# if ! defined __LP64
|
|
|
|
# include <floss.h> /* FLOSS is only used for 32-bit builds. */
|
|
|
|
# endif
|
2004-03-03 12:27:18 +03:00
|
|
|
#endif
|
|
|
|
|
1999-12-29 17:20:26 +03:00
|
|
|
#ifndef STDC_HEADERS /* no standard C headers! */
|
2002-02-07 17:33:36 +03:00
|
|
|
#include <curl/stdcheaders.h>
|
2001-08-06 16:27:28 +04:00
|
|
|
#endif
|
1999-12-29 17:20:26 +03:00
|
|
|
|
2008-08-22 22:09:03 +04:00
|
|
|
/*
|
|
|
|
* Large file (>2Gb) support using WIN32 functions.
|
|
|
|
*/
|
2003-12-02 13:12:44 +03:00
|
|
|
|
2008-08-22 22:09:03 +04:00
|
|
|
#ifdef USE_WIN32_LARGE_FILES
|
|
|
|
# include <io.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
2011-11-01 01:42:43 +04:00
|
|
|
# undef lseek
|
2008-08-22 22:09:03 +04:00
|
|
|
# define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence)
|
2013-06-02 17:53:08 +04:00
|
|
|
# undef fstat
|
2008-08-22 22:09:03 +04:00
|
|
|
# define fstat(fdes,stp) _fstati64(fdes, stp)
|
2013-06-02 17:53:08 +04:00
|
|
|
# undef stat
|
2020-01-03 00:47:33 +03:00
|
|
|
# define stat(fname,stp) curlx_win32_stat(fname, stp)
|
2008-08-22 22:09:03 +04:00
|
|
|
# define struct_stat struct _stati64
|
2009-09-18 18:48:16 +04:00
|
|
|
# define LSEEK_ERROR (__int64)-1
|
2021-01-20 21:08:49 +03:00
|
|
|
# define open curlx_win32_open
|
2020-01-03 00:47:33 +03:00
|
|
|
# define fopen(fname,mode) curlx_win32_fopen(fname, mode)
|
2020-06-18 16:26:13 +03:00
|
|
|
# define access(fname,mode) curlx_win32_access(fname, mode)
|
2021-01-20 21:08:49 +03:00
|
|
|
int curlx_win32_open(const char *filename, int oflag, ...);
|
2020-01-03 00:47:33 +03:00
|
|
|
int curlx_win32_stat(const char *path, struct_stat *buffer);
|
|
|
|
FILE *curlx_win32_fopen(const char *filename, const char *mode);
|
2020-06-18 16:26:13 +03:00
|
|
|
int curlx_win32_access(const char *path, int mode);
|
2008-08-22 22:09:03 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Small file (<2Gb) support using WIN32 functions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_WIN32_SMALL_FILES
|
|
|
|
# include <io.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
2012-06-18 20:44:43 +04:00
|
|
|
# ifndef _WIN32_WCE
|
|
|
|
# undef lseek
|
|
|
|
# define lseek(fdes,offset,whence) _lseek(fdes, (long)offset, whence)
|
|
|
|
# define fstat(fdes,stp) _fstat(fdes, stp)
|
2020-01-03 00:47:33 +03:00
|
|
|
# define stat(fname,stp) curlx_win32_stat(fname, stp)
|
2012-06-18 20:44:43 +04:00
|
|
|
# define struct_stat struct _stat
|
2021-01-20 21:08:49 +03:00
|
|
|
# define open curlx_win32_open
|
2020-01-03 00:47:33 +03:00
|
|
|
# define fopen(fname,mode) curlx_win32_fopen(fname, mode)
|
2020-06-18 16:26:13 +03:00
|
|
|
# define access(fname,mode) curlx_win32_access(fname, mode)
|
2020-01-03 00:47:33 +03:00
|
|
|
int curlx_win32_stat(const char *path, struct_stat *buffer);
|
2021-01-20 21:08:49 +03:00
|
|
|
int curlx_win32_open(const char *filename, int oflag, ...);
|
2020-01-03 00:47:33 +03:00
|
|
|
FILE *curlx_win32_fopen(const char *filename, const char *mode);
|
2020-06-18 16:26:13 +03:00
|
|
|
int curlx_win32_access(const char *path, int mode);
|
2012-06-18 20:44:43 +04:00
|
|
|
# endif
|
2009-09-18 18:48:16 +04:00
|
|
|
# define LSEEK_ERROR (long)-1
|
2008-08-22 22:09:03 +04:00
|
|
|
#endif
|
2003-12-02 13:12:44 +03:00
|
|
|
|
2008-08-22 23:01:00 +04:00
|
|
|
#ifndef struct_stat
|
|
|
|
# define struct_stat struct stat
|
|
|
|
#endif
|
2006-07-12 09:19:00 +04:00
|
|
|
|
2009-09-18 18:48:16 +04:00
|
|
|
#ifndef LSEEK_ERROR
|
|
|
|
# define LSEEK_ERROR (off_t)-1
|
|
|
|
#endif
|
|
|
|
|
2018-02-01 01:01:01 +03:00
|
|
|
#ifndef SIZEOF_TIME_T
|
|
|
|
/* assume default size of time_t to be 32 bit */
|
|
|
|
#define SIZEOF_TIME_T 4
|
|
|
|
#endif
|
|
|
|
|
2023-12-08 16:05:09 +03:00
|
|
|
#ifndef SIZEOF_CURL_SOCKET_T
|
|
|
|
/* configure and cmake check and set the define */
|
|
|
|
# ifdef _WIN64
|
|
|
|
# define SIZEOF_CURL_SOCKET_T 8
|
|
|
|
# else
|
|
|
|
/* default guess */
|
|
|
|
# define SIZEOF_CURL_SOCKET_T 4
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SIZEOF_CURL_SOCKET_T < 8
|
|
|
|
# define CURL_FORMAT_SOCKET_T "d"
|
|
|
|
#elif defined(__MINGW32__)
|
|
|
|
# define CURL_FORMAT_SOCKET_T "zd"
|
|
|
|
#else
|
|
|
|
# define CURL_FORMAT_SOCKET_T "qd"
|
|
|
|
#endif
|
|
|
|
|
2008-08-26 05:40:19 +04:00
|
|
|
/*
|
|
|
|
* Default sizeof(off_t) in case it hasn't been defined in config file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SIZEOF_OFF_T
|
2009-12-30 20:59:56 +03:00
|
|
|
# if defined(__VMS) && !defined(__VAX)
|
2008-08-26 05:40:19 +04:00
|
|
|
# if defined(_LARGEFILE)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
|
|
|
# elif defined(__OS400__) && defined(__ILEC400__)
|
|
|
|
# if defined(_LARGE_FILES)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
|
|
|
# elif defined(__MVS__) && defined(__IBMC__)
|
|
|
|
# if defined(_LP64) || defined(_LARGE_FILES)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
|
|
|
# elif defined(__370__) && defined(__IBMC__)
|
|
|
|
# if defined(_LP64) || defined(_LARGE_FILES)
|
|
|
|
# define SIZEOF_OFF_T 8
|
|
|
|
# endif
|
2008-08-26 14:48:52 +04:00
|
|
|
# endif
|
|
|
|
# ifndef SIZEOF_OFF_T
|
2008-08-26 05:40:19 +04:00
|
|
|
# define SIZEOF_OFF_T 4
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2023-02-24 02:45:16 +03:00
|
|
|
#if (SIZEOF_CURL_OFF_T < 8)
|
|
|
|
#error "too small curl_off_t"
|
2018-01-01 12:11:13 +03:00
|
|
|
#else
|
2021-03-08 14:30:56 +03:00
|
|
|
/* assume SIZEOF_CURL_OFF_T == 8 */
|
2018-01-01 12:11:13 +03:00
|
|
|
# define CURL_OFF_T_MAX CURL_OFF_T_C(0x7FFFFFFFFFFFFFFF)
|
|
|
|
#endif
|
|
|
|
#define CURL_OFF_T_MIN (-CURL_OFF_T_MAX - CURL_OFF_T_C(1))
|
|
|
|
|
2024-02-10 21:28:27 +03:00
|
|
|
#if (SIZEOF_CURL_OFF_T != 8)
|
|
|
|
# error "curl_off_t must be exactly 64 bits"
|
|
|
|
#else
|
|
|
|
typedef unsigned CURL_TYPEOF_CURL_OFF_T curl_uint64_t;
|
|
|
|
# ifndef CURL_SUFFIX_CURL_OFF_TU
|
|
|
|
# error "CURL_SUFFIX_CURL_OFF_TU must be defined"
|
|
|
|
# endif
|
|
|
|
# define CURL_UINT64_SUFFIX CURL_SUFFIX_CURL_OFF_TU
|
|
|
|
# define CURL_UINT64_C(val) CURL_CONC_MACROS(val,CURL_UINT64_SUFFIX)
|
|
|
|
#endif
|
|
|
|
|
2018-01-18 22:24:05 +03:00
|
|
|
#if (SIZEOF_TIME_T == 4)
|
|
|
|
# ifdef HAVE_TIME_T_UNSIGNED
|
|
|
|
# define TIME_T_MAX UINT_MAX
|
|
|
|
# define TIME_T_MIN 0
|
|
|
|
# else
|
|
|
|
# define TIME_T_MAX INT_MAX
|
|
|
|
# define TIME_T_MIN INT_MIN
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_TIME_T_UNSIGNED
|
|
|
|
# define TIME_T_MAX 0xFFFFFFFFFFFFFFFF
|
|
|
|
# define TIME_T_MIN 0
|
|
|
|
# else
|
|
|
|
# define TIME_T_MAX 0x7FFFFFFFFFFFFFFF
|
2018-01-26 01:05:24 +03:00
|
|
|
# define TIME_T_MIN (-TIME_T_MAX - 1)
|
2018-01-18 22:24:05 +03:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2018-03-20 17:15:14 +03:00
|
|
|
#ifndef SIZE_T_MAX
|
|
|
|
/* some limits.h headers have this defined, some don't */
|
|
|
|
#if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4)
|
|
|
|
#define SIZE_T_MAX 18446744073709551615U
|
|
|
|
#else
|
|
|
|
#define SIZE_T_MAX 4294967295U
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2021-06-02 23:06:00 +03:00
|
|
|
#ifndef SSIZE_T_MAX
|
|
|
|
/* some limits.h headers have this defined, some don't */
|
|
|
|
#if defined(SIZEOF_SIZE_T) && (SIZEOF_SIZE_T > 4)
|
|
|
|
#define SSIZE_T_MAX 9223372036854775807
|
|
|
|
#else
|
|
|
|
#define SSIZE_T_MAX 2147483647
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-08-07 16:33:14 +04:00
|
|
|
/*
|
|
|
|
* Arg 2 type for gethostname in case it hasn't been defined in config file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GETHOSTNAME_TYPE_ARG2
|
|
|
|
# ifdef USE_WINSOCK
|
|
|
|
# define GETHOSTNAME_TYPE_ARG2 int
|
|
|
|
# else
|
|
|
|
# define GETHOSTNAME_TYPE_ARG2 size_t
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2006-07-28 18:19:02 +04:00
|
|
|
/* Below we define some functions. They should
|
1999-12-29 17:20:26 +03:00
|
|
|
|
|
|
|
4. set the SIGALRM signal timeout
|
|
|
|
5. set dir/file naming defines
|
|
|
|
*/
|
|
|
|
|
2023-11-21 19:54:49 +03:00
|
|
|
#ifdef _WIN32
|
2003-10-14 16:00:45 +04:00
|
|
|
|
2008-09-19 22:39:24 +04:00
|
|
|
# define DIR_CHAR "\\"
|
1999-12-29 17:20:26 +03:00
|
|
|
|
2023-11-21 19:54:49 +03:00
|
|
|
#else /* _WIN32 */
|
2003-05-21 12:08:48 +04:00
|
|
|
|
2008-09-19 22:39:24 +04:00
|
|
|
# ifdef MSDOS /* Watt-32 */
|
2003-05-21 12:08:48 +04:00
|
|
|
|
2008-09-19 22:39:24 +04:00
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# define select(n,r,w,x,t) select_s(n,r,w,x,t)
|
|
|
|
# define ioctl(x,y,z) ioctlsocket(x,y,(char *)(z))
|
|
|
|
# include <tcp.h>
|
|
|
|
# ifdef word
|
|
|
|
# undef word
|
|
|
|
# endif
|
|
|
|
# ifdef byte
|
|
|
|
# undef byte
|
|
|
|
# endif
|
2003-10-05 19:04:09 +04:00
|
|
|
|
2008-09-19 22:39:24 +04:00
|
|
|
# endif /* MSDOS */
|
2004-01-13 11:35:57 +03:00
|
|
|
|
2008-09-19 22:39:24 +04:00
|
|
|
# ifdef __minix
|
|
|
|
/* Minix 3 versions up to at least 3.1.3 are missing these prototypes */
|
2016-11-23 09:53:24 +03:00
|
|
|
extern char *strtok_r(char *s, const char *delim, char **last);
|
|
|
|
extern struct tm *gmtime_r(const time_t * const timep, struct tm *tmp);
|
2008-09-19 22:39:24 +04:00
|
|
|
# endif
|
2008-04-23 02:53:53 +04:00
|
|
|
|
2008-09-19 22:39:24 +04:00
|
|
|
# define DIR_CHAR "/"
|
2003-05-21 12:08:48 +04:00
|
|
|
|
2023-11-21 19:54:49 +03:00
|
|
|
#endif /* _WIN32 */
|
1999-12-29 17:20:26 +03:00
|
|
|
|
2010-01-22 23:27:48 +03:00
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
/* resolver specialty compile-time defines */
|
|
|
|
/* CURLRES_* defines to use in the host*.c sources */
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
2010-01-26 11:43:21 +03:00
|
|
|
/*
|
|
|
|
* MSVC threads support requires a multi-threaded runtime library.
|
|
|
|
* _beginthreadex() is not available in single-threaded ones.
|
|
|
|
*/
|
|
|
|
|
2023-10-28 04:10:01 +03:00
|
|
|
#if defined(_MSC_VER) && !defined(_MT)
|
2010-01-26 11:43:21 +03:00
|
|
|
# undef USE_THREADS_POSIX
|
|
|
|
# undef USE_THREADS_WIN32
|
2005-10-02 20:52:07 +04:00
|
|
|
#endif
|
|
|
|
|
2010-01-26 11:43:21 +03:00
|
|
|
/*
|
|
|
|
* Mutually exclusive CURLRES_* definitions.
|
|
|
|
*/
|
|
|
|
|
2019-12-05 16:13:46 +03:00
|
|
|
#if defined(ENABLE_IPV6) && defined(HAVE_GETADDRINFO)
|
|
|
|
# define CURLRES_IPV6
|
2023-11-21 19:54:49 +03:00
|
|
|
#elif defined(ENABLE_IPV6) && (defined(_WIN32) || defined(__CYGWIN__))
|
2023-10-28 07:23:40 +03:00
|
|
|
/* assume on Windows that IPv6 without getaddrinfo is a broken build */
|
|
|
|
# error "Unexpected build: IPv6 is enabled but getaddrinfo was not found."
|
2019-12-05 16:13:46 +03:00
|
|
|
#else
|
|
|
|
# define CURLRES_IPV4
|
|
|
|
#endif
|
|
|
|
|
2010-01-22 23:27:48 +03:00
|
|
|
#ifdef USE_ARES
|
|
|
|
# define CURLRES_ASYNCH
|
|
|
|
# define CURLRES_ARES
|
2012-01-13 02:13:19 +04:00
|
|
|
/* now undef the stock libc functions just to avoid them being used */
|
|
|
|
# undef HAVE_GETADDRINFO
|
2015-11-28 01:24:59 +03:00
|
|
|
# undef HAVE_FREEADDRINFO
|
2010-01-26 11:43:21 +03:00
|
|
|
#elif defined(USE_THREADS_POSIX) || defined(USE_THREADS_WIN32)
|
2010-01-22 23:27:48 +03:00
|
|
|
# define CURLRES_ASYNCH
|
|
|
|
# define CURLRES_THREADED
|
2010-01-26 11:43:21 +03:00
|
|
|
#else
|
|
|
|
# define CURLRES_SYNCH
|
2010-01-22 23:27:48 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------- */
|
|
|
|
|
2017-05-01 20:44:39 +03:00
|
|
|
#if defined(HAVE_LIBIDN2) && defined(HAVE_IDN2_H) && !defined(USE_WIN32_IDN)
|
2016-10-12 10:01:06 +03:00
|
|
|
/* The lib and header are present */
|
|
|
|
#define USE_LIBIDN2
|
2004-04-26 11:20:11 +04:00
|
|
|
#endif
|
|
|
|
|
2017-05-01 20:44:39 +03:00
|
|
|
#if defined(USE_LIBIDN2) && defined(USE_WIN32_IDN)
|
|
|
|
#error "Both libidn2 and WinIDN are enabled, choose one."
|
|
|
|
#endif
|
|
|
|
|
2004-11-08 10:47:08 +03:00
|
|
|
#define LIBIDN_REQUIRED_VERSION "0.4.1"
|
|
|
|
|
2023-07-30 00:44:28 +03:00
|
|
|
#if defined(USE_GNUTLS) || defined(USE_OPENSSL) || defined(USE_MBEDTLS) || \
|
|
|
|
defined(USE_WOLFSSL) || defined(USE_SCHANNEL) || defined(USE_SECTRANSP) || \
|
2023-08-07 14:02:32 +03:00
|
|
|
defined(USE_BEARSSL) || defined(USE_RUSTLS)
|
2007-07-30 21:08:26 +04:00
|
|
|
#define USE_SSL /* SSL support has been enabled */
|
2005-04-07 19:27:13 +04:00
|
|
|
#endif
|
|
|
|
|
2014-11-02 03:24:32 +03:00
|
|
|
/* Single point where USE_SPNEGO definition might be defined */
|
2023-07-20 17:09:04 +03:00
|
|
|
#if !defined(CURL_DISABLE_NEGOTIATE_AUTH) && \
|
2014-02-17 12:40:49 +04:00
|
|
|
(defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
|
2014-07-21 11:53:46 +04:00
|
|
|
#define USE_SPNEGO
|
2011-01-05 19:01:07 +03:00
|
|
|
#endif
|
|
|
|
|
2014-11-16 12:50:06 +03:00
|
|
|
/* Single point where USE_KERBEROS5 definition might be defined */
|
2023-07-20 17:09:04 +03:00
|
|
|
#if !defined(CURL_DISABLE_KERBEROS_AUTH) && \
|
2014-12-03 10:13:30 +03:00
|
|
|
(defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI))
|
2014-11-16 12:50:06 +03:00
|
|
|
#define USE_KERBEROS5
|
2014-11-02 03:24:32 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Single point where USE_NTLM definition might be defined */
|
2023-07-20 17:09:04 +03:00
|
|
|
#if !defined(CURL_DISABLE_NTLM)
|
2023-07-30 00:44:28 +03:00
|
|
|
# if defined(USE_OPENSSL) || defined(USE_MBEDTLS) || \
|
|
|
|
defined(USE_GNUTLS) || defined(USE_SECTRANSP) || \
|
|
|
|
defined(USE_OS400CRYPTO) || defined(USE_WIN32_CRYPTO) || \
|
|
|
|
(defined(USE_WOLFSSL) && defined(HAVE_WOLFSSL_DES_ECB_ENCRYPT))
|
2021-05-07 10:28:50 +03:00
|
|
|
# define USE_CURL_NTLM_CORE
|
|
|
|
# endif
|
|
|
|
# if defined(USE_CURL_NTLM_CORE) || defined(USE_WINDOWS_SSPI)
|
|
|
|
# define USE_NTLM
|
2016-09-12 07:16:30 +03:00
|
|
|
# endif
|
2005-11-23 14:51:31 +03:00
|
|
|
#endif
|
2005-04-07 19:27:13 +04:00
|
|
|
|
2017-06-15 12:11:15 +03:00
|
|
|
#ifdef CURL_WANTS_CA_BUNDLE_ENV
|
|
|
|
#error "No longer supported. Set CURLOPT_CAINFO at runtime instead."
|
|
|
|
#endif
|
|
|
|
|
2019-05-06 00:42:29 +03:00
|
|
|
#if defined(USE_LIBSSH2) || defined(USE_LIBSSH) || defined(USE_WOLFSSH)
|
|
|
|
#define USE_SSH
|
|
|
|
#endif
|
|
|
|
|
2012-04-14 17:12:30 +04:00
|
|
|
/*
|
|
|
|
* Provide a mechanism to silence picky compilers, such as gcc 4.6+.
|
|
|
|
* Parameters should of course normally not be unused, but for example when
|
|
|
|
* we have multiple implementations of the same interface it may happen.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__GNUC__) && ((__GNUC__ >= 3) || \
|
|
|
|
((__GNUC__ == 2) && defined(__GNUC_MINOR__) && (__GNUC_MINOR__ >= 7)))
|
|
|
|
# define UNUSED_PARAM __attribute__((__unused__))
|
2014-12-08 17:29:30 +03:00
|
|
|
# define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
2011-07-13 01:24:52 +04:00
|
|
|
#else
|
2022-10-30 19:38:16 +03:00
|
|
|
# define UNUSED_PARAM /* NOTHING */
|
2014-12-08 17:29:30 +03:00
|
|
|
# define WARN_UNUSED_RESULT
|
2011-07-13 01:24:52 +04:00
|
|
|
#endif
|
|
|
|
|
build: add more picky warnings and fix them
Enable more picky compiler warnings. I've found these options in the
nghttp3 project when implementing the CMake quick picky warning
functionality for it [1].
`-Wunused-macros` was too noisy to keep around, but fixed a few issues
it revealed while testing.
- autotools: reflect the more precisely-versioned clang warnings.
Follow-up to 033f8e2a08eb1d3102f08c4d8c8e85470f8b460e #12324
- autotools: sync between clang and gcc the way we set `no-multichar`.
- autotools: avoid setting `-Wstrict-aliasing=3` twice.
- autotools: disable `-Wmissing-noreturn` for MSYS gcc targets [2].
It triggers in libtool-generated stub code.
- lib/timeval: delete a redundant `!MSDOS` guard from a `WIN32` branch.
- lib/curl_setup.h: delete duplicate declaration for `fileno`.
Added in initial commit ae1912cb0d494b48d514d937826c9fe83ec96c4d
(1999-12-29). This suggests this may not be needed anymore, but if
it does, we may restore this for those specific (non-Windows) systems.
- lib: delete unused macro `FTP_BUFFER_ALLOCSIZE` since
c1d6fe2aaa5a26e49a69a4f2495b3cc7a24d9394.
- lib: delete unused macro `isxdigit_ascii` since
f65f750742068f579f4ee6d8539ed9d5f0afcb85.
- lib/mqtt: delete unused macro `MQTT_HEADER_LEN`.
- lib/multi: delete unused macro `SH_READ`/`SH_WRITE`.
- lib/hostip: add `noreturn` function attribute via new `CURL_NORETURN`
macro.
- lib/mprintf: delete duplicate declaration for `Curl_dyn_vprintf`.
- lib/rand: fix `-Wunreachable-code` and related fallouts [3].
- lib/setopt: fix `-Wunreachable-code-break`.
- lib/system_win32 and lib/timeval: fix double declarations for
`Curl_freq` and `Curl_isVistaOrGreater` in CMake UNITY mode [4].
- lib/warnless: fix double declarations in CMake UNITY mode [5].
This was due to force-disabling the header guard of `warnless.h` to
to reapply it to source code coming after `warnless.c` in UNITY
builds. This reapplied declarations too, causing the warnings.
Solved by adding a header guard for the lines that actually need
to be reapplied.
- lib/vauth/digest: fix `-Wunreachable-code-break` [6].
- lib/vssh/libssh2: fix `-Wunreachable-code-break` and delete redundant
block.
- lib/vtls/sectransp: fix `-Wunreachable-code-break` [7].
- lib/vtls/sectransp: suppress `-Wunreachable-code`.
Detected in `else` branches of dynamic feature checks, with results
known at compile-time, e.g.
```c
if(SecCertificateCopySubjectSummary) /* -> true */
```
Likely fixable as a separate micro-project, but given SecureTransport
is deprecated anyway, let's just silence these locally.
- src/tool_help: delete duplicate declaration for `helptext`.
- src/tool_xattr: fix `-Wunreachable-code`.
- tests: delete duplicate declaration for `unitfail` [8].
- tests: delete duplicate declaration for `strncasecompare`.
- tests/libtest: delete duplicate declaration for `gethostname`.
Originally added in 687df5c8c39c370a59999b9afc0917d808d978b7
(2010-08-02).
Got complicated later: c49e9683b85ba9d12cbb6eebc4ab2c8dba68fbdc
If there are still systems around with warnings, we may restore the
prototype, but limited for those systems.
- tests/lib2305: delete duplicate declaration for
`libtest_debug_config`.
- tests/h2-download: fix `-Wunreachable-code-break`.
[1] https://github.com/ngtcp2/nghttp3/blob/a70edb08e954d690e8fb2c1df999b5a056f8bf9f/cmake/PickyWarningsC.cmake
[2] https://ci.appveyor.com/project/curlorg/curl/builds/48553586/job/3qkgjauiqla5fj45?fullLog=true#L1675
[3] https://github.com/curl/curl/actions/runs/6880886309/job/18716044703?pr=12331#step:7:72
https://github.com/curl/curl/actions/runs/6883016087/job/18722707368?pr=12331#step:7:109
[4] https://ci.appveyor.com/project/curlorg/curl/builds/48555101/job/9g15qkrriklpf1ut#L204
[5] https://ci.appveyor.com/project/curlorg/curl/builds/48555101/job/9g15qkrriklpf1ut#L218
[6] https://github.com/curl/curl/actions/runs/6880886309/job/18716042927?pr=12331#step:7:290
[7] https://github.com/curl/curl/actions/runs/6891484996/job/18746659406?pr=12331#step:9:1193
[8] https://github.com/curl/curl/actions/runs/6882803986/job/18722082562?pr=12331#step:33:1870
Closes #12331
2023-11-15 17:43:36 +03:00
|
|
|
/* noreturn attribute */
|
|
|
|
|
|
|
|
#if !defined(CURL_NORETURN)
|
|
|
|
#if (defined(__GNUC__) && (__GNUC__ >= 3)) || defined(__clang__)
|
|
|
|
# define CURL_NORETURN __attribute__((__noreturn__))
|
|
|
|
#elif defined(_MSC_VER) && (_MSC_VER >= 1200)
|
|
|
|
# define CURL_NORETURN __declspec(noreturn)
|
|
|
|
#else
|
|
|
|
# define CURL_NORETURN
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2023-12-08 16:05:09 +03:00
|
|
|
/* fallthrough attribute */
|
|
|
|
|
|
|
|
#if !defined(FALLTHROUGH)
|
|
|
|
#if (defined(__GNUC__) && __GNUC__ >= 7) || \
|
|
|
|
(defined(__clang__) && __clang_major__ >= 10)
|
|
|
|
# define FALLTHROUGH() __attribute__((fallthrough))
|
|
|
|
#else
|
|
|
|
# define FALLTHROUGH() do {} while (0)
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2006-07-28 18:19:02 +04:00
|
|
|
/*
|
|
|
|
* Include macros and defines that should only be processed once.
|
|
|
|
*/
|
|
|
|
|
2013-02-05 01:56:44 +04:00
|
|
|
#ifndef HEADER_CURL_SETUP_ONCE_H
|
2013-01-06 22:06:49 +04:00
|
|
|
#include "curl_setup_once.h"
|
2013-02-05 01:56:44 +04:00
|
|
|
#endif
|
2006-07-28 18:19:02 +04:00
|
|
|
|
2011-09-04 19:09:22 +04:00
|
|
|
/*
|
|
|
|
* Definition of our NOP statement Object-like macro
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Curl_nop_stmt
|
2019-11-30 11:29:36 +03:00
|
|
|
# define Curl_nop_stmt do { } while(0)
|
2011-09-04 19:09:22 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ensure that Winsock and lwIP TCP/IP stacks are not mixed.
|
|
|
|
*/
|
|
|
|
|
2015-12-07 22:27:29 +03:00
|
|
|
#if defined(__LWIP_OPT_H__) || defined(LWIP_HDR_OPT_H)
|
2023-12-09 23:37:11 +03:00
|
|
|
# if defined(SOCKET) || defined(USE_WINSOCK)
|
2020-08-30 13:21:53 +03:00
|
|
|
# error "WinSock and lwIP TCP/IP stack definitions shall not coexist!"
|
2011-09-04 19:09:22 +04:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2012-01-08 05:32:51 +04:00
|
|
|
/*
|
2021-04-20 10:21:09 +03:00
|
|
|
* shutdown() flags for systems that don't define them
|
2012-01-08 05:32:51 +04:00
|
|
|
*/
|
|
|
|
|
2021-04-20 10:21:09 +03:00
|
|
|
#ifndef SHUT_RD
|
|
|
|
#define SHUT_RD 0x00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SHUT_WR
|
|
|
|
#define SHUT_WR 0x01
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SHUT_RDWR
|
|
|
|
#define SHUT_RDWR 0x02
|
2012-01-08 05:32:51 +04:00
|
|
|
#endif
|
|
|
|
|
2022-09-30 00:29:04 +03:00
|
|
|
/* Define S_ISREG if not defined by system headers, e.g. MSVC */
|
2012-09-13 12:29:54 +04:00
|
|
|
#if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG)
|
|
|
|
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
|
|
|
|
#endif
|
|
|
|
|
2022-09-30 00:29:04 +03:00
|
|
|
/* Define S_ISDIR if not defined by system headers, e.g. MSVC */
|
2013-03-05 23:45:51 +04:00
|
|
|
#if !defined(S_ISDIR) && defined(S_IFMT) && defined(S_IFDIR)
|
|
|
|
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
|
|
|
|
#endif
|
|
|
|
|
2015-06-01 10:20:18 +03:00
|
|
|
/* In Windows the default file mode is text but an application can override it.
|
2016-02-03 20:34:16 +03:00
|
|
|
Therefore we specify it explicitly. https://github.com/curl/curl/pull/258
|
2015-06-01 10:20:18 +03:00
|
|
|
*/
|
2023-11-21 19:54:49 +03:00
|
|
|
#if defined(_WIN32) || defined(MSDOS)
|
2015-06-01 10:20:18 +03:00
|
|
|
#define FOPEN_READTEXT "rt"
|
|
|
|
#define FOPEN_WRITETEXT "wt"
|
2017-09-05 22:27:22 +03:00
|
|
|
#define FOPEN_APPENDTEXT "at"
|
2015-06-01 10:20:18 +03:00
|
|
|
#elif defined(__CYGWIN__)
|
|
|
|
/* Cygwin has specific behavior we need to address when WIN32 is not defined.
|
|
|
|
https://cygwin.com/cygwin-ug-net/using-textbinary.html
|
|
|
|
For write we want our output to have line endings of LF and be compatible with
|
|
|
|
other Cygwin utilities. For read we want to handle input that may have line
|
|
|
|
endings either CRLF or LF so 't' is appropriate.
|
|
|
|
*/
|
|
|
|
#define FOPEN_READTEXT "rt"
|
|
|
|
#define FOPEN_WRITETEXT "w"
|
2017-09-05 22:27:22 +03:00
|
|
|
#define FOPEN_APPENDTEXT "a"
|
2015-06-01 10:20:18 +03:00
|
|
|
#else
|
|
|
|
#define FOPEN_READTEXT "r"
|
|
|
|
#define FOPEN_WRITETEXT "w"
|
2017-09-05 22:27:22 +03:00
|
|
|
#define FOPEN_APPENDTEXT "a"
|
2015-06-01 10:20:18 +03:00
|
|
|
#endif
|
|
|
|
|
2021-05-20 13:11:42 +03:00
|
|
|
/* for systems that don't detect this in configure */
|
2018-04-06 16:26:04 +03:00
|
|
|
#ifndef CURL_SA_FAMILY_T
|
2021-05-20 13:11:42 +03:00
|
|
|
# if defined(HAVE_SA_FAMILY_T)
|
|
|
|
# define CURL_SA_FAMILY_T sa_family_t
|
|
|
|
# elif defined(HAVE_ADDRESS_FAMILY)
|
|
|
|
# define CURL_SA_FAMILY_T ADDRESS_FAMILY
|
|
|
|
# else
|
|
|
|
/* use a sensible default */
|
|
|
|
# define CURL_SA_FAMILY_T unsigned short
|
|
|
|
# endif
|
2018-04-06 16:26:04 +03:00
|
|
|
#endif
|
|
|
|
|
2018-08-13 13:12:14 +03:00
|
|
|
/* Some convenience macros to get the larger/smaller value out of two given.
|
|
|
|
We prefix with CURL to prevent name collisions. */
|
|
|
|
#define CURLMAX(x,y) ((x)>(y)?(x):(y))
|
|
|
|
#define CURLMIN(x,y) ((x)<(y)?(x):(y))
|
|
|
|
|
2022-02-04 22:41:35 +03:00
|
|
|
/* A convenience macro to provide both the string literal and the length of
|
|
|
|
the string literal in one go, useful for functions that take "string,len"
|
|
|
|
as their argument */
|
|
|
|
#define STRCONST(x) x,sizeof(x)-1
|
|
|
|
|
2018-05-27 20:51:04 +03:00
|
|
|
/* Some versions of the Android SDK is missing the declaration */
|
|
|
|
#if defined(HAVE_GETPWUID_R) && defined(HAVE_DECL_GETPWUID_R_MISSING)
|
|
|
|
struct passwd;
|
|
|
|
int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf,
|
|
|
|
size_t buflen, struct passwd **result);
|
|
|
|
#endif
|
|
|
|
|
2019-02-08 11:33:42 +03:00
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
#define UNITTEST
|
|
|
|
#else
|
|
|
|
#define UNITTEST static
|
|
|
|
#endif
|
|
|
|
|
2023-10-24 17:51:05 +03:00
|
|
|
/* Hyper supports HTTP2 also, but Curl's integration with Hyper does not */
|
|
|
|
#if defined(USE_NGHTTP2)
|
2021-04-25 04:05:15 +03:00
|
|
|
#define USE_HTTP2
|
|
|
|
#endif
|
|
|
|
|
2023-03-23 11:39:37 +03:00
|
|
|
#if (defined(USE_NGTCP2) && defined(USE_NGHTTP3)) || \
|
2024-01-18 15:07:07 +03:00
|
|
|
(defined(USE_OPENSSL_QUIC) && defined(USE_NGHTTP3)) || \
|
2023-03-23 11:39:37 +03:00
|
|
|
defined(USE_QUICHE) || defined(USE_MSH3)
|
2024-01-26 18:59:33 +03:00
|
|
|
|
|
|
|
#ifdef CURL_WITH_MULTI_SSL
|
|
|
|
#error "Multi-SSL combined with QUIC is not supported"
|
|
|
|
#endif
|
|
|
|
|
2019-07-22 00:48:58 +03:00
|
|
|
#define ENABLE_QUIC
|
2022-06-01 15:30:55 +03:00
|
|
|
#define USE_HTTP3
|
2019-07-22 00:48:58 +03:00
|
|
|
#endif
|
|
|
|
|
2023-02-12 15:52:59 +03:00
|
|
|
/* Certain Windows implementations are not aligned with what curl expects,
|
|
|
|
so always use the local one on this platform. E.g. the mingw-w64
|
|
|
|
implementation can return wrong results for non-ASCII inputs. */
|
2023-11-21 19:54:49 +03:00
|
|
|
#if defined(HAVE_BASENAME) && defined(_WIN32)
|
2023-02-12 15:52:59 +03:00
|
|
|
#undef HAVE_BASENAME
|
|
|
|
#endif
|
|
|
|
|
2023-11-21 19:54:49 +03:00
|
|
|
#if defined(USE_UNIX_SOCKETS) && defined(_WIN32)
|
2021-06-04 10:03:30 +03:00
|
|
|
# if !defined(UNIX_PATH_MAX)
|
|
|
|
/* Replicating logic present in afunix.h
|
|
|
|
(distributed with newer Windows 10 SDK versions only) */
|
|
|
|
# define UNIX_PATH_MAX 108
|
|
|
|
/* !checksrc! disable TYPEDEFSTRUCT 1 */
|
|
|
|
typedef struct sockaddr_un {
|
|
|
|
ADDRESS_FAMILY sun_family;
|
|
|
|
char sun_path[UNIX_PATH_MAX];
|
|
|
|
} SOCKADDR_UN, *PSOCKADDR_UN;
|
2021-09-29 02:13:59 +03:00
|
|
|
# define WIN32_SOCKADDR_UN
|
2021-06-04 10:03:30 +03:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2023-02-17 11:40:05 +03:00
|
|
|
/* OpenSSLv3 marks DES, MD5 and ENGINE functions deprecated but we have no
|
|
|
|
replacements (yet) so tell the compiler to not warn for them. */
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
#define OPENSSL_SUPPRESS_DEPRECATED
|
|
|
|
#endif
|
|
|
|
|
2012-04-07 01:35:15 +04:00
|
|
|
#endif /* HEADER_CURL_SETUP_H */
|