Skip to content
Snippets Groups Projects
http.c 37.9 KiB
Newer Older
  • Learn to ignore specific revisions
  • /***************************************************************************
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *                                  _   _ ____  _     
     *  Project                     ___| | | |  _ \| |    
     *                             / __| | | | |_) | |    
     *                            | (__| |_| |  _ <| |___ 
     *                             \___|\___/|_| \_\_____|
     *
    
     * Copyright (C) 1998 - 2003, Daniel Stenberg, <daniel@haxx.se>, et al.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
     * This software is licensed as described in the file COPYING, which
     * you should have received as part of this distribution. The terms
     * are also available at http://curl.haxx.se/docs/copyright.html.
     * 
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     * You may opt to use, copy, modify, merge, publish, distribute and/or sell
     * copies of the Software, and permit persons to whom the Software is
    
     * furnished to do so, under the terms of the COPYING file.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
     * KIND, either express or implied.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     * $Id$
    
     ***************************************************************************/
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    /* -- WIN32 approved -- */
    #include <stdio.h>
    #include <string.h>
    #include <stdarg.h>
    #include <stdlib.h>
    #include <ctype.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    
    #include <errno.h>
    
    #if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
    #include <winsock.h>
    #include <time.h>
    #include <io.h>
    #else
    #ifdef HAVE_SYS_SOCKET_H
    #include <sys/socket.h>
    #endif
    
    #ifdef HAVE_NETINET_IN_H
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include <netinet/in.h>
    
    #endif
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include <sys/time.h>
    
    #ifdef HAVE_TIME_H
    #ifdef TIME_WITH_SYS_TIME
    #include <time.h>
    #endif
    #endif
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include <sys/resource.h>
    #ifdef HAVE_UNISTD_H
    #include <unistd.h>
    #endif
    #include <netdb.h>
    #ifdef HAVE_ARPA_INET_H
    #include <arpa/inet.h>
    #endif
    #ifdef HAVE_NET_IF_H
    #include <net/if.h>
    #endif
    #include <sys/ioctl.h>
    #include <signal.h>
    
    #ifdef HAVE_SYS_PARAM_H
    #include <sys/param.h>
    #endif
    
    #ifdef HAVE_SYS_SELECT_H
    #include <sys/select.h>
    #endif
    
    
    #endif
    
    #include "urldata.h"
    #include <curl/curl.h>
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include "sendf.h"
    #include "formdata.h"
    #include "progress.h"
    #include "base64.h"
    #include "cookie.h"
    
    #include "strequal.h"
    #include "ssluse.h"
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    #define _MPRINTF_REPLACE /* use our functions only */
    #include <curl/mprintf.h>
    
    
    /* The last #include file should be: */
    #ifdef MALLOCDEBUG
    #include "memdebug.h"
    #endif
    
    
    /* fread() emulation to provide POST and/or request data */
    static int readmoredata(char *buffer,
                            size_t size,
                            size_t nitems,
                            void *userp)
    {
      struct connectdata *conn = (struct connectdata *)userp;
      struct HTTP *http = conn->proto.http;
      int fullsize = size * nitems;
    
      if(0 == http->postsize)
        /* nothing to return */
        return 0;
      
      /* make sure that a HTTP request is never sent away chunked! */
      conn->bits.forbidchunk= (http->sending == HTTPSEND_REQUEST)?TRUE:FALSE;
    
      if(http->postsize <= fullsize) {
        memcpy(buffer, http->postdata, http->postsize);
        fullsize = http->postsize;
    
        if(http->backup.postsize) {
          /* move backup data into focus and continue on that */
          http->postdata = http->backup.postdata;
          http->postsize = http->backup.postsize;
          conn->fread =    http->backup.fread;
          conn->fread_in = http->backup.fread_in;
    
          http->sending++; /* move one step up */
    
          http->backup.postsize=0;
        }
        else
          http->postsize = 0;
    
        return fullsize;
      }
    
      memcpy(buffer, http->postdata, fullsize);
      http->postdata += fullsize;
      http->postsize -= fullsize;
    
      return fullsize;
    }
    
    
    /* ------------------------------------------------------------------------- */
    
    /*
     * The add_buffer series of functions are used to build one large memory chunk
     * from repeated function invokes. Used so that the entire HTTP request can
     * be sent in one go.
     */
    
    
    struct send_buffer {
      char *buffer;
      size_t size_max;
      size_t size_used;
    };
    typedef struct send_buffer send_buffer;
    
    
     add_buffer(send_buffer *in, const void *inptr, size_t size);
    
    
    /*
     * add_buffer_init() returns a fine buffer struct
     */
    static
    send_buffer *add_buffer_init(void)
    {
      send_buffer *blonk;
      blonk=(send_buffer *)malloc(sizeof(send_buffer));
      if(blonk) {
        memset(blonk, 0, sizeof(send_buffer));
        return blonk;
      }
      return NULL; /* failed, go home */
    }
    
    /*
     * add_buffer_send() sends a buffer and frees all associated memory.
     */
    static
    
    CURLcode add_buffer_send(send_buffer *in,
                             int sockfd,
                             struct connectdata *conn,
                             long *bytes_written) /* add the number of sent
                                                     bytes to this counter */
    
      ssize_t amount;
      CURLcode res;
      char *ptr;
      int size;
    
      struct HTTP *http = conn->proto.http;
    
      /* The looping below is required since we use non-blocking sockets, but due
         to the circumstances we will just loop and try again and again etc */
    
      ptr = in->buffer;
      size = in->size_used;
    
    
      res = Curl_write(conn, sockfd, ptr, size, &amount);
    
      if(CURLE_OK == res) {
    
        if(conn->data->set.verbose)
          /* this data _may_ contain binary stuff */
    
          Curl_debug(conn->data, CURLINFO_HEADER_OUT, ptr, amount);
    
          /* The whole request could not be sent in one system call. We must queue
             it up and send it later when we get the chance. We must not loop here
             and wait until it might work again. */
    
    
        
          /* backup the currently set pointers */
          http->backup.fread = conn->fread;
          http->backup.fread_in = conn->fread_in;
          http->backup.postdata = http->postdata;
          http->backup.postsize = http->postsize;
    
          /* set the new pointers for the request-sending */
          conn->fread = (curl_read_callback)readmoredata;
          conn->fread_in = (void *)conn;
          http->postdata = ptr;
          http->postsize = size;
    
          http->send_buffer = in;
          http->sending = HTTPSEND_REQUEST;
          
          return CURLE_OK;
    
        /* the full buffer was sent, clean up and return */
      }
    
    }
    
    
    /* 
     * add_bufferf() builds a buffer from the formatted input
     */
    static
    
    CURLcode add_bufferf(send_buffer *in, const char *fmt, ...)
    
    {
      CURLcode result = CURLE_OUT_OF_MEMORY;
      char *s;
      va_list ap;
      va_start(ap, fmt);
    
      s = vaprintf(fmt, ap); /* this allocs a new string to append */
    
      va_end(ap);
    
      if(s) {
        result = add_buffer(in, s, strlen(s));
        free(s);
      }
      return result;
    }
    
    /*
     * add_buffer() appends a memory chunk to the existing one
     */
    static
    
    CURLcode add_buffer(send_buffer *in, const void *inptr, size_t size)
    
      if(!in->buffer ||
         ((in->size_used + size) > (in->size_max - 1))) {
        new_size = (in->size_used+size)*2;
        if(in->buffer)
          /* we have a buffer, enlarge the existing one */
          new_rb = (char *)realloc(in->buffer, new_size);
        else
          /* create a new buffer */
          new_rb = (char *)malloc(new_size);
    
        if(!new_rb)
          return CURLE_OUT_OF_MEMORY;
    
        in->buffer = new_rb;
        in->size_max = new_size;
    
      memcpy(&in->buffer[in->size_used], inptr, size);
          
      in->size_used += size;
    
    
      return CURLE_OK;
    }
    
    /* end of the add_buffer functions */
    
    /* ------------------------------------------------------------------------- */
    
    /*
     * Curl_compareheader()
     *
     * Returns TRUE if 'headerline' contains the 'header' with given 'content'.
     * Pass headers WITH the colon.
     */
    bool
    Curl_compareheader(char *headerline,    /* line to check */
                       const char *header,  /* header keyword _with_ colon */
                       const char *content) /* content string to find */
    {
      /* RFC2616, section 4.2 says: "Each header field consists of a name followed
       * by a colon (":") and the field value. Field names are case-insensitive.
       * The field value MAY be preceded by any amount of LWS, though a single SP
       * is preferred." */
    
      size_t hlen = strlen(header);
      size_t clen;
      size_t len;
      char *start;
      char *end;
    
      if(!strnequal(headerline, header, hlen))
        return FALSE; /* doesn't start with header */
    
      /* pass the header */
      start = &headerline[hlen];
    
      /* pass all white spaces */
      while(*start && isspace((int)*start))
        start++;
    
      /* find the end of the header line */
      end = strchr(start, '\r'); /* lines end with CRLF */
      if(!end) {
        /* in case there's a non-standard compliant line here */
        end = strchr(start, '\n');
    
        if(!end)
          /* hm, there's no line ending here, use the zero byte! */
          end = strchr(start, '\0');
      }
    
      len = end-start; /* length of the content part of the input line */
      clen = strlen(content); /* length of the word to find */
    
      /* find the content string in the rest of the line */
      for(;len>=clen;len--, start++) {
        if(strnequal(start, content, clen))
          return TRUE; /* match! */
      }
    
      return FALSE; /* no match */
    }
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    /*
     * This function checks the linked list of custom HTTP headers for a particular
     * header (prefix).
     */
    
    static char *checkheaders(struct SessionHandle *data, const char *thisheader)
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    {
    
      struct curl_slist *head;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      size_t thislen = strlen(thisheader);
    
    
      for(head = data->set.headers; head; head=head->next) {
    
        if(strnequal(head->data, thisheader, thislen))
          return head->data;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
    
     * ConnectHTTPProxyTunnel() requires that we're connected to a HTTP proxy. This
    
     * function will issue the necessary commands to get a seamless tunnel through
     * this proxy. After that, the socket can be used just as a normal socket.
     */
    
    
    CURLcode Curl_ConnectHTTPProxyTunnel(struct connectdata *conn,
                                         int tunnelsocket,
    
                                         char *hostname, int remote_port)
    
    {
      int httperror=0;
      int subversion=0;
    
      struct SessionHandle *data=conn->data;
    
      int nread;   /* total size read */
      int perline; /* count bytes per line */
      bool keepon=TRUE;
      ssize_t gotbytes;
      char *ptr;
      int timeout = 3600; /* default timeout in seconds */
      struct timeval interval;
      fd_set rkeepfd;
      fd_set readfd;
      char *line_start;
    
    #define SELECT_OK      0
    #define SELECT_ERROR   1
    #define SELECT_TIMEOUT 2
      int error = SELECT_OK;
    
    
      infof(data, "Establish HTTP proxy tunnel to %s:%d\n", hostname, remote_port);
    
      /* OK, now send the connect request to the proxy */
    
      result =
        Curl_sendf(tunnelsocket, conn,
                   "CONNECT %s:%d HTTP/1.0\015\012"
                   "%s"
                   "%s"
                   "\r\n",
                   hostname, remote_port,
                   (conn->bits.proxy_user_passwd)?conn->allocptr.proxyuserpwd:"",
                   (data->set.useragent?conn->allocptr.uagent:"")
                   );
      if(result) {
        failf(data, "Failed sending CONNECT to proxy");
        return result;
      }
    
      /* Now, read the full reply we get from the proxy */
    
    
      if(data->set.timeout) {
        /* if timeout is requested, find out how much remaining time we have */
        timeout = data->set.timeout - /* timeout time */
          Curl_tvdiff(Curl_tvnow(), conn->now)/1000; /* spent time */
        if(timeout <=0 ) {
          failf(data, "Transfer aborted due to timeout");
          return -SELECT_TIMEOUT; /* already too little time */
    
    
      FD_ZERO (&readfd);		/* clear it */
      FD_SET (tunnelsocket, &readfd);     /* read socket */
    
      /* get this in a backup variable to be able to restore it on each lap in the
         select() loop */
      rkeepfd = readfd;
    
      ptr=data->state.buffer;
      line_start = ptr;
    
      nread=0;
      perline=0;
      keepon=TRUE;
    
      while((nread<BUFSIZE) && (keepon && !error)) {
        readfd = rkeepfd;		   /* set every lap */
        interval.tv_sec = timeout;
        interval.tv_usec = 0;
    
        switch (select (tunnelsocket+1, &readfd, NULL, NULL, &interval)) {
        case -1: /* select() error, stop reading */
          error = SELECT_ERROR;
          failf(data, "Transfer aborted due to select() error");
          break;
        case 0: /* timeout */
          error = SELECT_TIMEOUT;
          failf(data, "Transfer aborted due to timeout");
          break;
        default:
          /*
           * This code previously didn't use the kerberos sec_read() code
           * to read, but when we use Curl_read() it may do so. Do confirm
           * that this is still ok and then remove this comment!
           */
    
          res= Curl_read(conn, tunnelsocket, ptr, BUFSIZE-nread,
                         &gotbytes);
          if(res< 0)
            /* EWOULDBLOCK */
            continue; /* go loop yourself */
          else if(res)
    
            keepon = FALSE;
          else if(gotbytes <= 0) {
            keepon = FALSE;
            error = SELECT_ERROR;
            failf(data, "Connection aborted");
          }
          else {
            /* we got a whole chunk of data, which can be anything from one
             * byte to a set of lines and possibly just a piece of the last
             * line */
            int i;
    
            nread += gotbytes;
            for(i = 0; i < gotbytes; ptr++, i++) {
              perline++; /* amount of bytes in this line so far */
              if(*ptr=='\n') {
                /* a newline is CRLF in ftp-talk, so the CR is ignored as
                   the line isn't really terminated until the LF comes */
    
                if('\r' == line_start[0]) {
                  /* end of headers */
                  keepon=FALSE;
                  break; /* breaks out of loop, not switch */
                }
    
    
                /* output debug output if that is requested */
                if(data->set.verbose)
                  Curl_debug(data, CURLINFO_HEADER_IN, line_start, perline);
    
    
                if(2 == sscanf(line_start, "HTTP/1.%d %d",
                               &subversion,
                               &httperror)) {
                  ;
                }
    
                perline=0; /* line starts over here */
                line_start = ptr+1;
              }
            }
          }
          break;
        } /* switch */
      } /* while there's buffer left and loop is requested */
    
      if(error)
    
        return CURLE_RECV_ERROR;
    
      if(200 != httperror) {
        if(407 == httperror)
          /* Added Nov 6 1998 */
          failf(data, "Proxy requires authorization!");
        else 
          failf(data, "Received error code %d from proxy", httperror);
    
        return CURLE_RECV_ERROR;
    
      }
    
      infof (data, "Proxy replied to CONNECT request\n");
      return CURLE_OK;
    }
    
    
    /*
     * HTTP stuff to do at connect-time.
     */
    
    CURLcode Curl_http_connect(struct connectdata *conn)
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    {
    
    
      data=conn->data;
    
      /* If we are not using a proxy and we want a secure connection,
       * perform SSL initialization & connection now.
       * If using a proxy with https, then we must tell the proxy to CONNECT
       * us to the host we want to talk to.  Only after the connect
       * has occured, can we start talking SSL
       */
    
         ((conn->protocol & PROT_HTTPS) || data->set.tunnel_thru_httpproxy)) {
    
        /* either HTTPS over proxy, OR explicitly asked for a tunnel */
        result = Curl_ConnectHTTPProxyTunnel(conn, conn->firstsocket,
                                             conn->hostname, conn->remote_port);
        if(CURLE_OK != result)
    
      }    
    
      if(conn->protocol & PROT_HTTPS) {
        /* now, perform the SSL initialization for this socket */
        result = Curl_SSLConnect(conn);
        if(result)
          return result;
    
      if(conn->bits.user_passwd && !data->state.this_is_a_follow) {
    
        /* Authorization: is requested, this is not a followed location, get the
           original host name */
    
        if (data->state.auth_host)
          /* Free to avoid leaking memory on multiple requests*/
          free(data->state.auth_host);
    
    
        data->state.auth_host = strdup(conn->hostname);
    
    CURLcode Curl_http_done(struct connectdata *conn)
    
      struct HTTP *http;
    
      data=conn->data;
    
      http=conn->proto.http;
    
      /* set the proper values (possibly modified on POST) */
      conn->fread = data->set.fread; /* restore */
      conn->fread_in = data->set.in; /* restore */
    
    
      if(http->send_buffer) {
        send_buffer *buff = http->send_buffer;
        
        free(buff->buffer);
        free(buff);
      }
    
    
      if(HTTPREQ_POST_FORM == data->set.httpreq) {
    
        conn->bytecount = http->readbytecount + http->writebytecount;
    
        Curl_formclean(http->sendit); /* Now free that whole lot */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
    
      else if(HTTPREQ_PUT == data->set.httpreq)
        conn->bytecount = http->readbytecount + http->writebytecount;
    
      if(0 == (http->readbytecount + conn->headerbytecount)) {
        /* nothing was read from the HTTP server, this can't be right
           so we return an error here */
    
        failf(data, "Empty reply from server");
    
    CURLcode Curl_http(struct connectdata *conn)
    
      struct SessionHandle *data=conn->data;
      char *buf = data->state.buffer; /* this is a short cut to the buffer */
    
      CURLcode result=CURLE_OK;
    
      struct HTTP *http;
      struct Cookie *co=NULL; /* no cookies from start */
      char *ppath = conn->ppath; /* three previous function arguments */
      char *host = conn->name;
    
      const char *te = ""; /* tranfer-encoding */
    
      if(!conn->proto.http) {
        /* Only allocate this struct if we don't already have it! */
    
        http = (struct HTTP *)malloc(sizeof(struct HTTP));
        if(!http)
          return CURLE_OUT_OF_MEMORY;
        memset(http, 0, sizeof(struct HTTP));
        conn->proto.http = http;
      }
    
      else
        http = conn->proto.http;
    
      /* We default to persistant connections */
      conn->bits.close = FALSE;
    
    
      if ( (conn->protocol&(PROT_HTTP|PROT_FTP)) &&
    
           data->set.upload) {
        data->set.httpreq = HTTPREQ_PUT;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
      
      /* The User-Agent string has been built in url.c already, because it might
         have been used in the proxy connect, but if we have got a header with
    
         the user-agent string specified, we erase the previously made string
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         here. */
    
      if(checkheaders(data, "User-Agent:") && conn->allocptr.uagent) {
        free(conn->allocptr.uagent);
        conn->allocptr.uagent=NULL;
    
      if((conn->bits.user_passwd) && !checkheaders(data, "Authorization:")) {
    
    
        /* To prevent the user+password to get sent to other than the original
           host due to a location-follow, we do some weirdo checks here */
    
        if(!data->state.this_is_a_follow ||
           !data->state.auth_host ||
    
           curl_strequal(data->state.auth_host, conn->hostname) ||
           data->set.http_disable_hostname_check_before_authentication) {
    
          sprintf(data->state.buffer, "%s:%s",
                  data->state.user, data->state.passwd);
          if(Curl_base64_encode(data->state.buffer, strlen(data->state.buffer),
    
            if(conn->allocptr.userpwd)
              free(conn->allocptr.userpwd);
            conn->allocptr.userpwd = aprintf( "Authorization: Basic %s\015\012",
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
    
      if((data->change.referer) && !checkheaders(data, "Referer:")) {
    
        if(conn->allocptr.ref)
          free(conn->allocptr.ref);
    
        conn->allocptr.ref = aprintf("Referer: %s\015\012", data->change.referer);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
    
      if(data->set.cookie && !checkheaders(data, "Cookie:")) {
    
        if(conn->allocptr.cookie)
          free(conn->allocptr.cookie);
    
        conn->allocptr.cookie = aprintf("Cookie: %s\015\012", data->set.cookie);
    
      if(!conn->bits.upload_chunky && (data->set.httpreq != HTTPREQ_GET)) {
        /* not a chunky transfer but data is to be sent */
        char *ptr = checkheaders(data, "Transfer-Encoding:");
        if(ptr) {
          /* Some kind of TE is requested, check if 'chunked' is chosen */
          if(Curl_compareheader(ptr, "Transfer-Encoding:", "chunked"))
            /* we have been told explicitly to upload chunky so deal with it! */
            conn->bits.upload_chunky = TRUE;
        }
      }
    
    
        /* RFC2616 section 4.4:
           Messages MUST NOT include both a Content-Length header field and a
           non-identity transfer-coding. If the message does include a non-
           identity transfer-coding, the Content-Length MUST be ignored. */
    
    
        if(!checkheaders(data, "Transfer-Encoding:")) {
          te = "Transfer-Encoding: chunked\r\n";
        }
    
        else {
          /* The "Transfer-Encoding:" header was already added. */
          te = "";
        }
    
      ptr = checkheaders(data, "Host:");
      if(ptr) {
        /* If we have a given custom Host: header, we extract the host name
           in order to possibly use it for cookie reasons later on. */
        char *start = ptr+strlen("Host:");
        char *ptr;
        while(*start && isspace((int)*start ))
          start++;
        ptr = start; /* start host-scanning here */
    
    
        /* scan through the string to find the end (space or colon) */
        while(*ptr && !isspace((int)*ptr) && !(':'==*ptr))
    
          ptr++;
        
        if(ptr != start) {
          int len=ptr-start;
          conn->allocptr.cookiehost = malloc(len+1);
          if(!conn->allocptr.cookiehost)
            return CURLE_OUT_OF_MEMORY;
          memcpy(conn->allocptr.cookiehost, start, len);
          conn->allocptr.cookiehost[len]=0;
        }
      }    
      else {
    
        /* if ptr_host is already set, it is almost OK since we only re-use
           connections to the very same host and port, but when we use a HTTP
           proxy we have a persistant connect and yet we must change the Host:
           header! */
    
        if(conn->allocptr.host)
          free(conn->allocptr.host);
    
        /* When building Host: headers, we must put the host name within
           [brackets] if the host name is a plain IPv6-address. RFC2732-style. */
           
    
        if(((conn->protocol&PROT_HTTPS) && (conn->remote_port == PORT_HTTPS)) ||
           (!(conn->protocol&PROT_HTTPS) && (conn->remote_port == PORT_HTTP)) )
    
          /* If (HTTPS on port 443) OR (non-HTTPS on port 80) then don't include
             the port number in the host string */
    
          conn->allocptr.host = aprintf("Host: %s%s%s\r\n",
                                        conn->bits.ipv6_ip?"[":"",
                                        host,
                                        conn->bits.ipv6_ip?"]":"");
    
          conn->allocptr.host = aprintf("Host: %s%s%s:%d\r\n",
                                        conn->bits.ipv6_ip?"[":"",
                                        host,
                                        conn->bits.ipv6_ip?"]":"",
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
      if(data->cookies) {
        co = Curl_cookie_getlist(data->cookies,
                                 conn->allocptr.cookiehost?
                                 conn->allocptr.cookiehost:host, ppath,
                                 (bool)(conn->protocol&PROT_HTTPS?TRUE:FALSE));
      }
    
      if (data->change.proxy && *data->change.proxy &&
          !data->set.tunnel_thru_httpproxy &&
          !(conn->protocol&PROT_HTTPS))  {
        /* The path sent to the proxy is in fact the entire URL */
        ppath = data->change.url;
      }
      if(HTTPREQ_POST_FORM == data->set.httpreq) {
        /* we must build the whole darned post sequence first, so that we have
           a size of the whole shebang before we start to send it */
         result = Curl_getFormData(&http->sendit, data->set.httppost,
                                   &http->postsize);
         if(CURLE_OK != result) {
           /* Curl_getFormData() doesn't use failf() */
           failf(data, "failed creating formpost data");
           return result;
         }
      }
    
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      if(!checkheaders(data, "Pragma:"))
    
        http->p_pragma = "Pragma: no-cache\r\n";
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      if(!checkheaders(data, "Accept:"))
    
        http->p_accept = "Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*\r\n";
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
      if(( (HTTPREQ_POST == data->set.httpreq) ||
           (HTTPREQ_POST_FORM == data->set.httpreq) ||
           (HTTPREQ_PUT == data->set.httpreq) ) &&
    
        /**********************************************************************
         * Resuming upload in HTTP means that we PUT or POST and that we have
         * got a resume_from value set. The resume value has already created
         * a Range: header that will be passed along. We need to "fast forward"
         * the file the given number of bytes and decrease the assume upload
         * file size before we continue this venture in the dark lands of HTTP.
         *********************************************************************/
       
    
          /*
           * This is meant to get the size of the present remote-file by itself.
           * We don't support this now. Bail out!
           */
    
          /* do we still game? */
          int passed=0;
    
          /* Now, let's read off the proper amount of bytes from the
             input. If we knew it was a proper file we could've just
             fseek()ed but we only have a stream here */
          do {
    
            int readthisamountnow = (conn->resume_from - passed);
    
            int actuallyread;
    
            if(readthisamountnow > BUFSIZE)
              readthisamountnow = BUFSIZE;
    
            actuallyread =
    
              data->set.fread(data->state.buffer, 1, readthisamountnow,
                              data->set.in);
    
    
            passed += actuallyread;
            if(actuallyread != readthisamountnow) {
    
              failf(data, "Could only read %d bytes from the input",
    
                    passed);
              return CURLE_READ_ERROR;
            }
    
          } while(passed != conn->resume_from); /* loop until done */
    
    
          /* now, decrease the size of the read */
    
          if(data->set.infilesize>0) {
            data->set.infilesize -= conn->resume_from;
    
              failf(data, "File already completely uploaded");
    
              return CURLE_PARTIAL_FILE;
            }
          }
          /* we've passed, proceed as normal */
        }
      }
    
        /*
         * A range is selected. We use different headers whether we're downloading
         * or uploading and we always let customized headers override our internal
         * ones if any such are specified.
         */
    
        if((data->set.httpreq == HTTPREQ_GET) &&
    
          /* if a line like this was already allocated, free the previous one */
          if(conn->allocptr.rangeline)
            free(conn->allocptr.rangeline);
    
          conn->allocptr.rangeline = aprintf("Range: bytes=%s\r\n", conn->range);
    
        else if((data->set.httpreq != HTTPREQ_GET) &&
    
            /* This is because "resume" was selected */
    
            long total_expected_size= conn->resume_from + data->set.infilesize;
    
            conn->allocptr.rangeline = aprintf("Content-Range: bytes %s%ld/%ld\r\n",
    
                                          total_expected_size);
          }
          else {
            /* Range was selected and then we just pass the incoming range and 
               append total size */
    
            conn->allocptr.rangeline = aprintf("Content-Range: bytes %s/%d\r\n",
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      do {
    
        /* Use 1.1 unless the use specificly asked for 1.0 */
        const char *httpstring=
          data->set.httpversion==CURL_HTTP_VERSION_1_0?"1.0":"1.1";
    
    
        struct curl_slist *headers=data->set.headers;
    
    
        /* initialize a dynamic send-buffer */
        req_buffer = add_buffer_init();
    
        /* add the main request stuff */
        add_bufferf(req_buffer,
                    "%s " /* GET/HEAD/POST/PUT */
    
                    "%s" /* proxyuserpwd */
                    "%s" /* userpwd */
                    "%s" /* range */
                    "%s" /* user agent */
                    "%s" /* cookie */
                    "%s" /* host */
                    "%s" /* pragma */
                    "%s" /* accept */
    
                    "%s" /* accept-encoding */
    
                    "%s" /* referer */
                    "%s",/* transfer-encoding */
    
                    data->set.customrequest?data->set.customrequest:
                    (data->set.no_body?"HEAD":
                     ((HTTPREQ_POST == data->set.httpreq) ||
                      (HTTPREQ_POST_FORM == data->set.httpreq))?"POST":
                     (HTTPREQ_PUT == data->set.httpreq)?"PUT":"GET"),
    
                    (conn->bits.proxy_user_passwd &&
                     conn->allocptr.proxyuserpwd)?conn->allocptr.proxyuserpwd:"",
                    (conn->bits.user_passwd && conn->allocptr.userpwd)?
                    conn->allocptr.userpwd:"",
    
                    (conn->bits.use_range && conn->allocptr.rangeline)?
    
                    (data->set.useragent && *data->set.useragent && conn->allocptr.uagent)?
    
                    (conn->allocptr.cookie?conn->allocptr.cookie:""), /* Cookie: <data> */
                    (conn->allocptr.host?conn->allocptr.host:""), /* Host: host */
    
                    http->p_pragma?http->p_pragma:"",
                    http->p_accept?http->p_accept:"",
    
                    (data->set.encoding && *data->set.encoding && conn->allocptr.accept_encoding)?
                    conn->allocptr.accept_encoding:"", /* 08/28/02 jhrg */
    
                    (data->change.referer && conn->allocptr.ref)?conn->allocptr.ref:"" /* Referer: <data> <CRLF> */,
                    te
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
        if(co) {
          int count=0;
    
          struct Cookie *store=co;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          /* now loop through all cookies that matched */
          while(co) {
    
            if(co->value && strlen(co->value)) {
              if(0 == count) {
    
                add_bufferf(req_buffer, "Cookie: ");
    
              add_bufferf(req_buffer,
                          "%s%s=%s", count?"; ":"", co->name, co->value);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
            }
            co = co->next; /* next cookie please */
          }
          if(count) {
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          }
    
          Curl_cookie_freelist(store); /* free the cookie list */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          co=NULL;
        }
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          struct tm *thistime;
    
    
          /* Phil Karn (Fri, 13 Apr 2001) pointed out that the If-Modified-Since
           * header family should have their times set in GMT as RFC2616 defines:
           * "All HTTP date/time stamps MUST be represented in Greenwich Mean Time
           * (GMT), without exception. For the purposes of HTTP, GMT is exactly
           * equal to UTC (Coordinated Universal Time)." (see page 20 of RFC2616).
           */
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #ifdef HAVE_GMTIME_R
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          /* thread-safe version */
          struct tm keeptime;
    
          thistime = (struct tm *)gmtime_r(&data->set.timevalue, &keeptime);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #else
    
          thistime = gmtime(&data->set.timevalue);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #endif
          if(NULL == thistime) {
            failf(data, "localtime() failed!");
            return CURLE_OUT_OF_MEMORY;
          }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    #ifdef HAVE_STRFTIME
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          /* format: "Tue, 15 Nov 1994 12:45:26 GMT" */
    
          strftime(buf, BUFSIZE-1, "%a, %d %b %Y %H:%M:%S GMT", thistime);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #else
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          /* TODO: Right, we *could* write a replacement here */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          strcpy(buf, "no strftime() support");
    #endif
    
          case CURL_TIMECOND_IFMODSINCE:
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          default:
    
            add_bufferf(req_buffer,
                        "If-Modified-Since: %s\r\n", buf);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
            break;
    
          case CURL_TIMECOND_IFUNMODSINCE: