-
-
Save perpetual-hydrofoil/7052731 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2006, 2008 Valery Kholodkov | |
* Client body reception code Copyright (c) 2002-2007 Igor Sysoev | |
* Temporary file name generation code Copyright (c) 2002-2007 Igor Sysoev | |
*/ | |
#include <ngx_config.h> | |
#include <ngx_core.h> | |
#include <ngx_http.h> | |
#include <nginx.h> | |
#if (NGX_HAVE_OPENSSL_MD5_H) | |
#include <openssl/md5.h> | |
#else | |
#include <md5.h> | |
#endif | |
#if (NGX_OPENSSL_MD5) | |
#define MD5Init MD5_Init | |
#define MD5Update MD5_Update | |
#define MD5Final MD5_Final | |
#endif | |
#if (NGX_HAVE_OPENSSL_SHA1_H) | |
#include <openssl/sha.h> | |
#else | |
#include <sha.h> | |
#endif | |
#define MULTIPART_FORM_DATA_STRING "multipart/form-data" | |
#define BOUNDARY_STRING "boundary=" | |
#define CONTENT_DISPOSITION_STRING "Content-Disposition:" | |
#define CONTENT_TYPE_STRING "Content-Type:" | |
#define CONTENT_RANGE_STRING "Content-Range:" | |
#define X_CONTENT_RANGE_STRING "X-Content-Range:" | |
#define SESSION_ID_STRING "Session-ID:" | |
#define X_SESSION_ID_STRING "X-Session-ID:" | |
#define FORM_DATA_STRING "form-data" | |
#define ATTACHMENT_STRING "attachment" | |
#define FILENAME_STRING "filename=\"" | |
#define FIELDNAME_STRING "name=\"" | |
#define BYTES_UNIT_STRING "bytes " | |
#define NGX_UPLOAD_MALFORMED -1 | |
#define NGX_UPLOAD_NOMEM -2 | |
#define NGX_UPLOAD_IOERROR -3 | |
#define NGX_UPLOAD_SCRIPTERROR -4 | |
#define NGX_UPLOAD_TOOLARGE -5 | |
/* | |
* State of multipart/form-data parser | |
*/ | |
typedef enum { | |
upload_state_boundary_seek, | |
upload_state_after_boundary, | |
upload_state_headers, | |
upload_state_data, | |
upload_state_finish | |
} upload_state_t; | |
/* | |
* Range | |
*/ | |
typedef struct { | |
off_t start, end, total; | |
} ngx_http_upload_range_t; | |
/* | |
* State of range merger | |
*/ | |
typedef struct { | |
ngx_buf_t *in_buf; | |
ngx_buf_t *out_buf; | |
ngx_http_upload_range_t current_range_n; | |
off_t *parser_state; | |
ngx_log_t *log; | |
u_char *range_header_buffer; | |
u_char *range_header_buffer_end; | |
u_char **range_header_buffer_pos; | |
unsigned int found_lower_bound:1; | |
unsigned int complete_ranges:1; | |
unsigned int first_range:1; | |
} ngx_http_upload_merger_state_t; | |
/* | |
* Template for a field to generate in output form | |
*/ | |
typedef struct { | |
ngx_table_elt_t value; | |
ngx_array_t *field_lengths; | |
ngx_array_t *field_values; | |
ngx_array_t *value_lengths; | |
ngx_array_t *value_values; | |
} ngx_http_upload_field_template_t; | |
/* | |
* Template for a header | |
*/ | |
typedef struct { | |
ngx_http_complex_value_t *name; | |
ngx_http_complex_value_t *value; | |
} ngx_http_upload_header_template_t; | |
/* | |
* Filter for fields in output form | |
*/ | |
typedef struct { | |
#if (NGX_PCRE) | |
ngx_regex_t *regex; | |
ngx_int_t ncaptures; | |
#else | |
ngx_str_t text; | |
#endif | |
} ngx_http_upload_field_filter_t; | |
typedef struct { | |
ngx_path_t *path; | |
ngx_http_complex_value_t dynamic; | |
unsigned is_dynamic:1; | |
} ngx_http_upload_path_t; | |
/* | |
* Upload cleanup record | |
*/ | |
typedef struct ngx_http_upload_cleanup_s { | |
ngx_fd_t fd; | |
u_char *filename; | |
ngx_http_headers_out_t *headers_out; | |
ngx_array_t *cleanup_statuses; | |
ngx_log_t *log; | |
unsigned int aborted:1; | |
} ngx_upload_cleanup_t; | |
/* | |
* Upload configuration for specific location | |
*/ | |
typedef struct { | |
ngx_str_t url; | |
ngx_http_complex_value_t *url_cv; | |
ngx_http_upload_path_t *state_store_path; | |
ngx_http_upload_path_t *store_path; | |
ngx_uint_t store_access; | |
size_t buffer_size; | |
size_t merge_buffer_size; | |
size_t range_header_buffer_size; | |
size_t max_header_len; | |
size_t max_output_body_len; | |
off_t max_file_size; | |
ngx_array_t *field_templates; | |
ngx_array_t *aggregate_field_templates; | |
ngx_array_t *field_filters; | |
ngx_array_t *cleanup_statuses; | |
ngx_array_t *header_templates; | |
ngx_flag_t forward_args; | |
ngx_flag_t tame_arrays; | |
ngx_flag_t resumable_uploads; | |
ngx_flag_t empty_field_names; | |
size_t limit_rate; | |
unsigned int md5:1; | |
unsigned int sha1:1; | |
unsigned int sha256:1; | |
unsigned int sha512:1; | |
unsigned int crc32:1; | |
} ngx_http_upload_loc_conf_t; | |
typedef struct ngx_http_upload_md5_ctx_s { | |
MD5_CTX md5; | |
u_char md5_digest[MD5_DIGEST_LENGTH * 2]; | |
} ngx_http_upload_md5_ctx_t; | |
typedef struct ngx_http_upload_sha1_ctx_s { | |
SHA_CTX sha1; | |
u_char sha1_digest[SHA_DIGEST_LENGTH * 2]; | |
} ngx_http_upload_sha1_ctx_t; | |
typedef struct ngx_http_upload_sha256_ctx_s { | |
SHA256_CTX sha256; | |
u_char sha256_digest[SHA256_DIGEST_LENGTH * 2]; | |
} ngx_http_upload_sha256_ctx_t; | |
typedef struct ngx_http_upload_sha512_ctx_s { | |
SHA512_CTX sha512; | |
u_char sha512_digest[SHA512_DIGEST_LENGTH * 2]; | |
} ngx_http_upload_sha512_ctx_t; | |
struct ngx_http_upload_ctx_s; | |
/* | |
* Request body data handler | |
*/ | |
typedef ngx_int_t (*ngx_http_request_body_data_handler_pt) | |
(struct ngx_http_upload_ctx_s*, u_char *, u_char*); | |
/* | |
* Upload module context | |
*/ | |
typedef struct ngx_http_upload_ctx_s { | |
ngx_str_t session_id; | |
ngx_str_t boundary; | |
u_char *boundary_start; | |
u_char *boundary_pos; | |
upload_state_t state; | |
u_char *header_accumulator; | |
u_char *header_accumulator_end; | |
u_char *header_accumulator_pos; | |
ngx_str_t field_name; | |
ngx_str_t file_name; | |
ngx_str_t content_type; | |
ngx_str_t content_range; | |
ngx_http_upload_range_t content_range_n; | |
ngx_uint_t ordinal; | |
u_char *output_buffer; | |
u_char *output_buffer_end; | |
u_char *output_buffer_pos; | |
u_char *merge_buffer; | |
u_char *range_header_buffer; | |
u_char *range_header_buffer_pos; | |
u_char *range_header_buffer_end; | |
ngx_http_request_body_data_handler_pt data_handler; | |
ngx_int_t (*start_part_f)(struct ngx_http_upload_ctx_s *upload_ctx); | |
void (*finish_part_f)(struct ngx_http_upload_ctx_s *upload_ctx); | |
void (*abort_part_f)(struct ngx_http_upload_ctx_s *upload_ctx); | |
ngx_int_t (*flush_output_buffer_f)(struct ngx_http_upload_ctx_s *upload_ctx, u_char *buf, size_t len); | |
ngx_http_request_t *request; | |
ngx_log_t *log; | |
ngx_file_t output_file; | |
ngx_file_t state_file; | |
ngx_chain_t *chain; | |
ngx_chain_t *last; | |
ngx_chain_t *checkpoint; | |
size_t output_body_len; | |
size_t limit_rate; | |
ssize_t received; | |
ngx_pool_cleanup_t *cln; | |
ngx_http_upload_md5_ctx_t *md5_ctx; | |
ngx_http_upload_sha1_ctx_t *sha1_ctx; | |
ngx_http_upload_sha256_ctx_t *sha256_ctx; | |
ngx_http_upload_sha512_ctx_t *sha512_ctx; | |
uint32_t crc32; | |
ngx_path_t *store_path; | |
ngx_path_t *state_store_path; | |
unsigned int first_part:1; | |
unsigned int discard_data:1; | |
unsigned int is_file:1; | |
unsigned int partial_content:1; | |
unsigned int prevent_output:1; | |
unsigned int calculate_crc32:1; | |
unsigned int started:1; | |
unsigned int unencoded:1; | |
unsigned int no_content:1; | |
unsigned int raw_input:1; | |
} ngx_http_upload_ctx_t; | |
static ngx_int_t ngx_http_upload_test_expect(ngx_http_request_t *r); | |
static void ngx_http_read_client_request_body_handler(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_do_read_client_request_body(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_write_request_body(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_request_body_filter(ngx_http_request_t *r, ngx_chain_t *in); | |
static ngx_int_t ngx_http_request_body_length_filter(ngx_http_request_t *r, ngx_chain_t *in); | |
static ngx_int_t ngx_http_request_body_chunked_filter(ngx_http_request_t *r, ngx_chain_t *in); | |
static ngx_int_t ngx_http_request_body_save_filter(ngx_http_request_t *r, ngx_chain_t *in); | |
static ngx_int_t ngx_http_upload_handler(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_upload_options_handler(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_upload_body_handler(ngx_http_request_t *r); | |
static void *ngx_http_upload_create_loc_conf(ngx_conf_t *cf); | |
static char *ngx_http_upload_merge_loc_conf(ngx_conf_t *cf, | |
void *parent, void *child); | |
static ngx_int_t ngx_http_upload_add_variables(ngx_conf_t *cf); | |
static void ngx_http_upload_variable_set(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_md5_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_sha1_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_sha256_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_sha512_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_file_size_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static void ngx_http_upload_content_range_variable_set(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_content_range_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_crc32_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_upload_uint_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static char *ngx_http_upload_pass(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); | |
static ngx_int_t ngx_http_upload_start_handler(ngx_http_upload_ctx_t *u); | |
static void ngx_http_upload_finish_handler(ngx_http_upload_ctx_t *u); | |
static void ngx_http_upload_abort_handler(ngx_http_upload_ctx_t *u); | |
static ngx_int_t ngx_http_upload_flush_output_buffer(ngx_http_upload_ctx_t *u, | |
u_char *buf, size_t len); | |
static ngx_int_t ngx_http_upload_append_field(ngx_http_upload_ctx_t *u, | |
ngx_str_t *name, ngx_str_t *value); | |
static ngx_int_t ngx_http_upload_merge_ranges(ngx_http_upload_ctx_t *u, ngx_http_upload_range_t *range_n); | |
static ngx_int_t ngx_http_upload_parse_range(ngx_str_t *range, ngx_http_upload_range_t *range_n); | |
static void ngx_http_read_upload_client_request_body_handler(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_do_read_upload_client_request_body(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_process_request_body(ngx_http_request_t *r, ngx_chain_t *body); | |
static ngx_int_t ngx_http_read_upload_client_request_body(ngx_http_request_t *r); | |
static char *ngx_http_upload_set_form_field(ngx_conf_t *cf, ngx_command_t *cmd, | |
void *conf); | |
static char *ngx_http_upload_add_header(ngx_conf_t *cf, ngx_command_t *cmd, | |
void *conf); | |
static ngx_int_t ngx_http_upload_eval_path(ngx_http_request_t *r); | |
static ngx_int_t ngx_http_upload_eval_state_path(ngx_http_request_t *r); | |
static char *ngx_http_upload_pass_form_field(ngx_conf_t *cf, ngx_command_t *cmd, | |
void *conf); | |
static char *ngx_http_upload_set_path_slot(ngx_conf_t *cf, ngx_command_t *cmd, | |
void *conf); | |
static char *ngx_http_upload_merge_path_value(ngx_conf_t *cf, ngx_http_upload_path_t **path, ngx_http_upload_path_t *prev, | |
ngx_path_init_t *init); | |
static char *ngx_http_upload_cleanup(ngx_conf_t *cf, ngx_command_t *cmd, | |
void *conf); | |
static void ngx_upload_cleanup_handler(void *data); | |
#if defined nginx_version && nginx_version >= 7052 | |
static ngx_path_init_t ngx_http_upload_temp_path = { | |
ngx_string(NGX_HTTP_PROXY_TEMP_PATH), { 1, 2, 0 } | |
}; | |
#endif | |
/* | |
* upload_init_ctx | |
* | |
* Initialize upload context. Memory for upload context which is being passed | |
* as upload_ctx parameter could be allocated anywhere and should not be freed | |
* prior to upload_shutdown_ctx call. | |
* | |
* IMPORTANT: | |
* | |
* After initialization the following routine SHOULD BE called: | |
* | |
* upload_parse_content_type -- to assign part boundary | |
* | |
* Parameter: | |
* upload_ctx -- upload context which is being initialized | |
* | |
*/ | |
static void upload_init_ctx(ngx_http_upload_ctx_t *upload_ctx); | |
/* | |
* upload_shutdown_ctx | |
* | |
* Shutdown upload context. Discard all remaining data and | |
* free all memory associated with upload context. | |
* | |
* Parameter: | |
* upload_ctx -- upload context which is being shut down | |
* | |
*/ | |
static void upload_shutdown_ctx(ngx_http_upload_ctx_t *upload_ctx); | |
/* | |
* upload_start | |
* | |
* Starts multipart stream processing. Initializes internal buffers | |
* and pointers | |
* | |
* Parameter: | |
* upload_ctx -- upload context which is being initialized | |
* | |
* Return value: | |
* NGX_OK on success | |
* NGX_ERROR if error has occured | |
* | |
*/ | |
static ngx_int_t upload_start(ngx_http_upload_ctx_t *upload_ctx, ngx_http_upload_loc_conf_t *ulcf); | |
/* | |
* upload_parse_request_headers | |
* | |
* Parse and verify HTTP headers, extract boundary or | |
* content disposition | |
* | |
* Parameters: | |
* upload_ctx -- upload context to populate | |
* headers_in -- request headers | |
* | |
* Return value: | |
* NGX_OK on success | |
* NGX_ERROR if error has occured | |
*/ | |
static ngx_int_t upload_parse_request_headers(ngx_http_upload_ctx_t *upload_ctx, ngx_http_headers_in_t *headers_in); | |
/* | |
* upload_process_buf | |
* | |
* Process buffer with multipart stream starting from start and terminating | |
* by end, operating on upload_ctx. The header information is accumulated in | |
* This call can invoke one or more calls to start_upload_file, finish_upload_file, | |
* abort_upload_file and flush_output_buffer routines. | |
* | |
* Returns value NGX_OK successful | |
* NGX_UPLOAD_MALFORMED stream is malformed | |
* NGX_UPLOAD_NOMEM insufficient memory | |
* NGX_UPLOAD_IOERROR input-output error | |
* NGX_UPLOAD_SCRIPTERROR nginx script engine failed | |
* NGX_UPLOAD_TOOLARGE field body is too large | |
*/ | |
static ngx_int_t upload_process_buf(ngx_http_upload_ctx_t *upload_ctx, u_char *start, u_char *end); | |
static ngx_int_t upload_process_raw_buf(ngx_http_upload_ctx_t *upload_ctx, u_char *start, u_char *end); | |
static ngx_command_t ngx_http_upload_commands[] = { /* {{{ */ | |
/* | |
* Enables uploads for location and specifies location to pass modified request to | |
*/ | |
{ ngx_string("upload_pass"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1, | |
ngx_http_upload_pass, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
0, | |
NULL }, | |
/* | |
* Specifies base path of file store | |
*/ | |
{ ngx_string("upload_store"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1234, | |
ngx_http_upload_set_path_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, store_path), | |
NULL }, | |
/* | |
* Specifies base path of state store | |
*/ | |
{ ngx_string("upload_state_store"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1234, | |
ngx_http_upload_set_path_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, state_store_path), | |
NULL }, | |
/* | |
* Specifies the access mode for files in store | |
*/ | |
{ ngx_string("upload_store_access"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE123, | |
ngx_conf_set_access_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, store_access), | |
NULL }, | |
/* | |
* Specifies the size of buffer, which will be used | |
* to write data to disk | |
*/ | |
{ ngx_string("upload_buffer_size"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1, | |
ngx_conf_set_size_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, buffer_size), | |
NULL }, | |
/* | |
* Specifies the size of buffer, which will be used | |
* for merging ranges into state file | |
*/ | |
{ ngx_string("upload_merge_buffer_size"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, | |
ngx_conf_set_size_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, merge_buffer_size), | |
NULL }, | |
/* | |
* Specifies the size of buffer, which will be used | |
* for returning range header | |
*/ | |
{ ngx_string("upload_range_header_buffer_size"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1, | |
ngx_conf_set_size_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, range_header_buffer_size), | |
NULL }, | |
/* | |
* Specifies the maximal length of the part header | |
*/ | |
{ ngx_string("upload_max_part_header_len"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1, | |
ngx_conf_set_size_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, max_header_len), | |
NULL }, | |
/* | |
* Specifies the maximal size of the file to be uploaded | |
*/ | |
{ ngx_string("upload_max_file_size"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1, | |
ngx_conf_set_off_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, max_file_size), | |
NULL }, | |
/* | |
* Specifies the maximal length of output body | |
*/ | |
{ ngx_string("upload_max_output_body_len"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1, | |
ngx_conf_set_size_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, max_output_body_len), | |
NULL }, | |
/* | |
* Specifies the field to set in altered response body | |
*/ | |
{ ngx_string("upload_set_form_field"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE2, | |
ngx_http_upload_set_form_field, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, field_templates), | |
NULL}, | |
/* | |
* Specifies the field with aggregate parameters | |
* to set in altered response body | |
*/ | |
{ ngx_string("upload_aggregate_form_field"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE2, | |
ngx_http_upload_set_form_field, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, aggregate_field_templates), | |
NULL}, | |
/* | |
* Specifies the field to pass to backend | |
*/ | |
{ ngx_string("upload_pass_form_field"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1, | |
ngx_http_upload_pass_form_field, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
0, | |
NULL}, | |
/* | |
* Specifies http statuses upon reception of | |
* which cleanup of uploaded files will be initiated | |
*/ | |
{ ngx_string("upload_cleanup"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_1MORE, | |
ngx_http_upload_cleanup, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
0, | |
NULL}, | |
/* | |
* Specifies the whether or not to forward query args | |
* to the upload_pass redirect location | |
*/ | |
{ ngx_string("upload_pass_args"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_FLAG, | |
ngx_conf_set_flag_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, forward_args), | |
NULL }, | |
/* | |
* Specifies request body reception rate limit | |
*/ | |
{ ngx_string("upload_limit_rate"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE1, | |
ngx_conf_set_size_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, limit_rate), | |
NULL }, | |
/* | |
* Specifies whether array brackets in file field names must be dropped | |
*/ | |
{ ngx_string("upload_tame_arrays"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_FLAG, | |
ngx_conf_set_flag_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, tame_arrays), | |
NULL }, | |
/* | |
* Specifies whether resumable uploads are allowed | |
*/ | |
{ ngx_string("upload_resumable"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_FLAG, | |
ngx_conf_set_flag_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, resumable_uploads), | |
NULL }, | |
/* | |
* Specifies whether empty field names are allowed | |
*/ | |
{ ngx_string("upload_empty_fiels_names"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_FLAG, | |
ngx_conf_set_flag_slot, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, empty_field_names), | |
NULL }, | |
/* | |
* Specifies the name and content of the header that will be added to the response | |
*/ | |
{ ngx_string("upload_add_header"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_HTTP_LIF_CONF | |
|NGX_CONF_TAKE2, | |
ngx_http_upload_add_header, | |
NGX_HTTP_LOC_CONF_OFFSET, | |
offsetof(ngx_http_upload_loc_conf_t, header_templates), | |
NULL}, | |
ngx_null_command | |
}; /* }}} */ | |
ngx_http_module_t ngx_http_upload_module_ctx = { /* {{{ */ | |
ngx_http_upload_add_variables, /* preconfiguration */ | |
NULL, /* postconfiguration */ | |
NULL, /* create main configuration */ | |
NULL, /* init main configuration */ | |
NULL, /* create server configuration */ | |
NULL, /* merge server configuration */ | |
ngx_http_upload_create_loc_conf, /* create location configuration */ | |
ngx_http_upload_merge_loc_conf /* merge location configuration */ | |
}; /* }}} */ | |
ngx_module_t ngx_http_upload_module = { /* {{{ */ | |
NGX_MODULE_V1, | |
&ngx_http_upload_module_ctx, /* module context */ | |
ngx_http_upload_commands, /* module directives */ | |
NGX_HTTP_MODULE, /* module type */ | |
NULL, /* init master */ | |
NULL, /* init module */ | |
NULL, /* init process */ | |
NULL, /* init thread */ | |
NULL, /* exit thread */ | |
NULL, /* exit process */ | |
NULL, /* exit master */ | |
NGX_MODULE_V1_PADDING | |
}; /* }}} */ | |
static ngx_http_variable_t ngx_http_upload_variables[] = { /* {{{ */ | |
{ ngx_string("upload_field_name"), NULL, ngx_http_upload_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, field_name), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_content_type"), | |
ngx_http_upload_variable_set, | |
ngx_http_upload_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, content_type), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_name"), NULL, ngx_http_upload_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, file_name), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_number"), NULL, ngx_http_upload_uint_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, ordinal), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_tmp_path"), NULL, ngx_http_upload_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, output_file.name), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_content_range"), | |
ngx_http_upload_content_range_variable_set, | |
ngx_http_upload_content_range_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, content_range_n), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_null_string, NULL, NULL, 0, 0, 0 } | |
}; /* }}} */ | |
static ngx_http_variable_t ngx_http_upload_aggregate_variables[] = { /* {{{ */ | |
{ ngx_string("upload_file_md5"), NULL, ngx_http_upload_md5_variable, | |
(uintptr_t) "0123456789abcdef", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_md5_uc"), NULL, ngx_http_upload_md5_variable, | |
(uintptr_t) "0123456789ABCDEF", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_sha1"), NULL, ngx_http_upload_sha1_variable, | |
(uintptr_t) "0123456789abcdef", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_sha1_uc"), NULL, ngx_http_upload_sha1_variable, | |
(uintptr_t) "0123456789ABCDEF", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_sha256"), NULL, ngx_http_upload_sha256_variable, | |
(uintptr_t) "0123456789abcdef", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_sha256_uc"), NULL, ngx_http_upload_sha256_variable, | |
(uintptr_t) "0123456789ABCDEF", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_sha512"), NULL, ngx_http_upload_sha512_variable, | |
(uintptr_t) "0123456789abcdef", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_sha512_uc"), NULL, ngx_http_upload_sha512_variable, | |
(uintptr_t) "0123456789ABCDEF", | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_crc32"), NULL, ngx_http_upload_crc32_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, crc32), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_string("upload_file_size"), NULL, ngx_http_upload_file_size_variable, | |
(uintptr_t) offsetof(ngx_http_upload_ctx_t, output_file.offset), | |
NGX_HTTP_VAR_CHANGEABLE|NGX_HTTP_VAR_NOCACHEABLE|NGX_HTTP_VAR_NOHASH, 0 }, | |
{ ngx_null_string, NULL, NULL, 0, 0, 0 } | |
}; /* }}} */ | |
static ngx_str_t ngx_http_upload_empty_field_value = ngx_null_string; | |
static ngx_str_t ngx_upload_field_part1 = { /* {{{ */ | |
sizeof(CRLF CONTENT_DISPOSITION_STRING " form-data; name=\"") - 1, | |
(u_char*)CRLF CONTENT_DISPOSITION_STRING " form-data; name=\"" | |
}; /* }}} */ | |
static ngx_str_t ngx_upload_field_part2 = { /* {{{ */ | |
sizeof("\"" CRLF CRLF) - 1, | |
(u_char*)"\"" CRLF CRLF | |
}; /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_handler */ | |
ngx_http_upload_handler(ngx_http_request_t *r) | |
{ | |
ngx_http_upload_loc_conf_t *ulcf; | |
ngx_http_upload_ctx_t *u; | |
ngx_int_t rc; | |
if(r->method & NGX_HTTP_OPTIONS) | |
return ngx_http_upload_options_handler(r); | |
if (!(r->method & NGX_HTTP_POST)) | |
return NGX_HTTP_NOT_ALLOWED; | |
ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if (u == NULL) { | |
u = ngx_pcalloc(r->pool, sizeof(ngx_http_upload_ctx_t)); | |
if (u == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
ngx_http_set_ctx(r, u, ngx_http_upload_module); | |
} | |
if(ulcf->md5) { | |
if(u->md5_ctx == NULL) { | |
u->md5_ctx = ngx_palloc(r->pool, sizeof(ngx_http_upload_md5_ctx_t)); | |
if (u->md5_ctx == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
} | |
}else | |
u->md5_ctx = NULL; | |
if(ulcf->sha1) { | |
if(u->sha1_ctx == NULL) { | |
u->sha1_ctx = ngx_palloc(r->pool, sizeof(ngx_http_upload_sha1_ctx_t)); | |
if (u->sha1_ctx == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
} | |
}else | |
u->sha1_ctx = NULL; | |
if(ulcf->sha256) { | |
if(u->sha256_ctx == NULL) { | |
u->sha256_ctx = ngx_palloc(r->pool, sizeof(ngx_http_upload_sha256_ctx_t)); | |
if (u->sha256_ctx == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
} | |
}else | |
u->sha256_ctx = NULL; | |
if(ulcf->sha512) { | |
if(u->sha512_ctx == NULL) { | |
u->sha512_ctx = ngx_palloc(r->pool, sizeof(ngx_http_upload_sha512_ctx_t)); | |
if (u->sha512_ctx == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
} | |
}else | |
u->sha512_ctx = NULL; | |
u->calculate_crc32 = ulcf->crc32; | |
u->request = r; | |
u->log = r->connection->log; | |
u->chain = u->last = u->checkpoint = NULL; | |
u->output_body_len = 0; | |
u->prevent_output = 0; | |
u->no_content = 1; | |
u->limit_rate = ulcf->limit_rate; | |
u->received = 0; | |
u->ordinal = 0; | |
upload_init_ctx(u); | |
rc = upload_parse_request_headers(u, &r->headers_in); | |
if(rc != NGX_OK) { | |
upload_shutdown_ctx(u); | |
return rc; | |
} | |
rc = ngx_http_upload_eval_path(r); | |
if(rc != NGX_OK) { | |
upload_shutdown_ctx(u); | |
return rc; | |
} | |
rc = ngx_http_upload_eval_state_path(r); | |
if(rc != NGX_OK) { | |
upload_shutdown_ctx(u); | |
return rc; | |
} | |
if (ngx_http_upload_test_expect(r) != NGX_OK) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
if(upload_start(u, ulcf) != NGX_OK) | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
rc = ngx_http_read_upload_client_request_body(r); | |
if (rc >= NGX_HTTP_SPECIAL_RESPONSE) { | |
return rc; | |
} | |
return NGX_DONE; | |
} /* }}} */ | |
static ngx_int_t ngx_http_upload_add_headers(ngx_http_request_t *r, ngx_http_upload_loc_conf_t *ulcf) { /* {{{ */ | |
ngx_str_t name; | |
ngx_str_t value; | |
ngx_http_upload_header_template_t *t; | |
ngx_table_elt_t *h; | |
ngx_uint_t i; | |
if(ulcf->header_templates != NULL) { | |
t = ulcf->header_templates->elts; | |
for(i = 0; i < ulcf->header_templates->nelts; i++) { | |
if(ngx_http_complex_value(r, t->name, &name) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
if(ngx_http_complex_value(r, t->value, &value) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
if(name.len != 0 && value.len != 0) { | |
h = ngx_list_push(&r->headers_out.headers); | |
if(h == NULL) { | |
return NGX_ERROR; | |
} | |
h->hash = 1; | |
h->key.len = name.len; | |
h->key.data = name.data; | |
h->value.len = value.len; | |
h->value.data = value.data; | |
} | |
t++; | |
} | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ */ | |
ngx_http_upload_eval_path(ngx_http_request_t *r) { | |
ngx_http_upload_ctx_t *u; | |
ngx_http_upload_loc_conf_t *ulcf; | |
ngx_str_t value; | |
ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if(ulcf->store_path->is_dynamic) { | |
u->store_path = ngx_pcalloc(r->pool, sizeof(ngx_path_t)); | |
if(u->store_path == NULL) { | |
return NGX_ERROR; | |
} | |
ngx_memcpy(u->store_path, ulcf->store_path->path, sizeof(ngx_path_t)); | |
if(ngx_http_complex_value(r, &ulcf->store_path->dynamic, &value) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
u->store_path->name.data = value.data; | |
u->store_path->name.len = value.len; | |
} | |
else{ | |
u->store_path = ulcf->store_path->path; | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ */ | |
ngx_http_upload_eval_state_path(ngx_http_request_t *r) { | |
ngx_http_upload_ctx_t *u; | |
ngx_http_upload_loc_conf_t *ulcf; | |
ngx_str_t value; | |
ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if(ulcf->state_store_path->is_dynamic) { | |
u->state_store_path = ngx_pcalloc(r->pool, sizeof(ngx_path_t)); | |
if(u->store_path == NULL) { | |
return NGX_ERROR; | |
} | |
ngx_memcpy(u->state_store_path, ulcf->state_store_path->path, sizeof(ngx_path_t)); | |
if(ngx_http_complex_value(r, &ulcf->state_store_path->dynamic, &value) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
u->state_store_path->name.data = value.data; | |
u->state_store_path->name.len = value.len; | |
} | |
else{ | |
u->state_store_path = ulcf->state_store_path->path; | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t ngx_http_upload_options_handler(ngx_http_request_t *r) { /* {{{ */ | |
ngx_http_upload_loc_conf_t *ulcf; | |
ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
r->headers_out.status = NGX_HTTP_OK; | |
if(ngx_http_upload_add_headers(r, ulcf) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
r->header_only = 1; | |
r->headers_out.content_length_n = 0; | |
r->allow_ranges = 0; | |
return ngx_http_send_header(r); | |
} /* }}} */ | |
static ngx_int_t ngx_http_upload_body_handler(ngx_http_request_t *r) { /* {{{ */ | |
ngx_http_upload_loc_conf_t *ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
ngx_http_upload_ctx_t *ctx = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
ngx_str_t args; | |
ngx_uint_t flags; | |
ngx_int_t rc; | |
ngx_str_t uri; | |
ngx_buf_t *b; | |
ngx_chain_t *cl, out; | |
ngx_str_t dummy = ngx_string("<ngx_upload_module_dummy>"); | |
ngx_table_elt_t *h; | |
if(ngx_http_upload_add_headers(r, ulcf) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
if(ctx->prevent_output) { | |
r->headers_out.status = NGX_HTTP_CREATED; | |
/* | |
* Add range header and body | |
*/ | |
if(ctx->range_header_buffer_pos != ctx->range_header_buffer) { | |
h = ngx_list_push(&r->headers_out.headers); | |
if (h == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
h->hash = 1; | |
h->key.len = sizeof("Range") - 1; | |
h->key.data = (u_char *) "Range"; | |
h->value.len = ctx->range_header_buffer_pos - ctx->range_header_buffer; | |
h->value.data = ctx->range_header_buffer; | |
b = ngx_pcalloc(r->pool, sizeof(ngx_buf_t)); | |
if (b == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
r->headers_out.content_length_n = h->value.len; | |
r->allow_ranges = 0; | |
rc = ngx_http_send_header(r); | |
if(rc == NGX_ERROR) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
if(rc > NGX_OK) { | |
return rc; | |
} | |
b->in_file = 0; | |
b->memory = 1; | |
b->last_buf = b->last_in_chain = b->flush = 1; | |
b->start = b->pos = ctx->range_header_buffer; | |
b->last = ctx->range_header_buffer_pos; | |
b->end = ctx->range_header_buffer_end; | |
out.buf = b; | |
out.next = NULL; | |
ngx_http_finalize_request(r, ngx_http_output_filter(r, &out)); | |
} | |
else { | |
r->header_only = 1; | |
r->headers_out.content_length_n = 0; | |
ngx_http_finalize_request(r, ngx_http_send_header(r)); | |
} | |
return NGX_OK; | |
} | |
if(ulcf->max_output_body_len != 0) { | |
if(ctx->output_body_len + ctx->boundary.len + 4 > ulcf->max_output_body_len) | |
return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE; | |
} | |
if(ctx->no_content) { | |
rc = ngx_http_upload_append_field(ctx, &dummy, &ngx_http_upload_empty_field_value); | |
if(rc != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
} | |
/* | |
* Append final boundary | |
*/ | |
b = ngx_create_temp_buf(r->pool, ctx->boundary.len + 4); | |
if (b == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
cl = ngx_alloc_chain_link(r->pool); | |
if (cl == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
b->last_in_chain = 1; | |
b->last_buf = 1; | |
cl->buf = b; | |
cl->next = NULL; | |
if(ctx->chain == NULL) { | |
ctx->chain = cl; | |
ctx->last = cl; | |
}else{ | |
ctx->last->next = cl; | |
ctx->last = cl; | |
} | |
b->last = ngx_cpymem(b->last, ctx->boundary.data, ctx->boundary.len); | |
*b->last++ = '-'; | |
*b->last++ = '-'; | |
*b->last++ = CR; | |
*b->last++ = LF; | |
if (ulcf->url_cv) { | |
/* complex value */ | |
if (ngx_http_complex_value(r, ulcf->url_cv, &uri) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
if (uri.len == 0) { | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, | |
"empty \"upload_pass\" (was: \"%V\")", | |
&ulcf->url_cv->value); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
} else { | |
/* simple value */ | |
uri = ulcf->url; | |
} | |
if (ulcf->forward_args) { | |
args = r->args; /* forward the query args */ | |
} | |
else { | |
args.len = 0; | |
args.data = NULL; | |
} | |
flags = 0; | |
if (ngx_http_parse_unsafe_uri(r, &uri, &args, &flags) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
r->request_body->bufs = ctx->chain; | |
// Recalculate content length | |
r->headers_in.content_length_n = 0; | |
for(cl = ctx->chain ; cl ; cl = cl->next) | |
r->headers_in.content_length_n += (cl->buf->last - cl->buf->pos); | |
r->headers_in.content_length->value.data = ngx_palloc(r->pool, NGX_OFF_T_LEN); | |
if (r->headers_in.content_length->value.data == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
r->headers_in.content_length->value.len = | |
ngx_sprintf(r->headers_in.content_length->value.data, "%O", r->headers_in.content_length_n) | |
- r->headers_in.content_length->value.data; | |
#if defined nginx_version && nginx_version >= 8011 | |
r->main->count--; | |
#endif | |
if(uri.len != 0 && uri.data[0] == '/') { | |
rc = ngx_http_internal_redirect(r, &uri, &args); | |
} | |
else{ | |
rc = ngx_http_named_location(r, &uri); | |
} | |
if (rc == NGX_ERROR) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
return rc; | |
} /* }}} */ | |
static ngx_int_t ngx_http_upload_start_handler(ngx_http_upload_ctx_t *u) { /* {{{ */ | |
ngx_http_request_t *r = u->request; | |
ngx_http_upload_loc_conf_t *ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
ngx_file_t *file = &u->output_file; | |
ngx_path_t *path = u->store_path; | |
ngx_path_t *state_path = u->state_store_path; | |
uint32_t n; | |
ngx_uint_t i; | |
ngx_int_t rc; | |
ngx_err_t err; | |
ngx_http_upload_field_template_t *t; | |
ngx_http_upload_field_filter_t *f; | |
ngx_str_t field_name, field_value; | |
ngx_uint_t pass_field; | |
ngx_upload_cleanup_t *ucln; | |
if(u->is_file) { | |
u->ordinal++; | |
u->cln = ngx_pool_cleanup_add(r->pool, sizeof(ngx_upload_cleanup_t)); | |
if(u->cln == NULL) | |
return NGX_UPLOAD_NOMEM; | |
file->name.len = path->name.len + 1 + path->len + (u->session_id.len != 0 ? u->session_id.len : 10); | |
file->name.data = ngx_palloc(u->request->pool, file->name.len + 1); | |
if(file->name.data == NULL) | |
return NGX_UPLOAD_NOMEM; | |
ngx_memcpy(file->name.data, path->name.data, path->name.len); | |
file->log = r->connection->log; | |
if(u->session_id.len != 0) { | |
(void) ngx_sprintf(file->name.data + path->name.len + 1 + path->len, | |
"%V%Z", &u->session_id); | |
ngx_create_hashed_filename(path, file->name.data, file->name.len); | |
ngx_log_debug1(NGX_LOG_DEBUG_CORE, file->log, 0, | |
"hashed path: %s", file->name.data); | |
if(u->partial_content) { | |
ngx_file_t *state_file = &u->state_file; | |
if(u->merge_buffer == NULL) { | |
u->merge_buffer = ngx_palloc(r->pool, ulcf->merge_buffer_size); | |
if(u->merge_buffer == NULL) | |
return NGX_UPLOAD_NOMEM; | |
} | |
state_file->name.len = state_path->name.len + 1 + state_path->len + u->session_id.len + sizeof(".state"); | |
state_file->name.data = ngx_palloc(u->request->pool, state_file->name.len + 1); | |
if(state_file->name.data == NULL) | |
return NGX_UPLOAD_NOMEM; | |
ngx_memcpy(state_file->name.data, state_path->name.data, state_path->name.len); | |
(void) ngx_sprintf(state_file->name.data + state_path->name.len + 1 + state_path->len, | |
"%V.state%Z", &u->session_id); | |
ngx_create_hashed_filename(state_path, state_file->name.data, state_file->name.len); | |
ngx_log_debug1(NGX_LOG_DEBUG_CORE, file->log, 0, | |
"hashed path of state file: %s", state_file->name.data); | |
} | |
file->fd = ngx_open_file(file->name.data, NGX_FILE_WRONLY, NGX_FILE_CREATE_OR_OPEN, ulcf->store_access); | |
if (file->fd == NGX_INVALID_FILE) { | |
err = ngx_errno; | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno, | |
"failed to create output file \"%V\" for \"%V\"", &file->name, &u->file_name); | |
return NGX_UPLOAD_IOERROR; | |
} | |
file->offset = u->content_range_n.start; | |
} | |
else{ | |
for(;;) { | |
n = (uint32_t) ngx_next_temp_number(0); | |
(void) ngx_sprintf(file->name.data + path->name.len + 1 + path->len, | |
"%010uD%Z", n); | |
ngx_create_hashed_filename(path, file->name.data, file->name.len); | |
ngx_log_debug1(NGX_LOG_DEBUG_CORE, file->log, 0, | |
"hashed path: %s", file->name.data); | |
file->fd = ngx_open_tempfile(file->name.data, 1, ulcf->store_access); | |
if (file->fd != NGX_INVALID_FILE) { | |
file->offset = 0; | |
break; | |
} | |
err = ngx_errno; | |
if (err == NGX_EEXIST) { | |
n = (uint32_t) ngx_next_temp_number(1); | |
continue; | |
} | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno, | |
"failed to create output file \"%V\" for \"%V\"", &file->name, &u->file_name); | |
return NGX_UPLOAD_IOERROR; | |
} | |
} | |
u->cln->handler = ngx_upload_cleanup_handler; | |
ucln = u->cln->data; | |
ucln->fd = file->fd; | |
ucln->filename = file->name.data; | |
ucln->log = r->connection->log; | |
ucln->headers_out = &r->headers_out; | |
ucln->cleanup_statuses = ulcf->cleanup_statuses; | |
ucln->aborted = 0; | |
if(ulcf->field_templates) { | |
if(ulcf->tame_arrays && u->field_name.len > 2 && | |
u->field_name.data[u->field_name.len - 1] == ']' && | |
u->field_name.data[u->field_name.len - 2] == '[') | |
{ | |
u->field_name.len -= 2; | |
} | |
t = ulcf->field_templates->elts; | |
for (i = 0; i < ulcf->field_templates->nelts; i++) { | |
if (t[i].field_lengths == NULL) { | |
field_name = t[i].value.key; | |
}else{ | |
if (ngx_http_script_run(r, &field_name, t[i].field_lengths->elts, 0, | |
t[i].field_values->elts) == NULL) | |
{ | |
rc = NGX_UPLOAD_SCRIPTERROR; | |
goto cleanup_file; | |
} | |
} | |
if (t[i].value_lengths == NULL) { | |
field_value = t[i].value.value; | |
}else{ | |
if (ngx_http_script_run(r, &field_value, t[i].value_lengths->elts, 0, | |
t[i].value_values->elts) == NULL) | |
{ | |
rc = NGX_UPLOAD_SCRIPTERROR; | |
goto cleanup_file; | |
} | |
} | |
rc = ngx_http_upload_append_field(u, &field_name, &field_value); | |
if(rc != NGX_OK) | |
goto cleanup_file; | |
} | |
} | |
if(u->md5_ctx != NULL) | |
MD5Init(&u->md5_ctx->md5); | |
if(u->sha1_ctx != NULL) | |
SHA1_Init(&u->sha1_ctx->sha1); | |
if(u->sha256_ctx != NULL) | |
SHA256_Init(&u->sha256_ctx->sha256); | |
if(u->sha512_ctx != NULL) | |
SHA512_Init(&u->sha512_ctx->sha512); | |
if(u->calculate_crc32) | |
ngx_crc32_init(u->crc32); | |
if(u->partial_content) { | |
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0 | |
, "started uploading part %O-%O/%O of file \"%V\" to \"%V\" (field \"%V\", content type \"%V\")" | |
, u->content_range_n.start | |
, u->content_range_n.end | |
, u->content_range_n.total | |
, &u->file_name | |
, &u->output_file.name | |
, &u->field_name | |
, &u->content_type | |
); | |
} | |
else { | |
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0 | |
, "started uploading file \"%V\" to \"%V\" (field \"%V\", content type \"%V\")" | |
, &u->file_name | |
, &u->output_file.name | |
, &u->field_name | |
, &u->content_type | |
); | |
} | |
}else{ | |
pass_field = 0; | |
if(ulcf->field_filters) { | |
f = ulcf->field_filters->elts; | |
for (i = 0; i < ulcf->field_filters->nelts; i++) { | |
#if (NGX_PCRE) | |
rc = ngx_regex_exec(f[i].regex, &u->field_name, NULL, 0); | |
/* Modified by Naren to work around iMovie and Quicktime which send empty values Added: && u->field_name.len > 0 */ | |
if ((ulcf->empty_field_names && rc != NGX_REGEX_NO_MATCHED && rc < 0 && u->field_name.len != 0) | |
|| (!ulcf->empty_field_names && rc != NGX_REGEX_NO_MATCHED && rc < 0)) | |
{ | |
return NGX_UPLOAD_SCRIPTERROR; | |
} | |
/* | |
* If at least one filter succeeds, we pass the field | |
*/ | |
if(rc == 0) | |
pass_field = 1; | |
#else | |
if(ngx_strncmp(f[i].text.data, u->field_name.data, u->field_name.len) == 0) | |
pass_field = 1; | |
#endif | |
} | |
} | |
if(pass_field && u->field_name.len != 0) { | |
/* | |
* Here we do a small hack: the content of a non-file field | |
* is not known until ngx_http_upload_flush_output_buffer | |
* is called. We pass empty field value to simplify things. | |
*/ | |
rc = ngx_http_upload_append_field(u, &u->field_name, &ngx_http_upload_empty_field_value); | |
if(rc != NGX_OK) | |
return rc; | |
}else | |
u->discard_data = 1; | |
} | |
return NGX_OK; | |
cleanup_file: | |
return rc; | |
} /* }}} */ | |
static void ngx_http_upload_finish_handler(ngx_http_upload_ctx_t *u) { /* {{{ */ | |
ngx_http_upload_field_template_t *af; | |
ngx_str_t aggregate_field_name, aggregate_field_value; | |
ngx_http_request_t *r = u->request; | |
ngx_http_upload_loc_conf_t *ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
ngx_uint_t i; | |
ngx_int_t rc; | |
ngx_upload_cleanup_t *ucln; | |
if(u->is_file) { | |
ucln = u->cln->data; | |
ucln->fd = -1; | |
ngx_close_file(u->output_file.fd); | |
if(u->md5_ctx) | |
MD5Final(u->md5_ctx->md5_digest, &u->md5_ctx->md5); | |
if(u->sha1_ctx) | |
SHA1_Final(u->sha1_ctx->sha1_digest, &u->sha1_ctx->sha1); | |
if(u->sha256_ctx) | |
SHA256_Final(u->sha256_ctx->sha256_digest, &u->sha256_ctx->sha256); | |
if(u->sha512_ctx) | |
SHA512_Final(u->sha512_ctx->sha512_digest, &u->sha512_ctx->sha512); | |
if(u->calculate_crc32) | |
ngx_crc32_final(u->crc32); | |
if(u->partial_content) { | |
if(u->output_file.offset != u->content_range_n.end + 1) { | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0 | |
, "file offset at the end of a part %O does not match the end specified range %O-%O/%O" | |
, u->output_file.offset | |
, u->content_range_n.start | |
, u->content_range_n.end | |
, u->content_range_n.total | |
, u->output_file.name | |
); | |
goto rollback; | |
} | |
rc = ngx_http_upload_merge_ranges(u, &u->content_range_n); | |
if(rc == NGX_ERROR) { | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0 | |
, "error merging ranges" | |
); | |
goto rollback; | |
} | |
if(rc == NGX_AGAIN) { | |
/* | |
* If there are more parts to go, we do not produce any output | |
*/ | |
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0 | |
, "finished uploading part %O-%O/%O of a file \"%V\" to \"%V\"" | |
, u->content_range_n.start | |
, u->content_range_n.end | |
, u->content_range_n.total | |
, &u->file_name | |
, &u->output_file.name | |
); | |
u->prevent_output = 1; | |
return; | |
} | |
if(ngx_delete_file(u->state_file.name.data) == NGX_FILE_ERROR) { | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "failed to remove state file \"%V\"", &u->state_file.name); | |
} else { | |
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0, "removed state file \"%V\"", &u->state_file.name); | |
} | |
} | |
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0 | |
, "finished uploading file \"%V\" to \"%V\"" | |
, &u->file_name | |
, &u->output_file.name | |
); | |
if(ulcf->aggregate_field_templates) { | |
af = ulcf->aggregate_field_templates->elts; | |
for (i = 0; i < ulcf->aggregate_field_templates->nelts; i++) { | |
if (af[i].field_lengths == NULL) { | |
aggregate_field_name = af[i].value.key; | |
}else{ | |
if (ngx_http_script_run(r, &aggregate_field_name, af[i].field_lengths->elts, 0, | |
af[i].field_values->elts) == NULL) | |
{ | |
goto rollback; | |
} | |
} | |
if (af[i].value_lengths == NULL) { | |
aggregate_field_value = af[i].value.value; | |
}else{ | |
if (ngx_http_script_run(r, &aggregate_field_value, af[i].value_lengths->elts, 0, | |
af[i].value_values->elts) == NULL) | |
{ | |
goto rollback; | |
} | |
} | |
rc = ngx_http_upload_append_field(u, &aggregate_field_name, &aggregate_field_value); | |
if(rc != NGX_OK) | |
goto rollback; | |
} | |
} | |
} | |
// Checkpoint current output chain state | |
u->checkpoint = u->last; | |
return; | |
rollback: | |
ngx_http_upload_abort_handler(u); | |
} /* }}} */ | |
static void ngx_http_upload_abort_handler(ngx_http_upload_ctx_t *u) { /* {{{ */ | |
ngx_upload_cleanup_t *ucln; | |
if(u->is_file) { | |
/* | |
* Upload of a part could be aborted due to temporary reasons, thus | |
* next body part will be potentially processed successfuly. | |
* | |
* Therefore we don't postpone cleanup to the request finallization | |
* in order to save additional resources, instead we mark existing | |
* cleanup record as aborted. | |
*/ | |
ucln = u->cln->data; | |
ucln->fd = -1; | |
ucln->aborted = 1; | |
ngx_close_file(u->output_file.fd); | |
if(!u->partial_content) { | |
if(ngx_delete_file(u->output_file.name.data) == NGX_FILE_ERROR) { | |
ngx_log_error(NGX_LOG_ERR, u->log, ngx_errno | |
, "aborted uploading file \"%V\" to \"%V\", failed to remove destination file" | |
, &u->file_name | |
, &u->output_file.name); | |
} else { | |
ngx_log_error(NGX_LOG_ALERT, u->log, 0 | |
, "aborted uploading file \"%V\" to \"%V\", dest file removed" | |
, &u->file_name | |
, &u->output_file.name); | |
} | |
} | |
} | |
// Rollback output chain to the previous consistant state | |
if(u->checkpoint != NULL) { | |
u->last = u->checkpoint; | |
u->last->next = NULL; | |
}else{ | |
u->chain = u->last = NULL; | |
u->first_part = 1; | |
} | |
} /* }}} */ | |
static ngx_int_t ngx_http_upload_flush_output_buffer(ngx_http_upload_ctx_t *u, u_char *buf, size_t len) { /* {{{ */ | |
ngx_http_request_t *r = u->request; | |
ngx_buf_t *b; | |
ngx_chain_t *cl; | |
ngx_http_upload_loc_conf_t *ulcf = ngx_http_get_module_loc_conf(r, ngx_http_upload_module); | |
if(u->is_file) { | |
if(u->partial_content) { | |
if(u->output_file.offset > u->content_range_n.end) | |
return NGX_OK; | |
if(u->output_file.offset + (off_t)len > u->content_range_n.end + 1) | |
len = u->content_range_n.end - u->output_file.offset + 1; | |
} | |
if(u->md5_ctx) | |
MD5Update(&u->md5_ctx->md5, buf, len); | |
if(u->sha1_ctx) | |
SHA1_Update(&u->sha1_ctx->sha1, buf, len); | |
if(u->sha256_ctx) | |
SHA256_Update(&u->sha256_ctx->sha256, buf, len); | |
if(u->sha512_ctx) | |
SHA512_Update(&u->sha512_ctx->sha512, buf, len); | |
if(u->calculate_crc32) | |
ngx_crc32_update(&u->crc32, buf, len); | |
if(ulcf->max_file_size != 0 && !u->partial_content) { | |
if(u->output_file.offset + (off_t)len > ulcf->max_file_size) | |
return NGX_UPLOAD_TOOLARGE; | |
} | |
if(ngx_write_file(&u->output_file, buf, len, u->output_file.offset) == NGX_ERROR) { | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno, | |
"write to file \"%V\" failed", &u->output_file.name); | |
return NGX_UPLOAD_IOERROR; | |
}else | |
return NGX_OK; | |
}else{ | |
if(ulcf->max_output_body_len != 0) { | |
if (u->output_body_len + len > ulcf->max_output_body_len) | |
return NGX_UPLOAD_TOOLARGE; | |
} | |
u->output_body_len += len; | |
b = ngx_create_temp_buf(u->request->pool, len); | |
if (b == NULL) { | |
return NGX_ERROR; | |
} | |
cl = ngx_alloc_chain_link(u->request->pool); | |
if (cl == NULL) { | |
return NGX_ERROR; | |
} | |
b->last_in_chain = 0; | |
cl->buf = b; | |
cl->next = NULL; | |
b->last = ngx_cpymem(b->last, buf, len); | |
if(u->chain == NULL) { | |
u->chain = cl; | |
u->last = cl; | |
}else{ | |
u->last->next = cl; | |
u->last = cl; | |
} | |
return NGX_OK; | |
} | |
} /* }}} */ | |
static void /* {{{ ngx_http_upload_append_str */ | |
ngx_http_upload_append_str(ngx_http_upload_ctx_t *u, ngx_buf_t *b, ngx_chain_t *cl, ngx_str_t *s) | |
{ | |
b->start = b->pos = s->data; | |
b->end = b->last = s->data + s->len; | |
b->memory = 1; | |
b->temporary = 1; | |
b->in_file = 0; | |
b->last_buf = 0; | |
b->last_in_chain = 0; | |
b->last_buf = 0; | |
cl->buf = b; | |
cl->next = NULL; | |
if(u->chain == NULL) { | |
u->chain = cl; | |
u->last = cl; | |
}else{ | |
u->last->next = cl; | |
u->last = cl; | |
} | |
u->output_body_len += s->len; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_append_field */ | |
ngx_http_upload_append_field(ngx_http_upload_ctx_t *u, ngx_str_t *name, ngx_str_t *value) | |
{ | |
ngx_http_upload_loc_conf_t *ulcf = ngx_http_get_module_loc_conf(u->request, ngx_http_upload_module); | |
ngx_str_t boundary = { u->first_part ? u->boundary.len - 2 : u->boundary.len, | |
u->first_part ? u->boundary.data + 2 : u->boundary.data }; | |
ngx_buf_t *b; | |
ngx_chain_t *cl; | |
if(name->len > 0) { | |
if(ulcf->max_output_body_len != 0) { | |
if(u->output_body_len + boundary.len + ngx_upload_field_part1.len + name->len | |
+ ngx_upload_field_part2.len + value->len > ulcf->max_output_body_len) | |
return NGX_UPLOAD_TOOLARGE; | |
} | |
b = ngx_palloc(u->request->pool, value->len > 0 ? | |
5 * sizeof(ngx_buf_t) : 4 * sizeof(ngx_buf_t)); | |
if (b == NULL) { | |
return NGX_UPLOAD_NOMEM; | |
} | |
cl = ngx_palloc(u->request->pool, value->len > 0 ? | |
5 * sizeof(ngx_chain_t) : 4 * sizeof(ngx_chain_t)); | |
if (cl == NULL) { | |
return NGX_UPLOAD_NOMEM; | |
} | |
ngx_http_upload_append_str(u, b, cl, &boundary); | |
ngx_http_upload_append_str(u, b + 1, cl + 1, &ngx_upload_field_part1); | |
ngx_http_upload_append_str(u, b + 2, cl + 2, name); | |
ngx_http_upload_append_str(u, b + 3, cl + 3, &ngx_upload_field_part2); | |
if(value->len > 0) | |
ngx_http_upload_append_str(u, b + 4, cl + 4, value); | |
u->output_body_len += boundary.len + ngx_upload_field_part1.len + name->len | |
+ ngx_upload_field_part2.len + value->len; | |
u->first_part = 0; | |
u->no_content = 0; | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t ngx_http_upload_add_range(ngx_http_upload_merger_state_t *ms, ngx_http_upload_range_t *range_n) { | |
ms->out_buf->last = ngx_sprintf(ms->out_buf->last, "%O-%O/%O\x0a", | |
range_n->start, | |
range_n->end, | |
range_n->total); | |
if(*ms->range_header_buffer_pos < ms->range_header_buffer_end) { | |
*ms->range_header_buffer_pos = ngx_sprintf(*ms->range_header_buffer_pos, | |
ms->first_range ? "%O-%O/%O" : ",%O-%O/%O", | |
range_n->start, | |
range_n->end, | |
range_n->total); | |
ms->first_range = 0; | |
} | |
return NGX_OK; | |
} | |
static ngx_int_t /* {{{ ngx_http_upload_buf_merge_range */ | |
ngx_http_upload_buf_merge_range(ngx_http_upload_merger_state_t *ms, ngx_http_upload_range_t *range_n) { | |
u_char *p, c; | |
off_t *field; | |
p = ms->in_buf->pos; | |
field = ms->parser_state; | |
do{ | |
*field = 0; | |
while(p != ms->in_buf->last) { | |
c = *p++; | |
if(c >= '0' && c <= '9') { | |
(*field) = (*field) * 10 + (c - '0'); | |
} | |
else if(c == '-') { | |
if(field != &ms->current_range_n.start) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"unexpected - while parsing range"); | |
return NGX_ERROR; | |
} | |
field = &ms->current_range_n.end; | |
break; | |
} | |
else if(c == '/') { | |
if(field != &ms->current_range_n.end) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"unexpected / while parsing range"); | |
return NGX_ERROR; | |
} | |
field = &ms->current_range_n.total; | |
break; | |
} | |
else if(c == LF) { | |
if(field != &ms->current_range_n.total) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"unexpected end of line while parsing range"); | |
return NGX_ERROR; | |
} | |
if(ms->current_range_n.start >= ms->current_range_n.end || ms->current_range_n.start >= ms->current_range_n.total | |
|| ms->current_range_n.end > ms->current_range_n.total) | |
{ | |
ngx_log_debug3(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"inconsistent bounds while parsing range: %O-%O/%O", | |
ms->current_range_n.start, | |
ms->current_range_n.end, | |
ms->current_range_n.total); | |
return NGX_ERROR; | |
} | |
if(ms->current_range_n.total != range_n->total) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"total number of bytes mismatch while parsing range"); | |
return NGX_ERROR; | |
} | |
field = &ms->current_range_n.start; | |
if(ms->current_range_n.end + 1 < range_n->start) { | |
/* | |
* Current range is entirely below the new one, | |
* output current one and seek next | |
*/ | |
if(ngx_http_upload_add_range(ms, &ms->current_range_n) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
ngx_log_debug3(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"< %O-%O/%O", ms->current_range_n.start, | |
ms->current_range_n.end, ms->current_range_n.total); | |
break; | |
} | |
if(ms->current_range_n.start > range_n->end + 1) { | |
/* | |
* Current range is entirely above the new one, | |
* insert new range | |
*/ | |
if(!ms->found_lower_bound) { | |
if(ngx_http_upload_add_range(ms, range_n) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
} | |
if(ngx_http_upload_add_range(ms, &ms->current_range_n) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
ngx_log_debug6(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"> %O-%O/%O %O-%O/%O", | |
range_n->start, | |
range_n->end, | |
range_n->total, | |
ms->current_range_n.start, | |
ms->current_range_n.end, | |
ms->current_range_n.total); | |
ms->found_lower_bound = 1; | |
break; | |
} | |
/* | |
* Extend range to be merged with the current range | |
*/ | |
range_n->start = range_n->start < ms->current_range_n.start ? range_n->start : ms->current_range_n.start; | |
range_n->end = range_n->end > ms->current_range_n.end ? range_n->end : ms->current_range_n.end; | |
break; | |
} | |
else { | |
ngx_log_debug1(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"unexpected character %c", *p); | |
return NGX_ERROR; | |
} | |
} | |
}while(p != ms->in_buf->last); | |
if(ms->in_buf->last_buf) { | |
if(field != &ms->current_range_n.start) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"unexpected end of file while merging ranges"); | |
return NGX_ERROR; | |
} | |
if(!ms->found_lower_bound) { | |
if(ngx_http_upload_add_range(ms, range_n) != NGX_OK) { | |
return NGX_ERROR; | |
} | |
ngx_log_debug3(NGX_LOG_DEBUG_CORE, ms->log, 0, | |
"a %O-%O/%O", | |
range_n->start, | |
range_n->end, | |
range_n->total); | |
ms->complete_ranges = (range_n->start == 0) && (range_n->end == range_n->total - 1) ? 1 : 0; | |
ms->found_lower_bound = 1; | |
} | |
} | |
ms->parser_state = field; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_merge_ranges */ | |
ngx_http_upload_merge_ranges(ngx_http_upload_ctx_t *u, ngx_http_upload_range_t *range_n) { | |
ngx_file_t *state_file = &u->state_file; | |
ngx_http_upload_merger_state_t ms; | |
off_t remaining; | |
ssize_t rc; | |
__attribute__((__unused__)) int result; | |
ngx_buf_t in_buf; | |
ngx_buf_t out_buf; | |
ngx_http_upload_loc_conf_t *ulcf = ngx_http_get_module_loc_conf(u->request, ngx_http_upload_module); | |
ngx_http_upload_range_t range_to_merge_n; | |
state_file->fd = ngx_open_file(state_file->name.data, NGX_FILE_RDWR, NGX_FILE_CREATE_OR_OPEN, ulcf->store_access); | |
if (state_file->fd == NGX_INVALID_FILE) { | |
ngx_log_error(NGX_LOG_ERR, u->log, ngx_errno, | |
"failed to create or open state file \"%V\"", &state_file->name); | |
return NGX_ERROR; | |
} | |
ngx_lock_fd(state_file->fd); | |
ngx_fd_info(state_file->fd, &state_file->info); | |
state_file->offset = 0; | |
state_file->log = u->log; | |
ms.in_buf = &in_buf; | |
ms.out_buf = &out_buf; | |
ms.parser_state = &ms.current_range_n.start; | |
ms.log = u->log; | |
ms.found_lower_bound = 0; | |
ms.complete_ranges = 0; | |
ms.first_range = 1; | |
ms.range_header_buffer = u->range_header_buffer; | |
ms.range_header_buffer_pos = &u->range_header_buffer_pos; | |
ms.range_header_buffer_end = u->range_header_buffer_end; | |
range_to_merge_n = *range_n; | |
out_buf.start = out_buf.pos = out_buf.last = u->merge_buffer; | |
out_buf.end = u->merge_buffer + (ulcf->merge_buffer_size >> 1) + NGX_OFF_T_LEN*3 + 2 + 1; | |
out_buf.file_pos = 0; | |
in_buf.start = in_buf.pos = in_buf.last = out_buf.end; | |
in_buf.end = u->merge_buffer + ulcf->merge_buffer_size; | |
do { | |
in_buf.file_pos = state_file->offset; | |
in_buf.pos = in_buf.last = in_buf.start; | |
if(state_file->offset < state_file->info.st_size) { | |
remaining = state_file->info.st_size - state_file->offset > in_buf.end - in_buf.start | |
? in_buf.end - in_buf.start : state_file->info.st_size - state_file->offset; | |
rc = ngx_read_file(state_file, in_buf.pos, remaining, state_file->offset); | |
if(rc < 0 || rc != remaining) { | |
goto failed; | |
} | |
in_buf.last = in_buf.pos + rc; | |
} | |
in_buf.last_buf = state_file->offset == state_file->info.st_size ? 1 : 0; | |
if(out_buf.pos != out_buf.last) { | |
rc = ngx_write_file(state_file, out_buf.pos, out_buf.last - out_buf.pos, out_buf.file_pos); | |
if(rc < 0 || rc != out_buf.last - out_buf.pos) { | |
goto failed; | |
} | |
out_buf.file_pos += out_buf.last - out_buf.pos; | |
} | |
out_buf.pos = out_buf.last = out_buf.start; | |
if(ngx_http_upload_buf_merge_range(&ms, &range_to_merge_n) != NGX_OK) { | |
ngx_log_error(NGX_LOG_ERR, u->log, 0, | |
"state file \"%V\" is corrupt", &state_file->name); | |
rc = NGX_ERROR; | |
goto failed; | |
} | |
} while(state_file->offset < state_file->info.st_size); | |
if(out_buf.pos != out_buf.last) { | |
rc = ngx_write_file(state_file, out_buf.pos, out_buf.last - out_buf.pos, out_buf.file_pos); | |
if(rc < 0 || rc != out_buf.last - out_buf.pos) { | |
goto failed; | |
} | |
out_buf.file_pos += out_buf.last - out_buf.pos; | |
} | |
if(out_buf.file_pos < state_file->info.st_size) { | |
result = ftruncate(state_file->fd, out_buf.file_pos); | |
} | |
rc = ms.complete_ranges ? NGX_OK : NGX_AGAIN; | |
failed: | |
ngx_unlock_fd(state_file->fd); | |
ngx_close_file(state_file->fd); | |
return rc; | |
} /* }}} */ | |
static void * /* {{{ ngx_http_upload_create_loc_conf */ | |
ngx_http_upload_create_loc_conf(ngx_conf_t *cf) | |
{ | |
ngx_http_upload_loc_conf_t *conf; | |
conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_upload_loc_conf_t)); | |
if (conf == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
conf->store_access = NGX_CONF_UNSET_UINT; | |
conf->forward_args = NGX_CONF_UNSET; | |
conf->tame_arrays = NGX_CONF_UNSET; | |
conf->resumable_uploads = NGX_CONF_UNSET; | |
conf->empty_field_names = NGX_CONF_UNSET; | |
conf->buffer_size = NGX_CONF_UNSET_SIZE; | |
conf->merge_buffer_size = NGX_CONF_UNSET_SIZE; | |
conf->range_header_buffer_size = NGX_CONF_UNSET_SIZE; | |
conf->max_header_len = NGX_CONF_UNSET_SIZE; | |
conf->max_output_body_len = NGX_CONF_UNSET_SIZE; | |
conf->max_file_size = NGX_CONF_UNSET; | |
conf->limit_rate = NGX_CONF_UNSET_SIZE; | |
/* | |
* conf->header_templates, | |
* conf->field_templates, | |
* conf->aggregate_field_templates, | |
* and conf->field_filters are | |
* zeroed by ngx_pcalloc | |
*/ | |
return conf; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_merge_loc_conf */ | |
ngx_http_upload_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) | |
{ | |
ngx_http_upload_loc_conf_t *prev = parent; | |
ngx_http_upload_loc_conf_t *conf = child; | |
if ((conf->url.len == 0) && (conf->url_cv == NULL)) { | |
conf->url = prev->url; | |
conf->url_cv = prev->url_cv; | |
} | |
if(conf->url.len != 0) { | |
ngx_http_upload_merge_path_value(cf, | |
&conf->store_path, | |
prev->store_path, | |
&ngx_http_upload_temp_path); | |
ngx_http_upload_merge_path_value(cf, | |
&conf->state_store_path, | |
prev->state_store_path, | |
&ngx_http_upload_temp_path); | |
} | |
ngx_conf_merge_uint_value(conf->store_access, | |
prev->store_access, 0600); | |
ngx_conf_merge_size_value(conf->buffer_size, | |
prev->buffer_size, | |
(size_t) ngx_pagesize); | |
ngx_conf_merge_size_value(conf->merge_buffer_size, | |
prev->merge_buffer_size, | |
(size_t) ngx_pagesize >> 1); | |
ngx_conf_merge_size_value(conf->range_header_buffer_size, | |
prev->range_header_buffer_size, | |
(size_t) 256); | |
ngx_conf_merge_size_value(conf->max_header_len, | |
prev->max_header_len, | |
(size_t) 512); | |
ngx_conf_merge_size_value(conf->max_output_body_len, | |
prev->max_output_body_len, | |
(size_t) 100 * 1024); | |
ngx_conf_merge_off_value(conf->max_file_size, | |
prev->max_file_size, | |
0); | |
ngx_conf_merge_size_value(conf->limit_rate, prev->limit_rate, 0); | |
if(conf->forward_args == NGX_CONF_UNSET) { | |
conf->forward_args = (prev->forward_args != NGX_CONF_UNSET) ? | |
prev->forward_args : 0; | |
} | |
if(conf->tame_arrays == NGX_CONF_UNSET) { | |
conf->tame_arrays = (prev->tame_arrays != NGX_CONF_UNSET) ? | |
prev->tame_arrays : 0; | |
} | |
if(conf->resumable_uploads == NGX_CONF_UNSET) { | |
conf->resumable_uploads = (prev->resumable_uploads != NGX_CONF_UNSET) ? | |
prev->resumable_uploads : 0; | |
} | |
if(conf->empty_field_names == NGX_CONF_UNSET) { | |
conf->empty_field_names = (prev->empty_field_names != NGX_CONF_UNSET) ? | |
prev->empty_field_names : 0; | |
} | |
if(conf->field_templates == NULL) { | |
conf->field_templates = prev->field_templates; | |
} | |
if(conf->aggregate_field_templates == NULL) { | |
conf->aggregate_field_templates = prev->aggregate_field_templates; | |
if(prev->md5) { | |
conf->md5 = prev->md5; | |
} | |
if(prev->sha1) { | |
conf->sha1 = prev->sha1; | |
} | |
if(prev->sha256) { | |
conf->sha256 = prev->sha256; | |
} | |
if(prev->sha512) { | |
conf->sha512 = prev->sha512; | |
} | |
if(prev->crc32) { | |
conf->crc32 = prev->crc32; | |
} | |
} | |
if(conf->field_filters == NULL) { | |
conf->field_filters = prev->field_filters; | |
} | |
if(conf->cleanup_statuses == NULL) { | |
conf->cleanup_statuses = prev->cleanup_statuses; | |
} | |
if(conf->header_templates == NULL) { | |
conf->header_templates = prev->header_templates; | |
} | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_add_variables */ | |
ngx_http_upload_add_variables(ngx_conf_t *cf) | |
{ | |
ngx_http_variable_t *var, *v; | |
for (v = ngx_http_upload_variables; v->name.len; v++) { | |
var = ngx_http_add_variable(cf, &v->name, v->flags); | |
if (var == NULL) { | |
return NGX_ERROR; | |
} | |
var->get_handler = v->get_handler; | |
var->data = v->data; | |
} | |
for (v = ngx_http_upload_aggregate_variables; v->name.len; v++) { | |
var = ngx_http_add_variable(cf, &v->name, v->flags); | |
if (var == NULL) { | |
return NGX_ERROR; | |
} | |
var->get_handler = v->get_handler; | |
var->data = v->data; | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static void /* {{{ ngx_http_upload_variable_set */ | |
ngx_http_upload_variable_set(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_str_t *s; | |
ngx_http_upload_ctx_t *u; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
s = (ngx_str_t *) ((char *) u + data); | |
s->len = v->len; | |
s->data = v->data; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_variable */ | |
ngx_http_upload_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_http_upload_ctx_t *u; | |
ngx_str_t *value; | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
value = (ngx_str_t *) ((char *) u + data); | |
v->data = value->data; | |
v->len = value->len; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_md5_variable */ | |
ngx_http_upload_md5_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_uint_t i; | |
ngx_http_upload_ctx_t *u; | |
u_char *c; | |
u_char *hex_table; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if(u->md5_ctx == NULL || u->partial_content) { | |
v->not_found = 1; | |
return NGX_OK; | |
} | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
hex_table = (u_char*)data; | |
c = u->md5_ctx->md5_digest + MD5_DIGEST_LENGTH * 2; | |
i = MD5_DIGEST_LENGTH; | |
do{ | |
i--; | |
*--c = hex_table[u->md5_ctx->md5_digest[i] & 0xf]; | |
*--c = hex_table[u->md5_ctx->md5_digest[i] >> 4]; | |
}while(i != 0); | |
v->data = u->md5_ctx->md5_digest; | |
v->len = MD5_DIGEST_LENGTH * 2; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_sha1_variable */ | |
ngx_http_upload_sha1_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_uint_t i; | |
ngx_http_upload_ctx_t *u; | |
u_char *c; | |
u_char *hex_table; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if(u->sha1_ctx == NULL || u->partial_content) { | |
v->not_found = 1; | |
return NGX_OK; | |
} | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
hex_table = (u_char*)data; | |
c = u->sha1_ctx->sha1_digest + SHA_DIGEST_LENGTH * 2; | |
i = SHA_DIGEST_LENGTH; | |
do{ | |
i--; | |
*--c = hex_table[u->sha1_ctx->sha1_digest[i] & 0xf]; | |
*--c = hex_table[u->sha1_ctx->sha1_digest[i] >> 4]; | |
}while(i != 0); | |
v->data = u->sha1_ctx->sha1_digest; | |
v->len = SHA_DIGEST_LENGTH * 2; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_sha256_variable */ | |
ngx_http_upload_sha256_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_uint_t i; | |
ngx_http_upload_ctx_t *u; | |
u_char *c; | |
u_char *hex_table; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if(u->sha256_ctx == NULL || u->partial_content) { | |
v->not_found = 1; | |
return NGX_OK; | |
} | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
hex_table = (u_char*)data; | |
c = u->sha256_ctx->sha256_digest + SHA256_DIGEST_LENGTH * 2; | |
i = SHA256_DIGEST_LENGTH; | |
do{ | |
i--; | |
*--c = hex_table[u->sha256_ctx->sha256_digest[i] & 0xf]; | |
*--c = hex_table[u->sha256_ctx->sha256_digest[i] >> 4]; | |
}while(i != 0); | |
v->data = u->sha256_ctx->sha256_digest; | |
v->len = SHA256_DIGEST_LENGTH * 2; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_sha512_variable */ | |
ngx_http_upload_sha512_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_uint_t i; | |
ngx_http_upload_ctx_t *u; | |
u_char *c; | |
u_char *hex_table; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if(u->sha512_ctx == NULL || u->partial_content) { | |
v->not_found = 1; | |
return NGX_OK; | |
} | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
hex_table = (u_char*)data; | |
c = u->sha512_ctx->sha512_digest + SHA512_DIGEST_LENGTH * 2; | |
i = SHA512_DIGEST_LENGTH; | |
do{ | |
i--; | |
*--c = hex_table[u->sha512_ctx->sha512_digest[i] & 0xf]; | |
*--c = hex_table[u->sha512_ctx->sha512_digest[i] >> 4]; | |
}while(i != 0); | |
v->data = u->sha512_ctx->sha512_digest; | |
v->len = SHA512_DIGEST_LENGTH * 2; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_crc32_variable */ | |
ngx_http_upload_crc32_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_http_upload_ctx_t *u; | |
u_char *p; | |
uint32_t *value; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
if(u->partial_content) { | |
v->not_found = 1; | |
return NGX_OK; | |
} | |
value = (uint32_t *) ((char *) u + data); | |
p = ngx_palloc(r->pool, NGX_INT_T_LEN); | |
if (p == NULL) { | |
return NGX_ERROR; | |
} | |
v->len = ngx_sprintf(p, "%08uxd", *value) - p; | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
v->data = p; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_file_size_variable */ | |
ngx_http_upload_file_size_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_http_upload_ctx_t *u; | |
u_char *p; | |
off_t *value; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
value = (off_t *) ((char *) u + data); | |
p = ngx_palloc(r->pool, NGX_OFF_T_LEN); | |
if (p == NULL) { | |
return NGX_ERROR; | |
} | |
v->len = ngx_sprintf(p, "%O", *value) - p; | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
v->data = p; | |
return NGX_OK; | |
} /* }}} */ | |
static void /* {{{ ngx_http_upload_content_range_variable_set */ | |
ngx_http_upload_content_range_variable_set(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_http_upload_ctx_t *u; | |
ngx_str_t val; | |
ngx_http_upload_range_t *value; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
value = (ngx_http_upload_range_t *) ((char *) u + data); | |
val.len = v->len; | |
val.data = v->data; | |
if(ngx_http_upload_parse_range(&val, value) != NGX_OK) { | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, | |
"invalid range \"%V\"", &val); | |
} | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_content_range_variable */ | |
ngx_http_upload_content_range_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_http_upload_ctx_t *u; | |
u_char *p; | |
ngx_http_upload_range_t *value; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
value = (ngx_http_upload_range_t *) ((char *) u + data); | |
p = ngx_palloc(r->pool, sizeof("bytes ") - 1 + 3*NGX_OFF_T_LEN + 2); | |
if (p == NULL) { | |
return NGX_ERROR; | |
} | |
v->len = u->partial_content ? | |
ngx_sprintf(p, "bytes %O-%O/%O", value->start, value->end, value->total) - p : | |
ngx_sprintf(p, "bytes %O-%O/%O", (off_t)0, u->output_file.offset, u->output_file.offset) - p | |
; | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
v->data = p; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_uint_variable */ | |
ngx_http_upload_uint_variable(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data) | |
{ | |
ngx_http_upload_ctx_t *u; | |
u_char *p; | |
ngx_uint_t *value; | |
u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
value = (ngx_uint_t *) ((char *) u + data); | |
p = ngx_palloc(r->pool, sizeof("18446744073709551616") - 1); | |
if (p == NULL) { | |
return NGX_ERROR; | |
} | |
v->len = ngx_sprintf(p, "%ui", *value) - p; | |
v->valid = 1; | |
v->no_cacheable = 0; | |
v->not_found = 0; | |
v->data = p; | |
return NGX_OK; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_set_form_field */ | |
ngx_http_upload_set_form_field(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) | |
{ | |
ngx_int_t n, i; | |
ngx_str_t *value; | |
ngx_http_script_compile_t sc; | |
ngx_http_upload_field_template_t *h; | |
ngx_array_t **field; | |
ngx_http_variable_t *v; | |
u_char *match; | |
ngx_http_upload_loc_conf_t *ulcf = conf; | |
field = (ngx_array_t**) (((u_char*)conf) + cmd->offset); | |
value = cf->args->elts; | |
if (*field == NULL) { | |
*field = ngx_array_create(cf->pool, 1, | |
sizeof(ngx_http_upload_field_template_t)); | |
if (*field == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
} | |
h = ngx_array_push(*field); | |
if (h == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
h->value.hash = 1; | |
h->value.key = value[1]; | |
h->value.value = value[2]; | |
h->field_lengths = NULL; | |
h->field_values = NULL; | |
h->value_lengths = NULL; | |
h->value_values = NULL; | |
/* | |
* Compile field name | |
*/ | |
n = ngx_http_script_variables_count(&value[1]); | |
if (n > 0) { | |
ngx_memzero(&sc, sizeof(ngx_http_script_compile_t)); | |
sc.cf = cf; | |
sc.source = &value[1]; | |
sc.lengths = &h->field_lengths; | |
sc.values = &h->field_values; | |
sc.variables = n; | |
sc.complete_lengths = 1; | |
sc.complete_values = 1; | |
if (ngx_http_script_compile(&sc) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
} | |
/* | |
* Compile field value | |
*/ | |
n = ngx_http_script_variables_count(&value[2]); | |
if (n > 0) { | |
ngx_memzero(&sc, sizeof(ngx_http_script_compile_t)); | |
sc.cf = cf; | |
sc.source = &value[2]; | |
sc.lengths = &h->value_lengths; | |
sc.values = &h->value_values; | |
sc.variables = n; | |
sc.complete_lengths = 1; | |
sc.complete_values = 1; | |
if (ngx_http_script_compile(&sc) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
} | |
/* | |
* Check for aggregate variables in script | |
*/ | |
for(i = 1;i <= 2;i++) { | |
for (v = ngx_http_upload_aggregate_variables; v->name.len; v++) { | |
match = ngx_strcasestrn(value[i].data, (char*)v->name.data, v->name.len - 1); | |
/* | |
* ngx_http_script_compile does check for final bracket earlier, | |
* therefore we don't need to care about it, which simplifies things | |
*/ | |
if(match != NULL | |
&& ((match - value[i].data >= 1 && match[-1] == '$') | |
|| (match - value[i].data >= 2 && match[-2] == '$' && match[-1] == '{'))) | |
{ | |
if(cmd->offset != offsetof(ngx_http_upload_loc_conf_t, aggregate_field_templates)) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
"variables upload_file_md5" | |
", upload_file_md5_uc" | |
", upload_file_sha1" | |
", upload_file_sha1_uc" | |
", upload_file_sha256" | |
", upload_file_sha256_uc" | |
", upload_file_sha512" | |
", upload_file_sha512_uc" | |
", upload_file_crc32" | |
", upload_content_range" | |
" and upload_file_size" | |
" could be specified only in upload_aggregate_form_field directive"); | |
return NGX_CONF_ERROR; | |
} | |
if(v->get_handler == ngx_http_upload_md5_variable) | |
ulcf->md5 = 1; | |
if(v->get_handler == ngx_http_upload_sha1_variable) | |
ulcf->sha1 = 1; | |
if(v->get_handler == ngx_http_upload_sha256_variable) | |
ulcf->sha256 = 1; | |
if(v->get_handler == ngx_http_upload_sha512_variable) | |
ulcf->sha512 = 1; | |
if(v->get_handler == ngx_http_upload_crc32_variable) | |
ulcf->crc32 = 1; | |
} | |
} | |
} | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_pass_form_field */ | |
ngx_http_upload_pass_form_field(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) | |
{ | |
ngx_http_upload_loc_conf_t *ulcf = conf; | |
ngx_str_t *value; | |
#if (NGX_PCRE) | |
#if defined nginx_version && nginx_version >= 8025 | |
ngx_regex_compile_t rc; | |
u_char errstr[NGX_MAX_CONF_ERRSTR]; | |
#else | |
ngx_int_t n; | |
ngx_str_t err; | |
#endif | |
#endif | |
ngx_http_upload_field_filter_t *f; | |
value = cf->args->elts; | |
if (ulcf->field_filters == NULL) { | |
ulcf->field_filters = ngx_array_create(cf->pool, 1, | |
sizeof(ngx_http_upload_field_filter_t)); | |
if (ulcf->field_filters == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
} | |
f = ngx_array_push(ulcf->field_filters); | |
if (f == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
#if (NGX_PCRE) | |
#if defined nginx_version && nginx_version >= 8025 | |
ngx_memzero(&rc, sizeof(ngx_regex_compile_t)); | |
rc.pattern = value[1]; | |
rc.pool = cf->pool; | |
rc.err.len = NGX_MAX_CONF_ERRSTR; | |
rc.err.data = errstr; | |
if(ngx_regex_compile(&rc) != NGX_OK) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "%V", &rc.err); | |
return NGX_CONF_ERROR; | |
} | |
f->regex = rc.regex; | |
f->ncaptures = rc.captures; | |
#else | |
f->regex = ngx_regex_compile(&value[1], 0, cf->pool, &err); | |
if (f->regex == NULL) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "%s", err.data); | |
return NGX_CONF_ERROR; | |
} | |
n = ngx_regex_capture_count(f->regex); | |
if (n < 0) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
ngx_regex_capture_count_n " failed for " | |
"pattern \"%V\"", &value[1]); | |
return NGX_CONF_ERROR; | |
} | |
f->ncaptures = n; | |
#endif | |
#else | |
f->text.len = value[1].len; | |
f->text.data = value[1].data; | |
#endif | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_add_header */ | |
ngx_http_upload_add_header(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) | |
{ | |
ngx_str_t *value; | |
ngx_http_upload_header_template_t *h; | |
ngx_array_t **field; | |
ngx_http_compile_complex_value_t ccv; | |
field = (ngx_array_t**) (((u_char*)conf) + cmd->offset); | |
value = cf->args->elts; | |
/* | |
* Add new entry to header template list | |
*/ | |
if (*field == NULL) { | |
*field = ngx_array_create(cf->pool, 1, | |
sizeof(ngx_http_upload_header_template_t)); | |
if (*field == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
} | |
h = ngx_array_push(*field); | |
if (h == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
/* | |
* Compile header name | |
*/ | |
h->name = ngx_palloc(cf->pool, sizeof(ngx_http_complex_value_t)); | |
if(h->name == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
ngx_memzero(&ccv, sizeof(ngx_http_compile_complex_value_t)); | |
ccv.cf = cf; | |
ccv.value = &value[1]; | |
ccv.complex_value = h->name; | |
if (ngx_http_compile_complex_value(&ccv) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
/* | |
* Compile header value | |
*/ | |
h->value = ngx_palloc(cf->pool, sizeof(ngx_http_complex_value_t)); | |
if(h->value == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
ngx_memzero(&ccv, sizeof(ngx_http_compile_complex_value_t)); | |
ccv.cf = cf; | |
ccv.value = &value[2]; | |
ccv.complex_value = h->value; | |
if (ngx_http_compile_complex_value(&ccv) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_cleanup */ | |
ngx_http_upload_cleanup(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) | |
{ | |
ngx_http_upload_loc_conf_t *ulcf = conf; | |
ngx_str_t *value; | |
ngx_uint_t i; | |
ngx_int_t status, lo, hi; | |
uint16_t *s; | |
value = cf->args->elts; | |
if (ulcf->cleanup_statuses == NULL) { | |
ulcf->cleanup_statuses = ngx_array_create(cf->pool, 1, | |
sizeof(uint16_t)); | |
if (ulcf->cleanup_statuses == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
} | |
for (i = 1; i < cf->args->nelts; i++) { | |
if(value[i].len > 4 && value[i].data[3] == '-') { | |
lo = ngx_atoi(value[i].data, 3); | |
if (lo == NGX_ERROR) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
"invalid lower bound \"%V\"", &value[i]); | |
return NGX_CONF_ERROR; | |
} | |
hi = ngx_atoi(value[i].data + 4, value[i].len - 4); | |
if (hi == NGX_ERROR) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
"invalid upper bound \"%V\"", &value[i]); | |
return NGX_CONF_ERROR; | |
} | |
if (hi < lo) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
"upper bound must be greater then lower bound in \"%V\"", | |
&value[i]); | |
return NGX_CONF_ERROR; | |
} | |
}else{ | |
status = ngx_atoi(value[i].data, value[i].len); | |
if (status == NGX_ERROR) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
"invalid value \"%V\"", &value[i]); | |
return NGX_CONF_ERROR; | |
} | |
hi = lo = status; | |
} | |
if (lo < 200 || hi > 599) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
"value(s) \"%V\" must be between 200 and 599", | |
&value[i]); | |
return NGX_CONF_ERROR; | |
} | |
for(status = lo ; status <= hi; status++) { | |
s = ngx_array_push(ulcf->cleanup_statuses); | |
if (s == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
*s = status; | |
} | |
} | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_pass */ | |
ngx_http_upload_pass(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) | |
{ | |
ngx_http_core_loc_conf_t *clcf; | |
ngx_http_upload_loc_conf_t *ulcf = conf; | |
ngx_str_t *value; | |
ngx_http_compile_complex_value_t ccv; | |
if ((ulcf->url.len != 0) || (ulcf->url_cv != NULL)) { | |
return "is duplicate"; | |
} | |
value = cf->args->elts; | |
if (value[1].len == 0) { | |
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
"empty value in \"%V\" directive", | |
&cmd->name); | |
return NGX_CONF_ERROR; | |
} | |
clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module); | |
clcf->handler = ngx_http_upload_handler; | |
if (ngx_http_script_variables_count(&value[1])) { | |
/* complex value */ | |
ulcf->url_cv = ngx_palloc(cf->pool, sizeof(ngx_http_complex_value_t)); | |
if (ulcf->url_cv == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
ngx_memzero(&ccv, sizeof(ngx_http_compile_complex_value_t)); | |
ccv.cf = cf; | |
ccv.value = &value[1]; | |
ccv.complex_value = ulcf->url_cv; | |
if (ngx_http_compile_complex_value(&ccv) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
} else { | |
/* simple value */ | |
ulcf->url = value[1]; | |
} | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_set_path_slot */ | |
ngx_http_upload_set_path_slot(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) | |
{ | |
char *p = conf; | |
ssize_t level; | |
ngx_str_t *value; | |
ngx_uint_t i, n; | |
ngx_http_upload_path_t *path, **slot; | |
ngx_http_compile_complex_value_t ccv; | |
slot = (ngx_http_upload_path_t **) (p + cmd->offset); | |
if (*slot) { | |
return "is duplicate"; | |
} | |
path = ngx_pcalloc(cf->pool, sizeof(ngx_http_upload_path_t)); | |
if (path == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
path->path = ngx_pcalloc(cf->pool, sizeof(ngx_path_t)); | |
if (path->path == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
value = cf->args->elts; | |
path->path->name = value[1]; | |
if (path->path->name.data[path->path->name.len - 1] == '/') { | |
path->path->name.len--; | |
} | |
if (ngx_conf_full_name(cf->cycle, &path->path->name, 0) != NGX_OK) { | |
return NULL; | |
} | |
path->path->len = 0; | |
path->path->manager = NULL; | |
path->path->loader = NULL; | |
path->path->conf_file = cf->conf_file->file.name.data; | |
path->path->line = cf->conf_file->line; | |
for (i = 0, n = 2; n < cf->args->nelts; i++, n++) { | |
level = ngx_atoi(value[n].data, value[n].len); | |
if (level == NGX_ERROR || level == 0) { | |
return "invalid value"; | |
} | |
path->path->level[i] = level; | |
path->path->len += level + 1; | |
} | |
while (i < 3) { | |
path->path->level[i++] = 0; | |
} | |
*slot = path; | |
if(ngx_http_script_variables_count(&value[1])) { | |
ngx_memzero(&ccv, sizeof(ngx_http_compile_complex_value_t)); | |
ccv.cf = cf; | |
ccv.value = &value[1]; | |
ccv.complex_value = &path->dynamic; | |
if (ngx_http_compile_complex_value(&ccv) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
path->is_dynamic = 1; | |
} | |
else { | |
if (ngx_add_path(cf, &path->path) == NGX_ERROR) { | |
return NGX_CONF_ERROR; | |
} | |
} | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static char * /* {{{ ngx_http_upload_merge_path_value */ | |
ngx_http_upload_merge_path_value(ngx_conf_t *cf, ngx_http_upload_path_t **path, ngx_http_upload_path_t *prev, | |
ngx_path_init_t *init) | |
{ | |
if (*path) { | |
return NGX_CONF_OK; | |
} | |
if (prev) { | |
*path = prev; | |
return NGX_CONF_OK; | |
} | |
*path = ngx_palloc(cf->pool, sizeof(ngx_http_upload_path_t)); | |
if(*path == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
(*path)->path = ngx_pcalloc(cf->pool, sizeof(ngx_path_t)); | |
if((*path)->path == NULL) { | |
return NGX_CONF_ERROR; | |
} | |
(*path)->path->name = init->name; | |
if(ngx_conf_full_name(cf->cycle, &(*path)->path->name, 0) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
(*path)->path->level[0] = init->level[0]; | |
(*path)->path->level[1] = init->level[1]; | |
(*path)->path->level[2] = init->level[2]; | |
(*path)->path->len = init->level[0] + (init->level[0] ? 1 : 0) | |
+ init->level[1] + (init->level[1] ? 1 : 0) | |
+ init->level[2] + (init->level[2] ? 1 : 0); | |
(*path)->path->manager = NULL; | |
(*path)->path->loader = NULL; | |
(*path)->path->conf_file = NULL; | |
if(ngx_add_path(cf, &(*path)->path) != NGX_OK) { | |
return NGX_CONF_ERROR; | |
} | |
return NGX_CONF_OK; | |
} /* }}} */ | |
static ngx_int_t | |
ngx_http_write_request_body(ngx_http_request_t *r) | |
{ | |
ssize_t n; | |
ngx_chain_t *cl; | |
ngx_temp_file_t *tf; | |
ngx_http_request_body_t *rb; | |
ngx_http_core_loc_conf_t *clcf; | |
rb = r->request_body; | |
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, | |
"http write client request body, bufs %p", rb->bufs); | |
if (rb->temp_file == NULL) { | |
tf = ngx_pcalloc(r->pool, sizeof(ngx_temp_file_t)); | |
if (tf == NULL) { | |
return NGX_ERROR; | |
} | |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); | |
tf->file.fd = NGX_INVALID_FILE; | |
tf->file.log = r->connection->log; | |
tf->path = clcf->client_body_temp_path; | |
tf->pool = r->pool; | |
tf->warn = "a client request body is buffered to a temporary file"; | |
tf->log_level = r->request_body_file_log_level; | |
tf->persistent = r->request_body_in_persistent_file; | |
tf->clean = r->request_body_in_clean_file; | |
if (r->request_body_file_group_access) { | |
tf->access = 0660; | |
} | |
rb->temp_file = tf; | |
if (rb->bufs == NULL) { | |
/* empty body with r->request_body_in_file_only */ | |
if (ngx_create_temp_file(&tf->file, tf->path, tf->pool, | |
tf->persistent, tf->clean, tf->access) | |
!= NGX_OK) | |
{ | |
return NGX_ERROR; | |
} | |
return NGX_OK; | |
} | |
} | |
if (rb->bufs == NULL) { | |
return NGX_OK; | |
} | |
n = ngx_write_chain_to_temp_file(rb->temp_file, rb->bufs); | |
/* TODO: n == 0 or not complete and level event */ | |
if (n == NGX_ERROR) { | |
return NGX_ERROR; | |
} | |
rb->temp_file->offset += n; | |
/* mark all buffers as written */ | |
for (cl = rb->bufs; cl; cl = cl->next) { | |
cl->buf->pos = cl->buf->last; | |
} | |
rb->bufs = NULL; | |
return NGX_OK; | |
} | |
static ngx_int_t | |
ngx_http_request_body_filter(ngx_http_request_t *r, ngx_chain_t *in) | |
{ | |
if (r->headers_in.chunked) { | |
return ngx_http_request_body_chunked_filter(r, in); | |
} else { | |
return ngx_http_request_body_length_filter(r, in); | |
} | |
} | |
static ngx_int_t | |
ngx_http_request_body_save_filter(ngx_http_request_t *r, ngx_chain_t *in) | |
{ | |
#if (NGX_DEBUG) | |
ngx_chain_t *cl; | |
#endif | |
ngx_http_request_body_t *rb; | |
rb = r->request_body; | |
#if (NGX_DEBUG) | |
for (cl = rb->bufs; cl; cl = cl->next) { | |
ngx_log_debug7(NGX_LOG_DEBUG_EVENT, r->connection->log, 0, | |
"http body old buf t:%d f:%d %p, pos %p, size: %z " | |
"file: %O, size: %z", | |
cl->buf->temporary, cl->buf->in_file, | |
cl->buf->start, cl->buf->pos, | |
cl->buf->last - cl->buf->pos, | |
cl->buf->file_pos, | |
cl->buf->file_last - cl->buf->file_pos); | |
} | |
for (cl = in; cl; cl = cl->next) { | |
ngx_log_debug7(NGX_LOG_DEBUG_EVENT, r->connection->log, 0, | |
"http body new buf t:%d f:%d %p, pos %p, size: %z " | |
"file: %O, size: %z", | |
cl->buf->temporary, cl->buf->in_file, | |
cl->buf->start, cl->buf->pos, | |
cl->buf->last - cl->buf->pos, | |
cl->buf->file_pos, | |
cl->buf->file_last - cl->buf->file_pos); | |
} | |
#endif | |
/* TODO: coalesce neighbouring buffers */ | |
if (ngx_chain_add_copy(r->pool, &rb->bufs, in) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
return NGX_OK; | |
} | |
static ngx_int_t | |
ngx_http_request_body_length_filter(ngx_http_request_t *r, ngx_chain_t *in) | |
{ | |
size_t size; | |
ngx_int_t rc; | |
ngx_buf_t *b; | |
ngx_chain_t *cl, *tl, *out, **ll; | |
ngx_http_request_body_t *rb; | |
rb = r->request_body; | |
if (rb->rest == -1) { | |
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, | |
"http request body content length filter"); | |
rb->rest = r->headers_in.content_length_n; | |
} | |
out = NULL; | |
ll = &out; | |
for (cl = in; cl; cl = cl->next) { | |
tl = ngx_chain_get_free_buf(r->pool, &rb->free); | |
if (tl == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
b = tl->buf; | |
ngx_memzero(b, sizeof(ngx_buf_t)); | |
b->temporary = 1; | |
b->tag = (ngx_buf_tag_t) &ngx_http_read_client_request_body; | |
b->start = cl->buf->start; | |
b->pos = cl->buf->pos; | |
b->last = cl->buf->last; | |
b->end = cl->buf->end; | |
size = cl->buf->last - cl->buf->pos; | |
if ((off_t) size < rb->rest) { | |
cl->buf->pos = cl->buf->last; | |
rb->rest -= size; | |
} else { | |
cl->buf->pos += rb->rest; | |
rb->rest = 0; | |
b->last = cl->buf->pos; | |
b->last_buf = 1; | |
} | |
*ll = tl; | |
ll = &tl->next; | |
} | |
rc = ngx_http_request_body_save_filter(r, out); | |
ngx_chain_update_chains(r->pool, &rb->free, &rb->busy, &out, | |
(ngx_buf_tag_t) &ngx_http_read_client_request_body); | |
return rc; | |
} | |
static ngx_int_t | |
ngx_http_request_body_chunked_filter(ngx_http_request_t *r, ngx_chain_t *in) | |
{ | |
size_t size; | |
ngx_int_t rc; | |
ngx_buf_t *b; | |
ngx_chain_t *cl, *out, *tl, **ll; | |
ngx_http_request_body_t *rb; | |
ngx_http_core_loc_conf_t *clcf; | |
rb = r->request_body; | |
if (rb->rest == -1) { | |
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, | |
"http request body chunked filter"); | |
rb->chunked = ngx_pcalloc(r->pool, sizeof(ngx_http_chunked_t)); | |
if (rb->chunked == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
r->headers_in.content_length_n = 0; | |
rb->rest = 3; | |
} | |
out = NULL; | |
ll = &out; | |
for (cl = in; cl; cl = cl->next) { | |
for ( ;; ) { | |
ngx_log_debug7(NGX_LOG_DEBUG_EVENT, r->connection->log, 0, | |
"http body chunked buf " | |
"t:%d f:%d %p, pos %p, size: %z file: %O, size: %z", | |
cl->buf->temporary, cl->buf->in_file, | |
cl->buf->start, cl->buf->pos, | |
cl->buf->last - cl->buf->pos, | |
cl->buf->file_pos, | |
cl->buf->file_last - cl->buf->file_pos); | |
rc = ngx_http_parse_chunked(r, cl->buf, rb->chunked); | |
if (rc == NGX_OK) { | |
/* a chunk has been parsed successfully */ | |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); | |
if (clcf->client_max_body_size | |
&& clcf->client_max_body_size | |
< r->headers_in.content_length_n + rb->chunked->size) | |
{ | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, | |
"client intended to send too large chunked " | |
"body: %O bytes", | |
r->headers_in.content_length_n | |
+ rb->chunked->size); | |
r->lingering_close = 1; | |
return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE; | |
} | |
tl = ngx_chain_get_free_buf(r->pool, &rb->free); | |
if (tl == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
b = tl->buf; | |
ngx_memzero(b, sizeof(ngx_buf_t)); | |
b->temporary = 1; | |
b->tag = (ngx_buf_tag_t) &ngx_http_read_client_request_body; | |
b->start = cl->buf->start; | |
b->pos = cl->buf->pos; | |
b->last = cl->buf->last; | |
b->end = cl->buf->end; | |
*ll = tl; | |
ll = &tl->next; | |
size = cl->buf->last - cl->buf->pos; | |
if ((off_t) size > rb->chunked->size) { | |
cl->buf->pos += rb->chunked->size; | |
r->headers_in.content_length_n += rb->chunked->size; | |
rb->chunked->size = 0; | |
} else { | |
rb->chunked->size -= size; | |
r->headers_in.content_length_n += size; | |
cl->buf->pos = cl->buf->last; | |
} | |
b->last = cl->buf->pos; | |
continue; | |
} | |
if (rc == NGX_DONE) { | |
/* a whole response has been parsed successfully */ | |
rb->rest = 0; | |
tl = ngx_chain_get_free_buf(r->pool, &rb->free); | |
if (tl == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
b = tl->buf; | |
ngx_memzero(b, sizeof(ngx_buf_t)); | |
b->last_buf = 1; | |
*ll = tl; | |
ll = &tl->next; | |
break; | |
} | |
if (rc == NGX_AGAIN) { | |
/* set rb->rest, amount of data we want to see next time */ | |
rb->rest = rb->chunked->length; | |
break; | |
} | |
/* invalid */ | |
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, | |
"client sent invalid chunked body"); | |
return NGX_HTTP_BAD_REQUEST; | |
} | |
} | |
rc = ngx_http_request_body_save_filter(r, out); | |
ngx_chain_update_chains(r->pool, &rb->free, &rb->busy, &out, | |
(ngx_buf_tag_t) &ngx_http_read_client_request_body); | |
return rc; | |
} | |
static ngx_int_t | |
ngx_http_do_read_client_request_body(ngx_http_request_t *r) | |
{ | |
off_t rest; | |
size_t size; | |
ssize_t n; | |
ngx_int_t rc; | |
ngx_buf_t *b; | |
ngx_chain_t *cl, out; | |
ngx_connection_t *c; | |
ngx_http_request_body_t *rb; | |
ngx_http_core_loc_conf_t *clcf; | |
c = r->connection; | |
rb = r->request_body; | |
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, | |
"http read client request body"); | |
for ( ;; ) { | |
for ( ;; ) { | |
if (rb->buf->last == rb->buf->end) { | |
/* pass buffer to request body filter chain */ | |
out.buf = rb->buf; | |
out.next = NULL; | |
rc = ngx_http_request_body_filter(r, &out); | |
if (rc != NGX_OK) { | |
return rc; | |
} | |
/* write to file */ | |
if (ngx_http_write_request_body(r) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
/* update chains */ | |
rc = ngx_http_request_body_filter(r, NULL); | |
if (rc != NGX_OK) { | |
return rc; | |
} | |
if (rb->busy != NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
rb->buf->pos = rb->buf->start; | |
rb->buf->last = rb->buf->start; | |
} | |
size = rb->buf->end - rb->buf->last; | |
rest = rb->rest - (rb->buf->last - rb->buf->pos); | |
if ((off_t) size > rest) { | |
size = (size_t) rest; | |
} | |
n = c->recv(c, rb->buf->last, size); | |
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, | |
"http client request body recv %z", n); | |
if (n == NGX_AGAIN) { | |
break; | |
} | |
if (n == 0) { | |
ngx_log_error(NGX_LOG_INFO, c->log, 0, | |
"client prematurely closed connection"); | |
} | |
if (n == 0 || n == NGX_ERROR) { | |
c->error = 1; | |
return NGX_HTTP_BAD_REQUEST; | |
} | |
rb->buf->last += n; | |
r->request_length += n; | |
if (n == rest) { | |
/* pass buffer to request body filter chain */ | |
out.buf = rb->buf; | |
out.next = NULL; | |
rc = ngx_http_request_body_filter(r, &out); | |
if (rc != NGX_OK) { | |
return rc; | |
} | |
} | |
if (rb->rest == 0) { | |
break; | |
} | |
if (rb->buf->last < rb->buf->end) { | |
break; | |
} | |
} | |
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, | |
"http client request body rest %O", rb->rest); | |
if (rb->rest == 0) { | |
break; | |
} | |
if (!c->read->ready) { | |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); | |
ngx_add_timer(c->read, clcf->client_body_timeout); | |
if (ngx_handle_read_event(c->read, 0) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
return NGX_AGAIN; | |
} | |
} | |
if (c->read->timer_set) { | |
ngx_del_timer(c->read); | |
} | |
if (rb->temp_file || r->request_body_in_file_only) { | |
/* save the last part */ | |
if (ngx_http_write_request_body(r) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
cl = ngx_chain_get_free_buf(r->pool, &rb->free); | |
if (cl == NULL) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
b = cl->buf; | |
ngx_memzero(b, sizeof(ngx_buf_t)); | |
b->in_file = 1; | |
b->file_last = rb->temp_file->file.offset; | |
b->file = &rb->temp_file->file; | |
rb->bufs = cl; | |
} | |
r->read_event_handler = ngx_http_block_reading; | |
rb->post_handler(r); | |
return NGX_OK; | |
} | |
static void | |
ngx_http_read_client_request_body_handler(ngx_http_request_t *r) | |
{ | |
ngx_int_t rc; | |
if (r->connection->read->timedout) { | |
r->connection->timedout = 1; | |
ngx_http_finalize_request(r, NGX_HTTP_REQUEST_TIME_OUT); | |
return; | |
} | |
rc = ngx_http_do_read_client_request_body(r); | |
if (rc >= NGX_HTTP_SPECIAL_RESPONSE) { | |
ngx_http_finalize_request(r, rc); | |
} | |
} | |
ngx_int_t /* {{{ ngx_http_read_upload_client_request_body */ | |
ngx_http_read_upload_client_request_body(ngx_http_request_t *r) { | |
ssize_t size, preread; | |
ngx_buf_t *b; | |
ngx_chain_t *cl, **next; | |
ngx_http_request_body_t *rb; | |
ngx_http_core_loc_conf_t *clcf; | |
ngx_http_upload_ctx_t *u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
#if defined nginx_version && nginx_version >= 8011 | |
r->main->count++; | |
#endif | |
if (r->request_body || r->discard_body) { | |
return NGX_OK; | |
} | |
rb = ngx_pcalloc(r->pool, sizeof(ngx_http_request_body_t)); | |
if (rb == NULL) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
r->request_body = rb; | |
if (r->headers_in.content_length_n <= 0) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_BAD_REQUEST; | |
} | |
/* | |
* set by ngx_pcalloc(): | |
* | |
* rb->bufs = NULL; | |
* rb->buf = NULL; | |
* rb->rest = 0; | |
*/ | |
preread = r->header_in->last - r->header_in->pos; | |
if (preread) { | |
/* there is the pre-read part of the request body */ | |
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, | |
"http client request body preread %uz", preread); | |
u->received = preread; | |
b = ngx_calloc_buf(r->pool); | |
if (b == NULL) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
b->temporary = 1; | |
b->start = r->header_in->pos; | |
b->pos = r->header_in->pos; | |
b->last = r->header_in->last; | |
b->end = r->header_in->end; | |
rb->bufs = ngx_alloc_chain_link(r->pool); | |
if (rb->bufs == NULL) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
rb->bufs->buf = b; | |
rb->bufs->next = NULL; | |
rb->buf = b; | |
if (preread >= r->headers_in.content_length_n) { | |
/* the whole request body was pre-read */ | |
r->header_in->pos += r->headers_in.content_length_n; | |
r->request_length += r->headers_in.content_length_n; | |
if (ngx_http_process_request_body(r, rb->bufs) != NGX_OK) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
upload_shutdown_ctx(u); | |
return ngx_http_upload_body_handler(r); | |
} | |
/* | |
* to not consider the body as pipelined request in | |
* ngx_http_set_keepalive() | |
*/ | |
r->header_in->pos = r->header_in->last; | |
r->request_length += preread; | |
rb->rest = r->headers_in.content_length_n - preread; | |
if (rb->rest <= (off_t) (b->end - b->last)) { | |
/* the whole request body may be placed in r->header_in */ | |
rb->buf = r->header_in; | |
r->read_event_handler = ngx_http_read_client_request_body_handler; | |
r->write_event_handler = ngx_http_request_empty_handler; | |
return ngx_http_do_read_upload_client_request_body(r); | |
} | |
next = &rb->bufs->next; | |
} else { | |
b = NULL; | |
rb->rest = r->headers_in.content_length_n; | |
next = &rb->bufs; | |
} | |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); | |
size = clcf->client_body_buffer_size; | |
size += size >> 2; | |
if (rb->rest < (ssize_t) size) { | |
size = rb->rest; | |
if (r->request_body_in_single_buf) { | |
size += preread; | |
} | |
} else { | |
size = clcf->client_body_buffer_size; | |
/* disable copying buffer for r->request_body_in_single_buf */ | |
b = NULL; | |
} | |
rb->buf = ngx_create_temp_buf(r->pool, size); | |
if (rb->buf == NULL) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
cl = ngx_alloc_chain_link(r->pool); | |
if (cl == NULL) { | |
upload_shutdown_ctx(u); | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
cl->buf = rb->buf; | |
cl->next = NULL; | |
if (b && r->request_body_in_single_buf) { | |
size = b->last - b->pos; | |
ngx_memcpy(rb->buf->pos, b->pos, size); | |
rb->buf->last += size; | |
next = &rb->bufs; | |
} | |
*next = cl; | |
/* | |
* rb->to_write = rb->bufs; | |
*/ | |
r->read_event_handler = ngx_http_read_upload_client_request_body_handler; | |
return ngx_http_do_read_upload_client_request_body(r); | |
} /* }}} */ | |
static void /* {{{ ngx_http_read_upload_client_request_body_handler */ | |
ngx_http_read_upload_client_request_body_handler(ngx_http_request_t *r) | |
{ | |
ngx_int_t rc; | |
ngx_http_upload_ctx_t *u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
ngx_event_t *rev = r->connection->read; | |
ngx_http_core_loc_conf_t *clcf; | |
if (rev->timedout) { | |
if(!rev->delayed) { | |
r->connection->timedout = 1; | |
upload_shutdown_ctx(u); | |
ngx_http_finalize_request(r, NGX_HTTP_REQUEST_TIME_OUT); | |
return; | |
} | |
rev->timedout = 0; | |
rev->delayed = 0; | |
if (!rev->ready) { | |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); | |
ngx_add_timer(rev, clcf->client_body_timeout); | |
if (ngx_handle_read_event(rev, clcf->send_lowat) != NGX_OK) { | |
upload_shutdown_ctx(u); | |
ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR); | |
} | |
return; | |
} | |
} | |
else{ | |
if (r->connection->read->delayed) { | |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); | |
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, rev->log, 0, | |
"http read delayed"); | |
if (ngx_handle_read_event(rev, clcf->send_lowat) != NGX_OK) { | |
upload_shutdown_ctx(u); | |
ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR); | |
} | |
return; | |
} | |
} | |
rc = ngx_http_do_read_upload_client_request_body(r); | |
if (rc >= NGX_HTTP_SPECIAL_RESPONSE) { | |
upload_shutdown_ctx(u); | |
ngx_http_finalize_request(r, rc); | |
} | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_do_read_upload_client_request_body */ | |
ngx_http_do_read_upload_client_request_body(ngx_http_request_t *r) | |
{ | |
ssize_t size, n, limit; | |
ngx_connection_t *c; | |
ngx_http_request_body_t *rb; | |
ngx_http_upload_ctx_t *u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
ngx_int_t rc; | |
ngx_http_core_loc_conf_t *clcf; | |
ngx_msec_t delay; | |
c = r->connection; | |
rb = r->request_body; | |
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, | |
"http read client request body"); | |
for ( ;; ) { | |
for ( ;; ) { | |
if (rb->buf->last == rb->buf->end) { | |
rc = ngx_http_process_request_body(r, rb->bufs); | |
switch(rc) { | |
case NGX_OK: | |
break; | |
case NGX_UPLOAD_MALFORMED: | |
return NGX_HTTP_BAD_REQUEST; | |
case NGX_UPLOAD_TOOLARGE: | |
return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE; | |
case NGX_UPLOAD_IOERROR: | |
return NGX_HTTP_SERVICE_UNAVAILABLE; | |
case NGX_UPLOAD_NOMEM: case NGX_UPLOAD_SCRIPTERROR: | |
default: | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
rb->bufs = rb->bufs->next ? rb->bufs->next : rb->bufs; | |
rb->buf->last = rb->buf->start; | |
} | |
size = rb->buf->end - rb->buf->last; | |
if ((off_t)size > rb->rest) { | |
size = (size_t)rb->rest; | |
} | |
if (u->limit_rate) { | |
limit = u->limit_rate * (ngx_time() - r->start_sec + 1) - u->received; | |
if (limit < 0) { | |
c->read->delayed = 1; | |
ngx_add_timer(c->read, | |
(ngx_msec_t) (- limit * 1000 / u->limit_rate + 1)); | |
return NGX_AGAIN; | |
} | |
if(limit > 0 && size > limit) { | |
size = limit; | |
} | |
} | |
n = c->recv(c, rb->buf->last, size); | |
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, | |
"http client request body recv %z", n); | |
if (n == NGX_AGAIN) { | |
break; | |
} | |
if (n == 0) { | |
ngx_log_error(NGX_LOG_INFO, c->log, 0, | |
"client closed prematurely connection"); | |
} | |
if (n == 0 || n == NGX_ERROR) { | |
c->error = 1; | |
return NGX_HTTP_BAD_REQUEST; | |
} | |
rb->buf->last += n; | |
rb->rest -= n; | |
r->request_length += n; | |
u->received += n; | |
if (rb->rest == 0) { | |
break; | |
} | |
if (rb->buf->last < rb->buf->end) { | |
break; | |
} | |
if (u->limit_rate) { | |
delay = (ngx_msec_t) (n * 1000 / u->limit_rate + 1); | |
if (delay > 0) { | |
c->read->delayed = 1; | |
ngx_add_timer(c->read, delay); | |
return NGX_AGAIN; | |
} | |
} | |
} | |
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0, | |
"http client request body rest %uz", rb->rest); | |
if (rb->rest == 0) { | |
break; | |
} | |
if (!c->read->ready) { | |
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); | |
ngx_add_timer(c->read, clcf->client_body_timeout); | |
if (ngx_handle_read_event(c->read, 0) != NGX_OK) { | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
return NGX_AGAIN; | |
} | |
} | |
if (c->read->timer_set) { | |
ngx_del_timer(c->read); | |
} | |
rc = ngx_http_process_request_body(r, rb->bufs); | |
switch(rc) { | |
case NGX_OK: | |
break; | |
case NGX_UPLOAD_MALFORMED: | |
return NGX_HTTP_BAD_REQUEST; | |
case NGX_UPLOAD_TOOLARGE: | |
return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE; | |
case NGX_UPLOAD_IOERROR: | |
return NGX_HTTP_SERVICE_UNAVAILABLE; | |
case NGX_UPLOAD_NOMEM: case NGX_UPLOAD_SCRIPTERROR: | |
default: | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
} | |
upload_shutdown_ctx(u); | |
return ngx_http_upload_body_handler(r); | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_process_request_body */ | |
ngx_http_process_request_body(ngx_http_request_t *r, ngx_chain_t *body) | |
{ | |
ngx_int_t rc; | |
ngx_http_upload_ctx_t *u = ngx_http_get_module_ctx(r, ngx_http_upload_module); | |
// Feed all the buffers into data handler | |
while(body) { | |
rc = u->data_handler(u, body->buf->pos, body->buf->last); | |
if(rc != NGX_OK) | |
return rc; | |
body = body->next; | |
} | |
if(u->raw_input) { | |
// Signal end of body | |
if(r->request_body->rest == 0) { | |
rc = u->data_handler(u, NULL, NULL); | |
if(rc != NGX_OK) | |
return rc; | |
} | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t upload_parse_content_disposition(ngx_http_upload_ctx_t *upload_ctx, ngx_str_t *content_disposition) { /* {{{ */ | |
char *filename_start, *filename_end; | |
char *fieldname_start, *fieldname_end; | |
char *p, *q; | |
p = (char*)content_disposition->data; | |
if(strncasecmp(FORM_DATA_STRING, p, sizeof(FORM_DATA_STRING)-1) && | |
strncasecmp(ATTACHMENT_STRING, p, sizeof(ATTACHMENT_STRING)-1)) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"Content-Disposition is not form-data or attachment"); | |
return NGX_UPLOAD_MALFORMED; | |
} | |
filename_start = strstr(p, FILENAME_STRING); | |
if(filename_start != 0) { | |
filename_start += sizeof(FILENAME_STRING)-1; | |
filename_end = filename_start + strcspn(filename_start, "\""); | |
if(*filename_end != '\"') { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"malformed filename in part header"); | |
return NGX_UPLOAD_MALFORMED; | |
} | |
/* | |
* IE sends full path, strip path from filename | |
* Also strip all UNIX path references | |
*/ | |
for(q = filename_end-1; q > filename_start; q--) | |
if(*q == '\\' || *q == '/') { | |
filename_start = q+1; | |
break; | |
} | |
upload_ctx->file_name.len = filename_end - filename_start; | |
upload_ctx->file_name.data = ngx_palloc(upload_ctx->request->pool, upload_ctx->file_name.len + 1); | |
if(upload_ctx->file_name.data == NULL) | |
return NGX_UPLOAD_NOMEM; | |
strncpy((char*)upload_ctx->file_name.data, filename_start, filename_end - filename_start); | |
} | |
fieldname_start = p; | |
// do{ | |
fieldname_start = strstr(fieldname_start, FIELDNAME_STRING); | |
// }while((fieldname_start != 0) && (fieldname_start + sizeof(FIELDNAME_STRING) - 1 == filename_start)); | |
if(fieldname_start != 0) { | |
fieldname_start += sizeof(FIELDNAME_STRING)-1; | |
if(fieldname_start != filename_start) { | |
fieldname_end = fieldname_start + strcspn(fieldname_start, "\""); | |
if(*fieldname_end != '\"') { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, | |
"malformed fieldname in part header"); | |
return NGX_UPLOAD_MALFORMED; | |
} | |
upload_ctx->field_name.len = fieldname_end - fieldname_start; | |
upload_ctx->field_name.data = ngx_pcalloc(upload_ctx->request->pool, upload_ctx->field_name.len + 1); | |
if(upload_ctx->field_name.data == NULL) | |
return NGX_UPLOAD_NOMEM; | |
strncpy((char*)upload_ctx->field_name.data, fieldname_start, fieldname_end - fieldname_start); | |
} | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t upload_parse_part_header(ngx_http_upload_ctx_t *upload_ctx, char *header, char *header_end) { /* {{{ */ | |
ngx_str_t s; | |
if(!strncasecmp(CONTENT_DISPOSITION_STRING, header, sizeof(CONTENT_DISPOSITION_STRING) - 1)) { | |
char *p = header + sizeof(CONTENT_DISPOSITION_STRING) - 1; | |
p += strspn(p, " "); | |
s.data = (u_char*)p; | |
s.len = header_end - p; | |
if(upload_parse_content_disposition(upload_ctx, &s) != NGX_OK) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"invalid Content-Disposition header"); | |
return NGX_UPLOAD_MALFORMED; | |
} | |
} | |
else if(!strncasecmp(CONTENT_TYPE_STRING, header, sizeof(CONTENT_TYPE_STRING)-1)) { | |
char *content_type_str = header + sizeof(CONTENT_TYPE_STRING)-1; | |
content_type_str += strspn(content_type_str, " "); | |
upload_ctx->content_type.len = header_end - content_type_str; | |
if(upload_ctx->content_type.len == 0) { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, | |
"empty Content-Type in part header"); | |
return NGX_UPLOAD_MALFORMED; // Empty Content-Type field | |
} | |
upload_ctx->content_type.data = ngx_pcalloc(upload_ctx->request->pool, upload_ctx->content_type.len + 1); | |
if(upload_ctx->content_type.data == NULL) | |
return NGX_UPLOAD_NOMEM; // Unable to allocate memory for string | |
strncpy((char*)upload_ctx->content_type.data, content_type_str, upload_ctx->content_type.len); | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static void upload_discard_part_attributes(ngx_http_upload_ctx_t *upload_ctx) { /* {{{ */ | |
upload_ctx->file_name.len = 0; | |
upload_ctx->file_name.data = NULL; | |
upload_ctx->field_name.len = 0; | |
upload_ctx->field_name.data = NULL; | |
upload_ctx->content_type.len = 0; | |
upload_ctx->content_type.data = NULL; | |
upload_ctx->content_range.len = 0; | |
upload_ctx->content_range.data = NULL; | |
upload_ctx->session_id.len = 0; | |
upload_ctx->session_id.data = NULL; | |
upload_ctx->partial_content = 0; | |
} /* }}} */ | |
static ngx_int_t upload_start_file(ngx_http_upload_ctx_t *upload_ctx) { /* {{{ */ | |
if(upload_ctx->start_part_f) | |
return upload_ctx->start_part_f(upload_ctx); | |
else | |
return NGX_OK; | |
} /* }}} */ | |
static void upload_finish_file(ngx_http_upload_ctx_t *upload_ctx) { /* {{{ */ | |
// Call user-defined event handler | |
if(upload_ctx->finish_part_f) | |
upload_ctx->finish_part_f(upload_ctx); | |
upload_discard_part_attributes(upload_ctx); | |
upload_ctx->discard_data = 0; | |
} /* }}} */ | |
static void upload_abort_file(ngx_http_upload_ctx_t *upload_ctx) { /* {{{ */ | |
if(upload_ctx->abort_part_f) | |
upload_ctx->abort_part_f(upload_ctx); | |
upload_discard_part_attributes(upload_ctx); | |
upload_ctx->discard_data = 0; | |
} /* }}} */ | |
static void upload_flush_output_buffer(ngx_http_upload_ctx_t *upload_ctx) { /* {{{ */ | |
if(upload_ctx->output_buffer_pos > upload_ctx->output_buffer) { | |
if(upload_ctx->flush_output_buffer_f) | |
if(upload_ctx->flush_output_buffer_f(upload_ctx, (void*)upload_ctx->output_buffer, | |
(size_t)(upload_ctx->output_buffer_pos - upload_ctx->output_buffer)) != NGX_OK) | |
upload_ctx->discard_data = 1; | |
upload_ctx->output_buffer_pos = upload_ctx->output_buffer; | |
} | |
} /* }}} */ | |
static void upload_init_ctx(ngx_http_upload_ctx_t *upload_ctx) { /* {{{ */ | |
upload_ctx->boundary.data = upload_ctx->boundary_start = upload_ctx->boundary_pos = 0; | |
upload_ctx->state = upload_state_boundary_seek; | |
upload_discard_part_attributes(upload_ctx); | |
upload_ctx->discard_data = 0; | |
upload_ctx->start_part_f = ngx_http_upload_start_handler; | |
upload_ctx->finish_part_f = ngx_http_upload_finish_handler; | |
upload_ctx->abort_part_f = ngx_http_upload_abort_handler; | |
upload_ctx->flush_output_buffer_f = ngx_http_upload_flush_output_buffer; | |
upload_ctx->started = 0; | |
upload_ctx->unencoded = 0; | |
/* | |
* Set default data handler | |
*/ | |
upload_ctx->data_handler = upload_process_buf; | |
} /* }}} */ | |
static void upload_shutdown_ctx(ngx_http_upload_ctx_t *upload_ctx) { /* {{{ */ | |
if(upload_ctx != 0) { | |
// Abort file if we still processing it | |
if(upload_ctx->state == upload_state_data) { | |
upload_flush_output_buffer(upload_ctx); | |
upload_abort_file(upload_ctx); | |
} | |
upload_discard_part_attributes(upload_ctx); | |
} | |
} /* }}} */ | |
static ngx_int_t upload_start(ngx_http_upload_ctx_t *upload_ctx, ngx_http_upload_loc_conf_t *ulcf) { /* {{{ */ | |
if(upload_ctx == NULL) | |
return NGX_ERROR; | |
upload_ctx->header_accumulator = ngx_pcalloc(upload_ctx->request->pool, ulcf->max_header_len + 1); | |
if(upload_ctx->header_accumulator == NULL) | |
return NGX_ERROR; | |
upload_ctx->header_accumulator_pos = upload_ctx->header_accumulator; | |
upload_ctx->header_accumulator_end = upload_ctx->header_accumulator + ulcf->max_header_len; | |
upload_ctx->output_buffer = ngx_pcalloc(upload_ctx->request->pool, ulcf->buffer_size); | |
if(upload_ctx->output_buffer == NULL) | |
return NGX_ERROR; | |
upload_ctx->output_buffer_pos = upload_ctx->output_buffer; | |
upload_ctx->output_buffer_end = upload_ctx->output_buffer + ulcf->buffer_size; | |
upload_ctx->header_accumulator_pos = upload_ctx->header_accumulator; | |
upload_ctx->range_header_buffer = ngx_pcalloc(upload_ctx->request->pool, ulcf->range_header_buffer_size); | |
if(upload_ctx->range_header_buffer == NULL) | |
return NGX_ERROR; | |
upload_ctx->range_header_buffer_pos = upload_ctx->range_header_buffer; | |
upload_ctx->range_header_buffer_end = upload_ctx->range_header_buffer + ulcf->range_header_buffer_size; | |
upload_ctx->first_part = 1; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_validate_session_id */ | |
ngx_http_upload_validate_session_id(ngx_str_t *session_id) { | |
u_char *p, *q; | |
p = session_id->data; | |
q = session_id->data + session_id->len; | |
while(p != q) { | |
if(!((*p >= '0' && *p <= '9') || (*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <= 'Z') | |
|| *p == '_' || *p == '-')) | |
{ | |
return NGX_ERROR; | |
} | |
p++; | |
} | |
return NGX_OK; | |
} | |
static ngx_int_t upload_parse_request_headers(ngx_http_upload_ctx_t *upload_ctx, ngx_http_headers_in_t *headers_in) { /* {{{ */ | |
ngx_str_t *content_type, s; | |
ngx_list_part_t *part; | |
ngx_table_elt_t *header; | |
ngx_uint_t i; | |
u_char *mime_type_end_ptr; | |
u_char *boundary_start_ptr, *boundary_end_ptr; | |
ngx_atomic_uint_t boundary; | |
ngx_http_upload_loc_conf_t *ulcf; | |
ulcf = ngx_http_get_module_loc_conf(upload_ctx->request, ngx_http_upload_module); | |
// Check whether Content-Type header is missing | |
if(headers_in->content_type == NULL) { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, ngx_errno, | |
"missing Content-Type header"); | |
return NGX_HTTP_BAD_REQUEST; | |
} | |
content_type = &headers_in->content_type->value; | |
if(ngx_strncasecmp(content_type->data, (u_char*) MULTIPART_FORM_DATA_STRING, | |
sizeof(MULTIPART_FORM_DATA_STRING) - 1)) { | |
if(!ulcf->resumable_uploads) { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, | |
"Content-Type is not multipart/form-data and resumable uploads are off: %V", content_type); | |
return NGX_HTTP_UNSUPPORTED_MEDIA_TYPE; | |
} | |
/* | |
* Content-Type is not multipart/form-data, | |
* look for Content-Disposition header now | |
*/ | |
part = &headers_in->headers.part; | |
header = part->elts; | |
for (i = 0;;i++) { | |
if (i >= part->nelts) { | |
if (part->next == NULL) { | |
break; | |
} | |
part = part->next; | |
header = part->elts; | |
i = 0; | |
} | |
if(!strncasecmp(CONTENT_DISPOSITION_STRING, (char*)header[i].key.data, sizeof(CONTENT_DISPOSITION_STRING) - 1 - 1)) { | |
if(upload_parse_content_disposition(upload_ctx, &header[i].value)) { | |
ngx_log_error(NGX_LOG_INFO, upload_ctx->log, 0, | |
"invalid Content-Disposition header"); | |
return NGX_ERROR; | |
} | |
upload_ctx->is_file = 1; | |
upload_ctx->unencoded = 1; | |
upload_ctx->raw_input = 1; | |
upload_ctx->data_handler = upload_process_raw_buf; | |
}else if(!strncasecmp(SESSION_ID_STRING, (char*)header[i].key.data, sizeof(SESSION_ID_STRING) - 1 - 1) | |
|| !strncasecmp(X_SESSION_ID_STRING, (char*)header[i].key.data, sizeof(X_SESSION_ID_STRING) - 1 - 1)) | |
{ | |
if(header[i].value.len == 0) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"empty Session-ID in header"); | |
return NGX_ERROR; | |
} | |
if(ngx_http_upload_validate_session_id(&header[i].value) != NGX_OK) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"invalid Session-ID in header"); | |
return NGX_ERROR; | |
} | |
upload_ctx->session_id = header[i].value; | |
ngx_log_debug1(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"session id %V", &upload_ctx->session_id); | |
}else if(!strncasecmp(CONTENT_RANGE_STRING, (char*)header[i].key.data, sizeof(CONTENT_RANGE_STRING) - 1 - 1) | |
|| !strncasecmp(X_CONTENT_RANGE_STRING, (char*)header[i].key.data, sizeof(X_CONTENT_RANGE_STRING) - 1 - 1)) | |
{ | |
if(header[i].value.len == 0) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"empty Content-Range in part header"); | |
return NGX_ERROR; | |
} | |
if(strncasecmp((char*)header[i].value.data, BYTES_UNIT_STRING, sizeof(BYTES_UNIT_STRING) - 1)) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"unsupported range unit"); | |
return NGX_ERROR; | |
} | |
s.data = (u_char*)(char*)header[i].value.data + sizeof(BYTES_UNIT_STRING) - 1; | |
s.len = header[i].value.len - sizeof(BYTES_UNIT_STRING) + 1; | |
if(ngx_http_upload_parse_range(&s, &upload_ctx->content_range_n) != NGX_OK) { | |
ngx_log_debug2(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"invalid range %V (%V)", &s, &header[i].value); | |
return NGX_ERROR; | |
} | |
ngx_log_debug3(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"partial content, range %O-%O/%O", upload_ctx->content_range_n.start, | |
upload_ctx->content_range_n.end, upload_ctx->content_range_n.total); | |
if(ulcf->max_file_size != 0 && upload_ctx->content_range_n.total > ulcf->max_file_size) { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, | |
"entity length is too big"); | |
return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE; | |
} | |
if( (upload_ctx->content_range_n.end - upload_ctx->content_range_n.start + 1) | |
!= headers_in->content_length_n) | |
{ | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, | |
"range length is not equal to content length"); | |
return NGX_HTTP_RANGE_NOT_SATISFIABLE; | |
} | |
upload_ctx->partial_content = 1; | |
} | |
} | |
if(!upload_ctx->unencoded) { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, | |
"Content-Type is not multipart/form-data and no Content-Disposition header found"); | |
return NGX_HTTP_UNSUPPORTED_MEDIA_TYPE; | |
} | |
upload_ctx->content_type = *content_type; | |
boundary = ngx_next_temp_number(0); | |
content_type->data = | |
ngx_pnalloc(upload_ctx->request->pool, | |
sizeof(MULTIPART_FORM_DATA_STRING "; boundary=") - 1 | |
+ NGX_ATOMIC_T_LEN); | |
if (content_type->data == NULL) { | |
return NGX_ERROR; | |
} | |
content_type->len = | |
ngx_sprintf(content_type->data, | |
MULTIPART_FORM_DATA_STRING "; boundary=%0muA", | |
boundary) | |
- content_type->data; | |
boundary_start_ptr = content_type->data + sizeof(MULTIPART_FORM_DATA_STRING "; boundary=") - 1; | |
boundary_end_ptr = content_type->data + content_type->len; | |
} | |
else{ | |
// Find colon in content type string, which terminates mime type | |
mime_type_end_ptr = (u_char*) ngx_strchr(content_type->data, ';'); | |
upload_ctx->boundary.data = 0; | |
if(mime_type_end_ptr == NULL) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"no boundary found in Content-Type"); | |
return NGX_UPLOAD_MALFORMED; | |
} | |
boundary_start_ptr = ngx_strstrn(mime_type_end_ptr, BOUNDARY_STRING, sizeof(BOUNDARY_STRING) - 2); | |
if(boundary_start_ptr == NULL) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"no boundary found in Content-Type"); | |
return NGX_UPLOAD_MALFORMED; // No boundary found | |
} | |
boundary_start_ptr += sizeof(BOUNDARY_STRING) - 1; | |
boundary_end_ptr = boundary_start_ptr + strcspn((char*)boundary_start_ptr, " ;\n\r"); | |
if(boundary_end_ptr == boundary_start_ptr) { | |
ngx_log_debug0(NGX_LOG_DEBUG_CORE, upload_ctx->log, 0, | |
"boundary is empty"); | |
return NGX_UPLOAD_MALFORMED; | |
} | |
} | |
// Allocate memory for entire boundary plus \r\n-- plus terminating character | |
upload_ctx->boundary.len = boundary_end_ptr - boundary_start_ptr + 4; | |
upload_ctx->boundary.data = ngx_palloc(upload_ctx->request->pool, upload_ctx->boundary.len + 1); | |
if(upload_ctx->boundary.data == NULL) | |
return NGX_HTTP_INTERNAL_SERVER_ERROR; | |
ngx_cpystrn(upload_ctx->boundary.data + 4, boundary_start_ptr, | |
boundary_end_ptr - boundary_start_ptr + 1); | |
// Prepend boundary data by \r\n-- | |
upload_ctx->boundary.data[0] = '\r'; | |
upload_ctx->boundary.data[1] = '\n'; | |
upload_ctx->boundary.data[2] = '-'; | |
upload_ctx->boundary.data[3] = '-'; | |
/* | |
* NOTE: first boundary doesn't start with \r\n. Here we | |
* advance 2 positions forward. We will return 2 positions back | |
* later | |
*/ | |
upload_ctx->boundary_start = upload_ctx->boundary.data + 2; | |
upload_ctx->boundary_pos = upload_ctx->boundary_start; | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t /* {{{ ngx_http_upload_parse_range */ | |
ngx_http_upload_parse_range(ngx_str_t *range, ngx_http_upload_range_t *range_n) | |
{ | |
u_char *p = range->data; | |
u_char *last = range->data + range->len; | |
off_t *field = &range_n->start; | |
if(range_n == NULL) | |
return NGX_ERROR; | |
do{ | |
*field = 0; | |
while(p < last) { | |
if(*p >= '0' && *p <= '9') { | |
(*field) = (*field) * 10 + (*p - '0'); | |
} | |
else if(*p == '-') { | |
if(field != &range_n->start) { | |
return NGX_ERROR; | |
} | |
field = &range_n->end; | |
p++; | |
break; | |
} | |
else if(*p == '/') { | |
if(field != &range_n->end) { | |
return NGX_ERROR; | |
} | |
field = &range_n->total; | |
p++; | |
break; | |
} | |
else { | |
return NGX_ERROR; | |
} | |
p++; | |
} | |
}while(p < last); | |
if(field != &range_n->total) { | |
return NGX_ERROR; | |
} | |
if(range_n->start > range_n->end || range_n->start >= range_n->total | |
|| range_n->end >= range_n->total) | |
{ | |
return NGX_ERROR; | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static void upload_putc(ngx_http_upload_ctx_t *upload_ctx, u_char c) { /* {{{ */ | |
if(!upload_ctx->discard_data) { | |
*upload_ctx->output_buffer_pos = c; | |
upload_ctx->output_buffer_pos++; | |
if(upload_ctx->output_buffer_pos == upload_ctx->output_buffer_end) | |
upload_flush_output_buffer(upload_ctx); | |
} | |
} /* }}} */ | |
static ngx_int_t upload_process_buf(ngx_http_upload_ctx_t *upload_ctx, u_char *start, u_char *end) { /* {{{ */ | |
u_char *p; | |
ngx_int_t rc; | |
// No more data? | |
if(start == end) { | |
if(upload_ctx->state != upload_state_finish) { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, "premature end of body"); | |
return NGX_UPLOAD_MALFORMED; // Signal error if still haven't finished | |
} | |
else | |
return NGX_OK; // Otherwise confirm end of stream | |
} | |
for(p = start; p != end; p++) { | |
switch(upload_ctx->state) { | |
/* | |
* Seek the boundary | |
*/ | |
case upload_state_boundary_seek: | |
if(*p == *upload_ctx->boundary_pos) | |
upload_ctx->boundary_pos++; | |
else | |
upload_ctx->boundary_pos = upload_ctx->boundary_start; | |
if(upload_ctx->boundary_pos == upload_ctx->boundary.data + upload_ctx->boundary.len) { | |
upload_ctx->state = upload_state_after_boundary; | |
upload_ctx->boundary_start = upload_ctx->boundary.data; | |
upload_ctx->boundary_pos = upload_ctx->boundary_start; | |
} | |
break; | |
case upload_state_after_boundary: | |
switch(*p) { | |
case '\n': | |
upload_ctx->state = upload_state_headers; | |
upload_ctx->header_accumulator_pos = upload_ctx->header_accumulator; | |
case '\r': | |
break; | |
case '-': | |
upload_ctx->state = upload_state_finish; | |
break; | |
} | |
break; | |
/* | |
* Collect and store headers | |
*/ | |
case upload_state_headers: | |
switch(*p) { | |
case '\n': | |
if(upload_ctx->header_accumulator_pos == upload_ctx->header_accumulator) { | |
upload_ctx->is_file = (upload_ctx->file_name.data == 0) || (upload_ctx->file_name.len == 0) ? 0 : 1; | |
rc = upload_start_file(upload_ctx); | |
if(rc != NGX_OK) { | |
upload_ctx->state = upload_state_finish; | |
return rc; // User requested to cancel processing | |
} else { | |
upload_ctx->state = upload_state_data; | |
upload_ctx->output_buffer_pos = upload_ctx->output_buffer; | |
} | |
} else { | |
*upload_ctx->header_accumulator_pos = '\0'; | |
rc = upload_parse_part_header(upload_ctx, (char*)upload_ctx->header_accumulator, | |
(char*)upload_ctx->header_accumulator_pos); | |
if(rc != NGX_OK) { | |
upload_ctx->state = upload_state_finish; | |
return rc; // Malformed header | |
} else | |
upload_ctx->header_accumulator_pos = upload_ctx->header_accumulator; | |
} | |
case '\r': | |
break; | |
default: | |
if(upload_ctx->header_accumulator_pos < upload_ctx->header_accumulator_end - 1) | |
*upload_ctx->header_accumulator_pos++ = *p; | |
else { | |
ngx_log_error(NGX_LOG_ERR, upload_ctx->log, 0, "part header is too long"); | |
upload_ctx->state = upload_state_finish; | |
return NGX_UPLOAD_MALFORMED; | |
} | |
break; | |
} | |
break; | |
/* | |
* Search for separating or terminating boundary | |
* and output data simultaneously | |
*/ | |
case upload_state_data: | |
if(*p == *upload_ctx->boundary_pos) | |
upload_ctx->boundary_pos++; | |
else { | |
if(upload_ctx->boundary_pos == upload_ctx->boundary_start) { | |
// IE 5.0 bug workaround | |
if(*p == '\n') { | |
/* | |
* Set current matched position beyond LF and prevent outputting | |
* CR in case of unsuccessful match by altering boundary_start | |
*/ | |
upload_ctx->boundary_pos = upload_ctx->boundary.data + 2; | |
upload_ctx->boundary_start = upload_ctx->boundary.data + 1; | |
} else | |
upload_putc(upload_ctx, *p); | |
} else { | |
// Output partially matched lump of boundary | |
u_char *q; | |
for(q = upload_ctx->boundary_start; q != upload_ctx->boundary_pos; q++) | |
upload_putc(upload_ctx, *q); | |
p--; // Repeat reading last character | |
// And reset matched position | |
upload_ctx->boundary_start = upload_ctx->boundary.data; | |
upload_ctx->boundary_pos = upload_ctx->boundary_start; | |
} | |
} | |
if(upload_ctx->boundary_pos == upload_ctx->boundary.data + upload_ctx->boundary.len) { | |
upload_ctx->state = upload_state_after_boundary; | |
upload_ctx->boundary_pos = upload_ctx->boundary_start; | |
upload_flush_output_buffer(upload_ctx); | |
if(!upload_ctx->discard_data) | |
upload_finish_file(upload_ctx); | |
else | |
upload_abort_file(upload_ctx); | |
} | |
break; | |
/* | |
* Skip trailing garbage | |
*/ | |
case upload_state_finish: | |
break; | |
} | |
} | |
return NGX_OK; | |
} /* }}} */ | |
static ngx_int_t | |
upload_process_raw_buf(ngx_http_upload_ctx_t *upload_ctx, u_char *start, u_char *end) { /* {{{ */ | |
ngx_int_t rc; | |
if(start == end) { | |
if(!upload_ctx->discard_data) | |
upload_finish_file(upload_ctx); | |
else | |
upload_abort_file(upload_ctx); | |
return NGX_OK; | |
} | |
if(!upload_ctx->started) { | |
rc = upload_start_file(upload_ctx); | |
if(rc != NGX_OK) { | |
return rc; | |
} | |
upload_ctx->started = 1; | |
} | |
if(upload_ctx->flush_output_buffer_f) | |
if(upload_ctx->flush_output_buffer_f(upload_ctx, (void*)start, | |
(size_t)(end - start)) != NGX_OK) | |
upload_ctx->discard_data = 1; | |
return NGX_OK; | |
} /* }}} */ | |
static void /* {{{ ngx_upload_cleanup_handler */ | |
ngx_upload_cleanup_handler(void *data) | |
{ | |
ngx_upload_cleanup_t *cln = data; | |
ngx_uint_t i; | |
uint16_t *s; | |
u_char do_cleanup = 0; | |
if(!cln->aborted) { | |
if(cln->fd >= 0) { | |
if (ngx_close_file(cln->fd) == NGX_FILE_ERROR) { | |
ngx_log_error(NGX_LOG_ALERT, cln->log, ngx_errno, | |
ngx_close_file_n " \"%s\" failed", cln->filename); | |
} | |
} | |
if(cln->cleanup_statuses != NULL) { | |
s = cln->cleanup_statuses->elts; | |
for(i = 0; i < cln->cleanup_statuses->nelts; i++) { | |
if(cln->headers_out->status == s[i]) { | |
do_cleanup = 1; | |
} | |
} | |
} | |
if(do_cleanup) { | |
if(ngx_delete_file(cln->filename) == NGX_FILE_ERROR) { | |
ngx_log_error(NGX_LOG_ERR, cln->log, ngx_errno | |
, "failed to remove destination file \"%s\" after http status %l" | |
, cln->filename | |
, cln->headers_out->status | |
); | |
}else | |
ngx_log_error(NGX_LOG_INFO, cln->log, 0 | |
, "finished cleanup of file \"%s\" after http status %l" | |
, cln->filename | |
, cln->headers_out->status | |
); | |
} | |
} | |
} /* }}} */ | |
static ngx_int_t /* {{{ */ | |
ngx_http_upload_test_expect(ngx_http_request_t *r) | |
{ | |
ngx_int_t n; | |
ngx_str_t *expect; | |
if (r->expect_tested | |
|| r->headers_in.expect == NULL | |
|| r->http_version < NGX_HTTP_VERSION_11) | |
{ | |
return NGX_OK; | |
} | |
r->expect_tested = 1; | |
expect = &r->headers_in.expect->value; | |
if (expect->len != sizeof("100-continue") - 1 | |
|| ngx_strncasecmp(expect->data, (u_char *) "100-continue", | |
sizeof("100-continue") - 1) | |
!= 0) | |
{ | |
return NGX_OK; | |
} | |
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, | |
"send 100 Continue"); | |
n = r->connection->send(r->connection, | |
(u_char *) "HTTP/1.1 100 Continue" CRLF CRLF, | |
sizeof("HTTP/1.1 100 Continue" CRLF CRLF) - 1); | |
if (n == sizeof("HTTP/1.1 100 Continue" CRLF CRLF) - 1) { | |
return NGX_OK; | |
} | |
/* we assume that such small packet should be send successfully */ | |
return NGX_ERROR; | |
} /* }}} */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment