]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/http-private.h
Merge changes from CUPS 1.5svn-r9525
[thirdparty/cups.git] / cups / http-private.h
CommitLineData
ef416fc2 1/*
b19ccc9e 2 * "$Id: http-private.h 7850 2008-08-20 00:07:25Z mike $"
ef416fc2 3 *
71e16022 4 * Private HTTP definitions for CUPS.
ef416fc2 5 *
71e16022 6 * Copyright 2007-2010 by Apple Inc.
b86bc4cf 7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8 *
9 * These coded instructions, statements, and computer programs are the
bc44d920 10 * property of Apple Inc. and are protected by Federal copyright
11 * law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 * which should have been included with this file. If this file is
13 * file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14 *
15 * This file is subject to the Apple OS-Developed Software exception.
16 */
17
18#ifndef _CUPS_HTTP_PRIVATE_H_
19# define _CUPS_HTTP_PRIVATE_H_
20
21/*
22 * Include necessary headers...
23 */
24
71e16022 25# include "config.h"
5180a04c 26# include <stddef.h>
a74454a7 27# include <stdlib.h>
ef416fc2 28
29# ifdef __sun
ef416fc2 30# include <sys/select.h>
31# endif /* __sun */
32
33# include <limits.h>
34# ifdef WIN32
35# include <io.h>
36# include <winsock2.h>
37# else
38# include <unistd.h>
39# include <fcntl.h>
40# include <sys/socket.h>
41# define closesocket(f) close(f)
42# endif /* WIN32 */
43
f7deaa1a 44# ifdef HAVE_GSSAPI
45# ifdef HAVE_GSSAPI_GSSAPI_H
46# include <gssapi/gssapi.h>
47# endif /* HAVE_GSSAPI_GSSAPI_H */
48# ifdef HAVE_GSSAPI_GSSAPI_GENERIC_H
49# include <gssapi/gssapi_generic.h>
50# endif /* HAVE_GSSAPI_GSSAPI_GENERIC_H */
51# ifdef HAVE_GSSAPI_GSSAPI_KRB5_H
52# include <gssapi/gssapi_krb5.h>
53# endif /* HAVE_GSSAPI_GSSAPI_KRB5_H */
54# ifdef HAVE_GSSAPI_H
55# include <gssapi.h>
56# endif /* HAVE_GSSAPI_H */
57# ifndef HAVE_GSS_C_NT_HOSTBASED_SERVICE
58# define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
59# endif /* !HAVE_GSS_C_NT_HOSTBASED_SERVICE */
db1f069b
MS
60# ifdef HAVE_KRB5_H
61# include <krb5.h>
62# endif /* HAVE_KRB5_H */
f7deaa1a 63# endif /* HAVE_GSSAPI */
64
b94498cf 65# ifdef HAVE_AUTHORIZATION_H
66# include <Security/Authorization.h>
67# endif /* HAVE_AUTHORIZATION_H */
68
4400e98d 69# if defined(__sgi) || (defined(__APPLE__) && !defined(_SOCKLEN_T))
ef416fc2 70/*
4400e98d 71 * IRIX and MacOS X 10.2.x do not define socklen_t, and in fact use an int instead of
ef416fc2 72 * unsigned type for length values...
73 */
74
75typedef int socklen_t;
4400e98d 76# endif /* __sgi || (__APPLE__ && !_SOCKLEN_T) */
ef416fc2 77
71e16022
MS
78# include <cups/http.h>
79# include "md5-private.h"
fa73b229 80# include "ipp-private.h"
ef416fc2 81
82# if defined HAVE_LIBSSL
83/*
84 * The OpenSSL library provides its own SSL/TLS context structure for its
411affcf 85 * IO and protocol management. However, we need to provide our own BIO
86 * (basic IO) implementation to do timeouts...
ef416fc2 87 */
88
89# include <openssl/err.h>
90# include <openssl/rand.h>
91# include <openssl/ssl.h>
92
7cf5915e
MS
93typedef SSL *http_tls_t;
94typedef void *http_tls_credentials_t;
ef416fc2 95
411affcf 96extern BIO_METHOD *_httpBIOMethods(void);
97
ef416fc2 98# elif defined HAVE_GNUTLS
99/*
100 * The GNU TLS library is more of a "bare metal" SSL/TLS library...
101 */
102# include <gnutls/gnutls.h>
7cf5915e 103# include <gnutls/x509.h>
6d2f911b 104# include <gcrypt.h>
ef416fc2 105
7cf5915e
MS
106typedef gnutls_session http_tls_t;
107typedef void *http_tls_credentials_t;
ef416fc2 108
411affcf 109extern ssize_t _httpReadGNUTLS(gnutls_transport_ptr ptr, void *data,
110 size_t length);
111extern ssize_t _httpWriteGNUTLS(gnutls_transport_ptr ptr, const void *data,
112 size_t length);
113
ef416fc2 114# elif defined(HAVE_CDSASSL)
115/*
116 * Darwin's Security framework provides its own SSL/TLS context structure
117 * for its IO and protocol management...
118 */
119
7cf5915e
MS
120# include <CoreFoundation/CoreFoundation.h>
121# include <Security/Security.h>
ef416fc2 122# include <Security/SecureTransport.h>
0268488e
MS
123# ifdef HAVE_SECITEM_H
124# include <Security/SecItem.h>
125# endif /* HAVE_SECITEM_H */
7cf5915e
MS
126# ifdef HAVE_SECBASEPRIV_H
127# include <Security/SecBasePriv.h>
128# elif defined(HAVE_CSSMERRORSTRING) /* Declare prototype for function in that header... */
129extern const char *cssmErrorString(int error);
130# endif /* HAVE_SECBASEPRIV_H */
131# ifdef HAVE_SECCERTIFICATE_H
132# include <Security/SecCertificate.h>
133# include <Security/SecIdentity.h>
134# endif /* HAVE_SECCERTIFICATE_H */
135# ifdef HAVE_SECITEMPRIV_H
136# include <Security/SecItemPriv.h>
137# else /* Declare constants from that header... */
138extern const CFTypeRef kSecClassCertificate;
139extern const CFTypeRef kSecClassIdentity;
140# endif /* HAVE_SECITEMPRIV_H */
141# ifdef HAVE_SECIDENTITYSEARCHPRIV_H
142# include <Security/SecIdentitySearchPriv.h>
143# elif defined(HAVE_SECIDENTITYSEARCHCREATEWITHPOLICY) /* Declare prototype for function in that header... */
144extern OSStatus SecIdentitySearchCreateWithPolicy(SecPolicyRef policy,
145 CFStringRef idString, CSSM_KEYUSE keyUsage,
146 CFTypeRef keychainOrArray,
147 Boolean returnOnlyValidIdentities,
148 SecIdentitySearchRef* searchRef);
149# endif /* HAVE_SECIDENTITYSEARCHPRIV_H */
150# ifdef HAVE_SECPOLICYPRIV_H
151# include <Security/SecPolicyPriv.h>
152# elif defined(HAVE_SECIDENTITYSEARCHCREATEWITHPOLICY) /* Declare prototype for function in that header... */
153extern OSStatus SecPolicySetValue(SecPolicyRef policyRef,
154 const CSSM_DATA *value);
155# endif /* HAVE_SECPOLICYPRIV_H */
156
157typedef SSLContextRef http_tls_t;
158typedef CFArrayRef http_tls_credentials_t;
ef416fc2 159
160extern OSStatus _httpReadCDSA(SSLConnectionRef connection, void *data,
161 size_t *dataLength);
162extern OSStatus _httpWriteCDSA(SSLConnectionRef connection, const void *data,
163 size_t *dataLength);
cc754834
MS
164
165# elif defined(HAVE_SSPISSL)
166# include "sspi-private.h"
7cf5915e
MS
167typedef _sspi_struct_t * http_tls_t;
168typedef void *http_tls_credentials_t;
169# else
170typedef void *http_tls_t;
ef416fc2 171# endif /* HAVE_LIBSSL */
172
f7deaa1a 173
10d09e33
MS
174typedef int (*_http_timeout_cb_t)(http_t *http, void *user_data);
175
f7deaa1a 176struct _http_s /**** HTTP connection structure. ****/
177{
178 int fd; /* File descriptor for this socket */
179 int blocking; /* To block or not to block */
180 int error; /* Last error on read */
181 time_t activity; /* Time since last read/write */
182 http_state_t state; /* State of client */
183 http_status_t status; /* Status of last request */
184 http_version_t version; /* Protocol version */
185 http_keepalive_t keep_alive; /* Keep-alive supported? */
186 struct sockaddr_in _hostaddr; /* Address of connected host @deprecated@ */
187 char hostname[HTTP_MAX_HOST],
188 /* Name of connected host */
189 fields[HTTP_FIELD_MAX][HTTP_MAX_VALUE];
190 /* Field values */
191 char *data; /* Pointer to data buffer */
192 http_encoding_t data_encoding; /* Chunked or not */
193 int _data_remaining;/* Number of bytes left @deprecated@ */
194 int used; /* Number of bytes used in buffer */
195 char buffer[HTTP_MAX_BUFFER];
196 /* Buffer for incoming data */
197 int auth_type; /* Authentication in use */
198 _cups_md5_state_t md5_state; /* MD5 state */
199 char nonce[HTTP_MAX_VALUE];
200 /* Nonce value */
201 int nonce_count; /* Nonce count */
7cf5915e 202 http_tls_t tls; /* TLS state information */
f7deaa1a 203 http_encryption_t encryption; /* Encryption requirements */
204 /**** New in CUPS 1.1.19 ****/
205 fd_set *input_set; /* select() set for httpWait() @deprecated@ */
206 http_status_t expect; /* Expect: header @since CUPS 1.1.19@ */
207 char *cookie; /* Cookie value(s) @since CUPS 1.1.19@ */
208 /**** New in CUPS 1.1.20 ****/
209 char _authstring[HTTP_MAX_VALUE],
210 /* Current Authentication value. @deprecated@ */
211 userpass[HTTP_MAX_VALUE];
212 /* Username:password string @since CUPS 1.1.20@ */
213 int digest_tries; /* Number of tries for digest auth @since CUPS 1.1.20@ */
214 /**** New in CUPS 1.2 ****/
215 off_t data_remaining; /* Number of bytes left @since CUPS 1.2@ */
216 http_addr_t *hostaddr; /* Current host address and port @since CUPS 1.2@ */
217 http_addrlist_t *addrlist; /* List of valid addresses @since CUPS 1.2@ */
218 char wbuffer[HTTP_MAX_BUFFER];
219 /* Buffer for outgoing data */
220 int wused; /* Write buffer bytes used @since CUPS 1.2@ */
221 /**** New in CUPS 1.3 ****/
222 char *field_authorization;
223 /* Authorization field @since CUPS 1.3@ */
224 char *authstring; /* Current authorization field @since CUPS 1.3 */
225# ifdef HAVE_GSSAPI
226 gss_OID gssmech; /* Authentication mechanism @since CUPS 1.3@ */
227 gss_ctx_id_t gssctx; /* Authentication context @since CUPS 1.3@ */
228 gss_name_t gssname; /* Authentication server name @since CUPS 1.3@ */
229# endif /* HAVE_GSSAPI */
b94498cf 230# ifdef HAVE_AUTHORIZATION_H
10d09e33 231 AuthorizationRef auth_ref; /* Authorization ref @since CUPS 1.3@ */
b94498cf 232# endif /* HAVE_AUTHORIZATION_H */
7cf5915e
MS
233 /**** New in CUPS 1.5 ****/
234 http_tls_credentials_t tls_credentials;
10d09e33
MS
235 /* TLS credentials @since CUPS 1.5@ */
236 _http_timeout_cb_t timeout_cb; /* Timeout callback @since CUPS 1.5@ */
237 void *timeout_data; /* User data pointer @since CUPS 1.5@ */
238 struct timeval timeout_value; /* Timeout in seconds */
f7deaa1a 239};
240
241
ef416fc2 242/*
243 * Some OS's don't have hstrerror(), most notably Solaris...
244 */
245
246# ifndef HAVE_HSTRERROR
247extern const char *_cups_hstrerror(int error);
248# define hstrerror _cups_hstrerror
249# elif defined(_AIX) || defined(__osf__)
250/*
251 * AIX and Tru64 UNIX don't provide a prototype but do provide the function...
252 */
253extern const char *hstrerror(int error);
254# endif /* !HAVE_HSTRERROR */
255
89d46774 256
257/*
258 * Some OS's don't have getifaddrs() and freeifaddrs()...
259 */
260
b86bc4cf 261# ifndef WIN32
262# include <net/if.h>
263# ifdef HAVE_GETIFADDRS
264# include <ifaddrs.h>
265# else
266# include <sys/ioctl.h>
267# ifdef HAVE_SYS_SOCKIO_H
268# include <sys/sockio.h>
269# endif /* HAVE_SYS_SOCKIO_H */
270
271# ifdef ifa_dstaddr
272# undef ifa_dstaddr
273# endif /* ifa_dstaddr */
274# ifndef ifr_netmask
275# define ifr_netmask ifr_addr
276# endif /* !ifr_netmask */
89d46774 277
278struct ifaddrs /**** Interface Structure ****/
279{
280 struct ifaddrs *ifa_next; /* Next interface in list */
281 char *ifa_name; /* Name of interface */
282 unsigned int ifa_flags; /* Flags (up, point-to-point, etc.) */
283 struct sockaddr *ifa_addr, /* Network address */
f301802f 284 *ifa_netmask; /* Address mask */
285 union
286 {
287 struct sockaddr *ifu_broadaddr; /* Broadcast address of this interface. */
288 struct sockaddr *ifu_dstaddr; /* Point-to-point destination address. */
289 } ifa_ifu;
290
89d46774 291 void *ifa_data; /* Interface statistics */
292};
293
b86bc4cf 294# ifndef ifa_broadaddr
295# define ifa_broadaddr ifa_ifu.ifu_broadaddr
296# endif /* !ifa_broadaddr */
297# ifndef ifa_dstaddr
298# define ifa_dstaddr ifa_ifu.ifu_dstaddr
299# endif /* !ifa_dstaddr */
f301802f 300
a74454a7 301extern int _cups_getifaddrs(struct ifaddrs **addrs);
b86bc4cf 302# define getifaddrs _cups_getifaddrs
a74454a7 303extern void _cups_freeifaddrs(struct ifaddrs *addrs);
b86bc4cf 304# define freeifaddrs _cups_freeifaddrs
305# endif /* HAVE_GETIFADDRS */
306# endif /* !WIN32 */
89d46774 307
839a51c8 308/*
1ff0402e 309 * Prototypes...
839a51c8
MS
310 */
311
1ff0402e 312extern int _httpAddrPort(http_addr_t *addr);
7cf5915e
MS
313extern http_tls_credentials_t
314 _httpConvertCredentials(cups_array_t *credentials);
1ff0402e 315extern http_t *_httpCreate(const char *host, int port,
1106b00e
MS
316 http_encryption_t encryption,
317 int family);
318extern char *_httpDecodeURI(char *dst, const char *src,
319 size_t dstsize);
6d2f911b 320extern void _httpDisconnect(http_t *http);
5eb9da71
MS
321extern char *_httpEncodeURI(char *dst, const char *src,
322 size_t dstsize);
7cf5915e 323extern void _httpFreeCredentials(http_tls_credentials_t credentials);
6d2f911b 324extern ssize_t _httpPeek(http_t *http, char *buffer, size_t length);
5eb9da71 325extern const char *_httpResolveURI(const char *uri, char *resolved_uri,
1f0275e3 326 size_t resolved_size, int log);
10d09e33
MS
327extern void _httpSetTimeout(http_t *http, double timeout,
328 _http_timeout_cb_t cb, void *user_data);
e60ec91f 329extern int _httpUpdate(http_t *http, http_status_t *status);
38e73f87 330extern int _httpWait(http_t *http, int msec, int usessl);
6d2f911b
MS
331
332
ef416fc2 333#endif /* !_CUPS_HTTP_PRIVATE_H_ */
334
335/*
b19ccc9e 336 * End of "$Id: http-private.h 7850 2008-08-20 00:07:25Z mike $".
ef416fc2 337 */