]> git.ipfire.org Git - thirdparty/cups.git/blob - cups/http-private.h
Merge changes from CUPS 1.5svn-r9136.
[thirdparty/cups.git] / cups / http-private.h
1 /*
2 * "$Id: http-private.h 7850 2008-08-20 00:07:25Z mike $"
3 *
4 * Private HTTP definitions for CUPS.
5 *
6 * Copyright 2007-2010 by Apple Inc.
7 * Copyright 1997-2007 by Easy Software Products, all rights reserved.
8 *
9 * These coded instructions, statements, and computer programs are the
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/".
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
25 # include "config.h"
26 # include <stddef.h>
27 # include <stdlib.h>
28
29 # ifdef __sun
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
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 */
60 # ifdef HAVE_KRB5_H
61 # include <krb5.h>
62 # endif /* HAVE_KRB5_H */
63 # endif /* HAVE_GSSAPI */
64
65 # ifdef HAVE_AUTHORIZATION_H
66 # include <Security/Authorization.h>
67 # endif /* HAVE_AUTHORIZATION_H */
68
69 # if defined(__sgi) || (defined(__APPLE__) && !defined(_SOCKLEN_T))
70 /*
71 * IRIX and MacOS X 10.2.x do not define socklen_t, and in fact use an int instead of
72 * unsigned type for length values...
73 */
74
75 typedef int socklen_t;
76 # endif /* __sgi || (__APPLE__ && !_SOCKLEN_T) */
77
78 # include <cups/http.h>
79 # include "md5-private.h"
80 # include "ipp-private.h"
81
82 # if defined HAVE_LIBSSL
83 /*
84 * The OpenSSL library provides its own SSL/TLS context structure for its
85 * IO and protocol management. However, we need to provide our own BIO
86 * (basic IO) implementation to do timeouts...
87 */
88
89 # include <openssl/err.h>
90 # include <openssl/rand.h>
91 # include <openssl/ssl.h>
92
93 typedef SSL http_tls_t;
94
95 extern BIO_METHOD *_httpBIOMethods(void);
96
97 # elif defined HAVE_GNUTLS
98 /*
99 * The GNU TLS library is more of a "bare metal" SSL/TLS library...
100 */
101 # include <gnutls/gnutls.h>
102 # include <gcrypt.h>
103
104 typedef struct
105 {
106 gnutls_session session; /* GNU TLS session object */
107 void *credentials; /* GNU TLS credentials object */
108 } http_tls_t;
109
110 extern ssize_t _httpReadGNUTLS(gnutls_transport_ptr ptr, void *data,
111 size_t length);
112 extern ssize_t _httpWriteGNUTLS(gnutls_transport_ptr ptr, const void *data,
113 size_t length);
114
115 # elif defined(HAVE_CDSASSL)
116 /*
117 * Darwin's Security framework provides its own SSL/TLS context structure
118 * for its IO and protocol management...
119 */
120
121 # include <Security/SecureTransport.h>
122
123 typedef struct /**** CDSA connection information ****/
124 {
125 SSLContextRef session; /* CDSA session object */
126 CFArrayRef certsArray; /* Certificates array */
127 } http_tls_t;
128
129 extern OSStatus _httpReadCDSA(SSLConnectionRef connection, void *data,
130 size_t *dataLength);
131 extern OSStatus _httpWriteCDSA(SSLConnectionRef connection, const void *data,
132 size_t *dataLength);
133
134 # elif defined(HAVE_SSPISSL)
135 # include "sspi-private.h"
136 # endif /* HAVE_LIBSSL */
137
138
139 struct _http_s /**** HTTP connection structure. ****/
140 {
141 int fd; /* File descriptor for this socket */
142 int blocking; /* To block or not to block */
143 int error; /* Last error on read */
144 time_t activity; /* Time since last read/write */
145 http_state_t state; /* State of client */
146 http_status_t status; /* Status of last request */
147 http_version_t version; /* Protocol version */
148 http_keepalive_t keep_alive; /* Keep-alive supported? */
149 struct sockaddr_in _hostaddr; /* Address of connected host @deprecated@ */
150 char hostname[HTTP_MAX_HOST],
151 /* Name of connected host */
152 fields[HTTP_FIELD_MAX][HTTP_MAX_VALUE];
153 /* Field values */
154 char *data; /* Pointer to data buffer */
155 http_encoding_t data_encoding; /* Chunked or not */
156 int _data_remaining;/* Number of bytes left @deprecated@ */
157 int used; /* Number of bytes used in buffer */
158 char buffer[HTTP_MAX_BUFFER];
159 /* Buffer for incoming data */
160 int auth_type; /* Authentication in use */
161 _cups_md5_state_t md5_state; /* MD5 state */
162 char nonce[HTTP_MAX_VALUE];
163 /* Nonce value */
164 int nonce_count; /* Nonce count */
165 void *tls; /* TLS state information */
166 http_encryption_t encryption; /* Encryption requirements */
167 /**** New in CUPS 1.1.19 ****/
168 fd_set *input_set; /* select() set for httpWait() @deprecated@ */
169 http_status_t expect; /* Expect: header @since CUPS 1.1.19@ */
170 char *cookie; /* Cookie value(s) @since CUPS 1.1.19@ */
171 /**** New in CUPS 1.1.20 ****/
172 char _authstring[HTTP_MAX_VALUE],
173 /* Current Authentication value. @deprecated@ */
174 userpass[HTTP_MAX_VALUE];
175 /* Username:password string @since CUPS 1.1.20@ */
176 int digest_tries; /* Number of tries for digest auth @since CUPS 1.1.20@ */
177 /**** New in CUPS 1.2 ****/
178 off_t data_remaining; /* Number of bytes left @since CUPS 1.2@ */
179 http_addr_t *hostaddr; /* Current host address and port @since CUPS 1.2@ */
180 http_addrlist_t *addrlist; /* List of valid addresses @since CUPS 1.2@ */
181 char wbuffer[HTTP_MAX_BUFFER];
182 /* Buffer for outgoing data */
183 int wused; /* Write buffer bytes used @since CUPS 1.2@ */
184 /**** New in CUPS 1.3 ****/
185 char *field_authorization;
186 /* Authorization field @since CUPS 1.3@ */
187 char *authstring; /* Current authorization field @since CUPS 1.3 */
188 # ifdef HAVE_GSSAPI
189 gss_OID gssmech; /* Authentication mechanism @since CUPS 1.3@ */
190 gss_ctx_id_t gssctx; /* Authentication context @since CUPS 1.3@ */
191 gss_name_t gssname; /* Authentication server name @since CUPS 1.3@ */
192 # endif /* HAVE_GSSAPI */
193 # ifdef HAVE_AUTHORIZATION_H
194 AuthorizationRef auth_ref; /* Authorization ref */
195 # endif /* HAVE_AUTHORIZATION_H */
196 };
197
198
199 /*
200 * Some OS's don't have hstrerror(), most notably Solaris...
201 */
202
203 # ifndef HAVE_HSTRERROR
204 extern const char *_cups_hstrerror(int error);
205 # define hstrerror _cups_hstrerror
206 # elif defined(_AIX) || defined(__osf__)
207 /*
208 * AIX and Tru64 UNIX don't provide a prototype but do provide the function...
209 */
210 extern const char *hstrerror(int error);
211 # endif /* !HAVE_HSTRERROR */
212
213
214 /*
215 * Some OS's don't have getifaddrs() and freeifaddrs()...
216 */
217
218 # ifndef WIN32
219 # include <net/if.h>
220 # ifdef HAVE_GETIFADDRS
221 # include <ifaddrs.h>
222 # else
223 # include <sys/ioctl.h>
224 # ifdef HAVE_SYS_SOCKIO_H
225 # include <sys/sockio.h>
226 # endif /* HAVE_SYS_SOCKIO_H */
227
228 # ifdef ifa_dstaddr
229 # undef ifa_dstaddr
230 # endif /* ifa_dstaddr */
231 # ifndef ifr_netmask
232 # define ifr_netmask ifr_addr
233 # endif /* !ifr_netmask */
234
235 struct ifaddrs /**** Interface Structure ****/
236 {
237 struct ifaddrs *ifa_next; /* Next interface in list */
238 char *ifa_name; /* Name of interface */
239 unsigned int ifa_flags; /* Flags (up, point-to-point, etc.) */
240 struct sockaddr *ifa_addr, /* Network address */
241 *ifa_netmask; /* Address mask */
242 union
243 {
244 struct sockaddr *ifu_broadaddr; /* Broadcast address of this interface. */
245 struct sockaddr *ifu_dstaddr; /* Point-to-point destination address. */
246 } ifa_ifu;
247
248 void *ifa_data; /* Interface statistics */
249 };
250
251 # ifndef ifa_broadaddr
252 # define ifa_broadaddr ifa_ifu.ifu_broadaddr
253 # endif /* !ifa_broadaddr */
254 # ifndef ifa_dstaddr
255 # define ifa_dstaddr ifa_ifu.ifu_dstaddr
256 # endif /* !ifa_dstaddr */
257
258 extern int _cups_getifaddrs(struct ifaddrs **addrs);
259 # define getifaddrs _cups_getifaddrs
260 extern void _cups_freeifaddrs(struct ifaddrs *addrs);
261 # define freeifaddrs _cups_freeifaddrs
262 # endif /* HAVE_GETIFADDRS */
263 # endif /* !WIN32 */
264
265 /*
266 * Prototypes...
267 */
268
269 extern int _httpAddrPort(http_addr_t *addr);
270 extern http_t *_httpCreate(const char *host, int port,
271 http_encryption_t encryption);
272 extern void _httpDisconnect(http_t *http);
273 extern char *_httpEncodeURI(char *dst, const char *src,
274 size_t dstsize);
275 extern ssize_t _httpPeek(http_t *http, char *buffer, size_t length);
276 extern const char *_httpResolveURI(const char *uri, char *resolved_uri,
277 size_t resolved_size, int log);
278 extern int _httpWait(http_t *http, int msec, int usessl);
279
280
281 #endif /* !_CUPS_HTTP_PRIVATE_H_ */
282
283 /*
284 * End of "$Id: http-private.h 7850 2008-08-20 00:07:25Z mike $".
285 */