Skip to content
Snippets Groups Projects
url.c 152 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*
     * Helpers for IDNA convertions.
     */
    #ifdef USE_LIBIDN
    
    static bool is_ASCII_name(const char *hostname)
    
    {
      const unsigned char *ch = (const unsigned char*)hostname;
    
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
    
    /*
     * Check if characters in hostname is allowed in Top Level Domain.
     */
    
    static bool tld_check_name(struct SessionHandle *data,
                               const char *ace_hostname)
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
    {
      size_t err_pos;
      char *uc_name = NULL;
      int rc;
    
    Yang Tse's avatar
    Yang Tse committed
    #ifndef CURL_DISABLE_VERBOSE_STRINGS
    
      const char *tld_errmsg = "<no msg>";
    
    Yang Tse's avatar
    Yang Tse committed
    #else
      (void)data;
    #endif
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
    
      /* Convert (and downcase) ACE-name back into locale's character set */
      rc = idna_to_unicode_lzlz(ace_hostname, &uc_name, 0);
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
        return (FALSE);
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
    
      rc = tld_check_lz(uc_name, &err_pos, NULL);
    
    Yang Tse's avatar
    Yang Tse committed
    #ifndef CURL_DISABLE_VERBOSE_STRINGS
    
        tld_errmsg = tld_strerror((Tld_rc)rc);
    
    Yang Tse's avatar
    Yang Tse committed
        infof(data, "WARNING: %s; pos %u = `%c'/0x%02X\n",
              tld_errmsg, err_pos, uc_name[err_pos],
              uc_name[err_pos] & 255);
    
    Yang Tse's avatar
    Yang Tse committed
        infof(data, "WARNING: TLD check for %s failed; %s\n",
              uc_name, tld_errmsg);
    #endif /* CURL_DISABLE_VERBOSE_STRINGS */
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
         idn_free(uc_name);
    
    Yang Tse's avatar
    Yang Tse committed
      return (bool)(rc == TLD_SUCCESS);
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
    }
    
    /*
     * Perform any necessary IDN conversion of hostname
     */
    
    static void fix_hostname(struct SessionHandle *data,
                             struct connectdata *conn, struct hostname *host)
    
    Yang Tse's avatar
    Yang Tse committed
    #ifndef USE_LIBIDN
      (void)data;
      (void)conn;
    #elif defined(CURL_DISABLE_VERBOSE_STRINGS)
      (void)conn;
    #endif
    
    
      /* set the name we use to display the host name */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      host->dispname = host->name;
    
    
    #ifdef USE_LIBIDN
      /*************************************************************
       * Check name for non-ASCII and convert hostname to ACE form.
       *************************************************************/
    
          stringprep_check_version(LIBIDN_REQUIRED_VERSION)) {
    
        char *ace_hostname = NULL;
        int rc = idna_to_ascii_lz(host->name, &ace_hostname, 0);
        infof (data, "Input domain encoded as `%s'\n",
               stringprep_locale_charset ());
    
          infof(data, "Failed to convert %s to ACE; %s\n",
                host->name, Curl_idn_strerror(conn,rc));
    
          /* tld_check_name() displays a warning if the host name contains
             "illegal" characters for this TLD */
          (void)tld_check_name(data, ace_hostname);
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
    
    
          host->encalloc = ace_hostname;
          /* change the name pointer to point to the encoded hostname */
          host->name = host->encalloc;
        }
      }
    
    Gisle Vanem's avatar
    Gisle Vanem committed
    #endif
    
    /*
     * Allocate and initialize a new connectdata object.
     */
    static struct connectdata *allocate_conn(void)
    {
      struct connectdata *conn;
    
    
      conn = calloc(1, sizeof(struct connectdata));
    
      if(!conn)
        return NULL;
    
      conn->handler = &Curl_handler_dummy;  /* Be sure we have a handler defined
                                               already from start to avoid NULL
                                               situations and checks */
    
      /* and we setup a few fields in case we end up actually using this struct */
    
      conn->sock[FIRSTSOCKET] = CURL_SOCKET_BAD;     /* no file descriptor */
      conn->sock[SECONDARYSOCKET] = CURL_SOCKET_BAD; /* no file descriptor */
      conn->connectindex = -1;    /* no index */
    
      /* Default protocol-independent behavior doesn't support persistent
         connections, so we set this to force-close. Protocols that support
         this need to set this to FALSE in their "curl_do" functions. */
      conn->bits.close = TRUE;
    
      /* Store creation time to help future close decision making */
      conn->created = Curl_tvnow();
    
      return conn;
    }
    
    
    /*
     * Parse URL and fill in the relevant members of the connection struct.
    
    static CURLcode ParseURLAndFillConnection(struct SessionHandle *data,
                                              struct connectdata *conn)
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      /*************************************************************
       * Parse the URL.
       *
       * We need to parse the url even when using the proxy, because we will need
       * the hostname and port in case we are trying to SSL connect through the
       * proxy -- and we don't know if we will need to use SSL until we parse the
       * url ...
       ************************************************************/
    
      if((2 == sscanf(data->change.url, "%15[^:]:%[^\n]",
    
                      path)) && Curl_raw_equal(conn->protostr, "file")) {
    
        if(path[0] == '/' && path[1] == '/') {
    
          /* Allow omitted hostname (e.g. file:/<path>).  This is not strictly
           * speaking a valid file: URL by RFC 1738, but treating file:/<path> as
           * file://localhost/<path> is similar to how other schemes treat missing
           * hostnames.  See RFC 1808. */
    
          /* This cannot be done with strcpy() in a portable manner, since the
             memory areas overlap! */
    
          memmove(path, path + 2, strlen(path + 2)+1);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        /*
         * we deal with file://<host>/<path> differently since it supports no
         * hostname other than "localhost" and "127.0.0.1", which is unique among
         * the URL protocols specified in RFC 1738
         */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          /* the URL included a host name, we ignore host names in file:// URLs
             as the standards don't define what to do with them */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          if(ptr) {
            /* there was a slash present
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
               RFC1738 (section 3.1, page 5) says:
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
               The rest of the locator consists of data specific to the scheme,
               and is known as the "url-path". It supplies the details of how the
               specified resource can be accessed. Note that the "/" between the
               host (or port) and the url-path is NOT part of the url-path.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
               As most agents use file://localhost/foo to get '/foo' although the
    
               slash preceding foo is a separator and not a slash for the path,
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
               a URL as file://localhost//foo must be valid as well, to refer to
               the same file with an absolute path.
            */
    
            if(ptr[1] && ('/' == ptr[1]))
              /* if there was two slashes, we skip the first one as that is then
                 used truly as a separator */
    
            /* This cannot be made with strcpy, as the memory chunks overlap! */
    
        strcpy(conn->protostr, "file"); /* store protocol string lowercase */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          /*
           * The URL was badly formatted, let's try the browser-style _without_
           * protocol specified like 'http://'.
           */
    
          if(1 > (rc = sscanf(data->change.url, "%[^\n/]%[^\n]",
                              conn->host.name, path)) ) {
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
            /*
             * We couldn't even get this format.
    
             * djgpp 2.04 has a sscanf() bug where 'conn->host.name' is
             * assigned, but the return value is EOF!
    
    #if defined(__DJGPP__) && (DJGPP_MINOR == 4)
            if (!(rc == -1 && *conn->host.name))
    #endif
            {
              failf(data, "<url> malformed");
              return CURLE_URL_MALFORMAT;
            }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
          /*
           * Since there was no protocol part specified, we guess what protocol it
           * is based on the first letters of the server name.
           */
    
    
          /* Note: if you add a new protocol, please update the list in
           * lib/version.c too! */
    
    
          if(checkprefix("FTP.", conn->host.name))
            strcpy(conn->protostr, "ftp");
    
          else if(checkprefix("DICT.", conn->host.name))
    
            strcpy(conn->protostr, "DICT");
    
          else if(checkprefix("LDAP.", conn->host.name))
    
            strcpy(conn->protostr, "LDAP");
    
            strcpy(conn->protostr, "http");
    
          }
    
          conn->protocol |= PROT_MISSING; /* not given in URL */
        }
    
      /* We search for '?' in the host name (but only on the right side of a
       * @-letter to allow ?-letters in username and password) to handle things
       * like http://example.com?param= (notice the missing '/').
       */
      at = strchr(conn->host.name, '@');
      if(at)
        tmp = strchr(at+1, '?');
      else
        tmp = strchr(conn->host.name, '?');
    
      if(tmp) {
    
        /* We must insert a slash before the '?'-letter in the URL. If the URL had
           a slash after the '?', that is where the path currently begins and the
           '?string' is still part of the host name.
    
           We must move the trailing part from the host name and put it first in
           the path. And have it all prefixed with a slash.
        */
    
        size_t hostlen = strlen(tmp);
    
    
        /* move the existing path plus the zero byte forward, to make room for
           the host-name part */
    
        memmove(path+hostlen+1, path, pathlen+1);
    
    
         /* now copy the trailing host part in front of the existing path */
    
        path[0]='/'; /* prepend the missing slash */
    
        *tmp=0; /* now cut off the hostname at the ? */
      }
    
        /* if there's no path set, use a single slash */
    
      /* If the URL is malformatted (missing a '/' after hostname before path) we
       * insert a slash here. The only letter except '/' we accept to start a path
       * is '?'.
       */
    
        /* We need this function to deal with overlapping memory areas. We know
           that the memory area 'path' points to is 'urllen' bytes big and that
    
           is bigger than the path. Use +1 to move the zero byte too. */
    
        memmove(&path[1], path, strlen(path)+1);
        path[0] = '/';
    
        /* This looks like an IPv6 address literal.  See if there is an address
           scope.  */
        char *percent = strstr (conn->host.name, "%25");
        if (percent) {
          char *endp;
    
    Yang Tse's avatar
    Yang Tse committed
          unsigned long scope = strtoul (percent + 3, &endp, 10);
    
          if (*endp == ']') {
            /* The address scope was well formed.  Knock it out of the hostname.  */
    
            memmove(percent, endp, strlen(endp)+1);
            if (!data->state.this_is_a_follow)
              /* Don't honour a scope given in a Location: header */
    
    Yang Tse's avatar
    Yang Tse committed
              conn->scope = (unsigned int)scope;
    
          } else
            infof(data, "Invalid IPv6 address format\n");
    
        }
      }
    
      if (data->set.scope)
        /* Override any scope that was set above.  */
        conn->scope = data->set.scope;
    
    
      /*
       * So if the URL was A://B/C,
       *   conn->protostr is A
    
      return CURLE_OK;
    }
    
    static void llist_dtor(void *user, void *element)
    {
      (void)user;
      (void)element;
      /* Do nothing */
    }
    
    
    /*
     * If we're doing a resumed transfer, we need to setup our stuff
     * properly.
     */
    
    static CURLcode setup_range(struct SessionHandle *data)
    {
    
      struct UrlState *s = &data->state;
      s->resume_from = data->set.set_resume_from;
      if(s->resume_from || data->set.str[STRING_SET_RANGE]) {
        if(s->rangestringalloc)
          free(s->range);
    
        if(s->resume_from)
    
          s->range = aprintf("%" FORMAT_OFF_TU "-", s->resume_from);
    
          s->range = strdup(data->set.str[STRING_SET_RANGE]);
    
        s->rangestringalloc = (bool)(s->range?TRUE:FALSE);
    
          return CURLE_OUT_OF_MEMORY;
    
        /* tell ourselves to fetch this range */
    
        s->use_range = TRUE;        /* enable range download */
    
        s->use_range = FALSE; /* disable range download */
    
    /***************************************************************
    * Setup connection internals specific to the requested protocol
    ***************************************************************/
    static CURLcode setup_connection_internals(struct SessionHandle *data,
    
      const struct Curl_handler * const * pp;
    
      const struct Curl_handler * p;
      CURLcode result;
    
      conn->socktype = SOCK_STREAM; /* most of them are TCP streams */
    
      for (pp = protocols; (p = *pp) != NULL; pp++)
    
        if(Curl_raw_equal(p->scheme, conn->protostr)) {
    
          /* Protocol found in table. Check if allowed */
          if(!(data->set.allowed_protocols & p->protocol))
            /* nope, get out */
            break;
    
          /* it is allowed for "normal" request, now do an extra check if this is
             the result of a redirect */
          if(data->state.this_is_a_follow &&
             !(data->set.redir_protocols & p->protocol))
            /* nope, get out */
            break;
    
          /* Perform setup complement if some. */
    
            result = (*p->setup_connection)(conn);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
            p = conn->handler;              /* May have changed. */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          }
    
          conn->remote_port = (unsigned short)p->defport;
    
          conn->protocol |= p->protocol;
          return CURLE_OK;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      /* The protocol was not found in the table, but we don't have to assign it
         to anything since it is already assigned to a dummy-struct in the
    
         create_conn() function when the connectdata struct is allocated. */
    
      failf(data, "Protocol %s not supported or disabled in " LIBCURL_NAME,
            conn->protostr);
      return CURLE_UNSUPPORTED_PROTOCOL;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    /****************************************************************
    * Checks if the host is in the noproxy list. returns true if it matches
    * and therefore the proxy should NOT be used.
    ****************************************************************/
    static bool check_noproxy(const char* name, const char* no_proxy)
    {
      /* no_proxy=domain1.dom,host.domain2.dom
       *   (a comma-separated list of hosts which should
       *   not be proxied, or an asterisk to override
       *   all proxy variables)
       */
      size_t tok_start;
      size_t tok_end;
      const char* separator = ", ";
      size_t no_proxy_len;
      size_t namelen;
      char *endptr;
    
      if(no_proxy && no_proxy[0]) {
        if(Curl_raw_equal("*", no_proxy)) {
          return TRUE;
        }
    
        /* NO_PROXY was specified and it wasn't just an asterisk */
    
        no_proxy_len = strlen(no_proxy);
        endptr = strchr(name, ':');
        if(endptr)
          namelen = endptr - name;
        else
          namelen = strlen(name);
    
        tok_start = 0;
        for (tok_start = 0; tok_start < no_proxy_len; tok_start = tok_end + 1) {
          while (tok_start < no_proxy_len &&
                 strchr(separator, no_proxy[tok_start]) != NULL) {
            /* Look for the beginning of the token. */
            ++tok_start;
          }
    
          if(tok_start == no_proxy_len)
            break; /* It was all trailing separator chars, no more tokens. */
    
          for (tok_end = tok_start; tok_end < no_proxy_len &&
                 strchr(separator, no_proxy[tok_end]) == NULL; ++tok_end) {
            /* Look for the end of the token. */
          }
    
          /* To match previous behaviour, where it was necessary to specify
           * ".local.com" to prevent matching "notlocal.com", we will leave
           * the '.' off.
           */
          if(no_proxy[tok_start] == '.')
            ++tok_start;
    
          if((tok_end - tok_start) <= namelen) {
            /* Match the last part of the name to the domain we are checking. */
            const char *checkn = name + namelen - (tok_end - tok_start);
            if(Curl_raw_nequal(no_proxy + tok_start, checkn, tok_end - tok_start)) {
              if((tok_end - tok_start) == namelen || *(checkn - 1) == '.') {
                /* We either have an exact match, or the previous character is a .
                 * so it is within the same domain, so no proxy for this host.
                 */
                return TRUE;
              }
            }
          } /* if((tok_end - tok_start) <= namelen) */
        } /* for (tok_start = 0; tok_start < no_proxy_len;
             tok_start = tok_end + 1) */
      } /* NO_PROXY was specified and it wasn't just an asterisk */
    
      return FALSE;
    }
    
    
    /****************************************************************
    * Detect what (if any) proxy to use. Remember that this selects a host
    * name and is not limited to HTTP proxies only.
    * The returned pointer must be freed by the caller (unless NULL)
    ****************************************************************/
    static char *detect_proxy(struct connectdata *conn)
    {
      char *proxy = NULL;
    
    #ifndef CURL_DISABLE_HTTP
      /* If proxy was not specified, we check for default proxy environment
       * variables, to enable i.e Lynx compliance:
       *
       * http_proxy=http://some.server.dom:port/
       * https_proxy=http://some.server.dom:port/
       * ftp_proxy=http://some.server.dom:port/
       * no_proxy=domain1.dom,host.domain2.dom
       *   (a comma-separated list of hosts which should
       *   not be proxied, or an asterisk to override
       *   all proxy variables)
       * all_proxy=http://some.server.dom:port/
       *   (seems to exist for the CERN www lib. Probably
       *   the first to check for.)
       *
       * For compatibility, the all-uppercase versions of these variables are
       * checked if the lowercase versions don't exist.
       */
      char *no_proxy=NULL;
      char proxy_env[128];
    
      no_proxy=curl_getenv("no_proxy");
      if(!no_proxy)
        no_proxy=curl_getenv("NO_PROXY");
    
    
      if(!check_noproxy(conn->host.name, no_proxy)) {
        /* It was not listed as without proxy */
        char *protop = conn->protostr;
        char *envp = proxy_env;
        char *prox;
    
        /* Now, build <protocol>_proxy and check for such a one to use */
        while(*protop)
          *envp++ = (char)tolower((int)*protop++);
    
        /* read the protocol proxy: */
        prox=curl_getenv(proxy_env);
    
        /*
         * We don't try the uppercase version of HTTP_PROXY because of
         * security reasons:
         *
         * When curl is used in a webserver application
         * environment (cgi or php), this environment variable can
         * be controlled by the web server user by setting the
         * http header 'Proxy:' to some value.
         *
         * This can cause 'internal' http/ftp requests to be
         * arbitrarily redirected by any external attacker.
         */
        if(!prox && !Curl_raw_equal("http_proxy", proxy_env)) {
          /* There was no lowercase variable, try the uppercase version: */
          Curl_strntoupper(proxy_env, proxy_env, sizeof(proxy_env));
          prox=curl_getenv(proxy_env);
        }
    
        if(prox && *prox) { /* don't count "" strings */
          proxy = prox; /* use this */
        }
        else {
          proxy = curl_getenv("all_proxy"); /* default proxy to use */
          if(!proxy)
            proxy=curl_getenv("ALL_PROXY");
        }
      } /* if(!check_noproxy(conn->host.name, no_proxy)) - it wasn't specified
           non-proxy */
    
    
    #else /* !CURL_DISABLE_HTTP */
    
      (void)conn;
    
    /*
     * If this is supposed to use a proxy, we need to figure out the proxy
    
     * host name, so that we can re-use an existing connection
     * that may exist registered to the same proxy host.
     * proxy will be freed before this function returns.
     */
    static CURLcode parse_proxy(struct SessionHandle *data,
                                struct connectdata *conn, char *proxy)
    {
      char *prox_portno;
      char *endofprot;
    
      /* We use 'proxyptr' to point to the proxy name from now on... */
      char *proxyptr=proxy;
      char *portptr;
      char *atsign;
    
      /* We do the proxy host string parsing here. We want the host name and the
       * port name. Accept a protocol:// prefix, even though it should just be
       * ignored.
       */
    
      /* Skip the protocol part if present */
      endofprot=strstr(proxyptr, "://");
      if(endofprot)
        proxyptr = endofprot+3;
    
      /* Is there a username and password given in this proxy url? */
      atsign = strchr(proxyptr, '@');
      if(atsign) {
        char proxyuser[MAX_CURL_USER_LENGTH];
        char proxypasswd[MAX_CURL_PASSWORD_LENGTH];
        proxypasswd[0] = 0;
    
        if(1 <= sscanf(proxyptr,
    
                       "%" MAX_CURL_USER_LENGTH_TXT"[^:@]:"
    
                       "%" MAX_CURL_PASSWORD_LENGTH_TXT "[^@]",
                       proxyuser, proxypasswd)) {
    
          CURLcode res = CURLE_OK;
    
          /* found user and password, rip them out.  note that we are
    
             unescaping them, as there is otherwise no way to have a
             username or password with reserved characters like ':' in
             them. */
    
          Curl_safefree(conn->proxyuser);
          conn->proxyuser = curl_easy_unescape(data, proxyuser, 0, NULL);
    
          if(!conn->proxyuser)
    
            Curl_safefree(conn->proxypasswd);
            conn->proxypasswd = curl_easy_unescape(data, proxypasswd, 0, NULL);
    
            if(!conn->proxypasswd)
              res = CURLE_OUT_OF_MEMORY;
    
            conn->bits.proxy_user_passwd = TRUE; /* enable it */
            atsign = strdup(atsign+1); /* the right side of the @-letter */
    
            if(atsign) {
              free(proxy); /* free the former proxy string */
              proxy = proxyptr = atsign; /* now use this instead */
            }
            else
              res = CURLE_OUT_OF_MEMORY;
    
            free(proxy); /* free the allocated proxy string */
            return res;
    
      }
    
      /* start scanning for port number at this point */
      portptr = proxyptr;
    
      /* detect and extract RFC2732-style IPv6-addresses */
      if(*proxyptr == '[') {
        char *ptr = ++proxyptr; /* advance beyond the initial bracket */
    
        while(*ptr && (ISXDIGIT(*ptr) || (*ptr == ':') || (*ptr == '%') || (*ptr == '.')))
    
          ptr++;
        if(*ptr == ']') {
          /* yeps, it ended nicely with a bracket as well */
    
          *ptr++ = 0;
        } else
          infof(data, "Invalid IPv6 address format\n");
        portptr = ptr;
    
        /* Note that if this didn't end with a bracket, we still advanced the
         * proxyptr first, but I can't see anything wrong with that as no host
         * name nor a numeric can legally start with a bracket.
         */
      }
    
      /* Get port number off proxy.server.com:1080 */
      prox_portno = strchr(portptr, ':');
    
        *prox_portno = 0x0; /* cut off number from host name */
        prox_portno ++;
        /* now set the local port number */
        conn->port = atoi(prox_portno);
      }
    
      else {
        /* without a port number after the host name, some people seem to use
           a slash so we strip everything from the first slash */
        atsign = strchr(proxyptr, '/');
        if(atsign)
          *atsign = 0x0; /* cut off path part from host name */
    
        if(data->set.proxyport)
          /* None given in the proxy string, then get the default one if it is
             given */
          conn->port = data->set.proxyport;
    
      }
    
      /* now, clone the cleaned proxy host name */
      conn->proxy.rawalloc = strdup(proxyptr);
      conn->proxy.name = conn->proxy.rawalloc;
    
      free(proxy);
      if(!conn->proxy.rawalloc)
        return CURLE_OUT_OF_MEMORY;
    
      return CURLE_OK;
    }
    
    
    /*
     * Extract the user and password from the authentication string
     */
    
    static CURLcode parse_proxy_auth(struct SessionHandle *data,
                                     struct connectdata *conn)
    
    {
      char proxyuser[MAX_CURL_USER_LENGTH]="";
      char proxypasswd[MAX_CURL_PASSWORD_LENGTH]="";
    
    
      if(data->set.str[STRING_PROXYUSERNAME] != NULL) {
    
        strncpy(proxyuser, data->set.str[STRING_PROXYUSERNAME],
                MAX_CURL_USER_LENGTH);
    
        proxyuser[MAX_CURL_USER_LENGTH-1] = '\0';   /*To be on safe side*/
      }
      if(data->set.str[STRING_PROXYPASSWORD] != NULL) {
        strncpy(proxypasswd, data->set.str[STRING_PROXYPASSWORD],
                MAX_CURL_PASSWORD_LENGTH);
        proxypasswd[MAX_CURL_PASSWORD_LENGTH-1] = '\0'; /*To be on safe side*/
      }
    
    
      conn->proxyuser = curl_easy_unescape(data, proxyuser, 0, NULL);
      if(!conn->proxyuser)
        return CURLE_OUT_OF_MEMORY;
    
      conn->proxypasswd = curl_easy_unescape(data, proxypasswd, 0, NULL);
      if(!conn->proxypasswd)
        return CURLE_OUT_OF_MEMORY;
    
      return CURLE_OK;
    }
    
     * Parse a user name and password in the URL and strip it out of the host name
    
     * Inputs: data->set.use_netrc (CURLOPT_NETRC)
     *         conn->host.name
    
     * Outputs: (almost :- all currently undefined)
     *          conn->bits.user_passwd  - non-zero if non-default passwords exist
     *          user                    - non-zero length if defined
     *          passwd                  -   ditto
     *          conn->host.name         - remove user name and password
    
    static CURLcode parse_url_userpass(struct SessionHandle *data,
                                       struct connectdata *conn,
                                       char *user, char *passwd)
    
      /* At this point, we're hoping all the other special cases have
       * been taken care of, so conn->host.name is at most
       *    [user[:password]]@]hostname
       *
       * We need somewhere to put the embedded details, so do that first.
       */
    
      user[0] =0;   /* to make everything well-defined */
      passwd[0]=0;
    
      if(conn->protocol & (PROT_FTP|PROT_HTTP|PROT_SCP|PROT_SFTP)) {
        /* This is a FTP, HTTP, SCP or SFTP URL, we will now try to extract the
         * possible user+password pair in a string like:
         * ftp://user:password@ftp.my.site:8021/README */
        char *ptr=strchr(conn->host.name, '@');
        char *userpass = conn->host.name;
        if(ptr != NULL) {
          /* there's a user+password given here, to the left of the @ */
    
          /* So the hostname is sane.  Only bother interpreting the
           * results if we could care.  It could still be wasted
           * work because it might be overtaken by the programmatically
           * set user/passwd, but doing that first adds more cases here :-(
           */
    
          if(data->set.use_netrc != CURL_NETRC_REQUIRED) {
            /* We could use the one in the URL */
    
            conn->bits.user_passwd = 1; /* enable user+password */
    
            if(*userpass != ':') {
              /* the name is given, get user+password */
              sscanf(userpass, "%" MAX_CURL_USER_LENGTH_TXT "[^:@]:"
                     "%" MAX_CURL_PASSWORD_LENGTH_TXT "[^@]",
                     user, passwd);
            }
            else
              /* no name given, get the password only */
              sscanf(userpass, ":%" MAX_CURL_PASSWORD_LENGTH_TXT "[^@]", passwd);
    
            if(user[0]) {
              char *newname=curl_easy_unescape(data, user, 0, NULL);
              if(!newname)
                return CURLE_OUT_OF_MEMORY;
              if(strlen(newname) < MAX_CURL_USER_LENGTH)
                strcpy(user, newname);
    
              /* if the new name is longer than accepted, then just use
                 the unconverted name, it'll be wrong but what the heck */
              free(newname);
            }
            if(passwd[0]) {
              /* we have a password found in the URL, decode it! */
              char *newpasswd=curl_easy_unescape(data, passwd, 0, NULL);
              if(!newpasswd)
                return CURLE_OUT_OF_MEMORY;
              if(strlen(newpasswd) < MAX_CURL_PASSWORD_LENGTH)
                strcpy(passwd, newpasswd);
    
    /*************************************************************
     * Figure out the remote port number and fix it in the URL
     *
     * No matter if we use a proxy or not, we have to figure out the remote
     * port number of various reasons.
     *
     * To be able to detect port number flawlessly, we must not confuse them
     * IPv6-specified addresses in the [0::1] style. (RFC2732)
     *
     * The conn->host.name is currently [user:passwd@]host[:port] where host
     * could be a hostname, IPv4 address or IPv6 address.
     *
     * The port number embedded in the URL is replaced, if necessary.
     *************************************************************/
    static CURLcode parse_remote_port(struct SessionHandle *data,
                                      struct connectdata *conn)
    {
      char *portptr;
      char endbracket;
    
      /* Note that at this point, the IPv6 address cannot contain any scope
         suffix as that has already been removed in the ParseURLAndFillConnection()
         function */
      if((1 == sscanf(conn->host.name, "[%*45[0123456789abcdefABCDEF:.]%c",
    
         (']' == endbracket)) {
        /* this is a RFC2732-style specified IP-address */
        conn->bits.ipv6_ip = TRUE;
    
        conn->host.name++; /* skip over the starting bracket */
        portptr = strchr(conn->host.name, ']');
        *portptr++ = 0; /* zero terminate, killing the bracket */
        if(':' != *portptr)
          portptr = NULL; /* no port number available */
      }
      else
        portptr = strrchr(conn->host.name, ':');
    
      if(data->set.use_port && data->state.allow_port) {
        /* if set, we use this and ignore the port possibly given in the URL */
        conn->remote_port = (unsigned short)data->set.use_port;
        if(portptr)
          *portptr = '\0'; /* cut off the name there anyway - if there was a port
                          number - since the port number is to be ignored! */
        if(conn->bits.httpproxy) {
          /* we need to create new URL with the new port number */
          char *url;
    
          bool isftp = (bool)(Curl_raw_equal("ftp", conn->protostr) ||
                              Curl_raw_equal("ftps", conn->protostr));
    
          /*
           * This synthesized URL isn't always right--suffixes like ;type=A
           * are stripped off. It would be better to work directly from the
           * original URL and simply replace the port part of it.
           */
          url = aprintf("%s://%s%s%s:%d%s%s", conn->protostr,
                 conn->bits.ipv6_ip?"[":"", conn->host.name,
    
                 conn->bits.ipv6_ip?"]":"", conn->remote_port,
    
                 isftp?"/":"", data->state.path);
          if(!url)
            return CURLE_OUT_OF_MEMORY;
    
          if(data->change.url_alloc)
            free(data->change.url);
    
          data->change.url = url;
          data->change.url_alloc = TRUE;
        }
    
      else if(portptr) {
        /* no CURLOPT_PORT given, extract the one from the URL */
    
        port=strtoul(portptr+1, &rest, 10);  /* Port number must be decimal */
    
        if(rest != (portptr+1) && *rest == '\0') {
          /* The colon really did have only digits after it,
           * so it is either a port number or a mistake */
    
          if(port > 0xffff) {   /* Single unix standard says port numbers are
                                  * 16 bits long */
            failf(data, "Port number too large: %lu", port);
            return CURLE_URL_MALFORMAT;
          }
    
          *portptr = '\0'; /* cut off the name there */
          conn->remote_port = (unsigned short)port;
        }
      }
      return CURLE_OK;
    }
    
    /*
     * Override a user name and password from the URL with that in the
     * CURLOPT_USERPWD option or a .netrc file, if applicable.
     */
    static void override_userpass(struct SessionHandle *data,
                                  struct connectdata *conn,
                                  char *user, char *passwd)
    {
    
      if(data->set.str[STRING_USERNAME] != NULL) {
        strncpy(user, data->set.str[STRING_USERNAME], MAX_CURL_USER_LENGTH);
        user[MAX_CURL_USER_LENGTH-1] = '\0';   /*To be on safe side*/
      }
      if(data->set.str[STRING_PASSWORD] != NULL) {
        strncpy(passwd, data->set.str[STRING_PASSWORD], MAX_CURL_PASSWORD_LENGTH);
        passwd[MAX_CURL_PASSWORD_LENGTH-1] = '\0'; /*To be on safe side*/
    
      }
    
      conn->bits.netrc = FALSE;
      if(data->set.use_netrc != CURL_NETRC_IGNORED) {
        if(Curl_parsenetrc(conn->host.name,
                           user, passwd,
                           data->set.str[STRING_NETRC_FILE])) {
          infof(data, "Couldn't find host %s in the "
                DOT_CHAR "netrc file; using defaults\n",
                conn->host.name);
        }
        else {
          /* set bits.netrc TRUE to remember that we got the name from a .netrc
             file, so that it is safe to use even if we followed a Location: to a
             different host or similar. */
          conn->bits.netrc = TRUE;
    
          conn->bits.user_passwd = 1; /* enable user+password */
        }
      }
    }
    
    /*
     * Set password so it's available in the connection.
     */
    static CURLcode set_userpass(struct connectdata *conn,
                                 const char *user, const char *passwd)
    {
      /* If our protocol needs a password and we have none, use the defaults */
      if( (conn->protocol & PROT_FTP) &&
           !conn->bits.user_passwd) {
    
        conn->user = strdup(CURL_DEFAULT_USER);
        conn->passwd = strdup(CURL_DEFAULT_PASSWORD);
        /* This is the default password, so DON'T set conn->bits.user_passwd */
      }
      else {
        /* store user + password, zero-length if not set */
        conn->user = strdup(user);
        conn->passwd = strdup(passwd);
      }
      if(!conn->user || !conn->passwd)
        return CURLE_OUT_OF_MEMORY;
    
      return CURLE_OK;
    }
    
    /*************************************************************
     * Resolve the address of the server or proxy
     *************************************************************/
    static CURLcode resolve_server(struct SessionHandle *data,
                                   struct connectdata *conn,