blob: 478036979f34df213a301715f8948cb7b0098f82 [file] [log] [blame]
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001
2/*
3 * Copyright (C) Nginx, Inc.
4 * Copyright (C) Valentin V. Bartenev
5 */
6
7
8#include <ngx_config.h>
9#include <ngx_core.h>
10#include <ngx_http.h>
11#include <ngx_http_spdy_module.h>
12
13#include <zlib.h>
14
15
16#if (NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED)
17
18#define ngx_str5cmp(m, c0, c1, c2, c3, c4) \
19 *(uint32_t *) m == (c3 << 24 | c2 << 16 | c1 << 8 | c0) \
20 && m[4] == c4
21
22#else
23
24#define ngx_str5cmp(m, c0, c1, c2, c3, c4) \
25 m[0] == c0 && m[1] == c1 && m[2] == c2 && m[3] == c3 && m[4] == c4
26
27#endif
28
29
30#if (NGX_HAVE_NONALIGNED)
31
32#define ngx_spdy_frame_parse_uint16(p) ntohs(*(uint16_t *) (p))
33#define ngx_spdy_frame_parse_uint32(p) ntohl(*(uint32_t *) (p))
34
35#else
36
37#define ngx_spdy_frame_parse_uint16(p) ((p)[0] << 8 | (p)[1])
38#define ngx_spdy_frame_parse_uint32(p) \
39 ((p)[0] << 24 | (p)[1] << 16 | (p)[2] << 8 | (p)[3])
40
41#endif
42
43#define ngx_spdy_frame_parse_sid(p) \
44 (ngx_spdy_frame_parse_uint32(p) & 0x7fffffff)
Valentin Bartenev449e8ee2014-01-31 19:17:26 +040045#define ngx_spdy_frame_parse_delta(p) \
46 (ngx_spdy_frame_parse_uint32(p) & 0x7fffffff)
Valentin Bartenev2686cb42013-03-20 10:36:57 +000047
48
49#define ngx_spdy_ctl_frame_check(h) \
Valentin Barteneva547f4a2014-04-07 19:27:56 +040050 (((h) & 0xffff0000) == ngx_spdy_ctl_frame_head(0))
Valentin Bartenev2686cb42013-03-20 10:36:57 +000051#define ngx_spdy_data_frame_check(h) \
52 (!((h) & (uint32_t) NGX_SPDY_CTL_BIT << 31))
53
Valentin Barteneva547f4a2014-04-07 19:27:56 +040054#define ngx_spdy_ctl_frame_type(h) ((h) & 0x0000ffff)
Valentin Bartenev2686cb42013-03-20 10:36:57 +000055#define ngx_spdy_frame_flags(p) ((p) >> 24)
56#define ngx_spdy_frame_length(p) ((p) & 0x00ffffff)
Valentin Bartenev449e8ee2014-01-31 19:17:26 +040057#define ngx_spdy_frame_id(p) ((p) & 0x00ffffff)
Valentin Bartenev2686cb42013-03-20 10:36:57 +000058
59
60#define NGX_SPDY_SKIP_HEADERS_BUFFER_SIZE 4096
61#define NGX_SPDY_CTL_FRAME_BUFFER_SIZE 16
62
63#define NGX_SPDY_PROTOCOL_ERROR 1
64#define NGX_SPDY_INVALID_STREAM 2
65#define NGX_SPDY_REFUSED_STREAM 3
66#define NGX_SPDY_UNSUPPORTED_VERSION 4
67#define NGX_SPDY_CANCEL 5
68#define NGX_SPDY_INTERNAL_ERROR 6
69#define NGX_SPDY_FLOW_CONTROL_ERROR 7
Valentin Bartenev449e8ee2014-01-31 19:17:26 +040070#define NGX_SPDY_STREAM_IN_USE 8
71#define NGX_SPDY_STREAM_ALREADY_CLOSED 9
72/* deprecated 10 */
73#define NGX_SPDY_FRAME_TOO_LARGE 11
Valentin Bartenev2686cb42013-03-20 10:36:57 +000074
75#define NGX_SPDY_SETTINGS_MAX_STREAMS 4
Valentin Bartenev449e8ee2014-01-31 19:17:26 +040076#define NGX_SPDY_SETTINGS_INIT_WINDOW 7
Valentin Bartenev2686cb42013-03-20 10:36:57 +000077
78#define NGX_SPDY_SETTINGS_FLAG_PERSIST 0x01
Valentin Bartenev449e8ee2014-01-31 19:17:26 +040079#define NGX_SPDY_SETTINGS_FLAG_PERSISTED 0x02
80
81#define NGX_SPDY_MAX_WINDOW NGX_MAX_INT32_VALUE
82#define NGX_SPDY_CONNECTION_WINDOW 65536
83#define NGX_SPDY_INIT_STREAM_WINDOW 65536
84#define NGX_SPDY_STREAM_WINDOW NGX_SPDY_MAX_WINDOW
Valentin Bartenev2686cb42013-03-20 10:36:57 +000085
86typedef struct {
87 ngx_uint_t hash;
88 u_char len;
89 u_char header[7];
90 ngx_int_t (*handler)(ngx_http_request_t *r);
91} ngx_http_spdy_request_header_t;
92
93
94static void ngx_http_spdy_read_handler(ngx_event_t *rev);
95static void ngx_http_spdy_write_handler(ngx_event_t *wev);
96static void ngx_http_spdy_handle_connection(ngx_http_spdy_connection_t *sc);
97
Roman Arutyunyan0b5f3292014-03-17 17:41:24 +040098static u_char *ngx_http_spdy_proxy_protocol(ngx_http_spdy_connection_t *sc,
99 u_char *pos, u_char *end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000100static u_char *ngx_http_spdy_state_head(ngx_http_spdy_connection_t *sc,
101 u_char *pos, u_char *end);
102static u_char *ngx_http_spdy_state_syn_stream(ngx_http_spdy_connection_t *sc,
103 u_char *pos, u_char *end);
104static u_char *ngx_http_spdy_state_headers(ngx_http_spdy_connection_t *sc,
105 u_char *pos, u_char *end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000106static u_char *ngx_http_spdy_state_headers_skip(ngx_http_spdy_connection_t *sc,
107 u_char *pos, u_char *end);
Valentin Bartenevef510792014-04-30 20:34:20 +0400108static u_char *ngx_http_spdy_state_headers_error(ngx_http_spdy_connection_t *sc,
109 u_char *pos, u_char *end);
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400110static u_char *ngx_http_spdy_state_window_update(ngx_http_spdy_connection_t *sc,
111 u_char *pos, u_char *end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000112static u_char *ngx_http_spdy_state_data(ngx_http_spdy_connection_t *sc,
113 u_char *pos, u_char *end);
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400114static u_char *ngx_http_spdy_state_read_data(ngx_http_spdy_connection_t *sc,
115 u_char *pos, u_char *end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000116static u_char *ngx_http_spdy_state_rst_stream(ngx_http_spdy_connection_t *sc,
117 u_char *pos, u_char *end);
118static u_char *ngx_http_spdy_state_ping(ngx_http_spdy_connection_t *sc,
119 u_char *pos, u_char *end);
120static u_char *ngx_http_spdy_state_skip(ngx_http_spdy_connection_t *sc,
121 u_char *pos, u_char *end);
122static u_char *ngx_http_spdy_state_settings(ngx_http_spdy_connection_t *sc,
123 u_char *pos, u_char *end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000124static u_char *ngx_http_spdy_state_complete(ngx_http_spdy_connection_t *sc,
125 u_char *pos, u_char *end);
126static u_char *ngx_http_spdy_state_save(ngx_http_spdy_connection_t *sc,
127 u_char *pos, u_char *end, ngx_http_spdy_handler_pt handler);
Valentin Bartenevcf770dd2014-04-30 20:34:20 +0400128
129static u_char *ngx_http_spdy_state_inflate_error(
130 ngx_http_spdy_connection_t *sc, int rc);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000131static u_char *ngx_http_spdy_state_protocol_error(
132 ngx_http_spdy_connection_t *sc);
133static u_char *ngx_http_spdy_state_internal_error(
134 ngx_http_spdy_connection_t *sc);
135
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400136static ngx_int_t ngx_http_spdy_send_window_update(
137 ngx_http_spdy_connection_t *sc, ngx_uint_t sid, ngx_uint_t delta);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000138static ngx_int_t ngx_http_spdy_send_rst_stream(ngx_http_spdy_connection_t *sc,
139 ngx_uint_t sid, ngx_uint_t status, ngx_uint_t priority);
140static ngx_int_t ngx_http_spdy_send_settings(ngx_http_spdy_connection_t *sc);
141static ngx_int_t ngx_http_spdy_settings_frame_handler(
142 ngx_http_spdy_connection_t *sc, ngx_http_spdy_out_frame_t *frame);
143static ngx_http_spdy_out_frame_t *ngx_http_spdy_get_ctl_frame(
144 ngx_http_spdy_connection_t *sc, size_t size, ngx_uint_t priority);
145static ngx_int_t ngx_http_spdy_ctl_frame_handler(
146 ngx_http_spdy_connection_t *sc, ngx_http_spdy_out_frame_t *frame);
147
148static ngx_http_spdy_stream_t *ngx_http_spdy_create_stream(
149 ngx_http_spdy_connection_t *sc, ngx_uint_t id, ngx_uint_t priority);
150static ngx_http_spdy_stream_t *ngx_http_spdy_get_stream_by_id(
151 ngx_http_spdy_connection_t *sc, ngx_uint_t sid);
152#define ngx_http_spdy_streams_index_size(sscf) (sscf->streams_index_mask + 1)
153#define ngx_http_spdy_stream_index(sscf, sid) \
154 ((sid >> 1) & sscf->streams_index_mask)
155
156static ngx_int_t ngx_http_spdy_parse_header(ngx_http_request_t *r);
157static ngx_int_t ngx_http_spdy_alloc_large_header_buffer(ngx_http_request_t *r);
158
159static ngx_int_t ngx_http_spdy_handle_request_header(ngx_http_request_t *r);
160static ngx_int_t ngx_http_spdy_parse_method(ngx_http_request_t *r);
161static ngx_int_t ngx_http_spdy_parse_scheme(ngx_http_request_t *r);
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400162static ngx_int_t ngx_http_spdy_parse_host(ngx_http_request_t *r);
163static ngx_int_t ngx_http_spdy_parse_path(ngx_http_request_t *r);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000164static ngx_int_t ngx_http_spdy_parse_version(ngx_http_request_t *r);
165
166static ngx_int_t ngx_http_spdy_construct_request_line(ngx_http_request_t *r);
167static void ngx_http_spdy_run_request(ngx_http_request_t *r);
168static ngx_int_t ngx_http_spdy_init_request_body(ngx_http_request_t *r);
169
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400170static ngx_int_t ngx_http_spdy_terminate_stream(ngx_http_spdy_connection_t *sc,
171 ngx_http_spdy_stream_t *stream, ngx_uint_t status);
172
Valentin Bartenev92b82c82013-10-01 00:04:00 +0400173static void ngx_http_spdy_close_stream_handler(ngx_event_t *ev);
174
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000175static void ngx_http_spdy_handle_connection_handler(ngx_event_t *rev);
176static void ngx_http_spdy_keepalive_handler(ngx_event_t *rev);
177static void ngx_http_spdy_finalize_connection(ngx_http_spdy_connection_t *sc,
178 ngx_int_t rc);
179
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400180static ngx_int_t ngx_http_spdy_adjust_windows(ngx_http_spdy_connection_t *sc,
181 ssize_t delta);
182
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000183static void ngx_http_spdy_pool_cleanup(void *data);
184
185static void *ngx_http_spdy_zalloc(void *opaque, u_int items, u_int size);
186static void ngx_http_spdy_zfree(void *opaque, void *address);
187
188
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400189static const u_char ngx_http_spdy_dict[] = {
190 0x00, 0x00, 0x00, 0x07, 0x6f, 0x70, 0x74, 0x69, /* - - - - o p t i */
191 0x6f, 0x6e, 0x73, 0x00, 0x00, 0x00, 0x04, 0x68, /* o n s - - - - h */
192 0x65, 0x61, 0x64, 0x00, 0x00, 0x00, 0x04, 0x70, /* e a d - - - - p */
193 0x6f, 0x73, 0x74, 0x00, 0x00, 0x00, 0x03, 0x70, /* o s t - - - - p */
194 0x75, 0x74, 0x00, 0x00, 0x00, 0x06, 0x64, 0x65, /* u t - - - - d e */
195 0x6c, 0x65, 0x74, 0x65, 0x00, 0x00, 0x00, 0x05, /* l e t e - - - - */
196 0x74, 0x72, 0x61, 0x63, 0x65, 0x00, 0x00, 0x00, /* t r a c e - - - */
197 0x06, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x00, /* - a c c e p t - */
198 0x00, 0x00, 0x0e, 0x61, 0x63, 0x63, 0x65, 0x70, /* - - - a c c e p */
199 0x74, 0x2d, 0x63, 0x68, 0x61, 0x72, 0x73, 0x65, /* t - c h a r s e */
200 0x74, 0x00, 0x00, 0x00, 0x0f, 0x61, 0x63, 0x63, /* t - - - - a c c */
201 0x65, 0x70, 0x74, 0x2d, 0x65, 0x6e, 0x63, 0x6f, /* e p t - e n c o */
202 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x0f, /* d i n g - - - - */
203 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x2d, 0x6c, /* a c c e p t - l */
204 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x00, /* a n g u a g e - */
205 0x00, 0x00, 0x0d, 0x61, 0x63, 0x63, 0x65, 0x70, /* - - - a c c e p */
206 0x74, 0x2d, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73, /* t - r a n g e s */
207 0x00, 0x00, 0x00, 0x03, 0x61, 0x67, 0x65, 0x00, /* - - - - a g e - */
208 0x00, 0x00, 0x05, 0x61, 0x6c, 0x6c, 0x6f, 0x77, /* - - - a l l o w */
209 0x00, 0x00, 0x00, 0x0d, 0x61, 0x75, 0x74, 0x68, /* - - - - a u t h */
210 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, /* o r i z a t i o */
211 0x6e, 0x00, 0x00, 0x00, 0x0d, 0x63, 0x61, 0x63, /* n - - - - c a c */
212 0x68, 0x65, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x72, /* h e - c o n t r */
213 0x6f, 0x6c, 0x00, 0x00, 0x00, 0x0a, 0x63, 0x6f, /* o l - - - - c o */
214 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, /* n n e c t i o n */
215 0x00, 0x00, 0x00, 0x0c, 0x63, 0x6f, 0x6e, 0x74, /* - - - - c o n t */
216 0x65, 0x6e, 0x74, 0x2d, 0x62, 0x61, 0x73, 0x65, /* e n t - b a s e */
217 0x00, 0x00, 0x00, 0x10, 0x63, 0x6f, 0x6e, 0x74, /* - - - - c o n t */
218 0x65, 0x6e, 0x74, 0x2d, 0x65, 0x6e, 0x63, 0x6f, /* e n t - e n c o */
219 0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x10, /* d i n g - - - - */
220 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, /* c o n t e n t - */
221 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, /* l a n g u a g e */
222 0x00, 0x00, 0x00, 0x0e, 0x63, 0x6f, 0x6e, 0x74, /* - - - - c o n t */
223 0x65, 0x6e, 0x74, 0x2d, 0x6c, 0x65, 0x6e, 0x67, /* e n t - l e n g */
224 0x74, 0x68, 0x00, 0x00, 0x00, 0x10, 0x63, 0x6f, /* t h - - - - c o */
225 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x6c, 0x6f, /* n t e n t - l o */
226 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, /* c a t i o n - - */
227 0x00, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, /* - - c o n t e n */
228 0x74, 0x2d, 0x6d, 0x64, 0x35, 0x00, 0x00, 0x00, /* t - m d 5 - - - */
229 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, /* - c o n t e n t */
230 0x2d, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x00, /* - r a n g e - - */
231 0x00, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, /* - - c o n t e n */
232 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, /* t - t y p e - - */
233 0x00, 0x04, 0x64, 0x61, 0x74, 0x65, 0x00, 0x00, /* - - d a t e - - */
234 0x00, 0x04, 0x65, 0x74, 0x61, 0x67, 0x00, 0x00, /* - - e t a g - - */
235 0x00, 0x06, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, /* - - e x p e c t */
236 0x00, 0x00, 0x00, 0x07, 0x65, 0x78, 0x70, 0x69, /* - - - - e x p i */
237 0x72, 0x65, 0x73, 0x00, 0x00, 0x00, 0x04, 0x66, /* r e s - - - - f */
238 0x72, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x04, 0x68, /* r o m - - - - h */
239 0x6f, 0x73, 0x74, 0x00, 0x00, 0x00, 0x08, 0x69, /* o s t - - - - i */
240 0x66, 0x2d, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x00, /* f - m a t c h - */
241 0x00, 0x00, 0x11, 0x69, 0x66, 0x2d, 0x6d, 0x6f, /* - - - i f - m o */
242 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x2d, 0x73, /* d i f i e d - s */
243 0x69, 0x6e, 0x63, 0x65, 0x00, 0x00, 0x00, 0x0d, /* i n c e - - - - */
244 0x69, 0x66, 0x2d, 0x6e, 0x6f, 0x6e, 0x65, 0x2d, /* i f - n o n e - */
245 0x6d, 0x61, 0x74, 0x63, 0x68, 0x00, 0x00, 0x00, /* m a t c h - - - */
246 0x08, 0x69, 0x66, 0x2d, 0x72, 0x61, 0x6e, 0x67, /* - i f - r a n g */
247 0x65, 0x00, 0x00, 0x00, 0x13, 0x69, 0x66, 0x2d, /* e - - - - i f - */
248 0x75, 0x6e, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, /* u n m o d i f i */
249 0x65, 0x64, 0x2d, 0x73, 0x69, 0x6e, 0x63, 0x65, /* e d - s i n c e */
250 0x00, 0x00, 0x00, 0x0d, 0x6c, 0x61, 0x73, 0x74, /* - - - - l a s t */
251 0x2d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, /* - m o d i f i e */
252 0x64, 0x00, 0x00, 0x00, 0x08, 0x6c, 0x6f, 0x63, /* d - - - - l o c */
253 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, /* a t i o n - - - */
254 0x0c, 0x6d, 0x61, 0x78, 0x2d, 0x66, 0x6f, 0x72, /* - m a x - f o r */
255 0x77, 0x61, 0x72, 0x64, 0x73, 0x00, 0x00, 0x00, /* w a r d s - - - */
256 0x06, 0x70, 0x72, 0x61, 0x67, 0x6d, 0x61, 0x00, /* - p r a g m a - */
257 0x00, 0x00, 0x12, 0x70, 0x72, 0x6f, 0x78, 0x79, /* - - - p r o x y */
258 0x2d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, /* - a u t h e n t */
259 0x69, 0x63, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, /* i c a t e - - - */
260 0x13, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2d, 0x61, /* - p r o x y - a */
261 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, /* u t h o r i z a */
262 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x05, /* t i o n - - - - */
263 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x00, 0x00, /* r a n g e - - - */
264 0x07, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, /* - r e f e r e r */
265 0x00, 0x00, 0x00, 0x0b, 0x72, 0x65, 0x74, 0x72, /* - - - - r e t r */
266 0x79, 0x2d, 0x61, 0x66, 0x74, 0x65, 0x72, 0x00, /* y - a f t e r - */
267 0x00, 0x00, 0x06, 0x73, 0x65, 0x72, 0x76, 0x65, /* - - - s e r v e */
268 0x72, 0x00, 0x00, 0x00, 0x02, 0x74, 0x65, 0x00, /* r - - - - t e - */
269 0x00, 0x00, 0x07, 0x74, 0x72, 0x61, 0x69, 0x6c, /* - - - t r a i l */
270 0x65, 0x72, 0x00, 0x00, 0x00, 0x11, 0x74, 0x72, /* e r - - - - t r */
271 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x2d, 0x65, /* a n s f e r - e */
272 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00, /* n c o d i n g - */
273 0x00, 0x00, 0x07, 0x75, 0x70, 0x67, 0x72, 0x61, /* - - - u p g r a */
274 0x64, 0x65, 0x00, 0x00, 0x00, 0x0a, 0x75, 0x73, /* d e - - - - u s */
275 0x65, 0x72, 0x2d, 0x61, 0x67, 0x65, 0x6e, 0x74, /* e r - a g e n t */
276 0x00, 0x00, 0x00, 0x04, 0x76, 0x61, 0x72, 0x79, /* - - - - v a r y */
277 0x00, 0x00, 0x00, 0x03, 0x76, 0x69, 0x61, 0x00, /* - - - - v i a - */
278 0x00, 0x00, 0x07, 0x77, 0x61, 0x72, 0x6e, 0x69, /* - - - w a r n i */
279 0x6e, 0x67, 0x00, 0x00, 0x00, 0x10, 0x77, 0x77, /* n g - - - - w w */
280 0x77, 0x2d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, /* w - a u t h e n */
281 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x00, 0x00, /* t i c a t e - - */
282 0x00, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, /* - - m e t h o d */
283 0x00, 0x00, 0x00, 0x03, 0x67, 0x65, 0x74, 0x00, /* - - - - g e t - */
284 0x00, 0x00, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, /* - - - s t a t u */
285 0x73, 0x00, 0x00, 0x00, 0x06, 0x32, 0x30, 0x30, /* s - - - - 2 0 0 */
286 0x20, 0x4f, 0x4b, 0x00, 0x00, 0x00, 0x07, 0x76, /* - O K - - - - v */
287 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x00, 0x00, /* e r s i o n - - */
288 0x00, 0x08, 0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, /* - - H T T P - 1 */
289 0x2e, 0x31, 0x00, 0x00, 0x00, 0x03, 0x75, 0x72, /* - 1 - - - - u r */
290 0x6c, 0x00, 0x00, 0x00, 0x06, 0x70, 0x75, 0x62, /* l - - - - p u b */
291 0x6c, 0x69, 0x63, 0x00, 0x00, 0x00, 0x0a, 0x73, /* l i c - - - - s */
292 0x65, 0x74, 0x2d, 0x63, 0x6f, 0x6f, 0x6b, 0x69, /* e t - c o o k i */
293 0x65, 0x00, 0x00, 0x00, 0x0a, 0x6b, 0x65, 0x65, /* e - - - - k e e */
294 0x70, 0x2d, 0x61, 0x6c, 0x69, 0x76, 0x65, 0x00, /* p - a l i v e - */
295 0x00, 0x00, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69, /* - - - o r i g i */
296 0x6e, 0x31, 0x30, 0x30, 0x31, 0x30, 0x31, 0x32, /* n 1 0 0 1 0 1 2 */
297 0x30, 0x31, 0x32, 0x30, 0x32, 0x32, 0x30, 0x35, /* 0 1 2 0 2 2 0 5 */
298 0x32, 0x30, 0x36, 0x33, 0x30, 0x30, 0x33, 0x30, /* 2 0 6 3 0 0 3 0 */
299 0x32, 0x33, 0x30, 0x33, 0x33, 0x30, 0x34, 0x33, /* 2 3 0 3 3 0 4 3 */
300 0x30, 0x35, 0x33, 0x30, 0x36, 0x33, 0x30, 0x37, /* 0 5 3 0 6 3 0 7 */
301 0x34, 0x30, 0x32, 0x34, 0x30, 0x35, 0x34, 0x30, /* 4 0 2 4 0 5 4 0 */
302 0x36, 0x34, 0x30, 0x37, 0x34, 0x30, 0x38, 0x34, /* 6 4 0 7 4 0 8 4 */
303 0x30, 0x39, 0x34, 0x31, 0x30, 0x34, 0x31, 0x31, /* 0 9 4 1 0 4 1 1 */
304 0x34, 0x31, 0x32, 0x34, 0x31, 0x33, 0x34, 0x31, /* 4 1 2 4 1 3 4 1 */
305 0x34, 0x34, 0x31, 0x35, 0x34, 0x31, 0x36, 0x34, /* 4 4 1 5 4 1 6 4 */
306 0x31, 0x37, 0x35, 0x30, 0x32, 0x35, 0x30, 0x34, /* 1 7 5 0 2 5 0 4 */
307 0x35, 0x30, 0x35, 0x32, 0x30, 0x33, 0x20, 0x4e, /* 5 0 5 2 0 3 - N */
308 0x6f, 0x6e, 0x2d, 0x41, 0x75, 0x74, 0x68, 0x6f, /* o n - A u t h o */
309 0x72, 0x69, 0x74, 0x61, 0x74, 0x69, 0x76, 0x65, /* r i t a t i v e */
310 0x20, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, /* - I n f o r m a */
311 0x74, 0x69, 0x6f, 0x6e, 0x32, 0x30, 0x34, 0x20, /* t i o n 2 0 4 - */
312 0x4e, 0x6f, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x65, /* N o - C o n t e */
313 0x6e, 0x74, 0x33, 0x30, 0x31, 0x20, 0x4d, 0x6f, /* n t 3 0 1 - M o */
314 0x76, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x6d, /* v e d - P e r m */
315 0x61, 0x6e, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x34, /* a n e n t l y 4 */
316 0x30, 0x30, 0x20, 0x42, 0x61, 0x64, 0x20, 0x52, /* 0 0 - B a d - R */
317 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x34, 0x30, /* e q u e s t 4 0 */
318 0x31, 0x20, 0x55, 0x6e, 0x61, 0x75, 0x74, 0x68, /* 1 - U n a u t h */
319 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x34, 0x30, /* o r i z e d 4 0 */
320 0x33, 0x20, 0x46, 0x6f, 0x72, 0x62, 0x69, 0x64, /* 3 - F o r b i d */
321 0x64, 0x65, 0x6e, 0x34, 0x30, 0x34, 0x20, 0x4e, /* d e n 4 0 4 - N */
322 0x6f, 0x74, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, /* o t - F o u n d */
323 0x35, 0x30, 0x30, 0x20, 0x49, 0x6e, 0x74, 0x65, /* 5 0 0 - I n t e */
324 0x72, 0x6e, 0x61, 0x6c, 0x20, 0x53, 0x65, 0x72, /* r n a l - S e r */
325 0x76, 0x65, 0x72, 0x20, 0x45, 0x72, 0x72, 0x6f, /* v e r - E r r o */
326 0x72, 0x35, 0x30, 0x31, 0x20, 0x4e, 0x6f, 0x74, /* r 5 0 1 - N o t */
327 0x20, 0x49, 0x6d, 0x70, 0x6c, 0x65, 0x6d, 0x65, /* - I m p l e m e */
328 0x6e, 0x74, 0x65, 0x64, 0x35, 0x30, 0x33, 0x20, /* n t e d 5 0 3 - */
329 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x20, /* S e r v i c e - */
330 0x55, 0x6e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, /* U n a v a i l a */
331 0x62, 0x6c, 0x65, 0x4a, 0x61, 0x6e, 0x20, 0x46, /* b l e J a n - F */
332 0x65, 0x62, 0x20, 0x4d, 0x61, 0x72, 0x20, 0x41, /* e b - M a r - A */
333 0x70, 0x72, 0x20, 0x4d, 0x61, 0x79, 0x20, 0x4a, /* p r - M a y - J */
334 0x75, 0x6e, 0x20, 0x4a, 0x75, 0x6c, 0x20, 0x41, /* u n - J u l - A */
335 0x75, 0x67, 0x20, 0x53, 0x65, 0x70, 0x74, 0x20, /* u g - S e p t - */
336 0x4f, 0x63, 0x74, 0x20, 0x4e, 0x6f, 0x76, 0x20, /* O c t - N o v - */
337 0x44, 0x65, 0x63, 0x20, 0x30, 0x30, 0x3a, 0x30, /* D e c - 0 0 - 0 */
338 0x30, 0x3a, 0x30, 0x30, 0x20, 0x4d, 0x6f, 0x6e, /* 0 - 0 0 - M o n */
339 0x2c, 0x20, 0x54, 0x75, 0x65, 0x2c, 0x20, 0x57, /* - - T u e - - W */
340 0x65, 0x64, 0x2c, 0x20, 0x54, 0x68, 0x75, 0x2c, /* e d - - T h u - */
341 0x20, 0x46, 0x72, 0x69, 0x2c, 0x20, 0x53, 0x61, /* - F r i - - S a */
342 0x74, 0x2c, 0x20, 0x53, 0x75, 0x6e, 0x2c, 0x20, /* t - - S u n - - */
343 0x47, 0x4d, 0x54, 0x63, 0x68, 0x75, 0x6e, 0x6b, /* G M T c h u n k */
344 0x65, 0x64, 0x2c, 0x74, 0x65, 0x78, 0x74, 0x2f, /* e d - t e x t - */
345 0x68, 0x74, 0x6d, 0x6c, 0x2c, 0x69, 0x6d, 0x61, /* h t m l - i m a */
346 0x67, 0x65, 0x2f, 0x70, 0x6e, 0x67, 0x2c, 0x69, /* g e - p n g - i */
347 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x6a, 0x70, 0x67, /* m a g e - j p g */
348 0x2c, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x67, /* - i m a g e - g */
349 0x69, 0x66, 0x2c, 0x61, 0x70, 0x70, 0x6c, 0x69, /* i f - a p p l i */
350 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x78, /* c a t i o n - x */
351 0x6d, 0x6c, 0x2c, 0x61, 0x70, 0x70, 0x6c, 0x69, /* m l - a p p l i */
352 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x78, /* c a t i o n - x */
353 0x68, 0x74, 0x6d, 0x6c, 0x2b, 0x78, 0x6d, 0x6c, /* h t m l - x m l */
354 0x2c, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x70, 0x6c, /* - t e x t - p l */
355 0x61, 0x69, 0x6e, 0x2c, 0x74, 0x65, 0x78, 0x74, /* a i n - t e x t */
356 0x2f, 0x6a, 0x61, 0x76, 0x61, 0x73, 0x63, 0x72, /* - j a v a s c r */
357 0x69, 0x70, 0x74, 0x2c, 0x70, 0x75, 0x62, 0x6c, /* i p t - p u b l */
358 0x69, 0x63, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, /* i c p r i v a t */
359 0x65, 0x6d, 0x61, 0x78, 0x2d, 0x61, 0x67, 0x65, /* e m a x - a g e */
360 0x3d, 0x67, 0x7a, 0x69, 0x70, 0x2c, 0x64, 0x65, /* - g z i p - d e */
361 0x66, 0x6c, 0x61, 0x74, 0x65, 0x2c, 0x73, 0x64, /* f l a t e - s d */
362 0x63, 0x68, 0x63, 0x68, 0x61, 0x72, 0x73, 0x65, /* c h c h a r s e */
363 0x74, 0x3d, 0x75, 0x74, 0x66, 0x2d, 0x38, 0x63, /* t - u t f - 8 c */
364 0x68, 0x61, 0x72, 0x73, 0x65, 0x74, 0x3d, 0x69, /* h a r s e t - i */
365 0x73, 0x6f, 0x2d, 0x38, 0x38, 0x35, 0x39, 0x2d, /* s o - 8 8 5 9 - */
366 0x31, 0x2c, 0x75, 0x74, 0x66, 0x2d, 0x2c, 0x2a, /* 1 - u t f - - - */
367 0x2c, 0x65, 0x6e, 0x71, 0x3d, 0x30, 0x2e /* - e n q - 0 - */
368};
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000369
370
371static ngx_http_spdy_request_header_t ngx_http_spdy_request_headers[] = {
372 { 0, 6, "method", ngx_http_spdy_parse_method },
373 { 0, 6, "scheme", ngx_http_spdy_parse_scheme },
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400374 { 0, 4, "host", ngx_http_spdy_parse_host },
375 { 0, 4, "path", ngx_http_spdy_parse_path },
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000376 { 0, 7, "version", ngx_http_spdy_parse_version },
377};
378
379#define NGX_SPDY_REQUEST_HEADERS \
380 (sizeof(ngx_http_spdy_request_headers) \
381 / sizeof(ngx_http_spdy_request_header_t))
382
383
384void
385ngx_http_spdy_init(ngx_event_t *rev)
386{
387 int rc;
388 ngx_connection_t *c;
389 ngx_pool_cleanup_t *cln;
390 ngx_http_connection_t *hc;
391 ngx_http_spdy_srv_conf_t *sscf;
392 ngx_http_spdy_main_conf_t *smcf;
393 ngx_http_spdy_connection_t *sc;
394
395 c = rev->data;
396 hc = c->data;
397
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400398 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "init spdy request");
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000399
400 c->log->action = "processing SPDY";
401
402 smcf = ngx_http_get_module_main_conf(hc->conf_ctx, ngx_http_spdy_module);
403
404 if (smcf->recv_buffer == NULL) {
405 smcf->recv_buffer = ngx_palloc(ngx_cycle->pool, smcf->recv_buffer_size);
406 if (smcf->recv_buffer == NULL) {
407 ngx_http_close_connection(c);
408 return;
409 }
410 }
411
412 sc = ngx_pcalloc(c->pool, sizeof(ngx_http_spdy_connection_t));
413 if (sc == NULL) {
414 ngx_http_close_connection(c);
415 return;
416 }
417
418 sc->connection = c;
419 sc->http_connection = hc;
420
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400421 sc->send_window = NGX_SPDY_CONNECTION_WINDOW;
422 sc->recv_window = NGX_SPDY_CONNECTION_WINDOW;
423
424 sc->init_window = NGX_SPDY_INIT_STREAM_WINDOW;
425
Valentin Bartenevd51d1682014-05-15 19:22:06 +0400426 sc->handler = hc->proxy_protocol ? ngx_http_spdy_proxy_protocol
427 : ngx_http_spdy_state_head;
Roman Arutyunyan0b5f3292014-03-17 17:41:24 +0400428
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000429 sc->zstream_in.zalloc = ngx_http_spdy_zalloc;
430 sc->zstream_in.zfree = ngx_http_spdy_zfree;
431 sc->zstream_in.opaque = sc;
432
433 rc = inflateInit(&sc->zstream_in);
434 if (rc != Z_OK) {
435 ngx_log_error(NGX_LOG_ALERT, c->log, 0,
436 "inflateInit() failed: %d", rc);
437 ngx_http_close_connection(c);
438 return;
439 }
440
441 sc->zstream_out.zalloc = ngx_http_spdy_zalloc;
442 sc->zstream_out.zfree = ngx_http_spdy_zfree;
443 sc->zstream_out.opaque = sc;
444
445 sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_spdy_module);
446
447 rc = deflateInit2(&sc->zstream_out, (int) sscf->headers_comp,
448 Z_DEFLATED, 11, 4, Z_DEFAULT_STRATEGY);
449
450 if (rc != Z_OK) {
451 ngx_log_error(NGX_LOG_ALERT, c->log, 0,
452 "deflateInit2() failed: %d", rc);
453 ngx_http_close_connection(c);
454 return;
455 }
456
457 rc = deflateSetDictionary(&sc->zstream_out, ngx_http_spdy_dict,
458 sizeof(ngx_http_spdy_dict));
459 if (rc != Z_OK) {
460 ngx_log_error(NGX_LOG_ALERT, c->log, 0,
461 "deflateSetDictionary() failed: %d", rc);
462 ngx_http_close_connection(c);
463 return;
464 }
465
466 sc->pool = ngx_create_pool(sscf->pool_size, sc->connection->log);
467 if (sc->pool == NULL) {
468 ngx_http_close_connection(c);
469 return;
470 }
471
472 cln = ngx_pool_cleanup_add(c->pool, sizeof(ngx_pool_cleanup_file_t));
473 if (cln == NULL) {
474 ngx_http_close_connection(c);
475 return;
476 }
477
478 cln->handler = ngx_http_spdy_pool_cleanup;
479 cln->data = sc;
480
481 sc->streams_index = ngx_pcalloc(sc->pool,
482 ngx_http_spdy_streams_index_size(sscf)
483 * sizeof(ngx_http_spdy_stream_t *));
484 if (sc->streams_index == NULL) {
485 ngx_http_close_connection(c);
486 return;
487 }
488
Valentin Bartenevd055f742014-01-22 04:58:19 +0400489 if (ngx_http_spdy_send_settings(sc) == NGX_ERROR) {
490 ngx_http_close_connection(c);
491 return;
492 }
493
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400494 if (ngx_http_spdy_send_window_update(sc, 0, NGX_SPDY_MAX_WINDOW
495 - sc->recv_window)
496 == NGX_ERROR)
497 {
498 ngx_http_close_connection(c);
499 return;
500 }
501
502 sc->recv_window = NGX_SPDY_MAX_WINDOW;
503
504 ngx_queue_init(&sc->waiting);
Valentin Bartenevabcbe542014-01-20 20:56:49 +0400505 ngx_queue_init(&sc->posted);
506
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000507 c->data = sc;
508
509 rev->handler = ngx_http_spdy_read_handler;
510 c->write->handler = ngx_http_spdy_write_handler;
511
512 ngx_http_spdy_read_handler(rev);
513}
514
515
516static void
517ngx_http_spdy_read_handler(ngx_event_t *rev)
518{
519 u_char *p, *end;
520 size_t available;
521 ssize_t n;
522 ngx_connection_t *c;
523 ngx_http_spdy_main_conf_t *smcf;
524 ngx_http_spdy_connection_t *sc;
525
526 c = rev->data;
527 sc = c->data;
528
529 if (rev->timedout) {
530 ngx_log_error(NGX_LOG_INFO, c->log, NGX_ETIMEDOUT, "client timed out");
531 ngx_http_spdy_finalize_connection(sc, NGX_HTTP_REQUEST_TIME_OUT);
532 return;
533 }
534
535 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "spdy read handler");
536
537 sc->blocked = 1;
538
539 smcf = ngx_http_get_module_main_conf(sc->http_connection->conf_ctx,
540 ngx_http_spdy_module);
541
542 available = smcf->recv_buffer_size - 2 * NGX_SPDY_STATE_BUFFER_SIZE;
543
544 do {
545 p = smcf->recv_buffer;
546
547 ngx_memcpy(p, sc->buffer, NGX_SPDY_STATE_BUFFER_SIZE);
548 end = p + sc->buffer_used;
549
550 n = c->recv(c, end, available);
551
552 if (n == NGX_AGAIN) {
553 break;
554 }
555
Valentin Bartenev6ddb5782014-01-14 16:24:45 +0400556 if (n == 0 && (sc->incomplete || sc->processing)) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000557 ngx_log_error(NGX_LOG_INFO, c->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400558 "client prematurely closed connection");
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000559 }
560
561 if (n == 0 || n == NGX_ERROR) {
562 ngx_http_spdy_finalize_connection(sc,
563 NGX_HTTP_CLIENT_CLOSED_REQUEST);
564 return;
565 }
566
567 end += n;
568
569 sc->buffer_used = 0;
Valentin Bartenev6ddb5782014-01-14 16:24:45 +0400570 sc->incomplete = 0;
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000571
572 do {
573 p = sc->handler(sc, p, end);
574
575 if (p == NULL) {
576 return;
577 }
578
579 } while (p != end);
580
581 } while (rev->ready);
582
583 if (ngx_handle_read_event(rev, 0) != NGX_OK) {
584 ngx_http_spdy_finalize_connection(sc, NGX_HTTP_INTERNAL_SERVER_ERROR);
585 return;
586 }
587
Valentin Bartenev1ef55532014-01-15 17:16:38 +0400588 if (sc->last_out && ngx_http_spdy_send_output_queue(sc) == NGX_ERROR) {
589 ngx_http_spdy_finalize_connection(sc, NGX_HTTP_CLIENT_CLOSED_REQUEST);
590 return;
591 }
592
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000593 sc->blocked = 0;
594
595 if (sc->processing) {
596 if (rev->timer_set) {
597 ngx_del_timer(rev);
598 }
599 return;
600 }
601
602 ngx_http_spdy_handle_connection(sc);
603}
604
605
606static void
607ngx_http_spdy_write_handler(ngx_event_t *wev)
608{
609 ngx_int_t rc;
Valentin Bartenevabcbe542014-01-20 20:56:49 +0400610 ngx_queue_t *q;
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000611 ngx_connection_t *c;
Valentin Bartenevabcbe542014-01-20 20:56:49 +0400612 ngx_http_spdy_stream_t *stream;
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000613 ngx_http_spdy_connection_t *sc;
614
615 c = wev->data;
616 sc = c->data;
617
618 if (wev->timedout) {
619 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0,
620 "spdy write event timed out");
621 ngx_http_spdy_finalize_connection(sc, NGX_HTTP_CLIENT_CLOSED_REQUEST);
622 return;
623 }
624
625 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "spdy write handler");
626
Valentin Bartenev75dad742013-12-26 17:03:16 +0400627 sc->blocked = 1;
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000628
629 rc = ngx_http_spdy_send_output_queue(sc);
630
631 if (rc == NGX_ERROR) {
632 ngx_http_spdy_finalize_connection(sc, NGX_HTTP_CLIENT_CLOSED_REQUEST);
633 return;
634 }
635
Valentin Bartenevabcbe542014-01-20 20:56:49 +0400636 while (!ngx_queue_empty(&sc->posted)) {
637 q = ngx_queue_head(&sc->posted);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000638
Valentin Bartenevabcbe542014-01-20 20:56:49 +0400639 ngx_queue_remove(q);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000640
Valentin Bartenevabcbe542014-01-20 20:56:49 +0400641 stream = ngx_queue_data(q, ngx_http_spdy_stream_t, queue);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000642
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000643 stream->handled = 0;
644
645 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400646 "run spdy stream %ui", stream->id);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000647
648 wev = stream->request->connection->write;
649 wev->handler(wev);
650 }
651
652 sc->blocked = 0;
653
654 if (rc == NGX_AGAIN) {
655 return;
656 }
657
658 ngx_http_spdy_handle_connection(sc);
659}
660
661
662ngx_int_t
663ngx_http_spdy_send_output_queue(ngx_http_spdy_connection_t *sc)
664{
665 ngx_chain_t *cl;
666 ngx_event_t *wev;
667 ngx_connection_t *c;
668 ngx_http_core_loc_conf_t *clcf;
669 ngx_http_spdy_out_frame_t *out, *frame, *fn;
670
671 c = sc->connection;
672
673 if (c->error) {
674 return NGX_ERROR;
675 }
676
677 wev = c->write;
678
679 if (!wev->ready) {
680 return NGX_OK;
681 }
682
683 cl = NULL;
684 out = NULL;
685
686 for (frame = sc->last_out; frame; frame = fn) {
687 frame->last->next = cl;
688 cl = frame->first;
689
690 fn = frame->next;
691 frame->next = out;
692 out = frame;
693
694 ngx_log_debug5(NGX_LOG_DEBUG_HTTP, c->log, 0,
Valentin Bartenev3ddf9cc2014-01-22 04:58:19 +0400695 "spdy frame out: %p sid:%ui prio:%ui bl:%d len:%uz",
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000696 out, out->stream ? out->stream->id : 0, out->priority,
Valentin Bartenev3ddf9cc2014-01-22 04:58:19 +0400697 out->blocked, out->length);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000698 }
699
700 cl = c->send_chain(c, cl, 0);
701
702 if (cl == NGX_CHAIN_ERROR) {
703 c->error = 1;
704
705 if (!sc->blocked) {
706 ngx_post_event(wev, &ngx_posted_events);
707 }
708
709 return NGX_ERROR;
710 }
711
712 clcf = ngx_http_get_module_loc_conf(sc->http_connection->conf_ctx,
713 ngx_http_core_module);
714
715 if (ngx_handle_write_event(wev, clcf->send_lowat) != NGX_OK) {
716 return NGX_ERROR; /* FIXME */
717 }
718
719 if (cl) {
720 ngx_add_timer(wev, clcf->send_timeout);
721
722 } else {
723 if (wev->timer_set) {
724 ngx_del_timer(wev);
725 }
726 }
727
Valentin Barteneve62156d2014-01-22 04:58:19 +0400728 for ( /* void */ ; out; out = fn) {
729 fn = out->next;
730
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000731 if (out->handler(sc, out) != NGX_OK) {
732 out->blocked = 1;
733 out->priority = NGX_SPDY_HIGHEST_PRIORITY;
734 break;
735 }
736
737 ngx_log_debug4(NGX_LOG_DEBUG_HTTP, c->log, 0,
Valentin Bartenev3ddf9cc2014-01-22 04:58:19 +0400738 "spdy frame sent: %p sid:%ui bl:%d len:%uz",
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000739 out, out->stream ? out->stream->id : 0,
Valentin Bartenev3ddf9cc2014-01-22 04:58:19 +0400740 out->blocked, out->length);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000741 }
742
743 frame = NULL;
744
745 for ( /* void */ ; out; out = fn) {
746 fn = out->next;
747 out->next = frame;
748 frame = out;
749 }
750
751 sc->last_out = frame;
752
753 return NGX_OK;
754}
755
756
757static void
758ngx_http_spdy_handle_connection(ngx_http_spdy_connection_t *sc)
759{
760 ngx_connection_t *c;
761 ngx_http_spdy_srv_conf_t *sscf;
762
763 if (sc->last_out || sc->processing) {
764 return;
765 }
766
767 c = sc->connection;
768
769 if (c->error) {
770 ngx_http_close_connection(c);
771 return;
772 }
773
774 if (c->buffered) {
775 return;
776 }
777
778 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
779 ngx_http_spdy_module);
Valentin Bartenev6ddb5782014-01-14 16:24:45 +0400780 if (sc->incomplete) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000781 ngx_add_timer(c->read, sscf->recv_timeout);
782 return;
783 }
784
785 if (ngx_terminate || ngx_exiting) {
786 ngx_http_close_connection(c);
787 return;
788 }
789
790 ngx_destroy_pool(sc->pool);
791
792 sc->pool = NULL;
793 sc->free_ctl_frames = NULL;
794 sc->free_fake_connections = NULL;
795
796#if (NGX_HTTP_SSL)
797 if (c->ssl) {
798 ngx_ssl_free_buffer(c);
799 }
800#endif
801
802 c->destroyed = 1;
803 c->idle = 1;
804 ngx_reusable_connection(c, 1);
805
806 c->write->handler = ngx_http_empty_handler;
807 c->read->handler = ngx_http_spdy_keepalive_handler;
808
809 if (c->write->timer_set) {
810 ngx_del_timer(c->write);
811 }
812
813 ngx_add_timer(c->read, sscf->keepalive_timeout);
814}
815
816
817static u_char *
Roman Arutyunyan0b5f3292014-03-17 17:41:24 +0400818ngx_http_spdy_proxy_protocol(ngx_http_spdy_connection_t *sc, u_char *pos,
819 u_char *end)
820{
Valentin Bartenevd51d1682014-05-15 19:22:06 +0400821 ngx_log_t *log;
822
823 log = sc->connection->log;
824 log->action = "reading PROXY protocol";
825
Roman Arutyunyan0b5f3292014-03-17 17:41:24 +0400826 pos = ngx_proxy_protocol_parse(sc->connection, pos, end);
827
Valentin Bartenevd51d1682014-05-15 19:22:06 +0400828 log->action = "processing SPDY";
829
Roman Arutyunyan0b5f3292014-03-17 17:41:24 +0400830 if (pos == NULL) {
831 return ngx_http_spdy_state_protocol_error(sc);
832 }
833
Roman Arutyunyan0b5f3292014-03-17 17:41:24 +0400834 return ngx_http_spdy_state_complete(sc, pos, end);
835}
836
837
838static u_char *
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000839ngx_http_spdy_state_head(ngx_http_spdy_connection_t *sc, u_char *pos,
840 u_char *end)
841{
Valentin Barteneva547f4a2014-04-07 19:27:56 +0400842 uint32_t head, flen;
843 ngx_uint_t type;
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000844
845 if (end - pos < NGX_SPDY_FRAME_HEADER_SIZE) {
846 return ngx_http_spdy_state_save(sc, pos, end,
847 ngx_http_spdy_state_head);
848 }
849
850 head = ngx_spdy_frame_parse_uint32(pos);
851
852 pos += sizeof(uint32_t);
853
854 flen = ngx_spdy_frame_parse_uint32(pos);
855
856 sc->flags = ngx_spdy_frame_flags(flen);
857 sc->length = ngx_spdy_frame_length(flen);
858
859 pos += sizeof(uint32_t);
860
861 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400862 "process spdy frame head:%08XD f:%Xd l:%uz",
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000863 head, sc->flags, sc->length);
864
865 if (ngx_spdy_ctl_frame_check(head)) {
Valentin Barteneva547f4a2014-04-07 19:27:56 +0400866 type = ngx_spdy_ctl_frame_type(head);
867
868 switch (type) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000869
870 case NGX_SPDY_SYN_STREAM:
871 return ngx_http_spdy_state_syn_stream(sc, pos, end);
872
873 case NGX_SPDY_SYN_REPLY:
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400874 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
875 "client sent unexpected SYN_REPLY frame");
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000876 return ngx_http_spdy_state_protocol_error(sc);
877
878 case NGX_SPDY_RST_STREAM:
879 return ngx_http_spdy_state_rst_stream(sc, pos, end);
880
881 case NGX_SPDY_SETTINGS:
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400882 return ngx_http_spdy_state_settings(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000883
884 case NGX_SPDY_PING:
885 return ngx_http_spdy_state_ping(sc, pos, end);
886
887 case NGX_SPDY_GOAWAY:
888 return ngx_http_spdy_state_skip(sc, pos, end); /* TODO */
889
890 case NGX_SPDY_HEADERS:
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400891 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
892 "client sent unexpected HEADERS frame");
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000893 return ngx_http_spdy_state_protocol_error(sc);
894
Valentin Bartenev449e8ee2014-01-31 19:17:26 +0400895 case NGX_SPDY_WINDOW_UPDATE:
896 return ngx_http_spdy_state_window_update(sc, pos, end);
897
Valentin Barteneva547f4a2014-04-07 19:27:56 +0400898 default:
899 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
900 "spdy control frame with unknown type %ui", type);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000901 return ngx_http_spdy_state_skip(sc, pos, end);
902 }
903 }
904
905 if (ngx_spdy_data_frame_check(head)) {
906 sc->stream = ngx_http_spdy_get_stream_by_id(sc, head);
907 return ngx_http_spdy_state_data(sc, pos, end);
908 }
909
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400910 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
911 "client sent invalid frame");
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000912
913 return ngx_http_spdy_state_protocol_error(sc);
914}
915
916
917static u_char *
918ngx_http_spdy_state_syn_stream(ngx_http_spdy_connection_t *sc, u_char *pos,
919 u_char *end)
920{
921 ngx_uint_t sid, prio;
922 ngx_http_spdy_stream_t *stream;
923 ngx_http_spdy_srv_conf_t *sscf;
924
925 if (end - pos < NGX_SPDY_SYN_STREAM_SIZE) {
926 return ngx_http_spdy_state_save(sc, pos, end,
927 ngx_http_spdy_state_syn_stream);
928 }
929
930 if (sc->length <= NGX_SPDY_SYN_STREAM_SIZE) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400931 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
932 "client sent SYN_STREAM frame with incorrect length %uz",
933 sc->length);
934
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000935 return ngx_http_spdy_state_protocol_error(sc);
936 }
937
938 sc->length -= NGX_SPDY_SYN_STREAM_SIZE;
939
940 sid = ngx_spdy_frame_parse_sid(pos);
Shigeki Ohtsu38a9a892014-02-04 14:06:23 +0900941 prio = pos[8] >> 5;
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000942
943 pos += NGX_SPDY_SYN_STREAM_SIZE;
944
945 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
946 "spdy SYN_STREAM frame sid:%ui prio:%ui", sid, prio);
947
Valentin Barteneva57959b2014-04-21 18:59:53 +0400948 if (sid % 2 == 0 || sid <= sc->last_sid) {
949 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
950 "client sent SYN_STREAM frame "
951 "with invalid Stream-ID %ui", sid);
952
953 stream = ngx_http_spdy_get_stream_by_id(sc, sid);
954
955 if (stream) {
956 if (ngx_http_spdy_terminate_stream(sc, stream,
957 NGX_SPDY_PROTOCOL_ERROR)
958 != NGX_OK)
959 {
960 return ngx_http_spdy_state_internal_error(sc);
961 }
962 }
963
964 return ngx_http_spdy_state_protocol_error(sc);
965 }
966
967 sc->last_sid = sid;
968
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000969 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
970 ngx_http_spdy_module);
971
972 if (sc->processing >= sscf->concurrent_streams) {
973
974 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +0400975 "concurrent streams exceeded %ui", sc->processing);
Valentin Bartenev2686cb42013-03-20 10:36:57 +0000976
977 if (ngx_http_spdy_send_rst_stream(sc, sid, NGX_SPDY_REFUSED_STREAM,
978 prio)
979 != NGX_OK)
980 {
981 return ngx_http_spdy_state_internal_error(sc);
982 }
983
984 return ngx_http_spdy_state_headers_skip(sc, pos, end);
985 }
986
987 stream = ngx_http_spdy_create_stream(sc, sid, prio);
988 if (stream == NULL) {
989 return ngx_http_spdy_state_internal_error(sc);
990 }
991
992 stream->in_closed = (sc->flags & NGX_SPDY_FLAG_FIN) ? 1 : 0;
993
994 stream->request->request_length = NGX_SPDY_FRAME_HEADER_SIZE
995 + NGX_SPDY_SYN_STREAM_SIZE
996 + sc->length;
997
998 sc->stream = stream;
999
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001000 return ngx_http_spdy_state_headers(sc, pos, end);
1001}
1002
1003
1004static u_char *
1005ngx_http_spdy_state_headers(ngx_http_spdy_connection_t *sc, u_char *pos,
1006 u_char *end)
1007{
1008 int z;
1009 size_t size;
1010 ngx_buf_t *buf;
1011 ngx_int_t rc;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001012 ngx_http_request_t *r;
1013
1014 size = end - pos;
1015
1016 if (size == 0) {
1017 return ngx_http_spdy_state_save(sc, pos, end,
1018 ngx_http_spdy_state_headers);
1019 }
1020
Valentin Bartenev57e5c3e2014-04-30 20:34:20 +04001021 if (size > sc->length) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001022 size = sc->length;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001023 }
1024
1025 r = sc->stream->request;
1026
1027 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001028 "process spdy header block %uz of %uz", size, sc->length);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001029
1030 buf = r->header_in;
1031
1032 sc->zstream_in.next_in = pos;
1033 sc->zstream_in.avail_in = size;
1034 sc->zstream_in.next_out = buf->last;
Valentin Bartenev3be925b2013-08-15 19:14:58 +04001035
1036 /* one byte is reserved for null-termination of the last header value */
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001037 sc->zstream_in.avail_out = buf->end - buf->last - 1;
1038
1039 z = inflate(&sc->zstream_in, Z_NO_FLUSH);
1040
1041 if (z == Z_NEED_DICT) {
1042 z = inflateSetDictionary(&sc->zstream_in, ngx_http_spdy_dict,
1043 sizeof(ngx_http_spdy_dict));
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001044
Valentin Bartenevcf770dd2014-04-30 20:34:20 +04001045 if (z != Z_OK) {
1046 if (z == Z_DATA_ERROR) {
1047 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
1048 "client sent SYN_STREAM frame with header "
1049 "block encoded using wrong dictionary: %ul",
1050 (u_long) sc->zstream_in.adler);
1051
1052 return ngx_http_spdy_state_protocol_error(sc);
1053 }
1054
1055 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
1056 "inflateSetDictionary() failed: %d", z);
1057
1058 return ngx_http_spdy_state_internal_error(sc);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001059 }
1060
1061 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1062 "spdy inflateSetDictionary(): %d", z);
1063
1064 z = sc->zstream_in.avail_in ? inflate(&sc->zstream_in, Z_NO_FLUSH)
1065 : Z_OK;
1066 }
1067
1068 if (z != Z_OK) {
Valentin Bartenevcf770dd2014-04-30 20:34:20 +04001069 return ngx_http_spdy_state_inflate_error(sc, z);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001070 }
1071
1072 ngx_log_debug5(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1073 "spdy inflate out: ni:%p no:%p ai:%ud ao:%ud rc:%d",
1074 sc->zstream_in.next_in, sc->zstream_in.next_out,
1075 sc->zstream_in.avail_in, sc->zstream_in.avail_out,
1076 z);
1077
1078 sc->length -= sc->zstream_in.next_in - pos;
1079 pos = sc->zstream_in.next_in;
1080
1081 buf->last = sc->zstream_in.next_out;
1082
1083 if (r->headers_in.headers.part.elts == NULL) {
1084
1085 if (buf->last - buf->pos < NGX_SPDY_NV_NUM_SIZE) {
Valentin Bartenev042122a2014-03-26 17:43:39 +04001086
Valentin Bartenev57e5c3e2014-04-30 20:34:20 +04001087 if (sc->length == 0) {
Valentin Bartenevef510792014-04-30 20:34:20 +04001088 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1089 "premature end of spdy header block");
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001090
Valentin Bartenevef510792014-04-30 20:34:20 +04001091 return ngx_http_spdy_state_headers_error(sc, pos, end);
Valentin Bartenev042122a2014-03-26 17:43:39 +04001092 }
1093
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001094 return ngx_http_spdy_state_save(sc, pos, end,
1095 ngx_http_spdy_state_headers);
1096 }
1097
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001098 sc->entries = ngx_spdy_frame_parse_uint32(buf->pos);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001099
1100 buf->pos += NGX_SPDY_NV_NUM_SIZE;
1101
1102 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001103 "spdy header block has %ui entries",
Valentin Bartenev406c0612014-01-22 04:58:19 +04001104 sc->entries);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001105
Valentin Bartenev3925c1b2014-03-03 19:24:54 +04001106 if (ngx_list_init(&r->headers_in.headers, r->pool, 20,
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001107 sizeof(ngx_table_elt_t))
1108 != NGX_OK)
1109 {
1110 ngx_http_spdy_close_stream(sc->stream,
1111 NGX_HTTP_INTERNAL_SERVER_ERROR);
Valentin Bartenevba890402014-04-30 20:34:20 +04001112 return ngx_http_spdy_state_headers_skip(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001113 }
1114
1115 if (ngx_array_init(&r->headers_in.cookies, r->pool, 2,
1116 sizeof(ngx_table_elt_t *))
1117 != NGX_OK)
1118 {
1119 ngx_http_spdy_close_stream(sc->stream,
1120 NGX_HTTP_INTERNAL_SERVER_ERROR);
Valentin Bartenevba890402014-04-30 20:34:20 +04001121 return ngx_http_spdy_state_headers_skip(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001122 }
1123 }
1124
Valentin Bartenev406c0612014-01-22 04:58:19 +04001125 while (sc->entries) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001126
1127 rc = ngx_http_spdy_parse_header(r);
1128
1129 switch (rc) {
1130
1131 case NGX_DONE:
Valentin Bartenev406c0612014-01-22 04:58:19 +04001132 sc->entries--;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001133
1134 case NGX_OK:
1135 break;
1136
1137 case NGX_AGAIN:
1138
1139 if (sc->zstream_in.avail_in) {
1140
1141 rc = ngx_http_spdy_alloc_large_header_buffer(r);
1142
1143 if (rc == NGX_DECLINED) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001144 ngx_http_finalize_request(r,
1145 NGX_HTTP_REQUEST_HEADER_TOO_LARGE);
Valentin Bartenevba890402014-04-30 20:34:20 +04001146 return ngx_http_spdy_state_headers_skip(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001147 }
1148
1149 if (rc != NGX_OK) {
1150 ngx_http_spdy_close_stream(sc->stream,
1151 NGX_HTTP_INTERNAL_SERVER_ERROR);
Valentin Bartenevba890402014-04-30 20:34:20 +04001152 return ngx_http_spdy_state_headers_skip(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001153 }
1154
Valentin Bartenev3be925b2013-08-15 19:14:58 +04001155 /* null-terminate the last processed header name or value */
1156 *buf->pos = '\0';
1157
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001158 buf = r->header_in;
1159
1160 sc->zstream_in.next_out = buf->last;
Valentin Bartenev3be925b2013-08-15 19:14:58 +04001161
1162 /* one byte is reserved for null-termination */
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001163 sc->zstream_in.avail_out = buf->end - buf->last - 1;
1164
1165 z = inflate(&sc->zstream_in, Z_NO_FLUSH);
1166
1167 if (z != Z_OK) {
Valentin Bartenevcf770dd2014-04-30 20:34:20 +04001168 return ngx_http_spdy_state_inflate_error(sc, z);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001169 }
1170
1171 sc->length -= sc->zstream_in.next_in - pos;
1172 pos = sc->zstream_in.next_in;
1173
1174 buf->last = sc->zstream_in.next_out;
1175
1176 continue;
1177 }
1178
Valentin Bartenev57e5c3e2014-04-30 20:34:20 +04001179 if (sc->length == 0) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001180 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001181 "premature end of spdy header block");
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001182
Valentin Bartenevef510792014-04-30 20:34:20 +04001183 return ngx_http_spdy_state_headers_error(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001184 }
1185
1186 return ngx_http_spdy_state_save(sc, pos, end,
1187 ngx_http_spdy_state_headers);
1188
Valentin Bartenevef510792014-04-30 20:34:20 +04001189 case NGX_HTTP_PARSE_INVALID_HEADER:
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001190 ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
Valentin Bartenevba890402014-04-30 20:34:20 +04001191 return ngx_http_spdy_state_headers_skip(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001192
Valentin Bartenevef510792014-04-30 20:34:20 +04001193 default: /* NGX_ERROR */
1194 return ngx_http_spdy_state_headers_error(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001195 }
1196
1197 /* a header line has been parsed successfully */
1198
1199 rc = ngx_http_spdy_handle_request_header(r);
1200
1201 if (rc != NGX_OK) {
1202 if (rc == NGX_HTTP_PARSE_INVALID_HEADER) {
Valentin Bartenevef510792014-04-30 20:34:20 +04001203 ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
1204 return ngx_http_spdy_state_headers_skip(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001205 }
1206
Valentin Bartenevef510792014-04-30 20:34:20 +04001207 if (rc != NGX_ABORT) {
1208 ngx_http_spdy_close_stream(sc->stream,
1209 NGX_HTTP_INTERNAL_SERVER_ERROR);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001210 }
1211
Valentin Bartenevba890402014-04-30 20:34:20 +04001212 return ngx_http_spdy_state_headers_skip(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001213 }
1214 }
1215
Valentin Bartenevde3c7a82014-03-26 18:01:11 +04001216 if (buf->pos != buf->last || sc->zstream_in.avail_in) {
Valentin Bartenevef510792014-04-30 20:34:20 +04001217 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
1218 "incorrect number of spdy header block entries");
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001219
Valentin Bartenevef510792014-04-30 20:34:20 +04001220 return ngx_http_spdy_state_headers_error(sc, pos, end);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001221 }
1222
Valentin Bartenev57e5c3e2014-04-30 20:34:20 +04001223 if (sc->length) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001224 return ngx_http_spdy_state_save(sc, pos, end,
1225 ngx_http_spdy_state_headers);
1226 }
1227
Valentin Bartenev3be925b2013-08-15 19:14:58 +04001228 /* null-terminate the last header value */
1229 *buf->pos = '\0';
1230
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001231 ngx_http_spdy_run_request(r);
1232
1233 return ngx_http_spdy_state_complete(sc, pos, end);
1234}
1235
1236
1237static u_char *
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001238ngx_http_spdy_state_headers_skip(ngx_http_spdy_connection_t *sc, u_char *pos,
1239 u_char *end)
1240{
1241 int n;
1242 size_t size;
1243 u_char buffer[NGX_SPDY_SKIP_HEADERS_BUFFER_SIZE];
1244
1245 if (sc->length == 0) {
1246 return ngx_http_spdy_state_complete(sc, pos, end);
1247 }
1248
1249 size = end - pos;
1250
1251 if (size == 0) {
1252 return ngx_http_spdy_state_save(sc, pos, end,
1253 ngx_http_spdy_state_headers_skip);
1254 }
1255
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001256 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1257 "spdy header block skip %uz of %uz", size, sc->length);
1258
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001259 sc->zstream_in.next_in = pos;
1260 sc->zstream_in.avail_in = (size < sc->length) ? size : sc->length;
1261
1262 while (sc->zstream_in.avail_in) {
1263 sc->zstream_in.next_out = buffer;
1264 sc->zstream_in.avail_out = NGX_SPDY_SKIP_HEADERS_BUFFER_SIZE;
1265
1266 n = inflate(&sc->zstream_in, Z_NO_FLUSH);
1267
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001268 if (n != Z_OK) {
Valentin Bartenevcf770dd2014-04-30 20:34:20 +04001269 return ngx_http_spdy_state_inflate_error(sc, n);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001270 }
1271 }
1272
1273 pos = sc->zstream_in.next_in;
1274
1275 if (size < sc->length) {
1276 sc->length -= size;
1277 return ngx_http_spdy_state_save(sc, pos, end,
1278 ngx_http_spdy_state_headers_skip);
1279 }
1280
1281 return ngx_http_spdy_state_complete(sc, pos, end);
1282}
1283
1284
1285static u_char *
Valentin Bartenevef510792014-04-30 20:34:20 +04001286ngx_http_spdy_state_headers_error(ngx_http_spdy_connection_t *sc, u_char *pos,
1287 u_char *end)
1288{
1289 ngx_http_spdy_stream_t *stream;
1290
1291 stream = sc->stream;
1292
1293 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1294 "client sent SYN_STREAM frame for stream %ui "
1295 "with invalid header block", stream->id);
1296
1297 if (ngx_http_spdy_send_rst_stream(sc, stream->id, NGX_SPDY_PROTOCOL_ERROR,
1298 stream->priority)
1299 != NGX_OK)
1300 {
1301 return ngx_http_spdy_state_internal_error(sc);
1302 }
1303
1304 stream->out_closed = 1;
1305
1306 ngx_http_spdy_close_stream(stream, NGX_HTTP_BAD_REQUEST);
1307
1308 return ngx_http_spdy_state_headers_skip(sc, pos, end);
1309}
1310
1311
1312static u_char *
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001313ngx_http_spdy_state_window_update(ngx_http_spdy_connection_t *sc, u_char *pos,
1314 u_char *end)
1315{
1316 size_t delta;
1317 ngx_uint_t sid;
1318 ngx_event_t *wev;
1319 ngx_queue_t *q;
1320 ngx_http_spdy_stream_t *stream;
1321
1322 if (end - pos < NGX_SPDY_WINDOW_UPDATE_SIZE) {
1323 return ngx_http_spdy_state_save(sc, pos, end,
1324 ngx_http_spdy_state_window_update);
1325 }
1326
1327 if (sc->length != NGX_SPDY_WINDOW_UPDATE_SIZE) {
1328 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1329 "client sent WINDOW_UPDATE frame "
1330 "with incorrect length %uz", sc->length);
1331
1332 return ngx_http_spdy_state_protocol_error(sc);
1333 }
1334
1335 sid = ngx_spdy_frame_parse_sid(pos);
1336
1337 pos += NGX_SPDY_SID_SIZE;
1338
1339 delta = ngx_spdy_frame_parse_delta(pos);
1340
1341 pos += NGX_SPDY_DELTA_SIZE;
1342
1343 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1344 "spdy WINDOW_UPDATE sid:%ui delta:%ui", sid, delta);
1345
1346 if (sid) {
1347 stream = ngx_http_spdy_get_stream_by_id(sc, sid);
1348
1349 if (stream == NULL) {
Valentin Bartenevf79908a2014-04-21 19:21:17 +04001350 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1351 "unknown spdy stream");
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001352
1353 return ngx_http_spdy_state_complete(sc, pos, end);
1354 }
1355
1356 if (stream->send_window > (ssize_t) (NGX_SPDY_MAX_WINDOW - delta)) {
1357
1358 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1359 "client violated flow control for stream %ui: "
1360 "received WINDOW_UPDATE frame with delta %uz "
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001361 "not allowed for window %z",
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001362 sid, delta, stream->send_window);
1363
1364 if (ngx_http_spdy_terminate_stream(sc, stream,
1365 NGX_SPDY_FLOW_CONTROL_ERROR)
1366 == NGX_ERROR)
1367 {
1368 return ngx_http_spdy_state_internal_error(sc);
1369 }
1370
1371 return ngx_http_spdy_state_complete(sc, pos, end);
1372 }
1373
1374 stream->send_window += delta;
1375
1376 if (stream->exhausted) {
1377 stream->exhausted = 0;
1378
1379 wev = stream->request->connection->write;
1380
1381 if (!wev->timer_set) {
1382 wev->delayed = 0;
1383 wev->handler(wev);
1384 }
1385 }
1386
1387 } else {
1388 sc->send_window += delta;
1389
1390 if (sc->send_window > NGX_SPDY_MAX_WINDOW) {
1391 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1392 "client violated connection flow control: "
1393 "received WINDOW_UPDATE frame with delta %uz "
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001394 "not allowed for window %uz",
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001395 delta, sc->send_window);
1396
1397 return ngx_http_spdy_state_protocol_error(sc);
1398 }
1399
1400 while (!ngx_queue_empty(&sc->waiting)) {
1401 q = ngx_queue_head(&sc->waiting);
1402
1403 ngx_queue_remove(q);
1404
1405 stream = ngx_queue_data(q, ngx_http_spdy_stream_t, queue);
1406
1407 stream->handled = 0;
1408
1409 wev = stream->request->connection->write;
1410
1411 if (!wev->timer_set) {
1412 wev->delayed = 0;
1413 wev->handler(wev);
1414
1415 if (sc->send_window == 0) {
1416 break;
1417 }
1418 }
1419 }
1420 }
1421
1422 return ngx_http_spdy_state_complete(sc, pos, end);
1423}
1424
1425
1426static u_char *
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001427ngx_http_spdy_state_data(ngx_http_spdy_connection_t *sc, u_char *pos,
1428 u_char *end)
1429{
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001430 ngx_http_spdy_stream_t *stream;
1431
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001432 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1433 "spdy DATA frame");
1434
1435 if (sc->length > sc->recv_window) {
1436 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001437 "client violated connection flow control: "
1438 "received DATA frame length %uz, available window %uz",
Valentin Bartenev5d3f84e2014-04-08 20:12:30 +04001439 sc->length, sc->recv_window);
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001440
1441 return ngx_http_spdy_state_protocol_error(sc);
1442 }
1443
1444 sc->recv_window -= sc->length;
1445
1446 if (sc->recv_window < NGX_SPDY_MAX_WINDOW / 4) {
1447
1448 if (ngx_http_spdy_send_window_update(sc, 0,
1449 NGX_SPDY_MAX_WINDOW
1450 - sc->recv_window)
1451 == NGX_ERROR)
1452 {
1453 return ngx_http_spdy_state_internal_error(sc);
1454 }
1455
1456 sc->recv_window = NGX_SPDY_MAX_WINDOW;
1457 }
1458
Valentin Bartenev7da40e62014-04-09 18:15:32 +04001459 stream = sc->stream;
1460
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001461 if (stream == NULL) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001462 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1463 "unknown spdy stream");
1464
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001465 return ngx_http_spdy_state_skip(sc, pos, end);
1466 }
1467
1468 if (sc->length > stream->recv_window) {
1469 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001470 "client violated flow control for stream %ui: "
1471 "received DATA frame length %uz, available window %uz",
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001472 stream->id, sc->length, stream->recv_window);
1473
1474 if (ngx_http_spdy_terminate_stream(sc, stream,
1475 NGX_SPDY_FLOW_CONTROL_ERROR)
1476 == NGX_ERROR)
1477 {
1478 return ngx_http_spdy_state_internal_error(sc);
1479 }
1480
1481 return ngx_http_spdy_state_skip(sc, pos, end);
1482 }
1483
1484 stream->recv_window -= sc->length;
1485
1486 if (stream->recv_window < NGX_SPDY_STREAM_WINDOW / 4) {
1487
1488 if (ngx_http_spdy_send_window_update(sc, stream->id,
1489 NGX_SPDY_STREAM_WINDOW
1490 - stream->recv_window)
1491 == NGX_ERROR)
1492 {
1493 return ngx_http_spdy_state_internal_error(sc);
1494 }
1495
1496 stream->recv_window = NGX_SPDY_STREAM_WINDOW;
1497 }
1498
1499 if (stream->in_closed) {
1500 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001501 "client sent DATA frame for half-closed stream %ui",
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001502 stream->id);
1503
1504 if (ngx_http_spdy_terminate_stream(sc, stream,
1505 NGX_SPDY_STREAM_ALREADY_CLOSED)
1506 == NGX_ERROR)
1507 {
1508 return ngx_http_spdy_state_internal_error(sc);
1509 }
1510
1511 return ngx_http_spdy_state_skip(sc, pos, end);
1512 }
1513
1514 return ngx_http_spdy_state_read_data(sc, pos, end);
1515}
1516
1517
1518static u_char *
1519ngx_http_spdy_state_read_data(ngx_http_spdy_connection_t *sc, u_char *pos,
1520 u_char *end)
1521{
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001522 size_t size;
1523 ssize_t n;
1524 ngx_buf_t *buf;
1525 ngx_int_t rc;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001526 ngx_temp_file_t *tf;
1527 ngx_http_request_t *r;
1528 ngx_http_spdy_stream_t *stream;
1529 ngx_http_request_body_t *rb;
1530 ngx_http_core_loc_conf_t *clcf;
1531
1532 stream = sc->stream;
1533
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001534 if (stream == NULL) {
1535 return ngx_http_spdy_state_skip(sc, pos, end);
1536 }
1537
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001538 if (stream->skip_data) {
1539
1540 if (sc->flags & NGX_SPDY_FLAG_FIN) {
1541 stream->in_closed = 1;
1542 }
1543
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001544 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1545 "skipping spdy DATA frame, reason: %d",
1546 stream->skip_data);
1547
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001548 return ngx_http_spdy_state_skip(sc, pos, end);
1549 }
1550
1551 size = end - pos;
1552
Valentin Bartenev108e4d92014-04-07 19:27:56 +04001553 if (size > sc->length) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001554 size = sc->length;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001555 }
1556
1557 r = stream->request;
1558
1559 if (r->request_body == NULL
1560 && ngx_http_spdy_init_request_body(r) != NGX_OK)
1561 {
1562 stream->skip_data = NGX_SPDY_DATA_INTERNAL_ERROR;
1563 return ngx_http_spdy_state_skip(sc, pos, end);
1564 }
1565
1566 rb = r->request_body;
1567 tf = rb->temp_file;
1568 buf = rb->buf;
1569
1570 if (size) {
1571 rb->rest += size;
1572
1573 if (r->headers_in.content_length_n != -1
1574 && r->headers_in.content_length_n < rb->rest)
1575 {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001576 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
1577 "client intended to send body data "
1578 "larger than declared");
1579
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001580 stream->skip_data = NGX_SPDY_DATA_ERROR;
1581 goto error;
1582
1583 } else {
1584 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
1585
1586 if (clcf->client_max_body_size
1587 && clcf->client_max_body_size < rb->rest)
1588 {
1589 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001590 "client intended to send "
1591 "too large chunked body: %O bytes", rb->rest);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001592
1593 stream->skip_data = NGX_SPDY_DATA_ERROR;
1594 goto error;
1595 }
1596 }
1597
Valentin Bartenevafb92a82014-03-28 20:05:07 +04001598 sc->length -= size;
1599
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001600 if (tf) {
1601 buf->start = pos;
1602 buf->pos = pos;
1603
1604 pos += size;
1605
1606 buf->end = pos;
1607 buf->last = pos;
1608
1609 n = ngx_write_chain_to_temp_file(tf, rb->bufs);
1610
1611 /* TODO: n == 0 or not complete and level event */
1612
1613 if (n == NGX_ERROR) {
1614 stream->skip_data = NGX_SPDY_DATA_INTERNAL_ERROR;
1615 goto error;
1616 }
1617
1618 tf->offset += n;
1619
1620 } else {
1621 buf->last = ngx_cpymem(buf->last, pos, size);
1622 pos += size;
1623 }
1624
1625 r->request_length += size;
1626 }
1627
Valentin Bartenev108e4d92014-04-07 19:27:56 +04001628 if (sc->length) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001629 return ngx_http_spdy_state_save(sc, pos, end,
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001630 ngx_http_spdy_state_read_data);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001631 }
1632
1633 if (sc->flags & NGX_SPDY_FLAG_FIN) {
1634
1635 stream->in_closed = 1;
1636
Valentin Bartenevac5a3cb2014-03-28 20:22:57 +04001637 if (r->headers_in.content_length_n < 0) {
1638 r->headers_in.content_length_n = rb->rest;
1639
1640 } else if (r->headers_in.content_length_n != rb->rest) {
1641 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
1642 "client prematurely closed stream: "
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001643 "only %O out of %O bytes of request body received",
Valentin Bartenevac5a3cb2014-03-28 20:22:57 +04001644 rb->rest, r->headers_in.content_length_n);
1645
1646 stream->skip_data = NGX_SPDY_DATA_ERROR;
1647 goto error;
1648 }
1649
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001650 if (tf) {
1651 ngx_memzero(buf, sizeof(ngx_buf_t));
1652
1653 buf->in_file = 1;
1654 buf->file_last = tf->file.offset;
1655 buf->file = &tf->file;
1656
1657 rb->buf = NULL;
1658 }
1659
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001660 if (rb->post_handler) {
Valentin Bartenev6ba03092013-10-01 00:00:57 +04001661 r->read_event_handler = ngx_http_block_reading;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001662 rb->post_handler(r);
1663 }
1664 }
1665
1666 return ngx_http_spdy_state_complete(sc, pos, end);
1667
1668error:
1669
1670 if (rb->post_handler) {
1671
1672 if (stream->skip_data == NGX_SPDY_DATA_ERROR) {
1673 rc = (r->headers_in.content_length_n == -1)
1674 ? NGX_HTTP_REQUEST_ENTITY_TOO_LARGE
1675 : NGX_HTTP_BAD_REQUEST;
1676
1677 } else {
1678 rc = NGX_HTTP_INTERNAL_SERVER_ERROR;
1679 }
1680
1681 ngx_http_finalize_request(r, rc);
1682 }
1683
1684 return ngx_http_spdy_state_skip(sc, pos, end);
1685}
1686
1687
1688static u_char *
1689ngx_http_spdy_state_rst_stream(ngx_http_spdy_connection_t *sc, u_char *pos,
1690 u_char *end)
1691{
1692 ngx_uint_t sid, status;
1693 ngx_event_t *ev;
1694 ngx_connection_t *fc;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001695 ngx_http_spdy_stream_t *stream;
1696
1697 if (end - pos < NGX_SPDY_RST_STREAM_SIZE) {
1698 return ngx_http_spdy_state_save(sc, pos, end,
1699 ngx_http_spdy_state_rst_stream);
1700 }
1701
1702 if (sc->length != NGX_SPDY_RST_STREAM_SIZE) {
Valentin Bartenev650984c2014-01-22 04:58:19 +04001703 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1704 "client sent RST_STREAM frame with incorrect length %uz",
1705 sc->length);
1706
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001707 return ngx_http_spdy_state_protocol_error(sc);
1708 }
1709
1710 sid = ngx_spdy_frame_parse_sid(pos);
1711
1712 pos += NGX_SPDY_SID_SIZE;
1713
1714 status = ngx_spdy_frame_parse_uint32(pos);
1715
1716 pos += sizeof(uint32_t);
1717
1718 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1719 "spdy RST_STREAM sid:%ui st:%ui", sid, status);
1720
Valentin Bartenev650984c2014-01-22 04:58:19 +04001721 stream = ngx_http_spdy_get_stream_by_id(sc, sid);
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001722
Valentin Bartenev650984c2014-01-22 04:58:19 +04001723 if (stream == NULL) {
1724 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001725 "unknown spdy stream");
1726
Valentin Bartenev650984c2014-01-22 04:58:19 +04001727 return ngx_http_spdy_state_complete(sc, pos, end);
1728 }
1729
1730 stream->in_closed = 1;
1731 stream->out_closed = 1;
1732
1733 fc = stream->request->connection;
1734 fc->error = 1;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001735
1736 switch (status) {
1737
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001738 case NGX_SPDY_CANCEL:
Valentin Bartenev650984c2014-01-22 04:58:19 +04001739 ngx_log_error(NGX_LOG_INFO, fc->log, 0,
1740 "client canceled stream %ui", sid);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001741 break;
1742
Valentin Bartenev650984c2014-01-22 04:58:19 +04001743 case NGX_SPDY_INTERNAL_ERROR:
1744 ngx_log_error(NGX_LOG_INFO, fc->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001745 "client terminated stream %ui due to internal error",
Valentin Bartenev650984c2014-01-22 04:58:19 +04001746 sid);
1747 break;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001748
1749 default:
Valentin Bartenev650984c2014-01-22 04:58:19 +04001750 ngx_log_error(NGX_LOG_INFO, fc->log, 0,
1751 "client terminated stream %ui with status %ui",
1752 sid, status);
1753 break;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001754 }
1755
Valentin Bartenev650984c2014-01-22 04:58:19 +04001756 ev = fc->read;
1757 ev->handler(ev);
1758
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001759 return ngx_http_spdy_state_complete(sc, pos, end);
1760}
1761
1762
1763static u_char *
1764ngx_http_spdy_state_ping(ngx_http_spdy_connection_t *sc, u_char *pos,
1765 u_char *end)
1766{
1767 u_char *p;
1768 ngx_buf_t *buf;
1769 ngx_http_spdy_out_frame_t *frame;
1770
1771 if (end - pos < NGX_SPDY_PING_SIZE) {
1772 return ngx_http_spdy_state_save(sc, pos, end,
1773 ngx_http_spdy_state_ping);
1774 }
1775
1776 if (sc->length != NGX_SPDY_PING_SIZE) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001777 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1778 "client sent PING frame with incorrect length %uz",
1779 sc->length);
1780
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001781 return ngx_http_spdy_state_protocol_error(sc);
1782 }
1783
1784 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1785 "spdy PING frame");
1786
1787 frame = ngx_http_spdy_get_ctl_frame(sc, NGX_SPDY_PING_SIZE,
1788 NGX_SPDY_HIGHEST_PRIORITY);
1789 if (frame == NULL) {
1790 return ngx_http_spdy_state_internal_error(sc);
1791 }
1792
1793 buf = frame->first->buf;
1794
1795 p = buf->pos;
1796
1797 p = ngx_spdy_frame_write_head(p, NGX_SPDY_PING);
1798 p = ngx_spdy_frame_write_flags_and_len(p, 0, NGX_SPDY_PING_SIZE);
1799
1800 p = ngx_cpymem(p, pos, NGX_SPDY_PING_SIZE);
1801
1802 buf->last = p;
1803
1804 ngx_http_spdy_queue_frame(sc, frame);
1805
1806 pos += NGX_SPDY_PING_SIZE;
1807
1808 return ngx_http_spdy_state_complete(sc, pos, end);
1809}
1810
1811
1812static u_char *
1813ngx_http_spdy_state_skip(ngx_http_spdy_connection_t *sc, u_char *pos,
1814 u_char *end)
1815{
1816 size_t size;
1817
1818 size = end - pos;
1819
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001820 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1821 "spdy frame skip %uz of %uz", size, sc->length);
1822
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001823 if (size < sc->length) {
1824 sc->length -= size;
1825 return ngx_http_spdy_state_save(sc, end, end,
1826 ngx_http_spdy_state_skip);
1827 }
1828
1829 return ngx_http_spdy_state_complete(sc, pos + sc->length, end);
1830}
1831
1832
1833static u_char *
1834ngx_http_spdy_state_settings(ngx_http_spdy_connection_t *sc, u_char *pos,
1835 u_char *end)
1836{
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001837 ngx_uint_t fid, val;
1838
Valentin Bartenev406c0612014-01-22 04:58:19 +04001839 if (sc->entries == 0) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001840
1841 if (end - pos < NGX_SPDY_SETTINGS_NUM_SIZE) {
1842 return ngx_http_spdy_state_save(sc, pos, end,
1843 ngx_http_spdy_state_settings);
1844 }
1845
Valentin Bartenev406c0612014-01-22 04:58:19 +04001846 sc->entries = ngx_spdy_frame_parse_uint32(pos);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001847
1848 pos += NGX_SPDY_SETTINGS_NUM_SIZE;
1849 sc->length -= NGX_SPDY_SETTINGS_NUM_SIZE;
1850
Valentin Bartenev406c0612014-01-22 04:58:19 +04001851 if (sc->length < sc->entries * NGX_SPDY_SETTINGS_PAIR_SIZE) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001852 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1853 "client sent SETTINGS frame with incorrect "
1854 "length %uz or number of entries %ui",
1855 sc->length, sc->entries);
1856
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001857 return ngx_http_spdy_state_protocol_error(sc);
1858 }
1859
1860 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001861 "spdy SETTINGS frame has %ui entries", sc->entries);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001862 }
1863
Valentin Bartenev406c0612014-01-22 04:58:19 +04001864 while (sc->entries) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001865 if (end - pos < NGX_SPDY_SETTINGS_PAIR_SIZE) {
1866 return ngx_http_spdy_state_save(sc, pos, end,
1867 ngx_http_spdy_state_settings);
1868 }
1869
Valentin Bartenev406c0612014-01-22 04:58:19 +04001870 sc->entries--;
Valentin Bartenevd055f742014-01-22 04:58:19 +04001871 sc->length -= NGX_SPDY_SETTINGS_PAIR_SIZE;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001872
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001873 fid = ngx_spdy_frame_parse_uint32(pos);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001874
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001875 pos += NGX_SPDY_SETTINGS_FID_SIZE;
Valentin Bartenevd055f742014-01-22 04:58:19 +04001876
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001877 val = ngx_spdy_frame_parse_uint32(pos);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001878
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04001879 pos += NGX_SPDY_SETTINGS_VAL_SIZE;
1880
1881 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1882 "spdy SETTINGS entry fl:%ui id:%ui val:%ui",
1883 ngx_spdy_frame_flags(fid), ngx_spdy_frame_id(fid), val);
1884
1885 if (ngx_spdy_frame_flags(fid) == NGX_SPDY_SETTINGS_FLAG_PERSISTED) {
1886 continue;
1887 }
1888
1889 switch (ngx_spdy_frame_id(fid)) {
1890
1891 case NGX_SPDY_SETTINGS_INIT_WINDOW:
1892
1893 if (val > NGX_SPDY_MAX_WINDOW) {
1894 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1895 "client sent SETTINGS frame with "
1896 "incorrect INIT_WINDOW value: %ui", val);
1897
1898 return ngx_http_spdy_state_protocol_error(sc);
1899 }
1900
1901 if (ngx_http_spdy_adjust_windows(sc, val - sc->init_window)
1902 != NGX_OK)
1903 {
1904 return ngx_http_spdy_state_internal_error(sc);
1905 }
1906
1907 sc->init_window = val;
1908
1909 continue;
1910 }
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001911 }
1912
1913 return ngx_http_spdy_state_complete(sc, pos, end);
1914}
1915
1916
1917static u_char *
1918ngx_http_spdy_state_complete(ngx_http_spdy_connection_t *sc, u_char *pos,
1919 u_char *end)
1920{
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001921 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1922 "spdy frame complete pos:%p end:%p", pos, end);
1923
Valentin Barteneva785be72014-04-30 20:34:20 +04001924 if (pos > end) {
1925 ngx_log_error(NGX_LOG_ALERT, sc->connection->log, 0,
1926 "receive buffer overrun");
1927
1928 ngx_debug_point();
1929 return ngx_http_spdy_state_internal_error(sc);
1930 }
1931
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001932 sc->handler = ngx_http_spdy_state_head;
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001933 sc->stream = NULL;
1934
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001935 return pos;
1936}
1937
1938
1939static u_char *
1940ngx_http_spdy_state_save(ngx_http_spdy_connection_t *sc,
1941 u_char *pos, u_char *end, ngx_http_spdy_handler_pt handler)
1942{
Maxim Dounin062e7a02014-03-19 12:57:39 +04001943 size_t size;
1944
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001945 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1946 "spdy frame state save pos:%p end:%p handler:%p",
1947 pos, end, handler);
1948
Maxim Dounin062e7a02014-03-19 12:57:39 +04001949 size = end - pos;
1950
1951 if (size > NGX_SPDY_STATE_BUFFER_SIZE) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001952 ngx_log_error(NGX_LOG_ALERT, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04001953 "state buffer overflow: %uz bytes required", size);
1954
Valentin Bartenev3f023a42014-04-30 20:34:20 +04001955 ngx_debug_point();
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001956 return ngx_http_spdy_state_internal_error(sc);
1957 }
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001958
1959 ngx_memcpy(sc->buffer, pos, NGX_SPDY_STATE_BUFFER_SIZE);
1960
Maxim Douninec1211d2014-03-19 19:30:09 +04001961 sc->buffer_used = size;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001962 sc->handler = handler;
Valentin Bartenev6ddb5782014-01-14 16:24:45 +04001963 sc->incomplete = 1;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001964
1965 return end;
1966}
1967
1968
1969static u_char *
Valentin Bartenevcf770dd2014-04-30 20:34:20 +04001970ngx_http_spdy_state_inflate_error(ngx_http_spdy_connection_t *sc, int rc)
1971{
1972 if (rc == Z_DATA_ERROR || rc == Z_STREAM_END) {
1973 ngx_log_error(NGX_LOG_INFO, sc->connection->log, 0,
1974 "client sent SYN_STREAM frame with "
1975 "corrupted header block, inflate() failed: %d", rc);
1976
1977 return ngx_http_spdy_state_protocol_error(sc);
1978 }
1979
1980 ngx_log_error(NGX_LOG_ERR, sc->connection->log, 0,
1981 "inflate() failed: %d", rc);
1982
1983 return ngx_http_spdy_state_internal_error(sc);
1984}
1985
1986
1987static u_char *
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001988ngx_http_spdy_state_protocol_error(ngx_http_spdy_connection_t *sc)
1989{
1990 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
1991 "spdy state protocol error");
1992
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001993 if (sc->stream) {
Valentin Bartenev63ee6902014-05-15 19:18:26 +04001994 sc->stream->out_closed = 1;
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001995 ngx_http_spdy_close_stream(sc->stream, NGX_HTTP_BAD_REQUEST);
1996 }
1997
Valentin Bartenev2686cb42013-03-20 10:36:57 +00001998 ngx_http_spdy_finalize_connection(sc, NGX_HTTP_CLIENT_CLOSED_REQUEST);
Valentin Bartenevdfb9a5c2014-04-30 20:33:58 +04001999
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002000 return NULL;
2001}
2002
2003
2004static u_char *
2005ngx_http_spdy_state_internal_error(ngx_http_spdy_connection_t *sc)
2006{
2007 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
2008 "spdy state internal error");
2009
Valentin Bartenevcf770dd2014-04-30 20:34:20 +04002010 if (sc->stream) {
2011 sc->stream->out_closed = 1;
2012 ngx_http_spdy_close_stream(sc->stream, NGX_HTTP_INTERNAL_SERVER_ERROR);
2013 }
2014
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002015 ngx_http_spdy_finalize_connection(sc, NGX_HTTP_INTERNAL_SERVER_ERROR);
Valentin Bartenevcf770dd2014-04-30 20:34:20 +04002016
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002017 return NULL;
2018}
2019
2020
2021static ngx_int_t
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002022ngx_http_spdy_send_window_update(ngx_http_spdy_connection_t *sc, ngx_uint_t sid,
2023 ngx_uint_t delta)
2024{
2025 u_char *p;
2026 ngx_buf_t *buf;
2027 ngx_http_spdy_out_frame_t *frame;
2028
2029 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002030 "spdy send WINDOW_UPDATE sid:%ui delta:%ui", sid, delta);
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002031
2032 frame = ngx_http_spdy_get_ctl_frame(sc, NGX_SPDY_WINDOW_UPDATE_SIZE,
2033 NGX_SPDY_HIGHEST_PRIORITY);
2034 if (frame == NULL) {
2035 return NGX_ERROR;
2036 }
2037
2038 buf = frame->first->buf;
2039
2040 p = buf->pos;
2041
2042 p = ngx_spdy_frame_write_head(p, NGX_SPDY_WINDOW_UPDATE);
2043 p = ngx_spdy_frame_write_flags_and_len(p, 0, NGX_SPDY_WINDOW_UPDATE_SIZE);
2044
2045 p = ngx_spdy_frame_write_sid(p, sid);
2046 p = ngx_spdy_frame_aligned_write_uint32(p, delta);
2047
2048 buf->last = p;
2049
2050 ngx_http_spdy_queue_frame(sc, frame);
2051
2052 return NGX_OK;
2053}
2054
2055
2056static ngx_int_t
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002057ngx_http_spdy_send_rst_stream(ngx_http_spdy_connection_t *sc, ngx_uint_t sid,
2058 ngx_uint_t status, ngx_uint_t priority)
2059{
2060 u_char *p;
2061 ngx_buf_t *buf;
2062 ngx_http_spdy_out_frame_t *frame;
2063
2064 if (sc->connection->error) {
2065 return NGX_OK;
2066 }
2067
2068 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002069 "spdy send RST_STREAM sid:%ui st:%ui", sid, status);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002070
2071 frame = ngx_http_spdy_get_ctl_frame(sc, NGX_SPDY_RST_STREAM_SIZE,
2072 priority);
2073 if (frame == NULL) {
2074 return NGX_ERROR;
2075 }
2076
2077 buf = frame->first->buf;
2078
2079 p = buf->pos;
2080
2081 p = ngx_spdy_frame_write_head(p, NGX_SPDY_RST_STREAM);
2082 p = ngx_spdy_frame_write_flags_and_len(p, 0, NGX_SPDY_RST_STREAM_SIZE);
2083
2084 p = ngx_spdy_frame_write_sid(p, sid);
2085 p = ngx_spdy_frame_aligned_write_uint32(p, status);
2086
2087 buf->last = p;
2088
2089 ngx_http_spdy_queue_frame(sc, frame);
2090
2091 return NGX_OK;
2092}
2093
2094
2095#if 0
2096static ngx_int_t
2097ngx_http_spdy_send_goaway(ngx_http_spdy_connection_t *sc)
2098{
2099 u_char *p;
2100 ngx_buf_t *buf;
2101 ngx_http_spdy_out_frame_t *frame;
2102
2103 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002104 "spdy send GOAWAY sid:%ui", sc->last_sid);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002105
2106 frame = ngx_http_spdy_get_ctl_frame(sc, NGX_SPDY_GOAWAY_SIZE,
2107 NGX_SPDY_HIGHEST_PRIORITY);
2108 if (frame == NULL) {
2109 return NGX_ERROR;
2110 }
2111
2112 buf = frame->first->buf;
2113
2114 p = buf->pos;
2115
2116 p = ngx_spdy_frame_write_head(p, NGX_SPDY_GOAWAY);
2117 p = ngx_spdy_frame_write_flags_and_len(p, 0, NGX_SPDY_GOAWAY_SIZE);
2118
2119 p = ngx_spdy_frame_write_sid(p, sc->last_sid);
2120
2121 buf->last = p;
2122
2123 ngx_http_spdy_queue_frame(sc, frame);
2124
2125 return NGX_OK;
2126}
2127#endif
2128
2129
2130static ngx_int_t
2131ngx_http_spdy_send_settings(ngx_http_spdy_connection_t *sc)
2132{
2133 u_char *p;
2134 ngx_buf_t *buf;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002135 ngx_chain_t *cl;
2136 ngx_http_spdy_srv_conf_t *sscf;
2137 ngx_http_spdy_out_frame_t *frame;
2138
2139 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002140 "spdy send SETTINGS frame");
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002141
Valentin Bartenev82a1ff32014-01-15 17:16:38 +04002142 frame = ngx_palloc(sc->pool, sizeof(ngx_http_spdy_out_frame_t));
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002143 if (frame == NULL) {
2144 return NGX_ERROR;
2145 }
2146
Valentin Bartenev82a1ff32014-01-15 17:16:38 +04002147 cl = ngx_alloc_chain_link(sc->pool);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002148 if (cl == NULL) {
2149 return NGX_ERROR;
2150 }
2151
Valentin Bartenev82a1ff32014-01-15 17:16:38 +04002152 buf = ngx_create_temp_buf(sc->pool, NGX_SPDY_FRAME_HEADER_SIZE
2153 + NGX_SPDY_SETTINGS_NUM_SIZE
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002154 + 2 * NGX_SPDY_SETTINGS_PAIR_SIZE);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002155 if (buf == NULL) {
2156 return NGX_ERROR;
2157 }
2158
2159 buf->last_buf = 1;
2160
2161 cl->buf = buf;
2162 cl->next = NULL;
2163
2164 frame->first = cl;
2165 frame->last = cl;
2166 frame->handler = ngx_http_spdy_settings_frame_handler;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002167 frame->stream = NULL;
Valentin Bartenevb2b43ca2014-01-15 17:16:38 +04002168#if (NGX_DEBUG)
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002169 frame->length = NGX_SPDY_SETTINGS_NUM_SIZE
2170 + 2 * NGX_SPDY_SETTINGS_PAIR_SIZE;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002171#endif
2172 frame->priority = NGX_SPDY_HIGHEST_PRIORITY;
2173 frame->blocked = 0;
2174
2175 p = buf->pos;
2176
2177 p = ngx_spdy_frame_write_head(p, NGX_SPDY_SETTINGS);
2178 p = ngx_spdy_frame_write_flags_and_len(p, NGX_SPDY_FLAG_CLEAR_SETTINGS,
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002179 NGX_SPDY_SETTINGS_NUM_SIZE
2180 + 2 * NGX_SPDY_SETTINGS_PAIR_SIZE);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002181
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002182 p = ngx_spdy_frame_aligned_write_uint32(p, 2);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002183
2184 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
2185 ngx_http_spdy_module);
2186
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002187 p = ngx_spdy_frame_write_flags_and_id(p, 0, NGX_SPDY_SETTINGS_MAX_STREAMS);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002188 p = ngx_spdy_frame_aligned_write_uint32(p, sscf->concurrent_streams);
2189
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002190 p = ngx_spdy_frame_write_flags_and_id(p, 0, NGX_SPDY_SETTINGS_INIT_WINDOW);
2191 p = ngx_spdy_frame_aligned_write_uint32(p, NGX_SPDY_STREAM_WINDOW);
2192
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002193 buf->last = p;
2194
2195 ngx_http_spdy_queue_frame(sc, frame);
2196
2197 return NGX_OK;
2198}
2199
2200
2201ngx_int_t
2202ngx_http_spdy_settings_frame_handler(ngx_http_spdy_connection_t *sc,
2203 ngx_http_spdy_out_frame_t *frame)
2204{
2205 ngx_buf_t *buf;
2206
2207 buf = frame->first->buf;
2208
2209 if (buf->pos != buf->last) {
2210 return NGX_AGAIN;
2211 }
2212
2213 ngx_free_chain(sc->pool, frame->first);
2214
2215 return NGX_OK;
2216}
2217
2218
2219static ngx_http_spdy_out_frame_t *
Valentin Bartenev3ddf9cc2014-01-22 04:58:19 +04002220ngx_http_spdy_get_ctl_frame(ngx_http_spdy_connection_t *sc, size_t length,
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002221 ngx_uint_t priority)
2222{
2223 ngx_chain_t *cl;
2224 ngx_http_spdy_out_frame_t *frame;
2225
2226 frame = sc->free_ctl_frames;
2227
2228 if (frame) {
Valentin Barteneve62156d2014-01-22 04:58:19 +04002229 sc->free_ctl_frames = frame->next;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002230
2231 cl = frame->first;
2232 cl->buf->pos = cl->buf->start;
2233
2234 } else {
2235 frame = ngx_palloc(sc->pool, sizeof(ngx_http_spdy_out_frame_t));
2236 if (frame == NULL) {
2237 return NULL;
2238 }
2239
2240 cl = ngx_alloc_chain_link(sc->pool);
2241 if (cl == NULL) {
2242 return NULL;
2243 }
2244
2245 cl->buf = ngx_create_temp_buf(sc->pool,
2246 NGX_SPDY_CTL_FRAME_BUFFER_SIZE);
2247 if (cl->buf == NULL) {
2248 return NULL;
2249 }
2250
2251 cl->buf->last_buf = 1;
2252
2253 frame->first = cl;
2254 frame->last = cl;
2255 frame->handler = ngx_http_spdy_ctl_frame_handler;
Valentin Bartenevb2b43ca2014-01-15 17:16:38 +04002256 frame->stream = NULL;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002257 }
2258
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002259#if (NGX_DEBUG)
Valentin Bartenev3ddf9cc2014-01-22 04:58:19 +04002260 if (length > NGX_SPDY_CTL_FRAME_BUFFER_SIZE - NGX_SPDY_FRAME_HEADER_SIZE) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002261 ngx_log_error(NGX_LOG_ALERT, sc->pool->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002262 "requested control frame is too large: %uz", length);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002263 return NULL;
2264 }
2265
Valentin Bartenev3ddf9cc2014-01-22 04:58:19 +04002266 frame->length = length;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002267#endif
2268
2269 frame->priority = priority;
2270 frame->blocked = 0;
2271
2272 return frame;
2273}
2274
2275
2276static ngx_int_t
2277ngx_http_spdy_ctl_frame_handler(ngx_http_spdy_connection_t *sc,
2278 ngx_http_spdy_out_frame_t *frame)
2279{
2280 ngx_buf_t *buf;
2281
2282 buf = frame->first->buf;
2283
2284 if (buf->pos != buf->last) {
2285 return NGX_AGAIN;
2286 }
2287
Valentin Barteneve62156d2014-01-22 04:58:19 +04002288 frame->next = sc->free_ctl_frames;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002289 sc->free_ctl_frames = frame;
2290
2291 return NGX_OK;
2292}
2293
2294
2295static ngx_http_spdy_stream_t *
2296ngx_http_spdy_create_stream(ngx_http_spdy_connection_t *sc, ngx_uint_t id,
2297 ngx_uint_t priority)
2298{
2299 ngx_log_t *log;
2300 ngx_uint_t index;
2301 ngx_event_t *rev, *wev;
2302 ngx_connection_t *fc;
2303 ngx_http_log_ctx_t *ctx;
2304 ngx_http_request_t *r;
2305 ngx_http_spdy_stream_t *stream;
2306 ngx_http_core_srv_conf_t *cscf;
2307 ngx_http_spdy_srv_conf_t *sscf;
2308
2309 fc = sc->free_fake_connections;
2310
2311 if (fc) {
2312 sc->free_fake_connections = fc->data;
2313
2314 rev = fc->read;
2315 wev = fc->write;
2316 log = fc->log;
2317 ctx = log->data;
2318
2319 } else {
2320 fc = ngx_palloc(sc->pool, sizeof(ngx_connection_t));
2321 if (fc == NULL) {
2322 return NULL;
2323 }
2324
2325 rev = ngx_palloc(sc->pool, sizeof(ngx_event_t));
2326 if (rev == NULL) {
2327 return NULL;
2328 }
2329
2330 wev = ngx_palloc(sc->pool, sizeof(ngx_event_t));
2331 if (wev == NULL) {
2332 return NULL;
2333 }
2334
2335 log = ngx_palloc(sc->pool, sizeof(ngx_log_t));
2336 if (log == NULL) {
2337 return NULL;
2338 }
2339
2340 ctx = ngx_palloc(sc->pool, sizeof(ngx_http_log_ctx_t));
2341 if (ctx == NULL) {
2342 return NULL;
2343 }
2344
2345 ctx->connection = fc;
2346 ctx->request = NULL;
2347 }
2348
2349 ngx_memcpy(log, sc->connection->log, sizeof(ngx_log_t));
2350
2351 log->data = ctx;
2352
2353 ngx_memzero(rev, sizeof(ngx_event_t));
2354
2355 rev->data = fc;
2356 rev->ready = 1;
Valentin Bartenev92b82c82013-10-01 00:04:00 +04002357 rev->handler = ngx_http_spdy_close_stream_handler;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002358 rev->log = log;
2359
2360 ngx_memcpy(wev, rev, sizeof(ngx_event_t));
2361
2362 wev->write = 1;
2363
2364 ngx_memcpy(fc, sc->connection, sizeof(ngx_connection_t));
2365
2366 fc->data = sc->http_connection;
2367 fc->read = rev;
2368 fc->write = wev;
2369 fc->sent = 0;
2370 fc->log = log;
2371 fc->buffered = 0;
2372 fc->sndlowat = 1;
Valentin Bartenev670d4282013-04-23 10:15:49 +00002373 fc->tcp_nodelay = NGX_TCP_NODELAY_DISABLED;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002374
2375 r = ngx_http_create_request(fc);
2376 if (r == NULL) {
2377 return NULL;
2378 }
2379
2380 r->valid_location = 1;
2381
2382 fc->data = r;
2383 sc->connection->requests++;
2384
2385 cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2386
2387 r->header_in = ngx_create_temp_buf(r->pool,
2388 cscf->client_header_buffer_size);
2389 if (r->header_in == NULL) {
2390 ngx_http_free_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
2391 return NULL;
2392 }
2393
2394 r->headers_in.connection_type = NGX_HTTP_CONNECTION_CLOSE;
2395
2396 stream = ngx_pcalloc(r->pool, sizeof(ngx_http_spdy_stream_t));
2397 if (stream == NULL) {
2398 ngx_http_free_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
2399 return NULL;
2400 }
2401
2402 r->spdy_stream = stream;
2403
2404 stream->id = id;
2405 stream->request = r;
2406 stream->connection = sc;
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002407
2408 stream->send_window = sc->init_window;
2409 stream->recv_window = NGX_SPDY_STREAM_WINDOW;
2410
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002411 stream->priority = priority;
2412
2413 sscf = ngx_http_get_module_srv_conf(r, ngx_http_spdy_module);
2414
2415 index = ngx_http_spdy_stream_index(sscf, id);
2416
2417 stream->index = sc->streams_index[index];
2418 sc->streams_index[index] = stream;
2419
2420 sc->processing++;
2421
2422 return stream;
2423}
2424
2425
2426static ngx_http_spdy_stream_t *
2427ngx_http_spdy_get_stream_by_id(ngx_http_spdy_connection_t *sc,
2428 ngx_uint_t sid)
2429{
2430 ngx_http_spdy_stream_t *stream;
2431 ngx_http_spdy_srv_conf_t *sscf;
2432
2433 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
2434 ngx_http_spdy_module);
2435
2436 stream = sc->streams_index[ngx_http_spdy_stream_index(sscf, sid)];
2437
2438 while (stream) {
2439 if (stream->id == sid) {
2440 return stream;
2441 }
2442
2443 stream = stream->index;
2444 }
2445
2446 return NULL;
2447}
2448
2449
2450static ngx_int_t
2451ngx_http_spdy_parse_header(ngx_http_request_t *r)
2452{
2453 u_char *p, *end, ch;
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002454 ngx_uint_t hash;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002455 ngx_http_core_srv_conf_t *cscf;
2456
2457 enum {
2458 sw_name_len = 0,
2459 sw_name,
2460 sw_value_len,
2461 sw_value
2462 } state;
2463
2464 state = r->state;
2465
2466 p = r->header_in->pos;
2467 end = r->header_in->last;
2468
2469 switch (state) {
2470
2471 case sw_name_len:
2472
2473 if (end - p < NGX_SPDY_NV_NLEN_SIZE) {
2474 return NGX_AGAIN;
2475 }
2476
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002477 r->lowcase_index = ngx_spdy_frame_parse_uint32(p);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002478
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002479 if (r->lowcase_index == 0) {
Valentin Bartenevef510792014-04-30 20:34:20 +04002480 return NGX_ERROR;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002481 }
2482
Valentin Bartenev3be925b2013-08-15 19:14:58 +04002483 /* null-terminate the previous header value */
2484 *p = '\0';
2485
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002486 p += NGX_SPDY_NV_NLEN_SIZE;
2487
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002488 r->invalid_header = 0;
2489
2490 state = sw_name;
2491
2492 /* fall through */
2493
2494 case sw_name:
2495
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002496 if ((ngx_uint_t) (end - p) < r->lowcase_index) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002497 break;
2498 }
2499
2500 cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2501
2502 r->header_name_start = p;
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002503 r->header_name_end = p + r->lowcase_index;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002504
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002505 if (p[0] == ':') {
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002506 p++;
2507 }
2508
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002509 hash = 0;
2510
2511 for ( /* void */ ; p != r->header_name_end; p++) {
2512
2513 ch = *p;
2514
2515 hash = ngx_hash(hash, ch);
2516
2517 if ((ch >= 'a' && ch <= 'z')
2518 || (ch == '-')
2519 || (ch >= '0' && ch <= '9')
2520 || (ch == '_' && cscf->underscores_in_headers))
2521 {
2522 continue;
2523 }
2524
2525 switch (ch) {
2526 case '\0':
2527 case LF:
2528 case CR:
2529 case ':':
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002530 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2531 "client sent invalid header name: \"%*s\"",
2532 r->lowcase_index, r->header_name_start);
2533
Valentin Bartenevef510792014-04-30 20:34:20 +04002534 return NGX_HTTP_PARSE_INVALID_HEADER;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002535 }
2536
2537 if (ch >= 'A' && ch <= 'Z') {
Valentin Bartenevef510792014-04-30 20:34:20 +04002538 return NGX_ERROR;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002539 }
2540
2541 r->invalid_header = 1;
2542 }
2543
2544 r->header_hash = hash;
2545
2546 state = sw_value_len;
2547
2548 /* fall through */
2549
2550 case sw_value_len:
2551
2552 if (end - p < NGX_SPDY_NV_VLEN_SIZE) {
2553 break;
2554 }
2555
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002556 r->lowcase_index = ngx_spdy_frame_parse_uint32(p);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002557
Valentin Bartenev3be925b2013-08-15 19:14:58 +04002558 /* null-terminate header name */
2559 *p = '\0';
2560
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002561 p += NGX_SPDY_NV_VLEN_SIZE;
2562
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002563 state = sw_value;
2564
2565 /* fall through */
2566
2567 case sw_value:
2568
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002569 if ((ngx_uint_t) (end - p) < r->lowcase_index) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002570 break;
2571 }
2572
2573 r->header_start = p;
2574
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002575 while (r->lowcase_index--) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002576 ch = *p;
2577
2578 if (ch == '\0') {
2579
2580 if (p == r->header_start) {
2581 return NGX_ERROR;
2582 }
2583
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002584 r->header_end = p;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002585 r->header_in->pos = p + 1;
2586
Piotr Sikora12ca9c92014-07-08 02:17:44 -07002587 r->state = sw_value;
2588
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002589 return NGX_OK;
2590 }
2591
2592 if (ch == CR || ch == LF) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002593 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2594 "client sent header \"%*s\" with "
2595 "invalid value: \"%*s\\%c...\"",
2596 r->header_name_end - r->header_name_start,
2597 r->header_name_start,
2598 p - r->header_start,
2599 r->header_start,
2600 ch == CR ? 'r' : 'n');
2601
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002602 return NGX_HTTP_PARSE_INVALID_HEADER;
2603 }
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002604
2605 p++;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002606 }
2607
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002608 r->header_end = p;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002609 r->header_in->pos = p;
2610
2611 r->state = 0;
2612
2613 return NGX_DONE;
2614 }
2615
2616 r->header_in->pos = p;
2617 r->state = state;
2618
2619 return NGX_AGAIN;
2620}
2621
2622
2623static ngx_int_t
2624ngx_http_spdy_alloc_large_header_buffer(ngx_http_request_t *r)
2625{
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002626 u_char *old, *new, *p;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002627 size_t rest;
2628 ngx_buf_t *buf;
2629 ngx_http_spdy_stream_t *stream;
2630 ngx_http_core_srv_conf_t *cscf;
2631
2632 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
2633 "spdy alloc large header buffer");
2634
2635 stream = r->spdy_stream;
2636
2637 cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2638
2639 if (stream->header_buffers
2640 == (ngx_uint_t) cscf->large_client_header_buffers.num)
2641 {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002642 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2643 "client sent too large request");
2644
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002645 return NGX_DECLINED;
2646 }
2647
2648 rest = r->header_in->last - r->header_in->pos;
2649
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002650 /*
2651 * equality is prohibited since one more byte is needed
2652 * for null-termination
2653 */
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002654 if (rest >= cscf->large_client_header_buffers.size) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002655 p = r->header_in->pos;
2656
2657 if (rest > NGX_MAX_ERROR_STR - 300) {
2658 rest = NGX_MAX_ERROR_STR - 300;
2659 p[rest++] = '.'; p[rest++] = '.'; p[rest++] = '.';
2660 }
2661
2662 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2663 "client sent too long header name or value: \"%*s\"",
2664 rest, p);
2665
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002666 return NGX_DECLINED;
2667 }
2668
2669 buf = ngx_create_temp_buf(r->pool, cscf->large_client_header_buffers.size);
2670 if (buf == NULL) {
2671 return NGX_ERROR;
2672 }
2673
2674 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002675 "spdy large header alloc: %p %uz",
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002676 buf->pos, buf->end - buf->last);
2677
2678 old = r->header_in->pos;
2679 new = buf->pos;
2680
2681 if (rest) {
2682 buf->last = ngx_cpymem(new, old, rest);
2683 }
2684
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002685 r->header_in = buf;
2686
2687 stream->header_buffers++;
2688
2689 return NGX_OK;
2690}
2691
2692
2693static ngx_int_t
2694ngx_http_spdy_handle_request_header(ngx_http_request_t *r)
2695{
2696 ngx_uint_t i;
2697 ngx_table_elt_t *h;
2698 ngx_http_core_srv_conf_t *cscf;
2699 ngx_http_spdy_request_header_t *sh;
2700
2701 if (r->invalid_header) {
2702 cscf = ngx_http_get_module_srv_conf(r, ngx_http_core_module);
2703
2704 if (cscf->ignore_invalid_headers) {
2705 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2706 "client sent invalid header: \"%*s\"",
2707 r->header_end - r->header_name_start,
2708 r->header_name_start);
2709 return NGX_OK;
2710 }
2711
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002712 }
2713
2714 if (r->header_name_start[0] == ':') {
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002715 r->header_name_start++;
2716
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002717 for (i = 0; i < NGX_SPDY_REQUEST_HEADERS; i++) {
2718 sh = &ngx_http_spdy_request_headers[i];
2719
2720 if (sh->hash != r->header_hash
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002721 || sh->len != r->header_name_end - r->header_name_start
2722 || ngx_strncmp(sh->header, r->header_name_start, sh->len) != 0)
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002723 {
2724 continue;
2725 }
2726
2727 return sh->handler(r);
2728 }
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002729
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002730 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2731 "client sent invalid header name: \":%*s\"",
2732 r->header_end - r->header_name_start,
2733 r->header_name_start);
2734
Valentin Bartenevef510792014-04-30 20:34:20 +04002735 return NGX_HTTP_PARSE_INVALID_HEADER;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002736 }
2737
2738 h = ngx_list_push(&r->headers_in.headers);
2739 if (h == NULL) {
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002740 return NGX_ERROR;
2741 }
2742
2743 h->hash = r->header_hash;
2744
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002745 h->key.len = r->header_name_end - r->header_name_start;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002746 h->key.data = r->header_name_start;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002747
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002748 h->value.len = r->header_end - r->header_start;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002749 h->value.data = r->header_start;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002750
2751 h->lowcase_key = h->key.data;
2752
2753 return NGX_OK;
2754}
2755
2756
2757void
Sergey Kandaurov3be6cc92013-05-23 15:47:58 +04002758ngx_http_spdy_request_headers_init(void)
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002759{
2760 ngx_uint_t i;
2761 ngx_http_spdy_request_header_t *h;
2762
2763 for (i = 0; i < NGX_SPDY_REQUEST_HEADERS; i++) {
2764 h = &ngx_http_spdy_request_headers[i];
2765 h->hash = ngx_hash_key(h->header, h->len);
2766 }
2767}
2768
2769
2770static ngx_int_t
2771ngx_http_spdy_parse_method(ngx_http_request_t *r)
2772{
2773 size_t k, len;
2774 ngx_uint_t n;
2775 const u_char *p, *m;
2776
2777 /*
2778 * This array takes less than 256 sequential bytes,
2779 * and if typical CPU cache line size is 64 bytes,
2780 * it is prefetched for 4 load operations.
2781 */
2782 static const struct {
2783 u_char len;
2784 const u_char method[11];
2785 uint32_t value;
2786 } tests[] = {
2787 { 3, "GET", NGX_HTTP_GET },
2788 { 4, "POST", NGX_HTTP_POST },
2789 { 4, "HEAD", NGX_HTTP_HEAD },
2790 { 7, "OPTIONS", NGX_HTTP_OPTIONS },
2791 { 8, "PROPFIND", NGX_HTTP_PROPFIND },
2792 { 3, "PUT", NGX_HTTP_PUT },
2793 { 5, "MKCOL", NGX_HTTP_MKCOL },
2794 { 6, "DELETE", NGX_HTTP_DELETE },
2795 { 4, "COPY", NGX_HTTP_COPY },
2796 { 4, "MOVE", NGX_HTTP_MOVE },
2797 { 9, "PROPPATCH", NGX_HTTP_PROPPATCH },
2798 { 4, "LOCK", NGX_HTTP_LOCK },
2799 { 6, "UNLOCK", NGX_HTTP_UNLOCK },
2800 { 5, "PATCH", NGX_HTTP_PATCH },
2801 { 5, "TRACE", NGX_HTTP_TRACE }
2802 }, *test;
2803
2804 if (r->method_name.len) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002805 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2806 "client sent duplicate :method header");
2807
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002808 return NGX_HTTP_PARSE_INVALID_HEADER;
2809 }
2810
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002811 len = r->header_end - r->header_start;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002812
2813 r->method_name.len = len;
2814 r->method_name.data = r->header_start;
2815
2816 test = tests;
2817 n = sizeof(tests) / sizeof(tests[0]);
2818
2819 do {
2820 if (len == test->len) {
2821 p = r->method_name.data;
2822 m = test->method;
2823 k = len;
2824
2825 do {
2826 if (*p++ != *m++) {
2827 goto next;
2828 }
2829 } while (--k);
2830
2831 r->method = test->value;
2832 return NGX_OK;
2833 }
2834
2835 next:
2836 test++;
2837
2838 } while (--n);
2839
2840 p = r->method_name.data;
2841
2842 do {
2843 if ((*p < 'A' || *p > 'Z') && *p != '_') {
2844 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002845 "client sent invalid method: \"%V\"",
2846 &r->method_name);
2847
Valentin Bartenevef510792014-04-30 20:34:20 +04002848 return NGX_HTTP_PARSE_INVALID_HEADER;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002849 }
2850
2851 p++;
2852
2853 } while (--len);
2854
2855 return NGX_OK;
2856}
2857
2858
2859static ngx_int_t
2860ngx_http_spdy_parse_scheme(ngx_http_request_t *r)
2861{
2862 if (r->schema_start) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002863 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2864 "client sent duplicate :schema header");
2865
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002866 return NGX_HTTP_PARSE_INVALID_HEADER;
2867 }
2868
2869 r->schema_start = r->header_start;
2870 r->schema_end = r->header_end;
2871
2872 return NGX_OK;
2873}
2874
2875
2876static ngx_int_t
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002877ngx_http_spdy_parse_host(ngx_http_request_t *r)
2878{
2879 ngx_table_elt_t *h;
2880
2881 if (r->headers_in.host) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002882 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2883 "client sent duplicate :host header");
2884
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002885 return NGX_HTTP_PARSE_INVALID_HEADER;
2886 }
2887
2888 h = ngx_list_push(&r->headers_in.headers);
2889 if (h == NULL) {
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002890 return NGX_ERROR;
2891 }
2892
2893 r->headers_in.host = h;
2894
2895 h->hash = r->header_hash;
2896
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002897 h->key.len = r->header_name_end - r->header_name_start;
2898 h->key.data = r->header_name_start;
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002899
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002900 h->value.len = r->header_end - r->header_start;
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04002901 h->value.data = r->header_start;
2902
2903 h->lowcase_key = h->key.data;
2904
2905 return NGX_OK;
2906}
2907
2908
2909static ngx_int_t
2910ngx_http_spdy_parse_path(ngx_http_request_t *r)
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002911{
2912 if (r->unparsed_uri.len) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002913 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2914 "client sent duplicate :path header");
2915
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002916 return NGX_HTTP_PARSE_INVALID_HEADER;
2917 }
2918
2919 r->uri_start = r->header_start;
2920 r->uri_end = r->header_end;
2921
2922 if (ngx_http_parse_uri(r) != NGX_OK) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002923 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2924 "client sent invalid URI: \"%*s\"",
2925 r->uri_end - r->uri_start, r->uri_start);
2926
Valentin Bartenevef510792014-04-30 20:34:20 +04002927 return NGX_HTTP_PARSE_INVALID_HEADER;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002928 }
2929
2930 if (ngx_http_process_request_uri(r) != NGX_OK) {
Valentin Bartenevef510792014-04-30 20:34:20 +04002931 /*
2932 * request has been finalized already
2933 * in ngx_http_process_request_uri()
2934 */
2935 return NGX_ABORT;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002936 }
2937
2938 return NGX_OK;
2939}
2940
2941
2942static ngx_int_t
2943ngx_http_spdy_parse_version(ngx_http_request_t *r)
2944{
2945 u_char *p, ch;
2946
2947 if (r->http_protocol.len) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002948 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
2949 "client sent duplicate :version header");
2950
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002951 return NGX_HTTP_PARSE_INVALID_HEADER;
2952 }
2953
2954 p = r->header_start;
2955
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04002956 if (r->header_end - p < 8 || !(ngx_str5cmp(p, 'H', 'T', 'T', 'P', '/'))) {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002957 goto invalid;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002958 }
2959
2960 ch = *(p + 5);
2961
2962 if (ch < '1' || ch > '9') {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002963 goto invalid;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002964 }
2965
2966 r->http_major = ch - '0';
2967
2968 for (p += 6; p != r->header_end - 2; p++) {
2969
2970 ch = *p;
2971
Xiaochen Wangcd358e52014-02-11 20:54:16 +08002972 if (ch == '.') {
2973 break;
2974 }
2975
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002976 if (ch < '0' || ch > '9') {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002977 goto invalid;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002978 }
2979
2980 r->http_major = r->http_major * 10 + ch - '0';
2981 }
2982
2983 if (*p != '.') {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002984 goto invalid;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002985 }
2986
2987 ch = *(p + 1);
2988
2989 if (ch < '0' || ch > '9') {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04002990 goto invalid;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00002991 }
2992
2993 r->http_minor = ch - '0';
2994
2995 for (p += 2; p != r->header_end; p++) {
2996
2997 ch = *p;
2998
2999 if (ch < '0' || ch > '9') {
Valentin Bartenevd04a7142014-04-30 20:34:20 +04003000 goto invalid;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003001 }
3002
3003 r->http_minor = r->http_minor * 10 + ch - '0';
3004 }
3005
Valentin Bartenev0c05e5b2014-03-03 19:24:55 +04003006 r->http_protocol.len = r->header_end - r->header_start;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003007 r->http_protocol.data = r->header_start;
3008 r->http_version = r->http_major * 1000 + r->http_minor;
3009
3010 return NGX_OK;
Valentin Bartenevd04a7142014-04-30 20:34:20 +04003011
3012invalid:
3013
3014 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
3015 "client sent invalid http version: \"%*s\"",
3016 r->header_end - r->header_start, r->header_start);
3017
3018 return NGX_HTTP_PARSE_INVALID_HEADER;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003019}
3020
3021
3022static ngx_int_t
3023ngx_http_spdy_construct_request_line(ngx_http_request_t *r)
3024{
3025 u_char *p;
3026
3027 if (r->method_name.len == 0
3028 || r->unparsed_uri.len == 0
3029 || r->http_protocol.len == 0)
3030 {
3031 ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
3032 return NGX_ERROR;
3033 }
3034
3035 r->request_line.len = r->method_name.len + 1
3036 + r->unparsed_uri.len + 1
3037 + r->http_protocol.len;
3038
3039 p = ngx_pnalloc(r->pool, r->request_line.len + 1);
3040 if (p == NULL) {
Valentin Bartenevd9c25cd2014-04-30 02:16:21 +04003041 ngx_http_spdy_close_stream(r->spdy_stream,
3042 NGX_HTTP_INTERNAL_SERVER_ERROR);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003043 return NGX_ERROR;
3044 }
3045
3046 r->request_line.data = p;
3047
3048 p = ngx_cpymem(p, r->method_name.data, r->method_name.len);
3049
3050 *p++ = ' ';
3051
3052 p = ngx_cpymem(p, r->unparsed_uri.data, r->unparsed_uri.len);
3053
3054 *p++ = ' ';
3055
3056 ngx_memcpy(p, r->http_protocol.data, r->http_protocol.len + 1);
3057
3058 /* some modules expect the space character after method name */
3059 r->method_name.data = r->request_line.data;
3060
3061 return NGX_OK;
3062}
3063
3064
3065static void
3066ngx_http_spdy_run_request(ngx_http_request_t *r)
3067{
3068 ngx_uint_t i;
3069 ngx_list_part_t *part;
3070 ngx_table_elt_t *h;
3071 ngx_http_header_t *hh;
3072 ngx_http_core_main_conf_t *cmcf;
3073
3074 if (ngx_http_spdy_construct_request_line(r) != NGX_OK) {
3075 return;
3076 }
3077
3078 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
3079 "spdy http request line: \"%V\"", &r->request_line);
3080
3081 cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
3082
3083 part = &r->headers_in.headers.part;
3084 h = part->elts;
3085
3086 for (i = 0 ;; i++) {
3087
3088 if (i >= part->nelts) {
3089 if (part->next == NULL) {
3090 break;
3091 }
3092
3093 part = part->next;
3094 h = part->elts;
3095 i = 0;
3096 }
3097
3098 hh = ngx_hash_find(&cmcf->headers_in_hash, h[i].hash,
3099 h[i].lowcase_key, h[i].key.len);
3100
3101 if (hh && hh->handler(r, &h[i], hh->offset) != NGX_OK) {
3102 return;
3103 }
3104
3105 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04003106 "spdy http header: \"%V: %V\"", &h[i].key, &h[i].value);
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003107 }
3108
3109 r->http_state = NGX_HTTP_PROCESS_REQUEST_STATE;
3110
3111 if (ngx_http_process_request_header(r) != NGX_OK) {
3112 return;
3113 }
3114
Valentin Bartenevb2cd5202014-04-07 19:27:56 +04003115 if (r->headers_in.content_length_n > 0 && r->spdy_stream->in_closed) {
3116 ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
3117 "client prematurely closed stream");
3118
3119 r->spdy_stream->skip_data = NGX_SPDY_DATA_ERROR;
3120
3121 ngx_http_finalize_request(r, NGX_HTTP_BAD_REQUEST);
3122 return;
3123 }
3124
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003125 ngx_http_process_request(r);
3126}
3127
3128
3129static ngx_int_t
3130ngx_http_spdy_init_request_body(ngx_http_request_t *r)
3131{
3132 ngx_buf_t *buf;
3133 ngx_temp_file_t *tf;
3134 ngx_http_request_body_t *rb;
3135 ngx_http_core_loc_conf_t *clcf;
3136
3137 rb = ngx_pcalloc(r->pool, sizeof(ngx_http_request_body_t));
3138 if (rb == NULL) {
3139 return NGX_ERROR;
3140 }
3141
3142 r->request_body = rb;
3143
3144 if (r->spdy_stream->in_closed) {
3145 return NGX_OK;
3146 }
3147
3148 rb->rest = r->headers_in.content_length_n;
3149
3150 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
3151
3152 if (r->request_body_in_file_only
3153 || rb->rest > (off_t) clcf->client_body_buffer_size
3154 || rb->rest < 0)
3155 {
3156 tf = ngx_pcalloc(r->pool, sizeof(ngx_temp_file_t));
3157 if (tf == NULL) {
3158 return NGX_ERROR;
3159 }
3160
3161 tf->file.fd = NGX_INVALID_FILE;
3162 tf->file.log = r->connection->log;
3163 tf->path = clcf->client_body_temp_path;
3164 tf->pool = r->pool;
3165 tf->warn = "a client request body is buffered to a temporary file";
3166 tf->log_level = r->request_body_file_log_level;
3167 tf->persistent = r->request_body_in_persistent_file;
3168 tf->clean = r->request_body_in_clean_file;
3169
3170 if (r->request_body_file_group_access) {
3171 tf->access = 0660;
3172 }
3173
3174 rb->temp_file = tf;
3175
3176 if (r->spdy_stream->in_closed
3177 && ngx_create_temp_file(&tf->file, tf->path, tf->pool,
3178 tf->persistent, tf->clean, tf->access)
3179 != NGX_OK)
3180 {
3181 return NGX_ERROR;
3182 }
3183
3184 buf = ngx_calloc_buf(r->pool);
3185 if (buf == NULL) {
3186 return NGX_ERROR;
3187 }
3188
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003189 } else {
3190
3191 if (rb->rest == 0) {
3192 return NGX_OK;
3193 }
3194
3195 buf = ngx_create_temp_buf(r->pool, (size_t) rb->rest);
3196 if (buf == NULL) {
3197 return NGX_ERROR;
3198 }
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003199 }
3200
Valentin Bartenev32e167e2013-07-24 22:24:25 +04003201 rb->buf = buf;
3202
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003203 rb->bufs = ngx_alloc_chain_link(r->pool);
3204 if (rb->bufs == NULL) {
3205 return NGX_ERROR;
3206 }
3207
3208 rb->bufs->buf = buf;
3209 rb->bufs->next = NULL;
3210
3211 rb->rest = 0;
3212
3213 return NGX_OK;
3214}
3215
3216
3217ngx_int_t
3218ngx_http_spdy_read_request_body(ngx_http_request_t *r,
3219 ngx_http_client_body_handler_pt post_handler)
3220{
3221 ngx_http_spdy_stream_t *stream;
3222
3223 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
3224 "spdy read request body");
3225
3226 stream = r->spdy_stream;
3227
3228 switch (stream->skip_data) {
3229
3230 case NGX_SPDY_DATA_DISCARD:
3231 post_handler(r);
3232 return NGX_OK;
3233
3234 case NGX_SPDY_DATA_ERROR:
3235 if (r->headers_in.content_length_n == -1) {
3236 return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE;
3237 } else {
3238 return NGX_HTTP_BAD_REQUEST;
3239 }
3240
3241 case NGX_SPDY_DATA_INTERNAL_ERROR:
3242 return NGX_HTTP_INTERNAL_SERVER_ERROR;
3243 }
3244
3245 if (!r->request_body && ngx_http_spdy_init_request_body(r) != NGX_OK) {
3246 stream->skip_data = NGX_SPDY_DATA_INTERNAL_ERROR;
3247 return NGX_HTTP_INTERNAL_SERVER_ERROR;
3248 }
3249
3250 if (stream->in_closed) {
3251 post_handler(r);
3252 return NGX_OK;
3253 }
3254
3255 r->request_body->post_handler = post_handler;
3256
Valentin Bartenev6ba03092013-10-01 00:00:57 +04003257 r->read_event_handler = ngx_http_test_reading;
3258 r->write_event_handler = ngx_http_request_empty_handler;
3259
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003260 return NGX_AGAIN;
3261}
3262
3263
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04003264static ngx_int_t
3265ngx_http_spdy_terminate_stream(ngx_http_spdy_connection_t *sc,
3266 ngx_http_spdy_stream_t *stream, ngx_uint_t status)
3267{
3268 ngx_event_t *rev;
3269 ngx_connection_t *fc;
3270
3271 if (ngx_http_spdy_send_rst_stream(sc, stream->id, status,
3272 NGX_SPDY_HIGHEST_PRIORITY)
3273 == NGX_ERROR)
3274 {
3275 return NGX_ERROR;
3276 }
3277
3278 stream->out_closed = 1;
3279
3280 fc = stream->request->connection;
3281 fc->error = 1;
3282
3283 rev = fc->read;
3284 rev->handler(rev);
3285
3286 return NGX_OK;
3287}
3288
3289
Valentin Bartenev92b82c82013-10-01 00:04:00 +04003290static void
3291ngx_http_spdy_close_stream_handler(ngx_event_t *ev)
3292{
3293 ngx_connection_t *fc;
3294 ngx_http_request_t *r;
3295
3296 fc = ev->data;
3297 r = fc->data;
3298
3299 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
3300 "spdy close stream handler");
3301
3302 ngx_http_spdy_close_stream(r->spdy_stream, 0);
3303}
3304
3305
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003306void
3307ngx_http_spdy_close_stream(ngx_http_spdy_stream_t *stream, ngx_int_t rc)
3308{
3309 ngx_event_t *ev;
3310 ngx_connection_t *fc;
3311 ngx_http_spdy_stream_t **index, *s;
3312 ngx_http_spdy_srv_conf_t *sscf;
3313 ngx_http_spdy_connection_t *sc;
3314
3315 sc = stream->connection;
3316
Valentin Bartenevac8bb7a2014-01-14 16:24:45 +04003317 ngx_log_debug3(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
3318 "spdy close stream %ui, queued %ui, processing %ui",
3319 stream->id, stream->queued, sc->processing);
3320
3321 fc = stream->request->connection;
3322
3323 if (stream->queued) {
3324 fc->write->handler = ngx_http_spdy_close_stream_handler;
3325 return;
3326 }
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003327
3328 if (!stream->out_closed) {
3329 if (ngx_http_spdy_send_rst_stream(sc, stream->id,
3330 NGX_SPDY_INTERNAL_ERROR,
3331 stream->priority)
3332 != NGX_OK)
3333 {
3334 sc->connection->error = 1;
3335 }
3336 }
3337
Valentin Bartenev32bb39c2014-01-22 04:58:19 +04003338 if (sc->stream == stream) {
3339 sc->stream = NULL;
3340 }
3341
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003342 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
3343 ngx_http_spdy_module);
3344
3345 index = sc->streams_index + ngx_http_spdy_stream_index(sscf, stream->id);
3346
3347 for ( ;; ) {
3348 s = *index;
3349
3350 if (s == NULL) {
3351 break;
3352 }
3353
3354 if (s == stream) {
3355 *index = s->index;
3356 break;
3357 }
3358
3359 index = &s->index;
3360 }
3361
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003362 ngx_http_free_request(stream->request, rc);
3363
3364 ev = fc->read;
3365
3366 if (ev->active || ev->disabled) {
Valentin Bartenevc189eda2013-08-15 19:16:12 +04003367 ngx_log_error(NGX_LOG_ALERT, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04003368 "fake read event was activated");
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003369 }
3370
3371 if (ev->timer_set) {
3372 ngx_del_timer(ev);
3373 }
3374
3375 if (ev->prev) {
3376 ngx_delete_posted_event(ev);
3377 }
3378
3379 ev = fc->write;
3380
3381 if (ev->active || ev->disabled) {
Valentin Bartenevc189eda2013-08-15 19:16:12 +04003382 ngx_log_error(NGX_LOG_ALERT, sc->connection->log, 0,
Valentin Bartenevd04a7142014-04-30 20:34:20 +04003383 "fake write event was activated");
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003384 }
3385
3386 if (ev->timer_set) {
3387 ngx_del_timer(ev);
3388 }
3389
3390 if (ev->prev) {
3391 ngx_delete_posted_event(ev);
3392 }
3393
3394 fc->data = sc->free_fake_connections;
3395 sc->free_fake_connections = fc;
3396
3397 sc->processing--;
3398
3399 if (sc->processing || sc->blocked) {
3400 return;
3401 }
3402
3403 ev = sc->connection->read;
3404
3405 ev->handler = ngx_http_spdy_handle_connection_handler;
3406 ngx_post_event(ev, &ngx_posted_events);
3407}
3408
3409
3410static void
3411ngx_http_spdy_handle_connection_handler(ngx_event_t *rev)
3412{
3413 ngx_connection_t *c;
3414
3415 rev->handler = ngx_http_spdy_read_handler;
3416
3417 if (rev->ready) {
3418 ngx_http_spdy_read_handler(rev);
3419 return;
3420 }
3421
3422 c = rev->data;
3423
3424 ngx_http_spdy_handle_connection(c->data);
3425}
3426
3427
3428static void
3429ngx_http_spdy_keepalive_handler(ngx_event_t *rev)
3430{
3431 ngx_connection_t *c;
3432 ngx_http_spdy_srv_conf_t *sscf;
3433 ngx_http_spdy_connection_t *sc;
3434
3435 c = rev->data;
3436
3437 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "spdy keepalive handler");
3438
3439 if (rev->timedout || c->close) {
3440 ngx_http_close_connection(c);
3441 return;
3442 }
3443
3444#if (NGX_HAVE_KQUEUE)
3445
3446 if (ngx_event_flags & NGX_USE_KQUEUE_EVENT) {
3447 if (rev->pending_eof) {
3448 c->log->handler = NULL;
3449 ngx_log_error(NGX_LOG_INFO, c->log, rev->kq_errno,
3450 "kevent() reported that client %V closed "
3451 "keepalive connection", &c->addr_text);
3452#if (NGX_HTTP_SSL)
3453 if (c->ssl) {
3454 c->ssl->no_send_shutdown = 1;
3455 }
3456#endif
3457 ngx_http_close_connection(c);
3458 return;
3459 }
3460 }
3461
3462#endif
3463
3464 c->destroyed = 0;
3465 c->idle = 0;
3466 ngx_reusable_connection(c, 0);
3467
3468 sc = c->data;
3469
3470 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
3471 ngx_http_spdy_module);
3472
3473 sc->pool = ngx_create_pool(sscf->pool_size, sc->connection->log);
3474 if (sc->pool == NULL) {
3475 ngx_http_close_connection(c);
3476 return;
3477 }
3478
3479 sc->streams_index = ngx_pcalloc(sc->pool,
3480 ngx_http_spdy_streams_index_size(sscf)
3481 * sizeof(ngx_http_spdy_stream_t *));
3482 if (sc->streams_index == NULL) {
3483 ngx_http_close_connection(c);
3484 return;
3485 }
3486
3487 c->write->handler = ngx_http_spdy_write_handler;
3488
3489 rev->handler = ngx_http_spdy_read_handler;
3490 ngx_http_spdy_read_handler(rev);
3491}
3492
3493
3494static void
3495ngx_http_spdy_finalize_connection(ngx_http_spdy_connection_t *sc,
3496 ngx_int_t rc)
3497{
3498 ngx_uint_t i, size;
3499 ngx_event_t *ev;
3500 ngx_connection_t *c, *fc;
3501 ngx_http_request_t *r;
3502 ngx_http_spdy_stream_t *stream;
3503 ngx_http_spdy_srv_conf_t *sscf;
3504
3505 c = sc->connection;
3506
3507 if (!sc->processing) {
3508 ngx_http_close_connection(c);
3509 return;
3510 }
3511
3512 c->error = 1;
3513 c->read->handler = ngx_http_empty_handler;
Valentin Bartenev4f4963e2013-10-01 00:12:30 +04003514 c->write->handler = ngx_http_empty_handler;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003515
3516 sc->last_out = NULL;
3517
3518 sc->blocked = 1;
3519
3520 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
3521 ngx_http_spdy_module);
3522
3523 size = ngx_http_spdy_streams_index_size(sscf);
3524
3525 for (i = 0; i < size; i++) {
3526 stream = sc->streams_index[i];
3527
3528 while (stream) {
Valentin Bartenev75dad742013-12-26 17:03:16 +04003529 stream->handled = 0;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003530
Valentin Bartenev75dad742013-12-26 17:03:16 +04003531 r = stream->request;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003532 fc = r->connection;
Valentin Bartenev75dad742013-12-26 17:03:16 +04003533
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003534 fc->error = 1;
3535
Valentin Bartenev00944562014-01-14 16:24:45 +04003536 if (stream->queued) {
Valentin Bartenev00944562014-01-14 16:24:45 +04003537 stream->queued = 0;
Valentin Bartenev7f545282013-12-10 20:27:33 +04003538
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003539 ev = fc->write;
Valentin Bartenev7f545282013-12-10 20:27:33 +04003540 ev->delayed = 0;
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003541
3542 } else {
3543 ev = fc->read;
3544 }
3545
3546 stream = stream->index;
3547
3548 ev->eof = 1;
3549 ev->handler(ev);
3550 }
3551 }
3552
3553 sc->blocked = 0;
3554
3555 if (sc->processing) {
3556 return;
3557 }
3558
3559 ngx_http_close_connection(c);
3560}
3561
3562
Valentin Bartenev449e8ee2014-01-31 19:17:26 +04003563static ngx_int_t
3564ngx_http_spdy_adjust_windows(ngx_http_spdy_connection_t *sc, ssize_t delta)
3565{
3566 ngx_uint_t i, size;
3567 ngx_event_t *wev;
3568 ngx_http_spdy_stream_t *stream, *sn;
3569 ngx_http_spdy_srv_conf_t *sscf;
3570
3571 sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
3572 ngx_http_spdy_module);
3573
3574 size = ngx_http_spdy_streams_index_size(sscf);
3575
3576 for (i = 0; i < size; i++) {
3577
3578 for (stream = sc->streams_index[i]; stream; stream = sn) {
3579 sn = stream->index;
3580
3581 if (delta > 0
3582 && stream->send_window
3583 > (ssize_t) (NGX_SPDY_MAX_WINDOW - delta))
3584 {
3585 if (ngx_http_spdy_terminate_stream(sc, stream,
3586 NGX_SPDY_FLOW_CONTROL_ERROR)
3587 == NGX_ERROR)
3588 {
3589 return NGX_ERROR;
3590 }
3591
3592 continue;
3593 }
3594
3595 stream->send_window += delta;
3596
3597 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
3598 "spdy:%ui adjust window:%z",
3599 stream->id, stream->send_window);
3600
3601 if (stream->send_window > 0 && stream->exhausted) {
3602 stream->exhausted = 0;
3603
3604 wev = stream->request->connection->write;
3605
3606 if (!wev->timer_set) {
3607 wev->delayed = 0;
3608 wev->handler(wev);
3609 }
3610 }
3611 }
3612 }
3613
3614 return NGX_OK;
3615}
3616
3617
Valentin Bartenev2686cb42013-03-20 10:36:57 +00003618static void
3619ngx_http_spdy_pool_cleanup(void *data)
3620{
3621 ngx_http_spdy_connection_t *sc = data;
3622
3623 if (sc->pool) {
3624 ngx_destroy_pool(sc->pool);
3625 }
3626}
3627
3628
3629static void *
3630ngx_http_spdy_zalloc(void *opaque, u_int items, u_int size)
3631{
3632 ngx_http_spdy_connection_t *sc = opaque;
3633
3634 return ngx_palloc(sc->connection->pool, items * size);
3635}
3636
3637
3638static void
3639ngx_http_spdy_zfree(void *opaque, void *address)
3640{
3641#if 0
3642 ngx_http_spdy_connection_t *sc = opaque;
3643
3644 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, sc->connection->log, 0,
3645 "spdy zfree: %p", address);
3646#endif
3647}