blob: ba416f66627efea507a8062b31ad6f2ecd8eeb75 [file] [log] [blame]
jlovellef416fc2006-01-13 01:51:53 +00001/*
msweet2e4ff8a2007-10-17 20:05:25 +00002 * "$Id: http-private.h 6933 2007-09-10 16:45:59Z mike $"
jlovellef416fc2006-01-13 01:51:53 +00003 *
4 * Private HTTP definitions for the Common UNIX Printing System (CUPS).
5 *
jlovellbc44d922007-07-16 23:34:09 +00006 * Copyright 2007 by Apple Inc.
jlovellb86bc4c2007-02-14 19:18:46 +00007 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
jlovellef416fc2006-01-13 01:51:53 +00008 *
9 * These coded instructions, statements, and computer programs are the
jlovellbc44d922007-07-16 23:34:09 +000010 * 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/".
jlovellef416fc2006-01-13 01:51:53 +000014 *
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
jlovella74454a2006-05-05 19:18:41 +000025# include <stdlib.h>
26# include <config.h>
jlovellef416fc2006-01-13 01:51:53 +000027
28# ifdef __sun
jlovellef416fc2006-01-13 01:51:53 +000029# include <sys/select.h>
30# endif /* __sun */
31
32# include <limits.h>
33# ifdef WIN32
34# include <io.h>
35# include <winsock2.h>
36# else
37# include <unistd.h>
38# include <fcntl.h>
39# include <sys/socket.h>
40# define closesocket(f) close(f)
41# endif /* WIN32 */
42
jlovellf7deaa12007-03-14 16:55:44 +000043# ifdef HAVE_GSSAPI
44# ifdef HAVE_GSSAPI_GSSAPI_H
45# include <gssapi/gssapi.h>
46# endif /* HAVE_GSSAPI_GSSAPI_H */
47# ifdef HAVE_GSSAPI_GSSAPI_GENERIC_H
48# include <gssapi/gssapi_generic.h>
49# endif /* HAVE_GSSAPI_GSSAPI_GENERIC_H */
50# ifdef HAVE_GSSAPI_GSSAPI_KRB5_H
51# include <gssapi/gssapi_krb5.h>
52# endif /* HAVE_GSSAPI_GSSAPI_KRB5_H */
53# ifdef HAVE_GSSAPI_H
54# include <gssapi.h>
55# endif /* HAVE_GSSAPI_H */
56# ifndef HAVE_GSS_C_NT_HOSTBASED_SERVICE
57# define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
58# endif /* !HAVE_GSS_C_NT_HOSTBASED_SERVICE */
msweetdb1f0692007-09-14 02:27:22 +000059# ifdef HAVE_KRB5_H
60# include <krb5.h>
61# endif /* HAVE_KRB5_H */
jlovellf7deaa12007-03-14 16:55:44 +000062# endif /* HAVE_GSSAPI */
63
jlovellb94498c2007-05-04 21:17:48 +000064# ifdef HAVE_AUTHORIZATION_H
65# include <Security/Authorization.h>
66# endif /* HAVE_AUTHORIZATION_H */
67
jlovell4400e982006-02-03 00:47:45 +000068# if defined(__sgi) || (defined(__APPLE__) && !defined(_SOCKLEN_T))
jlovellef416fc2006-01-13 01:51:53 +000069/*
jlovell4400e982006-02-03 00:47:45 +000070 * IRIX and MacOS X 10.2.x do not define socklen_t, and in fact use an int instead of
jlovellef416fc2006-01-13 01:51:53 +000071 * unsigned type for length values...
72 */
73
74typedef int socklen_t;
jlovell4400e982006-02-03 00:47:45 +000075# endif /* __sgi || (__APPLE__ && !_SOCKLEN_T) */
jlovellef416fc2006-01-13 01:51:53 +000076
77# include "http.h"
jlovellf7deaa12007-03-14 16:55:44 +000078# include "md5.h"
jlovellfa73b222006-01-26 21:39:43 +000079# include "ipp-private.h"
jlovellef416fc2006-01-13 01:51:53 +000080
81# if defined HAVE_LIBSSL
82/*
83 * The OpenSSL library provides its own SSL/TLS context structure for its
jlovell411affc2006-11-16 17:01:30 +000084 * IO and protocol management. However, we need to provide our own BIO
85 * (basic IO) implementation to do timeouts...
jlovellef416fc2006-01-13 01:51:53 +000086 */
87
88# include <openssl/err.h>
89# include <openssl/rand.h>
90# include <openssl/ssl.h>
91
92typedef SSL http_tls_t;
93
jlovell411affc2006-11-16 17:01:30 +000094extern BIO_METHOD *_httpBIOMethods(void);
95
jlovellef416fc2006-01-13 01:51:53 +000096# elif defined HAVE_GNUTLS
97/*
98 * The GNU TLS library is more of a "bare metal" SSL/TLS library...
99 */
100# include <gnutls/gnutls.h>
101
102typedef struct
103{
104 gnutls_session session; /* GNU TLS session object */
105 void *credentials; /* GNU TLS credentials object */
106} http_tls_t;
107
jlovell411affc2006-11-16 17:01:30 +0000108extern ssize_t _httpReadGNUTLS(gnutls_transport_ptr ptr, void *data,
109 size_t length);
110extern ssize_t _httpWriteGNUTLS(gnutls_transport_ptr ptr, const void *data,
111 size_t length);
112
jlovellef416fc2006-01-13 01:51:53 +0000113# elif defined(HAVE_CDSASSL)
114/*
115 * Darwin's Security framework provides its own SSL/TLS context structure
116 * for its IO and protocol management...
117 */
118
119# include <Security/SecureTransport.h>
120
jlovell89d46772006-04-24 18:03:36 +0000121typedef struct /**** CDSA connection information ****/
122{
123 SSLContextRef session; /* CDSA session object */
124 CFArrayRef certsArray; /* Certificates array */
125} http_tls_t;
jlovellef416fc2006-01-13 01:51:53 +0000126
127extern OSStatus _httpReadCDSA(SSLConnectionRef connection, void *data,
128 size_t *dataLength);
129extern OSStatus _httpWriteCDSA(SSLConnectionRef connection, const void *data,
130 size_t *dataLength);
131# endif /* HAVE_LIBSSL */
132
jlovellf7deaa12007-03-14 16:55:44 +0000133
134struct _http_s /**** HTTP connection structure. ****/
135{
136 int fd; /* File descriptor for this socket */
137 int blocking; /* To block or not to block */
138 int error; /* Last error on read */
139 time_t activity; /* Time since last read/write */
140 http_state_t state; /* State of client */
141 http_status_t status; /* Status of last request */
142 http_version_t version; /* Protocol version */
143 http_keepalive_t keep_alive; /* Keep-alive supported? */
144 struct sockaddr_in _hostaddr; /* Address of connected host @deprecated@ */
145 char hostname[HTTP_MAX_HOST],
146 /* Name of connected host */
147 fields[HTTP_FIELD_MAX][HTTP_MAX_VALUE];
148 /* Field values */
149 char *data; /* Pointer to data buffer */
150 http_encoding_t data_encoding; /* Chunked or not */
151 int _data_remaining;/* Number of bytes left @deprecated@ */
152 int used; /* Number of bytes used in buffer */
153 char buffer[HTTP_MAX_BUFFER];
154 /* Buffer for incoming data */
155 int auth_type; /* Authentication in use */
156 _cups_md5_state_t md5_state; /* MD5 state */
157 char nonce[HTTP_MAX_VALUE];
158 /* Nonce value */
159 int nonce_count; /* Nonce count */
160 void *tls; /* TLS state information */
161 http_encryption_t encryption; /* Encryption requirements */
162 /**** New in CUPS 1.1.19 ****/
163 fd_set *input_set; /* select() set for httpWait() @deprecated@ */
164 http_status_t expect; /* Expect: header @since CUPS 1.1.19@ */
165 char *cookie; /* Cookie value(s) @since CUPS 1.1.19@ */
166 /**** New in CUPS 1.1.20 ****/
167 char _authstring[HTTP_MAX_VALUE],
168 /* Current Authentication value. @deprecated@ */
169 userpass[HTTP_MAX_VALUE];
170 /* Username:password string @since CUPS 1.1.20@ */
171 int digest_tries; /* Number of tries for digest auth @since CUPS 1.1.20@ */
172 /**** New in CUPS 1.2 ****/
173 off_t data_remaining; /* Number of bytes left @since CUPS 1.2@ */
174 http_addr_t *hostaddr; /* Current host address and port @since CUPS 1.2@ */
175 http_addrlist_t *addrlist; /* List of valid addresses @since CUPS 1.2@ */
176 char wbuffer[HTTP_MAX_BUFFER];
177 /* Buffer for outgoing data */
178 int wused; /* Write buffer bytes used @since CUPS 1.2@ */
179 /**** New in CUPS 1.3 ****/
180 char *field_authorization;
181 /* Authorization field @since CUPS 1.3@ */
182 char *authstring; /* Current authorization field @since CUPS 1.3 */
183# ifdef HAVE_GSSAPI
184 gss_OID gssmech; /* Authentication mechanism @since CUPS 1.3@ */
185 gss_ctx_id_t gssctx; /* Authentication context @since CUPS 1.3@ */
186 gss_name_t gssname; /* Authentication server name @since CUPS 1.3@ */
187# endif /* HAVE_GSSAPI */
jlovellb94498c2007-05-04 21:17:48 +0000188# ifdef HAVE_AUTHORIZATION_H
189 AuthorizationRef auth_ref; /* Authorization ref */
190# endif /* HAVE_AUTHORIZATION_H */
jlovellf7deaa12007-03-14 16:55:44 +0000191};
192
193
jlovellef416fc2006-01-13 01:51:53 +0000194/*
195 * Some OS's don't have hstrerror(), most notably Solaris...
196 */
197
198# ifndef HAVE_HSTRERROR
199extern const char *_cups_hstrerror(int error);
200# define hstrerror _cups_hstrerror
201# elif defined(_AIX) || defined(__osf__)
202/*
203 * AIX and Tru64 UNIX don't provide a prototype but do provide the function...
204 */
205extern const char *hstrerror(int error);
206# endif /* !HAVE_HSTRERROR */
207
jlovell89d46772006-04-24 18:03:36 +0000208
209/*
210 * Some OS's don't have getifaddrs() and freeifaddrs()...
211 */
212
jlovellb86bc4c2007-02-14 19:18:46 +0000213# ifndef WIN32
214# include <net/if.h>
215# ifdef HAVE_GETIFADDRS
216# include <ifaddrs.h>
217# else
218# include <sys/ioctl.h>
219# ifdef HAVE_SYS_SOCKIO_H
220# include <sys/sockio.h>
221# endif /* HAVE_SYS_SOCKIO_H */
jlovell89d46772006-04-24 18:03:36 +0000222
jlovellb86bc4c2007-02-14 19:18:46 +0000223# ifdef ifa_dstaddr
224# undef ifa_dstaddr
225# endif /* ifa_dstaddr */
226# ifndef ifr_netmask
227# define ifr_netmask ifr_addr
228# endif /* !ifr_netmask */
jlovell89d46772006-04-24 18:03:36 +0000229
230struct ifaddrs /**** Interface Structure ****/
231{
232 struct ifaddrs *ifa_next; /* Next interface in list */
233 char *ifa_name; /* Name of interface */
234 unsigned int ifa_flags; /* Flags (up, point-to-point, etc.) */
235 struct sockaddr *ifa_addr, /* Network address */
jlovellf3018022006-05-22 21:33:05 +0000236 *ifa_netmask; /* Address mask */
237 union
238 {
239 struct sockaddr *ifu_broadaddr; /* Broadcast address of this interface. */
240 struct sockaddr *ifu_dstaddr; /* Point-to-point destination address. */
241 } ifa_ifu;
242
jlovell89d46772006-04-24 18:03:36 +0000243 void *ifa_data; /* Interface statistics */
244};
245
jlovellb86bc4c2007-02-14 19:18:46 +0000246# ifndef ifa_broadaddr
247# define ifa_broadaddr ifa_ifu.ifu_broadaddr
248# endif /* !ifa_broadaddr */
249# ifndef ifa_dstaddr
250# define ifa_dstaddr ifa_ifu.ifu_dstaddr
251# endif /* !ifa_dstaddr */
jlovellf3018022006-05-22 21:33:05 +0000252
jlovella74454a2006-05-05 19:18:41 +0000253extern int _cups_getifaddrs(struct ifaddrs **addrs);
jlovellb86bc4c2007-02-14 19:18:46 +0000254# define getifaddrs _cups_getifaddrs
jlovella74454a2006-05-05 19:18:41 +0000255extern void _cups_freeifaddrs(struct ifaddrs *addrs);
jlovellb86bc4c2007-02-14 19:18:46 +0000256# define freeifaddrs _cups_freeifaddrs
257# endif /* HAVE_GETIFADDRS */
258# endif /* !WIN32 */
jlovell89d46772006-04-24 18:03:36 +0000259
msweet839a51c2008-04-09 22:42:49 +0000260/*
261 * Common URI encoding function...
262 */
263
264extern char *_httpEncodeURI(char *dst, const char *src, size_t dstsize);
265
jlovellef416fc2006-01-13 01:51:53 +0000266#endif /* !_CUPS_HTTP_PRIVATE_H_ */
267
268/*
msweet2e4ff8a2007-10-17 20:05:25 +0000269 * End of "$Id: http-private.h 6933 2007-09-10 16:45:59Z mike $".
jlovellef416fc2006-01-13 01:51:53 +0000270 */