1
2 /*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) Nginx, Inc.
5 */
6
7
8 #include <ngx_config.h>
9 #include <ngx_core.h>
10 #include <ngx_http.h>
11
12
13 #define NGX_HTTP_USERID_OFF 0
14 #define NGX_HTTP_USERID_LOG 1
15 #define NGX_HTTP_USERID_V1 2
16 #define NGX_HTTP_USERID_ON 3
17
18 /* 31 Dec 2037 23:55:55 GMT */
19 #define NGX_HTTP_USERID_MAX_EXPIRES 2145916555
20
21
22 typedef struct {
23 ngx_uint_t enable;
24
25 ngx_int_t service;
26
27 ngx_str_t name;
28 ngx_str_t domain;
29 ngx_str_t path;
30 ngx_str_t p3p;
31
32 time_t expires;
33
34 u_char mark;
35 } ngx_http_userid_conf_t;
36
37
38 typedef struct {
39 uint32_t uid_got[4];
40 uint32_t uid_set[4];
41 ngx_str_t cookie;
42 ngx_uint_t reset;
43 } ngx_http_userid_ctx_t;
44
45
46 static ngx_http_userid_ctx_t *ngx_http_userid_get_uid(ngx_http_request_t *r,
47 ngx_http_userid_conf_t *conf);
48 static ngx_int_t ngx_http_userid_variable(ngx_http_request_t *r,
49 ngx_http_variable_value_t *v, ngx_str_t *name, uint32_t *uid);
50 static ngx_int_t ngx_http_userid_set_uid(ngx_http_request_t *r,
51 ngx_http_userid_ctx_t *ctx, ngx_http_userid_conf_t *conf);
52 static ngx_int_t ngx_http_userid_create_uid(ngx_http_request_t *r,
53 ngx_http_userid_ctx_t *ctx, ngx_http_userid_conf_t *conf);
54
55 static ngx_int_t ngx_http_userid_add_variables(ngx_conf_t *cf);
56 static ngx_int_t ngx_http_userid_init(ngx_conf_t *cf);
57 static void *ngx_http_userid_create_conf(ngx_conf_t *cf);
58 static char *ngx_http_userid_merge_conf(ngx_conf_t *cf, void *parent,
59 void *child);
60 static char *ngx_http_userid_domain(ngx_conf_t *cf, void *post, void *data);
61 static char *ngx_http_userid_path(ngx_conf_t *cf, void *post, void *data);
62 static char *ngx_http_userid_expires(ngx_conf_t *cf, ngx_command_t *cmd,
63 void *conf);
64 static char *ngx_http_userid_p3p(ngx_conf_t *cf, void *post, void *data);
65 static char *ngx_http_userid_mark(ngx_conf_t *cf, ngx_command_t *cmd,
66 void *conf);
67 static ngx_int_t ngx_http_userid_init_worker(ngx_cycle_t *cycle);
68
69
70
71 static uint32_t start_value;
72 static uint32_t sequencer_v1 = 1;
73 static uint32_t sequencer_v2 = 0x03030302;
74
75
76 static u_char expires[] = "; expires=Thu, 31-Dec-37 23:55:55 GMT";
77
78
79 static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
80
81
82 static ngx_conf_enum_t ngx_http_userid_state[] = {
83 { ngx_string("off"), NGX_HTTP_USERID_OFF },
84 { ngx_string("log"), NGX_HTTP_USERID_LOG },
85 { ngx_string("v1"), NGX_HTTP_USERID_V1 },
86 { ngx_string("on"), NGX_HTTP_USERID_ON },
87 { ngx_null_string, 0 }
88 };
89
90
91 static ngx_conf_post_handler_pt ngx_http_userid_domain_p =
92 ngx_http_userid_domain;
93 static ngx_conf_post_handler_pt ngx_http_userid_path_p = ngx_http_userid_path;
94 static ngx_conf_post_handler_pt ngx_http_userid_p3p_p = ngx_http_userid_p3p;
95
96
97 static ngx_command_t ngx_http_userid_commands[] = {
98
99 { ngx_string("userid"),
100 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
101 ngx_conf_set_enum_slot,
102 NGX_HTTP_LOC_CONF_OFFSET,
103 offsetof(ngx_http_userid_conf_t, enable),
104 ngx_http_userid_state },
105
106 { ngx_string("userid_service"),
107 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
108 ngx_conf_set_num_slot,
109 NGX_HTTP_LOC_CONF_OFFSET,
110 offsetof(ngx_http_userid_conf_t, service),
111 NULL },
112
113 { ngx_string("userid_name"),
114 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
115 ngx_conf_set_str_slot,
116 NGX_HTTP_LOC_CONF_OFFSET,
117 offsetof(ngx_http_userid_conf_t, name),
118 NULL },
119
120 { ngx_string("userid_domain"),
121 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
122 ngx_conf_set_str_slot,
123 NGX_HTTP_LOC_CONF_OFFSET,
124 offsetof(ngx_http_userid_conf_t, domain),
125 &ngx_http_userid_domain_p },
126
127 { ngx_string("userid_path"),
128 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
129 ngx_conf_set_str_slot,
130 NGX_HTTP_LOC_CONF_OFFSET,
131 offsetof(ngx_http_userid_conf_t, path),
132 &ngx_http_userid_path_p },
133
134 { ngx_string("userid_expires"),
135 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
136 ngx_http_userid_expires,
137 NGX_HTTP_LOC_CONF_OFFSET,
138 0,
139 NULL },
140
141 { ngx_string("userid_p3p"),
142 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
143 ngx_conf_set_str_slot,
144 NGX_HTTP_LOC_CONF_OFFSET,
145 offsetof(ngx_http_userid_conf_t, p3p),
146 &ngx_http_userid_p3p_p },
147
148 { ngx_string("userid_mark"),
149 NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
150 ngx_http_userid_mark,
151 NGX_HTTP_LOC_CONF_OFFSET,
152 0,
153 NULL },
154
155 ngx_null_command
156 };
157
158
159 static ngx_http_module_t ngx_http_userid_filter_module_ctx = {
160 ngx_http_userid_add_variables, /* preconfiguration */
161 ngx_http_userid_init, /* postconfiguration */
162
163 NULL, /* create main configuration */
164 NULL, /* init main configuration */
165
166 NULL, /* create server configuration */
167 NULL, /* merge server configuration */
168
169 ngx_http_userid_create_conf, /* create location configuration */
170 ngx_http_userid_merge_conf /* merge location configuration */
171 };
172
173
174 ngx_module_t ngx_http_userid_filter_module = {
175 NGX_MODULE_V1,
176 &ngx_http_userid_filter_module_ctx, /* module context */
177 ngx_http_userid_commands, /* module directives */
178 NGX_HTTP_MODULE, /* module type */
179 NULL, /* init master */
180 NULL, /* init module */
181 ngx_http_userid_init_worker, /* init process */
182 NULL, /* init thread */
183 NULL, /* exit thread */
184 NULL, /* exit process */
185 NULL, /* exit master */
186 NGX_MODULE_V1_PADDING
187 };
188
189
190 static ngx_str_t ngx_http_userid_got = ngx_string("uid_got");
191 static ngx_str_t ngx_http_userid_set = ngx_string("uid_set");
192 static ngx_str_t ngx_http_userid_reset = ngx_string("uid_reset");
193 static ngx_uint_t ngx_http_userid_reset_index;
194
195
196 static ngx_int_t
ngx_http_userid_filter(ngx_http_request_t * r)197 ngx_http_userid_filter(ngx_http_request_t *r)
198 {
199 ngx_http_userid_ctx_t *ctx;
200 ngx_http_userid_conf_t *conf;
201
202 if (r != r->main) {
203 return ngx_http_next_header_filter(r);
204 }
205
206 conf = ngx_http_get_module_loc_conf(r, ngx_http_userid_filter_module);
207
208 if (conf->enable < NGX_HTTP_USERID_V1) {
209 return ngx_http_next_header_filter(r);
210 }
211
212 ctx = ngx_http_userid_get_uid(r, conf);
213
214 if (ctx == NULL) {
215 return NGX_ERROR;
216 }
217
218 if (ngx_http_userid_set_uid(r, ctx, conf) == NGX_OK) {
219 return ngx_http_next_header_filter(r);
220 }
221
222 return NGX_ERROR;
223 }
224
225
226 static ngx_int_t
ngx_http_userid_got_variable(ngx_http_request_t * r,ngx_http_variable_value_t * v,uintptr_t data)227 ngx_http_userid_got_variable(ngx_http_request_t *r,
228 ngx_http_variable_value_t *v, uintptr_t data)
229 {
230 ngx_http_userid_ctx_t *ctx;
231 ngx_http_userid_conf_t *conf;
232
233 conf = ngx_http_get_module_loc_conf(r->main, ngx_http_userid_filter_module);
234
235 if (conf->enable == NGX_HTTP_USERID_OFF) {
236 v->not_found = 1;
237 return NGX_OK;
238 }
239
240 ctx = ngx_http_userid_get_uid(r->main, conf);
241
242 if (ctx == NULL) {
243 return NGX_ERROR;
244 }
245
246 if (ctx->uid_got[3] != 0) {
247 return ngx_http_userid_variable(r->main, v, &conf->name, ctx->uid_got);
248 }
249
250 v->not_found = 1;
251
252 return NGX_OK;
253 }
254
255
256 static ngx_int_t
ngx_http_userid_set_variable(ngx_http_request_t * r,ngx_http_variable_value_t * v,uintptr_t data)257 ngx_http_userid_set_variable(ngx_http_request_t *r,
258 ngx_http_variable_value_t *v, uintptr_t data)
259 {
260 ngx_http_userid_ctx_t *ctx;
261 ngx_http_userid_conf_t *conf;
262
263 conf = ngx_http_get_module_loc_conf(r->main, ngx_http_userid_filter_module);
264
265 if (conf->enable < NGX_HTTP_USERID_V1) {
266 v->not_found = 1;
267 return NGX_OK;
268 }
269
270 ctx = ngx_http_userid_get_uid(r->main, conf);
271
272 if (ctx == NULL) {
273 return NGX_ERROR;
274 }
275
276 if (ngx_http_userid_create_uid(r->main, ctx, conf) != NGX_OK) {
277 return NGX_ERROR;
278 }
279
280 if (ctx->uid_set[3] == 0) {
281 v->not_found = 1;
282 return NGX_OK;
283 }
284
285 return ngx_http_userid_variable(r->main, v, &conf->name, ctx->uid_set);
286 }
287
288
289 static ngx_http_userid_ctx_t *
ngx_http_userid_get_uid(ngx_http_request_t * r,ngx_http_userid_conf_t * conf)290 ngx_http_userid_get_uid(ngx_http_request_t *r, ngx_http_userid_conf_t *conf)
291 {
292 ngx_int_t n;
293 ngx_str_t src, dst;
294 ngx_table_elt_t **cookies;
295 ngx_http_userid_ctx_t *ctx;
296
297 ctx = ngx_http_get_module_ctx(r, ngx_http_userid_filter_module);
298
299 if (ctx) {
300 return ctx;
301 }
302
303 if (ctx == NULL) {
304 ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_userid_ctx_t));
305 if (ctx == NULL) {
306 return NULL;
307 }
308
309 ngx_http_set_ctx(r, ctx, ngx_http_userid_filter_module);
310 }
311
312 n = ngx_http_parse_multi_header_lines(&r->headers_in.cookies, &conf->name,
313 &ctx->cookie);
314 if (n == NGX_DECLINED) {
315 return ctx;
316 }
317
318 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
319 "uid cookie: \"%V\"", &ctx->cookie);
320
321 if (ctx->cookie.len < 22) {
322 cookies = r->headers_in.cookies.elts;
323 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
324 "client sent too short userid cookie \"%V\"",
325 &cookies[n]->value);
326 return ctx;
327 }
328
329 src = ctx->cookie;
330
331 /*
332 * we have to limit the encoded string to 22 characters because
333 * 1) cookie may be marked by "userid_mark",
334 * 2) and there are already the millions cookies with a garbage
335 * instead of the correct base64 trail "=="
336 */
337
338 src.len = 22;
339
340 dst.data = (u_char *) ctx->uid_got;
341
342 if (ngx_decode_base64(&dst, &src) == NGX_ERROR) {
343 cookies = r->headers_in.cookies.elts;
344 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
345 "client sent invalid userid cookie \"%V\"",
346 &cookies[n]->value);
347 return ctx;
348 }
349
350 ngx_log_debug4(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
351 "uid: %08XD%08XD%08XD%08XD",
352 ctx->uid_got[0], ctx->uid_got[1],
353 ctx->uid_got[2], ctx->uid_got[3]);
354
355 return ctx;
356 }
357
358
359 static ngx_int_t
ngx_http_userid_set_uid(ngx_http_request_t * r,ngx_http_userid_ctx_t * ctx,ngx_http_userid_conf_t * conf)360 ngx_http_userid_set_uid(ngx_http_request_t *r, ngx_http_userid_ctx_t *ctx,
361 ngx_http_userid_conf_t *conf)
362 {
363 u_char *cookie, *p;
364 size_t len;
365 ngx_str_t src, dst;
366 ngx_table_elt_t *set_cookie, *p3p;
367
368 if (ngx_http_userid_create_uid(r, ctx, conf) != NGX_OK) {
369 return NGX_ERROR;
370 }
371
372 if (ctx->uid_set[3] == 0) {
373 return NGX_OK;
374 }
375
376 len = conf->name.len + 1 + ngx_base64_encoded_length(16) + conf->path.len;
377
378 if (conf->expires) {
379 len += sizeof(expires) - 1 + 2;
380 }
381
382 if (conf->domain.len) {
383 len += conf->domain.len;
384 }
385
386 cookie = ngx_pnalloc(r->pool, len);
387 if (cookie == NULL) {
388 return NGX_ERROR;
389 }
390
391 p = ngx_copy(cookie, conf->name.data, conf->name.len);
392 *p++ = '=';
393
394 if (ctx->uid_got[3] == 0 || ctx->reset) {
395 src.len = 16;
396 src.data = (u_char *) ctx->uid_set;
397 dst.data = p;
398
399 ngx_encode_base64(&dst, &src);
400
401 p += dst.len;
402
403 if (conf->mark) {
404 *(p - 2) = conf->mark;
405 }
406
407 } else {
408 p = ngx_cpymem(p, ctx->cookie.data, 22);
409 *p++ = conf->mark;
410 *p++ = '=';
411 }
412
413 if (conf->expires == NGX_HTTP_USERID_MAX_EXPIRES) {
414 p = ngx_cpymem(p, expires, sizeof(expires) - 1);
415
416 } else if (conf->expires) {
417 p = ngx_cpymem(p, expires, sizeof("; expires=") - 1);
418 p = ngx_http_cookie_time(p, ngx_time() + conf->expires);
419 }
420
421 p = ngx_copy(p, conf->domain.data, conf->domain.len);
422
423 p = ngx_copy(p, conf->path.data, conf->path.len);
424
425 set_cookie = ngx_list_push(&r->headers_out.headers);
426 if (set_cookie == NULL) {
427 return NGX_ERROR;
428 }
429
430 set_cookie->hash = 1;
431 ngx_str_set(&set_cookie->key, "Set-Cookie");
432 set_cookie->value.len = p - cookie;
433 set_cookie->value.data = cookie;
434
435 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
436 "uid cookie: \"%V\"", &set_cookie->value);
437
438 if (conf->p3p.len == 0) {
439 return NGX_OK;
440 }
441
442 p3p = ngx_list_push(&r->headers_out.headers);
443 if (p3p == NULL) {
444 return NGX_ERROR;
445 }
446
447 p3p->hash = 1;
448 ngx_str_set(&p3p->key, "P3P");
449 p3p->value = conf->p3p;
450
451 return NGX_OK;
452 }
453
454
455 static ngx_int_t
ngx_http_userid_create_uid(ngx_http_request_t * r,ngx_http_userid_ctx_t * ctx,ngx_http_userid_conf_t * conf)456 ngx_http_userid_create_uid(ngx_http_request_t *r, ngx_http_userid_ctx_t *ctx,
457 ngx_http_userid_conf_t *conf)
458 {
459 ngx_connection_t *c;
460 struct sockaddr_in *sin;
461 ngx_http_variable_value_t *vv;
462 #if (NGX_HAVE_INET6)
463 u_char *p;
464 struct sockaddr_in6 *sin6;
465 #endif
466
467 if (ctx->uid_set[3] != 0) {
468 return NGX_OK;
469 }
470
471 if (ctx->uid_got[3] != 0) {
472
473 vv = ngx_http_get_indexed_variable(r, ngx_http_userid_reset_index);
474
475 if (vv == NULL || vv->not_found) {
476 return NGX_ERROR;
477 }
478
479 if (vv->len == 0 || (vv->len == 1 && vv->data[0] == '0')) {
480
481 if (conf->mark == '\0'
482 || (ctx->cookie.len > 23
483 && ctx->cookie.data[22] == conf->mark
484 && ctx->cookie.data[23] == '='))
485 {
486 return NGX_OK;
487 }
488
489 ctx->uid_set[0] = ctx->uid_got[0];
490 ctx->uid_set[1] = ctx->uid_got[1];
491 ctx->uid_set[2] = ctx->uid_got[2];
492 ctx->uid_set[3] = ctx->uid_got[3];
493
494 return NGX_OK;
495
496 } else {
497 ctx->reset = 1;
498
499 if (vv->len == 3 && ngx_strncmp(vv->data, "log", 3) == 0) {
500 ngx_log_error(NGX_LOG_NOTICE, r->connection->log, 0,
501 "userid cookie \"%V=%08XD%08XD%08XD%08XD\" was reset",
502 &conf->name, ctx->uid_got[0], ctx->uid_got[1],
503 ctx->uid_got[2], ctx->uid_got[3]);
504 }
505 }
506 }
507
508 /*
509 * TODO: in the threaded mode the sequencers should be in TLS and their
510 * ranges should be divided between threads
511 */
512
513 if (conf->enable == NGX_HTTP_USERID_V1) {
514 if (conf->service == NGX_CONF_UNSET) {
515 ctx->uid_set[0] = 0;
516 } else {
517 ctx->uid_set[0] = conf->service;
518 }
519 ctx->uid_set[1] = (uint32_t) ngx_time();
520 ctx->uid_set[2] = start_value;
521 ctx->uid_set[3] = sequencer_v1;
522 sequencer_v1 += 0x100;
523
524 } else {
525 if (conf->service == NGX_CONF_UNSET) {
526
527 c = r->connection;
528
529 if (ngx_connection_local_sockaddr(c, NULL, 0) != NGX_OK) {
530 return NGX_ERROR;
531 }
532
533 switch (c->local_sockaddr->sa_family) {
534
535 #if (NGX_HAVE_INET6)
536 case AF_INET6:
537 sin6 = (struct sockaddr_in6 *) c->local_sockaddr;
538
539 p = (u_char *) &ctx->uid_set[0];
540
541 *p++ = sin6->sin6_addr.s6_addr[12];
542 *p++ = sin6->sin6_addr.s6_addr[13];
543 *p++ = sin6->sin6_addr.s6_addr[14];
544 *p = sin6->sin6_addr.s6_addr[15];
545
546 break;
547 #endif
548
549 #if (NGX_HAVE_UNIX_DOMAIN)
550 case AF_UNIX:
551 ctx->uid_set[0] = 0;
552 break;
553 #endif
554
555 default: /* AF_INET */
556 sin = (struct sockaddr_in *) c->local_sockaddr;
557 ctx->uid_set[0] = sin->sin_addr.s_addr;
558 break;
559 }
560
561 } else {
562 ctx->uid_set[0] = htonl(conf->service);
563 }
564
565 ctx->uid_set[1] = htonl((uint32_t) ngx_time());
566 ctx->uid_set[2] = htonl(start_value);
567 ctx->uid_set[3] = htonl(sequencer_v2);
568 sequencer_v2 += 0x100;
569 if (sequencer_v2 < 0x03030302) {
570 sequencer_v2 = 0x03030302;
571 }
572 }
573
574 return NGX_OK;
575 }
576
577
578 static ngx_int_t
ngx_http_userid_variable(ngx_http_request_t * r,ngx_http_variable_value_t * v,ngx_str_t * name,uint32_t * uid)579 ngx_http_userid_variable(ngx_http_request_t *r, ngx_http_variable_value_t *v,
580 ngx_str_t *name, uint32_t *uid)
581 {
582 v->len = name->len + sizeof("=00001111222233334444555566667777") - 1;
583 v->data = ngx_pnalloc(r->pool, v->len);
584 if (v->data == NULL) {
585 return NGX_ERROR;
586 }
587
588 v->valid = 1;
589 v->no_cacheable = 0;
590 v->not_found = 0;
591
592 ngx_sprintf(v->data, "%V=%08XD%08XD%08XD%08XD",
593 name, uid[0], uid[1], uid[2], uid[3]);
594
595 return NGX_OK;
596 }
597
598
599 static ngx_int_t
ngx_http_userid_reset_variable(ngx_http_request_t * r,ngx_http_variable_value_t * v,uintptr_t data)600 ngx_http_userid_reset_variable(ngx_http_request_t *r,
601 ngx_http_variable_value_t *v, uintptr_t data)
602 {
603 *v = ngx_http_variable_null_value;
604
605 return NGX_OK;
606 }
607
608
609 static ngx_int_t
ngx_http_userid_add_variables(ngx_conf_t * cf)610 ngx_http_userid_add_variables(ngx_conf_t *cf)
611 {
612 ngx_int_t n;
613 ngx_http_variable_t *var;
614
615 var = ngx_http_add_variable(cf, &ngx_http_userid_got, 0);
616 if (var == NULL) {
617 return NGX_ERROR;
618 }
619
620 var->get_handler = ngx_http_userid_got_variable;
621
622 var = ngx_http_add_variable(cf, &ngx_http_userid_set, 0);
623 if (var == NULL) {
624 return NGX_ERROR;
625 }
626
627 var->get_handler = ngx_http_userid_set_variable;
628
629 var = ngx_http_add_variable(cf, &ngx_http_userid_reset,
630 NGX_HTTP_VAR_CHANGEABLE);
631 if (var == NULL) {
632 return NGX_ERROR;
633 }
634
635 var->get_handler = ngx_http_userid_reset_variable;
636
637 n = ngx_http_get_variable_index(cf, &ngx_http_userid_reset);
638 if (n == NGX_ERROR) {
639 return NGX_ERROR;
640 }
641
642 ngx_http_userid_reset_index = n;
643
644 return NGX_OK;
645 }
646
647
648 static void *
ngx_http_userid_create_conf(ngx_conf_t * cf)649 ngx_http_userid_create_conf(ngx_conf_t *cf)
650 {
651 ngx_http_userid_conf_t *conf;
652
653 conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_userid_conf_t));
654 if (conf == NULL) {
655 return NULL;
656 }
657
658 /*
659 * set by ngx_pcalloc():
660 *
661 * conf->name = { 0, NULL };
662 * conf->domain = { 0, NULL };
663 * conf->path = { 0, NULL };
664 * conf->p3p = { 0, NULL };
665 */
666
667 conf->enable = NGX_CONF_UNSET_UINT;
668 conf->service = NGX_CONF_UNSET;
669 conf->expires = NGX_CONF_UNSET;
670 conf->mark = (u_char) '\xFF';
671
672 return conf;
673 }
674
675
676 static char *
ngx_http_userid_merge_conf(ngx_conf_t * cf,void * parent,void * child)677 ngx_http_userid_merge_conf(ngx_conf_t *cf, void *parent, void *child)
678 {
679 ngx_http_userid_conf_t *prev = parent;
680 ngx_http_userid_conf_t *conf = child;
681
682 ngx_conf_merge_uint_value(conf->enable, prev->enable,
683 NGX_HTTP_USERID_OFF);
684
685 ngx_conf_merge_str_value(conf->name, prev->name, "uid");
686 ngx_conf_merge_str_value(conf->domain, prev->domain, "");
687 ngx_conf_merge_str_value(conf->path, prev->path, "; path=/");
688 ngx_conf_merge_str_value(conf->p3p, prev->p3p, "");
689
690 ngx_conf_merge_value(conf->service, prev->service, NGX_CONF_UNSET);
691 ngx_conf_merge_sec_value(conf->expires, prev->expires, 0);
692
693 if (conf->mark == (u_char) '\xFF') {
694 if (prev->mark == (u_char) '\xFF') {
695 conf->mark = '\0';
696 } else {
697 conf->mark = prev->mark;
698 }
699 }
700
701 return NGX_CONF_OK;
702 }
703
704
705 static ngx_int_t
ngx_http_userid_init(ngx_conf_t * cf)706 ngx_http_userid_init(ngx_conf_t *cf)
707 {
708 ngx_http_next_header_filter = ngx_http_top_header_filter;
709 ngx_http_top_header_filter = ngx_http_userid_filter;
710
711 return NGX_OK;
712 }
713
714
715 static char *
ngx_http_userid_domain(ngx_conf_t * cf,void * post,void * data)716 ngx_http_userid_domain(ngx_conf_t *cf, void *post, void *data)
717 {
718 ngx_str_t *domain = data;
719
720 u_char *p, *new;
721
722 if (ngx_strcmp(domain->data, "none") == 0) {
723 ngx_str_set(domain, "");
724 return NGX_CONF_OK;
725 }
726
727 new = ngx_pnalloc(cf->pool, sizeof("; domain=") - 1 + domain->len);
728 if (new == NULL) {
729 return NGX_CONF_ERROR;
730 }
731
732 p = ngx_cpymem(new, "; domain=", sizeof("; domain=") - 1);
733 ngx_memcpy(p, domain->data, domain->len);
734
735 domain->len += sizeof("; domain=") - 1;
736 domain->data = new;
737
738 return NGX_CONF_OK;
739 }
740
741
742 static char *
ngx_http_userid_path(ngx_conf_t * cf,void * post,void * data)743 ngx_http_userid_path(ngx_conf_t *cf, void *post, void *data)
744 {
745 ngx_str_t *path = data;
746
747 u_char *p, *new;
748
749 new = ngx_pnalloc(cf->pool, sizeof("; path=") - 1 + path->len);
750 if (new == NULL) {
751 return NGX_CONF_ERROR;
752 }
753
754 p = ngx_cpymem(new, "; path=", sizeof("; path=") - 1);
755 ngx_memcpy(p, path->data, path->len);
756
757 path->len += sizeof("; path=") - 1;
758 path->data = new;
759
760 return NGX_CONF_OK;
761 }
762
763
764 static char *
ngx_http_userid_expires(ngx_conf_t * cf,ngx_command_t * cmd,void * conf)765 ngx_http_userid_expires(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
766 {
767 ngx_http_userid_conf_t *ucf = conf;
768
769 ngx_str_t *value;
770
771 if (ucf->expires != NGX_CONF_UNSET) {
772 return "is duplicate";
773 }
774
775 value = cf->args->elts;
776
777 if (ngx_strcmp(value[1].data, "max") == 0) {
778 ucf->expires = NGX_HTTP_USERID_MAX_EXPIRES;
779 return NGX_CONF_OK;
780 }
781
782 if (ngx_strcmp(value[1].data, "off") == 0) {
783 ucf->expires = 0;
784 return NGX_CONF_OK;
785 }
786
787 ucf->expires = ngx_parse_time(&value[1], 1);
788 if (ucf->expires == (time_t) NGX_ERROR) {
789 return "invalid value";
790 }
791
792 return NGX_CONF_OK;
793 }
794
795
796 static char *
ngx_http_userid_p3p(ngx_conf_t * cf,void * post,void * data)797 ngx_http_userid_p3p(ngx_conf_t *cf, void *post, void *data)
798 {
799 ngx_str_t *p3p = data;
800
801 if (ngx_strcmp(p3p->data, "none") == 0) {
802 ngx_str_set(p3p, "");
803 }
804
805 return NGX_CONF_OK;
806 }
807
808
809 static char *
ngx_http_userid_mark(ngx_conf_t * cf,ngx_command_t * cmd,void * conf)810 ngx_http_userid_mark(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
811 {
812 ngx_http_userid_conf_t *ucf = conf;
813
814 ngx_str_t *value;
815
816 if (ucf->mark != (u_char) '\xFF') {
817 return "is duplicate";
818 }
819
820 value = cf->args->elts;
821
822 if (ngx_strcmp(value[1].data, "off") == 0) {
823 ucf->mark = '\0';
824 return NGX_CONF_OK;
825 }
826
827 if (value[1].len != 1
828 || !((value[1].data[0] >= '0' && value[1].data[0] <= '9')
829 || (value[1].data[0] >= 'A' && value[1].data[0] <= 'Z')
830 || (value[1].data[0] >= 'a' && value[1].data[0] <= 'z')
831 || value[1].data[0] == '='))
832 {
833 return "value must be \"off\" or a single letter, digit or \"=\"";
834 }
835
836 ucf->mark = value[1].data[0];
837
838 return NGX_CONF_OK;
839 }
840
841
842 static ngx_int_t
ngx_http_userid_init_worker(ngx_cycle_t * cycle)843 ngx_http_userid_init_worker(ngx_cycle_t *cycle)
844 {
845 struct timeval tp;
846
847 ngx_gettimeofday(&tp);
848
849 /* use the most significant usec part that fits to 16 bits */
850 start_value = (((uint32_t) tp.tv_usec / 20) << 16) | ngx_pid;
851
852 return NGX_OK;
853 }
854