2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-05-26 04:54:36 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2020-12-31 18:48:40 -05:00
|
|
|
* Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 08:02:01 -05:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-05-26 04:54:36 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* 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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2000-08-24 10:26:33 -04:00
|
|
|
|
2002-06-11 07:13:01 -04:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-08-23 03:23:42 -04:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netinet/in.h>
|
2000-08-23 03:23:42 -04:00
|
|
|
#endif
|
2000-07-31 18:42:34 -04:00
|
|
|
|
2007-04-03 16:54:37 -04:00
|
|
|
#ifdef HAVE_NETDB_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <netdb.h>
|
2007-04-03 16:54:37 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
#include <net/if.h>
|
|
|
|
#endif
|
2007-04-03 16:54:37 -04:00
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/ioctl.h>
|
2007-04-03 16:54:37 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifdef USE_HYPER
|
|
|
|
#include <hyper.h>
|
|
|
|
#endif
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <curl/curl.h>
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "transfer.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "formdata.h"
|
2017-09-02 12:47:10 -04:00
|
|
|
#include "mime.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "progress.h"
|
2008-08-16 20:25:38 -04:00
|
|
|
#include "curl_base64.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "cookie.h"
|
2016-03-13 12:02:42 -04:00
|
|
|
#include "vauth/vauth.h"
|
2013-12-17 17:32:47 -05:00
|
|
|
#include "vtls/vtls.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "http_digest.h"
|
2016-03-27 12:58:50 -04:00
|
|
|
#include "http_ntlm.h"
|
2011-08-27 13:16:10 -04:00
|
|
|
#include "curl_ntlm_wb.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "http_negotiate.h"
|
2020-01-21 11:33:51 -05:00
|
|
|
#include "http_aws_sigv4.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "url.h"
|
|
|
|
#include "share.h"
|
|
|
|
#include "hostip.h"
|
|
|
|
#include "http.h"
|
|
|
|
#include "select.h"
|
|
|
|
#include "parsedate.h" /* for the week day and month names */
|
|
|
|
#include "strtoofft.h"
|
|
|
|
#include "multiif.h"
|
2016-09-30 12:54:02 -04:00
|
|
|
#include "strcase.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "content_encoding.h"
|
|
|
|
#include "http_proxy.h"
|
|
|
|
#include "warnless.h"
|
|
|
|
#include "non-ascii.h"
|
2013-09-07 05:03:23 -04:00
|
|
|
#include "http2.h"
|
2014-05-20 04:32:23 -04:00
|
|
|
#include "connect.h"
|
2016-11-07 04:55:25 -05:00
|
|
|
#include "strdup.h"
|
2019-03-03 05:17:52 -05:00
|
|
|
#include "altsvc.h"
|
2020-11-02 17:17:01 -05:00
|
|
|
#include "hsts.h"
|
2020-12-14 08:10:33 -05:00
|
|
|
#include "c-hyper.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
|
|
|
#include "curl_printf.h"
|
2015-03-24 18:12:03 -04:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2000-10-09 07:12:34 -04:00
|
|
|
|
2007-10-12 09:36:37 -04:00
|
|
|
/*
|
|
|
|
* Forward declarations.
|
|
|
|
*/
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
static int http_getsock_do(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
2019-07-30 05:02:03 -04:00
|
|
|
curl_socket_t *socks);
|
2021-01-08 11:58:15 -05:00
|
|
|
static bool http_should_fail(struct Curl_easy *data);
|
2011-06-03 13:51:08 -04:00
|
|
|
|
2019-05-05 11:08:22 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode add_haproxy_protocol_header(struct Curl_easy *data);
|
2019-05-05 11:08:22 -04:00
|
|
|
#endif
|
2016-12-01 07:05:04 -05:00
|
|
|
|
2007-10-12 14:49:14 -04:00
|
|
|
#ifdef USE_SSL
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode https_connecting(struct Curl_easy *data, bool *done);
|
|
|
|
static int https_getsock(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
2019-07-30 05:02:03 -04:00
|
|
|
curl_socket_t *socks);
|
2008-11-11 17:19:27 -05:00
|
|
|
#else
|
|
|
|
#define https_connecting(x,y) CURLE_COULDNT_CONNECT
|
2007-10-12 14:49:14 -04:00
|
|
|
#endif
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode http_setup_conn(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn);
|
2007-10-12 09:36:37 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* HTTP handler interface.
|
|
|
|
*/
|
|
|
|
const struct Curl_handler Curl_handler_http = {
|
|
|
|
"HTTP", /* scheme */
|
2019-02-08 03:33:42 -05:00
|
|
|
http_setup_conn, /* setup_connection */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_http, /* do_it */
|
|
|
|
Curl_http_done, /* done */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* do_more */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_http_connect, /* connect_it */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* connecting */
|
|
|
|
ZERO_NULL, /* doing */
|
|
|
|
ZERO_NULL, /* proto_getsock */
|
2008-05-19 16:57:28 -04:00
|
|
|
http_getsock_do, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2015-07-30 06:01:20 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2017-05-31 07:09:56 -04:00
|
|
|
ZERO_NULL, /* connection_check */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_HTTP, /* defport */
|
2011-03-14 17:52:14 -04:00
|
|
|
CURLPROTO_HTTP, /* protocol */
|
2020-09-21 07:45:24 -04:00
|
|
|
CURLPROTO_HTTP, /* family */
|
2020-06-23 10:23:51 -04:00
|
|
|
PROTOPT_CREDSPERREQUEST | /* flags */
|
|
|
|
PROTOPT_USERPWDCTRL
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
|
|
|
/*
|
|
|
|
* HTTPS handler interface.
|
|
|
|
*/
|
|
|
|
const struct Curl_handler Curl_handler_https = {
|
|
|
|
"HTTPS", /* scheme */
|
2019-02-08 03:33:42 -05:00
|
|
|
http_setup_conn, /* setup_connection */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_http, /* do_it */
|
|
|
|
Curl_http_done, /* done */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* do_more */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_http_connect, /* connect_it */
|
2008-02-18 14:53:31 -05:00
|
|
|
https_connecting, /* connecting */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* doing */
|
2008-02-18 14:53:31 -05:00
|
|
|
https_getsock, /* proto_getsock */
|
2008-05-19 16:57:28 -04:00
|
|
|
http_getsock_do, /* doing_getsock */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2015-07-30 06:01:20 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-05 10:27:03 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2017-05-31 07:09:56 -04:00
|
|
|
ZERO_NULL, /* connection_check */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_HTTPS, /* defport */
|
2014-04-20 13:37:54 -04:00
|
|
|
CURLPROTO_HTTPS, /* protocol */
|
2020-09-21 07:45:24 -04:00
|
|
|
CURLPROTO_HTTP, /* family */
|
2020-06-23 10:23:51 -04:00
|
|
|
PROTOPT_SSL | PROTOPT_CREDSPERREQUEST | PROTOPT_ALPN_NPN | /* flags */
|
|
|
|
PROTOPT_USERPWDCTRL
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode http_setup_conn(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn)
|
2013-08-04 13:34:16 -04:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
/* allocate the HTTP-specific struct for the Curl_easy, only to survive
|
2013-08-04 13:34:16 -04:00
|
|
|
during this request */
|
2015-04-29 08:19:39 -04:00
|
|
|
struct HTTP *http;
|
2020-11-23 02:32:41 -05:00
|
|
|
DEBUGASSERT(data->req.p.http == NULL);
|
2013-08-04 13:34:16 -04:00
|
|
|
|
2015-04-29 08:19:39 -04:00
|
|
|
http = calloc(1, sizeof(struct HTTP));
|
|
|
|
if(!http)
|
2013-08-04 13:34:16 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
Curl_mime_initpart(&http->form, data);
|
2020-11-23 02:32:41 -05:00
|
|
|
data->req.p.http = http;
|
2015-05-11 05:41:10 -04:00
|
|
|
|
2019-08-07 08:17:48 -04:00
|
|
|
if(data->set.httpversion == CURL_HTTP_VERSION_3) {
|
2019-07-21 17:48:58 -04:00
|
|
|
if(conn->handler->flags & PROTOPT_SSL)
|
2019-08-07 08:17:48 -04:00
|
|
|
/* Only go HTTP/3 directly on HTTPS URLs. It needs a UDP socket and does
|
|
|
|
the QUIC dance. */
|
2019-07-21 17:48:58 -04:00
|
|
|
conn->transport = TRNSPRT_QUIC;
|
|
|
|
else {
|
|
|
|
failf(data, "HTTP/3 requested for non-HTTPS URL");
|
|
|
|
return CURLE_URL_MALFORMAT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(!CONN_INUSE(conn))
|
|
|
|
/* if not already multi-using, setup connection details */
|
|
|
|
Curl_http2_setup_conn(conn);
|
|
|
|
Curl_http2_setup_req(data);
|
|
|
|
}
|
2013-08-04 13:34:16 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:22 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2014-01-31 02:10:07 -05:00
|
|
|
/*
|
|
|
|
* checkProxyHeaders() checks the linked list of custom proxy headers
|
|
|
|
* if proxy headers are not available, then it will lookup into http header
|
|
|
|
* link list
|
|
|
|
*
|
2021-01-08 11:58:15 -05:00
|
|
|
* It takes a connectdata struct as input to see if this is a proxy request or
|
|
|
|
* not, as it then might check a different header list. Provide the header
|
|
|
|
* prefix without colon!
|
2014-01-31 02:10:07 -05:00
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
char *Curl_checkProxyheaders(struct Curl_easy *data,
|
|
|
|
const struct connectdata *conn,
|
2014-01-31 02:10:07 -05:00
|
|
|
const char *thisheader)
|
|
|
|
{
|
|
|
|
struct curl_slist *head;
|
|
|
|
size_t thislen = strlen(thisheader);
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2016-03-24 02:35:23 -04:00
|
|
|
for(head = (conn->bits.proxy && data->set.sep_headers) ?
|
|
|
|
data->set.proxyheaders : data->set.headers;
|
2017-09-09 17:09:06 -04:00
|
|
|
head; head = head->next) {
|
2018-03-05 17:38:16 -05:00
|
|
|
if(strncasecompare(head->data, thisheader, thislen) &&
|
|
|
|
Curl_headersep(head->data[thislen]))
|
2003-09-03 17:51:28 -04:00
|
|
|
return head->data;
|
|
|
|
}
|
2016-03-24 02:35:23 -04:00
|
|
|
|
2003-09-03 17:51:28 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2019-05-05 11:08:22 -04:00
|
|
|
#else
|
|
|
|
/* disabled */
|
2021-01-08 11:58:15 -05:00
|
|
|
#define Curl_checkProxyheaders(x,y,z) NULL
|
2019-05-05 11:08:22 -04:00
|
|
|
#endif
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2008-07-30 16:11:51 -04:00
|
|
|
/*
|
|
|
|
* Strip off leading and trailing whitespace from the value in the
|
|
|
|
* given HTTP header line and return a strdupped copy. Returns NULL in
|
|
|
|
* case of allocation failure. Returns an empty string if the header value
|
|
|
|
* consists entirely of whitespace.
|
|
|
|
*/
|
2013-11-03 05:17:26 -05:00
|
|
|
char *Curl_copy_header_value(const char *header)
|
2008-07-30 16:11:51 -04:00
|
|
|
{
|
|
|
|
const char *start;
|
|
|
|
const char *end;
|
|
|
|
char *value;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
/* Find the end of the header name */
|
2013-11-03 05:17:26 -05:00
|
|
|
while(*header && (*header != ':'))
|
|
|
|
++header;
|
2008-07-30 16:11:51 -04:00
|
|
|
|
2013-11-03 05:17:26 -05:00
|
|
|
if(*header)
|
2008-07-30 16:11:51 -04:00
|
|
|
/* Skip over colon */
|
2013-11-03 05:17:26 -05:00
|
|
|
++header;
|
2008-07-30 16:11:51 -04:00
|
|
|
|
|
|
|
/* Find the first non-space letter */
|
2013-11-03 05:17:26 -05:00
|
|
|
start = header;
|
2008-10-17 08:53:53 -04:00
|
|
|
while(*start && ISSPACE(*start))
|
|
|
|
start++;
|
2008-07-30 16:11:51 -04:00
|
|
|
|
|
|
|
/* data is in the host encoding so
|
|
|
|
use '\r' and '\n' instead of 0x0d and 0x0a */
|
|
|
|
end = strchr(start, '\r');
|
|
|
|
if(!end)
|
|
|
|
end = strchr(start, '\n');
|
|
|
|
if(!end)
|
|
|
|
end = strchr(start, '\0');
|
2008-10-17 08:53:53 -04:00
|
|
|
if(!end)
|
|
|
|
return NULL;
|
2008-07-30 16:11:51 -04:00
|
|
|
|
|
|
|
/* skip all trailing space letters */
|
2008-10-17 08:53:53 -04:00
|
|
|
while((end > start) && ISSPACE(*end))
|
|
|
|
end--;
|
2008-07-30 16:11:51 -04:00
|
|
|
|
|
|
|
/* get length of the type */
|
2013-11-03 05:17:26 -05:00
|
|
|
len = end - start + 1;
|
2008-07-30 16:11:51 -04:00
|
|
|
|
|
|
|
value = malloc(len + 1);
|
|
|
|
if(!value)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
memcpy(value, start, len);
|
2020-06-25 05:38:25 -04:00
|
|
|
value[len] = 0; /* null-terminate */
|
2008-07-30 16:11:51 -04:00
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:21 -04:00
|
|
|
#ifndef CURL_DISABLE_HTTP_AUTH
|
2004-04-22 08:35:45 -04:00
|
|
|
/*
|
2007-12-08 17:50:55 -05:00
|
|
|
* http_output_basic() sets up an Authorization: header (or the proxy version)
|
2004-05-04 03:52:53 -04:00
|
|
|
* for HTTP Basic authentication.
|
2004-04-22 08:35:45 -04:00
|
|
|
*
|
|
|
|
* Returns CURLcode.
|
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode http_output_basic(struct Curl_easy *data, bool proxy)
|
2003-09-03 17:51:28 -04:00
|
|
|
{
|
2011-08-24 02:07:36 -04:00
|
|
|
size_t size = 0;
|
|
|
|
char *authorization = NULL;
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2004-05-04 03:52:53 -04:00
|
|
|
char **userp;
|
2008-11-05 19:01:13 -05:00
|
|
|
const char *user;
|
|
|
|
const char *pwd;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2017-04-24 09:33:57 -04:00
|
|
|
char *out;
|
2004-05-04 03:52:53 -04:00
|
|
|
|
|
|
|
if(proxy) {
|
2020-05-27 05:51:34 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2020-06-15 05:28:17 -04:00
|
|
|
userp = &data->state.aptr.proxyuserpwd;
|
2016-11-16 12:49:15 -05:00
|
|
|
user = conn->http_proxy.user;
|
|
|
|
pwd = conn->http_proxy.passwd;
|
2020-05-27 05:51:34 -04:00
|
|
|
#else
|
|
|
|
return CURLE_NOT_BUILT_IN;
|
|
|
|
#endif
|
2004-05-04 03:52:53 -04:00
|
|
|
}
|
|
|
|
else {
|
2020-06-15 05:28:17 -04:00
|
|
|
userp = &data->state.aptr.userpwd;
|
2004-05-04 03:52:53 -04:00
|
|
|
user = conn->user;
|
|
|
|
pwd = conn->passwd;
|
|
|
|
}
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2020-06-26 08:16:21 -04:00
|
|
|
out = aprintf("%s:%s", user, pwd ? pwd : "");
|
2017-04-24 09:33:57 -04:00
|
|
|
if(!out)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2011-08-24 02:07:36 -04:00
|
|
|
|
2017-04-24 09:33:57 -04:00
|
|
|
result = Curl_base64_encode(data, out, strlen(out), &authorization, &size);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result)
|
2017-04-24 09:33:57 -04:00
|
|
|
goto fail;
|
2011-08-24 02:07:36 -04:00
|
|
|
|
2017-04-24 09:33:57 -04:00
|
|
|
if(!authorization) {
|
|
|
|
result = CURLE_REMOTE_ACCESS_DENIED;
|
|
|
|
goto fail;
|
|
|
|
}
|
2011-08-24 02:07:36 -04:00
|
|
|
|
2015-03-16 10:01:15 -04:00
|
|
|
free(*userp);
|
2011-08-24 02:07:36 -04:00
|
|
|
*userp = aprintf("%sAuthorization: Basic %s\r\n",
|
2016-03-24 02:35:23 -04:00
|
|
|
proxy ? "Proxy-" : "",
|
2011-08-24 02:07:36 -04:00
|
|
|
authorization);
|
|
|
|
free(authorization);
|
2017-04-24 09:33:57 -04:00
|
|
|
if(!*userp) {
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
goto fail;
|
|
|
|
}
|
2011-08-24 02:07:36 -04:00
|
|
|
|
2017-04-24 09:33:57 -04:00
|
|
|
fail:
|
|
|
|
free(out);
|
|
|
|
return result;
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
|
|
|
|
2018-05-22 06:28:41 -04:00
|
|
|
/*
|
|
|
|
* http_output_bearer() sets up an Authorization: header
|
|
|
|
* for HTTP Bearer authentication.
|
|
|
|
*
|
|
|
|
* Returns CURLcode.
|
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode http_output_bearer(struct Curl_easy *data)
|
2018-05-22 06:28:41 -04:00
|
|
|
{
|
|
|
|
char **userp;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
2020-06-15 05:28:17 -04:00
|
|
|
userp = &data->state.aptr.userpwd;
|
2018-05-22 06:28:41 -04:00
|
|
|
free(*userp);
|
|
|
|
*userp = aprintf("Authorization: Bearer %s\r\n",
|
2021-01-08 11:58:15 -05:00
|
|
|
data->set.str[STRING_BEARER]);
|
2018-05-22 06:28:41 -04:00
|
|
|
|
|
|
|
if(!*userp) {
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
fail:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:21 -04:00
|
|
|
#endif
|
|
|
|
|
2004-05-04 03:52:53 -04:00
|
|
|
/* pickoneauth() selects the most favourable authentication method from the
|
|
|
|
* ones available and the ones we want.
|
2004-04-22 08:35:45 -04:00
|
|
|
*
|
2004-05-04 03:52:53 -04:00
|
|
|
* return TRUE if one was picked
|
2004-04-22 08:35:45 -04:00
|
|
|
*/
|
2018-07-17 08:52:53 -04:00
|
|
|
static bool pickoneauth(struct auth *pick, unsigned long mask)
|
2003-09-03 17:51:28 -04:00
|
|
|
{
|
2004-05-04 03:52:53 -04:00
|
|
|
bool picked;
|
2004-06-15 04:45:22 -04:00
|
|
|
/* only deal with authentication we want */
|
2018-07-17 08:52:53 -04:00
|
|
|
unsigned long avail = pick->avail & pick->want & mask;
|
2004-06-15 04:45:22 -04:00
|
|
|
picked = TRUE;
|
|
|
|
|
|
|
|
/* The order of these checks is highly relevant, as this will be the order
|
2008-09-26 15:55:12 -04:00
|
|
|
of preference in case of the existence of multiple accepted types. */
|
2014-07-21 03:53:46 -04:00
|
|
|
if(avail & CURLAUTH_NEGOTIATE)
|
|
|
|
pick->picked = CURLAUTH_NEGOTIATE;
|
2018-05-22 06:28:41 -04:00
|
|
|
else if(avail & CURLAUTH_BEARER)
|
|
|
|
pick->picked = CURLAUTH_BEARER;
|
2004-06-15 04:45:22 -04:00
|
|
|
else if(avail & CURLAUTH_DIGEST)
|
|
|
|
pick->picked = CURLAUTH_DIGEST;
|
|
|
|
else if(avail & CURLAUTH_NTLM)
|
|
|
|
pick->picked = CURLAUTH_NTLM;
|
2011-08-26 12:57:50 -04:00
|
|
|
else if(avail & CURLAUTH_NTLM_WB)
|
|
|
|
pick->picked = CURLAUTH_NTLM_WB;
|
2004-06-15 04:45:22 -04:00
|
|
|
else if(avail & CURLAUTH_BASIC)
|
|
|
|
pick->picked = CURLAUTH_BASIC;
|
2020-01-21 11:33:51 -05:00
|
|
|
else if(avail & CURLAUTH_AWS_SIGV4)
|
|
|
|
pick->picked = CURLAUTH_AWS_SIGV4;
|
2004-06-15 04:45:22 -04:00
|
|
|
else {
|
|
|
|
pick->picked = CURLAUTH_PICKNONE; /* we select to use nothing */
|
|
|
|
picked = FALSE;
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
2004-06-15 04:45:22 -04:00
|
|
|
pick->avail = CURLAUTH_NONE; /* clear it here */
|
2004-05-04 03:52:53 -04:00
|
|
|
|
|
|
|
return picked;
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
|
|
|
|
2004-11-24 11:11:35 -05:00
|
|
|
/*
|
headers: Remove no longer exported functions
There were a leftover few prototypes of Curl_ functions that we used to
export but no longer do, this removes those prototypes and cleans up any
comments still referring to them.
Curl_write32_le(), Curl_strcpy_url(), Curl_strlen_url(), Curl_up_free()
Curl_concat_url(), Curl_detach_connnection(), Curl_http_setup_conn()
were made static in 05b100aee247bb9bec8e9a1b0166496aa4248d1c.
Curl_http_perhapsrewind() made static in 574aecee208f79d391f10d57520b3.
For the remainder, I didn't trawl the Git logs hard enough to capture
their exact time of deletion, but they were all gone: Curl_splayprint(),
Curl_http2_send_request(), Curl_global_host_cache_dtor(),
Curl_scan_cache_used(), Curl_hostcache_destroy(), Curl_second_connect(),
Curl_http_auth_stage() and Curl_close_connections().
Closes #4096
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
2019-07-10 13:26:40 -04:00
|
|
|
* http_perhapsrewind()
|
2004-11-24 11:11:35 -05:00
|
|
|
*
|
|
|
|
* If we are doing POST or PUT {
|
|
|
|
* If we have more data to send {
|
|
|
|
* If we are doing NTLM {
|
|
|
|
* Keep sending since we must not disconnect
|
|
|
|
* }
|
|
|
|
* else {
|
|
|
|
* If there is more than just a little data left to send, close
|
|
|
|
* the current connection by force.
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* If we have sent any data {
|
|
|
|
* If we don't have track of all the data {
|
|
|
|
* call app to tell it to rewind
|
|
|
|
* }
|
|
|
|
* else {
|
|
|
|
* rewind internally so that the operation can restart fine
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode http_perhapsrewind(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn)
|
2004-11-24 11:11:35 -05:00
|
|
|
{
|
2020-11-23 02:32:41 -05:00
|
|
|
struct HTTP *http = data->req.p.http;
|
2004-12-10 09:45:35 -05:00
|
|
|
curl_off_t bytessent;
|
2004-11-24 11:11:35 -05:00
|
|
|
curl_off_t expectsend = -1; /* default is unknown */
|
|
|
|
|
2011-05-05 09:38:01 -04:00
|
|
|
if(!http)
|
|
|
|
/* If this is still NULL, we have not reach very far and we can safely
|
|
|
|
skip this rewinding stuff */
|
2004-12-10 09:45:35 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
|
2020-06-01 16:58:46 -04:00
|
|
|
switch(data->state.httpreq) {
|
2008-08-04 18:00:22 -04:00
|
|
|
case HTTPREQ_GET:
|
|
|
|
case HTTPREQ_HEAD:
|
|
|
|
return CURLE_OK;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-02-28 05:36:26 -05:00
|
|
|
bytessent = data->req.writebytecount;
|
2004-12-10 09:45:35 -05:00
|
|
|
|
2014-11-24 04:42:01 -05:00
|
|
|
if(conn->bits.authneg) {
|
2005-03-29 07:28:25 -05:00
|
|
|
/* This is a state where we are known to be negotiating and we don't send
|
|
|
|
any data then. */
|
|
|
|
expectsend = 0;
|
2014-11-24 04:42:01 -05:00
|
|
|
}
|
|
|
|
else if(!conn->bits.protoconnstart) {
|
|
|
|
/* HTTP CONNECT in progress: there is no body */
|
|
|
|
expectsend = 0;
|
|
|
|
}
|
2005-03-29 07:28:25 -05:00
|
|
|
else {
|
|
|
|
/* figure out how much data we are expected to send */
|
2020-06-01 16:58:46 -04:00
|
|
|
switch(data->state.httpreq) {
|
2005-03-29 07:28:25 -05:00
|
|
|
case HTTPREQ_POST:
|
|
|
|
case HTTPREQ_PUT:
|
2014-04-15 07:49:18 -04:00
|
|
|
if(data->state.infilesize != -1)
|
|
|
|
expectsend = data->state.infilesize;
|
2005-03-29 07:28:25 -05:00
|
|
|
break;
|
|
|
|
case HTTPREQ_POST_FORM:
|
2017-09-02 12:47:10 -04:00
|
|
|
case HTTPREQ_POST_MIME:
|
2005-03-29 07:28:25 -05:00
|
|
|
expectsend = http->postsize;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2004-11-24 11:11:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
conn->bits.rewindaftersend = FALSE; /* default */
|
|
|
|
|
|
|
|
if((expectsend == -1) || (expectsend > bytessent)) {
|
2015-04-17 17:23:42 -04:00
|
|
|
#if defined(USE_NTLM)
|
|
|
|
/* There is still data left to send */
|
|
|
|
if((data->state.authproxy.picked == CURLAUTH_NTLM) ||
|
|
|
|
(data->state.authhost.picked == CURLAUTH_NTLM) ||
|
|
|
|
(data->state.authproxy.picked == CURLAUTH_NTLM_WB) ||
|
|
|
|
(data->state.authhost.picked == CURLAUTH_NTLM_WB)) {
|
|
|
|
if(((expectsend - bytessent) < 2000) ||
|
2019-05-13 15:58:39 -04:00
|
|
|
(conn->http_ntlm_state != NTLMSTATE_NONE) ||
|
|
|
|
(conn->proxy_ntlm_state != NTLMSTATE_NONE)) {
|
2015-04-17 17:23:42 -04:00
|
|
|
/* The NTLM-negotiation has started *OR* there is just a little (<2K)
|
|
|
|
data left to send, keep on sending. */
|
|
|
|
|
|
|
|
/* rewind data when completely done sending! */
|
2018-05-04 05:06:26 -04:00
|
|
|
if(!conn->bits.authneg && (conn->writesockfd != CURL_SOCKET_BAD)) {
|
2015-04-17 17:23:42 -04:00
|
|
|
conn->bits.rewindaftersend = TRUE;
|
|
|
|
infof(data, "Rewind stream after send\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2014-10-25 17:32:46 -04:00
|
|
|
|
2015-04-17 17:23:42 -04:00
|
|
|
if(conn->bits.close)
|
|
|
|
/* this is already marked to get closed */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
infof(data, "NTLM send, close instead of sending %"
|
|
|
|
CURL_FORMAT_CURL_OFF_T " bytes\n",
|
|
|
|
(curl_off_t)(expectsend - bytessent));
|
|
|
|
}
|
|
|
|
#endif
|
2018-09-10 03:18:01 -04:00
|
|
|
#if defined(USE_SPNEGO)
|
|
|
|
/* There is still data left to send */
|
|
|
|
if((data->state.authproxy.picked == CURLAUTH_NEGOTIATE) ||
|
|
|
|
(data->state.authhost.picked == CURLAUTH_NEGOTIATE)) {
|
|
|
|
if(((expectsend - bytessent) < 2000) ||
|
2019-05-13 16:42:35 -04:00
|
|
|
(conn->http_negotiate_state != GSS_AUTHNONE) ||
|
|
|
|
(conn->proxy_negotiate_state != GSS_AUTHNONE)) {
|
2018-09-10 03:18:01 -04:00
|
|
|
/* The NEGOTIATE-negotiation has started *OR*
|
|
|
|
there is just a little (<2K) data left to send, keep on sending. */
|
|
|
|
|
|
|
|
/* rewind data when completely done sending! */
|
|
|
|
if(!conn->bits.authneg && (conn->writesockfd != CURL_SOCKET_BAD)) {
|
|
|
|
conn->bits.rewindaftersend = TRUE;
|
|
|
|
infof(data, "Rewind stream after send\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2005-02-16 09:31:23 -05:00
|
|
|
|
2018-09-10 03:18:01 -04:00
|
|
|
if(conn->bits.close)
|
|
|
|
/* this is already marked to get closed */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
infof(data, "NEGOTIATE send, close instead of sending %"
|
|
|
|
CURL_FORMAT_CURL_OFF_T " bytes\n",
|
|
|
|
(curl_off_t)(expectsend - bytessent));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This is not NEGOTIATE/NTLM or many bytes left to send: close */
|
2016-08-11 08:00:23 -04:00
|
|
|
streamclose(conn, "Mid-auth HTTP and much data left to send");
|
2007-11-24 18:16:55 -05:00
|
|
|
data->req.size = 0; /* don't download any more than 0 bytes */
|
2008-05-03 17:44:50 -04:00
|
|
|
|
|
|
|
/* There still is data left to send, but this connection is marked for
|
|
|
|
closure so we can safely do the rewind right now */
|
2004-11-24 11:11:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if(bytessent)
|
2015-04-17 17:23:42 -04:00
|
|
|
/* we rewind now at once since if we already sent something */
|
2021-01-19 04:24:35 -05:00
|
|
|
return Curl_readrewind(data);
|
2004-11-24 11:11:35 -05:00
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2004-01-09 09:03:06 -05:00
|
|
|
/*
|
2008-09-26 15:55:12 -04:00
|
|
|
* Curl_http_auth_act() gets called when all HTTP headers have been received
|
2004-05-04 03:52:53 -04:00
|
|
|
* and it checks what authentication methods that are available and decides
|
2008-09-26 15:55:12 -04:00
|
|
|
* which one (if any) to use. It will set 'newurl' if an auth method was
|
2004-05-04 03:52:53 -04:00
|
|
|
* picked.
|
2004-01-09 09:03:06 -05:00
|
|
|
*/
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_http_auth_act(struct Curl_easy *data)
|
2003-09-03 17:51:28 -04:00
|
|
|
{
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2004-05-05 09:00:03 -04:00
|
|
|
bool pickhost = FALSE;
|
|
|
|
bool pickproxy = FALSE;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
2018-07-17 08:52:53 -04:00
|
|
|
unsigned long authmask = ~0ul;
|
|
|
|
|
2020-01-21 04:30:37 -05:00
|
|
|
if(!data->set.str[STRING_BEARER])
|
2018-07-17 08:52:53 -04:00
|
|
|
authmask &= (unsigned long)~CURLAUTH_BEARER;
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2008-07-03 04:47:53 -04:00
|
|
|
if(100 <= data->req.httpcode && 199 >= data->req.httpcode)
|
2005-04-03 18:46:25 -04:00
|
|
|
/* this is a transient response code, ignore */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
2004-05-04 03:52:53 -04:00
|
|
|
if(data->state.authproblem)
|
|
|
|
return data->set.http_fail_on_error?CURLE_HTTP_RETURNED_ERROR:CURLE_OK;
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2020-01-21 04:30:37 -05:00
|
|
|
if((conn->bits.user_passwd || data->set.str[STRING_BEARER]) &&
|
2007-11-24 18:16:55 -05:00
|
|
|
((data->req.httpcode == 401) ||
|
|
|
|
(conn->bits.authneg && data->req.httpcode < 300))) {
|
2018-07-17 08:52:53 -04:00
|
|
|
pickhost = pickoneauth(&data->state.authhost, authmask);
|
2004-06-15 04:45:22 -04:00
|
|
|
if(!pickhost)
|
2004-05-04 03:52:53 -04:00
|
|
|
data->state.authproblem = TRUE;
|
2018-12-06 11:26:13 -05:00
|
|
|
if(data->state.authhost.picked == CURLAUTH_NTLM &&
|
|
|
|
conn->httpversion > 11) {
|
|
|
|
infof(data, "Forcing HTTP/1.1 for NTLM");
|
|
|
|
connclose(conn, "Force HTTP/1.1 connection");
|
2021-01-08 11:58:15 -05:00
|
|
|
data->set.httpversion = CURL_HTTP_VERSION_1_1;
|
2018-12-06 11:26:13 -05:00
|
|
|
}
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
2020-05-27 05:51:34 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2004-06-15 04:45:22 -04:00
|
|
|
if(conn->bits.proxy_user_passwd &&
|
2007-11-24 18:16:55 -05:00
|
|
|
((data->req.httpcode == 407) ||
|
|
|
|
(conn->bits.authneg && data->req.httpcode < 300))) {
|
2018-07-17 08:52:53 -04:00
|
|
|
pickproxy = pickoneauth(&data->state.authproxy,
|
|
|
|
authmask & ~CURLAUTH_BEARER);
|
2004-06-15 04:45:22 -04:00
|
|
|
if(!pickproxy)
|
2004-05-04 03:52:53 -04:00
|
|
|
data->state.authproblem = TRUE;
|
|
|
|
}
|
2020-05-27 05:51:34 -04:00
|
|
|
#endif
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2004-11-24 11:11:35 -05:00
|
|
|
if(pickhost || pickproxy) {
|
2020-06-01 16:58:46 -04:00
|
|
|
if((data->state.httpreq != HTTPREQ_GET) &&
|
|
|
|
(data->state.httpreq != HTTPREQ_HEAD) &&
|
2005-02-16 09:31:23 -05:00
|
|
|
!conn->bits.rewindaftersend) {
|
2021-01-08 11:58:15 -05:00
|
|
|
result = http_perhapsrewind(data, conn);
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2004-11-24 11:11:35 -05:00
|
|
|
}
|
2018-09-25 01:49:35 -04:00
|
|
|
/* In case this is GSS auth, the newurl field is already allocated so
|
|
|
|
we must make sure to free it before allocating a new one. As figured
|
|
|
|
out in bug #2284386 */
|
|
|
|
Curl_safefree(data->req.newurl);
|
|
|
|
data->req.newurl = strdup(data->change.url); /* clone URL */
|
|
|
|
if(!data->req.newurl)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2004-11-24 11:11:35 -05:00
|
|
|
}
|
2007-11-24 18:16:55 -05:00
|
|
|
else if((data->req.httpcode < 300) &&
|
2004-06-19 06:10:24 -04:00
|
|
|
(!data->state.authhost.done) &&
|
2004-11-24 11:11:35 -05:00
|
|
|
conn->bits.authneg) {
|
2004-04-06 11:14:10 -04:00
|
|
|
/* no (known) authentication available,
|
|
|
|
authentication is not "done" yet and
|
|
|
|
no authentication seems to be required and
|
|
|
|
we didn't try HEAD or GET */
|
2020-06-01 16:58:46 -04:00
|
|
|
if((data->state.httpreq != HTTPREQ_GET) &&
|
|
|
|
(data->state.httpreq != HTTPREQ_HEAD)) {
|
2007-11-24 18:16:55 -05:00
|
|
|
data->req.newurl = strdup(data->change.url); /* clone URL */
|
|
|
|
if(!data->req.newurl)
|
2007-04-10 18:52:50 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2004-05-04 03:52:53 -04:00
|
|
|
data->state.authhost.done = TRUE;
|
2004-04-06 11:14:10 -04:00
|
|
|
}
|
|
|
|
}
|
2021-01-08 11:58:15 -05:00
|
|
|
if(http_should_fail(data)) {
|
2016-12-13 17:34:59 -05:00
|
|
|
failf(data, "The requested URL returned error: %d",
|
|
|
|
data->req.httpcode);
|
2014-10-23 16:56:35 -04:00
|
|
|
result = CURLE_HTTP_RETURNED_ERROR;
|
2004-05-04 03:52:53 -04:00
|
|
|
}
|
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:21 -04:00
|
|
|
#ifndef CURL_DISABLE_HTTP_AUTH
|
2008-11-05 19:01:13 -05:00
|
|
|
/*
|
|
|
|
* Output the correct authentication header depending on the auth type
|
|
|
|
* and whether or not it is to a proxy.
|
|
|
|
*/
|
|
|
|
static CURLcode
|
2021-01-08 11:58:15 -05:00
|
|
|
output_auth_headers(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
2008-11-05 19:01:13 -05:00
|
|
|
struct auth *authstatus,
|
2008-12-08 08:52:20 -05:00
|
|
|
const char *request,
|
|
|
|
const char *path,
|
2008-11-05 19:01:13 -05:00
|
|
|
bool proxy)
|
|
|
|
{
|
2014-11-27 17:11:23 -05:00
|
|
|
const char *auth = NULL;
|
2008-11-05 19:01:13 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
|
2009-05-28 12:18:25 -04:00
|
|
|
#ifdef CURL_DISABLE_CRYPTO_AUTH
|
2008-11-05 19:01:13 -05:00
|
|
|
(void)request;
|
|
|
|
(void)path;
|
|
|
|
#endif
|
2020-01-21 11:33:51 -05:00
|
|
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
|
|
|
if(authstatus->picked == CURLAUTH_AWS_SIGV4) {
|
|
|
|
auth = "AWS_SIGV4";
|
|
|
|
result = Curl_output_aws_sigv4(conn, proxy);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2014-07-21 03:53:46 -04:00
|
|
|
#ifdef USE_SPNEGO
|
2019-05-29 02:17:08 -04:00
|
|
|
if(authstatus->picked == CURLAUTH_NEGOTIATE) {
|
2016-03-24 02:35:23 -04:00
|
|
|
auth = "Negotiate";
|
2008-11-05 19:01:13 -05:00
|
|
|
result = Curl_output_negotiate(conn, proxy);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
#ifdef USE_NTLM
|
|
|
|
if(authstatus->picked == CURLAUTH_NTLM) {
|
2016-03-24 02:35:23 -04:00
|
|
|
auth = "NTLM";
|
2021-01-18 05:56:50 -05:00
|
|
|
result = Curl_output_ntlm(data, proxy);
|
2008-11-05 19:01:13 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2011-09-21 18:24:02 -04:00
|
|
|
#if defined(USE_NTLM) && defined(NTLM_WB_ENABLED)
|
2011-08-26 19:32:49 -04:00
|
|
|
if(authstatus->picked == CURLAUTH_NTLM_WB) {
|
2017-09-09 17:09:06 -04:00
|
|
|
auth = "NTLM_WB";
|
2011-08-26 12:57:50 -04:00
|
|
|
result = Curl_output_ntlm_wb(conn, proxy);
|
2011-07-18 17:36:36 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2008-11-05 19:01:13 -05:00
|
|
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
|
|
|
if(authstatus->picked == CURLAUTH_DIGEST) {
|
2016-03-24 02:35:23 -04:00
|
|
|
auth = "Digest";
|
2008-11-05 19:01:13 -05:00
|
|
|
result = Curl_output_digest(conn,
|
2008-12-08 08:52:20 -05:00
|
|
|
proxy,
|
|
|
|
(const unsigned char *)request,
|
|
|
|
(const unsigned char *)path);
|
2008-11-05 19:01:13 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
if(authstatus->picked == CURLAUTH_BASIC) {
|
|
|
|
/* Basic */
|
2020-05-27 05:51:34 -04:00
|
|
|
if(
|
|
|
|
#ifndef CURL_DISABLE_PROXY
|
|
|
|
(proxy && conn->bits.proxy_user_passwd &&
|
2021-01-08 11:58:15 -05:00
|
|
|
!Curl_checkProxyheaders(data, conn, "Proxy-authorization")) ||
|
2020-05-27 05:51:34 -04:00
|
|
|
#endif
|
|
|
|
(!proxy && conn->bits.user_passwd &&
|
2021-01-08 11:58:15 -05:00
|
|
|
!Curl_checkheaders(data, "Authorization"))) {
|
2016-03-24 02:35:23 -04:00
|
|
|
auth = "Basic";
|
2021-01-08 11:58:15 -05:00
|
|
|
result = http_output_basic(data, proxy);
|
2008-11-05 19:01:13 -05:00
|
|
|
if(result)
|
2008-12-08 08:52:20 -05:00
|
|
|
return result;
|
2008-11-05 19:01:13 -05:00
|
|
|
}
|
2016-03-24 02:35:23 -04:00
|
|
|
|
2008-11-05 19:01:13 -05:00
|
|
|
/* NOTE: this function should set 'done' TRUE, as the other auth
|
|
|
|
functions work that way */
|
|
|
|
authstatus->done = TRUE;
|
|
|
|
}
|
2018-05-22 06:28:41 -04:00
|
|
|
if(authstatus->picked == CURLAUTH_BEARER) {
|
|
|
|
/* Bearer */
|
2020-01-21 04:30:37 -05:00
|
|
|
if((!proxy && data->set.str[STRING_BEARER] &&
|
2021-01-08 11:58:15 -05:00
|
|
|
!Curl_checkheaders(data, "Authorization:"))) {
|
2018-05-22 06:28:41 -04:00
|
|
|
auth = "Bearer";
|
2021-01-08 11:58:15 -05:00
|
|
|
result = http_output_bearer(data);
|
2018-05-22 06:28:41 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOTE: this function should set 'done' TRUE, as the other auth
|
|
|
|
functions work that way */
|
|
|
|
authstatus->done = TRUE;
|
|
|
|
}
|
2008-11-05 19:01:13 -05:00
|
|
|
|
|
|
|
if(auth) {
|
2020-05-27 05:51:34 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2008-11-05 19:01:13 -05:00
|
|
|
infof(data, "%s auth using %s with user '%s'\n",
|
2016-03-24 02:35:23 -04:00
|
|
|
proxy ? "Proxy" : "Server", auth,
|
2016-11-16 12:49:15 -05:00
|
|
|
proxy ? (conn->http_proxy.user ? conn->http_proxy.user : "") :
|
2020-05-27 05:51:34 -04:00
|
|
|
(conn->user ? conn->user : ""));
|
|
|
|
#else
|
|
|
|
infof(data, "Server auth using %s with user '%s'\n",
|
|
|
|
auth, conn->user ? conn->user : "");
|
|
|
|
#endif
|
2017-01-26 17:42:28 -05:00
|
|
|
authstatus->multipass = (!authstatus->done) ? TRUE : FALSE;
|
2008-11-05 19:01:13 -05:00
|
|
|
}
|
|
|
|
else
|
2017-01-26 17:42:28 -05:00
|
|
|
authstatus->multipass = FALSE;
|
2008-11-05 19:01:13 -05:00
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2004-03-30 01:40:01 -05:00
|
|
|
/**
|
2004-05-04 03:52:53 -04:00
|
|
|
* Curl_http_output_auth() setups the authentication headers for the
|
|
|
|
* host/proxy and the correct authentication
|
2021-01-08 11:58:15 -05:00
|
|
|
* method. data->state.authdone is set to TRUE when authentication is
|
2004-05-04 03:52:53 -04:00
|
|
|
* done.
|
2004-03-30 01:40:01 -05:00
|
|
|
*
|
|
|
|
* @param conn all information about the current connection
|
2004-05-26 04:54:36 -04:00
|
|
|
* @param request pointer to the request keyword
|
2018-12-09 19:34:47 -05:00
|
|
|
* @param path pointer to the requested path; should include query part
|
2004-05-26 04:54:36 -04:00
|
|
|
* @param proxytunnel boolean if this is the request setting up a "proxy
|
|
|
|
* tunnel"
|
2004-04-22 08:35:45 -04:00
|
|
|
*
|
2004-05-26 04:54:36 -04:00
|
|
|
* @returns CURLcode
|
2003-09-03 17:51:28 -04:00
|
|
|
*/
|
2011-04-04 10:24:37 -04:00
|
|
|
CURLcode
|
2021-01-08 11:58:15 -05:00
|
|
|
Curl_http_output_auth(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
2011-04-04 10:24:37 -04:00
|
|
|
const char *request,
|
2021-01-08 10:17:12 -05:00
|
|
|
Curl_HttpReq httpreq,
|
2011-04-04 10:24:37 -04:00
|
|
|
const char *path,
|
|
|
|
bool proxytunnel) /* TRUE if this is the request setting
|
|
|
|
up the proxy tunnel */
|
2003-09-03 17:51:28 -04:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2004-11-24 11:11:35 -05:00
|
|
|
struct auth *authhost;
|
|
|
|
struct auth *authproxy;
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2007-02-21 14:03:20 -05:00
|
|
|
DEBUGASSERT(data);
|
2003-09-15 17:11:22 -04:00
|
|
|
|
2004-11-24 11:11:35 -05:00
|
|
|
authhost = &data->state.authhost;
|
|
|
|
authproxy = &data->state.authproxy;
|
|
|
|
|
2020-05-27 05:51:34 -04:00
|
|
|
if(
|
|
|
|
#ifndef CURL_DISABLE_PROXY
|
|
|
|
(conn->bits.httpproxy && conn->bits.proxy_user_passwd) ||
|
|
|
|
#endif
|
2020-01-21 04:30:37 -05:00
|
|
|
conn->bits.user_passwd || data->set.str[STRING_BEARER])
|
2015-03-17 09:06:48 -04:00
|
|
|
/* continue please */;
|
2004-05-04 03:52:53 -04:00
|
|
|
else {
|
2004-11-24 11:11:35 -05:00
|
|
|
authhost->done = TRUE;
|
|
|
|
authproxy->done = TRUE;
|
2004-05-04 03:52:53 -04:00
|
|
|
return CURLE_OK; /* no authentication with no user or password */
|
|
|
|
}
|
|
|
|
|
2004-11-24 11:11:35 -05:00
|
|
|
if(authhost->want && !authhost->picked)
|
2004-05-04 03:52:53 -04:00
|
|
|
/* The app has selected one or more methods, but none has been picked
|
|
|
|
so far by a server round-trip. Then we set the picked one to the
|
|
|
|
want one, and if this is one single bit it'll be used instantly. */
|
2004-11-24 11:11:35 -05:00
|
|
|
authhost->picked = authhost->want;
|
2004-05-04 03:52:53 -04:00
|
|
|
|
2004-11-24 11:11:35 -05:00
|
|
|
if(authproxy->want && !authproxy->picked)
|
2004-06-15 04:45:22 -04:00
|
|
|
/* The app has selected one or more methods, but none has been picked so
|
|
|
|
far by a proxy round-trip. Then we set the picked one to the want one,
|
|
|
|
and if this is one single bit it'll be used instantly. */
|
2004-11-24 11:11:35 -05:00
|
|
|
authproxy->picked = authproxy->want;
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2008-10-21 19:15:19 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2005-02-18 18:53:07 -05:00
|
|
|
/* Send proxy authentication header if needed */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(conn->bits.httpproxy &&
|
2019-02-25 05:17:53 -05:00
|
|
|
(conn->bits.tunnel_proxy == (bit)proxytunnel)) {
|
2021-01-08 11:58:15 -05:00
|
|
|
result = output_auth_headers(data, conn, authproxy, request, path, TRUE);
|
2008-11-05 19:01:13 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2005-02-18 18:53:07 -05:00
|
|
|
else
|
2008-10-22 13:36:48 -04:00
|
|
|
#else
|
|
|
|
(void)proxytunnel;
|
2008-10-21 19:15:19 -04:00
|
|
|
#endif /* CURL_DISABLE_PROXY */
|
2005-02-18 18:53:07 -05:00
|
|
|
/* we have no proxy so let's pretend we're done authenticating
|
|
|
|
with it */
|
|
|
|
authproxy->done = TRUE;
|
|
|
|
|
|
|
|
/* 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 ||
|
2005-04-25 17:39:48 -04:00
|
|
|
conn->bits.netrc ||
|
2005-02-18 18:53:07 -05:00
|
|
|
!data->state.first_host ||
|
2018-01-19 07:19:25 -05:00
|
|
|
data->set.allow_auth_to_other_hosts ||
|
2016-09-30 12:54:02 -04:00
|
|
|
strcasecompare(data->state.first_host, conn->host.name)) {
|
2021-01-08 11:58:15 -05:00
|
|
|
result = output_auth_headers(data, conn, authhost, request, path, FALSE);
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
2003-09-15 17:11:22 -04:00
|
|
|
else
|
2004-11-24 11:11:35 -05:00
|
|
|
authhost->done = TRUE;
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2021-01-08 10:17:12 -05:00
|
|
|
if(((authhost->multipass && !authhost->done) ||
|
|
|
|
(authproxy->multipass && !authproxy->done)) &&
|
|
|
|
(httpreq != HTTPREQ_GET) &&
|
|
|
|
(httpreq != HTTPREQ_HEAD)) {
|
|
|
|
/* Auth is required and we are not authenticated yet. Make a PUT or POST
|
|
|
|
with content-length zero as a "probe". */
|
|
|
|
conn->bits.authneg = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
conn->bits.authneg = FALSE;
|
|
|
|
|
2003-09-03 17:51:28 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:21 -04:00
|
|
|
#else
|
|
|
|
/* when disabled */
|
|
|
|
CURLcode
|
|
|
|
Curl_http_output_auth(struct connectdata *conn,
|
|
|
|
const char *request,
|
|
|
|
const char *path,
|
|
|
|
bool proxytunnel)
|
|
|
|
{
|
|
|
|
(void)conn;
|
|
|
|
(void)request;
|
|
|
|
(void)path;
|
|
|
|
(void)proxytunnel;
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2003-09-03 17:51:28 -04:00
|
|
|
/*
|
2004-05-04 03:52:53 -04:00
|
|
|
* Curl_http_input_auth() deals with Proxy-Authenticate: and WWW-Authenticate:
|
2013-01-03 20:50:28 -05:00
|
|
|
* headers. They are dealt with both in the transfer.c main loop and in the
|
|
|
|
* proxy CONNECT loop.
|
2003-09-03 17:51:28 -04:00
|
|
|
*/
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_http_input_auth(struct Curl_easy *data, bool proxy,
|
2013-10-30 17:33:28 -04:00
|
|
|
const char *auth) /* the first non-space */
|
2003-09-03 17:51:28 -04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This resource requires authentication
|
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2014-07-21 03:53:46 -04:00
|
|
|
#ifdef USE_SPNEGO
|
2019-05-13 16:42:35 -04:00
|
|
|
curlnegotiate *negstate = proxy ? &conn->proxy_negotiate_state :
|
|
|
|
&conn->http_negotiate_state;
|
2014-07-11 07:11:14 -04:00
|
|
|
#endif
|
2012-04-18 17:04:35 -04:00
|
|
|
unsigned long *availp;
|
2004-05-04 03:52:53 -04:00
|
|
|
struct auth *authp;
|
2003-09-04 06:55:20 -04:00
|
|
|
|
2013-11-03 05:17:26 -05:00
|
|
|
if(proxy) {
|
2003-09-04 06:55:20 -04:00
|
|
|
availp = &data->info.proxyauthavail;
|
2004-05-04 03:52:53 -04:00
|
|
|
authp = &data->state.authproxy;
|
2003-09-04 06:55:20 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
availp = &data->info.httpauthavail;
|
2004-05-04 03:52:53 -04:00
|
|
|
authp = &data->state.authhost;
|
2003-09-04 06:55:20 -04:00
|
|
|
}
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2004-01-09 09:03:06 -05:00
|
|
|
/*
|
2006-10-13 17:02:27 -04:00
|
|
|
* Here we check if we want the specific single authentication (using ==) and
|
2004-01-09 09:03:06 -05:00
|
|
|
* if we do, we initiate usage of it.
|
|
|
|
*
|
|
|
|
* If the provided authentication is wanted as one out of several accepted
|
2006-10-13 17:02:27 -04:00
|
|
|
* types (using &), we OR this authentication type to the authavail
|
2004-01-09 09:03:06 -05:00
|
|
|
* variable.
|
2008-12-08 08:52:20 -05:00
|
|
|
*
|
|
|
|
* Note:
|
|
|
|
*
|
|
|
|
* ->picked is first set to the 'want' value (one or more bits) before the
|
|
|
|
* request is sent, and then it is again set _after_ all response 401/407
|
|
|
|
* headers have been received but then only to a single preferred method
|
|
|
|
* (bit).
|
2004-01-09 09:03:06 -05:00
|
|
|
*/
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2013-10-30 17:33:28 -04:00
|
|
|
while(*auth) {
|
2014-07-21 03:53:46 -04:00
|
|
|
#ifdef USE_SPNEGO
|
2014-07-21 03:53:44 -04:00
|
|
|
if(checkprefix("Negotiate", auth)) {
|
2016-03-20 08:18:23 -04:00
|
|
|
if((authp->avail & CURLAUTH_NEGOTIATE) ||
|
|
|
|
Curl_auth_is_spnego_supported()) {
|
|
|
|
*availp |= CURLAUTH_NEGOTIATE;
|
|
|
|
authp->avail |= CURLAUTH_NEGOTIATE;
|
|
|
|
|
|
|
|
if(authp->picked == CURLAUTH_NEGOTIATE) {
|
2018-09-10 03:18:01 -04:00
|
|
|
CURLcode result = Curl_input_negotiate(conn, proxy, auth);
|
|
|
|
if(!result) {
|
|
|
|
DEBUGASSERT(!data->req.newurl);
|
|
|
|
data->req.newurl = strdup(data->change.url);
|
|
|
|
if(!data->req.newurl)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
data->state.authproblem = FALSE;
|
|
|
|
/* we received a GSS auth token and we dealt with it fine */
|
2019-05-13 16:42:35 -04:00
|
|
|
*negstate = GSS_AUTHRECV;
|
2011-11-03 18:25:17 -04:00
|
|
|
}
|
2018-09-10 03:18:01 -04:00
|
|
|
else
|
|
|
|
data->state.authproblem = TRUE;
|
2004-04-22 16:07:41 -04:00
|
|
|
}
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2011-10-20 07:05:09 -04:00
|
|
|
#ifdef USE_NTLM
|
|
|
|
/* NTLM support requires the SSL crypto libs */
|
2013-10-30 17:33:28 -04:00
|
|
|
if(checkprefix("NTLM", auth)) {
|
2016-03-20 08:18:23 -04:00
|
|
|
if((authp->avail & CURLAUTH_NTLM) ||
|
|
|
|
(authp->avail & CURLAUTH_NTLM_WB) ||
|
|
|
|
Curl_auth_is_ntlm_supported()) {
|
|
|
|
*availp |= CURLAUTH_NTLM;
|
|
|
|
authp->avail |= CURLAUTH_NTLM;
|
|
|
|
|
|
|
|
if(authp->picked == CURLAUTH_NTLM ||
|
|
|
|
authp->picked == CURLAUTH_NTLM_WB) {
|
|
|
|
/* NTLM authentication is picked and activated */
|
2021-01-18 05:56:50 -05:00
|
|
|
CURLcode result = Curl_input_ntlm(data, proxy, auth);
|
2016-03-20 08:18:23 -04:00
|
|
|
if(!result) {
|
|
|
|
data->state.authproblem = FALSE;
|
2011-10-20 07:05:09 -04:00
|
|
|
#ifdef NTLM_WB_ENABLED
|
2016-03-20 08:18:23 -04:00
|
|
|
if(authp->picked == CURLAUTH_NTLM_WB) {
|
|
|
|
*availp &= ~CURLAUTH_NTLM;
|
|
|
|
authp->avail &= ~CURLAUTH_NTLM;
|
|
|
|
*availp |= CURLAUTH_NTLM_WB;
|
|
|
|
authp->avail |= CURLAUTH_NTLM_WB;
|
|
|
|
|
2019-05-15 11:10:56 -04:00
|
|
|
result = Curl_input_ntlm_wb(conn, proxy, auth);
|
|
|
|
if(result) {
|
|
|
|
infof(data, "Authentication problem. Ignoring this.\n");
|
|
|
|
data->state.authproblem = TRUE;
|
2016-03-20 08:18:23 -04:00
|
|
|
}
|
2011-10-20 07:05:09 -04:00
|
|
|
}
|
|
|
|
#endif
|
2016-03-20 08:18:23 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
infof(data, "Authentication problem. Ignoring this.\n");
|
|
|
|
data->state.authproblem = TRUE;
|
|
|
|
}
|
2005-10-20 16:07:32 -04:00
|
|
|
}
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
|
|
|
}
|
2004-11-12 04:18:14 -05:00
|
|
|
else
|
|
|
|
#endif
|
2011-10-20 07:05:09 -04:00
|
|
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
2013-10-30 17:33:28 -04:00
|
|
|
if(checkprefix("Digest", auth)) {
|
2016-08-21 05:25:45 -04:00
|
|
|
if((authp->avail & CURLAUTH_DIGEST) != 0)
|
2011-10-20 07:05:09 -04:00
|
|
|
infof(data, "Ignoring duplicate digest auth header.\n");
|
2016-08-21 05:25:45 -04:00
|
|
|
else if(Curl_auth_is_digest_supported()) {
|
2014-11-05 07:05:34 -05:00
|
|
|
CURLcode result;
|
2016-03-20 08:18:23 -04:00
|
|
|
|
2011-10-20 07:05:09 -04:00
|
|
|
*availp |= CURLAUTH_DIGEST;
|
|
|
|
authp->avail |= CURLAUTH_DIGEST;
|
|
|
|
|
|
|
|
/* We call this function on input Digest headers even if Digest
|
2016-08-20 14:34:54 -04:00
|
|
|
* authentication isn't activated yet, as we need to store the
|
|
|
|
* incoming data from this header in case we are going to use
|
|
|
|
* Digest */
|
2014-11-05 07:05:34 -05:00
|
|
|
result = Curl_input_digest(conn, proxy, auth);
|
|
|
|
if(result) {
|
2011-10-20 07:05:09 -04:00
|
|
|
infof(data, "Authentication problem. Ignoring this.\n");
|
|
|
|
data->state.authproblem = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2003-09-03 17:51:28 -04:00
|
|
|
}
|
2011-10-20 07:05:09 -04:00
|
|
|
else
|
|
|
|
#endif
|
2013-10-30 17:33:28 -04:00
|
|
|
if(checkprefix("Basic", auth)) {
|
2011-10-20 07:05:09 -04:00
|
|
|
*availp |= CURLAUTH_BASIC;
|
|
|
|
authp->avail |= CURLAUTH_BASIC;
|
|
|
|
if(authp->picked == CURLAUTH_BASIC) {
|
|
|
|
/* We asked for Basic authentication but got a 40X back
|
|
|
|
anyway, which basically means our name+password isn't
|
|
|
|
valid. */
|
|
|
|
authp->avail = CURLAUTH_NONE;
|
|
|
|
infof(data, "Authentication problem. Ignoring this.\n");
|
|
|
|
data->state.authproblem = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2018-05-22 06:28:41 -04:00
|
|
|
else
|
|
|
|
if(checkprefix("Bearer", auth)) {
|
|
|
|
*availp |= CURLAUTH_BEARER;
|
|
|
|
authp->avail |= CURLAUTH_BEARER;
|
|
|
|
if(authp->picked == CURLAUTH_BEARER) {
|
|
|
|
/* We asked for Bearer authentication but got a 40X back
|
|
|
|
anyway, which basically means our token isn't valid. */
|
|
|
|
authp->avail = CURLAUTH_NONE;
|
|
|
|
infof(data, "Authentication problem. Ignoring this.\n");
|
|
|
|
data->state.authproblem = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2004-05-04 03:52:53 -04:00
|
|
|
|
2011-10-20 07:05:09 -04:00
|
|
|
/* there may be multiple methods on one line, so keep reading */
|
2013-10-30 17:33:28 -04:00
|
|
|
while(*auth && *auth != ',') /* read up to the next comma */
|
|
|
|
auth++;
|
|
|
|
if(*auth == ',') /* if we're on a comma, skip it */
|
|
|
|
auth++;
|
|
|
|
while(*auth && ISSPACE(*auth))
|
|
|
|
auth++;
|
2011-10-20 07:05:09 -04:00
|
|
|
}
|
2016-03-24 02:35:23 -04:00
|
|
|
|
2003-09-03 17:51:28 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2004-03-30 01:40:01 -05:00
|
|
|
/**
|
2011-06-03 13:51:08 -04:00
|
|
|
* http_should_fail() determines whether an HTTP response has gotten us
|
2004-04-22 08:35:45 -04:00
|
|
|
* into an error state or not.
|
2004-03-30 01:40:01 -05:00
|
|
|
*
|
|
|
|
* @param conn all information about the current connection
|
|
|
|
*
|
2021-01-04 12:28:42 -05:00
|
|
|
* @retval FALSE communications should continue
|
2004-03-30 01:40:01 -05:00
|
|
|
*
|
2021-01-04 12:28:42 -05:00
|
|
|
* @retval TRUE communications should not continue
|
2004-03-30 01:40:01 -05:00
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
static bool http_should_fail(struct Curl_easy *data)
|
2004-03-30 01:40:01 -05:00
|
|
|
{
|
2007-11-24 18:16:55 -05:00
|
|
|
int httpcode;
|
2007-02-21 14:03:20 -05:00
|
|
|
DEBUGASSERT(data);
|
2021-01-08 11:58:15 -05:00
|
|
|
DEBUGASSERT(data->conn);
|
2004-03-30 01:40:01 -05:00
|
|
|
|
2007-11-24 18:16:55 -05:00
|
|
|
httpcode = data->req.httpcode;
|
2004-03-30 01:40:01 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
** If we haven't been asked to fail on error,
|
|
|
|
** don't fail.
|
|
|
|
*/
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!data->set.http_fail_on_error)
|
2021-01-04 12:28:42 -05:00
|
|
|
return FALSE;
|
2004-03-30 01:40:01 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Any code < 400 is never terminal.
|
|
|
|
*/
|
2007-11-24 18:16:55 -05:00
|
|
|
if(httpcode < 400)
|
2021-01-04 12:28:42 -05:00
|
|
|
return FALSE;
|
2004-03-30 01:40:01 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Any code >= 400 that's not 401 or 407 is always
|
|
|
|
** a terminal error
|
|
|
|
*/
|
2016-03-24 02:35:23 -04:00
|
|
|
if((httpcode != 401) && (httpcode != 407))
|
2021-01-04 12:28:42 -05:00
|
|
|
return TRUE;
|
2004-03-30 01:40:01 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
** All we have left to deal with is 401 and 407
|
|
|
|
*/
|
2007-11-24 18:16:55 -05:00
|
|
|
DEBUGASSERT((httpcode == 401) || (httpcode == 407));
|
2004-03-30 01:40:01 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Examine the current authentication state to see if this
|
|
|
|
** is an error. The idea is for this function to get
|
|
|
|
** called after processing all the headers in a response
|
|
|
|
** message. So, if we've been to asked to authenticate a
|
|
|
|
** particular stage, and we've done it, we're OK. But, if
|
|
|
|
** we're already completely authenticated, it's not OK to
|
|
|
|
** get another 401 or 407.
|
|
|
|
**
|
|
|
|
** It is possible for authentication to go stale such that
|
|
|
|
** the client needs to reauthenticate. Once that info is
|
|
|
|
** available, use it here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Either we're not authenticating, or we're supposed to
|
|
|
|
** be authenticating something else. This is an error.
|
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
if((httpcode == 401) && !data->conn->bits.user_passwd)
|
2004-05-04 03:52:53 -04:00
|
|
|
return TRUE;
|
2020-05-27 05:51:34 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2021-01-08 11:58:15 -05:00
|
|
|
if((httpcode == 407) && !data->conn->bits.proxy_user_passwd)
|
2004-05-04 03:52:53 -04:00
|
|
|
return TRUE;
|
2020-05-27 05:51:34 -04:00
|
|
|
#endif
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2004-05-04 03:52:53 -04:00
|
|
|
return data->state.authproblem;
|
2004-03-30 01:40:01 -05:00
|
|
|
}
|
2003-09-03 17:51:28 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef USE_HYPER
|
2004-04-22 08:35:45 -04:00
|
|
|
/*
|
|
|
|
* readmoredata() is a "fread() emulation" to provide POST and/or request
|
|
|
|
* data. It is used when a huge POST is to be made and the entire chunk wasn't
|
|
|
|
* sent in the first send(). This function will then be called from the
|
2013-01-03 20:50:28 -05:00
|
|
|
* transfer.c loop when more data is to be sent to the peer.
|
2004-04-22 08:35:45 -04:00
|
|
|
*
|
|
|
|
* Returns the amount of bytes it filled the buffer with.
|
|
|
|
*/
|
2004-02-26 08:40:43 -05:00
|
|
|
static size_t readmoredata(char *buffer,
|
|
|
|
size_t size,
|
|
|
|
size_t nitems,
|
|
|
|
void *userp)
|
2002-12-10 08:10:00 -05:00
|
|
|
{
|
2021-01-08 11:58:15 -05:00
|
|
|
struct Curl_easy *data = (struct Curl_easy *)userp;
|
|
|
|
struct HTTP *http = data->req.p.http;
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t fullsize = size * nitems;
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2016-03-24 02:35:23 -04:00
|
|
|
if(!http->postsize)
|
2002-12-10 08:10:00 -05:00
|
|
|
/* nothing to return */
|
|
|
|
return 0;
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2002-12-10 08:10:00 -05:00
|
|
|
/* make sure that a HTTP request is never sent away chunked! */
|
2021-01-08 11:58:15 -05:00
|
|
|
data->req.forbidchunk = (http->sending == HTTPSEND_REQUEST)?TRUE:FALSE;
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2004-03-14 13:15:04 -05:00
|
|
|
if(http->postsize <= (curl_off_t)fullsize) {
|
2004-03-12 09:22:16 -05:00
|
|
|
memcpy(buffer, http->postdata, (size_t)http->postsize);
|
|
|
|
fullsize = (size_t)http->postsize;
|
2002-12-10 08:10:00 -05:00
|
|
|
|
|
|
|
if(http->backup.postsize) {
|
|
|
|
/* move backup data into focus and continue on that */
|
|
|
|
http->postdata = http->backup.postdata;
|
|
|
|
http->postsize = http->backup.postsize;
|
2021-01-08 11:58:15 -05:00
|
|
|
data->state.fread_func = http->backup.fread_func;
|
|
|
|
data->state.in = http->backup.fread_in;
|
2002-12-10 08:10:00 -05:00
|
|
|
|
|
|
|
http->sending++; /* move one step up */
|
|
|
|
|
2017-09-09 17:09:06 -04:00
|
|
|
http->backup.postsize = 0;
|
2002-12-10 08:10:00 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
http->postsize = 0;
|
|
|
|
|
|
|
|
return fullsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(buffer, http->postdata, fullsize);
|
|
|
|
http->postdata += fullsize;
|
|
|
|
http->postsize -= fullsize;
|
|
|
|
|
|
|
|
return fullsize;
|
|
|
|
}
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
/*
|
2020-05-02 11:04:08 -04:00
|
|
|
* Curl_buffer_send() sends a header buffer and frees all associated
|
2010-01-22 18:21:39 -05:00
|
|
|
* memory. Body data may be appended to the header data if desired.
|
2004-04-22 08:35:45 -04:00
|
|
|
*
|
|
|
|
* Returns CURLcode
|
2001-01-05 05:11:41 -05:00
|
|
|
*/
|
2020-05-02 11:04:08 -04:00
|
|
|
CURLcode Curl_buffer_send(struct dynbuf *in,
|
2021-01-08 11:58:15 -05:00
|
|
|
struct Curl_easy *data,
|
2020-05-02 11:04:08 -04:00
|
|
|
/* add the number of sent bytes to this
|
|
|
|
counter */
|
|
|
|
curl_off_t *bytes_written,
|
|
|
|
/* how much of the buffer contains body data */
|
|
|
|
size_t included_body_bytes,
|
|
|
|
int socketindex)
|
2001-01-05 05:11:41 -05:00
|
|
|
{
|
2002-01-16 09:47:00 -05:00
|
|
|
ssize_t amount;
|
2014-10-23 16:56:35 -04:00
|
|
|
CURLcode result;
|
2002-01-16 09:47:00 -05:00
|
|
|
char *ptr;
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t size;
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2020-11-23 02:32:41 -05:00
|
|
|
struct HTTP *http = data->req.p.http;
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t sendsize;
|
2006-01-07 17:24:16 -05:00
|
|
|
curl_socket_t sockfd;
|
2007-11-15 18:42:21 -05:00
|
|
|
size_t headersize;
|
2006-01-07 17:24:16 -05:00
|
|
|
|
2007-02-21 14:03:20 -05:00
|
|
|
DEBUGASSERT(socketindex <= SECONDARYSOCKET);
|
2006-01-07 17:24:16 -05:00
|
|
|
|
|
|
|
sockfd = conn->sock[socketindex];
|
2001-10-31 09:57:00 -05:00
|
|
|
|
2002-01-16 09:47:00 -05:00
|
|
|
/* 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 */
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
ptr = Curl_dyn_ptr(in);
|
|
|
|
size = Curl_dyn_len(in);
|
2002-01-16 09:47:00 -05:00
|
|
|
|
2007-11-15 18:42:21 -05:00
|
|
|
headersize = size - included_body_bytes; /* the initial part that isn't body
|
|
|
|
is header */
|
|
|
|
|
2007-11-15 20:19:46 -05:00
|
|
|
DEBUGASSERT(size > included_body_bytes);
|
2007-11-15 18:30:59 -05:00
|
|
|
|
2018-08-16 18:49:37 -04:00
|
|
|
result = Curl_convert_to_network(data, ptr, headersize);
|
2007-11-15 18:30:59 -05:00
|
|
|
/* Curl_convert_to_network calls failf if unsuccessful */
|
2014-10-23 16:56:35 -04:00
|
|
|
if(result) {
|
2007-11-15 18:30:59 -05:00
|
|
|
/* conversion failed, free memory and return to the caller */
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_free(in);
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2007-01-14 09:57:51 -05:00
|
|
|
}
|
|
|
|
|
2020-05-27 05:51:34 -04:00
|
|
|
if((conn->handler->flags & PROTOPT_SSL
|
|
|
|
#ifndef CURL_DISABLE_PROXY
|
|
|
|
|| conn->http_proxy.proxytype == CURLPROXY_HTTPS
|
|
|
|
#endif
|
|
|
|
)
|
2016-11-16 12:49:15 -05:00
|
|
|
&& conn->httpversion != 20) {
|
2003-06-06 10:58:26 -04:00
|
|
|
/* We never send more than CURL_MAX_WRITE_SIZE bytes in one single chunk
|
|
|
|
when we speak HTTPS, as if only a fraction of it is sent now, this data
|
|
|
|
needs to fit into the normal read-callback buffer later on and that
|
|
|
|
buffer is using this size.
|
|
|
|
*/
|
|
|
|
|
2017-04-25 08:38:34 -04:00
|
|
|
sendsize = CURLMIN(size, CURL_MAX_WRITE_SIZE);
|
2003-06-06 10:58:26 -04:00
|
|
|
|
|
|
|
/* OpenSSL is very picky and we must send the SAME buffer pointer to the
|
|
|
|
library when we attempt to re-send this buffer. Sending the same data
|
|
|
|
is not enough, we must use the exact same address. For this reason, we
|
|
|
|
must copy the data to the uploadbuffer first, since that is the buffer
|
|
|
|
we will be using if this send is retried later.
|
|
|
|
*/
|
2018-08-16 18:49:37 -04:00
|
|
|
result = Curl_get_upload_buffer(data);
|
|
|
|
if(result) {
|
|
|
|
/* malloc failed, free memory and return to the caller */
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_free(in);
|
2018-08-16 18:49:37 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
memcpy(data->state.ulbuf, ptr, sendsize);
|
|
|
|
ptr = data->state.ulbuf;
|
2003-06-06 10:58:26 -04:00
|
|
|
}
|
2020-04-07 09:09:04 -04:00
|
|
|
else {
|
|
|
|
#ifdef CURLDEBUG
|
2021-01-07 15:11:17 -05:00
|
|
|
/* Allow debug builds to override this logic to force short initial
|
|
|
|
sends
|
|
|
|
*/
|
2020-04-07 09:09:04 -04:00
|
|
|
char *p = getenv("CURL_SMALLREQSEND");
|
|
|
|
if(p) {
|
|
|
|
size_t altsize = (size_t)strtoul(p, NULL, 10);
|
|
|
|
if(altsize)
|
|
|
|
sendsize = CURLMIN(size, altsize);
|
|
|
|
else
|
|
|
|
sendsize = size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2003-06-06 10:58:26 -04:00
|
|
|
sendsize = size;
|
2020-04-07 09:09:04 -04:00
|
|
|
}
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_write(data, sockfd, ptr, sendsize, &amount);
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
if(!result) {
|
2007-11-15 18:42:21 -05:00
|
|
|
/*
|
|
|
|
* Note that we may not send the entire chunk at once, and we have a set
|
|
|
|
* number of data bytes at the end of the big buffer (out of which we may
|
|
|
|
* only send away a part).
|
|
|
|
*/
|
|
|
|
/* how much of the header that was sent */
|
2016-03-24 02:35:23 -04:00
|
|
|
size_t headlen = (size_t)amount>headersize ? headersize : (size_t)amount;
|
2007-11-15 18:42:21 -05:00
|
|
|
size_t bodylen = amount - headlen;
|
2002-01-16 09:47:00 -05:00
|
|
|
|
2020-11-02 11:34:04 -05:00
|
|
|
/* this data _may_ contain binary stuff */
|
|
|
|
Curl_debug(data, CURLINFO_HEADER_OUT, ptr, headlen);
|
|
|
|
if(bodylen)
|
|
|
|
/* there was body data sent beyond the initial header part, pass that on
|
|
|
|
to the debug callback too */
|
|
|
|
Curl_debug(data, CURLINFO_DATA_OUT, ptr + headlen, bodylen);
|
2002-04-12 03:21:11 -04:00
|
|
|
|
2010-07-24 16:52:35 -04:00
|
|
|
/* 'amount' can never be a very large value here so typecasting it so a
|
|
|
|
signed 31 bit value should not cause problems even if ssize_t is
|
|
|
|
64bit */
|
|
|
|
*bytes_written += (long)amount;
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2005-05-11 05:52:59 -04:00
|
|
|
if(http) {
|
2016-03-31 04:00:55 -04:00
|
|
|
/* if we sent a piece of the body here, up the byte counter for it
|
|
|
|
accordingly */
|
2019-02-28 05:36:26 -05:00
|
|
|
data->req.writebytecount += bodylen;
|
|
|
|
Curl_pgrsSetUploadCounter(data, data->req.writebytecount);
|
2016-03-31 04:00:55 -04:00
|
|
|
|
2005-05-11 05:52:59 -04:00
|
|
|
if((size_t)amount != size) {
|
|
|
|
/* 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. */
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2005-05-11 05:52:59 -04:00
|
|
|
size -= amount;
|
2003-06-26 07:24:55 -04:00
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
ptr = Curl_dyn_ptr(in) + amount;
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2005-05-11 05:52:59 -04:00
|
|
|
/* backup the currently set pointers */
|
2018-08-16 18:49:37 -04:00
|
|
|
http->backup.fread_func = data->state.fread_func;
|
|
|
|
http->backup.fread_in = data->state.in;
|
2005-05-11 05:52:59 -04:00
|
|
|
http->backup.postdata = http->postdata;
|
|
|
|
http->backup.postsize = http->postsize;
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2005-05-11 05:52:59 -04:00
|
|
|
/* set the new pointers for the request-sending */
|
2018-08-16 18:49:37 -04:00
|
|
|
data->state.fread_func = (curl_read_callback)readmoredata;
|
2021-01-08 11:58:15 -05:00
|
|
|
data->state.in = (void *)data;
|
2005-05-11 05:52:59 -04:00
|
|
|
http->postdata = ptr;
|
|
|
|
http->postsize = (curl_off_t)size;
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2020-12-15 10:53:04 -05:00
|
|
|
/* this much data is remaining header: */
|
|
|
|
data->req.pendingheader = headersize - headlen;
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
http->send_buffer = *in; /* copy the whole struct */
|
2005-05-11 05:52:59 -04:00
|
|
|
http->sending = HTTPSEND_REQUEST;
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2005-05-11 05:52:59 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
http->sending = HTTPSEND_BODY;
|
|
|
|
/* the full buffer was sent, clean up and return */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if((size_t)amount != size)
|
|
|
|
/* We have no continue-send mechanism now, fail. This can only happen
|
|
|
|
when this function is used from the CONNECT sending function. We
|
|
|
|
currently (stupidly) assume that the whole request is always sent
|
|
|
|
away in the first single chunk.
|
|
|
|
|
|
|
|
This needs FIXing.
|
|
|
|
*/
|
|
|
|
return CURLE_SEND_ERROR;
|
2002-01-16 09:47:00 -05:00
|
|
|
}
|
2002-12-10 08:10:00 -05:00
|
|
|
}
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_free(in);
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2020-12-15 10:53:04 -05:00
|
|
|
/* no remaining header data */
|
|
|
|
data->req.pendingheader = 0;
|
2014-10-23 16:56:35 -04:00
|
|
|
return result;
|
2001-01-05 05:11:41 -05:00
|
|
|
}
|
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#endif
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
/* end of the add_buffer functions */
|
2001-03-07 18:51:41 -05:00
|
|
|
/* ------------------------------------------------------------------------- */
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2010-01-21 08:58:30 -05:00
|
|
|
|
|
|
|
|
2002-11-28 10:45:06 -05:00
|
|
|
/*
|
|
|
|
* Curl_compareheader()
|
|
|
|
*
|
|
|
|
* Returns TRUE if 'headerline' contains the 'header' with given 'content'.
|
|
|
|
* Pass headers WITH the colon.
|
|
|
|
*/
|
|
|
|
bool
|
2007-08-26 01:53:26 -04:00
|
|
|
Curl_compareheader(const char *headerline, /* line to check */
|
2002-11-28 10:45:06 -05:00
|
|
|
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;
|
2007-08-26 01:53:26 -04:00
|
|
|
const char *start;
|
|
|
|
const char *end;
|
2002-11-28 10:45:06 -05:00
|
|
|
|
2016-09-30 12:54:02 -04:00
|
|
|
if(!strncasecompare(headerline, header, hlen))
|
2002-11-28 10:45:06 -05:00
|
|
|
return FALSE; /* doesn't start with header */
|
|
|
|
|
|
|
|
/* pass the header */
|
|
|
|
start = &headerline[hlen];
|
|
|
|
|
2020-09-30 15:10:14 -04:00
|
|
|
/* pass all whitespace */
|
2006-10-17 17:32:56 -04:00
|
|
|
while(*start && ISSPACE(*start))
|
2002-11-28 10:45:06 -05:00
|
|
|
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 */
|
2017-09-11 03:27:06 -04:00
|
|
|
for(; len >= clen; len--, start++) {
|
2016-09-30 12:54:02 -04:00
|
|
|
if(strncasecompare(start, content, clen))
|
2002-11-28 10:45:06 -05:00
|
|
|
return TRUE; /* match! */
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE; /* no match */
|
|
|
|
}
|
|
|
|
|
2001-03-07 18:51:41 -05:00
|
|
|
/*
|
2004-04-22 08:35:45 -04:00
|
|
|
* Curl_http_connect() performs HTTP stuff to do at connect-time, called from
|
|
|
|
* the generic Curl_connect().
|
2001-03-07 18:51:41 -05:00
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_http_connect(struct Curl_easy *data, bool *done)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2000-09-14 10:05:01 -04:00
|
|
|
CURLcode result;
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2007-02-18 18:02:42 -05:00
|
|
|
/* We default to persistent connections. We set this already in this connect
|
|
|
|
function to make the re-use checks properly be able to check this bit. */
|
2014-05-20 04:32:23 -04:00
|
|
|
connkeep(conn, "HTTP default");
|
2007-02-18 18:02:42 -05:00
|
|
|
|
2020-05-27 05:51:34 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2013-01-17 06:59:23 -05:00
|
|
|
/* the CONNECT procedure might not have been completed */
|
2016-11-16 12:49:15 -05:00
|
|
|
result = Curl_proxy_connect(conn, FIRSTSOCKET);
|
2013-01-17 06:59:23 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2012-03-21 18:22:39 -04:00
|
|
|
|
2017-03-10 17:57:09 -05:00
|
|
|
if(conn->bits.proxy_connect_closed)
|
|
|
|
/* this is not an error, just part of the connection negotiation */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
2016-11-16 12:49:15 -05:00
|
|
|
if(CONNECT_FIRSTSOCKET_PROXY_SSL())
|
|
|
|
return CURLE_OK; /* wait for HTTPS proxy SSL initialization to complete */
|
|
|
|
|
2017-08-18 04:43:02 -04:00
|
|
|
if(Curl_connect_ongoing(conn))
|
2007-02-25 06:38:13 -05:00
|
|
|
/* nothing else to do except wait right now - we're not done here. */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
if(data->set.haproxyprotocol) {
|
2016-12-01 07:05:04 -05:00
|
|
|
/* add HAProxy PROXY protocol header */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = add_haproxy_protocol_header(data);
|
2016-12-01 07:05:04 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2019-05-05 11:08:22 -04:00
|
|
|
#endif
|
2016-12-01 07:05:04 -05:00
|
|
|
|
2017-03-28 09:50:59 -04:00
|
|
|
if(conn->given->protocol & CURLPROTO_HTTPS) {
|
2006-03-21 16:54:44 -05:00
|
|
|
/* perform SSL initialization */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = https_connecting(data, done);
|
2013-01-17 06:59:23 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2006-03-21 16:54:44 -05:00
|
|
|
}
|
2013-01-17 06:59:23 -05:00
|
|
|
else
|
2006-03-21 16:54:44 -05:00
|
|
|
*done = TRUE;
|
2005-02-09 08:06:40 -05:00
|
|
|
|
2000-09-14 10:05:01 -04:00
|
|
|
return CURLE_OK;
|
2000-05-22 10:12:12 -04:00
|
|
|
}
|
2000-07-25 17:16:32 -04:00
|
|
|
|
2008-05-19 16:57:28 -04:00
|
|
|
/* this returns the socket to wait for in the DO and DOING state for the multi
|
|
|
|
interface and then we're always _sending_ a request and thus we wait for
|
|
|
|
the single socket to become writable only */
|
2021-01-08 11:58:15 -05:00
|
|
|
static int http_getsock_do(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
2019-07-30 05:02:03 -04:00
|
|
|
curl_socket_t *socks)
|
2008-05-19 16:57:28 -04:00
|
|
|
{
|
|
|
|
/* write mode */
|
2021-01-08 11:58:15 -05:00
|
|
|
(void)data;
|
2008-05-19 16:57:28 -04:00
|
|
|
socks[0] = conn->sock[FIRSTSOCKET];
|
|
|
|
return GETSOCK_WRITESOCK(0);
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:22 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode add_haproxy_protocol_header(struct Curl_easy *data)
|
2016-12-01 07:05:04 -05:00
|
|
|
{
|
|
|
|
char proxy_header[128];
|
2020-05-02 11:04:08 -04:00
|
|
|
struct dynbuf req;
|
2016-12-01 07:05:04 -05:00
|
|
|
CURLcode result;
|
|
|
|
char tcp_version[5];
|
2021-01-08 11:58:15 -05:00
|
|
|
DEBUGASSERT(data->conn);
|
2016-12-01 07:05:04 -05:00
|
|
|
|
|
|
|
/* Emit the correct prefix for IPv6 */
|
2021-01-08 11:58:15 -05:00
|
|
|
if(data->conn->bits.ipv6) {
|
2016-12-01 07:05:04 -05:00
|
|
|
strcpy(tcp_version, "TCP6");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
strcpy(tcp_version, "TCP4");
|
|
|
|
}
|
|
|
|
|
2018-11-22 03:01:24 -05:00
|
|
|
msnprintf(proxy_header,
|
|
|
|
sizeof(proxy_header),
|
|
|
|
"PROXY %s %s %s %li %li\r\n",
|
|
|
|
tcp_version,
|
2021-01-08 11:58:15 -05:00
|
|
|
data->info.conn_local_ip,
|
|
|
|
data->info.conn_primary_ip,
|
|
|
|
data->info.conn_local_port,
|
|
|
|
data->info.conn_primary_port);
|
2016-12-01 07:05:04 -05:00
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_init(&req, DYN_HAXPROXY);
|
2016-12-01 07:05:04 -05:00
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_add(&req, proxy_header);
|
2016-12-01 07:05:04 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_buffer_send(&req, data, &data->info.request_size,
|
2020-05-02 11:04:08 -04:00
|
|
|
0, FIRSTSOCKET);
|
2016-12-01 07:05:04 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2019-05-05 11:08:22 -04:00
|
|
|
#endif
|
2016-12-01 07:05:04 -05:00
|
|
|
|
2008-11-11 17:19:27 -05:00
|
|
|
#ifdef USE_SSL
|
2021-01-08 11:58:15 -05:00
|
|
|
static CURLcode https_connecting(struct Curl_easy *data, bool *done)
|
2006-03-21 16:54:44 -05:00
|
|
|
{
|
|
|
|
CURLcode result;
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
|
|
|
DEBUGASSERT((data) && (data->conn->handler->flags & PROTOPT_SSL));
|
2006-03-21 16:54:44 -05:00
|
|
|
|
2019-07-21 17:48:58 -04:00
|
|
|
#ifdef ENABLE_QUIC
|
|
|
|
if(conn->transport == TRNSPRT_QUIC) {
|
2019-08-12 10:28:28 -04:00
|
|
|
*done = TRUE;
|
|
|
|
return CURLE_OK;
|
2019-07-21 17:48:58 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-21 16:54:44 -05:00
|
|
|
/* perform SSL initialization for this socket */
|
2021-01-13 11:01:31 -05:00
|
|
|
result = Curl_ssl_connect_nonblocking(data, conn, FIRSTSOCKET, done);
|
2008-10-23 21:27:00 -04:00
|
|
|
if(result)
|
2014-05-20 04:32:23 -04:00
|
|
|
connclose(conn, "Failed HTTPS connection");
|
|
|
|
|
2008-10-23 21:27:00 -04:00
|
|
|
return result;
|
2006-03-21 16:54:44 -05:00
|
|
|
}
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
static int https_getsock(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
2019-07-30 05:02:03 -04:00
|
|
|
curl_socket_t *socks)
|
2007-02-12 17:32:37 -05:00
|
|
|
{
|
2021-01-08 11:58:15 -05:00
|
|
|
(void)data;
|
2016-11-16 12:49:15 -05:00
|
|
|
if(conn->handler->flags & PROTOPT_SSL)
|
2019-07-30 05:02:03 -04:00
|
|
|
return Curl_ssl_getsock(conn, socks);
|
2007-02-12 17:32:37 -05:00
|
|
|
return GETSOCK_BLANK;
|
|
|
|
}
|
2012-04-09 09:19:54 -04:00
|
|
|
#endif /* USE_SSL */
|
2006-03-21 16:54:44 -05:00
|
|
|
|
2004-04-22 08:35:45 -04:00
|
|
|
/*
|
2016-03-29 18:17:02 -04:00
|
|
|
* Curl_http_done() gets called after a single HTTP request has been
|
|
|
|
* performed.
|
2004-04-22 08:35:45 -04:00
|
|
|
*/
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_http_done(struct Curl_easy *data,
|
2007-01-16 17:22:10 -05:00
|
|
|
CURLcode status, bool premature)
|
2000-05-22 10:12:12 -04:00
|
|
|
{
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2020-11-23 02:32:41 -05:00
|
|
|
struct HTTP *http = data->req.p.http;
|
2016-08-11 08:00:23 -04:00
|
|
|
|
2017-01-26 17:42:28 -05:00
|
|
|
/* Clear multipass flag. If authentication isn't done yet, then it will get
|
|
|
|
* a chance to be set back to true when we output the next auth header */
|
|
|
|
data->state.authhost.multipass = FALSE;
|
|
|
|
data->state.authproxy.multipass = FALSE;
|
|
|
|
|
2009-05-11 05:55:28 -04:00
|
|
|
Curl_unencode_cleanup(conn);
|
|
|
|
|
2002-12-09 11:05:57 -05:00
|
|
|
/* set the proper values (possibly modified on POST) */
|
2008-01-10 05:30:19 -05:00
|
|
|
conn->seek_func = data->set.seek_func; /* restore */
|
|
|
|
conn->seek_client = data->set.seek_client; /* restore */
|
2002-12-09 11:05:57 -05:00
|
|
|
|
2016-03-24 02:35:23 -04:00
|
|
|
if(!http)
|
2003-07-04 12:29:23 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_free(&http->send_buffer);
|
2019-12-09 05:53:54 -05:00
|
|
|
Curl_http2_done(data, premature);
|
2019-11-16 02:57:45 -05:00
|
|
|
Curl_quic_done(data, premature);
|
2017-09-02 12:47:10 -04:00
|
|
|
Curl_mime_cleanpart(&http->form);
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_reset(&data->state.headerb);
|
2020-12-14 08:10:33 -05:00
|
|
|
Curl_hyper_done(data);
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2014-10-23 16:56:35 -04:00
|
|
|
if(status)
|
|
|
|
return status;
|
2005-02-06 07:43:40 -05:00
|
|
|
|
2008-02-17 08:49:01 -05:00
|
|
|
if(!premature && /* this check is pointless when DONE is called before the
|
2008-02-17 08:40:35 -05:00
|
|
|
entire operation is complete */
|
|
|
|
!conn->bits.retry &&
|
2013-08-04 13:34:16 -04:00
|
|
|
!data->set.connect_only &&
|
2019-02-28 05:36:26 -05:00
|
|
|
(data->req.bytecount +
|
2016-03-31 04:03:04 -04:00
|
|
|
data->req.headerbytecount -
|
|
|
|
data->req.deductheadercount) <= 0) {
|
2004-02-02 09:49:54 -05:00
|
|
|
/* If this connection isn't simply closed to be retried, AND nothing was
|
2004-04-07 10:27:54 -04:00
|
|
|
read from the HTTP server (that counts), this can't be right so we
|
|
|
|
return an error here */
|
2001-12-11 08:13:01 -05:00
|
|
|
failf(data, "Empty reply from server");
|
2001-10-19 07:58:32 -04:00
|
|
|
return CURLE_GOT_NOTHING;
|
|
|
|
}
|
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2013-09-04 17:24:15 -04:00
|
|
|
/*
|
|
|
|
* Determine if we should use HTTP 1.1 (OR BETTER) for this request. Reasons
|
|
|
|
* to avoid it include:
|
|
|
|
*
|
|
|
|
* - if the user specifically requested HTTP 1.0
|
|
|
|
* - if the server we are connected to only supports 1.0
|
|
|
|
* - if any server previously contacted to handle this request only supports
|
|
|
|
* 1.0.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
static bool use_http_1_1plus(const struct Curl_easy *data,
|
2013-09-04 17:24:15 -04:00
|
|
|
const struct connectdata *conn)
|
2008-09-05 13:58:53 -04:00
|
|
|
{
|
2015-12-13 03:23:36 -05:00
|
|
|
if((data->state.httpversion == 10) || (conn->httpversion == 10))
|
|
|
|
return FALSE;
|
|
|
|
if((data->set.httpversion == CURL_HTTP_VERSION_1_0) &&
|
|
|
|
(conn->httpversion <= 10))
|
|
|
|
return FALSE;
|
|
|
|
return ((data->set.httpversion == CURL_HTTP_VERSION_NONE) ||
|
|
|
|
(data->set.httpversion >= CURL_HTTP_VERSION_1_1));
|
2008-09-05 13:58:53 -04:00
|
|
|
}
|
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef USE_HYPER
|
2017-01-13 17:28:41 -05:00
|
|
|
static const char *get_http_string(const struct Curl_easy *data,
|
|
|
|
const struct connectdata *conn)
|
|
|
|
{
|
2019-08-07 13:30:53 -04:00
|
|
|
#ifdef ENABLE_QUIC
|
|
|
|
if((data->set.httpversion == CURL_HTTP_VERSION_3) ||
|
|
|
|
(conn->httpversion == 30))
|
|
|
|
return "3";
|
|
|
|
#endif
|
|
|
|
|
2017-01-13 17:28:41 -05:00
|
|
|
#ifdef USE_NGHTTP2
|
|
|
|
if(conn->proto.httpc.h2)
|
|
|
|
return "2";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(use_http_1_1plus(data, conn))
|
|
|
|
return "1.1";
|
|
|
|
|
|
|
|
return "1.0";
|
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
#endif
|
2017-01-13 17:28:41 -05:00
|
|
|
|
2005-04-18 13:14:58 -04:00
|
|
|
/* check and possibly add an Expect: header */
|
2016-06-21 09:47:12 -04:00
|
|
|
static CURLcode expect100(struct Curl_easy *data,
|
2008-09-05 13:58:53 -04:00
|
|
|
struct connectdata *conn,
|
2020-05-02 11:04:08 -04:00
|
|
|
struct dynbuf *req)
|
2005-04-18 13:14:58 -04:00
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
2006-08-08 17:12:49 -04:00
|
|
|
data->state.expect100header = FALSE; /* default to false unless it is set
|
|
|
|
to TRUE below */
|
2020-02-26 16:48:09 -05:00
|
|
|
if(!data->state.disableexpect && use_http_1_1plus(data, conn) &&
|
2019-08-20 03:59:28 -04:00
|
|
|
(conn->httpversion < 20)) {
|
2015-03-17 10:09:34 -04:00
|
|
|
/* if not doing HTTP 1.0 or version 2, or disabled explicitly, we add an
|
|
|
|
Expect: 100-continue to the headers which actually speeds up post
|
|
|
|
operations (as there is one packet coming back from the web server) */
|
2021-01-08 11:58:15 -05:00
|
|
|
const char *ptr = Curl_checkheaders(data, "Expect");
|
2011-04-20 09:17:42 -04:00
|
|
|
if(ptr) {
|
2009-12-01 07:04:54 -05:00
|
|
|
data->state.expect100header =
|
|
|
|
Curl_compareheader(ptr, "Expect:", "100-continue");
|
|
|
|
}
|
|
|
|
else {
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_add(req, "Expect: 100-continue\r\n");
|
2014-10-23 16:56:35 -04:00
|
|
|
if(!result)
|
2009-12-01 07:04:54 -05:00
|
|
|
data->state.expect100header = TRUE;
|
|
|
|
}
|
2005-04-18 13:14:58 -04:00
|
|
|
}
|
2016-03-24 02:35:23 -04:00
|
|
|
|
2005-04-18 13:14:58 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-02-20 11:10:00 -05:00
|
|
|
enum proxy_use {
|
|
|
|
HEADER_SERVER, /* direct to server */
|
|
|
|
HEADER_PROXY, /* regular request to proxy */
|
|
|
|
HEADER_CONNECT /* sending CONNECT to a proxy */
|
|
|
|
};
|
|
|
|
|
2018-12-06 04:18:03 -05:00
|
|
|
/* used to compile the provided trailers into one buffer
|
|
|
|
will return an error code if one of the headers is
|
|
|
|
not formatted correctly */
|
|
|
|
CURLcode Curl_http_compile_trailers(struct curl_slist *trailers,
|
2020-05-02 11:04:08 -04:00
|
|
|
struct dynbuf *b,
|
2018-12-06 04:18:03 -05:00
|
|
|
struct Curl_easy *handle)
|
|
|
|
{
|
|
|
|
char *ptr = NULL;
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
const char *endofline_native = NULL;
|
|
|
|
const char *endofline_network = NULL;
|
|
|
|
|
|
|
|
if(
|
|
|
|
#ifdef CURL_DO_LINEEND_CONV
|
|
|
|
(handle->set.prefer_ascii) ||
|
|
|
|
#endif
|
|
|
|
(handle->set.crlf)) {
|
|
|
|
/* \n will become \r\n later on */
|
|
|
|
endofline_native = "\n";
|
|
|
|
endofline_network = "\x0a";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
endofline_native = "\r\n";
|
|
|
|
endofline_network = "\x0d\x0a";
|
|
|
|
}
|
|
|
|
|
|
|
|
while(trailers) {
|
|
|
|
/* only add correctly formatted trailers */
|
|
|
|
ptr = strchr(trailers->data, ':');
|
|
|
|
if(ptr && *(ptr + 1) == ' ') {
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_add(b, trailers->data);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
result = Curl_dyn_add(b, endofline_native);
|
2018-12-06 04:18:03 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
infof(handle, "Malformatted trailing header ! Skipping trailer.");
|
|
|
|
trailers = trailers->next;
|
|
|
|
}
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_add(b, endofline_network);
|
2018-12-06 04:18:03 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_add_custom_headers(struct Curl_easy *data,
|
2014-02-20 11:10:00 -05:00
|
|
|
bool is_connect,
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef USE_HYPER
|
|
|
|
struct dynbuf *req
|
|
|
|
#else
|
|
|
|
void *req
|
|
|
|
#endif
|
|
|
|
)
|
2005-05-11 05:52:59 -04:00
|
|
|
{
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2005-05-11 05:52:59 -04:00
|
|
|
char *ptr;
|
2014-02-20 11:10:00 -05:00
|
|
|
struct curl_slist *h[2];
|
|
|
|
struct curl_slist *headers;
|
2017-09-09 17:09:06 -04:00
|
|
|
int numlists = 1; /* by default */
|
2014-02-20 11:10:00 -05:00
|
|
|
int i;
|
2005-05-11 05:52:59 -04:00
|
|
|
|
2020-05-27 05:51:34 -04:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
2014-02-20 11:10:00 -05:00
|
|
|
enum proxy_use proxy;
|
|
|
|
|
|
|
|
if(is_connect)
|
|
|
|
proxy = HEADER_CONNECT;
|
|
|
|
else
|
|
|
|
proxy = conn->bits.httpproxy && !conn->bits.tunnel_proxy?
|
|
|
|
HEADER_PROXY:HEADER_SERVER;
|
|
|
|
|
|
|
|
switch(proxy) {
|
|
|
|
case HEADER_SERVER:
|
|
|
|
h[0] = data->set.headers;
|
|
|
|
break;
|
|
|
|
case HEADER_PROXY:
|
|
|
|
h[0] = data->set.headers;
|
|
|
|
if(data->set.sep_headers) {
|
|
|
|
h[1] = data->set.proxyheaders;
|
|
|
|
numlists++;
|
2005-05-11 05:52:59 -04:00
|
|
|
}
|
2014-02-20 11:10:00 -05:00
|
|
|
break;
|
|
|
|
case HEADER_CONNECT:
|
|
|
|
if(data->set.sep_headers)
|
|
|
|
h[0] = data->set.proxyheaders;
|
|
|
|
else
|
|
|
|
h[0] = data->set.headers;
|
|
|
|
break;
|
|
|
|
}
|
2020-05-27 05:51:34 -04:00
|
|
|
#else
|
|
|
|
(void)is_connect;
|
|
|
|
h[0] = data->set.headers;
|
|
|
|
#endif
|
2014-02-20 11:10:00 -05:00
|
|
|
|
|
|
|
/* loop through one or two lists */
|
2017-09-09 17:09:06 -04:00
|
|
|
for(i = 0; i < numlists; i++) {
|
2014-02-20 11:10:00 -05:00
|
|
|
headers = h[i];
|
|
|
|
|
|
|
|
while(headers) {
|
2018-03-05 17:38:16 -05:00
|
|
|
char *semicolonp = NULL;
|
2014-02-20 11:10:00 -05:00
|
|
|
ptr = strchr(headers->data, ':');
|
2018-03-05 17:38:16 -05:00
|
|
|
if(!ptr) {
|
|
|
|
char *optr;
|
|
|
|
/* no colon, semicolon? */
|
|
|
|
ptr = strchr(headers->data, ';');
|
|
|
|
if(ptr) {
|
|
|
|
optr = ptr;
|
|
|
|
ptr++; /* pass the semicolon */
|
|
|
|
while(*ptr && ISSPACE(*ptr))
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
if(*ptr) {
|
|
|
|
/* this may be used for something else in the future */
|
|
|
|
optr = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(*(--ptr) == ';') {
|
2019-02-18 02:14:52 -05:00
|
|
|
/* copy the source */
|
|
|
|
semicolonp = strdup(headers->data);
|
|
|
|
if(!semicolonp) {
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef USE_HYPER
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_free(req);
|
2020-12-14 08:10:33 -05:00
|
|
|
#endif
|
2019-02-18 02:14:52 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
/* put a colon where the semicolon is */
|
|
|
|
semicolonp[ptr - headers->data] = ':';
|
|
|
|
/* point at the colon */
|
|
|
|
optr = &semicolonp [ptr - headers->data];
|
2018-03-05 17:38:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ptr = optr;
|
|
|
|
}
|
|
|
|
}
|
2011-09-08 18:39:39 -04:00
|
|
|
if(ptr) {
|
2014-02-20 11:10:00 -05:00
|
|
|
/* we require a colon for this to be a true header */
|
2011-09-08 18:39:39 -04:00
|
|
|
|
2014-02-20 11:10:00 -05:00
|
|
|
ptr++; /* pass the colon */
|
2011-09-08 18:39:39 -04:00
|
|
|
while(*ptr && ISSPACE(*ptr))
|
|
|
|
ptr++;
|
|
|
|
|
2018-03-05 17:38:16 -05:00
|
|
|
if(*ptr || semicolonp) {
|
|
|
|
/* only send this if the contents was non-blank or done special */
|
|
|
|
CURLcode result = CURLE_OK;
|
2019-02-18 02:14:52 -05:00
|
|
|
char *compare = semicolonp ? semicolonp : headers->data;
|
2014-02-20 11:10:00 -05:00
|
|
|
|
2020-06-15 05:28:17 -04:00
|
|
|
if(data->state.aptr.host &&
|
2014-02-20 11:10:00 -05:00
|
|
|
/* a Host: header was sent already, don't pass on any custom Host:
|
|
|
|
header as that will produce *two* in the same request! */
|
2019-02-18 02:14:52 -05:00
|
|
|
checkprefix("Host:", compare))
|
2014-02-20 11:10:00 -05:00
|
|
|
;
|
2020-06-01 16:58:46 -04:00
|
|
|
else if(data->state.httpreq == HTTPREQ_POST_FORM &&
|
2014-02-20 11:10:00 -05:00
|
|
|
/* this header (extended by formdata.c) is sent later */
|
2019-02-18 02:14:52 -05:00
|
|
|
checkprefix("Content-Type:", compare))
|
2014-02-20 11:10:00 -05:00
|
|
|
;
|
2020-06-01 16:58:46 -04:00
|
|
|
else if(data->state.httpreq == HTTPREQ_POST_MIME &&
|
2017-09-02 12:47:10 -04:00
|
|
|
/* this header is sent later */
|
2019-02-18 02:14:52 -05:00
|
|
|
checkprefix("Content-Type:", compare))
|
2017-09-02 12:47:10 -04:00
|
|
|
;
|
2014-02-20 11:10:00 -05:00
|
|
|
else if(conn->bits.authneg &&
|
|
|
|
/* while doing auth neg, don't allow the custom length since
|
|
|
|
we will force length zero then */
|
2019-02-18 02:14:52 -05:00
|
|
|
checkprefix("Content-Length:", compare))
|
2014-02-20 11:10:00 -05:00
|
|
|
;
|
2020-06-15 05:28:17 -04:00
|
|
|
else if(data->state.aptr.te &&
|
2014-02-20 11:10:00 -05:00
|
|
|
/* when asking for Transfer-Encoding, don't pass on a custom
|
|
|
|
Connection: */
|
2019-02-18 02:14:52 -05:00
|
|
|
checkprefix("Connection:", compare))
|
2014-02-20 11:10:00 -05:00
|
|
|
;
|
2019-08-20 03:59:28 -04:00
|
|
|
else if((conn->httpversion >= 20) &&
|
2019-02-18 02:14:52 -05:00
|
|
|
checkprefix("Transfer-Encoding:", compare))
|
2016-09-15 08:01:06 -04:00
|
|
|
/* HTTP/2 doesn't support chunked requests */
|
|
|
|
;
|
2019-02-18 02:14:52 -05:00
|
|
|
else if((checkprefix("Authorization:", compare) ||
|
|
|
|
checkprefix("Cookie:", compare)) &&
|
2018-01-19 07:19:25 -05:00
|
|
|
/* be careful of sending this potentially sensitive header to
|
|
|
|
other hosts */
|
|
|
|
(data->state.this_is_a_follow &&
|
|
|
|
data->state.first_host &&
|
|
|
|
!data->set.allow_auth_to_other_hosts &&
|
|
|
|
!strcasecompare(data->state.first_host, conn->host.name)))
|
|
|
|
;
|
2014-02-20 11:10:00 -05:00
|
|
|
else {
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifdef USE_HYPER
|
|
|
|
result = Curl_hyper_header(data, req, compare);
|
|
|
|
#else
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_addf(req, "%s\r\n", compare);
|
2020-12-14 08:10:33 -05:00
|
|
|
#endif
|
2014-02-20 11:10:00 -05:00
|
|
|
}
|
2018-03-05 17:38:16 -05:00
|
|
|
if(semicolonp)
|
2019-02-18 02:14:52 -05:00
|
|
|
free(semicolonp);
|
2018-03-05 17:38:16 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2014-02-20 11:10:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
headers = headers->next;
|
2011-09-08 18:39:39 -04:00
|
|
|
}
|
2005-05-11 05:52:59 -04:00
|
|
|
}
|
2016-03-24 02:35:23 -04:00
|
|
|
|
2007-04-10 18:52:50 -04:00
|
|
|
return CURLE_OK;
|
2005-05-11 05:52:59 -04:00
|
|
|
}
|
2005-04-18 13:14:58 -04:00
|
|
|
|
2019-05-05 11:08:21 -04:00
|
|
|
#ifndef CURL_DISABLE_PARSEDATE
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_add_timecondition(struct Curl_easy *data,
|
2020-12-31 18:48:40 -05:00
|
|
|
#ifndef USE_HYPER
|
2021-01-08 11:58:15 -05:00
|
|
|
struct dynbuf *req
|
2020-12-31 18:48:40 -05:00
|
|
|
#else
|
2021-01-08 11:58:15 -05:00
|
|
|
void *req
|
2020-12-31 18:48:40 -05:00
|
|
|
#endif
|
|
|
|
)
|
2010-01-21 08:58:30 -05:00
|
|
|
{
|
2011-02-07 09:00:48 -05:00
|
|
|
const struct tm *tm;
|
|
|
|
struct tm keeptime;
|
2015-11-25 05:38:10 -05:00
|
|
|
CURLcode result;
|
2017-04-24 18:48:56 -04:00
|
|
|
char datestr[80];
|
|
|
|
const char *condp;
|
2015-11-25 05:38:10 -05:00
|
|
|
|
|
|
|
if(data->set.timecondition == CURL_TIMECOND_NONE)
|
|
|
|
/* no condition was asked for */
|
|
|
|
return CURLE_OK;
|
|
|
|
|
|
|
|
result = Curl_gmtime(data->set.timevalue, &keeptime);
|
2011-02-07 09:00:48 -05:00
|
|
|
if(result) {
|
2012-06-14 07:32:05 -04:00
|
|
|
failf(data, "Invalid TIMEVALUE");
|
2011-02-07 09:00:48 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
tm = &keeptime;
|
2010-01-21 08:58:30 -05:00
|
|
|
|
2017-04-24 18:48:56 -04:00
|
|
|
switch(data->set.timecondition) {
|
|
|
|
default:
|
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
|
|
|
|
case CURL_TIMECOND_IFMODSINCE:
|
|
|
|
condp = "If-Modified-Since";
|
|
|
|
break;
|
|
|
|
case CURL_TIMECOND_IFUNMODSINCE:
|
|
|
|
condp = "If-Unmodified-Since";
|
|
|
|
break;
|
|
|
|
case CURL_TIMECOND_LASTMOD:
|
|
|
|
condp = "Last-Modified";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
if(Curl_checkheaders(data, condp)) {
|
2019-07-10 18:42:35 -04:00
|
|
|
/* A custom header was specified; it will be sent instead. */
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-21 08:58:30 -05:00
|
|
|
/* 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).
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* format: "Tue, 15 Nov 1994 12:45:26 GMT" */
|
2018-11-22 03:01:24 -05:00
|
|
|
msnprintf(datestr, sizeof(datestr),
|
|
|
|
"%s: %s, %02d %s %4d %02d:%02d:%02d GMT\r\n",
|
|
|
|
condp,
|
|
|
|
Curl_wkday[tm->tm_wday?tm->tm_wday-1:6],
|
|
|
|
tm->tm_mday,
|
|
|
|
Curl_month[tm->tm_mon],
|
|
|
|
tm->tm_year + 1900,
|
|
|
|
tm->tm_hour,
|
|
|
|
tm->tm_min,
|
|
|
|
tm->tm_sec);
|
2010-01-21 08:58:30 -05:00
|
|
|
|
2020-12-31 18:48:40 -05:00
|
|
|
#ifndef USE_HYPER
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_add(req, datestr);
|
2020-12-31 18:48:40 -05:00
|
|
|
#else
|
|
|
|
result = Curl_hyper_header(data, req, datestr);
|
|
|
|
#endif
|
2010-01-21 08:58:30 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2019-05-05 11:08:21 -04:00
|
|
|
#else
|
|
|
|
/* disabled */
|
2019-07-10 18:42:35 -04:00
|
|
|
CURLcode Curl_add_timecondition(const struct connectdata *conn,
|
2020-05-02 11:04:08 -04:00
|
|
|
struct dynbuf *req)
|
2019-05-05 11:08:21 -04:00
|
|
|
{
|
2019-07-10 18:42:35 -04:00
|
|
|
(void)conn;
|
2020-05-02 11:04:08 -04:00
|
|
|
(void)req;
|
2019-05-05 11:08:21 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
#endif
|
2010-01-21 08:58:30 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
void Curl_http_method(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
const char **method, Curl_HttpReq *reqp)
|
2000-05-22 10:12:12 -04:00
|
|
|
{
|
2020-06-01 16:58:46 -04:00
|
|
|
Curl_HttpReq httpreq = data->state.httpreq;
|
2020-12-14 08:10:33 -05:00
|
|
|
const char *request;
|
2014-04-20 13:37:54 -04:00
|
|
|
if((conn->handler->protocol&(PROTO_FAMILY_HTTP|CURLPROTO_FTP)) &&
|
2020-12-14 08:10:33 -05:00
|
|
|
data->set.upload)
|
2004-04-06 11:14:10 -04:00
|
|
|
httpreq = HTTPREQ_PUT;
|
2003-05-22 12:09:54 -04:00
|
|
|
|
2004-04-06 11:14:10 -04:00
|
|
|
/* Now set the 'request' pointer to the proper request string */
|
2007-08-01 17:20:01 -04:00
|
|
|
if(data->set.str[STRING_CUSTOMREQUEST])
|
|
|
|
request = data->set.str[STRING_CUSTOMREQUEST];
|
2004-04-06 11:14:10 -04:00
|
|
|
else {
|
2008-01-31 07:04:33 -05:00
|
|
|
if(data->set.opt_no_body)
|
2008-09-02 13:41:20 -04:00
|
|
|
request = "HEAD";
|
2004-04-06 11:14:10 -04:00
|
|
|
else {
|
2021-01-08 10:17:12 -05:00
|
|
|
DEBUGASSERT((httpreq >= HTTPREQ_GET) && (httpreq <= HTTPREQ_HEAD));
|
2004-04-06 11:14:10 -04:00
|
|
|
switch(httpreq) {
|
|
|
|
case HTTPREQ_POST:
|
|
|
|
case HTTPREQ_POST_FORM:
|
2017-09-02 12:47:10 -04:00
|
|
|
case HTTPREQ_POST_MIME:
|
2008-09-02 13:41:20 -04:00
|
|
|
request = "POST";
|
2004-04-06 11:14:10 -04:00
|
|
|
break;
|
|
|
|
case HTTPREQ_PUT:
|
2008-09-02 13:41:20 -04:00
|
|
|
request = "PUT";
|
2004-04-06 11:14:10 -04:00
|
|
|
break;
|
2004-06-13 05:08:38 -04:00
|
|
|
default: /* this should never happen */
|
2004-04-06 11:14:10 -04:00
|
|
|
case HTTPREQ_GET:
|
2008-09-02 13:41:20 -04:00
|
|
|
request = "GET";
|
2004-04-06 11:14:10 -04:00
|
|
|
break;
|
|
|
|
case HTTPREQ_HEAD:
|
2008-09-02 13:41:20 -04:00
|
|
|
request = "HEAD";
|
2004-04-06 11:14:10 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
*method = request;
|
|
|
|
*reqp = httpreq;
|
|
|
|
}
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_http_useragent(struct Curl_easy *data)
|
2020-12-14 08:10:33 -05:00
|
|
|
{
|
2013-01-03 20:50:28 -05:00
|
|
|
/* The User-Agent string might have been allocated 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
|
|
|
|
here. */
|
2021-01-08 11:58:15 -05:00
|
|
|
if(Curl_checkheaders(data, "User-Agent")) {
|
2020-06-15 05:28:17 -04:00
|
|
|
free(data->state.aptr.uagent);
|
|
|
|
data->state.aptr.uagent = NULL;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2003-06-26 07:24:55 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
CURLcode Curl_http_host(struct Curl_easy *data, struct connectdata *conn)
|
|
|
|
{
|
|
|
|
const char *ptr;
|
|
|
|
if(!data->state.this_is_a_follow) {
|
|
|
|
/* Free to avoid leaking memory on multiple requests*/
|
|
|
|
free(data->state.first_host);
|
2004-04-06 11:14:10 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
data->state.first_host = strdup(conn->host.name);
|
|
|
|
if(!data->state.first_host)
|
2013-03-23 23:47:57 -04:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2020-12-14 08:10:33 -05:00
|
|
|
|
|
|
|
data->state.first_remote_port = conn->remote_port;
|
2013-03-23 23:47:57 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
Curl_safefree(data->state.aptr.host);
|
2003-10-04 11:48:15 -04:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
ptr = Curl_checkheaders(data, "Host");
|
2020-12-14 08:10:33 -05:00
|
|
|
if(ptr && (!data->state.this_is_a_follow ||
|
|
|
|
strcasecompare(data->state.first_host, conn->host.name))) {
|
2014-11-27 17:11:23 -05:00
|
|
|
#if !defined(CURL_DISABLE_COOKIES)
|
2020-12-14 08:10:33 -05:00
|
|
|
/* If we have a given custom Host: header, we extract the host name in
|
|
|
|
order to possibly use it for cookie reasons later on. We only allow the
|
|
|
|
custom Host: header if this is NOT a redirect, as setting Host: in the
|
|
|
|
redirected request is being out on thin ice. Except if the host name
|
|
|
|
is the same as the first one! */
|
|
|
|
char *cookiehost = Curl_copy_header_value(ptr);
|
|
|
|
if(!cookiehost)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
if(!*cookiehost)
|
|
|
|
/* ignore empty data */
|
|
|
|
free(cookiehost);
|
|
|
|
else {
|
|
|
|
/* If the host begins with '[', we start searching for the port after
|
|
|
|
the bracket has been closed */
|
|
|
|
if(*cookiehost == '[') {
|
|
|
|
char *closingbracket;
|
|
|
|
/* since the 'cookiehost' is an allocated memory area that will be
|
|
|
|
freed later we cannot simply increment the pointer */
|
|
|
|
memmove(cookiehost, cookiehost + 1, strlen(cookiehost) - 1);
|
|
|
|
closingbracket = strchr(cookiehost, ']');
|
|
|
|
if(closingbracket)
|
|
|
|
*closingbracket = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int startsearch = 0;
|
|
|
|
char *colon = strchr(cookiehost + startsearch, ':');
|
|
|
|
if(colon)
|
|
|
|
*colon = 0; /* The host must not include an embedded port number */
|
|
|
|
}
|
|
|
|
Curl_safefree(data->state.aptr.cookiehost);
|
|
|
|
data->state.aptr.cookiehost = cookiehost;
|
|
|
|
}
|
2014-11-27 17:11:23 -05:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(strcmp("Host:", ptr)) {
|
|
|
|
data->state.aptr.host = aprintf("Host:%s\r\n", &ptr[5]);
|
|
|
|
if(!data->state.aptr.host)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* when clearing the header */
|
|
|
|
data->state.aptr.host = NULL;
|
2004-08-16 09:25:30 -04:00
|
|
|
}
|
2016-05-02 05:24:11 -04:00
|
|
|
else {
|
2020-12-14 08:10:33 -05:00
|
|
|
/* When building Host: headers, we must put the host name within
|
|
|
|
[brackets] if the host name is a plain IPv6-address. RFC2732-style. */
|
|
|
|
const char *host = conn->host.name;
|
2011-04-11 10:30:14 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(((conn->given->protocol&CURLPROTO_HTTPS) &&
|
|
|
|
(conn->remote_port == PORT_HTTPS)) ||
|
|
|
|
((conn->given->protocol&CURLPROTO_HTTP) &&
|
|
|
|
(conn->remote_port == PORT_HTTP)) )
|
|
|
|
/* if(HTTPS on port 443) OR (HTTP on port 80) then don't include
|
|
|
|
the port number in the host string */
|
|
|
|
data->state.aptr.host = aprintf("Host: %s%s%s\r\n",
|
|
|
|
conn->bits.ipv6_ip?"[":"",
|
|
|
|
host,
|
|
|
|
conn->bits.ipv6_ip?"]":"");
|
|
|
|
else
|
|
|
|
data->state.aptr.host = aprintf("Host: %s%s%s:%d\r\n",
|
|
|
|
conn->bits.ipv6_ip?"[":"",
|
|
|
|
host,
|
|
|
|
conn->bits.ipv6_ip?"]":"",
|
|
|
|
conn->remote_port);
|
2011-04-11 10:30:14 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(!data->state.aptr.host)
|
|
|
|
/* without Host: we can't make a nice request */
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2018-03-05 17:38:16 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/*
|
|
|
|
* Append the request-target to the HTTP request
|
|
|
|
*/
|
|
|
|
CURLcode Curl_http_target(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
|
|
|
struct dynbuf *r)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
const char *path = data->state.up.path;
|
|
|
|
const char *query = data->state.up.query;
|
2011-04-11 10:30:14 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(data->set.str[STRING_TARGET]) {
|
|
|
|
path = data->set.str[STRING_TARGET];
|
|
|
|
query = NULL;
|
2011-04-05 17:24:52 -04:00
|
|
|
}
|
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
|
|
|
if(conn->bits.httpproxy && !conn->bits.tunnel_proxy) {
|
|
|
|
/* Using a proxy but does not tunnel through it */
|
|
|
|
|
|
|
|
/* The path sent to the proxy is in fact the entire URL. But if the remote
|
|
|
|
host is a IDN-name, we must make sure that the request we produce only
|
|
|
|
uses the encoded host name! */
|
|
|
|
|
|
|
|
/* and no fragment part */
|
|
|
|
CURLUcode uc;
|
|
|
|
char *url;
|
|
|
|
CURLU *h = curl_url_dup(data->state.uh);
|
|
|
|
if(!h)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
if(conn->host.dispname != conn->host.name) {
|
|
|
|
uc = curl_url_set(h, CURLUPART_HOST, conn->host.name, 0);
|
|
|
|
if(uc) {
|
|
|
|
curl_url_cleanup(h);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
uc = curl_url_set(h, CURLUPART_FRAGMENT, NULL, 0);
|
|
|
|
if(uc) {
|
|
|
|
curl_url_cleanup(h);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(strcasecompare("http", data->state.up.scheme)) {
|
|
|
|
/* when getting HTTP, we don't want the userinfo the URL */
|
|
|
|
uc = curl_url_set(h, CURLUPART_USER, NULL, 0);
|
|
|
|
if(uc) {
|
|
|
|
curl_url_cleanup(h);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
uc = curl_url_set(h, CURLUPART_PASSWORD, NULL, 0);
|
|
|
|
if(uc) {
|
|
|
|
curl_url_cleanup(h);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Extract the URL to use in the request. Store in STRING_TEMP_URL for
|
|
|
|
clean-up reasons if the function returns before the free() further
|
|
|
|
down. */
|
|
|
|
uc = curl_url_get(h, CURLUPART_URL, &url, 0);
|
|
|
|
if(uc) {
|
|
|
|
curl_url_cleanup(h);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
curl_url_cleanup(h);
|
|
|
|
|
|
|
|
/* url */
|
|
|
|
result = Curl_dyn_add(r, url);
|
|
|
|
free(url);
|
|
|
|
if(result)
|
|
|
|
return (result);
|
|
|
|
|
|
|
|
if(strcasecompare("ftp", data->state.up.scheme)) {
|
|
|
|
if(data->set.proxy_transfer_mode) {
|
|
|
|
/* when doing ftp, append ;type=<a|i> if not present */
|
|
|
|
char *type = strstr(path, ";type=");
|
|
|
|
if(type && type[6] && type[7] == 0) {
|
|
|
|
switch(Curl_raw_toupper(type[6])) {
|
|
|
|
case 'A':
|
|
|
|
case 'D':
|
|
|
|
case 'I':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
type = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!type) {
|
|
|
|
result = Curl_dyn_addf(r, ";type=%c",
|
|
|
|
data->set.prefer_ascii ? 'a' : 'i');
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
#else
|
|
|
|
(void)conn; /* not used in disabled-proxy builds */
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
result = Curl_dyn_add(r, path);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
if(query)
|
|
|
|
result = Curl_dyn_addf(r, "?%s", query);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
CURLcode Curl_http_body(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
Curl_HttpReq httpreq, const char **tep)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
const char *ptr;
|
|
|
|
struct HTTP *http = data->req.p.http;
|
|
|
|
http->postsize = 0;
|
|
|
|
|
|
|
|
switch(httpreq) {
|
|
|
|
case HTTPREQ_POST_MIME:
|
|
|
|
http->sendit = &data->set.mimepost;
|
|
|
|
break;
|
2017-09-02 12:47:10 -04:00
|
|
|
case HTTPREQ_POST_FORM:
|
|
|
|
/* Convert the form structure into a mime structure. */
|
|
|
|
Curl_mime_cleanpart(&http->form);
|
|
|
|
result = Curl_getformdata(data, &http->form, data->set.httppost,
|
|
|
|
data->state.fread_func);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
http->sendit = &http->form;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
http->sendit = NULL;
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:21 -04:00
|
|
|
#ifndef CURL_DISABLE_MIME
|
2017-09-02 12:47:10 -04:00
|
|
|
if(http->sendit) {
|
2021-01-08 11:58:15 -05:00
|
|
|
const char *cthdr = Curl_checkheaders(data, "Content-Type");
|
2017-09-02 12:47:10 -04:00
|
|
|
|
|
|
|
/* Read and seek body only. */
|
|
|
|
http->sendit->flags |= MIME_BODY_ONLY;
|
|
|
|
|
|
|
|
/* Prepare the mime structure headers & set content type. */
|
|
|
|
|
|
|
|
if(cthdr)
|
|
|
|
for(cthdr += 13; *cthdr == ' '; cthdr++)
|
|
|
|
;
|
|
|
|
else if(http->sendit->kind == MIMEKIND_MULTIPART)
|
|
|
|
cthdr = "multipart/form-data";
|
|
|
|
|
|
|
|
curl_mime_headers(http->sendit, data->set.headers, 0);
|
|
|
|
result = Curl_mime_prepare_headers(http->sendit, cthdr,
|
|
|
|
NULL, MIMESTRATEGY_FORM);
|
|
|
|
curl_mime_headers(http->sendit, NULL, 0);
|
|
|
|
if(!result)
|
|
|
|
result = Curl_mime_rewind(http->sendit);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
http->postsize = Curl_mime_size(http->sendit);
|
|
|
|
}
|
2019-05-05 11:08:21 -04:00
|
|
|
#endif
|
2017-09-02 12:47:10 -04:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
ptr = Curl_checkheaders(data, "Transfer-Encoding");
|
2016-09-15 08:01:06 -04:00
|
|
|
if(ptr) {
|
|
|
|
/* Some kind of TE is requested, check if 'chunked' is chosen */
|
|
|
|
data->req.upload_chunky =
|
|
|
|
Curl_compareheader(ptr, "Transfer-Encoding:", "chunked");
|
|
|
|
}
|
2006-08-02 14:18:47 -04:00
|
|
|
else {
|
2017-09-02 12:47:10 -04:00
|
|
|
if((conn->handler->protocol & PROTO_FAMILY_HTTP) &&
|
|
|
|
(((httpreq == HTTPREQ_POST_MIME || httpreq == HTTPREQ_POST_FORM) &&
|
2019-07-22 08:37:37 -04:00
|
|
|
http->postsize < 0) ||
|
|
|
|
((data->set.upload || httpreq == HTTPREQ_POST) &&
|
|
|
|
data->state.infilesize == -1))) {
|
2016-09-15 08:01:06 -04:00
|
|
|
if(conn->bits.authneg)
|
|
|
|
/* don't enable chunked during auth neg */
|
|
|
|
;
|
|
|
|
else if(use_http_1_1plus(data, conn)) {
|
2019-08-20 03:59:28 -04:00
|
|
|
if(conn->httpversion < 20)
|
|
|
|
/* HTTP, upload, unknown file size and not HTTP 1.0 */
|
|
|
|
data->req.upload_chunky = TRUE;
|
2010-01-21 08:58:30 -05:00
|
|
|
}
|
|
|
|
else {
|
2016-09-15 08:01:06 -04:00
|
|
|
failf(data, "Chunky upload is not supported by HTTP 1.0");
|
|
|
|
return CURLE_UPLOAD_FAILED;
|
2008-09-05 13:58:53 -04:00
|
|
|
}
|
2014-02-14 08:02:44 -05:00
|
|
|
}
|
2016-09-15 08:01:06 -04:00
|
|
|
else {
|
|
|
|
/* else, no chunky upload */
|
|
|
|
data->req.upload_chunky = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(data->req.upload_chunky)
|
2020-12-14 08:10:33 -05:00
|
|
|
*tep = "Transfer-Encoding: chunked\r\n";
|
2002-11-11 03:40:37 -05:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
return result;
|
|
|
|
}
|
2002-11-11 03:40:37 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
CURLcode Curl_http_bodysend(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
struct dynbuf *r, Curl_HttpReq httpreq)
|
|
|
|
{
|
|
|
|
#ifndef USE_HYPER
|
|
|
|
/* Hyper always handles the body separately */
|
|
|
|
curl_off_t included_body = 0;
|
|
|
|
#endif
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct HTTP *http = data->req.p.http;
|
|
|
|
const char *ptr;
|
2004-07-28 17:13:29 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* If 'authdone' is FALSE, we must not set the write socket index to the
|
|
|
|
Curl_transfer() call below, as we're not ready to actually upload any
|
|
|
|
data yet. */
|
|
|
|
|
|
|
|
switch(httpreq) {
|
|
|
|
|
|
|
|
case HTTPREQ_PUT: /* Let's PUT the data to the server! */
|
|
|
|
|
|
|
|
if(conn->bits.authneg)
|
|
|
|
http->postsize = 0;
|
|
|
|
else
|
|
|
|
http->postsize = data->state.infilesize;
|
|
|
|
|
|
|
|
if((http->postsize != -1) && !data->req.upload_chunky &&
|
2021-01-08 11:58:15 -05:00
|
|
|
(conn->bits.authneg || !Curl_checkheaders(data, "Content-Length"))) {
|
2020-12-14 08:10:33 -05:00
|
|
|
/* only add Content-Length if not uploading chunked */
|
|
|
|
result = Curl_dyn_addf(r, "Content-Length: %" CURL_FORMAT_CURL_OFF_T
|
|
|
|
"\r\n", http->postsize);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2003-04-30 13:04:53 -04:00
|
|
|
}
|
2004-07-28 17:13:29 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(http->postsize) {
|
|
|
|
result = expect100(data, conn, r);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2015-03-11 19:50:46 -04:00
|
|
|
}
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* end of headers */
|
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
/* set the upload size to the progress meter */
|
|
|
|
Curl_pgrsSetUploadSize(data, http->postsize);
|
|
|
|
|
|
|
|
/* this sends the buffer and frees all the buffer resources */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_buffer_send(r, data, &data->info.request_size, 0,
|
2020-12-14 08:10:33 -05:00
|
|
|
FIRSTSOCKET);
|
|
|
|
if(result)
|
|
|
|
failf(data, "Failed sending PUT request");
|
2000-10-20 09:48:38 -04:00
|
|
|
else
|
2020-12-14 08:10:33 -05:00
|
|
|
/* prepare for transfer */
|
|
|
|
Curl_setup_transfer(data, FIRSTSOCKET, -1, TRUE,
|
|
|
|
http->postsize?FIRSTSOCKET:-1);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
break;
|
2003-10-24 08:58:29 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
case HTTPREQ_POST_FORM:
|
|
|
|
case HTTPREQ_POST_MIME:
|
|
|
|
/* This is form posting using mime data. */
|
|
|
|
if(conn->bits.authneg) {
|
|
|
|
/* nothing to post! */
|
|
|
|
result = Curl_dyn_add(r, "Content-Length: 0\r\n\r\n");
|
|
|
|
if(result)
|
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_buffer_send(r, data, &data->info.request_size, 0,
|
2020-12-14 08:10:33 -05:00
|
|
|
FIRSTSOCKET);
|
|
|
|
if(result)
|
|
|
|
failf(data, "Failed sending POST request");
|
|
|
|
else
|
|
|
|
/* setup variables for the upcoming transfer */
|
|
|
|
Curl_setup_transfer(data, FIRSTSOCKET, -1, TRUE, -1);
|
|
|
|
break;
|
|
|
|
}
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
data->state.infilesize = http->postsize;
|
2018-09-14 17:33:28 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* We only set Content-Length and allow a custom Content-Length if
|
|
|
|
we don't upload data chunked, as RFC2616 forbids us to set both
|
|
|
|
kinds of headers (Transfer-Encoding: chunked and Content-Length) */
|
|
|
|
if(http->postsize != -1 && !data->req.upload_chunky &&
|
2021-01-08 11:58:15 -05:00
|
|
|
(conn->bits.authneg || !Curl_checkheaders(data, "Content-Length"))) {
|
2020-12-14 08:10:33 -05:00
|
|
|
/* we allow replacing this header if not during auth negotiation,
|
|
|
|
although it isn't very wise to actually set your own */
|
|
|
|
result = Curl_dyn_addf(r,
|
|
|
|
"Content-Length: %" CURL_FORMAT_CURL_OFF_T
|
|
|
|
"\r\n", http->postsize);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2018-09-14 17:33:28 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef CURL_DISABLE_MIME
|
|
|
|
/* Output mime-generated headers. */
|
|
|
|
{
|
|
|
|
struct curl_slist *hdr;
|
|
|
|
|
|
|
|
for(hdr = http->sendit->curlheaders; hdr; hdr = hdr->next) {
|
|
|
|
result = Curl_dyn_addf(r, "%s\r\n", hdr->data);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2004-04-29 09:41:48 -04:00
|
|
|
}
|
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
#endif
|
2018-09-14 17:33:28 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* For really small posts we don't use Expect: headers at all, and for
|
|
|
|
the somewhat bigger ones we allow the app to disable it. Just make
|
|
|
|
sure that the expect100header is always set to the preferred value
|
|
|
|
here. */
|
2021-01-08 11:58:15 -05:00
|
|
|
ptr = Curl_checkheaders(data, "Expect");
|
2020-12-14 08:10:33 -05:00
|
|
|
if(ptr) {
|
|
|
|
data->state.expect100header =
|
|
|
|
Curl_compareheader(ptr, "Expect:", "100-continue");
|
2018-09-14 17:33:28 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
else if(http->postsize > EXPECT_100_THRESHOLD || http->postsize < 0) {
|
|
|
|
result = expect100(data, conn, r);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2018-09-14 17:33:28 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
else
|
|
|
|
data->state.expect100header = FALSE;
|
2018-09-14 17:33:28 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* make the request end in a true CRLF */
|
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
|
|
|
if(result)
|
|
|
|
return result;
|
2018-09-14 17:33:28 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* set the upload size to the progress meter */
|
|
|
|
Curl_pgrsSetUploadSize(data, http->postsize);
|
2008-10-21 19:15:19 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* Read from mime structure. */
|
|
|
|
data->state.fread_func = (curl_read_callback) Curl_mime_read;
|
|
|
|
data->state.in = (void *) http->sendit;
|
|
|
|
http->sending = HTTPSEND_BODY;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* this sends the buffer and frees all the buffer resources */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_buffer_send(r, data, &data->info.request_size, 0,
|
2020-12-14 08:10:33 -05:00
|
|
|
FIRSTSOCKET);
|
|
|
|
if(result)
|
|
|
|
failf(data, "Failed sending POST request");
|
|
|
|
else
|
|
|
|
/* prepare for transfer */
|
|
|
|
Curl_setup_transfer(data, FIRSTSOCKET, -1, TRUE,
|
|
|
|
http->postsize?FIRSTSOCKET:-1);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
case HTTPREQ_POST:
|
|
|
|
/* this is the simple POST, using x-www-form-urlencoded style */
|
|
|
|
|
|
|
|
if(conn->bits.authneg)
|
|
|
|
http->postsize = 0;
|
|
|
|
else
|
|
|
|
/* the size of the post body */
|
|
|
|
http->postsize = data->state.infilesize;
|
|
|
|
|
|
|
|
/* We only set Content-Length and allow a custom Content-Length if
|
|
|
|
we don't upload data chunked, as RFC2616 forbids us to set both
|
|
|
|
kinds of headers (Transfer-Encoding: chunked and Content-Length) */
|
|
|
|
if((http->postsize != -1) && !data->req.upload_chunky &&
|
2021-01-08 11:58:15 -05:00
|
|
|
(conn->bits.authneg || !Curl_checkheaders(data, "Content-Length"))) {
|
2020-12-14 08:10:33 -05:00
|
|
|
/* we allow replacing this header if not during auth negotiation,
|
|
|
|
although it isn't very wise to actually set your own */
|
|
|
|
result = Curl_dyn_addf(r, "Content-Length: %" CURL_FORMAT_CURL_OFF_T
|
|
|
|
"\r\n", http->postsize);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2001-01-26 10:49:39 -05:00
|
|
|
}
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
if(!Curl_checkheaders(data, "Content-Type")) {
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_dyn_add(r, "Content-Type: application/"
|
|
|
|
"x-www-form-urlencoded\r\n");
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2001-01-26 10:49:39 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* For really small posts we don't use Expect: headers at all, and for
|
|
|
|
the somewhat bigger ones we allow the app to disable it. Just make
|
|
|
|
sure that the expect100header is always set to the preferred value
|
|
|
|
here. */
|
2021-01-08 11:58:15 -05:00
|
|
|
ptr = Curl_checkheaders(data, "Expect");
|
2020-12-14 08:10:33 -05:00
|
|
|
if(ptr) {
|
|
|
|
data->state.expect100header =
|
|
|
|
Curl_compareheader(ptr, "Expect:", "100-continue");
|
|
|
|
}
|
|
|
|
else if(http->postsize > EXPECT_100_THRESHOLD || http->postsize < 0) {
|
|
|
|
result = expect100(data, conn, r);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
data->state.expect100header = FALSE;
|
2008-01-10 05:30:19 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef USE_HYPER
|
|
|
|
/* With Hyper the body is always passed on separately */
|
|
|
|
if(data->set.postfields) {
|
2017-03-10 08:28:37 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* In HTTP2, we send request body in DATA frame regardless of
|
|
|
|
its size. */
|
|
|
|
if(conn->httpversion != 20 &&
|
|
|
|
!data->state.expect100header &&
|
|
|
|
(http->postsize < MAX_INITIAL_POST_SIZE)) {
|
|
|
|
/* if we don't use expect: 100 AND
|
|
|
|
postsize is less than MAX_INITIAL_POST_SIZE
|
2017-03-10 08:28:37 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
then append the post data to the HTTP request header. This limit
|
|
|
|
is no magic limit but only set to prevent really huge POSTs to
|
|
|
|
get the data duplicated with malloc() and family. */
|
2017-03-10 08:28:37 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* end of headers! */
|
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if(!data->req.upload_chunky) {
|
|
|
|
/* We're not sending it 'chunked', append it to the request
|
|
|
|
already now to reduce the number if send() calls */
|
|
|
|
result = Curl_dyn_addn(r, data->set.postfields,
|
|
|
|
(size_t)http->postsize);
|
|
|
|
included_body = http->postsize;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(http->postsize) {
|
|
|
|
char chunk[16];
|
|
|
|
/* Append the POST data chunky-style */
|
|
|
|
msnprintf(chunk, sizeof(chunk), "%x\r\n", (int)http->postsize);
|
|
|
|
result = Curl_dyn_add(r, chunk);
|
|
|
|
if(!result) {
|
|
|
|
included_body = http->postsize + strlen(chunk);
|
|
|
|
result = Curl_dyn_addn(r, data->set.postfields,
|
|
|
|
(size_t)http->postsize);
|
|
|
|
if(!result)
|
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
|
|
|
included_body += 2;
|
|
|
|
}
|
2017-03-10 08:28:37 -05:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
if(!result) {
|
|
|
|
result = Curl_dyn_add(r, "\x30\x0d\x0a\x0d\x0a");
|
|
|
|
/* 0 CR LF CR LF */
|
|
|
|
included_body += 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
/* Make sure the progress information is accurate */
|
|
|
|
Curl_pgrsSetUploadSize(data, http->postsize);
|
2008-01-10 05:30:19 -05:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
else {
|
|
|
|
/* A huge POST coming up, do data separate from the request */
|
|
|
|
http->postdata = data->set.postfields;
|
2001-01-26 10:49:39 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
http->sending = HTTPSEND_BODY;
|
2001-01-26 10:49:39 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
data->state.fread_func = (curl_read_callback)readmoredata;
|
2021-01-08 11:58:15 -05:00
|
|
|
data->state.in = (void *)data;
|
2020-12-14 08:10:33 -05:00
|
|
|
|
|
|
|
/* set the upload size to the progress meter */
|
|
|
|
Curl_pgrsSetUploadSize(data, http->postsize);
|
|
|
|
|
|
|
|
/* end of headers! */
|
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
|
|
|
if(result)
|
|
|
|
return result;
|
2001-01-26 10:49:39 -05:00
|
|
|
}
|
2001-01-29 02:24:20 -05:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* end of headers! */
|
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
|
|
|
if(result)
|
|
|
|
return result;
|
2001-01-29 02:24:20 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(data->req.upload_chunky && conn->bits.authneg) {
|
|
|
|
/* Chunky upload is selected and we're negotiating auth still, send
|
|
|
|
end-of-data only */
|
|
|
|
result = Curl_dyn_add(r, (char *)"\x30\x0d\x0a\x0d\x0a");
|
|
|
|
/* 0 CR LF CR LF */
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2007-08-17 16:21:32 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
else if(data->state.infilesize) {
|
|
|
|
/* set the upload size to the progress meter */
|
|
|
|
Curl_pgrsSetUploadSize(data, http->postsize?http->postsize:-1);
|
2008-08-03 18:20:58 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* set the pointer to mark that we will send the post body using the
|
|
|
|
read callback, but only if we're not in authenticate negotiation */
|
|
|
|
if(!conn->bits.authneg)
|
|
|
|
http->postdata = (char *)&http->postdata;
|
2008-08-03 18:20:58 -04:00
|
|
|
}
|
2001-01-29 02:24:20 -05:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
/* issue the request */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_buffer_send(r, data, &data->info.request_size,
|
2020-12-14 08:10:33 -05:00
|
|
|
(size_t)included_body, FIRSTSOCKET);
|
2009-06-16 09:16:28 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(result)
|
|
|
|
failf(data, "Failed sending HTTP POST request");
|
|
|
|
else
|
|
|
|
Curl_setup_transfer(data, FIRSTSOCKET, -1, TRUE,
|
|
|
|
http->postdata?FIRSTSOCKET:-1);
|
|
|
|
break;
|
2017-06-19 08:10:33 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
default:
|
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
2018-09-14 17:33:28 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2008-03-01 17:32:03 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* issue the request */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_buffer_send(r, data, &data->info.request_size, 0,
|
2020-12-14 08:10:33 -05:00
|
|
|
FIRSTSOCKET);
|
2003-10-24 08:58:29 -04:00
|
|
|
|
2013-09-07 05:03:23 -04:00
|
|
|
if(result)
|
2020-12-14 08:10:33 -05:00
|
|
|
failf(data, "Failed sending HTTP request");
|
|
|
|
else
|
|
|
|
/* HTTP GET/HEAD download: */
|
|
|
|
Curl_setup_transfer(data, FIRSTSOCKET, -1, TRUE, -1);
|
2013-09-07 05:03:23 -04:00
|
|
|
}
|
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-12-05 18:59:32 -05:00
|
|
|
#if !defined(CURL_DISABLE_COOKIES)
|
2020-12-14 08:10:33 -05:00
|
|
|
CURLcode Curl_http_cookies(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
|
|
|
struct dynbuf *r)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
char *addcookies = NULL;
|
2021-01-08 11:58:15 -05:00
|
|
|
if(data->set.str[STRING_COOKIE] && !Curl_checkheaders(data, "Cookie"))
|
2020-12-14 08:10:33 -05:00
|
|
|
addcookies = data->set.str[STRING_COOKIE];
|
|
|
|
|
2008-03-27 09:07:12 -04:00
|
|
|
if(data->cookies || addcookies) {
|
2017-09-09 17:09:06 -04:00
|
|
|
struct Cookie *co = NULL; /* no cookies from start */
|
|
|
|
int count = 0;
|
2008-03-27 09:07:12 -04:00
|
|
|
|
2019-09-27 03:41:43 -04:00
|
|
|
if(data->cookies && data->state.cookie_engine) {
|
2008-03-27 09:07:12 -04:00
|
|
|
Curl_share_lock(data, CURL_LOCK_DATA_COOKIE, CURL_LOCK_ACCESS_SINGLE);
|
|
|
|
co = Curl_cookie_getlist(data->cookies,
|
2020-06-15 05:28:17 -04:00
|
|
|
data->state.aptr.cookiehost?
|
2020-12-14 08:10:33 -05:00
|
|
|
data->state.aptr.cookiehost:
|
|
|
|
conn->host.name,
|
2018-09-14 17:33:28 -04:00
|
|
|
data->state.up.path,
|
2011-09-05 14:46:09 -04:00
|
|
|
(conn->handler->protocol&CURLPROTO_HTTPS)?
|
|
|
|
TRUE:FALSE);
|
2008-03-27 09:07:12 -04:00
|
|
|
Curl_share_unlock(data, CURL_LOCK_DATA_COOKIE);
|
|
|
|
}
|
|
|
|
if(co) {
|
2017-09-09 17:09:06 -04:00
|
|
|
struct Cookie *store = co;
|
2008-03-27 09:07:12 -04:00
|
|
|
/* now loop through all cookies that matched */
|
|
|
|
while(co) {
|
|
|
|
if(co->value) {
|
|
|
|
if(0 == count) {
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_dyn_add(r, "Cookie: ");
|
2004-05-04 10:27:07 -04:00
|
|
|
if(result)
|
2004-05-10 10:22:20 -04:00
|
|
|
break;
|
2000-02-10 18:15:33 -05:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_dyn_addf(r, "%s%s=%s", count?"; ":"",
|
2020-05-02 11:04:08 -04:00
|
|
|
co->name, co->value);
|
2008-03-27 09:07:12 -04:00
|
|
|
if(result)
|
|
|
|
break;
|
2004-05-24 03:13:48 -04:00
|
|
|
count++;
|
|
|
|
}
|
2008-03-27 09:07:12 -04:00
|
|
|
co = co->next; /* next cookie please */
|
2004-05-24 03:13:48 -04:00
|
|
|
}
|
2016-10-04 17:26:13 -04:00
|
|
|
Curl_cookie_freelist(store);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2014-10-23 16:56:35 -04:00
|
|
|
if(addcookies && !result) {
|
2008-03-27 09:07:12 -04:00
|
|
|
if(!count)
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_dyn_add(r, "Cookie: ");
|
2014-10-23 16:56:35 -04:00
|
|
|
if(!result) {
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_dyn_addf(r, "%s%s", count?"; ":"", addcookies);
|
2008-03-27 09:07:12 -04:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
2014-10-23 16:56:35 -04:00
|
|
|
if(count && !result)
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_dyn_add(r, "\r\n");
|
2008-03-27 09:07:12 -04:00
|
|
|
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
return result;
|
|
|
|
}
|
2004-12-05 18:59:32 -05:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
CURLcode Curl_http_range(struct Curl_easy *data,
|
|
|
|
Curl_HttpReq httpreq)
|
|
|
|
{
|
|
|
|
if(data->state.use_range) {
|
|
|
|
/*
|
|
|
|
* 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(((httpreq == HTTPREQ_GET) || (httpreq == HTTPREQ_HEAD)) &&
|
2021-01-08 11:58:15 -05:00
|
|
|
!Curl_checkheaders(data, "Range")) {
|
2020-12-14 08:10:33 -05:00
|
|
|
/* if a line like this was already allocated, free the previous one */
|
|
|
|
free(data->state.aptr.rangeline);
|
|
|
|
data->state.aptr.rangeline = aprintf("Range: bytes=%s\r\n",
|
|
|
|
data->state.range);
|
|
|
|
}
|
|
|
|
else if((httpreq == HTTPREQ_POST || httpreq == HTTPREQ_PUT) &&
|
2021-01-08 11:58:15 -05:00
|
|
|
!Curl_checkheaders(data, "Content-Range")) {
|
2004-11-11 18:11:04 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* if a line like this was already allocated, free the previous one */
|
|
|
|
free(data->state.aptr.rangeline);
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(data->set.set_resume_from < 0) {
|
|
|
|
/* Upload resume was asked for, but we don't know the size of the
|
|
|
|
remote part so we tell the server (and act accordingly) that we
|
|
|
|
upload the whole file (again) */
|
|
|
|
data->state.aptr.rangeline =
|
|
|
|
aprintf("Content-Range: bytes 0-%" CURL_FORMAT_CURL_OFF_T
|
|
|
|
"/%" CURL_FORMAT_CURL_OFF_T "\r\n",
|
|
|
|
data->state.infilesize - 1, data->state.infilesize);
|
2000-02-14 17:57:42 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
|
|
|
else if(data->state.resume_from) {
|
|
|
|
/* This is because "resume" was selected */
|
|
|
|
curl_off_t total_expected_size =
|
|
|
|
data->state.resume_from + data->state.infilesize;
|
|
|
|
data->state.aptr.rangeline =
|
|
|
|
aprintf("Content-Range: bytes %s%" CURL_FORMAT_CURL_OFF_T
|
|
|
|
"/%" CURL_FORMAT_CURL_OFF_T "\r\n",
|
|
|
|
data->state.range, total_expected_size-1,
|
|
|
|
total_expected_size);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Range was selected and then we just pass the incoming range and
|
|
|
|
append total size */
|
|
|
|
data->state.aptr.rangeline =
|
|
|
|
aprintf("Content-Range: bytes %s/%" CURL_FORMAT_CURL_OFF_T "\r\n",
|
|
|
|
data->state.range, data->state.infilesize);
|
|
|
|
}
|
|
|
|
if(!data->state.aptr.rangeline)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2008-03-27 09:07:12 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2001-08-21 09:18:07 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
CURLcode Curl_http_resume(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
|
|
|
Curl_HttpReq httpreq)
|
|
|
|
{
|
|
|
|
if((HTTPREQ_POST == httpreq || HTTPREQ_PUT == httpreq) &&
|
|
|
|
data->state.resume_from) {
|
|
|
|
/**********************************************************************
|
|
|
|
* 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.
|
|
|
|
* Resuming mime/form posting at an offset > 0 has no sense and is ignored.
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
if(data->state.resume_from < 0) {
|
|
|
|
/*
|
|
|
|
* This is meant to get the size of the present remote-file by itself.
|
|
|
|
* We don't support this now. Bail out!
|
|
|
|
*/
|
|
|
|
data->state.resume_from = 0;
|
2008-03-27 09:07:12 -04:00
|
|
|
}
|
2002-02-17 09:42:44 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(data->state.resume_from && !data->state.this_is_a_follow) {
|
|
|
|
/* do we still game? */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* Now, let's read off the proper amount of bytes from the
|
|
|
|
input. */
|
|
|
|
int seekerr = CURL_SEEKFUNC_CANTSEEK;
|
|
|
|
if(conn->seek_func) {
|
|
|
|
Curl_set_in_callback(data, true);
|
|
|
|
seekerr = conn->seek_func(conn->seek_client, data->state.resume_from,
|
|
|
|
SEEK_SET);
|
|
|
|
Curl_set_in_callback(data, false);
|
|
|
|
}
|
2007-01-14 09:57:51 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(seekerr != CURL_SEEKFUNC_OK) {
|
|
|
|
curl_off_t passed = 0;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(seekerr != CURL_SEEKFUNC_CANTSEEK) {
|
|
|
|
failf(data, "Could not seek stream");
|
|
|
|
return CURLE_READ_ERROR;
|
|
|
|
}
|
|
|
|
/* when seekerr == CURL_SEEKFUNC_CANTSEEK (can't seek to offset) */
|
|
|
|
do {
|
|
|
|
size_t readthisamountnow =
|
|
|
|
(data->state.resume_from - passed > data->set.buffer_size) ?
|
|
|
|
(size_t)data->set.buffer_size :
|
|
|
|
curlx_sotouz(data->state.resume_from - passed);
|
2004-11-24 11:11:35 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
size_t actuallyread =
|
|
|
|
data->state.fread_func(data->state.buffer, 1, readthisamountnow,
|
|
|
|
data->state.in);
|
|
|
|
|
|
|
|
passed += actuallyread;
|
|
|
|
if((actuallyread == 0) || (actuallyread > readthisamountnow)) {
|
|
|
|
/* this checks for greater-than only to make sure that the
|
|
|
|
CURL_READFUNC_ABORT return code still aborts */
|
|
|
|
failf(data, "Could only read %" CURL_FORMAT_CURL_OFF_T
|
|
|
|
" bytes from the input", passed);
|
|
|
|
return CURLE_READ_ERROR;
|
|
|
|
}
|
|
|
|
} while(passed < data->state.resume_from);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* now, decrease the size of the read */
|
|
|
|
if(data->state.infilesize>0) {
|
|
|
|
data->state.infilesize -= data->state.resume_from;
|
|
|
|
|
|
|
|
if(data->state.infilesize <= 0) {
|
|
|
|
failf(data, "File already completely uploaded");
|
|
|
|
return CURLE_PARTIAL_FILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* we've passed, proceed as normal */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
CURLcode Curl_http_firstwrite(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
|
|
|
bool *done)
|
|
|
|
{
|
|
|
|
struct SingleRequest *k = &data->req;
|
|
|
|
DEBUGASSERT(conn->handler->protocol&(PROTO_FAMILY_HTTP|CURLPROTO_RTSP));
|
|
|
|
if(data->req.newurl) {
|
|
|
|
if(conn->bits.close) {
|
|
|
|
/* Abort after the headers if "follow Location" is set
|
|
|
|
and we're set to close anyway. */
|
|
|
|
k->keepon &= ~KEEP_RECV;
|
|
|
|
*done = TRUE;
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
/* We have a new url to load, but since we want to be able to re-use this
|
|
|
|
connection properly, we read the full response in "ignore more" */
|
|
|
|
k->ignorebody = TRUE;
|
|
|
|
infof(data, "Ignoring the response-body\n");
|
|
|
|
}
|
|
|
|
if(data->state.resume_from && !k->content_range &&
|
|
|
|
(data->state.httpreq == HTTPREQ_GET) &&
|
|
|
|
!k->ignorebody) {
|
|
|
|
|
|
|
|
if(k->size == data->state.resume_from) {
|
|
|
|
/* The resume point is at the end of file, consider this fine even if it
|
|
|
|
doesn't allow resume from here. */
|
|
|
|
infof(data, "The entire document is already downloaded");
|
|
|
|
connclose(conn, "already downloaded");
|
|
|
|
/* Abort download */
|
|
|
|
k->keepon &= ~KEEP_RECV;
|
|
|
|
*done = TRUE;
|
|
|
|
return CURLE_OK;
|
2017-09-02 12:47:10 -04:00
|
|
|
}
|
2002-12-01 06:20:41 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* we wanted to resume a download, although the server doesn't seem to
|
|
|
|
* support this and we did this with a GET (if it wasn't a GET we did a
|
|
|
|
* POST or PUT resume) */
|
|
|
|
failf(data, "HTTP server doesn't seem to support "
|
|
|
|
"byte ranges. Cannot resume.");
|
|
|
|
return CURLE_RANGE_ERROR;
|
|
|
|
}
|
2017-09-02 12:47:10 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(data->set.timecondition && !data->state.range) {
|
|
|
|
/* A time condition has been set AND no ranges have been requested. This
|
|
|
|
seems to be what chapter 13.3.4 of RFC 2616 defines to be the correct
|
|
|
|
action for a HTTP/1.1 client */
|
|
|
|
|
|
|
|
if(!Curl_meets_timecondition(data, k->timeofdoc)) {
|
|
|
|
*done = TRUE;
|
|
|
|
/* We're simulating a http 304 from server so we return
|
|
|
|
what should have been returned from the server */
|
|
|
|
data->info.httpcode = 304;
|
|
|
|
infof(data, "Simulate a HTTP 304 response!\n");
|
|
|
|
/* we abort the transfer before it is completed == we ruin the
|
|
|
|
re-use ability. Close the connection */
|
|
|
|
connclose(conn, "Simulated 304 handling");
|
|
|
|
return CURLE_OK;
|
2008-03-27 09:07:12 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
} /* we have a time condition */
|
2004-03-05 07:54:18 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
2017-09-02 12:47:10 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef USE_HYPER
|
|
|
|
/*
|
|
|
|
* Curl_http() gets called from the generic multi_do() function when a HTTP
|
|
|
|
* request is to be performed. This creates and sends a properly constructed
|
|
|
|
* HTTP request.
|
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
CURLcode Curl_http(struct Curl_easy *data, bool *done)
|
2020-12-14 08:10:33 -05:00
|
|
|
{
|
2021-01-08 11:58:15 -05:00
|
|
|
struct connectdata *conn = data->conn;
|
2020-12-14 08:10:33 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
|
|
|
struct HTTP *http;
|
|
|
|
Curl_HttpReq httpreq;
|
|
|
|
const char *te = ""; /* transfer-encoding */
|
|
|
|
const char *request;
|
|
|
|
const char *httpstring;
|
|
|
|
struct dynbuf req;
|
|
|
|
char *altused = NULL;
|
|
|
|
const char *p_accept; /* Accept: string */
|
|
|
|
|
|
|
|
/* Always consider the DO phase done after this function call, even if there
|
2021-01-07 15:11:17 -05:00
|
|
|
may be parts of the request that are not yet sent, since we can deal with
|
2020-12-14 08:10:33 -05:00
|
|
|
the rest of the request in the PERFORM phase. */
|
|
|
|
*done = TRUE;
|
|
|
|
|
|
|
|
if(conn->transport != TRNSPRT_QUIC) {
|
|
|
|
if(conn->httpversion < 20) { /* unless the connection is re-used and
|
|
|
|
already http2 */
|
|
|
|
switch(conn->negnpn) {
|
|
|
|
case CURL_HTTP_VERSION_2:
|
|
|
|
conn->httpversion = 20; /* we know we're on HTTP/2 now */
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http2_switched(data, NULL, 0);
|
2017-09-02 12:47:10 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2020-12-14 08:10:33 -05:00
|
|
|
break;
|
|
|
|
case CURL_HTTP_VERSION_1_1:
|
|
|
|
/* continue with HTTP/1.1 when explicitly requested */
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Check if user wants to use HTTP/2 with clear TCP*/
|
|
|
|
#ifdef USE_NGHTTP2
|
2021-01-08 11:58:15 -05:00
|
|
|
if(data->set.httpversion == CURL_HTTP_VERSION_2_PRIOR_KNOWLEDGE) {
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef CURL_DISABLE_PROXY
|
|
|
|
if(conn->bits.httpproxy && !conn->bits.tunnel_proxy) {
|
|
|
|
/* We don't support HTTP/2 proxies yet. Also it's debatable
|
|
|
|
whether or not this setting should apply to HTTP/2 proxies. */
|
|
|
|
infof(data, "Ignoring HTTP/2 prior knowledge due to proxy\n");
|
|
|
|
break;
|
|
|
|
}
|
2019-05-05 11:08:21 -04:00
|
|
|
#endif
|
2020-12-14 08:10:33 -05:00
|
|
|
DEBUGF(infof(data, "HTTP/2 over clean TCP\n"));
|
|
|
|
conn->httpversion = 20;
|
2017-09-02 12:47:10 -04:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http2_switched(data, NULL, 0);
|
2020-12-14 08:10:33 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
2017-09-02 12:47:10 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
else {
|
|
|
|
/* prepare for a http2 request */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http2_setup(data, conn);
|
2014-04-04 08:50:18 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
|
|
|
http = data->req.p.http;
|
|
|
|
DEBUGASSERT(http);
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_http_host(data, conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http_useragent(data);
|
2020-12-14 08:10:33 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2001-08-15 09:38:36 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
Curl_http_method(data, conn, &request, &httpreq);
|
2017-09-02 12:47:10 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* setup the authentication headers */
|
|
|
|
{
|
|
|
|
char *pq = NULL;
|
|
|
|
if(data->state.up.query) {
|
|
|
|
pq = aprintf("%s?%s", data->state.up.path, data->state.up.query);
|
|
|
|
if(!pq)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http_output_auth(data, conn, request, httpreq,
|
2020-12-14 08:10:33 -05:00
|
|
|
(pq ? pq : data->state.up.path), FALSE);
|
|
|
|
free(pq);
|
2008-03-27 09:07:12 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
2017-09-02 12:47:10 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
Curl_safefree(data->state.aptr.ref);
|
2021-01-08 11:58:15 -05:00
|
|
|
if(data->change.referer && !Curl_checkheaders(data, "Referer")) {
|
2020-12-14 08:10:33 -05:00
|
|
|
data->state.aptr.ref = aprintf("Referer: %s\r\n", data->change.referer);
|
|
|
|
if(!data->state.aptr.ref)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2014-01-19 17:24:03 -05:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
if(!Curl_checkheaders(data, "Accept-Encoding") &&
|
2020-12-14 08:10:33 -05:00
|
|
|
data->set.str[STRING_ENCODING]) {
|
|
|
|
Curl_safefree(data->state.aptr.accept_encoding);
|
|
|
|
data->state.aptr.accept_encoding =
|
|
|
|
aprintf("Accept-Encoding: %s\r\n", data->set.str[STRING_ENCODING]);
|
|
|
|
if(!data->state.aptr.accept_encoding)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Curl_safefree(data->state.aptr.accept_encoding);
|
|
|
|
data->state.aptr.accept_encoding = NULL;
|
|
|
|
}
|
2008-03-27 09:07:12 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifdef HAVE_LIBZ
|
|
|
|
/* we only consider transfer-encoding magic if libz support is built-in */
|
2002-03-14 09:39:23 -05:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
if(!Curl_checkheaders(data, "TE") &&
|
2020-12-14 08:10:33 -05:00
|
|
|
data->set.http_transfer_encoding) {
|
|
|
|
/* When we are to insert a TE: header in the request, we must also insert
|
|
|
|
TE in a Connection: header, so we need to merge the custom provided
|
|
|
|
Connection: header and prevent the original to get sent. Note that if
|
2021-01-07 15:11:17 -05:00
|
|
|
the user has inserted his/her own TE: header we don't do this magic
|
2020-12-14 08:10:33 -05:00
|
|
|
but then assume that the user will handle it all! */
|
2021-01-08 11:58:15 -05:00
|
|
|
char *cptr = Curl_checkheaders(data, "Connection");
|
2020-12-14 08:10:33 -05:00
|
|
|
#define TE_HEADER "TE: gzip\r\n"
|
2002-12-09 11:05:57 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
Curl_safefree(data->state.aptr.te);
|
2006-08-18 18:54:57 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(cptr) {
|
|
|
|
cptr = Curl_copy_header_value(cptr);
|
|
|
|
if(!cptr)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* Create the (updated) Connection: header */
|
|
|
|
data->state.aptr.te = aprintf("Connection: %s%sTE\r\n" TE_HEADER,
|
|
|
|
cptr ? cptr : "", (cptr && *cptr) ? ", ":"");
|
2003-05-28 03:54:33 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
free(cptr);
|
|
|
|
if(!data->state.aptr.te)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
#endif
|
2004-03-05 07:54:18 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_http_body(data, conn, httpreq, &te);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
p_accept = Curl_checkheaders(data, "Accept")?NULL:"Accept: */*\r\n";
|
2002-12-10 08:10:00 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_http_resume(data, conn, httpreq);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2003-05-27 04:33:08 -04:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http_range(data, httpreq);
|
2020-12-14 08:10:33 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2004-03-05 07:54:18 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
httpstring = get_http_string(data, conn);
|
2004-03-05 07:54:18 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* initialize a dynamic send-buffer */
|
|
|
|
Curl_dyn_init(&req, DYN_HTTP_REQUEST);
|
2009-10-30 18:24:48 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* add the main request stuff */
|
|
|
|
/* GET/HEAD/POST/PUT */
|
|
|
|
result = Curl_dyn_addf(&req, "%s ", request);
|
|
|
|
if(!result)
|
|
|
|
result = Curl_http_target(data, conn, &req);
|
|
|
|
if(result) {
|
|
|
|
Curl_dyn_free(&req);
|
|
|
|
return result;
|
|
|
|
}
|
2002-03-14 09:39:23 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifndef CURL_DISABLE_ALTSVC
|
2021-01-08 11:58:15 -05:00
|
|
|
if(conn->bits.altused && !Curl_checkheaders(data, "Alt-Used")) {
|
2020-12-14 08:10:33 -05:00
|
|
|
altused = aprintf("Alt-Used: %s:%d\r\n",
|
|
|
|
conn->conn_to_host.name, conn->conn_to_port);
|
|
|
|
if(!altused) {
|
|
|
|
Curl_dyn_free(&req);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2008-10-28 19:34:19 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
result =
|
|
|
|
Curl_dyn_addf(&req,
|
|
|
|
" HTTP/%s\r\n" /* HTTP version */
|
|
|
|
"%s" /* host */
|
|
|
|
"%s" /* proxyuserpwd */
|
|
|
|
"%s" /* userpwd */
|
|
|
|
"%s" /* range */
|
|
|
|
"%s" /* user agent */
|
|
|
|
"%s" /* accept */
|
|
|
|
"%s" /* TE: */
|
|
|
|
"%s" /* accept-encoding */
|
|
|
|
"%s" /* referer */
|
|
|
|
"%s" /* Proxy-Connection */
|
|
|
|
"%s" /* transfer-encoding */
|
|
|
|
"%s",/* Alt-Used */
|
2002-03-14 09:39:23 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
httpstring,
|
|
|
|
(data->state.aptr.host?data->state.aptr.host:""),
|
|
|
|
data->state.aptr.proxyuserpwd?
|
|
|
|
data->state.aptr.proxyuserpwd:"",
|
|
|
|
data->state.aptr.userpwd?data->state.aptr.userpwd:"",
|
|
|
|
(data->state.use_range && data->state.aptr.rangeline)?
|
|
|
|
data->state.aptr.rangeline:"",
|
|
|
|
(data->set.str[STRING_USERAGENT] &&
|
|
|
|
*data->set.str[STRING_USERAGENT] &&
|
|
|
|
data->state.aptr.uagent)?
|
|
|
|
data->state.aptr.uagent:"",
|
|
|
|
p_accept?p_accept:"",
|
|
|
|
data->state.aptr.te?data->state.aptr.te:"",
|
|
|
|
(data->set.str[STRING_ENCODING] &&
|
|
|
|
*data->set.str[STRING_ENCODING] &&
|
|
|
|
data->state.aptr.accept_encoding)?
|
|
|
|
data->state.aptr.accept_encoding:"",
|
|
|
|
(data->change.referer && data->state.aptr.ref)?
|
|
|
|
data->state.aptr.ref:"" /* Referer: <data> */,
|
|
|
|
#ifndef CURL_DISABLE_PROXY
|
|
|
|
(conn->bits.httpproxy &&
|
|
|
|
!conn->bits.tunnel_proxy &&
|
2021-01-17 12:20:06 -05:00
|
|
|
!Curl_checkheaders(data, "Proxy-Connection") &&
|
2021-01-08 11:58:15 -05:00
|
|
|
!Curl_checkProxyheaders(data, conn, "Proxy-Connection"))?
|
2020-12-14 08:10:33 -05:00
|
|
|
"Proxy-Connection: Keep-Alive\r\n":"",
|
|
|
|
#else
|
|
|
|
"",
|
|
|
|
#endif
|
|
|
|
te,
|
|
|
|
altused ? altused : ""
|
|
|
|
);
|
|
|
|
|
|
|
|
/* clear userpwd and proxyuserpwd to avoid re-using old credentials
|
|
|
|
* from re-used connections */
|
|
|
|
Curl_safefree(data->state.aptr.userpwd);
|
|
|
|
Curl_safefree(data->state.aptr.proxyuserpwd);
|
|
|
|
free(altused);
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(result) {
|
|
|
|
Curl_dyn_free(&req);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!(conn->handler->flags&PROTOPT_SSL) &&
|
|
|
|
conn->httpversion != 20 &&
|
|
|
|
(data->set.httpversion == CURL_HTTP_VERSION_2)) {
|
|
|
|
/* append HTTP2 upgrade magic stuff to the HTTP request if it isn't done
|
|
|
|
over SSL */
|
|
|
|
result = Curl_http2_request_upgrade(&req, conn);
|
|
|
|
if(result) {
|
|
|
|
Curl_dyn_free(&req);
|
2008-03-27 09:07:12 -04:00
|
|
|
return result;
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
|
|
|
}
|
2004-05-26 04:54:36 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_http_cookies(data, conn, &req);
|
|
|
|
if(!result)
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_add_timecondition(data, &req);
|
2020-12-14 08:10:33 -05:00
|
|
|
if(!result)
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_add_custom_headers(data, FALSE, &req);
|
2000-10-04 09:07:43 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(!result) {
|
|
|
|
http->postdata = NULL; /* nothing to post at this point */
|
|
|
|
if((httpreq == HTTPREQ_GET) ||
|
|
|
|
(httpreq == HTTPREQ_HEAD))
|
|
|
|
Curl_pgrsSetUploadSize(data, 0); /* nothing */
|
|
|
|
|
|
|
|
/* bodysend takes ownership of the 'req' memory on success */
|
|
|
|
result = Curl_http_bodysend(data, conn, &req, httpreq);
|
2003-05-27 04:33:08 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
if(result) {
|
|
|
|
Curl_dyn_free(&req);
|
2008-03-27 09:07:12 -04:00
|
|
|
return result;
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if((http->postsize > -1) &&
|
|
|
|
(http->postsize <= data->req.writebytecount) &&
|
|
|
|
(http->sending != HTTPSEND_REQUEST))
|
2020-02-29 06:00:18 -05:00
|
|
|
data->req.upload_done = TRUE;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2019-02-28 05:36:26 -05:00
|
|
|
if(data->req.writebytecount) {
|
2008-03-27 09:07:12 -04:00
|
|
|
/* if a request-body has been sent off, we make sure this progress is noted
|
|
|
|
properly */
|
2019-02-28 05:36:26 -05:00
|
|
|
Curl_pgrsSetUploadCounter(data, data->req.writebytecount);
|
2021-01-18 05:56:50 -05:00
|
|
|
if(Curl_pgrsUpdate(data))
|
2008-03-27 09:07:12 -04:00
|
|
|
result = CURLE_ABORTED_BY_CALLBACK;
|
2011-07-11 17:24:45 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(!http->postsize) {
|
2011-07-11 17:24:45 -04:00
|
|
|
/* already sent the entire request body, mark the "upload" as
|
|
|
|
complete */
|
2013-12-31 06:10:25 -05:00
|
|
|
infof(data, "upload completely sent off: %" CURL_FORMAT_CURL_OFF_T
|
|
|
|
" out of %" CURL_FORMAT_CURL_OFF_T " bytes\n",
|
2020-12-14 08:10:33 -05:00
|
|
|
data->req.writebytecount, http->postsize);
|
2011-07-11 17:24:45 -04:00
|
|
|
data->req.upload_done = TRUE;
|
|
|
|
data->req.keepon &= ~KEEP_SEND; /* we're done writing */
|
|
|
|
data->req.exp100 = EXP100_SEND_DATA; /* already sent */
|
2017-05-09 06:47:49 -04:00
|
|
|
Curl_expire_done(data, EXPIRE_100_TIMEOUT);
|
2011-07-11 17:24:45 -04:00
|
|
|
}
|
2008-03-27 09:07:12 -04:00
|
|
|
}
|
|
|
|
|
2016-09-15 08:01:06 -04:00
|
|
|
if((conn->httpversion == 20) && data->req.upload_chunky)
|
|
|
|
/* upload_chunky was set above to set up the request in a chunky fashion,
|
|
|
|
but is disabled here again to avoid that the chunked encoded version is
|
|
|
|
actually used when sending the request body over h2 */
|
|
|
|
data->req.upload_chunky = FALSE;
|
2008-03-27 09:07:12 -04:00
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#endif /* USE_HYPER */
|
|
|
|
|
2018-08-13 06:12:14 -04:00
|
|
|
typedef enum {
|
|
|
|
STATUS_UNKNOWN, /* not enough data to tell yet */
|
|
|
|
STATUS_DONE, /* a status line was read */
|
|
|
|
STATUS_BAD /* not a status line */
|
|
|
|
} statusline;
|
|
|
|
|
|
|
|
|
|
|
|
/* Check a string for a prefix. Check no more than 'len' bytes */
|
|
|
|
static bool checkprefixmax(const char *prefix, const char *buffer, size_t len)
|
|
|
|
{
|
|
|
|
size_t ch = CURLMIN(strlen(prefix), len);
|
|
|
|
return curl_strnequal(prefix, buffer, ch);
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:45:02 -05:00
|
|
|
/*
|
|
|
|
* checkhttpprefix()
|
|
|
|
*
|
|
|
|
* Returns TRUE if member of the list matches prefix of string
|
|
|
|
*/
|
2018-08-13 06:12:14 -04:00
|
|
|
static statusline
|
2016-06-21 09:47:12 -04:00
|
|
|
checkhttpprefix(struct Curl_easy *data,
|
2018-08-13 06:12:14 -04:00
|
|
|
const char *s, size_t len)
|
2009-12-29 16:45:02 -05:00
|
|
|
{
|
|
|
|
struct curl_slist *head = data->set.http200aliases;
|
2018-08-13 06:12:14 -04:00
|
|
|
statusline rc = STATUS_BAD;
|
|
|
|
statusline onmatch = len >= 5? STATUS_DONE : STATUS_UNKNOWN;
|
2009-12-29 16:45:02 -05:00
|
|
|
#ifdef CURL_DOES_CONVERSIONS
|
|
|
|
/* convert from the network encoding using a scratch area */
|
2010-01-21 08:58:30 -05:00
|
|
|
char *scratch = strdup(s);
|
2009-12-29 16:45:02 -05:00
|
|
|
if(NULL == scratch) {
|
2016-12-13 17:34:59 -05:00
|
|
|
failf(data, "Failed to allocate memory for conversion!");
|
2011-04-19 18:48:20 -04:00
|
|
|
return FALSE; /* can't return CURLE_OUT_OF_MEMORY so return FALSE */
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
2017-09-09 17:55:08 -04:00
|
|
|
if(CURLE_OK != Curl_convert_from_network(data, scratch, strlen(s) + 1)) {
|
2009-12-29 16:45:02 -05:00
|
|
|
/* Curl_convert_from_network calls failf if unsuccessful */
|
2011-04-19 18:48:20 -04:00
|
|
|
free(scratch);
|
|
|
|
return FALSE; /* can't return CURLE_foobar so return FALSE */
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
s = scratch;
|
|
|
|
#endif /* CURL_DOES_CONVERSIONS */
|
|
|
|
|
|
|
|
while(head) {
|
2018-08-13 06:12:14 -04:00
|
|
|
if(checkprefixmax(head->data, s, len)) {
|
|
|
|
rc = onmatch;
|
2009-12-29 16:45:02 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
head = head->next;
|
|
|
|
}
|
|
|
|
|
2018-08-13 06:12:14 -04:00
|
|
|
if((rc != STATUS_DONE) && (checkprefixmax("HTTP/", s, len)))
|
|
|
|
rc = onmatch;
|
2009-12-29 16:45:02 -05:00
|
|
|
|
|
|
|
#ifdef CURL_DOES_CONVERSIONS
|
|
|
|
free(scratch);
|
|
|
|
#endif /* CURL_DOES_CONVERSIONS */
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-01-21 08:58:30 -05:00
|
|
|
#ifndef CURL_DISABLE_RTSP
|
2018-08-13 06:12:14 -04:00
|
|
|
static statusline
|
2016-06-21 09:47:12 -04:00
|
|
|
checkrtspprefix(struct Curl_easy *data,
|
2018-08-13 06:12:14 -04:00
|
|
|
const char *s, size_t len)
|
2010-01-21 08:58:30 -05:00
|
|
|
{
|
2018-08-13 06:12:14 -04:00
|
|
|
statusline result = STATUS_BAD;
|
|
|
|
statusline onmatch = len >= 5? STATUS_DONE : STATUS_UNKNOWN;
|
2010-01-21 08:58:30 -05:00
|
|
|
|
|
|
|
#ifdef CURL_DOES_CONVERSIONS
|
|
|
|
/* convert from the network encoding using a scratch area */
|
|
|
|
char *scratch = strdup(s);
|
|
|
|
if(NULL == scratch) {
|
2016-12-13 17:34:59 -05:00
|
|
|
failf(data, "Failed to allocate memory for conversion!");
|
2010-01-21 08:58:30 -05:00
|
|
|
return FALSE; /* can't return CURLE_OUT_OF_MEMORY so return FALSE */
|
|
|
|
}
|
2017-09-09 17:55:08 -04:00
|
|
|
if(CURLE_OK != Curl_convert_from_network(data, scratch, strlen(s) + 1)) {
|
2010-01-21 08:58:30 -05:00
|
|
|
/* Curl_convert_from_network calls failf if unsuccessful */
|
2017-09-02 07:40:19 -04:00
|
|
|
result = FALSE; /* can't return CURLE_foobar so return FALSE */
|
2010-01-21 08:58:30 -05:00
|
|
|
}
|
2018-08-13 06:12:14 -04:00
|
|
|
else if(checkprefixmax("RTSP/", scratch, len))
|
|
|
|
result = onmatch;
|
2017-09-02 07:40:19 -04:00
|
|
|
free(scratch);
|
2010-01-21 08:58:30 -05:00
|
|
|
#else
|
|
|
|
(void)data; /* unused */
|
2018-08-13 06:12:14 -04:00
|
|
|
if(checkprefixmax("RTSP/", s, len))
|
|
|
|
result = onmatch;
|
2010-01-21 08:58:30 -05:00
|
|
|
#endif /* CURL_DOES_CONVERSIONS */
|
2017-09-02 07:40:19 -04:00
|
|
|
|
|
|
|
return result;
|
2010-01-21 08:58:30 -05:00
|
|
|
}
|
|
|
|
#endif /* CURL_DISABLE_RTSP */
|
|
|
|
|
2018-08-13 06:12:14 -04:00
|
|
|
static statusline
|
2016-06-21 09:47:12 -04:00
|
|
|
checkprotoprefix(struct Curl_easy *data, struct connectdata *conn,
|
2018-08-13 06:12:14 -04:00
|
|
|
const char *s, size_t len)
|
2010-01-21 08:58:30 -05:00
|
|
|
{
|
|
|
|
#ifndef CURL_DISABLE_RTSP
|
2011-03-14 17:52:14 -04:00
|
|
|
if(conn->handler->protocol & CURLPROTO_RTSP)
|
2018-08-13 06:12:14 -04:00
|
|
|
return checkrtspprefix(data, s, len);
|
2010-02-25 03:09:05 -05:00
|
|
|
#else
|
|
|
|
(void)conn;
|
2010-01-21 08:58:30 -05:00
|
|
|
#endif /* CURL_DISABLE_RTSP */
|
|
|
|
|
2018-08-13 06:12:14 -04:00
|
|
|
return checkhttpprefix(data, s, len);
|
2010-01-21 08:58:30 -05:00
|
|
|
}
|
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/*
|
|
|
|
* Curl_http_header() parses a single response header.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_http_header(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
char *headp)
|
|
|
|
{
|
|
|
|
CURLcode result;
|
|
|
|
struct SingleRequest *k = &data->req;
|
|
|
|
/* Check for Content-Length: header lines to get size */
|
|
|
|
if(!k->http_bodyless &&
|
|
|
|
!data->set.ignorecl && checkprefix("Content-Length:", headp)) {
|
|
|
|
curl_off_t contentlength;
|
|
|
|
CURLofft offt = curlx_strtoofft(headp + 15, NULL, 10, &contentlength);
|
|
|
|
|
|
|
|
if(offt == CURL_OFFT_OK) {
|
|
|
|
if(data->set.max_filesize &&
|
|
|
|
contentlength > data->set.max_filesize) {
|
|
|
|
failf(data, "Maximum file size exceeded");
|
|
|
|
return CURLE_FILESIZE_EXCEEDED;
|
|
|
|
}
|
|
|
|
k->size = contentlength;
|
|
|
|
k->maxdownload = k->size;
|
|
|
|
/* we set the progress download size already at this point
|
|
|
|
just to make it easier for apps/callbacks to extract this
|
|
|
|
info as soon as possible */
|
|
|
|
Curl_pgrsSetDownloadSize(data, k->size);
|
|
|
|
}
|
|
|
|
else if(offt == CURL_OFFT_FLOW) {
|
|
|
|
/* out of range */
|
|
|
|
if(data->set.max_filesize) {
|
|
|
|
failf(data, "Maximum file size exceeded");
|
|
|
|
return CURLE_FILESIZE_EXCEEDED;
|
|
|
|
}
|
|
|
|
streamclose(conn, "overflow content-length");
|
|
|
|
infof(data, "Overflow Content-Length: value!\n");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* negative or just rubbish - bad HTTP */
|
|
|
|
failf(data, "Invalid Content-Length: value");
|
|
|
|
return CURLE_WEIRD_SERVER_REPLY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* check for Content-Type: header lines to get the MIME-type */
|
|
|
|
else if(checkprefix("Content-Type:", headp)) {
|
|
|
|
char *contenttype = Curl_copy_header_value(headp);
|
|
|
|
if(!contenttype)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
if(!*contenttype)
|
|
|
|
/* ignore empty data */
|
|
|
|
free(contenttype);
|
|
|
|
else {
|
|
|
|
Curl_safefree(data->info.contenttype);
|
|
|
|
data->info.contenttype = contenttype;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifndef CURL_DISABLE_PROXY
|
|
|
|
else if((conn->httpversion == 10) &&
|
|
|
|
conn->bits.httpproxy &&
|
|
|
|
Curl_compareheader(headp, "Proxy-Connection:", "keep-alive")) {
|
|
|
|
/*
|
|
|
|
* When a HTTP/1.0 reply comes when using a proxy, the
|
|
|
|
* 'Proxy-Connection: keep-alive' line tells us the
|
|
|
|
* connection will be kept alive for our pleasure.
|
|
|
|
* Default action for 1.0 is to close.
|
|
|
|
*/
|
|
|
|
connkeep(conn, "Proxy-Connection keep-alive"); /* don't close */
|
|
|
|
infof(data, "HTTP/1.0 proxy connection set to keep alive!\n");
|
|
|
|
}
|
|
|
|
else if((conn->httpversion == 11) &&
|
|
|
|
conn->bits.httpproxy &&
|
|
|
|
Curl_compareheader(headp, "Proxy-Connection:", "close")) {
|
|
|
|
/*
|
|
|
|
* We get a HTTP/1.1 response from a proxy and it says it'll
|
|
|
|
* close down after this transfer.
|
|
|
|
*/
|
|
|
|
connclose(conn, "Proxy-Connection: asked to close after done");
|
|
|
|
infof(data, "HTTP/1.1 proxy connection set close!\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else if((conn->httpversion == 10) &&
|
|
|
|
Curl_compareheader(headp, "Connection:", "keep-alive")) {
|
|
|
|
/*
|
|
|
|
* A HTTP/1.0 reply with the 'Connection: keep-alive' line
|
|
|
|
* tells us the connection will be kept alive for our
|
|
|
|
* pleasure. Default action for 1.0 is to close.
|
|
|
|
*
|
|
|
|
* [RFC2068, section 19.7.1] */
|
|
|
|
connkeep(conn, "Connection keep-alive");
|
|
|
|
infof(data, "HTTP/1.0 connection set to keep alive!\n");
|
|
|
|
}
|
|
|
|
else if(Curl_compareheader(headp, "Connection:", "close")) {
|
|
|
|
/*
|
|
|
|
* [RFC 2616, section 8.1.2.1]
|
|
|
|
* "Connection: close" is HTTP/1.1 language and means that
|
|
|
|
* the connection will close when this request has been
|
|
|
|
* served.
|
|
|
|
*/
|
|
|
|
streamclose(conn, "Connection: close used");
|
|
|
|
}
|
|
|
|
else if(!k->http_bodyless && checkprefix("Transfer-Encoding:", headp)) {
|
|
|
|
/* One or more encodings. We check for chunked and/or a compression
|
|
|
|
algorithm. */
|
|
|
|
/*
|
|
|
|
* [RFC 2616, section 3.6.1] A 'chunked' transfer encoding
|
|
|
|
* means that the server will send a series of "chunks". Each
|
|
|
|
* chunk starts with line with info (including size of the
|
|
|
|
* coming block) (terminated with CRLF), then a block of data
|
|
|
|
* with the previously mentioned size. There can be any amount
|
|
|
|
* of chunks, and a chunk-data set to zero signals the
|
|
|
|
* end-of-chunks. */
|
|
|
|
|
|
|
|
result = Curl_build_unencoding_stack(conn, headp + 18, TRUE);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else if(!k->http_bodyless && checkprefix("Content-Encoding:", headp) &&
|
|
|
|
data->set.str[STRING_ENCODING]) {
|
|
|
|
/*
|
|
|
|
* Process Content-Encoding. Look for the values: identity,
|
|
|
|
* gzip, deflate, compress, x-gzip and x-compress. x-gzip and
|
|
|
|
* x-compress are the same as gzip and compress. (Sec 3.5 RFC
|
|
|
|
* 2616). zlib cannot handle compress. However, errors are
|
|
|
|
* handled further down when the response body is processed
|
|
|
|
*/
|
|
|
|
result = Curl_build_unencoding_stack(conn, headp + 17, FALSE);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else if(checkprefix("Retry-After:", headp)) {
|
|
|
|
/* Retry-After = HTTP-date / delay-seconds */
|
|
|
|
curl_off_t retry_after = 0; /* zero for unknown or "now" */
|
|
|
|
time_t date = Curl_getdate_capped(&headp[12]);
|
|
|
|
if(-1 == date) {
|
|
|
|
/* not a date, try it as a decimal number */
|
|
|
|
(void)curlx_strtoofft(&headp[12], NULL, 10, &retry_after);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* convert date to number of seconds into the future */
|
|
|
|
retry_after = date - time(NULL);
|
|
|
|
data->info.retry_after = retry_after; /* store it */
|
|
|
|
}
|
|
|
|
else if(!k->http_bodyless && checkprefix("Content-Range:", headp)) {
|
|
|
|
/* Content-Range: bytes [num]-
|
|
|
|
Content-Range: bytes: [num]-
|
|
|
|
Content-Range: [num]-
|
|
|
|
Content-Range: [asterisk]/[total]
|
|
|
|
|
|
|
|
The second format was added since Sun's webserver
|
|
|
|
JavaWebServer/1.1.1 obviously sends the header this way!
|
|
|
|
The third added since some servers use that!
|
|
|
|
The forth means the requested range was unsatisfied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
char *ptr = headp + 14;
|
|
|
|
|
|
|
|
/* Move forward until first digit or asterisk */
|
|
|
|
while(*ptr && !ISDIGIT(*ptr) && *ptr != '*')
|
|
|
|
ptr++;
|
|
|
|
|
|
|
|
/* if it truly stopped on a digit */
|
|
|
|
if(ISDIGIT(*ptr)) {
|
|
|
|
if(!curlx_strtoofft(ptr, NULL, 10, &k->offset)) {
|
|
|
|
if(data->state.resume_from == k->offset)
|
|
|
|
/* we asked for a resume and we got it */
|
|
|
|
k->content_range = TRUE;
|
2012-07-20 07:33:58 -04:00
|
|
|
}
|
2020-12-14 08:10:33 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
data->state.resume_from = 0; /* get everything */
|
|
|
|
}
|
|
|
|
#if !defined(CURL_DISABLE_COOKIES)
|
|
|
|
else if(data->cookies && data->state.cookie_engine &&
|
|
|
|
checkprefix("Set-Cookie:", headp)) {
|
|
|
|
Curl_share_lock(data, CURL_LOCK_DATA_COOKIE,
|
|
|
|
CURL_LOCK_ACCESS_SINGLE);
|
|
|
|
Curl_cookie_add(data,
|
|
|
|
data->cookies, TRUE, FALSE, headp + 11,
|
|
|
|
/* If there is a custom-set Host: name, use it
|
|
|
|
here, or else use real peer host name. */
|
|
|
|
data->state.aptr.cookiehost?
|
|
|
|
data->state.aptr.cookiehost:conn->host.name,
|
|
|
|
data->state.up.path,
|
|
|
|
(conn->handler->protocol&CURLPROTO_HTTPS)?
|
|
|
|
TRUE:FALSE);
|
|
|
|
Curl_share_unlock(data, CURL_LOCK_DATA_COOKIE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else if(!k->http_bodyless && checkprefix("Last-Modified:", headp) &&
|
|
|
|
(data->set.timecondition || data->set.get_filetime) ) {
|
|
|
|
k->timeofdoc = Curl_getdate_capped(headp + strlen("Last-Modified:"));
|
|
|
|
if(data->set.get_filetime)
|
|
|
|
data->info.filetime = k->timeofdoc;
|
|
|
|
}
|
|
|
|
else if((checkprefix("WWW-Authenticate:", headp) &&
|
|
|
|
(401 == k->httpcode)) ||
|
|
|
|
(checkprefix("Proxy-authenticate:", headp) &&
|
|
|
|
(407 == k->httpcode))) {
|
|
|
|
|
|
|
|
bool proxy = (k->httpcode == 407) ? TRUE : FALSE;
|
|
|
|
char *auth = Curl_copy_header_value(headp);
|
|
|
|
if(!auth)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http_input_auth(data, proxy, auth);
|
2020-12-14 08:10:33 -05:00
|
|
|
|
|
|
|
free(auth);
|
|
|
|
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#ifdef USE_SPNEGO
|
|
|
|
else if(checkprefix("Persistent-Auth", headp)) {
|
|
|
|
struct negotiatedata *negdata = &conn->negotiate;
|
|
|
|
struct auth *authp = &data->state.authhost;
|
|
|
|
if(authp->picked == CURLAUTH_NEGOTIATE) {
|
|
|
|
char *persistentauth = Curl_copy_header_value(headp);
|
|
|
|
if(!persistentauth)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
negdata->noauthpersist = checkprefix("false", persistentauth)?
|
|
|
|
TRUE:FALSE;
|
|
|
|
negdata->havenoauthpersist = TRUE;
|
|
|
|
infof(data, "Negotiate: noauthpersist -> %d, header part: %s",
|
|
|
|
negdata->noauthpersist, persistentauth);
|
|
|
|
free(persistentauth);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else if((k->httpcode >= 300 && k->httpcode < 400) &&
|
|
|
|
checkprefix("Location:", headp) &&
|
|
|
|
!data->req.location) {
|
|
|
|
/* this is the URL that the server advises us to use instead */
|
|
|
|
char *location = Curl_copy_header_value(headp);
|
|
|
|
if(!location)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
if(!*location)
|
|
|
|
/* ignore empty data */
|
|
|
|
free(location);
|
|
|
|
else {
|
|
|
|
data->req.location = location;
|
2012-07-20 07:33:58 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
if(data->set.http_follow_location) {
|
|
|
|
DEBUGASSERT(!data->req.newurl);
|
|
|
|
data->req.newurl = strdup(data->req.location); /* clone */
|
|
|
|
if(!data->req.newurl)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2012-07-20 07:33:58 -04:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
/* some cases of POST and PUT etc needs to rewind the data
|
|
|
|
stream at this point */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = http_perhapsrewind(data, conn);
|
2020-12-14 08:10:33 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2012-07-20 07:33:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
#ifdef USE_HSTS
|
|
|
|
/* If enabled, the header is incoming and this is over HTTPS */
|
|
|
|
else if(data->hsts && checkprefix("Strict-Transport-Security:", headp) &&
|
|
|
|
(conn->handler->flags & PROTOPT_SSL)) {
|
|
|
|
CURLcode check =
|
|
|
|
Curl_hsts_parse(data->hsts, data->state.up.hostname,
|
|
|
|
&headp[ sizeof("Strict-Transport-Security:") -1 ]);
|
|
|
|
if(check)
|
|
|
|
infof(data, "Illegal STS header skipped\n");
|
|
|
|
#ifdef DEBUGBUILD
|
|
|
|
else
|
|
|
|
infof(data, "Parsed STS header fine (%zu entries)\n",
|
|
|
|
data->hsts->list.size);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifndef CURL_DISABLE_ALTSVC
|
|
|
|
/* If enabled, the header is incoming and this is over HTTPS */
|
|
|
|
else if(data->asi && checkprefix("Alt-Svc:", headp) &&
|
|
|
|
((conn->handler->flags & PROTOPT_SSL) ||
|
|
|
|
#ifdef CURLDEBUG
|
|
|
|
/* allow debug builds to circumvent the HTTPS restriction */
|
|
|
|
getenv("CURL_ALTSVC_HTTP")
|
|
|
|
#else
|
|
|
|
0
|
|
|
|
#endif
|
|
|
|
)) {
|
|
|
|
/* the ALPN of the current request */
|
|
|
|
enum alpnid id = (conn->httpversion == 20) ? ALPN_h2 : ALPN_h1;
|
|
|
|
result = Curl_altsvc_parse(data, data->asi,
|
|
|
|
&headp[ strlen("Alt-Svc:") ],
|
|
|
|
id, conn->host.name,
|
|
|
|
curlx_uitous(conn->remote_port));
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else if(conn->handler->protocol & CURLPROTO_RTSP) {
|
|
|
|
result = Curl_rtsp_parseheader(conn, headp);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called after the first HTTP response line (the status line) has been
|
|
|
|
* received and parsed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CURLcode Curl_http_statusline(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn)
|
|
|
|
{
|
|
|
|
struct SingleRequest *k = &data->req;
|
|
|
|
data->info.httpcode = k->httpcode;
|
|
|
|
|
|
|
|
data->info.httpversion = conn->httpversion;
|
|
|
|
if(!data->state.httpversion ||
|
|
|
|
data->state.httpversion > conn->httpversion)
|
|
|
|
/* store the lowest server version we encounter */
|
|
|
|
data->state.httpversion = conn->httpversion;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code executes as part of processing the header. As a
|
|
|
|
* result, it's not totally clear how to interpret the
|
|
|
|
* response code yet as that depends on what other headers may
|
|
|
|
* be present. 401 and 407 may be errors, but may be OK
|
|
|
|
* depending on how authentication is working. Other codes
|
|
|
|
* are definitely errors, so give up here.
|
|
|
|
*/
|
|
|
|
if(data->state.resume_from && data->state.httpreq == HTTPREQ_GET &&
|
|
|
|
k->httpcode == 416) {
|
|
|
|
/* "Requested Range Not Satisfiable", just proceed and
|
|
|
|
pretend this is no error */
|
|
|
|
k->ignorebody = TRUE; /* Avoid appending error msg to good data. */
|
|
|
|
}
|
|
|
|
|
|
|
|
if(conn->httpversion == 10) {
|
|
|
|
/* Default action for HTTP/1.0 must be to close, unless
|
|
|
|
we get one of those fancy headers that tell us the
|
|
|
|
server keeps it open for us! */
|
|
|
|
infof(data, "HTTP 1.0, assume close after body\n");
|
|
|
|
connclose(conn, "HTTP/1.0 close after body");
|
|
|
|
}
|
|
|
|
else if(conn->httpversion == 20 ||
|
|
|
|
(k->upgr101 == UPGR101_REQUESTED && k->httpcode == 101)) {
|
|
|
|
DEBUGF(infof(data, "HTTP/2 found, allow multiplexing\n"));
|
|
|
|
/* HTTP/2 cannot avoid multiplexing since it is a core functionality
|
|
|
|
of the protocol */
|
|
|
|
conn->bundle->multiuse = BUNDLE_MULTIPLEX;
|
|
|
|
}
|
|
|
|
else if(conn->httpversion >= 11 &&
|
|
|
|
!conn->bits.close) {
|
|
|
|
/* If HTTP version is >= 1.1 and connection is persistent */
|
|
|
|
DEBUGF(infof(data,
|
|
|
|
"HTTP 1.1 or later with persistent connection\n"));
|
|
|
|
}
|
|
|
|
|
|
|
|
k->http_bodyless = k->httpcode >= 100 && k->httpcode < 200;
|
|
|
|
switch(k->httpcode) {
|
|
|
|
case 304:
|
|
|
|
/* (quote from RFC2616, section 10.3.5): The 304 response
|
|
|
|
* MUST NOT contain a message-body, and thus is always
|
|
|
|
* terminated by the first empty line after the header
|
|
|
|
* fields. */
|
|
|
|
if(data->set.timecondition)
|
|
|
|
data->info.timecond = TRUE;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 204:
|
|
|
|
/* (quote from RFC2616, section 10.2.5): The server has
|
|
|
|
* fulfilled the request but does not need to return an
|
|
|
|
* entity-body ... The 204 response MUST NOT include a
|
|
|
|
* message-body, and thus is always terminated by the first
|
|
|
|
* empty line after the header fields. */
|
|
|
|
k->size = 0;
|
|
|
|
k->maxdownload = 0;
|
|
|
|
k->http_bodyless = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
2012-07-20 07:33:58 -04:00
|
|
|
}
|
2009-12-29 16:45:02 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read any HTTP header lines from the server and pass them to the client app.
|
|
|
|
*/
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_http_readwrite_headers(struct Curl_easy *data,
|
2020-05-02 11:04:08 -04:00
|
|
|
struct connectdata *conn,
|
|
|
|
ssize_t *nread,
|
|
|
|
bool *stop_reading)
|
2009-12-29 16:45:02 -05:00
|
|
|
{
|
|
|
|
CURLcode result;
|
2010-01-07 17:48:28 -05:00
|
|
|
struct SingleRequest *k = &data->req;
|
2018-03-24 18:47:41 -04:00
|
|
|
ssize_t onread = *nread;
|
|
|
|
char *ostr = k->str;
|
2020-05-02 11:04:08 -04:00
|
|
|
char *headp;
|
|
|
|
char *str_start;
|
|
|
|
char *end_ptr;
|
2009-12-29 16:45:02 -05:00
|
|
|
|
|
|
|
/* header line within buffer loop */
|
|
|
|
do {
|
|
|
|
size_t rest_length;
|
|
|
|
size_t full_length;
|
|
|
|
int writetype;
|
|
|
|
|
|
|
|
/* str_start is start of line within buf */
|
2020-05-02 11:04:08 -04:00
|
|
|
str_start = k->str;
|
2009-12-29 16:45:02 -05:00
|
|
|
|
|
|
|
/* data is in network encoding so use 0x0a instead of '\n' */
|
2020-05-02 11:04:08 -04:00
|
|
|
end_ptr = memchr(str_start, 0x0a, *nread);
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
if(!end_ptr) {
|
2009-12-29 16:45:02 -05:00
|
|
|
/* Not a complete header line within buffer, append the data to
|
|
|
|
the end of the headerbuff. */
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_addn(&data->state.headerb, str_start, *nread);
|
2009-12-29 16:45:02 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2018-08-13 06:12:14 -04:00
|
|
|
if(!k->headerline) {
|
|
|
|
/* check if this looks like a protocol header */
|
2020-05-02 11:04:08 -04:00
|
|
|
statusline st =
|
|
|
|
checkprotoprefix(data, conn,
|
|
|
|
Curl_dyn_ptr(&data->state.headerb),
|
|
|
|
Curl_dyn_len(&data->state.headerb));
|
|
|
|
|
2018-08-13 06:12:14 -04:00
|
|
|
if(st == STATUS_BAD) {
|
2010-01-21 08:58:30 -05:00
|
|
|
/* this is not the beginning of a protocol first header line */
|
2009-12-29 16:45:02 -05:00
|
|
|
k->header = FALSE;
|
|
|
|
k->badheader = HEADER_ALLBAD;
|
2018-08-13 06:12:14 -04:00
|
|
|
streamclose(conn, "bad HTTP: No end-of-message indicator");
|
2018-12-17 09:46:56 -05:00
|
|
|
if(!data->set.http09_allowed) {
|
2020-12-23 17:41:13 -05:00
|
|
|
failf(data, "Received HTTP/0.9 when not allowed");
|
2018-12-17 09:46:56 -05:00
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
}
|
2009-12-29 16:45:02 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
break; /* read more and try again */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* decrease the size of the remaining (supposed) header line */
|
2020-05-02 11:04:08 -04:00
|
|
|
rest_length = (end_ptr - k->str) + 1;
|
2009-12-29 16:45:02 -05:00
|
|
|
*nread -= (ssize_t)rest_length;
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
k->str = end_ptr + 1; /* move past new line */
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
full_length = k->str - str_start;
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_dyn_addn(&data->state.headerb, str_start, full_length);
|
2009-12-29 16:45:02 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
/****
|
2020-05-02 11:04:08 -04:00
|
|
|
* We now have a FULL header line in 'headerb'.
|
2009-12-29 16:45:02 -05:00
|
|
|
*****/
|
|
|
|
|
|
|
|
if(!k->headerline) {
|
|
|
|
/* the first read header */
|
2020-05-02 11:04:08 -04:00
|
|
|
statusline st = checkprotoprefix(data, conn,
|
|
|
|
Curl_dyn_ptr(&data->state.headerb),
|
|
|
|
Curl_dyn_len(&data->state.headerb));
|
2018-08-13 06:12:14 -04:00
|
|
|
if(st == STATUS_BAD) {
|
|
|
|
streamclose(conn, "bad HTTP: No end-of-message indicator");
|
2010-01-21 08:58:30 -05:00
|
|
|
/* this is not the beginning of a protocol first header line */
|
2018-12-17 09:46:56 -05:00
|
|
|
if(!data->set.http09_allowed) {
|
2020-12-23 17:41:13 -05:00
|
|
|
failf(data, "Received HTTP/0.9 when not allowed");
|
2018-12-17 09:46:56 -05:00
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
}
|
2009-12-29 16:45:02 -05:00
|
|
|
k->header = FALSE;
|
|
|
|
if(*nread)
|
|
|
|
/* since there's more, this is a partial bad header */
|
|
|
|
k->badheader = HEADER_PARTHEADER;
|
|
|
|
else {
|
|
|
|
/* this was all we read so it's all a bad header */
|
|
|
|
k->badheader = HEADER_ALLBAD;
|
2018-03-24 18:47:41 -04:00
|
|
|
*nread = onread;
|
|
|
|
k->str = ostr;
|
|
|
|
return CURLE_OK;
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
/* headers are in network encoding so use 0x0a and 0x0d instead of '\n'
|
|
|
|
and '\r' */
|
|
|
|
headp = Curl_dyn_ptr(&data->state.headerb);
|
|
|
|
if((0x0a == *headp) || (0x0d == *headp)) {
|
2009-12-29 16:45:02 -05:00
|
|
|
size_t headerlen;
|
|
|
|
/* Zero-length header line means end of headers! */
|
|
|
|
|
|
|
|
#ifdef CURL_DOES_CONVERSIONS
|
2020-05-02 11:04:08 -04:00
|
|
|
if(0x0d == *headp) {
|
|
|
|
*headp = '\r'; /* replace with CR in host encoding */
|
|
|
|
headp++; /* pass the CR byte */
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
2020-05-02 11:04:08 -04:00
|
|
|
if(0x0a == *headp) {
|
|
|
|
*headp = '\n'; /* replace with LF in host encoding */
|
|
|
|
headp++; /* pass the LF byte */
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
#else
|
2020-05-02 11:04:08 -04:00
|
|
|
if('\r' == *headp)
|
|
|
|
headp++; /* pass the \r byte */
|
|
|
|
if('\n' == *headp)
|
|
|
|
headp++; /* pass the \n byte */
|
2009-12-29 16:45:02 -05:00
|
|
|
#endif /* CURL_DOES_CONVERSIONS */
|
|
|
|
|
|
|
|
if(100 <= k->httpcode && 199 >= k->httpcode) {
|
2013-09-12 07:51:04 -04:00
|
|
|
/* "A user agent MAY ignore unexpected 1xx status responses." */
|
|
|
|
switch(k->httpcode) {
|
|
|
|
case 100:
|
2016-06-28 04:57:30 -04:00
|
|
|
/*
|
|
|
|
* We have made a HTTP PUT or POST and this is 1.1-lingo
|
|
|
|
* that tells us that the server is OK with this and ready
|
|
|
|
* to receive the data.
|
|
|
|
* However, we'll get more headers now so we must get
|
|
|
|
* back into the header-parsing state!
|
|
|
|
*/
|
|
|
|
k->header = TRUE;
|
|
|
|
k->headerline = 0; /* restart the header line counter */
|
|
|
|
|
2013-09-12 07:51:04 -04:00
|
|
|
/* if we did wait for this do enable write now! */
|
2016-06-21 16:43:58 -04:00
|
|
|
if(k->exp100 > EXP100_SEND_DATA) {
|
2013-09-12 07:51:04 -04:00
|
|
|
k->exp100 = EXP100_SEND_DATA;
|
|
|
|
k->keepon |= KEEP_SEND;
|
2017-05-09 06:47:49 -04:00
|
|
|
Curl_expire_done(data, EXPIRE_100_TIMEOUT);
|
2013-09-12 07:51:04 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 101:
|
|
|
|
/* Switching Protocols */
|
|
|
|
if(k->upgr101 == UPGR101_REQUESTED) {
|
2016-06-28 04:57:30 -04:00
|
|
|
/* Switching to HTTP/2 */
|
2013-09-12 07:51:04 -04:00
|
|
|
infof(data, "Received 101\n");
|
|
|
|
k->upgr101 = UPGR101_RECEIVED;
|
|
|
|
|
2016-06-28 04:57:30 -04:00
|
|
|
/* we'll get more headers (HTTP/2 response) */
|
|
|
|
k->header = TRUE;
|
|
|
|
k->headerline = 0; /* restart the header line counter */
|
|
|
|
|
2014-11-12 12:07:24 -05:00
|
|
|
/* switch to http2 now. The bytes after response headers
|
|
|
|
are also processed here, otherwise they are lost. */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http2_switched(data, k->str, *nread);
|
2014-07-23 03:23:56 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2014-11-12 12:07:24 -05:00
|
|
|
*nread = 0;
|
2013-09-12 07:51:04 -04:00
|
|
|
}
|
2016-06-28 04:57:30 -04:00
|
|
|
else {
|
|
|
|
/* Switching to another protocol (e.g. WebSocket) */
|
|
|
|
k->header = FALSE; /* no more header to parse! */
|
|
|
|
}
|
2013-09-12 07:51:04 -04:00
|
|
|
break;
|
|
|
|
default:
|
2016-06-28 04:57:30 -04:00
|
|
|
/* the status code 1xx indicates a provisional response, so
|
|
|
|
we'll get another set of headers */
|
|
|
|
k->header = TRUE;
|
|
|
|
k->headerline = 0; /* restart the header line counter */
|
2013-09-12 07:51:04 -04:00
|
|
|
break;
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
k->header = FALSE; /* no more header to parse! */
|
|
|
|
|
|
|
|
if((k->size == -1) && !k->chunk && !conn->bits.close &&
|
2014-05-20 10:50:24 -04:00
|
|
|
(conn->httpversion == 11) &&
|
2012-07-11 17:13:52 -04:00
|
|
|
!(conn->handler->protocol & CURLPROTO_RTSP) &&
|
2020-06-01 16:58:46 -04:00
|
|
|
data->state.httpreq != HTTPREQ_HEAD) {
|
2009-12-29 16:45:02 -05:00
|
|
|
/* On HTTP 1.1, when connection is not to get closed, but no
|
2017-11-05 09:09:48 -05:00
|
|
|
Content-Length nor Transfer-Encoding chunked have been
|
2009-12-29 16:45:02 -05:00
|
|
|
received, according to RFC2616 section 4.4 point 5, we
|
|
|
|
assume that the server will close the connection to
|
|
|
|
signal the end of the document. */
|
|
|
|
infof(data, "no chunk, no close, no size. Assume close to "
|
|
|
|
"signal end\n");
|
2016-08-11 08:00:23 -04:00
|
|
|
streamclose(conn, "HTTP: No end-of-message indicator");
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-31 17:21:15 -04:00
|
|
|
/* At this point we have some idea about the fate of the connection.
|
|
|
|
If we are closing the connection it may result auth failure. */
|
|
|
|
#if defined(USE_NTLM)
|
|
|
|
if(conn->bits.close &&
|
|
|
|
(((data->req.httpcode == 401) &&
|
2019-05-13 15:58:39 -04:00
|
|
|
(conn->http_ntlm_state == NTLMSTATE_TYPE2)) ||
|
2015-05-31 17:21:15 -04:00
|
|
|
((data->req.httpcode == 407) &&
|
2019-05-13 15:58:39 -04:00
|
|
|
(conn->proxy_ntlm_state == NTLMSTATE_TYPE2)))) {
|
2015-05-31 17:21:15 -04:00
|
|
|
infof(data, "Connection closure while negotiating auth (HTTP 1.0?)\n");
|
|
|
|
data->state.authproblem = TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
2018-09-10 03:18:01 -04:00
|
|
|
#if defined(USE_SPNEGO)
|
|
|
|
if(conn->bits.close &&
|
|
|
|
(((data->req.httpcode == 401) &&
|
2019-05-13 16:42:35 -04:00
|
|
|
(conn->http_negotiate_state == GSS_AUTHRECV)) ||
|
2018-09-10 03:18:01 -04:00
|
|
|
((data->req.httpcode == 407) &&
|
2019-05-13 16:42:35 -04:00
|
|
|
(conn->proxy_negotiate_state == GSS_AUTHRECV)))) {
|
2018-09-10 03:18:01 -04:00
|
|
|
infof(data, "Connection closure while negotiating auth (HTTP 1.0?)\n");
|
|
|
|
data->state.authproblem = TRUE;
|
|
|
|
}
|
2019-05-13 16:42:35 -04:00
|
|
|
if((conn->http_negotiate_state == GSS_AUTHDONE) &&
|
2018-09-10 03:18:01 -04:00
|
|
|
(data->req.httpcode != 401)) {
|
2019-05-13 16:42:35 -04:00
|
|
|
conn->http_negotiate_state = GSS_AUTHSUCC;
|
2018-09-10 03:18:01 -04:00
|
|
|
}
|
2019-05-13 16:42:35 -04:00
|
|
|
if((conn->proxy_negotiate_state == GSS_AUTHDONE) &&
|
2018-09-10 03:18:01 -04:00
|
|
|
(data->req.httpcode != 407)) {
|
2019-05-13 16:42:35 -04:00
|
|
|
conn->proxy_negotiate_state = GSS_AUTHSUCC;
|
2018-09-10 03:18:01 -04:00
|
|
|
}
|
|
|
|
#endif
|
2009-12-29 16:45:02 -05:00
|
|
|
|
|
|
|
/* now, only output this if the header AND body are requested:
|
|
|
|
*/
|
|
|
|
writetype = CLIENTWRITE_HEADER;
|
|
|
|
if(data->set.include_header)
|
|
|
|
writetype |= CLIENTWRITE_BODY;
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
headerlen = Curl_dyn_len(&data->state.headerb);
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_client_write(data, writetype,
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_ptr(&data->state.headerb),
|
2009-12-29 16:45:02 -05:00
|
|
|
headerlen);
|
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
data->info.header_size += (long)headerlen;
|
|
|
|
data->req.headerbytecount += (long)headerlen;
|
|
|
|
|
2021-01-04 12:28:42 -05:00
|
|
|
/*
|
|
|
|
* When all the headers have been parsed, see if we should give
|
|
|
|
* up and return an error.
|
|
|
|
*/
|
2021-01-08 11:58:15 -05:00
|
|
|
if(http_should_fail(data)) {
|
2021-01-04 12:28:42 -05:00
|
|
|
failf(data, "The requested URL returned error: %d",
|
|
|
|
k->httpcode);
|
|
|
|
return CURLE_HTTP_RETURNED_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:45:02 -05:00
|
|
|
data->req.deductheadercount =
|
|
|
|
(100 <= k->httpcode && 199 >= k->httpcode)?data->req.headerbytecount:0;
|
|
|
|
|
2016-06-21 16:43:58 -04:00
|
|
|
/* Curl_http_auth_act() checks what authentication methods
|
|
|
|
* that are available and decides which one (if any) to
|
|
|
|
* use. It will set 'newurl' if an auth method was picked. */
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_http_auth_act(data);
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2016-06-21 16:43:58 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2016-06-21 16:43:58 -04:00
|
|
|
if(k->httpcode >= 300) {
|
|
|
|
if((!conn->bits.authneg) && !conn->bits.close &&
|
|
|
|
!conn->bits.rewindaftersend) {
|
|
|
|
/*
|
|
|
|
* General treatment of errors when about to send data. Including :
|
|
|
|
* "417 Expectation Failed", while waiting for 100-continue.
|
|
|
|
*
|
|
|
|
* The check for close above is done simply because of something
|
|
|
|
* else has already deemed the connection to get closed then
|
|
|
|
* something else should've considered the big picture and we
|
|
|
|
* avoid this check.
|
|
|
|
*
|
|
|
|
* rewindaftersend indicates that something has told libcurl to
|
|
|
|
* continue sending even if it gets discarded
|
|
|
|
*/
|
|
|
|
|
2020-06-01 16:58:46 -04:00
|
|
|
switch(data->state.httpreq) {
|
2016-06-21 16:43:58 -04:00
|
|
|
case HTTPREQ_PUT:
|
|
|
|
case HTTPREQ_POST:
|
|
|
|
case HTTPREQ_POST_FORM:
|
2017-09-02 12:47:10 -04:00
|
|
|
case HTTPREQ_POST_MIME:
|
2016-06-21 16:43:58 -04:00
|
|
|
/* We got an error response. If this happened before the whole
|
|
|
|
* request body has been sent we stop sending and mark the
|
|
|
|
* connection for closure after we've read the entire response.
|
2011-07-11 17:24:45 -04:00
|
|
|
*/
|
2017-05-09 06:47:49 -04:00
|
|
|
Curl_expire_done(data, EXPIRE_100_TIMEOUT);
|
2016-06-21 16:43:58 -04:00
|
|
|
if(!k->upload_done) {
|
2020-02-26 16:48:09 -05:00
|
|
|
if((k->httpcode == 417) && data->state.expect100header) {
|
|
|
|
/* 417 Expectation Failed - try again without the Expect
|
|
|
|
header */
|
|
|
|
infof(data, "Got 417 while waiting for a 100\n");
|
|
|
|
data->state.disableexpect = TRUE;
|
|
|
|
DEBUGASSERT(!data->req.newurl);
|
2021-01-08 11:58:15 -05:00
|
|
|
data->req.newurl = strdup(data->change.url);
|
|
|
|
Curl_done_sending(data, k);
|
2020-02-26 16:48:09 -05:00
|
|
|
}
|
|
|
|
else if(data->set.http_keep_sending_on_error) {
|
2016-09-22 16:15:13 -04:00
|
|
|
infof(data, "HTTP error before end of send, keep sending\n");
|
|
|
|
if(k->exp100 > EXP100_SEND_DATA) {
|
|
|
|
k->exp100 = EXP100_SEND_DATA;
|
|
|
|
k->keepon |= KEEP_SEND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
infof(data, "HTTP error before end of send, stop sending\n");
|
|
|
|
streamclose(conn, "Stop sending data before everything sent");
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_done_sending(data, k);
|
2019-06-24 05:21:26 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2016-09-22 16:15:13 -04:00
|
|
|
k->upload_done = TRUE;
|
|
|
|
if(data->state.expect100header)
|
|
|
|
k->exp100 = EXP100_FAILED;
|
|
|
|
}
|
2011-07-11 17:24:45 -04:00
|
|
|
}
|
2016-06-21 16:43:58 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* default label present to avoid compiler warnings */
|
|
|
|
break;
|
2011-07-11 17:24:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:45:02 -05:00
|
|
|
if(conn->bits.rewindaftersend) {
|
|
|
|
/* We rewind after a complete send, so thus we continue
|
|
|
|
sending now */
|
|
|
|
infof(data, "Keep sending data to get tossed away!\n");
|
|
|
|
k->keepon |= KEEP_SEND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!k->header) {
|
|
|
|
/*
|
|
|
|
* really end-of-headers.
|
|
|
|
*
|
|
|
|
* If we requested a "no body", this is a good time to get
|
|
|
|
* out and return home.
|
|
|
|
*/
|
|
|
|
if(data->set.opt_no_body)
|
|
|
|
*stop_reading = TRUE;
|
2015-08-20 17:07:03 -04:00
|
|
|
#ifndef CURL_DISABLE_RTSP
|
|
|
|
else if((conn->handler->protocol & CURLPROTO_RTSP) &&
|
|
|
|
(data->set.rtspreq == RTSPREQ_DESCRIBE) &&
|
|
|
|
(k->size <= -1))
|
|
|
|
/* Respect section 4.4 of rfc2326: If the Content-Length header is
|
|
|
|
absent, a length 0 must be assumed. It will prevent libcurl from
|
2016-06-21 16:43:58 -04:00
|
|
|
hanging on DESCRIBE request that got refused for whatever
|
2015-08-20 17:07:03 -04:00
|
|
|
reason */
|
|
|
|
*stop_reading = TRUE;
|
|
|
|
#endif
|
2009-12-29 16:45:02 -05:00
|
|
|
else {
|
|
|
|
/* If we know the expected size of this document, we set the
|
|
|
|
maximum download size to the size of the expected
|
|
|
|
document or else, we won't know when to stop reading!
|
|
|
|
|
|
|
|
Note that we set the download maximum even if we read a
|
|
|
|
"Connection: close" header, to make sure that
|
|
|
|
"Content-Length: 0" still prevents us from attempting to
|
|
|
|
read the (missing) response-body.
|
|
|
|
*/
|
|
|
|
/* According to RFC2616 section 4.4, we MUST ignore
|
|
|
|
Content-Length: headers if we are now receiving data
|
|
|
|
using chunked Transfer-Encoding.
|
|
|
|
*/
|
|
|
|
if(k->chunk)
|
2010-03-23 10:26:45 -04:00
|
|
|
k->maxdownload = k->size = -1;
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
if(-1 != k->size) {
|
|
|
|
/* We do this operation even if no_body is true, since this
|
|
|
|
data might be retrieved later with curl_easy_getinfo()
|
|
|
|
and its CURLINFO_CONTENT_LENGTH_DOWNLOAD option. */
|
|
|
|
|
|
|
|
Curl_pgrsSetDownloadSize(data, k->size);
|
|
|
|
k->maxdownload = k->size;
|
|
|
|
}
|
2010-01-21 08:58:30 -05:00
|
|
|
|
2017-03-03 07:44:01 -05:00
|
|
|
/* If max download size is *zero* (nothing) we already have
|
|
|
|
nothing and can safely return ok now! But for HTTP/2, we'd
|
|
|
|
like to call http2_handle_stream_close to properly close a
|
|
|
|
stream. In order to do this, we keep reading until we
|
|
|
|
close the stream. */
|
|
|
|
if(0 == k->maxdownload
|
|
|
|
#if defined(USE_NGHTTP2)
|
|
|
|
&& !((conn->handler->protocol & PROTO_FAMILY_HTTP) &&
|
|
|
|
conn->httpversion == 20)
|
|
|
|
#endif
|
|
|
|
)
|
2009-12-29 16:45:02 -05:00
|
|
|
*stop_reading = TRUE;
|
|
|
|
|
|
|
|
if(*stop_reading) {
|
|
|
|
/* we make sure that this socket isn't read more now */
|
|
|
|
k->keepon &= ~KEEP_RECV;
|
|
|
|
}
|
|
|
|
|
2020-11-02 11:34:04 -05:00
|
|
|
Curl_debug(data, CURLINFO_HEADER_IN, str_start, headerlen);
|
|
|
|
break; /* exit header line loop */
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
/* We continue reading headers, reset the line-based header */
|
|
|
|
Curl_dyn_reset(&data->state.headerb);
|
2009-12-29 16:45:02 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Checks for special headers coming up.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(!k->headerline++) {
|
|
|
|
/* This is the first header, it MUST be the error code line
|
|
|
|
or else we consider this to be the body right away! */
|
|
|
|
int httpversion_major;
|
2010-01-21 08:58:30 -05:00
|
|
|
int rtspversion_major;
|
2010-01-21 14:27:32 -05:00
|
|
|
int nc = 0;
|
2009-12-29 16:45:02 -05:00
|
|
|
#ifdef CURL_DOES_CONVERSIONS
|
|
|
|
#define HEADER1 scratch
|
|
|
|
#define SCRATCHSIZE 21
|
|
|
|
CURLcode res;
|
2017-09-09 17:55:08 -04:00
|
|
|
char scratch[SCRATCHSIZE + 1]; /* "HTTP/major.minor 123" */
|
2020-05-02 11:04:08 -04:00
|
|
|
/* We can't really convert this yet because we don't know if it's the
|
|
|
|
1st header line or the body. So we do a partial conversion into a
|
|
|
|
scratch area, leaving the data at 'headp' as-is.
|
2009-12-29 16:45:02 -05:00
|
|
|
*/
|
2020-05-02 11:04:08 -04:00
|
|
|
strncpy(&scratch[0], headp, SCRATCHSIZE);
|
2009-12-29 16:45:02 -05:00
|
|
|
scratch[SCRATCHSIZE] = 0; /* null terminate */
|
|
|
|
res = Curl_convert_from_network(data,
|
|
|
|
&scratch[0],
|
|
|
|
SCRATCHSIZE);
|
2011-04-19 18:48:20 -04:00
|
|
|
if(res)
|
2009-12-29 16:45:02 -05:00
|
|
|
/* Curl_convert_from_network calls failf if unsuccessful */
|
|
|
|
return res;
|
|
|
|
#else
|
2020-05-02 11:04:08 -04:00
|
|
|
#define HEADER1 headp /* no conversion needed, just use headp */
|
2009-12-29 16:45:02 -05:00
|
|
|
#endif /* CURL_DOES_CONVERSIONS */
|
|
|
|
|
2014-04-20 13:37:54 -04:00
|
|
|
if(conn->handler->protocol & PROTO_FAMILY_HTTP) {
|
2014-10-27 11:08:24 -04:00
|
|
|
/*
|
|
|
|
* https://tools.ietf.org/html/rfc7230#section-3.1.2
|
|
|
|
*
|
2017-03-26 11:02:22 -04:00
|
|
|
* The response code is always a three-digit number in HTTP as the spec
|
2014-10-27 11:08:24 -04:00
|
|
|
* says. We try to allow any number here, but we cannot make
|
|
|
|
* guarantees on future behaviors since it isn't within the protocol.
|
|
|
|
*/
|
2017-07-31 11:11:18 -04:00
|
|
|
char separator;
|
2019-08-05 09:17:31 -04:00
|
|
|
char twoorthree[2];
|
2010-01-21 08:58:30 -05:00
|
|
|
nc = sscanf(HEADER1,
|
2017-07-31 11:11:18 -04:00
|
|
|
" HTTP/%1d.%1d%c%3d",
|
2011-07-01 16:57:28 -04:00
|
|
|
&httpversion_major,
|
|
|
|
&conn->httpversion,
|
2017-07-31 11:11:18 -04:00
|
|
|
&separator,
|
2011-07-01 16:57:28 -04:00
|
|
|
&k->httpcode);
|
2016-06-05 03:13:32 -04:00
|
|
|
|
2019-08-05 09:17:31 -04:00
|
|
|
if(nc == 1 && httpversion_major >= 2 &&
|
|
|
|
2 == sscanf(HEADER1, " HTTP/%1[23] %d", twoorthree, &k->httpcode)) {
|
2016-06-05 03:13:32 -04:00
|
|
|
conn->httpversion = 0;
|
2017-07-31 11:11:18 -04:00
|
|
|
nc = 4;
|
|
|
|
separator = ' ';
|
2016-06-05 03:13:32 -04:00
|
|
|
}
|
|
|
|
|
2017-09-09 17:09:06 -04:00
|
|
|
if((nc == 4) && (' ' == separator)) {
|
2010-01-21 08:58:30 -05:00
|
|
|
conn->httpversion += 10 * httpversion_major;
|
2014-09-05 18:05:03 -04:00
|
|
|
|
|
|
|
if(k->upgr101 == UPGR101_RECEIVED) {
|
|
|
|
/* supposedly upgraded to http2 now */
|
|
|
|
if(conn->httpversion != 20)
|
|
|
|
infof(data, "Lying server, not serving HTTP/2\n");
|
|
|
|
}
|
2019-04-30 05:09:10 -04:00
|
|
|
if(conn->httpversion < 20) {
|
|
|
|
conn->bundle->multiuse = BUNDLE_NO_MULTIUSE;
|
|
|
|
infof(data, "Mark bundle as not supporting multiuse\n");
|
|
|
|
}
|
2010-01-21 08:58:30 -05:00
|
|
|
}
|
2017-07-31 11:11:18 -04:00
|
|
|
else if(!nc) {
|
2010-01-21 08:58:30 -05:00
|
|
|
/* this is the real world, not a Nirvana
|
|
|
|
NCSA 1.5.x returns this crap when asked for HTTP/1.1
|
2011-07-01 16:57:28 -04:00
|
|
|
*/
|
2017-09-09 17:09:06 -04:00
|
|
|
nc = sscanf(HEADER1, " HTTP %3d", &k->httpcode);
|
2010-01-21 08:58:30 -05:00
|
|
|
conn->httpversion = 10;
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2010-01-21 08:58:30 -05:00
|
|
|
/* If user has set option HTTP200ALIASES,
|
|
|
|
compare header line against list of aliases
|
2011-07-01 16:57:28 -04:00
|
|
|
*/
|
2010-01-21 08:58:30 -05:00
|
|
|
if(!nc) {
|
2020-05-02 11:04:08 -04:00
|
|
|
statusline check =
|
|
|
|
checkhttpprefix(data,
|
|
|
|
Curl_dyn_ptr(&data->state.headerb),
|
|
|
|
Curl_dyn_len(&data->state.headerb));
|
|
|
|
if(check == STATUS_DONE) {
|
2010-01-21 08:58:30 -05:00
|
|
|
nc = 1;
|
|
|
|
k->httpcode = 200;
|
|
|
|
conn->httpversion = 10;
|
|
|
|
}
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
}
|
2017-07-31 11:11:18 -04:00
|
|
|
else {
|
2019-08-05 09:17:31 -04:00
|
|
|
failf(data, "Unsupported HTTP version in response");
|
2017-07-31 11:11:18 -04:00
|
|
|
return CURLE_UNSUPPORTED_PROTOCOL;
|
|
|
|
}
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
2011-03-14 17:52:14 -04:00
|
|
|
else if(conn->handler->protocol & CURLPROTO_RTSP) {
|
2017-10-08 11:15:44 -04:00
|
|
|
char separator;
|
2010-01-21 08:58:30 -05:00
|
|
|
nc = sscanf(HEADER1,
|
2017-10-08 11:15:44 -04:00
|
|
|
" RTSP/%1d.%1d%c%3d",
|
2010-01-21 08:58:30 -05:00
|
|
|
&rtspversion_major,
|
|
|
|
&conn->rtspversion,
|
2017-10-08 11:15:44 -04:00
|
|
|
&separator,
|
2010-01-21 08:58:30 -05:00
|
|
|
&k->httpcode);
|
2017-10-08 11:15:44 -04:00
|
|
|
if((nc == 4) && (' ' == separator)) {
|
2010-01-21 08:58:30 -05:00
|
|
|
conn->rtspversion += 10 * rtspversion_major;
|
|
|
|
conn->httpversion = 11; /* For us, RTSP acts like HTTP 1.1 */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nc = 0;
|
|
|
|
}
|
|
|
|
}
|
2009-12-29 16:45:02 -05:00
|
|
|
|
|
|
|
if(nc) {
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_http_statusline(data, conn);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
k->header = FALSE; /* this is not a header line */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
result = Curl_convert_from_network(data, headp, strlen(headp));
|
2009-12-29 16:45:02 -05:00
|
|
|
/* Curl_convert_from_network calls failf if unsuccessful */
|
2011-04-19 18:48:20 -04:00
|
|
|
if(result)
|
|
|
|
return result;
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2020-12-14 08:10:33 -05:00
|
|
|
result = Curl_http_header(data, conn, headp);
|
|
|
|
if(result)
|
|
|
|
return result;
|
2011-05-05 10:53:05 -04:00
|
|
|
|
2009-12-29 16:45:02 -05:00
|
|
|
/*
|
|
|
|
* End of header-checks. Write them to the client.
|
|
|
|
*/
|
|
|
|
|
|
|
|
writetype = CLIENTWRITE_HEADER;
|
|
|
|
if(data->set.include_header)
|
|
|
|
writetype |= CLIENTWRITE_BODY;
|
|
|
|
|
2020-11-02 11:34:04 -05:00
|
|
|
Curl_debug(data, CURLINFO_HEADER_IN, headp,
|
|
|
|
Curl_dyn_len(&data->state.headerb));
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2021-01-08 11:58:15 -05:00
|
|
|
result = Curl_client_write(data, writetype, headp,
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_len(&data->state.headerb));
|
2009-12-29 16:45:02 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
data->info.header_size += Curl_dyn_len(&data->state.headerb);
|
|
|
|
data->req.headerbytecount += Curl_dyn_len(&data->state.headerb);
|
2009-12-29 16:45:02 -05:00
|
|
|
|
2020-05-02 11:04:08 -04:00
|
|
|
Curl_dyn_reset(&data->state.headerb);
|
2009-12-29 16:45:02 -05:00
|
|
|
}
|
2016-06-21 16:43:58 -04:00
|
|
|
while(*k->str); /* header line within buffer */
|
2009-12-29 16:45:02 -05:00
|
|
|
|
|
|
|
/* We might have reached the end of the header part here, but
|
|
|
|
there might be a non-header part left in the end of the read
|
|
|
|
buffer. */
|
|
|
|
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-22 09:20:56 -05:00
|
|
|
#endif /* CURL_DISABLE_HTTP */
|