| |
| /* |
| * Copyright (C) Yichun Zhang (agentzh) |
| */ |
| |
| |
| #ifndef DDEBUG |
| #define DDEBUG 0 |
| #endif |
| #include "ddebug.h" |
| |
| |
| #include <nginx.h> |
| #include "ngx_http_lua_headers_in.h" |
| #include "ngx_http_lua_util.h" |
| #include <ctype.h> |
| |
| |
| static ngx_int_t ngx_http_set_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_set_header_helper(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value, |
| ngx_table_elt_t **output_header); |
| static ngx_int_t ngx_http_set_builtin_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_set_user_agent_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_set_connection_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_set_content_length_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_set_cookie_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_clear_builtin_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_clear_content_length_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_lua_validate_host(ngx_str_t *host, ngx_pool_t *pool, |
| ngx_uint_t alloc); |
| static ngx_int_t ngx_http_set_host_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value); |
| static ngx_int_t ngx_http_lua_rm_header_helper(ngx_list_t *l, |
| ngx_list_part_t *cur, ngx_uint_t i); |
| |
| |
| static ngx_http_lua_set_header_t ngx_http_lua_set_handlers[] = { |
| |
| #if (NGX_HTTP_GZIP) |
| { ngx_string("Accept-Encoding"), |
| offsetof(ngx_http_headers_in_t, accept_encoding), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Via"), |
| offsetof(ngx_http_headers_in_t, via), |
| ngx_http_set_builtin_header }, |
| #endif |
| |
| { ngx_string("Host"), |
| offsetof(ngx_http_headers_in_t, host), |
| ngx_http_set_host_header }, |
| |
| { ngx_string("Connection"), |
| offsetof(ngx_http_headers_in_t, connection), |
| ngx_http_set_connection_header }, |
| |
| { ngx_string("If-Modified-Since"), |
| offsetof(ngx_http_headers_in_t, if_modified_since), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("User-Agent"), |
| offsetof(ngx_http_headers_in_t, user_agent), |
| ngx_http_set_user_agent_header }, |
| |
| { ngx_string("Referer"), |
| offsetof(ngx_http_headers_in_t, referer), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Content-Type"), |
| offsetof(ngx_http_headers_in_t, content_type), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Range"), |
| offsetof(ngx_http_headers_in_t, range), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("If-Range"), |
| offsetof(ngx_http_headers_in_t, if_range), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Transfer-Encoding"), |
| offsetof(ngx_http_headers_in_t, transfer_encoding), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Expect"), |
| offsetof(ngx_http_headers_in_t, expect), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Authorization"), |
| offsetof(ngx_http_headers_in_t, authorization), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Keep-Alive"), |
| offsetof(ngx_http_headers_in_t, keep_alive), |
| ngx_http_set_builtin_header }, |
| |
| { ngx_string("Content-Length"), |
| offsetof(ngx_http_headers_in_t, content_length), |
| ngx_http_set_content_length_header }, |
| |
| { ngx_string("Cookie"), |
| 0, |
| ngx_http_set_cookie_header }, |
| |
| #if (NGX_HTTP_REALIP) |
| { ngx_string("X-Real-IP"), |
| offsetof(ngx_http_headers_in_t, x_real_ip), |
| ngx_http_set_builtin_header }, |
| #endif |
| |
| { ngx_null_string, 0, ngx_http_set_header } |
| }; |
| |
| |
| /* request time implementation */ |
| |
| static ngx_int_t |
| ngx_http_set_header(ngx_http_request_t *r, ngx_http_lua_header_val_t *hv, |
| ngx_str_t *value) |
| { |
| return ngx_http_set_header_helper(r, hv, value, NULL); |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_set_header_helper(ngx_http_request_t *r, ngx_http_lua_header_val_t *hv, |
| ngx_str_t *value, ngx_table_elt_t **output_header) |
| { |
| ngx_table_elt_t *h, *matched; |
| ngx_list_part_t *part; |
| ngx_uint_t i; |
| ngx_uint_t rc; |
| |
| if (hv->no_override) { |
| goto new_header; |
| } |
| |
| matched = NULL; |
| |
| retry: |
| part = &r->headers_in.headers.part; |
| h = part->elts; |
| |
| for (i = 0; /* void */; i++) { |
| if (i >= part->nelts) { |
| if (part->next == NULL) { |
| break; |
| } |
| |
| part = part->next; |
| h = part->elts; |
| i = 0; |
| } |
| |
| dd("i: %d, part: %p", (int) i, part); |
| |
| if (h[i].key.len == hv->key.len |
| && ngx_strncasecmp(h[i].key.data, hv->key.data, h[i].key.len) |
| == 0) |
| { |
| if (value->len == 0 || (matched && matched != &h[i])) { |
| h[i].hash = 0; |
| |
| dd("rm header %.*s: %.*s", (int) h[i].key.len, h[i].key.data, |
| (int) h[i].value.len, h[i].value.data); |
| |
| rc = ngx_http_lua_rm_header_helper(&r->headers_in.headers, |
| part, i); |
| |
| ngx_http_lua_assert(!(r->headers_in.headers.part.next == NULL |
| && r->headers_in.headers.last |
| != &r->headers_in.headers.part)); |
| |
| dd("rm header: rc=%d", (int) rc); |
| |
| if (rc == NGX_OK) { |
| |
| if (output_header) { |
| *output_header = NULL; |
| } |
| |
| goto retry; |
| } |
| |
| return NGX_ERROR; |
| } |
| |
| h[i].value = *value; |
| |
| if (output_header) { |
| *output_header = &h[i]; |
| dd("setting existing builtin input header"); |
| } |
| |
| if (matched == NULL) { |
| matched = &h[i]; |
| } |
| } |
| } |
| |
| if (matched){ |
| return NGX_OK; |
| } |
| |
| if (value->len == 0) { |
| return NGX_OK; |
| } |
| |
| new_header: |
| h = ngx_list_push(&r->headers_in.headers); |
| |
| if (h == NULL) { |
| return NGX_ERROR; |
| } |
| |
| dd("created new header for %.*s", (int) hv->key.len, hv->key.data); |
| |
| if (value->len == 0) { |
| h->hash = 0; |
| |
| } else { |
| h->hash = hv->hash; |
| } |
| |
| h->key = hv->key; |
| h->value = *value; |
| |
| h->lowcase_key = ngx_pnalloc(r->pool, h->key.len); |
| if (h->lowcase_key == NULL) { |
| return NGX_ERROR; |
| } |
| |
| ngx_strlow(h->lowcase_key, h->key.data, h->key.len); |
| |
| if (output_header) { |
| *output_header = h; |
| } |
| |
| return NGX_OK; |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_set_builtin_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value) |
| { |
| ngx_table_elt_t *h, **old; |
| |
| dd("entered set_builtin_header (input)"); |
| |
| if (hv->offset) { |
| old = (ngx_table_elt_t **) ((char *) &r->headers_in + hv->offset); |
| |
| } else { |
| old = NULL; |
| } |
| |
| dd("old builtin ptr ptr: %p", old); |
| if (old) { |
| dd("old builtin ptr: %p", *old); |
| } |
| |
| if (old == NULL || *old == NULL) { |
| dd("set normal header"); |
| return ngx_http_set_header_helper(r, hv, value, old); |
| } |
| |
| h = *old; |
| |
| if (value->len == 0) { |
| h->hash = 0; |
| h->value = *value; |
| |
| return ngx_http_set_header_helper(r, hv, value, old); |
| } |
| |
| h->hash = hv->hash; |
| h->value = *value; |
| |
| return NGX_OK; |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_lua_validate_host(ngx_str_t *host, ngx_pool_t *pool, ngx_uint_t alloc) |
| { |
| u_char *h, ch; |
| size_t i, dot_pos, host_len; |
| |
| enum { |
| sw_usual = 0, |
| sw_literal, |
| sw_rest |
| } state; |
| |
| dot_pos = host->len; |
| host_len = host->len; |
| |
| h = host->data; |
| |
| state = sw_usual; |
| |
| for (i = 0; i < host->len; i++) { |
| ch = h[i]; |
| |
| switch (ch) { |
| |
| case '.': |
| if (dot_pos == i - 1) { |
| return NGX_DECLINED; |
| } |
| dot_pos = i; |
| break; |
| |
| case ':': |
| if (state == sw_usual) { |
| host_len = i; |
| state = sw_rest; |
| } |
| break; |
| |
| case '[': |
| if (i == 0) { |
| state = sw_literal; |
| } |
| break; |
| |
| case ']': |
| if (state == sw_literal) { |
| host_len = i + 1; |
| state = sw_rest; |
| } |
| break; |
| |
| case '\0': |
| return NGX_DECLINED; |
| |
| default: |
| |
| if (ngx_path_separator(ch)) { |
| return NGX_DECLINED; |
| } |
| |
| if (ch >= 'A' && ch <= 'Z') { |
| alloc = 1; |
| } |
| |
| break; |
| } |
| } |
| |
| if (dot_pos == host_len - 1) { |
| host_len--; |
| } |
| |
| if (host_len == 0) { |
| return NGX_DECLINED; |
| } |
| |
| if (alloc) { |
| host->data = ngx_pnalloc(pool, host_len); |
| if (host->data == NULL) { |
| return NGX_ERROR; |
| } |
| |
| ngx_strlow(host->data, h, host_len); |
| } |
| |
| host->len = host_len; |
| |
| return NGX_OK; |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_set_host_header(ngx_http_request_t *r, ngx_http_lua_header_val_t *hv, |
| ngx_str_t *value) |
| { |
| ngx_str_t host; |
| |
| dd("server new value len: %d", (int) value->len); |
| |
| if (value->len) { |
| host= *value; |
| |
| if (ngx_http_lua_validate_host(&host, r->pool, 0) != NGX_OK) { |
| return NGX_ERROR; |
| } |
| |
| r->headers_in.server = host; |
| |
| } else { |
| r->headers_in.server = *value; |
| } |
| |
| return ngx_http_set_builtin_header(r, hv, value); |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_set_connection_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value) |
| { |
| r->headers_in.connection_type = 0; |
| |
| if (value->len == 0) { |
| return ngx_http_set_builtin_header(r, hv, value); |
| } |
| |
| if (ngx_strcasestrn(value->data, "close", 5 - 1)) { |
| r->headers_in.connection_type = NGX_HTTP_CONNECTION_CLOSE; |
| r->headers_in.keep_alive_n = -1; |
| |
| } else if (ngx_strcasestrn(value->data, "keep-alive", 10 - 1)) { |
| r->headers_in.connection_type = NGX_HTTP_CONNECTION_KEEP_ALIVE; |
| } |
| |
| return ngx_http_set_builtin_header(r, hv, value); |
| } |
| |
| |
| /* borrowed the code from ngx_http_request.c:ngx_http_process_user_agent */ |
| static ngx_int_t |
| ngx_http_set_user_agent_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value) |
| { |
| u_char *user_agent, *msie; |
| |
| /* clear existing settings */ |
| |
| r->headers_in.msie = 0; |
| r->headers_in.msie6 = 0; |
| r->headers_in.opera = 0; |
| r->headers_in.gecko = 0; |
| r->headers_in.chrome = 0; |
| r->headers_in.safari = 0; |
| r->headers_in.konqueror = 0; |
| |
| if (value->len == 0) { |
| return ngx_http_set_builtin_header(r, hv, value); |
| } |
| |
| /* check some widespread browsers */ |
| |
| user_agent = value->data; |
| |
| msie = ngx_strstrn(user_agent, "MSIE ", 5 - 1); |
| |
| if (msie && msie + 7 < user_agent + value->len) { |
| |
| r->headers_in.msie = 1; |
| |
| if (msie[6] == '.') { |
| |
| switch (msie[5]) { |
| case '4': |
| case '5': |
| r->headers_in.msie6 = 1; |
| break; |
| case '6': |
| if (ngx_strstrn(msie + 8, "SV1", 3 - 1) == NULL) { |
| r->headers_in.msie6 = 1; |
| } |
| break; |
| } |
| } |
| } |
| |
| if (ngx_strstrn(user_agent, "Opera", 5 - 1)) { |
| r->headers_in.opera = 1; |
| r->headers_in.msie = 0; |
| r->headers_in.msie6 = 0; |
| } |
| |
| if (!r->headers_in.msie && !r->headers_in.opera) { |
| |
| if (ngx_strstrn(user_agent, "Gecko/", 6 - 1)) { |
| r->headers_in.gecko = 1; |
| |
| } else if (ngx_strstrn(user_agent, "Chrome/", 7 - 1)) { |
| r->headers_in.chrome = 1; |
| |
| } else if (ngx_strstrn(user_agent, "Safari/", 7 - 1) |
| && ngx_strstrn(user_agent, "Mac OS X", 8 - 1)) |
| { |
| r->headers_in.safari = 1; |
| |
| } else if (ngx_strstrn(user_agent, "Konqueror", 9 - 1)) { |
| r->headers_in.konqueror = 1; |
| } |
| } |
| |
| return ngx_http_set_builtin_header(r, hv, value); |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_set_content_length_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value) |
| { |
| off_t len; |
| |
| if (value->len == 0) { |
| return ngx_http_clear_content_length_header(r, hv, value); |
| } |
| |
| len = ngx_atosz(value->data, value->len); |
| if (len == NGX_ERROR) { |
| return NGX_ERROR; |
| } |
| |
| dd("reset headers_in.content_length_n to %d", (int)len); |
| |
| r->headers_in.content_length_n = len; |
| |
| return ngx_http_set_builtin_header(r, hv, value); |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_set_cookie_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value) |
| { |
| ngx_table_elt_t **cookie, *h; |
| |
| if (!hv->no_override && r->headers_in.cookies.nelts > 0) { |
| ngx_array_destroy(&r->headers_in.cookies); |
| |
| if (ngx_array_init(&r->headers_in.cookies, r->pool, 2, |
| sizeof(ngx_table_elt_t *)) |
| != NGX_OK) |
| { |
| return NGX_ERROR; |
| } |
| |
| dd("clear headers in cookies: %d", (int) r->headers_in.cookies.nelts); |
| } |
| |
| #if 1 |
| if (r->headers_in.cookies.nalloc == 0) { |
| if (ngx_array_init(&r->headers_in.cookies, r->pool, 2, |
| sizeof(ngx_table_elt_t *)) |
| != NGX_OK) |
| { |
| return NGX_ERROR; |
| } |
| } |
| #endif |
| |
| if (ngx_http_set_header_helper(r, hv, value, &h) == NGX_ERROR) { |
| return NGX_ERROR; |
| } |
| |
| if (value->len == 0) { |
| return NGX_OK; |
| } |
| |
| dd("new cookie header: %p", h); |
| |
| cookie = ngx_array_push(&r->headers_in.cookies); |
| if (cookie == NULL) { |
| return NGX_ERROR; |
| } |
| |
| *cookie = h; |
| return NGX_OK; |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_clear_content_length_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value) |
| { |
| r->headers_in.content_length_n = -1; |
| |
| return ngx_http_clear_builtin_header(r, hv, value); |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_clear_builtin_header(ngx_http_request_t *r, |
| ngx_http_lua_header_val_t *hv, ngx_str_t *value) |
| { |
| value->len = 0; |
| return ngx_http_set_builtin_header(r, hv, value); |
| } |
| |
| |
| ngx_int_t |
| ngx_http_lua_set_input_header(ngx_http_request_t *r, ngx_str_t key, |
| ngx_str_t value, unsigned override) |
| { |
| ngx_http_lua_header_val_t hv; |
| ngx_http_lua_set_header_t *handlers = ngx_http_lua_set_handlers; |
| |
| ngx_uint_t i; |
| |
| dd("set header value: %.*s", (int) value.len, value.data); |
| |
| hv.hash = ngx_hash_key_lc(key.data, key.len); |
| hv.key = key; |
| |
| hv.offset = 0; |
| hv.no_override = !override; |
| hv.handler = NULL; |
| |
| for (i = 0; handlers[i].name.len; i++) { |
| if (hv.key.len != handlers[i].name.len |
| || ngx_strncasecmp(hv.key.data, handlers[i].name.data, |
| handlers[i].name.len) != 0) |
| { |
| dd("hv key comparison: %s <> %s", handlers[i].name.data, |
| hv.key.data); |
| |
| continue; |
| } |
| |
| dd("Matched handler: %s %s", handlers[i].name.data, hv.key.data); |
| |
| hv.offset = handlers[i].offset; |
| hv.handler = handlers[i].handler; |
| |
| break; |
| } |
| |
| if (handlers[i].name.len == 0 && handlers[i].handler) { |
| hv.offset = handlers[i].offset; |
| hv.handler = handlers[i].handler; |
| } |
| |
| #if 1 |
| if (hv.handler == NULL) { |
| return NGX_ERROR; |
| } |
| #endif |
| |
| return hv.handler(r, &hv, &value); |
| } |
| |
| |
| static ngx_int_t |
| ngx_http_lua_rm_header_helper(ngx_list_t *l, ngx_list_part_t *cur, |
| ngx_uint_t i) |
| { |
| ngx_table_elt_t *data; |
| ngx_list_part_t *new, *part; |
| |
| dd("list rm item: part %p, i %d, nalloc %d", cur, (int) i, |
| (int) l->nalloc); |
| |
| data = cur->elts; |
| |
| dd("cur: nelts %d, nalloc %d", (int) cur->nelts, |
| (int) l->nalloc); |
| |
| dd("removing: \"%.*s:%.*s\"", (int) data[i].key.len, data[i].key.data, |
| (int) data[i].value.len, data[i].value.data); |
| |
| if (i == 0) { |
| dd("first entry in the part"); |
| cur->elts = (char *) cur->elts + l->size; |
| cur->nelts--; |
| |
| if (cur == l->last) { |
| dd("being the last part"); |
| if (cur->nelts == 0) { |
| #if 1 |
| part = &l->part; |
| dd("cur=%p, part=%p, part next=%p, last=%p", |
| cur, part, part->next, l->last); |
| |
| if (part == cur) { |
| cur->elts = (char *) cur->elts - l->size; |
| /* do nothing */ |
| |
| } else { |
| while (part->next != cur) { |
| if (part->next == NULL) { |
| return NGX_ERROR; |
| } |
| part = part->next; |
| } |
| |
| l->last = part; |
| part->next = NULL; |
| dd("part nelts: %d", (int) part->nelts); |
| l->nalloc = part->nelts; |
| } |
| #endif |
| |
| } else { |
| l->nalloc--; |
| dd("nalloc decreased: %d", (int) l->nalloc); |
| } |
| |
| return NGX_OK; |
| } |
| |
| if (cur->nelts == 0) { |
| dd("current part is empty"); |
| part = &l->part; |
| if (part == cur) { |
| ngx_http_lua_assert(cur->next != NULL); |
| |
| dd("remove 'cur' from the list by rewriting 'cur': " |
| "l->last: %p, cur: %p, cur->next: %p, part: %p", |
| l->last, cur, cur->next, part); |
| |
| if (l->last == cur->next) { |
| dd("last is cur->next"); |
| l->part = *(cur->next); |
| l->last = part; |
| l->nalloc = part->nelts; |
| |
| } else { |
| l->part = *(cur->next); |
| } |
| |
| } else { |
| dd("remove 'cur' from the list"); |
| while (part->next != cur) { |
| if (part->next == NULL) { |
| return NGX_ERROR; |
| } |
| part = part->next; |
| } |
| |
| part->next = cur->next; |
| } |
| |
| return NGX_OK; |
| } |
| |
| return NGX_OK; |
| } |
| |
| if (i == cur->nelts - 1) { |
| dd("last entry in the part"); |
| |
| cur->nelts--; |
| |
| if (cur == l->last) { |
| l->nalloc--; |
| } |
| |
| return NGX_OK; |
| } |
| |
| dd("the middle entry in the part"); |
| |
| new = ngx_palloc(l->pool, sizeof(ngx_list_part_t)); |
| if (new == NULL) { |
| return NGX_ERROR; |
| } |
| |
| new->elts = &data[i + 1]; |
| new->nelts = cur->nelts - i - 1; |
| new->next = cur->next; |
| |
| cur->nelts = i; |
| cur->next = new; |
| |
| if (cur == l->last) { |
| l->last = new; |
| l->nalloc = new->nelts; |
| } |
| |
| return NGX_OK; |
| } |
| |
| /* vi:set ft=c ts=4 sw=4 et fdm=marker: */ |