Skip to content

Commit

Permalink
Follow-up fix for the proxy fix I did for Jon Nelson's bug. It turned…
Browse files Browse the repository at this point in the history
… out I

was a bit too quick and broke test case 1101 with that change. The order of
some of the setups is sensitive. I now changed it slightly again.
  • Loading branch information
bagder committed Dec 16, 2009
1 parent 002ed5f commit 7603a29
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 60 deletions.
15 changes: 15 additions & 0 deletions CHANGES
Expand Up @@ -6,6 +6,21 @@

Changelog

Daniel Stenberg (17 Dec 2009)
- Follow-up fix for the proxy fix I did for Jon Nelson's bug. It turned out I
was a bit too quick and broke test case 1101 with that change. The order of
some of the setups is sensitive. I now changed it slightly again to make
sure we do them in this order:

1 - parse URL and figure out what protocol is used in the URL
2 - prepend protocol:// to URL if missing
3 - parse name+password off URL, which needs to know what protocol is used
(since only some allows for name+password in the URL)
4 - figure out if a proxy should be used set by an option
5 - if no proxy option, check proxy environment variables
6 - run the protocol-specific setup function, which needs to have the proxy
already set

Daniel Stenberg (15 Dec 2009)
- Jon Nelson found a regression that turned out to be a flaw in how libcurl
detects and uses proxies based on the environment variables. If the proxy
Expand Down
139 changes: 79 additions & 60 deletions lib/url.c
Expand Up @@ -3255,11 +3255,53 @@ static struct connectdata *allocate_conn(void)
return conn;
}

static CURLcode findprotocol(struct SessionHandle *data,
struct connectdata *conn)
{
const struct Curl_handler * const *pp;
const struct Curl_handler *p;

/* Scan protocol handler table and match against 'protostr' to set a few
variables based on the URL. Now that the handler may be changed later
when the protocol specific setup function is called. */
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. */
conn->handler = p;
conn->protocol |= p->protocol;

/* 'port' and 'remote_port' are set in setup_connection_internals() */
return CURLE_OK;
}
}


/* 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;
}

/*
* Parse URL and fill in the relevant members of the connection struct.
*/
static CURLcode ParseURLAndFillConnection(struct SessionHandle *data,
struct connectdata *conn)
static CURLcode parseurlandfillconn(struct SessionHandle *data,
struct connectdata *conn)
{
char *at;
char *tmp;
Expand Down Expand Up @@ -3455,8 +3497,8 @@ static CURLcode ParseURLAndFillConnection(struct SessionHandle *data,
* conn->host.name is B
* data->state.path is /C
*/
(void)rc;
return CURLE_OK;

return findprotocol(data, conn);
}

static void llist_dtor(void *user, void *element)
Expand Down Expand Up @@ -3502,58 +3544,35 @@ static CURLcode setup_range(struct SessionHandle *data)
* Setup connection internals specific to the requested protocol.
* This MUST get called after proxy magic has been figured out.
***************************************************************/
static CURLcode setup_connection_internals(struct SessionHandle *data,
struct connectdata *conn)
static CURLcode setup_connection_internals(struct connectdata *conn)
{
const struct Curl_handler * const * pp;
const struct Curl_handler * p;
CURLcode result;

conn->socktype = SOCK_STREAM; /* most of them are TCP streams */

/* Scan protocol handler table. */

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;
/* Perform setup complement if some. */
p = conn->handler;

/* 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;
if(p->setup_connection) {
result = (*p->setup_connection)(conn);

/* Perform setup complement if some. */
conn->handler = p;

if(p->setup_connection) {
result = (*p->setup_connection)(conn);

if(result != CURLE_OK)
return result;
if(result != CURLE_OK)
return result;

p = conn->handler; /* May have changed. */
}
p = conn->handler; /* May have changed. */
}

if(conn->port < 0)
/* we check for -1 here since if proxy was detected already, this
was very likely already set to the proxy port */
conn->port = p->defport;
conn->remote_port = (unsigned short)p->defport;
conn->protocol |= p->protocol;
return CURLE_OK;
}
if(conn->port < 0)
/* we check for -1 here since if proxy was detected already, this
was very likely already set to the proxy port */
conn->port = p->defport;
conn->remote_port = (unsigned short)p->defport;
conn->protocol |= p->protocol;

/* 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;
return CURLE_OK;
}

#ifndef CURL_DISABLE_PROXY
Expand Down Expand Up @@ -3989,7 +4008,7 @@ static CURLcode parse_remote_port(struct SessionHandle *data,
char endbracket;

/* Note that at this point, the IPv6 address cannot contain any scope
suffix as that has already been removed in the ParseURLAndFillConnection()
suffix as that has already been removed in the parseurlandfillconn()
function */
if((1 == sscanf(conn->host.name, "[%*45[0123456789abcdefABCDEF:.]%c",
&endbracket)) &&
Expand Down Expand Up @@ -4423,7 +4442,7 @@ static CURLcode create_conn(struct SessionHandle *data,
conn->host.name = conn->host.rawalloc;
conn->host.name[0] = 0;

result = ParseURLAndFillConnection(data, conn);
result = parseurlandfillconn(data, conn);
if(result != CURLE_OK) {
return result;
}
Expand All @@ -4449,6 +4468,14 @@ static CURLcode create_conn(struct SessionHandle *data,
conn->protocol &= ~PROT_MISSING; /* switch that one off again */
}

/*************************************************************
* Parse a user name and password in the URL and strip it out
* of the host name
*************************************************************/
result = parse_url_userpass(data, conn, user, passwd);
if(result != CURLE_OK)
return result;

#ifndef CURL_DISABLE_PROXY
/*************************************************************
* Extract the user and password from the authentication string
Expand Down Expand Up @@ -4523,20 +4550,12 @@ static CURLcode create_conn(struct SessionHandle *data,
* Setup internals depending on protocol. Needs to be done after
* we figured out what/if proxy to use.
*************************************************************/
result = setup_connection_internals(data, conn);
result = setup_connection_internals(conn);
if(result != CURLE_OK) {
Curl_safefree(proxy);
return result;
}

/*************************************************************
* Parse a user name and password in the URL and strip it out
* of the host name
*************************************************************/
result = parse_url_userpass(data, conn, user, passwd);
if(result != CURLE_OK)
return result;

/***********************************************************************
* file: is a special case in that it doesn't need a network connection
***********************************************************************/
Expand Down Expand Up @@ -4598,12 +4617,6 @@ static CURLcode create_conn(struct SessionHandle *data,
if(result != CURLE_OK)
return result;

/*************************************************************
* Check the current list of connections to see if we can
* re-use an already existing one or if we have to create a
* new one.
*************************************************************/

/* Get a cloned copy of the SSL config situation stored in the
connection struct. But to get this going nicely, we must first make
sure that the strings in the master copy are pointing to the correct
Expand All @@ -4624,6 +4637,12 @@ static CURLcode create_conn(struct SessionHandle *data,
if(!Curl_clone_ssl_config(&data->set.ssl, &conn->ssl_config))
return CURLE_OUT_OF_MEMORY;

/*************************************************************
* Check the current list of connections to see if we can
* re-use an already existing one or if we have to create a
* new one.
*************************************************************/

/* reuse_fresh is TRUE if we are told to use a new connection by force, but
we only acknowledge this option if this is not a re-used connection
already (which happens due to follow-location or during a HTTP
Expand Down

0 comments on commit 7603a29

Please sign in to comment.