]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/http-private.h
Move getifaddrs to a separate header.
[thirdparty/cups.git] / cups / http-private.h
CommitLineData
ef416fc2 1/*
2c85b752 2 * Private HTTP definitions for CUPS.
ef416fc2 3 *
378eeedf 4 * Copyright 2007-2018 by Apple Inc.
2c85b752 5 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 6 *
378eeedf
MS
7 * Licensed under Apache License v2.0. See the file "LICENSE" for more
8 * information.
ef416fc2 9 */
10
11#ifndef _CUPS_HTTP_PRIVATE_H_
12# define _CUPS_HTTP_PRIVATE_H_
13
14/*
15 * Include necessary headers...
16 */
17
71e16022 18# include "config.h"
41e6c1f1 19# include <cups/language.h>
5180a04c 20# include <stddef.h>
a74454a7 21# include <stdlib.h>
ef416fc2 22
23# ifdef __sun
ef416fc2 24# include <sys/select.h>
25# endif /* __sun */
26
27# include <limits.h>
19dc16f7 28# ifdef _WIN32
104c5283 29# define _WINSOCK_DEPRECATED_NO_WARNINGS 1
ef416fc2 30# include <io.h>
31# include <winsock2.h>
db8b865d 32# define CUPS_SOCAST (const char *)
ef416fc2 33# else
34# include <unistd.h>
35# include <fcntl.h>
36# include <sys/socket.h>
db8b865d 37# define CUPS_SOCAST
19dc16f7 38# endif /* _WIN32 */
ef416fc2 39
f7deaa1a 40# ifdef HAVE_GSSAPI
eac3a0a0
MS
41# ifdef HAVE_GSS_GSSAPI_H
42# include <GSS/gssapi.h>
eac3a0a0 43# elif defined(HAVE_GSSAPI_GSSAPI_H)
f7deaa1a 44# include <gssapi/gssapi.h>
eac3a0a0 45# elif defined(HAVE_GSSAPI_H)
f7deaa1a 46# include <gssapi.h>
eac3a0a0 47# endif /* HAVE_GSS_GSSAPI_H */
f7deaa1a 48# ifndef HAVE_GSS_C_NT_HOSTBASED_SERVICE
49# define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
50# endif /* !HAVE_GSS_C_NT_HOSTBASED_SERVICE */
51# endif /* HAVE_GSSAPI */
52
b94498cf 53# ifdef HAVE_AUTHORIZATION_H
54# include <Security/Authorization.h>
55# endif /* HAVE_AUTHORIZATION_H */
56
3dd9c340 57# if defined(__APPLE__) && !defined(_SOCKLEN_T)
ef416fc2 58/*
d4874933 59 * macOS 10.2.x does not define socklen_t, and in fact uses an int instead of
ef416fc2 60 * unsigned type for length values...
61 */
62
63typedef int socklen_t;
3dd9c340 64# endif /* __APPLE__ && !_SOCKLEN_T */
ef416fc2 65
71e16022 66# include <cups/http.h>
fa73b229 67# include "ipp-private.h"
ef416fc2 68
724e1819 69# ifdef HAVE_GNUTLS
07ed0e9a
MS
70# include <gnutls/gnutls.h>
71# include <gnutls/x509.h>
07ed0e9a
MS
72# elif defined(HAVE_CDSASSL)
73# include <CoreFoundation/CoreFoundation.h>
74# include <Security/Security.h>
75# include <Security/SecureTransport.h>
76# ifdef HAVE_SECITEM_H
77# include <Security/SecItem.h>
78# endif /* HAVE_SECITEM_H */
07ed0e9a
MS
79# ifdef HAVE_SECCERTIFICATE_H
80# include <Security/SecCertificate.h>
81# include <Security/SecIdentity.h>
82# endif /* HAVE_SECCERTIFICATE_H */
07ed0e9a 83# elif defined(HAVE_SSPISSL)
2ece34a9
MS
84# include <wincrypt.h>
85# include <wintrust.h>
86# include <schannel.h>
87# define SECURITY_WIN32
88# include <security.h>
89# include <sspi.h>
724e1819 90# endif /* HAVE_GNUTLS */
07ed0e9a 91
19dc16f7 92# ifndef _WIN32
07ed0e9a 93# include <net/if.h>
ed26f50f 94# include <resolv.h>
07ed0e9a
MS
95# ifdef HAVE_GETIFADDRS
96# include <ifaddrs.h>
97# else
98# include <sys/ioctl.h>
99# ifdef HAVE_SYS_SOCKIO_H
100# include <sys/sockio.h>
101# endif /* HAVE_SYS_SOCKIO_H */
102# endif /* HAVE_GETIFADDRS */
19dc16f7 103# endif /* !_WIN32 */
07ed0e9a
MS
104
105
106/*
107 * C++ magic...
108 */
109
110# ifdef __cplusplus
111extern "C" {
112# endif /* __cplusplus */
113
114
eac3a0a0
MS
115/*
116 * Constants...
117 */
118
02c88e67
MS
119# define _HTTP_MAX_SBUFFER 65536 /* Size of (de)compression buffer */
120# define _HTTP_RESOLVE_DEFAULT 0 /* Just resolve with default options */
121# define _HTTP_RESOLVE_STDERR 1 /* Log resolve progress to stderr */
122# define _HTTP_RESOLVE_FQDN 2 /* Resolve to a FQDN */
123# define _HTTP_RESOLVE_FAXOUT 4 /* Resolve FaxOut service? */
124
125# define _HTTP_TLS_NONE 0 /* No TLS options */
126# define _HTTP_TLS_ALLOW_RC4 1 /* Allow RC4 cipher suites */
8f1fbdec
MS
127# define _HTTP_TLS_ALLOW_DH 2 /* Allow DH/DHE key negotiation */
128# define _HTTP_TLS_DENY_CBC 4 /* Deny CBC cipher suites */
02c88e67 129# define _HTTP_TLS_SET_DEFAULT 128 /* Setting the default TLS options */
63aefcd5 130
8f1fbdec
MS
131# define _HTTP_TLS_SSL3 0 /* Min/max version is SSL/3.0 */
132# define _HTTP_TLS_1_0 1 /* Min/max version is TLS/1.0 */
133# define _HTTP_TLS_1_1 2 /* Min/max version is TLS/1.1 */
134# define _HTTP_TLS_1_2 3 /* Min/max version is TLS/1.2 */
135# define _HTTP_TLS_1_3 4 /* Min/max version is TLS/1.3 */
136# define _HTTP_TLS_MAX 5 /* Highest known TLS version */
137
eac3a0a0 138
07ed0e9a
MS
139/*
140 * Types and functions for SSL support...
141 */
142
724e1819 143# ifdef HAVE_GNUTLS
ef416fc2 144/*
145 * The GNU TLS library is more of a "bare metal" SSL/TLS library...
146 */
ef416fc2 147
dd332638 148typedef gnutls_session_t http_tls_t;
172bdf5d 149typedef gnutls_certificate_credentials_t *http_tls_credentials_t;
ef416fc2 150
151# elif defined(HAVE_CDSASSL)
152/*
153 * Darwin's Security framework provides its own SSL/TLS context structure
154 * for its IO and protocol management...
155 */
156
07ed0e9a 157# if !defined(HAVE_SECBASEPRIV_H) && defined(HAVE_CSSMERRORSTRING) /* Declare prototype for function in that header... */
7cf5915e 158extern const char *cssmErrorString(int error);
07ed0e9a 159# endif /* !HAVE_SECBASEPRIV_H && HAVE_CSSMERRORSTRING */
07ed0e9a 160# if !defined(HAVE_SECIDENTITYSEARCHPRIV_H) && defined(HAVE_SECIDENTITYSEARCHCREATEWITHPOLICY) /* Declare prototype for function in that header... */
7cf5915e
MS
161extern OSStatus SecIdentitySearchCreateWithPolicy(SecPolicyRef policy,
162 CFStringRef idString, CSSM_KEYUSE keyUsage,
163 CFTypeRef keychainOrArray,
164 Boolean returnOnlyValidIdentities,
165 SecIdentitySearchRef* searchRef);
07ed0e9a
MS
166# endif /* !HAVE_SECIDENTITYSEARCHPRIV_H && HAVE_SECIDENTITYSEARCHCREATEWITHPOLICY */
167# if !defined(HAVE_SECPOLICYPRIV_H) && defined(HAVE_SECPOLICYSETVALUE) /* Declare prototype for function in that header... */
7cf5915e
MS
168extern OSStatus SecPolicySetValue(SecPolicyRef policyRef,
169 const CSSM_DATA *value);
07ed0e9a 170# endif /* !HAVE_SECPOLICYPRIV_H && HAVE_SECPOLICYSETVALUE */
7cf5915e
MS
171
172typedef SSLContextRef http_tls_t;
173typedef CFArrayRef http_tls_credentials_t;
ef416fc2 174
cc754834 175# elif defined(HAVE_SSPISSL)
07ed0e9a
MS
176/*
177 * Windows' SSPI library gets a CUPS wrapper...
178 */
179
2ece34a9
MS
180typedef struct _http_sspi_s /**** SSPI/SSL data structure ****/
181{
182 CredHandle creds; /* Credentials */
183 CtxtHandle context; /* SSL context */
184 BOOL contextInitialized; /* Is context init'd? */
185 SecPkgContext_StreamSizes streamSizes;/* SSL data stream sizes */
186 BYTE *decryptBuffer; /* Data pre-decryption*/
187 size_t decryptBufferLength; /* Length of decrypt buffer */
188 size_t decryptBufferUsed; /* Bytes used in buffer */
189 BYTE *readBuffer; /* Data post-decryption */
190 int readBufferLength; /* Length of read buffer */
191 int readBufferUsed; /* Bytes used in buffer */
192 BYTE *writeBuffer; /* Data pre-encryption */
193 int writeBufferLength; /* Length of write buffer */
2ece34a9
MS
194 PCCERT_CONTEXT localCert, /* Local certificate */
195 remoteCert; /* Remote (peer's) certificate */
d777d26d 196 char error[256]; /* Most recent error message */
2ece34a9
MS
197} _http_sspi_t;
198typedef _http_sspi_t *http_tls_t;
17eecbf1 199typedef PCCERT_CONTEXT http_tls_credentials_t;
07ed0e9a 200
7cf5915e 201# else
07ed0e9a
MS
202/*
203 * Otherwise define stub types since we have no SSL support...
204 */
205
7cf5915e 206typedef void *http_tls_t;
07ed0e9a 207typedef void *http_tls_credentials_t;
724e1819 208# endif /* HAVE_GNUTLS */
ef416fc2 209
a469f8a5
MS
210typedef enum _http_coding_e /**** HTTP content coding enumeration ****/
211{
212 _HTTP_CODING_IDENTITY, /* No content coding */
213 _HTTP_CODING_GZIP, /* LZ77+gzip decompression */
214 _HTTP_CODING_DEFLATE, /* LZ77+zlib compression */
215 _HTTP_CODING_GUNZIP, /* LZ77+gzip decompression */
216 _HTTP_CODING_INFLATE /* LZ77+zlib decompression */
217} _http_coding_t;
218
219typedef enum _http_mode_e /**** HTTP mode enumeration ****/
220{
221 _HTTP_MODE_CLIENT, /* Client connected to server */
222 _HTTP_MODE_SERVER /* Server connected (accepted) from client */
223} _http_mode_t;
224
5ec1fd3d 225# ifndef _HTTP_NO_PRIVATE
a469f8a5 226struct _http_s /**** HTTP connection structure ****/
f7deaa1a 227{
228 int fd; /* File descriptor for this socket */
229 int blocking; /* To block or not to block */
230 int error; /* Last error on read */
231 time_t activity; /* Time since last read/write */
232 http_state_t state; /* State of client */
233 http_status_t status; /* Status of last request */
234 http_version_t version; /* Protocol version */
235 http_keepalive_t keep_alive; /* Keep-alive supported? */
85dda01c 236 struct sockaddr_in _hostaddr; /* Address of connected host (deprecated) */
f7deaa1a 237 char hostname[HTTP_MAX_HOST],
238 /* Name of connected host */
378eeedf
MS
239 _fields[HTTP_FIELD_ACCEPT_ENCODING][HTTP_MAX_VALUE];
240 /* Field values up to Accept-Encoding (deprecated) */
f7deaa1a 241 char *data; /* Pointer to data buffer */
242 http_encoding_t data_encoding; /* Chunked or not */
85dda01c 243 int _data_remaining;/* Number of bytes left (deprecated) */
f7deaa1a 244 int used; /* Number of bytes used in buffer */
245 char buffer[HTTP_MAX_BUFFER];
246 /* Buffer for incoming data */
5ec1fd3d 247 int _auth_type; /* Authentication in use (deprecated) */
7ec11630 248 unsigned char _md5_state[88]; /* MD5 state (deprecated) */
f7deaa1a 249 char nonce[HTTP_MAX_VALUE];
250 /* Nonce value */
7ec11630 251 unsigned nonce_count; /* Nonce count */
7cf5915e 252 http_tls_t tls; /* TLS state information */
f7deaa1a 253 http_encryption_t encryption; /* Encryption requirements */
a469f8a5 254
f7deaa1a 255 /**** New in CUPS 1.1.19 ****/
85dda01c
MS
256 fd_set *input_set; /* select() set for httpWait() (deprecated) */
257 http_status_t expect; /* Expect: header */
258 char *cookie; /* Cookie value(s) */
a469f8a5 259
f7deaa1a 260 /**** New in CUPS 1.1.20 ****/
261 char _authstring[HTTP_MAX_VALUE],
c1420c87 262 /* Current Authorization value (deprecated) */
f7deaa1a 263 userpass[HTTP_MAX_VALUE];
85dda01c
MS
264 /* Username:password string */
265 int digest_tries; /* Number of tries for digest auth */
a469f8a5 266
f7deaa1a 267 /**** New in CUPS 1.2 ****/
85dda01c
MS
268 off_t data_remaining; /* Number of bytes left */
269 http_addr_t *hostaddr; /* Current host address and port */
270 http_addrlist_t *addrlist; /* List of valid addresses */
f7deaa1a 271 char wbuffer[HTTP_MAX_BUFFER];
272 /* Buffer for outgoing data */
85dda01c 273 int wused; /* Write buffer bytes used */
a469f8a5 274
f7deaa1a 275 /**** New in CUPS 1.3 ****/
c1420c87 276 char *authstring; /* Current Authorization field */
f7deaa1a 277# ifdef HAVE_GSSAPI
85dda01c
MS
278 gss_OID gssmech; /* Authentication mechanism */
279 gss_ctx_id_t gssctx; /* Authentication context */
280 gss_name_t gssname; /* Authentication server name */
f7deaa1a 281# endif /* HAVE_GSSAPI */
b94498cf 282# ifdef HAVE_AUTHORIZATION_H
85dda01c 283 AuthorizationRef auth_ref; /* Authorization ref */
b94498cf 284# endif /* HAVE_AUTHORIZATION_H */
a469f8a5 285
7cf5915e
MS
286 /**** New in CUPS 1.5 ****/
287 http_tls_credentials_t tls_credentials;
85dda01c
MS
288 /* TLS credentials */
289 http_timeout_cb_t timeout_cb; /* Timeout callback */
290 void *timeout_data; /* User data pointer */
291 double timeout_value; /* Timeout in seconds */
292 int wait_value; /* httpWait value for timeout */
eac3a0a0
MS
293# ifdef HAVE_GSSAPI
294 char gsshost[256]; /* Hostname for Kerberos */
295# endif /* HAVE_GSSAPI */
a469f8a5
MS
296
297 /**** New in CUPS 1.7 ****/
cb7f98ee 298 int tls_upgrade; /* Non-zero if we are doing an upgrade */
a469f8a5 299 _http_mode_t mode; /* _HTTP_MODE_CLIENT or _HTTP_MODE_SERVER */
a469f8a5
MS
300# ifdef HAVE_LIBZ
301 _http_coding_t coding; /* _HTTP_CODING_xxx */
5a855d85
MS
302 void *stream; /* (De)compression stream */
303 unsigned char *sbuffer; /* (De)compression buffer */
a469f8a5 304# endif /* HAVE_LIBZ */
7ec11630 305
16f67389
MS
306 /**** New in CUPS 2.2.9 ****/
307 char algorithm[65], /* Algorithm from WWW-Authenticate */
308 nextnonce[HTTP_MAX_VALUE],
309 /* Next nonce value from Authentication-Info */
310 opaque[HTTP_MAX_VALUE],
311 /* Opaque value from WWW-Authenticate */
312 realm[HTTP_MAX_VALUE];
313 /* Realm from WWW-Authenticate */
314
7ec11630 315 /**** New in CUPS 2.3 ****/
378eeedf
MS
316 char *fields[HTTP_FIELD_MAX],
317 /* Allocated field values */
318 *default_fields[HTTP_FIELD_MAX];
319 /* Default field values, if any */
f7deaa1a 320};
5ec1fd3d 321# endif /* !_HTTP_NO_PRIVATE */
f7deaa1a 322
323
ef416fc2 324/*
325 * Some OS's don't have hstrerror(), most notably Solaris...
326 */
327
328# ifndef HAVE_HSTRERROR
329extern const char *_cups_hstrerror(int error);
330# define hstrerror _cups_hstrerror
ef416fc2 331# endif /* !HAVE_HSTRERROR */
332
89d46774 333
839a51c8 334/*
1ff0402e 335 * Prototypes...
839a51c8
MS
336 */
337
e3586875 338extern void _httpAddrSetPort(http_addr_t *addr, int port) _CUPS_PRIVATE;
85dda01c 339extern http_tls_credentials_t
e3586875 340 _httpCreateCredentials(cups_array_t *credentials) _CUPS_PRIVATE;
1106b00e 341extern char *_httpDecodeURI(char *dst, const char *src,
e3586875
MS
342 size_t dstsize) _CUPS_PRIVATE;
343extern void _httpDisconnect(http_t *http) _CUPS_PRIVATE;
5eb9da71 344extern char *_httpEncodeURI(char *dst, const char *src,
e3586875
MS
345 size_t dstsize) _CUPS_PRIVATE;
346extern void _httpFreeCredentials(http_tls_credentials_t credentials) _CUPS_PRIVATE;
5eb9da71 347extern const char *_httpResolveURI(const char *uri, char *resolved_uri,
eac3a0a0 348 size_t resolved_size, int options,
07ed0e9a 349 int (*cb)(void *context),
e3586875
MS
350 void *context) _CUPS_PRIVATE;
351extern int _httpSetDigestAuthString(http_t *http, const char *nonce, const char *method, const char *resource) _CUPS_PRIVATE;
352extern const char *_httpStatus(cups_lang_t *lang, http_status_t status) _CUPS_PRIVATE;
353extern void _httpTLSInitialize(void) _CUPS_PRIVATE;
354extern size_t _httpTLSPending(http_t *http) _CUPS_PRIVATE;
355extern int _httpTLSRead(http_t *http, char *buf, int len) _CUPS_PRIVATE;
e3586875
MS
356extern void _httpTLSSetOptions(int options, int min_version, int max_version) _CUPS_PRIVATE;
357extern int _httpTLSStart(http_t *http) _CUPS_PRIVATE;
358extern void _httpTLSStop(http_t *http) _CUPS_PRIVATE;
359extern int _httpTLSWrite(http_t *http, const char *buf, int len) _CUPS_PRIVATE;
360extern int _httpUpdate(http_t *http, http_status_t *status) _CUPS_PRIVATE;
361extern int _httpWait(http_t *http, int msec, int usessl) _CUPS_PRIVATE;
6d2f911b
MS
362
363
07ed0e9a
MS
364/*
365 * C++ magic...
366 */
367
368# ifdef __cplusplus
369}
370# endif /* __cplusplus */
371
ef416fc2 372#endif /* !_CUPS_HTTP_PRIVATE_H_ */