]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/http-private.h
Load cups into easysw/current.
[thirdparty/cups.git] / cups / http-private.h
CommitLineData
ef416fc2 1/*
bc44d920 2 * "$Id: http-private.h 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3 *
4 * Private HTTP definitions for the Common UNIX Printing System (CUPS).
5 *
bc44d920 6 * Copyright 2007 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
a74454a7 25# include <stdlib.h>
26# include <config.h>
ef416fc2 27
28# ifdef __sun
29/*
30 * Define FD_SETSIZE to CUPS_MAX_FDS on Solaris to get the correct version of
31 * select() for large numbers of file descriptors.
32 */
33
34# define FD_SETSIZE CUPS_MAX_FDS
35# include <sys/select.h>
36# endif /* __sun */
37
38# include <limits.h>
39# ifdef WIN32
40# include <io.h>
41# include <winsock2.h>
42# else
43# include <unistd.h>
44# include <fcntl.h>
45# include <sys/socket.h>
46# define closesocket(f) close(f)
47# endif /* WIN32 */
48
f7deaa1a 49# ifdef HAVE_GSSAPI
50# ifdef HAVE_GSSAPI_GSSAPI_H
51# include <gssapi/gssapi.h>
52# endif /* HAVE_GSSAPI_GSSAPI_H */
53# ifdef HAVE_GSSAPI_GSSAPI_GENERIC_H
54# include <gssapi/gssapi_generic.h>
55# endif /* HAVE_GSSAPI_GSSAPI_GENERIC_H */
56# ifdef HAVE_GSSAPI_GSSAPI_KRB5_H
57# include <gssapi/gssapi_krb5.h>
58# endif /* HAVE_GSSAPI_GSSAPI_KRB5_H */
59# ifdef HAVE_GSSAPI_H
60# include <gssapi.h>
61# endif /* HAVE_GSSAPI_H */
62# ifndef HAVE_GSS_C_NT_HOSTBASED_SERVICE
63# define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
64# endif /* !HAVE_GSS_C_NT_HOSTBASED_SERVICE */
65# endif /* HAVE_GSSAPI */
66
b94498cf 67# ifdef HAVE_AUTHORIZATION_H
68# include <Security/Authorization.h>
69# endif /* HAVE_AUTHORIZATION_H */
70
4400e98d 71# if defined(__sgi) || (defined(__APPLE__) && !defined(_SOCKLEN_T))
ef416fc2 72/*
4400e98d 73 * IRIX and MacOS X 10.2.x do not define socklen_t, and in fact use an int instead of
ef416fc2 74 * unsigned type for length values...
75 */
76
77typedef int socklen_t;
4400e98d 78# endif /* __sgi || (__APPLE__ && !_SOCKLEN_T) */
ef416fc2 79
80# include "http.h"
f7deaa1a 81# include "md5.h"
fa73b229 82# include "ipp-private.h"
ef416fc2 83
84# if defined HAVE_LIBSSL
85/*
86 * The OpenSSL library provides its own SSL/TLS context structure for its
411affcf 87 * IO and protocol management. However, we need to provide our own BIO
88 * (basic IO) implementation to do timeouts...
ef416fc2 89 */
90
91# include <openssl/err.h>
92# include <openssl/rand.h>
93# include <openssl/ssl.h>
94
95typedef SSL http_tls_t;
96
411affcf 97extern BIO_METHOD *_httpBIOMethods(void);
98
ef416fc2 99# elif defined HAVE_GNUTLS
100/*
101 * The GNU TLS library is more of a "bare metal" SSL/TLS library...
102 */
103# include <gnutls/gnutls.h>
104
105typedef struct
106{
107 gnutls_session session; /* GNU TLS session object */
108 void *credentials; /* GNU TLS credentials object */
109} http_tls_t;
110
411affcf 111extern ssize_t _httpReadGNUTLS(gnutls_transport_ptr ptr, void *data,
112 size_t length);
113extern ssize_t _httpWriteGNUTLS(gnutls_transport_ptr ptr, const void *data,
114 size_t length);
115
ef416fc2 116# elif defined(HAVE_CDSASSL)
117/*
118 * Darwin's Security framework provides its own SSL/TLS context structure
119 * for its IO and protocol management...
120 */
121
122# include <Security/SecureTransport.h>
123
89d46774 124typedef struct /**** CDSA connection information ****/
125{
126 SSLContextRef session; /* CDSA session object */
127 CFArrayRef certsArray; /* Certificates array */
128} http_tls_t;
ef416fc2 129
130extern OSStatus _httpReadCDSA(SSLConnectionRef connection, void *data,
131 size_t *dataLength);
132extern OSStatus _httpWriteCDSA(SSLConnectionRef connection, const void *data,
133 size_t *dataLength);
134# endif /* HAVE_LIBSSL */
135
f7deaa1a 136
137struct _http_s /**** HTTP connection structure. ****/
138{
139 int fd; /* File descriptor for this socket */
140 int blocking; /* To block or not to block */
141 int error; /* Last error on read */
142 time_t activity; /* Time since last read/write */
143 http_state_t state; /* State of client */
144 http_status_t status; /* Status of last request */
145 http_version_t version; /* Protocol version */
146 http_keepalive_t keep_alive; /* Keep-alive supported? */
147 struct sockaddr_in _hostaddr; /* Address of connected host @deprecated@ */
148 char hostname[HTTP_MAX_HOST],
149 /* Name of connected host */
150 fields[HTTP_FIELD_MAX][HTTP_MAX_VALUE];
151 /* Field values */
152 char *data; /* Pointer to data buffer */
153 http_encoding_t data_encoding; /* Chunked or not */
154 int _data_remaining;/* Number of bytes left @deprecated@ */
155 int used; /* Number of bytes used in buffer */
156 char buffer[HTTP_MAX_BUFFER];
157 /* Buffer for incoming data */
158 int auth_type; /* Authentication in use */
159 _cups_md5_state_t md5_state; /* MD5 state */
160 char nonce[HTTP_MAX_VALUE];
161 /* Nonce value */
162 int nonce_count; /* Nonce count */
163 void *tls; /* TLS state information */
164 http_encryption_t encryption; /* Encryption requirements */
165 /**** New in CUPS 1.1.19 ****/
166 fd_set *input_set; /* select() set for httpWait() @deprecated@ */
167 http_status_t expect; /* Expect: header @since CUPS 1.1.19@ */
168 char *cookie; /* Cookie value(s) @since CUPS 1.1.19@ */
169 /**** New in CUPS 1.1.20 ****/
170 char _authstring[HTTP_MAX_VALUE],
171 /* Current Authentication value. @deprecated@ */
172 userpass[HTTP_MAX_VALUE];
173 /* Username:password string @since CUPS 1.1.20@ */
174 int digest_tries; /* Number of tries for digest auth @since CUPS 1.1.20@ */
175 /**** New in CUPS 1.2 ****/
176 off_t data_remaining; /* Number of bytes left @since CUPS 1.2@ */
177 http_addr_t *hostaddr; /* Current host address and port @since CUPS 1.2@ */
178 http_addrlist_t *addrlist; /* List of valid addresses @since CUPS 1.2@ */
179 char wbuffer[HTTP_MAX_BUFFER];
180 /* Buffer for outgoing data */
181 int wused; /* Write buffer bytes used @since CUPS 1.2@ */
182 /**** New in CUPS 1.3 ****/
183 char *field_authorization;
184 /* Authorization field @since CUPS 1.3@ */
185 char *authstring; /* Current authorization field @since CUPS 1.3 */
186# ifdef HAVE_GSSAPI
187 gss_OID gssmech; /* Authentication mechanism @since CUPS 1.3@ */
188 gss_ctx_id_t gssctx; /* Authentication context @since CUPS 1.3@ */
189 gss_name_t gssname; /* Authentication server name @since CUPS 1.3@ */
190# endif /* HAVE_GSSAPI */
b94498cf 191# ifdef HAVE_AUTHORIZATION_H
192 AuthorizationRef auth_ref; /* Authorization ref */
193# endif /* HAVE_AUTHORIZATION_H */
f7deaa1a 194};
195
196
ef416fc2 197/*
198 * Some OS's don't have hstrerror(), most notably Solaris...
199 */
200
201# ifndef HAVE_HSTRERROR
202extern const char *_cups_hstrerror(int error);
203# define hstrerror _cups_hstrerror
204# elif defined(_AIX) || defined(__osf__)
205/*
206 * AIX and Tru64 UNIX don't provide a prototype but do provide the function...
207 */
208extern const char *hstrerror(int error);
209# endif /* !HAVE_HSTRERROR */
210
89d46774 211
212/*
213 * Some OS's don't have getifaddrs() and freeifaddrs()...
214 */
215
b86bc4cf 216# ifndef WIN32
217# include <net/if.h>
218# ifdef HAVE_GETIFADDRS
219# include <ifaddrs.h>
220# else
221# include <sys/ioctl.h>
222# ifdef HAVE_SYS_SOCKIO_H
223# include <sys/sockio.h>
224# endif /* HAVE_SYS_SOCKIO_H */
225
226# ifdef ifa_dstaddr
227# undef ifa_dstaddr
228# endif /* ifa_dstaddr */
229# ifndef ifr_netmask
230# define ifr_netmask ifr_addr
231# endif /* !ifr_netmask */
89d46774 232
233struct ifaddrs /**** Interface Structure ****/
234{
235 struct ifaddrs *ifa_next; /* Next interface in list */
236 char *ifa_name; /* Name of interface */
237 unsigned int ifa_flags; /* Flags (up, point-to-point, etc.) */
238 struct sockaddr *ifa_addr, /* Network address */
f301802f 239 *ifa_netmask; /* Address mask */
240 union
241 {
242 struct sockaddr *ifu_broadaddr; /* Broadcast address of this interface. */
243 struct sockaddr *ifu_dstaddr; /* Point-to-point destination address. */
244 } ifa_ifu;
245
89d46774 246 void *ifa_data; /* Interface statistics */
247};
248
b86bc4cf 249# ifndef ifa_broadaddr
250# define ifa_broadaddr ifa_ifu.ifu_broadaddr
251# endif /* !ifa_broadaddr */
252# ifndef ifa_dstaddr
253# define ifa_dstaddr ifa_ifu.ifu_dstaddr
254# endif /* !ifa_dstaddr */
f301802f 255
a74454a7 256extern int _cups_getifaddrs(struct ifaddrs **addrs);
b86bc4cf 257# define getifaddrs _cups_getifaddrs
a74454a7 258extern void _cups_freeifaddrs(struct ifaddrs *addrs);
b86bc4cf 259# define freeifaddrs _cups_freeifaddrs
260# endif /* HAVE_GETIFADDRS */
261# endif /* !WIN32 */
89d46774 262
ef416fc2 263#endif /* !_CUPS_HTTP_PRIVATE_H_ */
264
265/*
bc44d920 266 * End of "$Id: http-private.h 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 267 */