2012-12-28 19:03:09 +08:00
|
|
|
#ifndef HEADER_CURL_HTTP_H
|
|
|
|
#define HEADER_CURL_HTTP_H
|
2002-09-03 19:52:59 +08:00
|
|
|
/***************************************************************************
|
2004-06-15 16:45:22 +08:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 22:20:26 +08:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2023-01-02 20:51:48 +08:00
|
|
|
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08: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 21:02:01 +08:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-06-15 16:45:22 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08: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 19:52:59 +08:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2001-01-03 17:29:33 +08:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 22:20:26 +08:00
|
|
|
*
|
2011-04-04 22:24:37 +08:00
|
|
|
* SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
*
|
2002-09-03 19:52:59 +08:00
|
|
|
***************************************************************************/
|
2013-09-07 19:01:43 +08:00
|
|
|
#include "curl_setup.h"
|
2022-12-30 16:14:55 +08:00
|
|
|
|
|
|
|
#if defined(USE_MSH3) && !defined(_WIN32)
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
2023-03-30 18:13:49 +08:00
|
|
|
#include "bufq.h"
|
2023-03-20 21:23:53 +08:00
|
|
|
#include "dynhds.h"
|
2022-09-09 21:11:14 +08:00
|
|
|
#include "ws.h"
|
2013-09-07 19:01:43 +08:00
|
|
|
|
2020-12-18 20:18:14 +08:00
|
|
|
typedef enum {
|
|
|
|
HTTPREQ_GET,
|
|
|
|
HTTPREQ_POST,
|
|
|
|
HTTPREQ_POST_FORM, /* we make a difference internally */
|
|
|
|
HTTPREQ_POST_MIME, /* we make a difference internally */
|
|
|
|
HTTPREQ_PUT,
|
2021-01-08 23:17:12 +08:00
|
|
|
HTTPREQ_HEAD
|
2020-12-18 20:18:14 +08:00
|
|
|
} Curl_HttpReq;
|
|
|
|
|
2002-06-11 19:13:01 +08:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2007-10-12 21:36:37 +08:00
|
|
|
|
2023-04-06 17:59:12 +08:00
|
|
|
#if defined(ENABLE_QUIC)
|
2022-04-11 00:21:37 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
2007-10-12 21:36:37 +08:00
|
|
|
extern const struct Curl_handler Curl_handler_http;
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
|
|
|
extern const struct Curl_handler Curl_handler_https;
|
|
|
|
#endif
|
|
|
|
|
2022-09-09 21:11:14 +08:00
|
|
|
#ifdef USE_WEBSOCKETS
|
|
|
|
extern const struct Curl_handler Curl_handler_ws;
|
|
|
|
|
|
|
|
#ifdef USE_SSL
|
|
|
|
extern const struct Curl_handler Curl_handler_wss;
|
|
|
|
#endif
|
|
|
|
#endif /* websockets */
|
|
|
|
|
2023-03-20 21:23:53 +08:00
|
|
|
struct dynhds;
|
2022-09-09 21:11:14 +08:00
|
|
|
|
2013-11-03 18:17:26 +08:00
|
|
|
/* Header specific functions */
|
2007-08-26 13:53:26 +08:00
|
|
|
bool Curl_compareheader(const char *headerline, /* line to check */
|
2002-11-28 23:48:23 +08:00
|
|
|
const char *header, /* header keyword _with_ colon */
|
2022-02-05 03:41:35 +08:00
|
|
|
const size_t hlen, /* len of the keyword in bytes */
|
|
|
|
const char *content, /* content string to find */
|
|
|
|
const size_t clen); /* len of the content in bytes */
|
2014-01-31 15:10:07 +08:00
|
|
|
|
2013-11-03 18:17:26 +08:00
|
|
|
char *Curl_copy_header_value(const char *header);
|
2010-01-21 21:58:30 +08:00
|
|
|
|
2021-01-09 00:58:15 +08:00
|
|
|
char *Curl_checkProxyheaders(struct Curl_easy *data,
|
|
|
|
const struct connectdata *conn,
|
2022-02-09 07:57:00 +08:00
|
|
|
const char *thisheader,
|
|
|
|
const size_t thislen);
|
2023-01-05 16:38:11 +08:00
|
|
|
struct HTTP; /* see below */
|
2020-05-02 23:04:08 +08:00
|
|
|
CURLcode Curl_buffer_send(struct dynbuf *in,
|
2021-01-09 00:58:15 +08:00
|
|
|
struct Curl_easy *data,
|
2023-01-05 16:38:11 +08:00
|
|
|
struct HTTP *http,
|
2020-05-02 23:04:08 +08:00
|
|
|
curl_off_t *bytes_written,
|
2021-03-26 17:06:51 +08:00
|
|
|
curl_off_t included_body_bytes,
|
2020-05-02 23:04:08 +08:00
|
|
|
int socketindex);
|
2010-01-21 21:58:30 +08:00
|
|
|
|
2021-01-09 00:58:15 +08:00
|
|
|
CURLcode Curl_add_timecondition(struct Curl_easy *data,
|
2021-01-01 07:48:40 +08:00
|
|
|
#ifndef USE_HYPER
|
2021-01-09 00:58:15 +08:00
|
|
|
struct dynbuf *req
|
2021-01-01 07:48:40 +08:00
|
|
|
#else
|
2021-01-09 00:58:15 +08:00
|
|
|
void *headers
|
2021-01-01 07:48:40 +08:00
|
|
|
#endif
|
|
|
|
);
|
2021-01-09 00:58:15 +08:00
|
|
|
CURLcode Curl_add_custom_headers(struct Curl_easy *data,
|
2014-01-31 15:10:07 +08:00
|
|
|
bool is_connect,
|
2020-12-14 21:10:33 +08:00
|
|
|
#ifndef USE_HYPER
|
|
|
|
struct dynbuf *req
|
|
|
|
#else
|
|
|
|
void *headers
|
|
|
|
#endif
|
|
|
|
);
|
2023-03-20 21:23:53 +08:00
|
|
|
CURLcode Curl_dynhds_add_custom(struct Curl_easy *data,
|
|
|
|
bool is_connect,
|
|
|
|
struct dynhds *hds);
|
|
|
|
|
2018-12-06 17:18:03 +08:00
|
|
|
CURLcode Curl_http_compile_trailers(struct curl_slist *trailers,
|
2020-05-02 23:04:08 +08:00
|
|
|
struct dynbuf *buf,
|
2018-12-06 17:18:03 +08:00
|
|
|
struct Curl_easy *handle);
|
2010-01-21 21:58:30 +08:00
|
|
|
|
2020-12-14 21:10:33 +08:00
|
|
|
void Curl_http_method(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
const char **method, Curl_HttpReq *);
|
2021-01-09 00:58:15 +08:00
|
|
|
CURLcode Curl_http_useragent(struct Curl_easy *data);
|
2020-12-14 21:10:33 +08:00
|
|
|
CURLcode Curl_http_host(struct Curl_easy *data, struct connectdata *conn);
|
|
|
|
CURLcode Curl_http_target(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
struct dynbuf *req);
|
|
|
|
CURLcode Curl_http_statusline(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn);
|
|
|
|
CURLcode Curl_http_header(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
char *headp);
|
2021-07-05 21:52:39 +08:00
|
|
|
CURLcode Curl_transferencode(struct Curl_easy *data);
|
2020-12-14 21:10:33 +08:00
|
|
|
CURLcode Curl_http_body(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
Curl_HttpReq httpreq,
|
|
|
|
const char **teep);
|
|
|
|
CURLcode Curl_http_bodysend(struct Curl_easy *data, struct connectdata *conn,
|
|
|
|
struct dynbuf *r, Curl_HttpReq httpreq);
|
2021-08-23 20:20:08 +08:00
|
|
|
bool Curl_use_http_1_1plus(const struct Curl_easy *data,
|
|
|
|
const struct connectdata *conn);
|
2020-12-14 21:10:33 +08:00
|
|
|
#ifndef CURL_DISABLE_COOKIES
|
|
|
|
CURLcode Curl_http_cookies(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
|
|
|
struct dynbuf *r);
|
|
|
|
#else
|
|
|
|
#define Curl_http_cookies(a,b,c) CURLE_OK
|
|
|
|
#endif
|
|
|
|
CURLcode Curl_http_resume(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
|
|
|
Curl_HttpReq httpreq);
|
|
|
|
CURLcode Curl_http_range(struct Curl_easy *data,
|
|
|
|
Curl_HttpReq httpreq);
|
|
|
|
CURLcode Curl_http_firstwrite(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
|
|
|
bool *done);
|
|
|
|
|
2000-09-14 22:05:01 +08:00
|
|
|
/* protocol-specific functions set up to be called by the main engine */
|
2021-01-09 00:58:15 +08:00
|
|
|
CURLcode Curl_http(struct Curl_easy *data, bool *done);
|
|
|
|
CURLcode Curl_http_done(struct Curl_easy *data, CURLcode, bool premature);
|
|
|
|
CURLcode Curl_http_connect(struct Curl_easy *data, bool *done);
|
1999-12-29 22:20:26 +08:00
|
|
|
|
2013-01-04 09:50:28 +08:00
|
|
|
/* These functions are in http.c */
|
2021-01-09 00:58:15 +08:00
|
|
|
CURLcode Curl_http_input_auth(struct Curl_easy *data, bool proxy,
|
2013-11-03 18:17:26 +08:00
|
|
|
const char *auth);
|
2021-01-09 00:58:15 +08:00
|
|
|
CURLcode Curl_http_auth_act(struct Curl_easy *data);
|
2004-03-30 14:40:01 +08:00
|
|
|
|
2004-06-15 16:45:22 +08:00
|
|
|
/* If only the PICKNONE bit is set, there has been a round-trip and we
|
|
|
|
selected to use no auth at all. Ie, we actively select no auth, as opposed
|
|
|
|
to not having one selected. The other CURLAUTH_* defines are present in the
|
|
|
|
public curl/curl.h header. */
|
|
|
|
#define CURLAUTH_PICKNONE (1<<30) /* don't use auth */
|
|
|
|
|
2004-11-25 00:11:35 +08:00
|
|
|
/* MAX_INITIAL_POST_SIZE indicates the number of bytes that will make the POST
|
|
|
|
data get included in the initial data chunk sent to the server. If the
|
|
|
|
data is larger than this, it will automatically get split up in multiple
|
|
|
|
system calls.
|
|
|
|
|
|
|
|
This value used to be fairly big (100K), but we must take into account that
|
|
|
|
if the server rejects the POST due for authentication reasons, this data
|
2018-03-16 10:51:03 +08:00
|
|
|
will always be unconditionally sent and thus it may not be larger than can
|
2004-11-25 00:11:35 +08:00
|
|
|
always be afforded to send twice.
|
|
|
|
|
|
|
|
It must not be greater than 64K to work on VMS.
|
|
|
|
*/
|
2004-11-05 22:43:35 +08:00
|
|
|
#ifndef MAX_INITIAL_POST_SIZE
|
2006-08-19 06:54:57 +08:00
|
|
|
#define MAX_INITIAL_POST_SIZE (64*1024)
|
|
|
|
#endif
|
|
|
|
|
2017-07-06 17:20:57 +08:00
|
|
|
/* EXPECT_100_THRESHOLD is the request body size limit for when libcurl will
|
|
|
|
* automatically add an "Expect: 100-continue" header in HTTP requests. When
|
|
|
|
* the size is unknown, it will always add it.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef EXPECT_100_THRESHOLD
|
2020-01-14 22:34:56 +08:00
|
|
|
#define EXPECT_100_THRESHOLD (1024*1024)
|
2004-11-05 22:43:35 +08:00
|
|
|
#endif
|
|
|
|
|
2009-12-13 06:17:51 +08:00
|
|
|
#endif /* CURL_DISABLE_HTTP */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* HTTP unique setup
|
|
|
|
***************************************************************************/
|
|
|
|
struct HTTP {
|
2017-09-05 17:45:21 +08:00
|
|
|
curl_mimepart *sendit;
|
2009-12-13 06:17:51 +08:00
|
|
|
curl_off_t postsize; /* off_t to handle large file sizes */
|
|
|
|
const char *postdata;
|
|
|
|
|
|
|
|
const char *p_pragma; /* Pragma: string */
|
|
|
|
|
|
|
|
/* For FORM posting */
|
2017-09-05 17:45:21 +08:00
|
|
|
curl_mimepart form;
|
2009-12-13 06:17:51 +08:00
|
|
|
|
|
|
|
struct back {
|
|
|
|
curl_read_callback fread_func; /* backup storage for fread pointer */
|
|
|
|
void *fread_in; /* backup storage for fread_in pointer */
|
|
|
|
const char *postdata;
|
|
|
|
curl_off_t postsize;
|
2023-01-05 16:38:11 +08:00
|
|
|
struct Curl_easy *data;
|
2009-12-13 06:17:51 +08:00
|
|
|
} backup;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
HTTPSEND_NADA, /* init */
|
|
|
|
HTTPSEND_REQUEST, /* sending a request */
|
2021-05-06 19:04:03 +08:00
|
|
|
HTTPSEND_BODY /* sending body */
|
2009-12-13 06:17:51 +08:00
|
|
|
} sending;
|
|
|
|
|
2018-09-14 17:48:53 +08:00
|
|
|
#ifndef CURL_DISABLE_HTTP
|
2023-04-06 17:59:12 +08:00
|
|
|
void *h2_ctx; /* HTTP/2 implementation context */
|
|
|
|
void *h3_ctx; /* HTTP/3 implementation context */
|
2020-05-02 23:04:08 +08:00
|
|
|
struct dynbuf send_buffer; /* used if the request couldn't be sent in one
|
|
|
|
chunk, points to an allocated send_buffer
|
|
|
|
struct */
|
2018-09-14 17:48:53 +08:00
|
|
|
#endif
|
2013-09-07 19:01:43 +08:00
|
|
|
};
|
|
|
|
|
2021-10-02 01:57:23 +08:00
|
|
|
CURLcode Curl_http_size(struct Curl_easy *data);
|
|
|
|
|
2016-06-21 21:47:12 +08:00
|
|
|
CURLcode Curl_http_readwrite_headers(struct Curl_easy *data,
|
2009-12-30 05:45:02 +08:00
|
|
|
struct connectdata *conn,
|
|
|
|
ssize_t *nread,
|
|
|
|
bool *stop_reading);
|
|
|
|
|
2011-04-04 22:24:37 +08:00
|
|
|
/**
|
|
|
|
* Curl_http_output_auth() setups the authentication headers for the
|
|
|
|
* host/proxy and the correct authentication
|
2021-01-25 01:57:02 +08:00
|
|
|
* method. data->state.authdone is set to TRUE when authentication is
|
2011-04-04 22:24:37 +08:00
|
|
|
* done.
|
|
|
|
*
|
2021-01-25 01:57:02 +08:00
|
|
|
* @param data all information about the current transfer
|
2011-04-04 22:24:37 +08:00
|
|
|
* @param conn all information about the current connection
|
|
|
|
* @param request pointer to the request keyword
|
2021-01-08 23:17:12 +08:00
|
|
|
* @param httpreq is the request type
|
2011-04-04 22:24:37 +08:00
|
|
|
* @param path pointer to the requested path
|
|
|
|
* @param proxytunnel boolean if this is the request setting up a "proxy
|
|
|
|
* tunnel"
|
|
|
|
*
|
|
|
|
* @returns CURLcode
|
|
|
|
*/
|
|
|
|
CURLcode
|
2021-01-09 00:58:15 +08:00
|
|
|
Curl_http_output_auth(struct Curl_easy *data,
|
|
|
|
struct connectdata *conn,
|
2011-04-04 22:24:37 +08:00
|
|
|
const char *request,
|
2021-01-08 23:17:12 +08:00
|
|
|
Curl_HttpReq httpreq,
|
2011-04-04 22:24:37 +08:00
|
|
|
const char *path,
|
|
|
|
bool proxytunnel); /* TRUE if this is the request setting
|
|
|
|
up the proxy tunnel */
|
|
|
|
|
2023-03-20 21:23:53 +08:00
|
|
|
/* Decode HTTP status code string. */
|
|
|
|
CURLcode Curl_http_decode_status(int *pstatus, const char *s, size_t len);
|
|
|
|
|
2023-04-14 17:38:14 +08:00
|
|
|
|
2023-03-20 21:23:53 +08:00
|
|
|
/**
|
|
|
|
* All about a core HTTP request, excluding body and trailers
|
|
|
|
*/
|
2023-05-20 17:55:20 +08:00
|
|
|
struct httpreq {
|
2023-03-20 21:23:53 +08:00
|
|
|
char method[12];
|
|
|
|
char *scheme;
|
|
|
|
char *authority;
|
|
|
|
char *path;
|
|
|
|
struct dynhds headers;
|
2023-03-30 18:13:49 +08:00
|
|
|
struct dynhds trailers;
|
2023-03-20 21:23:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a HTTP request struct.
|
|
|
|
*/
|
2023-05-20 17:55:20 +08:00
|
|
|
CURLcode Curl_http_req_make(struct httpreq **preq,
|
2023-04-14 17:38:14 +08:00
|
|
|
const char *method, size_t m_len,
|
|
|
|
const char *scheme, size_t s_len,
|
|
|
|
const char *authority, size_t a_len,
|
|
|
|
const char *path, size_t p_len);
|
|
|
|
|
2023-05-20 17:55:20 +08:00
|
|
|
CURLcode Curl_http_req_make2(struct httpreq **preq,
|
2023-04-14 17:38:14 +08:00
|
|
|
const char *method, size_t m_len,
|
|
|
|
CURLU *url, const char *scheme_default);
|
2023-03-20 21:23:53 +08:00
|
|
|
|
2023-05-20 17:55:20 +08:00
|
|
|
void Curl_http_req_free(struct httpreq *req);
|
2023-03-20 21:23:53 +08:00
|
|
|
|
2023-04-14 17:38:14 +08:00
|
|
|
#define HTTP_PSEUDO_METHOD ":method"
|
|
|
|
#define HTTP_PSEUDO_SCHEME ":scheme"
|
|
|
|
#define HTTP_PSEUDO_AUTHORITY ":authority"
|
|
|
|
#define HTTP_PSEUDO_PATH ":path"
|
|
|
|
#define HTTP_PSEUDO_STATUS ":status"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the list of HTTP/2 headers which represent the request,
|
|
|
|
* using HTTP/2 pseudo headers preceeding the `req->headers`.
|
|
|
|
*
|
|
|
|
* Applies the following transformations:
|
|
|
|
* - if `authority` is set, any "Host" header is removed.
|
|
|
|
* - if `authority` is unset and a "Host" header is present, use
|
|
|
|
* that as `authority` and remove "Host"
|
|
|
|
* - removes and Connection header fields as defined in rfc9113 ch. 8.2.2
|
|
|
|
* - lower-cases the header field names
|
|
|
|
*
|
|
|
|
* @param h2_headers will contain the HTTP/2 headers on success
|
|
|
|
* @param req the request to transform
|
|
|
|
* @param data the handle to lookup defaults like ' :scheme' from
|
|
|
|
*/
|
|
|
|
CURLcode Curl_http_req_to_h2(struct dynhds *h2_headers,
|
2023-05-20 17:55:20 +08:00
|
|
|
struct httpreq *req, struct Curl_easy *data);
|
2023-04-14 17:38:14 +08:00
|
|
|
|
2023-03-20 21:23:53 +08:00
|
|
|
/**
|
|
|
|
* All about a core HTTP response, excluding body and trailers
|
|
|
|
*/
|
|
|
|
struct http_resp {
|
|
|
|
int status;
|
|
|
|
char *description;
|
|
|
|
struct dynhds headers;
|
2023-03-30 18:13:49 +08:00
|
|
|
struct dynhds trailers;
|
2023-03-20 21:23:53 +08:00
|
|
|
struct http_resp *prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a HTTP response struct.
|
|
|
|
*/
|
|
|
|
CURLcode Curl_http_resp_make(struct http_resp **presp,
|
|
|
|
int status,
|
|
|
|
const char *description);
|
|
|
|
|
|
|
|
void Curl_http_resp_free(struct http_resp *resp);
|
|
|
|
|
2012-12-28 19:03:09 +08:00
|
|
|
#endif /* HEADER_CURL_HTTP_H */
|