d597c67448b65a5bb86c2d3d5b3db4bbfa891db2
[platform/upstream/curl.git] / lib / urldata.h
1 #ifndef HEADER_CURL_URLDATA_H
2 #define HEADER_CURL_URLDATA_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
11  *
12  * This software is licensed as described in the file COPYING, which
13  * you should have received as part of this distribution. The terms
14  * are also available at http://curl.haxx.se/docs/copyright.html.
15  *
16  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17  * copies of the Software, and permit persons to whom the Software is
18  * furnished to do so, under the terms of the COPYING file.
19  *
20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21  * KIND, either express or implied.
22  *
23  ***************************************************************************/
24
25 /* This file is for lib internal stuff */
26
27 #include "curl_setup.h"
28
29 #define PORT_FTP 21
30 #define PORT_FTPS 990
31 #define PORT_TELNET 23
32 #define PORT_HTTP 80
33 #define PORT_HTTPS 443
34 #define PORT_DICT 2628
35 #define PORT_LDAP 389
36 #define PORT_LDAPS 636
37 #define PORT_TFTP 69
38 #define PORT_SSH 22
39 #define PORT_IMAP 143
40 #define PORT_IMAPS 993
41 #define PORT_POP3 110
42 #define PORT_POP3S 995
43 #define PORT_SMTP 25
44 #define PORT_SMTPS 465 /* sometimes called SSMTP */
45 #define PORT_RTSP 554
46 #define PORT_RTMP 1935
47 #define PORT_RTMPT PORT_HTTP
48 #define PORT_RTMPS PORT_HTTPS
49 #define PORT_GOPHER 70
50
51 #define DICT_MATCH "/MATCH:"
52 #define DICT_MATCH2 "/M:"
53 #define DICT_MATCH3 "/FIND:"
54 #define DICT_DEFINE "/DEFINE:"
55 #define DICT_DEFINE2 "/D:"
56 #define DICT_DEFINE3 "/LOOKUP:"
57
58 #define CURL_DEFAULT_USER "anonymous"
59 #define CURL_DEFAULT_PASSWORD "ftp@example.com"
60
61 #define DEFAULT_CONNCACHE_SIZE 5
62
63 /* length of longest IPv6 address string including the trailing null */
64 #define MAX_IPADR_LEN sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
65
66 /* Default FTP/IMAP etc response timeout in milliseconds.
67    Symbian OS panics when given a timeout much greater than 1/2 hour.
68 */
69 #define RESP_TIMEOUT (1800*1000)
70
71 #include "cookie.h"
72 #include "formdata.h"
73
74 #ifdef USE_SSLEAY
75 #ifdef USE_OPENSSL
76 #include <openssl/rsa.h>
77 #include <openssl/crypto.h>
78 #include <openssl/x509.h>
79 #include <openssl/pem.h>
80 #include <openssl/ssl.h>
81 #include <openssl/err.h>
82 #ifdef HAVE_OPENSSL_ENGINE_H
83 #include <openssl/engine.h>
84 #endif
85 #ifdef HAVE_OPENSSL_PKCS12_H
86 #include <openssl/pkcs12.h>
87 #endif
88 #else /* SSLeay-style includes */
89 #include <rsa.h>
90 #include <crypto.h>
91 #include <x509.h>
92 #include <pem.h>
93 #include <ssl.h>
94 #include <err.h>
95 #ifdef HAVE_OPENSSL_ENGINE_H
96 #include <engine.h>
97 #endif
98 #ifdef HAVE_OPENSSL_PKCS12_H
99 #include <pkcs12.h>
100 #endif
101 #endif /* USE_OPENSSL */
102 #ifdef USE_GNUTLS
103 #error Configuration error; cannot use GnuTLS *and* OpenSSL.
104 #endif
105 #endif /* USE_SSLEAY */
106
107 #ifdef USE_GNUTLS
108 #include <gnutls/gnutls.h>
109 #endif
110
111 #ifdef USE_POLARSSL
112 #include <polarssl/ssl.h>
113 #include <polarssl/version.h>
114 #if POLARSSL_VERSION_NUMBER<0x01010000
115 #include <polarssl/havege.h>
116 #else
117 #include <polarssl/entropy.h>
118 #include <polarssl/ctr_drbg.h>
119 #endif /* POLARSSL_VERSION_NUMBER<0x01010000 */
120 #endif /* USE_POLARSSL */
121
122 #ifdef USE_CYASSL
123 #undef OCSP_REQUEST  /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
124 #undef OCSP_RESPONSE /* avoid cyassl/openssl/ssl.h clash with wincrypt.h */
125 #include <cyassl/openssl/ssl.h>
126 #endif
127
128 #ifdef USE_NSS
129 #include <nspr.h>
130 #include <pk11pub.h>
131 #endif
132
133 #ifdef USE_QSOSSL
134 #include <qsossl.h>
135 #endif
136
137 #ifdef USE_GSKIT
138 #include <gskssl.h>
139 #endif
140
141 #ifdef USE_AXTLS
142 #include <axTLS/ssl.h>
143 #undef malloc
144 #undef calloc
145 #undef realloc
146 #endif /* USE_AXTLS */
147
148 #ifdef USE_SCHANNEL
149 #include "curl_sspi.h"
150 #include <schnlsp.h>
151 #include <schannel.h>
152 #endif
153
154 #ifdef USE_DARWINSSL
155 #include <Security/Security.h>
156 /* For some reason, when building for iOS, the omnibus header above does
157  * not include SecureTransport.h as of iOS SDK 5.1. */
158 #include <Security/SecureTransport.h>
159 #endif
160
161 #ifdef HAVE_NETINET_IN_H
162 #include <netinet/in.h>
163 #endif
164
165 #include "timeval.h"
166
167 #ifdef HAVE_ZLIB_H
168 #include <zlib.h>               /* for content-encoding */
169 #ifdef __SYMBIAN32__
170 /* zlib pollutes the namespace with this definition */
171 #undef WIN32
172 #endif
173 #endif
174
175 #include <curl/curl.h>
176
177 #include "http_chunks.h" /* for the structs and enum stuff */
178 #include "hostip.h"
179 #include "hash.h"
180 #include "splay.h"
181
182 #include "imap.h"
183 #include "pop3.h"
184 #include "smtp.h"
185 #include "ftp.h"
186 #include "file.h"
187 #include "ssh.h"
188 #include "http.h"
189 #include "rtsp.h"
190 #include "wildcard.h"
191 #include "multihandle.h"
192
193 #ifdef HAVE_GSSAPI
194 # ifdef HAVE_GSSGNU
195 #  include <gss.h>
196 # elif defined HAVE_GSSMIT
197 #  include <gssapi/gssapi.h>
198 #  include <gssapi/gssapi_generic.h>
199 # else
200 #  include <gssapi.h>
201 # endif
202 #endif
203
204 #ifdef HAVE_LIBSSH2_H
205 #include <libssh2.h>
206 #include <libssh2_sftp.h>
207 #endif /* HAVE_LIBSSH2_H */
208
209 /* Download buffer size, keep it fairly big for speed reasons */
210 #undef BUFSIZE
211 #define BUFSIZE CURL_MAX_WRITE_SIZE
212
213 /* Initial size of the buffer to store headers in, it'll be enlarged in case
214    of need. */
215 #define HEADERSIZE 256
216
217 #define CURLEASY_MAGIC_NUMBER 0xc0dedbadU
218
219 /* Some convenience macros to get the larger/smaller value out of two given.
220    We prefix with CURL to prevent name collisions. */
221 #define CURLMAX(x,y) ((x)>(y)?(x):(y))
222 #define CURLMIN(x,y) ((x)<(y)?(x):(y))
223
224
225 #if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
226 /* Types needed for krb4/5-ftp connections */
227 struct krb4buffer {
228   void *data;
229   size_t size;
230   size_t index;
231   int eof_flag;
232 };
233
234 enum protection_level {
235   PROT_NONE, /* first in list */
236   PROT_CLEAR,
237   PROT_SAFE,
238   PROT_CONFIDENTIAL,
239   PROT_PRIVATE,
240   PROT_CMD,
241   PROT_LAST /* last in list */
242 };
243 #endif
244
245 #ifdef USE_SCHANNEL
246 /* Structs to store Schannel handles */
247 struct curl_schannel_cred {
248   CredHandle cred_handle;
249   TimeStamp time_stamp;
250   int refcount;
251   bool cached;
252 };
253
254 struct curl_schannel_ctxt {
255   CtxtHandle ctxt_handle;
256   TimeStamp time_stamp;
257 };
258 #endif
259
260 /* enum for the nonblocking SSL connection state machine */
261 typedef enum {
262   ssl_connect_1,
263   ssl_connect_2,
264   ssl_connect_2_reading,
265   ssl_connect_2_writing,
266   ssl_connect_3,
267   ssl_connect_done
268 } ssl_connect_state;
269
270 typedef enum {
271   ssl_connection_none,
272   ssl_connection_negotiating,
273   ssl_connection_complete
274 } ssl_connection_state;
275
276 /* struct for data related to each SSL connection */
277 struct ssl_connect_data {
278   /* Use ssl encrypted communications TRUE/FALSE, not necessarily using it atm
279      but at least asked to or meaning to use it. See 'state' for the exact
280      current state of the connection. */
281   bool use;
282   ssl_connection_state state;
283 #ifdef USE_SSLEAY
284   /* these ones requires specific SSL-types */
285   SSL_CTX* ctx;
286   SSL*     handle;
287   X509*    server_cert;
288   ssl_connect_state connecting_state;
289 #endif /* USE_SSLEAY */
290 #ifdef USE_GNUTLS
291   gnutls_session session;
292   gnutls_certificate_credentials cred;
293 #ifdef USE_TLS_SRP
294   gnutls_srp_client_credentials srp_client_cred;
295 #endif
296   ssl_connect_state connecting_state;
297 #endif /* USE_GNUTLS */
298 #ifdef USE_POLARSSL
299 #if POLARSSL_VERSION_NUMBER<0x01010000
300   havege_state hs;
301 #else
302   /* from v1.1.0, use ctr_drbg and entropy */
303   ctr_drbg_context ctr_drbg;
304   entropy_context entropy;
305 #endif /* POLARSSL_VERSION_NUMBER<0x01010000 */
306   ssl_context ssl;
307   ssl_session ssn;
308   int server_fd;
309   x509_cert cacert;
310   x509_cert clicert;
311   x509_crl crl;
312   rsa_context rsa;
313   ssl_connect_state connecting_state;
314 #endif /* USE_POLARSSL */
315 #ifdef USE_CYASSL
316   SSL_CTX* ctx;
317   SSL*     handle;
318   ssl_connect_state connecting_state;
319 #endif /* USE_CYASSL */
320 #ifdef USE_NSS
321   PRFileDesc *handle;
322   char *client_nickname;
323   struct SessionHandle *data;
324   struct curl_llist *obj_list;
325   PK11GenericObject *obj_clicert;
326 #endif /* USE_NSS */
327 #ifdef USE_QSOSSL
328   SSLHandle *handle;
329 #endif /* USE_QSOSSL */
330 #ifdef USE_GSKIT
331   gsk_handle handle;
332   int iocport;
333   ssl_connect_state connecting_state;
334 #endif
335 #ifdef USE_AXTLS
336   SSL_CTX* ssl_ctx;
337   SSL*     ssl;
338   ssl_connect_state connecting_state;
339 #endif /* USE_AXTLS */
340 #ifdef USE_SCHANNEL
341   struct curl_schannel_cred *cred;
342   struct curl_schannel_ctxt *ctxt;
343   SecPkgContext_StreamSizes stream_sizes;
344   ssl_connect_state connecting_state;
345   size_t encdata_length, decdata_length;
346   size_t encdata_offset, decdata_offset;
347   unsigned char *encdata_buffer, *decdata_buffer;
348   unsigned long req_flags, ret_flags;
349 #endif /* USE_SCHANNEL */
350 #ifdef USE_DARWINSSL
351   SSLContextRef ssl_ctx;
352   curl_socket_t ssl_sockfd;
353   ssl_connect_state connecting_state;
354   bool ssl_direction; /* true if writing, false if reading */
355   size_t ssl_write_buffered_length;
356 #endif /* USE_DARWINSSL */
357 };
358
359 struct ssl_config_data {
360   long version;          /* what version the client wants to use */
361   long certverifyresult; /* result from the certificate verification */
362
363   bool verifypeer;       /* set TRUE if this is desired */
364   bool verifyhost;       /* set TRUE if CN/SAN must match hostname */
365   char *CApath;          /* certificate dir (doesn't work on windows) */
366   char *CAfile;          /* certificate to verify peer against */
367   const char *CRLfile;   /* CRL to check certificate revocation */
368   const char *issuercert;/* optional issuer certificate filename */
369   char *random_file;     /* path to file containing "random" data */
370   char *egdsocket;       /* path to file containing the EGD daemon socket */
371   char *cipher_list;     /* list of ciphers to use */
372   size_t max_ssl_sessions; /* SSL session id cache size */
373   curl_ssl_ctx_callback fsslctx; /* function to initialize ssl ctx */
374   void *fsslctxp;        /* parameter for call back */
375   bool sessionid;        /* cache session IDs or not */
376   bool certinfo;         /* gather lots of certificate info */
377
378 #ifdef USE_TLS_SRP
379   char *username; /* TLS username (for, e.g., SRP) */
380   char *password; /* TLS password (for, e.g., SRP) */
381   enum CURL_TLSAUTH authtype; /* TLS authentication type (default SRP) */
382 #endif
383 };
384
385 /* information stored about one single SSL session */
386 struct curl_ssl_session {
387   char *name;       /* host name for which this ID was used */
388   void *sessionid;  /* as returned from the SSL layer */
389   size_t idsize;    /* if known, otherwise 0 */
390   long age;         /* just a number, the higher the more recent */
391   unsigned short remote_port; /* remote port to connect to */
392   struct ssl_config_data ssl_config; /* setup for this session */
393 };
394
395 /* Struct used for Digest challenge-response authentication */
396 struct digestdata {
397   char *nonce;
398   char *cnonce;
399   char *realm;
400   int algo;
401   bool stale; /* set true for re-negotiation */
402   char *opaque;
403   char *qop;
404   char *algorithm;
405   int nc; /* nounce count */
406 };
407
408 typedef enum {
409   NTLMSTATE_NONE,
410   NTLMSTATE_TYPE1,
411   NTLMSTATE_TYPE2,
412   NTLMSTATE_TYPE3,
413   NTLMSTATE_LAST
414 } curlntlm;
415
416 #ifdef USE_WINDOWS_SSPI
417 #include "curl_sspi.h"
418 #endif
419
420 #if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV)
421 #include <iconv.h>
422 #endif
423
424 /* Struct used for NTLM challenge-response authentication */
425 struct ntlmdata {
426   curlntlm state;
427 #ifdef USE_WINDOWS_SSPI
428   CredHandle handle;
429   CtxtHandle c_handle;
430   SEC_WINNT_AUTH_IDENTITY identity;
431   SEC_WINNT_AUTH_IDENTITY *p_identity;
432   int has_handles;
433   void *type_2;
434   unsigned long n_type_2;
435 #else
436   unsigned int flags;
437   unsigned char nonce[8];
438 #endif
439 };
440
441 #ifdef USE_HTTP_NEGOTIATE
442 struct negotiatedata {
443   /* when doing Negotiate we first need to receive an auth token and then we
444      need to send our header */
445   enum { GSS_AUTHNONE, GSS_AUTHRECV, GSS_AUTHSENT } state;
446   bool gss; /* Whether we're processing GSS-Negotiate or Negotiate */
447   const char* protocol; /* "GSS-Negotiate" or "Negotiate" */
448 #ifdef HAVE_GSSAPI
449   OM_uint32 status;
450   gss_ctx_id_t context;
451   gss_name_t server_name;
452   gss_buffer_desc output_token;
453 #else
454 #ifdef USE_WINDOWS_SSPI
455   DWORD status;
456   CtxtHandle *context;
457   CredHandle *credentials;
458   char server_name[1024];
459   size_t max_token_length;
460   BYTE *output_token;
461   size_t output_token_length;
462 #endif
463 #endif
464 };
465 #endif
466
467
468 /*
469  * Boolean values that concerns this connection.
470  */
471 struct ConnectBits {
472   bool close; /* if set, we close the connection after this request */
473   bool reuse; /* if set, this is a re-used connection */
474   bool proxy; /* if set, this transfer is done through a proxy - any type */
475   bool httpproxy;    /* if set, this transfer is done through a http proxy */
476   bool user_passwd;    /* do we use user+password for this connection? */
477   bool proxy_user_passwd; /* user+password for the proxy? */
478   bool ipv6_ip; /* we communicate with a remote site specified with pure IPv6
479                    IP address */
480   bool ipv6;    /* we communicate with a site using an IPv6 address */
481
482   bool do_more; /* this is set TRUE if the ->curl_do_more() function is
483                    supposed to be called, after ->curl_do() */
484   bool tcpconnect[2]; /* the TCP layer (or similar) is connected, this is set
485                          the first time on the first connect function call */
486   bool protoconnstart;/* the protocol layer has STARTED its operation after
487                          the TCP layer connect */
488
489   bool retry;         /* this connection is about to get closed and then
490                          re-attempted at another connection. */
491   bool tunnel_proxy;  /* if CONNECT is used to "tunnel" through the proxy.
492                          This is implicit when SSL-protocols are used through
493                          proxies, but can also be enabled explicitly by
494                          apps */
495   bool authneg;       /* TRUE when the auth phase has started, which means
496                          that we are creating a request with an auth header,
497                          but it is not the final request in the auth
498                          negotiation. */
499   bool rewindaftersend;/* TRUE when the sending couldn't be stopped even
500                           though it will be discarded. When the whole send
501                           operation is done, we must call the data rewind
502                           callback. */
503   bool ftp_use_epsv;  /* As set with CURLOPT_FTP_USE_EPSV, but if we find out
504                          EPSV doesn't work we disable it for the forthcoming
505                          requests */
506
507   bool ftp_use_eprt;  /* As set with CURLOPT_FTP_USE_EPRT, but if we find out
508                          EPRT doesn't work we disable it for the forthcoming
509                          requests */
510   bool netrc;         /* name+password provided by netrc */
511   bool userpwd_in_url; /* name+password found in url */
512
513   bool done;          /* set to FALSE when Curl_do() is called and set to TRUE
514                          when Curl_done() is called, to prevent Curl_done() to
515                          get invoked twice when the multi interface is
516                          used. */
517   bool stream_was_rewound; /* Indicates that the stream was rewound after a
518                               request read past the end of its response byte
519                               boundary */
520   bool proxy_connect_closed; /* set true if a proxy disconnected the
521                                 connection in a CONNECT request with auth, so
522                                 that libcurl should reconnect and continue. */
523   bool bound; /* set true if bind() has already been done on this socket/
524                  connection */
525   bool type_set;  /* type= was used in the URL */
526 };
527
528 struct hostname {
529   char *rawalloc; /* allocated "raw" version of the name */
530   char *encalloc; /* allocated IDN-encoded version of the name */
531   char *name;     /* name to use internally, might be encoded, might be raw */
532   const char *dispname; /* name to display, as 'name' might be encoded */
533 };
534
535 /*
536  * Flags on the keepon member of the Curl_transfer_keeper
537  */
538
539 #define KEEP_NONE  0
540 #define KEEP_RECV  (1<<0)     /* there is or may be data to read */
541 #define KEEP_SEND (1<<1)     /* there is or may be data to write */
542 #define KEEP_RECV_HOLD (1<<2) /* when set, no reading should be done but there
543                                  might still be data to read */
544 #define KEEP_SEND_HOLD (1<<3) /* when set, no writing should be done but there
545                                   might still be data to write */
546 #define KEEP_RECV_PAUSE (1<<4) /* reading is paused */
547 #define KEEP_SEND_PAUSE (1<<5) /* writing is paused */
548
549 #define KEEP_RECVBITS (KEEP_RECV | KEEP_RECV_HOLD | KEEP_RECV_PAUSE)
550 #define KEEP_SENDBITS (KEEP_SEND | KEEP_SEND_HOLD | KEEP_SEND_PAUSE)
551
552
553 #ifdef HAVE_LIBZ
554 typedef enum {
555   ZLIB_UNINIT,          /* uninitialized */
556   ZLIB_INIT,            /* initialized */
557   ZLIB_GZIP_HEADER,     /* reading gzip header */
558   ZLIB_GZIP_INFLATING,  /* inflating gzip stream */
559   ZLIB_INIT_GZIP        /* initialized in transparent gzip mode */
560 } zlibInitState;
561 #endif
562
563 #ifdef CURLRES_ASYNCH
564 struct Curl_async {
565   char *hostname;
566   int port;
567   struct Curl_dns_entry *dns;
568   bool done;  /* set TRUE when the lookup is complete */
569   int status; /* if done is TRUE, this is the status from the callback */
570   void *os_specific;  /* 'struct thread_data' for Windows */
571 };
572 #endif
573
574 #define FIRSTSOCKET     0
575 #define SECONDARYSOCKET 1
576
577 /* These function pointer types are here only to allow easier typecasting
578    within the source when we need to cast between data pointers (such as NULL)
579    and function pointers. */
580 typedef CURLcode (*Curl_do_more_func)(struct connectdata *, int *);
581 typedef CURLcode (*Curl_done_func)(struct connectdata *, CURLcode, bool);
582
583
584 enum expect100 {
585   EXP100_SEND_DATA,           /* enough waiting, just send the body now */
586   EXP100_AWAITING_CONTINUE,   /* waiting for the 100 Continue header */
587   EXP100_SENDING_REQUEST,     /* still sending the request but will wait for
588                                  the 100 header once done with the request */
589   EXP100_FAILED               /* used on 417 Expectation Failed */
590 };
591
592 /*
593  * Request specific data in the easy handle (SessionHandle).  Previously,
594  * these members were on the connectdata struct but since a conn struct may
595  * now be shared between different SessionHandles, we store connection-specific
596  * data here. This struct only keeps stuff that's interesting for *this*
597  * request, as it will be cleared between multiple ones
598  */
599 struct SingleRequest {
600   curl_off_t size;        /* -1 if unknown at this point */
601   curl_off_t *bytecountp; /* return number of bytes read or NULL */
602
603   curl_off_t maxdownload; /* in bytes, the maximum amount of data to fetch,
604                              -1 means unlimited */
605   curl_off_t *writebytecountp; /* return number of bytes written or NULL */
606
607   curl_off_t bytecount;         /* total number of bytes read */
608   curl_off_t writebytecount;    /* number of bytes written */
609
610   long headerbytecount;         /* only count received headers */
611   long deductheadercount; /* this amount of bytes doesn't count when we check
612                              if anything has been transferred at the end of a
613                              connection. We use this counter to make only a
614                              100 reply (without a following second response
615                              code) result in a CURLE_GOT_NOTHING error code */
616
617   struct timeval start;         /* transfer started at this time */
618   struct timeval now;           /* current time */
619   bool header;                  /* incoming data has HTTP header */
620   enum {
621     HEADER_NORMAL,              /* no bad header at all */
622     HEADER_PARTHEADER,          /* part of the chunk is a bad header, the rest
623                                    is normal data */
624     HEADER_ALLBAD               /* all was believed to be header */
625   } badheader;                  /* the header was deemed bad and will be
626                                    written as body */
627   int headerline;               /* counts header lines to better track the
628                                    first one */
629   char *hbufp;                  /* points at *end* of header line */
630   size_t hbuflen;
631   char *str;                    /* within buf */
632   char *str_start;              /* within buf */
633   char *end_ptr;                /* within buf */
634   char *p;                      /* within headerbuff */
635   bool content_range;           /* set TRUE if Content-Range: was found */
636   curl_off_t offset;            /* possible resume offset read from the
637                                    Content-Range: header */
638   int httpcode;                 /* error code from the 'HTTP/1.? XXX' or
639                                    'RTSP/1.? XXX' line */
640   struct timeval start100;      /* time stamp to wait for the 100 code from */
641   enum expect100 exp100;        /* expect 100 continue state */
642
643   int auto_decoding;            /* What content encoding. sec 3.5, RFC2616. */
644
645 #define IDENTITY 0              /* No encoding */
646 #define DEFLATE 1               /* zlib deflate [RFC 1950 & 1951] */
647 #define GZIP 2                  /* gzip algorithm [RFC 1952] */
648 #define COMPRESS 3              /* Not handled, added for completeness */
649
650 #ifdef HAVE_LIBZ
651   zlibInitState zlib_init;      /* possible zlib init state;
652                                    undefined if Content-Encoding header. */
653   z_stream z;                   /* State structure for zlib. */
654 #endif
655
656   time_t timeofdoc;
657   long bodywrites;
658
659   char *buf;
660   char *uploadbuf;
661   curl_socket_t maxfd;
662
663   int keepon;
664
665   bool upload_done; /* set to TRUE when doing chunked transfer-encoding upload
666                        and we're uploading the last chunk */
667
668   bool ignorebody;  /* we read a response-body but we ignore it! */
669   bool ignorecl;    /* This HTTP response has no body so we ignore the Content-
670                        Length: header */
671
672   char *location;   /* This points to an allocated version of the Location:
673                        header data */
674   char *newurl;     /* Set to the new URL to use when a redirect or a retry is
675                        wanted */
676
677   /* 'upload_present' is used to keep a byte counter of how much data there is
678      still left in the buffer, aimed for upload. */
679   ssize_t upload_present;
680
681    /* 'upload_fromhere' is used as a read-pointer when we uploaded parts of a
682       buffer, so the next read should read from where this pointer points to,
683       and the 'upload_present' contains the number of bytes available at this
684       position */
685   char *upload_fromhere;
686
687   bool chunk; /* if set, this is a chunked transfer-encoding */
688   bool upload_chunky; /* set TRUE if we are doing chunked transfer-encoding
689                          on upload */
690   bool getheader;     /* TRUE if header parsing is wanted */
691
692   bool forbidchunk;   /* used only to explicitly forbid chunk-upload for
693                          specific upload buffers. See readmoredata() in
694                          http.c for details. */
695 };
696
697 /*
698  * Specific protocol handler.
699  */
700
701 struct Curl_handler {
702   const char * scheme;        /* URL scheme name. */
703
704   /* Complement to setup_connection_internals(). */
705   CURLcode (*setup_connection)(struct connectdata *);
706
707   /* These two functions MUST be set to be protocol dependent */
708   CURLcode (*do_it)(struct connectdata *, bool *done);
709   Curl_done_func done;
710
711   /* If the curl_do() function is better made in two halves, this
712    * curl_do_more() function will be called afterwards, if set. For example
713    * for doing the FTP stuff after the PASV/PORT command.
714    */
715   Curl_do_more_func do_more;
716
717   /* This function *MAY* be set to a protocol-dependent function that is run
718    * after the connect() and everything is done, as a step in the connection.
719    * The 'done' pointer points to a bool that should be set to TRUE if the
720    * function completes before return. If it doesn't complete, the caller
721    * should call the curl_connecting() function until it is.
722    */
723   CURLcode (*connect_it)(struct connectdata *, bool *done);
724
725   /* See above. Currently only used for FTP. */
726   CURLcode (*connecting)(struct connectdata *, bool *done);
727   CURLcode (*doing)(struct connectdata *, bool *done);
728
729   /* Called from the multi interface during the PROTOCONNECT phase, and it
730      should then return a proper fd set */
731   int (*proto_getsock)(struct connectdata *conn,
732                        curl_socket_t *socks,
733                        int numsocks);
734
735   /* Called from the multi interface during the DOING phase, and it should
736      then return a proper fd set */
737   int (*doing_getsock)(struct connectdata *conn,
738                        curl_socket_t *socks,
739                        int numsocks);
740
741   /* Called from the multi interface during the DO_MORE phase, and it should
742      then return a proper fd set */
743   int (*domore_getsock)(struct connectdata *conn,
744                         curl_socket_t *socks,
745                         int numsocks);
746
747   /* Called from the multi interface during the DO_DONE, PERFORM and
748      WAITPERFORM phases, and it should then return a proper fd set. Not setting
749      this will make libcurl use the generic default one. */
750   int (*perform_getsock)(const struct connectdata *conn,
751                          curl_socket_t *socks,
752                          int numsocks);
753
754   /* This function *MAY* be set to a protocol-dependent function that is run
755    * by the curl_disconnect(), as a step in the disconnection.  If the handler
756    * is called because the connection has been considered dead, dead_connection
757    * is set to TRUE.
758    */
759   CURLcode (*disconnect)(struct connectdata *, bool dead_connection);
760
761   /* If used, this function gets called from transfer.c:readwrite_data() to
762      allow the protocol to do extra reads/writes */
763   CURLcode (*readwrite)(struct SessionHandle *data, struct connectdata *conn,
764                         ssize_t *nread, bool *readmore);
765
766   long defport;           /* Default port. */
767   unsigned int protocol;  /* See CURLPROTO_*  */
768   unsigned int flags;     /* Extra particular characteristics, see PROTOPT_* */
769 };
770
771 #define PROTOPT_NONE 0             /* nothing extra */
772 #define PROTOPT_SSL (1<<0)         /* uses SSL */
773 #define PROTOPT_DUAL (1<<1)        /* this protocol uses two connections */
774 #define PROTOPT_CLOSEACTION (1<<2) /* need action before socket close */
775 /* some protocols will have to call the underlying functions without regard to
776    what exact state the socket signals. IE even if the socket says "readable",
777    the send function might need to be called while uploading, or vice versa.
778 */
779 #define PROTOPT_DIRLOCK (1<<3)
780 #define PROTOPT_NONETWORK (1<<4)   /* protocol doesn't use the network! */
781 #define PROTOPT_NEEDSPWD (1<<5)    /* needs a password, and if none is set it
782                                       gets a default */
783 #define PROTOPT_NOURLQUERY (1<<6)   /* protocol can't handle
784                                         url query strings (?foo=bar) ! */
785
786
787 /* return the count of bytes sent, or -1 on error */
788 typedef ssize_t (Curl_send)(struct connectdata *conn, /* connection data */
789                             int sockindex,            /* socketindex */
790                             const void *buf,          /* data to write */
791                             size_t len,               /* max amount to write */
792                             CURLcode *err);           /* error to return */
793
794 /* return the count of bytes read, or -1 on error */
795 typedef ssize_t (Curl_recv)(struct connectdata *conn, /* connection data */
796                             int sockindex,            /* socketindex */
797                             char *buf,                /* store data here */
798                             size_t len,               /* max amount to read */
799                             CURLcode *err);           /* error to return */
800
801 /*
802  * The connectdata struct contains all fields and variables that should be
803  * unique for an entire connection.
804  */
805 struct connectdata {
806   /* 'data' is the CURRENT SessionHandle using this connection -- take great
807      caution that this might very well vary between different times this
808      connection is used! */
809   struct SessionHandle *data;
810
811   /* chunk is for HTTP chunked encoding, but is in the general connectdata
812      struct only because we can do just about any protocol through a HTTP proxy
813      and a HTTP proxy may in fact respond using chunked encoding */
814   struct Curl_chunker chunk;
815
816   curl_closesocket_callback fclosesocket; /* function closing the socket(s) */
817   void *closesocket_client;
818
819   bool inuse; /* This is a marker for the connection cache logic. If this is
820                  TRUE this handle is being used by an easy handle and cannot
821                  be used by any other easy handle without careful
822                  consideration (== only for pipelining). */
823
824   /**** Fields set when inited and not modified again */
825   long connection_id; /* Contains a unique number to make it easier to
826                          track the connections in the log output */
827
828   /* 'dns_entry' is the particular host we use. This points to an entry in the
829      DNS cache and it will not get pruned while locked. It gets unlocked in
830      Curl_done(). This entry will be NULL if the connection is re-used as then
831      there is no name resolve done. */
832   struct Curl_dns_entry *dns_entry;
833
834   /* 'ip_addr' is the particular IP we connected to. It points to a struct
835      within the DNS cache, so this pointer is only valid as long as the DNS
836      cache entry remains locked. It gets unlocked in Curl_done() */
837   Curl_addrinfo *ip_addr;
838
839   /* 'ip_addr_str' is the ip_addr data as a human readable string.
840      It remains available as long as the connection does, which is longer than
841      the ip_addr itself. */
842   char ip_addr_str[MAX_IPADR_LEN];
843
844   unsigned int scope;    /* address scope for IPv6 */
845
846   int socktype;  /* SOCK_STREAM or SOCK_DGRAM */
847
848   struct hostname host;
849   struct hostname proxy;
850
851   long port;       /* which port to use locally */
852   unsigned short remote_port; /* what remote port to connect to,
853                                  not the proxy port! */
854
855   /* 'primary_ip' and 'primary_port' get filled with peer's numerical
856      ip address and port number whenever an outgoing connection is
857      *attempted* from the primary socket to a remote address. When more
858      than one address is tried for a connection these will hold data
859      for the last attempt. When the connection is actually established
860      these are updated with data which comes directly from the socket. */
861
862   char primary_ip[MAX_IPADR_LEN];
863   long primary_port;
864
865   /* 'local_ip' and 'local_port' get filled with local's numerical
866      ip address and port number whenever an outgoing connection is
867      **established** from the primary socket to a remote address. */
868
869   char local_ip[MAX_IPADR_LEN];
870   long local_port;
871
872   char *user;    /* user name string, allocated */
873   char *passwd;  /* password string, allocated */
874   char *options; /* options string, allocated */
875
876   char *proxyuser;    /* proxy user name string, allocated */
877   char *proxypasswd;  /* proxy password string, allocated */
878   curl_proxytype proxytype; /* what kind of proxy that is in use */
879
880   int httpversion;        /* the HTTP version*10 reported by the server */
881   int rtspversion;        /* the RTSP version*10 reported by the server */
882
883   struct timeval now;     /* "current" time */
884   struct timeval created; /* creation time */
885   curl_socket_t sock[2]; /* two sockets, the second is used for the data
886                             transfer when doing FTP */
887   bool sock_accepted[2]; /* TRUE if the socket on this index was created with
888                             accept() */
889   Curl_recv *recv[2];
890   Curl_send *send[2];
891
892   struct ssl_connect_data ssl[2]; /* this is for ssl-stuff */
893   struct ssl_config_data ssl_config;
894
895   struct ConnectBits bits;    /* various state-flags for this connection */
896
897  /* connecttime: when connect() is called on the current IP address. Used to
898     be able to track when to move on to try next IP - but only when the multi
899     interface is used. */
900   struct timeval connecttime;
901   /* The two fields below get set in Curl_connecthost */
902   int num_addr; /* number of addresses to try to connect to */
903   long timeoutms_per_addr; /* how long time in milliseconds to spend on
904                               trying to connect to each IP address */
905
906   const struct Curl_handler *handler; /* Connection's protocol handler */
907   const struct Curl_handler *given;   /* The protocol first given */
908
909   long ip_version; /* copied from the SessionHandle at creation time */
910
911   /**** curl_get() phase fields */
912
913   curl_socket_t sockfd;   /* socket to read from or CURL_SOCKET_BAD */
914   curl_socket_t writesockfd; /* socket to write to, it may very
915                                 well be the same we read from.
916                                 CURL_SOCKET_BAD disables */
917
918   /** Dynamicly allocated strings, MUST be freed before this **/
919   /** struct is killed.                                      **/
920   struct dynamically_allocated_data {
921     char *proxyuserpwd;
922     char *uagent;
923     char *accept_encoding;
924     char *userpwd;
925     char *rangeline;
926     char *ref;
927     char *host;
928     char *cookiehost;
929     char *rtsp_transport;
930     char *te; /* TE: request header */
931   } allocptr;
932
933   int sec_complete; /* if kerberos is enabled for this connection */
934 #if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
935   enum protection_level command_prot;
936   enum protection_level data_prot;
937   enum protection_level request_data_prot;
938   size_t buffer_size;
939   struct krb4buffer in_buffer;
940   void *app_data;
941   const struct Curl_sec_client_mech *mech;
942   struct sockaddr_in local_addr;
943 #endif
944
945   /* the two following *_inuse fields are only flags, not counters in any way.
946      If TRUE it means the channel is in use, and if FALSE it means the channel
947      is up for grabs by one. */
948
949   bool readchannel_inuse;  /* whether the read channel is in use by an easy
950                               handle */
951   bool writechannel_inuse; /* whether the write channel is in use by an easy
952                               handle */
953   struct curl_llist *send_pipe; /* List of handles waiting to
954                                    send on this pipeline */
955   struct curl_llist *recv_pipe; /* List of handles waiting to read
956                                    their responses on this pipeline */
957   char* master_buffer; /* The master buffer allocated on-demand;
958                           used for pipelining. */
959   size_t read_pos; /* Current read position in the master buffer */
960   size_t buf_len; /* Length of the buffer?? */
961
962
963   curl_seek_callback seek_func; /* function that seeks the input */
964   void *seek_client;            /* pointer to pass to the seek() above */
965
966   /*************** Request - specific items ************/
967
968   /* previously this was in the urldata struct */
969   curl_read_callback fread_func; /* function that reads the input */
970   void *fread_in;           /* pointer to pass to the fread() above */
971
972   struct ntlmdata ntlm;     /* NTLM differs from other authentication schemes
973                                because it authenticates connections, not
974                                single requests! */
975   struct ntlmdata proxyntlm; /* NTLM data for proxy */
976
977 #if defined(USE_NTLM) && defined(NTLM_WB_ENABLED)
978   /* used for communication with Samba's winbind daemon helper ntlm_auth */
979   curl_socket_t ntlm_auth_hlpr_socket;
980   pid_t ntlm_auth_hlpr_pid;
981   char* challenge_header;
982   char* response_header;
983 #endif
984
985   char syserr_buf [256]; /* buffer for Curl_strerror() */
986
987 #ifdef CURLRES_ASYNCH
988   /* data used for the asynch name resolve callback */
989   struct Curl_async async;
990 #endif
991
992   /* These three are used for chunked-encoding trailer support */
993   char *trailer; /* allocated buffer to store trailer in */
994   int trlMax;    /* allocated buffer size */
995   int trlPos;    /* index of where to store data */
996
997   union {
998     struct ftp_conn ftpc;
999     struct ssh_conn sshc;
1000     struct tftp_state_data *tftpc;
1001     struct imap_conn imapc;
1002     struct pop3_conn pop3c;
1003     struct smtp_conn smtpc;
1004     struct rtsp_conn rtspc;
1005     void *generic;
1006   } proto;
1007
1008   int cselect_bits; /* bitmask of socket events */
1009   int waitfor;      /* current READ/WRITE bits to wait for */
1010
1011 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
1012   int socks5_gssapi_enctype;
1013 #endif
1014
1015   bool verifypeer;
1016   bool verifyhost;
1017
1018   /* When this connection is created, store the conditions for the local end
1019      bind. This is stored before the actual bind and before any connection is
1020      made and will serve the purpose of being used for comparison reasons so
1021      that subsequent bound-requested connections aren't accidentally re-using
1022      wrong connections. */
1023   char *localdev;
1024   unsigned short localport;
1025   int localportrange;
1026
1027   /* tunnel as in tunnel through a HTTP proxy with CONNECT */
1028   enum {
1029     TUNNEL_INIT,    /* init/default/no tunnel state */
1030     TUNNEL_CONNECT, /* CONNECT has been sent off */
1031     TUNNEL_COMPLETE /* CONNECT response received completely */
1032   } tunnel_state[2]; /* two separate ones to allow FTP */
1033   struct connectbundle *bundle; /* The bundle we are member of */
1034 };
1035
1036 /* The end of connectdata. */
1037
1038 /*
1039  * Struct to keep statistical and informational data.
1040  */
1041 struct PureInfo {
1042   int httpcode;  /* Recent HTTP, FTP, or RTSP response code */
1043   int httpproxycode; /* response code from proxy when received separate */
1044   int httpversion; /* the http version number X.Y = X*10+Y */
1045   long filetime; /* If requested, this is might get set. Set to -1 if the time
1046                     was unretrievable. We cannot have this of type time_t,
1047                     since time_t is unsigned on several platforms such as
1048                     OpenVMS. */
1049   bool timecond;  /* set to TRUE if the time condition didn't match, which
1050                      thus made the document NOT get fetched */
1051   long header_size;  /* size of read header(s) in bytes */
1052   long request_size; /* the amount of bytes sent in the request(s) */
1053   unsigned long proxyauthavail; /* what proxy auth types were announced */
1054   unsigned long httpauthavail;  /* what host auth types were announced */
1055   long numconnects; /* how many new connection did libcurl created */
1056   char *contenttype; /* the content type of the object */
1057   char *wouldredirect; /* URL this would've been redirected to if asked to */
1058
1059   /* PureInfo members 'conn_primary_ip', 'conn_primary_port', 'conn_local_ip'
1060      and, 'conn_local_port' are copied over from the connectdata struct in
1061      order to allow curl_easy_getinfo() to return this information even when
1062      the session handle is no longer associated with a connection, and also
1063      allow curl_easy_reset() to clear this information from the session handle
1064      without disturbing information which is still alive, and that might be
1065      reused, in the connection cache. */
1066
1067   char conn_primary_ip[MAX_IPADR_LEN];
1068   long conn_primary_port;
1069
1070   char conn_local_ip[MAX_IPADR_LEN];
1071   long conn_local_port;
1072
1073   struct curl_certinfo certs; /* info about the certs, only populated in
1074                                  OpenSSL builds. Asked for with
1075                                  CURLOPT_CERTINFO / CURLINFO_CERTINFO */
1076 };
1077
1078
1079 struct Progress {
1080   long lastshow; /* time() of the last displayed progress meter or NULL to
1081                     force redraw at next call */
1082   curl_off_t size_dl; /* total expected size */
1083   curl_off_t size_ul; /* total expected size */
1084   curl_off_t downloaded; /* transferred so far */
1085   curl_off_t uploaded; /* transferred so far */
1086
1087   curl_off_t current_speed; /* uses the currently fastest transfer */
1088
1089   bool callback;  /* set when progress callback is used */
1090   int width; /* screen width at download start */
1091   int flags; /* see progress.h */
1092
1093   double timespent;
1094
1095   curl_off_t dlspeed;
1096   curl_off_t ulspeed;
1097
1098   double t_nslookup;
1099   double t_connect;
1100   double t_appconnect;
1101   double t_pretransfer;
1102   double t_starttransfer;
1103   double t_redirect;
1104
1105   struct timeval start;
1106   struct timeval t_startsingle;
1107   struct timeval t_acceptdata;
1108 #define CURR_TIME (5+1) /* 6 entries for 5 seconds */
1109
1110   curl_off_t speeder[ CURR_TIME ];
1111   struct timeval speeder_time[ CURR_TIME ];
1112   int speeder_c;
1113 };
1114
1115 typedef enum {
1116   HTTPREQ_NONE, /* first in list */
1117   HTTPREQ_GET,
1118   HTTPREQ_POST,
1119   HTTPREQ_POST_FORM, /* we make a difference internally */
1120   HTTPREQ_PUT,
1121   HTTPREQ_HEAD,
1122   HTTPREQ_CUSTOM,
1123   HTTPREQ_LAST /* last in list */
1124 } Curl_HttpReq;
1125
1126 typedef enum {
1127     RTSPREQ_NONE, /* first in list */
1128     RTSPREQ_OPTIONS,
1129     RTSPREQ_DESCRIBE,
1130     RTSPREQ_ANNOUNCE,
1131     RTSPREQ_SETUP,
1132     RTSPREQ_PLAY,
1133     RTSPREQ_PAUSE,
1134     RTSPREQ_TEARDOWN,
1135     RTSPREQ_GET_PARAMETER,
1136     RTSPREQ_SET_PARAMETER,
1137     RTSPREQ_RECORD,
1138     RTSPREQ_RECEIVE,
1139     RTSPREQ_LAST /* last in list */
1140 } Curl_RtspReq;
1141
1142 /*
1143  * Values that are generated, temporary or calculated internally for a
1144  * "session handle" must be defined within the 'struct UrlState'.  This struct
1145  * will be used within the SessionHandle struct. When the 'SessionHandle'
1146  * struct is cloned, this data MUST NOT be copied.
1147  *
1148  * Remember that any "state" information goes globally for the curl handle.
1149  * Session-data MUST be put in the connectdata struct and here.  */
1150 #define MAX_CURL_USER_LENGTH 256
1151 #define MAX_CURL_PASSWORD_LENGTH 256
1152 #define MAX_CURL_OPTIONS_LENGTH 256
1153
1154 struct auth {
1155   unsigned long want;  /* Bitmask set to the authentication methods wanted by
1156                           app (with CURLOPT_HTTPAUTH or CURLOPT_PROXYAUTH). */
1157   unsigned long picked;
1158   unsigned long avail; /* Bitmask for what the server reports to support for
1159                           this resource */
1160   bool done;  /* TRUE when the auth phase is done and ready to do the *actual*
1161                  request */
1162   bool multi; /* TRUE if this is not yet authenticated but within the auth
1163                  multipass negotiation */
1164   bool iestyle; /* TRUE if digest should be done IE-style or FALSE if it should
1165                    be RFC compliant */
1166 };
1167
1168 struct UrlState {
1169
1170   /* Points to the connection cache */
1171   struct conncache *conn_cache;
1172
1173   /* when curl_easy_perform() is called, the multi handle is "owned" by
1174      the easy handle so curl_easy_cleanup() on such an easy handle will
1175      also close the multi handle! */
1176   bool multi_owned_by_easy;
1177
1178   /* buffers to store authentication data in, as parsed from input options */
1179   struct timeval keeps_speed; /* for the progress meter really */
1180
1181   struct connectdata *lastconnect; /* The last connection, NULL if undefined */
1182
1183   char *headerbuff; /* allocated buffer to store headers in */
1184   size_t headersize;   /* size of the allocation */
1185
1186   char buffer[BUFSIZE+1]; /* download buffer */
1187   char uploadbuffer[BUFSIZE+1]; /* upload buffer */
1188   curl_off_t current_speed;  /* the ProgressShow() funcion sets this,
1189                                 bytes / second */
1190   bool this_is_a_follow; /* this is a followed Location: request */
1191
1192   char *first_host; /* if set, this should be the host name that we will
1193                        sent authorization to, no else. Used to make Location:
1194                        following not keep sending user+password... This is
1195                        strdup() data.
1196                     */
1197   struct curl_ssl_session *session; /* array of 'max_ssl_sessions' size */
1198   long sessionage;                  /* number of the most recent session */
1199   char *tempwrite;      /* allocated buffer to keep data in when a write
1200                            callback returns to make the connection paused */
1201   size_t tempwritesize; /* size of the 'tempwrite' allocated buffer */
1202   int tempwritetype;    /* type of the 'tempwrite' buffer as a bitmask that is
1203                            used with Curl_client_write() */
1204   char *scratch; /* huge buffer[BUFSIZE*2] when doing upload CRLF replacing */
1205   bool errorbuf; /* Set to TRUE if the error buffer is already filled in.
1206                     This must be set to FALSE every time _easy_perform() is
1207                     called. */
1208   int os_errno;  /* filled in with errno whenever an error occurs */
1209 #ifdef HAVE_SIGNAL
1210   /* storage for the previous bag^H^H^HSIGPIPE signal handler :-) */
1211   void (*prev_signal)(int sig);
1212 #endif
1213   bool allow_port; /* Is set.use_port allowed to take effect or not. This
1214                       is always set TRUE when curl_easy_perform() is called. */
1215   struct digestdata digest;      /* state data for host Digest auth */
1216   struct digestdata proxydigest; /* state data for proxy Digest auth */
1217
1218 #ifdef USE_HTTP_NEGOTIATE
1219   struct negotiatedata negotiate; /* state data for host Negotiate auth */
1220   struct negotiatedata proxyneg; /* state data for proxy Negotiate auth */
1221 #endif
1222
1223   struct auth authhost;  /* auth details for host */
1224   struct auth authproxy; /* auth details for proxy */
1225
1226   bool authproblem; /* TRUE if there's some problem authenticating */
1227
1228   void *resolver; /* resolver state, if it is used in the URL state -
1229                      ares_channel f.e. */
1230
1231 #if defined(USE_SSLEAY) && defined(HAVE_OPENSSL_ENGINE_H)
1232   ENGINE *engine;
1233 #endif /* USE_SSLEAY */
1234   struct timeval expiretime; /* set this with Curl_expire() only */
1235   struct Curl_tree timenode; /* for the splay stuff */
1236   struct curl_llist *timeoutlist; /* list of pending timeouts */
1237
1238   /* a place to store the most recently set FTP entrypath */
1239   char *most_recent_ftp_entrypath;
1240
1241   /* set after initial USER failure, to prevent an authentication loop */
1242   bool ftp_trying_alternative;
1243
1244   int httpversion;       /* the lowest HTTP version*10 reported by any server
1245                             involved in this request */
1246   bool expect100header;  /* TRUE if we added Expect: 100-continue */
1247
1248   bool pipe_broke; /* TRUE if the connection we were pipelined on broke
1249                       and we need to restart from the beginning */
1250
1251 #if !defined(WIN32) && !defined(MSDOS) && !defined(__EMX__) && \
1252     !defined(__SYMBIAN32__)
1253 /* do FTP line-end conversions on most platforms */
1254 #define CURL_DO_LINEEND_CONV
1255   /* for FTP downloads: track CRLF sequences that span blocks */
1256   bool prev_block_had_trailing_cr;
1257   /* for FTP downloads: how many CRLFs did we converted to LFs? */
1258   curl_off_t crlf_conversions;
1259 #endif
1260   char *pathbuffer;/* allocated buffer to store the URL's path part in */
1261   char *path;      /* path to use, points to somewhere within the pathbuffer
1262                       area */
1263   bool slash_removed; /* set TRUE if the 'path' points to a path where the
1264                          initial URL slash separator has been taken off */
1265   bool use_range;
1266   bool rangestringalloc; /* the range string is malloc()'ed */
1267
1268   char *range; /* range, if used. See README for detailed specification on
1269                   this syntax. */
1270   curl_off_t resume_from; /* continue [ftp] transfer from here */
1271
1272   /* This RTSP state information survives requests and connections */
1273   long rtsp_next_client_CSeq; /* the session's next client CSeq */
1274   long rtsp_next_server_CSeq; /* the session's next server CSeq */
1275   long rtsp_CSeq_recv; /* most recent CSeq received */
1276
1277   /* Protocol specific data.
1278    *
1279    *************************************************************************
1280    * Note that this data will be REMOVED after each request, so anything that
1281    * should be kept/stored on a per-connection basis and thus live for the
1282    * next request on the same connection MUST be put in the connectdata struct!
1283    *************************************************************************/
1284   union {
1285     struct HTTP *http;
1286     struct HTTP *https;  /* alias, just for the sake of being more readable */
1287     struct RTSP *rtsp;
1288     struct FTP *ftp;
1289     /* void *tftp;    not used */
1290     struct FILEPROTO *file;
1291     void *telnet;        /* private for telnet.c-eyes only */
1292     void *generic;
1293     struct SSHPROTO *ssh;
1294     struct IMAP *imap;
1295     struct POP3 *pop3;
1296     struct SMTP *smtp;
1297   } proto;
1298
1299   /* if true, force SSL connection retry (workaround for certain servers) */
1300   bool ssl_connect_retry;
1301 };
1302
1303
1304 /*
1305  * This 'DynamicStatic' struct defines dynamic states that actually change
1306  * values in the 'UserDefined' area, which MUST be taken into consideration
1307  * if the UserDefined struct is cloned or similar. You can probably just
1308  * copy these, but each one indicate a special action on other data.
1309  */
1310
1311 struct DynamicStatic {
1312   char *url;        /* work URL, copied from UserDefined */
1313   bool url_alloc;   /* URL string is malloc()'ed */
1314   char *referer;    /* referer string */
1315   bool referer_alloc; /* referer sting is malloc()ed */
1316   struct curl_slist *cookielist; /* list of cookie files set by
1317                                     curl_easy_setopt(COOKIEFILE) calls */
1318   struct curl_slist *resolve; /* set to point to the set.resolve list when
1319                                  this should be dealt with in pretransfer */
1320 };
1321
1322 /*
1323  * This 'UserDefined' struct must only contain data that is set once to go
1324  * for many (perhaps) independent connections. Values that are generated or
1325  * calculated internally for the "session handle" MUST be defined within the
1326  * 'struct UrlState' instead. The only exceptions MUST note the changes in
1327  * the 'DynamicStatic' struct.
1328  * Character pointer fields point to dynamic storage, unless otherwise stated.
1329  */
1330
1331 struct Curl_multi;    /* declared and used only in multi.c */
1332
1333 enum dupstring {
1334   STRING_CERT,            /* client certificate file name */
1335   STRING_CERT_TYPE,       /* format for certificate (default: PEM)*/
1336   STRING_COOKIE,          /* HTTP cookie string to send */
1337   STRING_COOKIEJAR,       /* dump all cookies to this file */
1338   STRING_CUSTOMREQUEST,   /* HTTP/FTP/RTSP request/method to use */
1339   STRING_DEVICE,          /* local network interface/address to use */
1340   STRING_ENCODING,        /* Accept-Encoding string */
1341   STRING_FTP_ACCOUNT,     /* ftp account data */
1342   STRING_FTP_ALTERNATIVE_TO_USER, /* command to send if USER/PASS fails */
1343   STRING_FTPPORT,         /* port to send with the FTP PORT command */
1344   STRING_KEY,             /* private key file name */
1345   STRING_KEY_PASSWD,      /* plain text private key password */
1346   STRING_KEY_TYPE,        /* format for private key (default: PEM) */
1347   STRING_KRB_LEVEL,       /* krb security level */
1348   STRING_NETRC_FILE,      /* if not NULL, use this instead of trying to find
1349                              $HOME/.netrc */
1350   STRING_COPYPOSTFIELDS,  /* if POST, set the fields' values here */
1351   STRING_PROXY,           /* proxy to use */
1352   STRING_SET_RANGE,       /* range, if used */
1353   STRING_SET_REFERER,     /* custom string for the HTTP referer field */
1354   STRING_SET_URL,         /* what original URL to work on */
1355   STRING_SSL_CAPATH,      /* CA directory name (doesn't work on windows) */
1356   STRING_SSL_CAFILE,      /* certificate file to verify peer against */
1357   STRING_SSL_CIPHER_LIST, /* list of ciphers to use */
1358   STRING_SSL_EGDSOCKET,   /* path to file containing the EGD daemon socket */
1359   STRING_SSL_RANDOM_FILE, /* path to file containing "random" data */
1360   STRING_USERAGENT,       /* User-Agent string */
1361   STRING_SSL_CRLFILE,     /* crl file to check certificate */
1362   STRING_SSL_ISSUERCERT,  /* issuer cert file to check certificate */
1363   STRING_USERNAME,        /* <username>, if used */
1364   STRING_PASSWORD,        /* <password>, if used */
1365   STRING_OPTIONS,         /* <options>, if used */
1366   STRING_PROXYUSERNAME,   /* Proxy <username>, if used */
1367   STRING_PROXYPASSWORD,   /* Proxy <password>, if used */
1368   STRING_NOPROXY,         /* List of hosts which should not use the proxy, if
1369                              used */
1370   STRING_RTSP_SESSION_ID, /* Session ID to use */
1371   STRING_RTSP_STREAM_URI, /* Stream URI for this request */
1372   STRING_RTSP_TRANSPORT,  /* Transport for this session */
1373 #ifdef USE_LIBSSH2
1374   STRING_SSH_PRIVATE_KEY, /* path to the private key file for auth */
1375   STRING_SSH_PUBLIC_KEY,  /* path to the public key file for auth */
1376   STRING_SSH_HOST_PUBLIC_KEY_MD5, /* md5 of host public key in ascii hex */
1377   STRING_SSH_KNOWNHOSTS,  /* file name of knownhosts file */
1378 #endif
1379 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
1380   STRING_SOCKS5_GSSAPI_SERVICE,  /* GSSAPI service name */
1381 #endif
1382   STRING_MAIL_FROM,
1383   STRING_MAIL_AUTH,
1384
1385 #ifdef USE_TLS_SRP
1386   STRING_TLSAUTH_USERNAME,     /* TLS auth <username> */
1387   STRING_TLSAUTH_PASSWORD,     /* TLS auth <password> */
1388 #endif
1389
1390   /* -- end of strings -- */
1391   STRING_LAST /* not used, just an end-of-list marker */
1392 };
1393
1394 struct UserDefined {
1395   FILE *err;         /* the stderr user data goes here */
1396   void *debugdata;   /* the data that will be passed to fdebug */
1397   char *errorbuffer; /* (Static) store failure messages in here */
1398   long proxyport; /* If non-zero, use this port number by default. If the
1399                      proxy string features a ":[port]" that one will override
1400                      this. */
1401   void *out;         /* the fetched file goes here */
1402   void *in;          /* the uploaded file is read from here */
1403   void *writeheader; /* write the header to this if non-NULL */
1404   void *rtp_out;     /* write RTP to this if non-NULL */
1405   long use_port;     /* which port to use (when not using default) */
1406   unsigned long httpauth;  /* kind of HTTP authentication to use (bitmask) */
1407   unsigned long proxyauth; /* kind of proxy authentication to use (bitmask) */
1408   long followlocation; /* as in HTTP Location: */
1409   long maxredirs;    /* maximum no. of http(s) redirects to follow, set to -1
1410                         for infinity */
1411
1412   int keep_post;     /* keep POSTs as POSTs after a 30x request; each
1413                         bit represents a request, from 301 to 303 */
1414   bool free_referer; /* set TRUE if 'referer' points to a string we
1415                         allocated */
1416   void *postfields;  /* if POST, set the fields' values here */
1417   curl_seek_callback seek_func;      /* function that seeks the input */
1418   curl_off_t postfieldsize; /* if POST, this might have a size to use instead
1419                                of strlen(), and then the data *may* be binary
1420                                (contain zero bytes) */
1421   unsigned short localport; /* local port number to bind to */
1422   int localportrange; /* number of additional port numbers to test in case the
1423                          'localport' one can't be bind()ed */
1424   curl_write_callback fwrite_func;   /* function that stores the output */
1425   curl_write_callback fwrite_header; /* function that stores headers */
1426   curl_write_callback fwrite_rtp;    /* function that stores interleaved RTP */
1427   curl_read_callback fread_func;     /* function that reads the input */
1428   int is_fread_set; /* boolean, has read callback been set to non-NULL? */
1429   int is_fwrite_set; /* boolean, has write callback been set to non-NULL? */
1430   curl_progress_callback fprogress; /* OLD and deprecated progress callback  */
1431   curl_xferinfo_callback fxferinfo; /* progress callback */
1432   curl_debug_callback fdebug;      /* function that write informational data */
1433   curl_ioctl_callback ioctl_func;  /* function for I/O control */
1434   curl_sockopt_callback fsockopt;  /* function for setting socket options */
1435   void *sockopt_client; /* pointer to pass to the socket options callback */
1436   curl_opensocket_callback fopensocket; /* function for checking/translating
1437                                            the address and opening the
1438                                            socket */
1439   void* opensocket_client;
1440   curl_closesocket_callback fclosesocket; /* function for closing the
1441                                              socket */
1442   void* closesocket_client;
1443
1444   void *seek_client;    /* pointer to pass to the seek callback */
1445   /* the 3 curl_conv_callback functions below are used on non-ASCII hosts */
1446   /* function to convert from the network encoding: */
1447   curl_conv_callback convfromnetwork;
1448   /* function to convert to the network encoding: */
1449   curl_conv_callback convtonetwork;
1450   /* function to convert from UTF-8 encoding: */
1451   curl_conv_callback convfromutf8;
1452
1453   void *progress_client; /* pointer to pass to the progress callback */
1454   void *ioctl_client;   /* pointer to pass to the ioctl callback */
1455   long timeout;         /* in milliseconds, 0 means no timeout */
1456   long connecttimeout;  /* in milliseconds, 0 means no timeout */
1457   long accepttimeout;   /* in milliseconds, 0 means no timeout */
1458   long server_response_timeout; /* in milliseconds, 0 means no timeout */
1459   long tftp_blksize ; /* in bytes, 0 means use default */
1460   curl_off_t infilesize;      /* size of file to upload, -1 means unknown */
1461   long low_speed_limit; /* bytes/second */
1462   long low_speed_time;  /* number of seconds */
1463   curl_off_t max_send_speed; /* high speed limit in bytes/second for upload */
1464   curl_off_t max_recv_speed; /* high speed limit in bytes/second for
1465                                 download */
1466   curl_off_t set_resume_from;  /* continue [ftp] transfer from here */
1467   struct curl_slist *headers; /* linked list of extra headers */
1468   struct curl_httppost *httppost;  /* linked list of POST data */
1469   bool cookiesession;   /* new cookie session? */
1470   bool crlf;            /* convert crlf on ftp upload(?) */
1471   struct curl_slist *quote;     /* after connection is established */
1472   struct curl_slist *postquote; /* after the transfer */
1473   struct curl_slist *prequote; /* before the transfer, after type */
1474   struct curl_slist *source_quote;  /* 3rd party quote */
1475   struct curl_slist *source_prequote;  /* in 3rd party transfer mode - before
1476                                           the transfer on source host */
1477   struct curl_slist *source_postquote; /* in 3rd party transfer mode - after
1478                                           the transfer on source host */
1479   struct curl_slist *telnet_options; /* linked list of telnet options */
1480   struct curl_slist *resolve;     /* list of names to add/remove from
1481                                      DNS cache */
1482   curl_TimeCond timecondition; /* kind of time/date comparison */
1483   time_t timevalue;       /* what time to compare with */
1484   Curl_HttpReq httpreq;   /* what kind of HTTP request (if any) is this */
1485   long httpversion; /* when non-zero, a specific HTTP version requested to
1486                        be used in the library's request(s) */
1487   struct ssl_config_data ssl;  /* user defined SSL stuff */
1488   curl_proxytype proxytype; /* what kind of proxy that is in use */
1489   long dns_cache_timeout; /* DNS cache timeout */
1490   long buffer_size;      /* size of receive buffer to use */
1491   void *private_data; /* application-private data */
1492
1493   struct curl_slist *http200aliases; /* linked list of aliases for http200 */
1494
1495   long ipver; /* the CURL_IPRESOLVE_* defines in the public header file
1496                  0 - whatever, 1 - v2, 2 - v6 */
1497
1498   curl_off_t max_filesize; /* Maximum file size to download */
1499
1500   curl_ftpfile ftp_filemethod; /* how to get to a file when FTP is used  */
1501
1502   int ftp_create_missing_dirs; /* 1 - create directories that don't exist
1503                                   2 - the same but also allow MKD to fail once
1504                                */
1505
1506   curl_sshkeycallback ssh_keyfunc; /* key matching callback */
1507   void *ssh_keyfunc_userp;         /* custom pointer to callback */
1508
1509 /* Here follows boolean settings that define how to behave during
1510    this session. They are STATIC, set by libcurl users or at least initially
1511    and they don't change during operations. */
1512
1513   bool printhost;        /* printing host name in debug info */
1514   bool get_filetime;     /* get the time and get of the remote file */
1515   bool tunnel_thru_httpproxy; /* use CONNECT through a HTTP proxy */
1516   bool prefer_ascii;     /* ASCII rather than binary */
1517   bool ftp_append;       /* append, not overwrite, on upload */
1518   bool ftp_list_only;    /* switch FTP command for listing directories */
1519   bool ftp_use_port;     /* use the FTP PORT command */
1520   bool hide_progress;    /* don't use the progress meter */
1521   bool http_fail_on_error;  /* fail on HTTP error codes >= 300 */
1522   bool http_follow_location; /* follow HTTP redirects */
1523   bool http_transfer_encoding; /* request compressed HTTP transfer-encoding */
1524   bool http_disable_hostname_check_before_authentication;
1525   bool include_header;   /* include received protocol headers in data output */
1526   bool http_set_referer; /* is a custom referer used */
1527   bool http_auto_referer; /* set "correct" referer when following location: */
1528   bool opt_no_body;      /* as set with CURLOPT_NOBODY */
1529   bool set_port;         /* custom port number used */
1530   bool upload;           /* upload request */
1531   enum CURL_NETRC_OPTION
1532        use_netrc;        /* defined in include/curl.h */
1533   bool verbose;          /* output verbosity */
1534   bool krb;              /* kerberos connection requested */
1535   bool reuse_forbid;     /* forbidden to be reused, close after use */
1536   bool reuse_fresh;      /* do not re-use an existing connection  */
1537   bool ftp_use_epsv;     /* if EPSV is to be attempted or not */
1538   bool ftp_use_eprt;     /* if EPRT is to be attempted or not */
1539   bool ftp_use_pret;     /* if PRET is to be used before PASV or not */
1540
1541   curl_usessl use_ssl;   /* if AUTH TLS is to be attempted etc, for FTP or
1542                             IMAP or POP3 or others! */
1543   curl_ftpauth ftpsslauth; /* what AUTH XXX to be attempted */
1544   curl_ftpccc ftp_ccc;   /* FTP CCC options */
1545   bool no_signal;        /* do not use any signal/alarm handler */
1546   bool global_dns_cache; /* subject for future removal */
1547   bool tcp_nodelay;      /* whether to enable TCP_NODELAY or not */
1548   bool ignorecl;         /* ignore content length */
1549   bool ftp_skip_ip;      /* skip the IP address the FTP server passes on to
1550                             us */
1551   bool connect_only;     /* make connection, let application use the socket */
1552   bool ssl_enable_beast; /* especially allow this flaw for interoperability's
1553                             sake*/
1554   long ssh_auth_types;   /* allowed SSH auth types */
1555   bool http_te_skip;     /* pass the raw body data to the user, even when
1556                             transfer-encoded (chunked, compressed) */
1557   bool http_ce_skip;     /* pass the raw body data to the user, even when
1558                             content-encoded (chunked, compressed) */
1559   long new_file_perms;    /* Permissions to use when creating remote files */
1560   long new_directory_perms; /* Permissions to use when creating remote dirs */
1561   bool proxy_transfer_mode; /* set transfer mode (;type=<a|i>) when doing FTP
1562                                via an HTTP proxy */
1563   char *str[STRING_LAST]; /* array of strings, pointing to allocated memory */
1564   unsigned int scope;    /* address scope for IPv6 */
1565   long allowed_protocols;
1566   long redir_protocols;
1567 #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
1568   long socks5_gssapi_nec; /* flag to support nec socks5 server */
1569 #endif
1570   struct curl_slist *mail_rcpt; /* linked list of mail recipients */
1571   bool sasl_ir;         /* Enable/disable SASL initial response */
1572   /* Common RTSP header options */
1573   Curl_RtspReq rtspreq; /* RTSP request type */
1574   long rtspversion; /* like httpversion, for RTSP */
1575   bool wildcardmatch; /* enable wildcard matching */
1576   curl_chunk_bgn_callback chunk_bgn; /* called before part of transfer
1577                                         starts */
1578   curl_chunk_end_callback chunk_end; /* called after part transferring
1579                                         stopped */
1580   curl_fnmatch_callback fnmatch; /* callback to decide which file corresponds
1581                                     to pattern (e.g. if WILDCARDMATCH is on) */
1582   void *fnmatch_data;
1583
1584   long gssapi_delegation; /* GSSAPI credential delegation, see the
1585                              documentation of CURLOPT_GSSAPI_DELEGATION */
1586
1587   bool tcp_keepalive;    /* use TCP keepalives */
1588   long tcp_keepidle;     /* seconds in idle before sending keepalive probe */
1589   long tcp_keepintvl;    /* seconds between TCP keepalive probes */
1590
1591   size_t maxconnects;  /* Max idle connections in the connection cache */
1592 };
1593
1594 struct Names {
1595   struct curl_hash *hostcache;
1596   enum {
1597     HCACHE_NONE,    /* not pointing to anything */
1598     HCACHE_GLOBAL,  /* points to the (shrug) global one */
1599     HCACHE_MULTI,   /* points to a shared one in the multi handle */
1600     HCACHE_SHARED   /* points to a shared one in a shared object */
1601   } hostcachetype;
1602 };
1603
1604 /*
1605  * The 'connectdata' struct MUST have all the connection oriented stuff as we
1606  * may have several simultaneous connections and connection structs in memory.
1607  *
1608  * The 'struct UserDefined' must only contain data that is set once to go for
1609  * many (perhaps) independent connections. Values that are generated or
1610  * calculated internally for the "session handle" must be defined within the
1611  * 'struct UrlState' instead.
1612  */
1613
1614 struct SessionHandle {
1615   /* first, two fields for the linked list of these */
1616   struct SessionHandle *next;
1617   struct SessionHandle *prev;
1618
1619   struct connectdata *easy_conn;     /* the "unit's" connection */
1620
1621   CURLMstate mstate;  /* the handle's state */
1622   CURLcode result;   /* previous result */
1623
1624   struct Curl_message msg; /* A single posted message. */
1625
1626   /* Array with the plain socket numbers this handle takes care of, in no
1627      particular order. Note that all sockets are added to the sockhash, where
1628      the state etc are also kept. This array is mostly used to detect when a
1629      socket is to be removed from the hash. See singlesocket(). */
1630   curl_socket_t sockets[MAX_SOCKSPEREASYHANDLE];
1631   int numsocks;
1632
1633   struct Names dns;
1634   struct Curl_multi *multi;    /* if non-NULL, points to the multi handle
1635                                   struct to which this "belongs" when used by
1636                                   the multi interface */
1637   struct Curl_multi *multi_easy; /* if non-NULL, points to the multi handle
1638                                     struct to which this "belongs" when used
1639                                     by the easy interface */
1640   struct Curl_share *share;    /* Share, handles global variable mutexing */
1641   struct SingleRequest req;    /* Request-specific data */
1642   struct UserDefined set;      /* values set by the libcurl user */
1643   struct DynamicStatic change; /* possibly modified userdefined data */
1644   struct CookieInfo *cookies;  /* the cookies, read from files and servers.
1645                                   NOTE that the 'cookie' field in the
1646                                   UserDefined struct defines if the "engine"
1647                                   is to be used or not. */
1648   struct Progress progress;    /* for all the progress meter data */
1649   struct UrlState state;       /* struct for fields used for state info and
1650                                   other dynamic purposes */
1651   struct WildcardData wildcard; /* wildcard download state info */
1652   struct PureInfo info;        /* stats, reports and info data */
1653 #if defined(CURL_DOES_CONVERSIONS) && defined(HAVE_ICONV)
1654   iconv_t outbound_cd;         /* for translating to the network encoding */
1655   iconv_t inbound_cd;          /* for translating from the network encoding */
1656   iconv_t utf8_cd;             /* for translating to UTF8 */
1657 #endif /* CURL_DOES_CONVERSIONS && HAVE_ICONV */
1658   unsigned int magic;          /* set to a CURLEASY_MAGIC_NUMBER */
1659 };
1660
1661 #define LIBCURL_NAME "libcurl"
1662
1663 #endif /* HEADER_CURL_URLDATA_H */