-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathngx_http_jwt_module.c
448 lines (409 loc) · 15.3 KB
/
ngx_http_jwt_module.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
#include <stdbool.h>
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
#include <jwt.h>
// Module structures
typedef struct {
ngx_str_t key;
ngx_flag_t issue;
ngx_uint_t issue_algorithm;
size_t issue_buffer_size;
ngx_flag_t verify;
} ngx_http_jwt_conf_t;
typedef struct {
size_t length;
unsigned char *body;
unsigned char *last;
} ngx_http_jwt_ctx_t;
// Function forward declaration
static void *ngx_http_jwt_create_loc_conf(ngx_conf_t *cf);
static char *ngx_http_jwt_merge_loc_conf(ngx_conf_t *cf,
void *parent,
void *child);
static char *ngx_http_jwt_key_file(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);
static ngx_int_t ngx_http_jwt_init(ngx_conf_t *cf);
static ngx_int_t ngx_http_jwt_issue_header_filter(ngx_http_request_t *r);
static ngx_int_t ngx_http_jwt_issue_body_filter(ngx_http_request_t *r, ngx_chain_t *in);
static ngx_int_t ngx_http_jwt_verify_handler(ngx_http_request_t *r);
static ngx_conf_enum_t ngx_http_jwt_algorithms[] = {
{ ngx_string("none"), JWT_ALG_NONE },
{ ngx_string("HS256"), JWT_ALG_HS256 },
{ ngx_string("HS384"), JWT_ALG_HS384 },
{ ngx_string("HS512"), JWT_ALG_HS512 },
{ ngx_string("RS256"), JWT_ALG_RS256 },
{ ngx_string("RS384"), JWT_ALG_RS384 },
{ ngx_string("RS512"), JWT_ALG_RS512 },
{ ngx_string("ES256"), JWT_ALG_ES256 },
{ ngx_string("ES384"), JWT_ALG_ES384 },
{ ngx_string("ES512"), JWT_ALG_ES512 },
{ ngx_null_string, 0 }
};
// Directives
static ngx_command_t ngx_http_jwt_commands[] = {
{ ngx_string("jwt_key"),
NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_jwt_conf_t, key),
NULL },
{ ngx_string("jwt_key_file"),
NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_http_jwt_key_file,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_jwt_conf_t, key),
NULL },
{ ngx_string("jwt_issue"),
NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
ngx_conf_set_flag_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_jwt_conf_t, issue),
NULL },
{ ngx_string("jwt_issue_algorithm"),
NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_conf_set_enum_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_jwt_conf_t, issue_algorithm),
&ngx_http_jwt_algorithms },
{ ngx_string("jwt_issue_buffer_size"),
NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_conf_set_size_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_jwt_conf_t, issue_buffer_size),
NULL },
{ ngx_string("jwt_verify"),
NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
ngx_conf_set_flag_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_jwt_conf_t, verify),
NULL },
ngx_null_command
};
// Module definition
static ngx_http_module_t ngx_http_jwt_module_ctx = {
NULL, /* preconfiguration */
ngx_http_jwt_init, /* postconfiguration */
NULL, /* create main configuration */
NULL, /* init main configuration */
NULL, /* create server configuration */
NULL, /* merge server configuration */
ngx_http_jwt_create_loc_conf, /* create location configuration */
ngx_http_jwt_merge_loc_conf /* merge location configuration */
};
ngx_module_t ngx_http_jwt_module = {
NGX_MODULE_V1,
&ngx_http_jwt_module_ctx, /* module context */
ngx_http_jwt_commands, /* module directives */
NGX_HTTP_MODULE, /* module type */
NULL, /* init master */
NULL, /* init module */
NULL, /* init process */
NULL, /* init thread */
NULL, /* exit thread */
NULL, /* exit process */
NULL, /* exit master */
NGX_MODULE_V1_PADDING
};
static ngx_http_output_header_filter_pt ngx_http_next_header_filter;
static ngx_http_output_body_filter_pt ngx_http_next_body_filter;
// Function implementation
// Create location configuration
static void * ngx_http_jwt_create_loc_conf(ngx_conf_t *cf) {
ngx_http_jwt_conf_t *conf;
conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_jwt_conf_t));
if (conf == NULL) {
return NULL;
}
conf->issue = NGX_CONF_UNSET;
conf->issue_algorithm = NGX_CONF_UNSET_UINT;
conf->issue_buffer_size = NGX_CONF_UNSET_SIZE;
conf->verify = NGX_CONF_UNSET;
return conf;
}
// Merge location configuration
static char * ngx_http_jwt_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) {
ngx_http_jwt_conf_t *prev = parent;
ngx_http_jwt_conf_t *conf = child;
ngx_conf_merge_str_value(conf->key, prev->key, "");
ngx_conf_merge_value(conf->issue, prev->issue, false);
ngx_conf_merge_uint_value(conf->issue_algorithm, prev->issue_algorithm, JWT_ALG_HS512);
ngx_conf_merge_size_value(conf->issue_buffer_size, prev->issue_buffer_size,
1 * 1024 * 1024);
ngx_conf_merge_value(conf->verify, prev->verify, false);
return NGX_CONF_OK;
}
// jwt_key_file config directive callback
static char *ngx_http_jwt_key_file(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf) {
ngx_str_t *key = conf;
ngx_str_t *args = cf->args->elts;
char *key_file = (char *)args[1].data;
// Determine file size (avoiding fseek)
struct stat fstat;
if (stat(key_file, &fstat) < 0) {
ngx_conf_log_error(NGX_LOG_ERR, cf, errno, strerror(errno));
return NGX_CONF_ERROR;
}
FILE *fp = fopen(key_file, "rb");
if (fp == NULL) {
ngx_conf_log_error(NGX_LOG_ERR, cf, errno, strerror(errno));
return NGX_CONF_ERROR;
}
key->len = fstat.st_size;
key->data = calloc(key->len, 1);
if (fread(key->data, 1, key->len, fp) != key->len) {
ngx_conf_log_error(NGX_LOG_ERR, cf, 0,
"jwt_key_file: unexpected end of file");
fclose(fp);
return NGX_CONF_ERROR;
}
fclose(fp);
return NGX_CONF_OK;
}
// Post configuration - add request handler
static ngx_int_t ngx_http_jwt_init(ngx_conf_t *cf) {
// Install jwt_issue filters
ngx_http_next_header_filter = ngx_http_top_header_filter;
ngx_http_top_header_filter = ngx_http_jwt_issue_header_filter;
ngx_http_next_body_filter = ngx_http_top_body_filter;
ngx_http_top_body_filter = ngx_http_jwt_issue_body_filter;
// Install jwt_verify handler
ngx_http_core_main_conf_t *cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);
ngx_http_handler_pt *h = ngx_array_push(&cmcf->phases[NGX_HTTP_ACCESS_PHASE].handlers);
if (h == NULL) {
return NGX_ERROR;
}
*h = ngx_http_jwt_verify_handler;
return NGX_OK;
}
static ngx_int_t ngx_http_jwt_issue_header_filter(ngx_http_request_t *r) {
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "jwt_issue_header_filter");
ngx_http_jwt_conf_t *conf = ngx_http_get_module_loc_conf(r, ngx_http_jwt_module);
if (!conf->issue) {
return ngx_http_next_header_filter(r);
}
off_t len = r->headers_out.content_length_n;
if (len > 0 && len > (off_t)conf->issue_buffer_size) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"jwt_issue: cannot issue token from too large body, max is %O bytes",
conf->issue_buffer_size);
return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE;
}
ngx_http_jwt_ctx_t *ctx = ngx_http_get_module_ctx(r, ngx_http_jwt_module);
if (ctx == NULL) {
ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_jwt_ctx_t));
if (ctx == NULL) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_issue: error creating context");
return NGX_ERROR;
}
ngx_http_set_ctx(r, ctx, ngx_http_jwt_module);
}
// content_length_n == -1 means chunked encoding
if (len == -1) {
ctx->length = conf->issue_buffer_size;
} else {
ctx->length = (size_t)len + 1; // TODO(SN): no 0-termination
}
// skip all other header filters (for now)
return NGX_OK;
}
static ngx_int_t ngx_http_jwt_issue_body_filter(ngx_http_request_t *r, ngx_chain_t *in) {
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "jwt_issue_body_filter");
ngx_http_jwt_conf_t *conf = ngx_http_get_module_loc_conf(r, ngx_http_jwt_module);
if (!conf->issue || in == NULL || r->headers_out.status != NGX_HTTP_OK) {
ngx_int_t rc = ngx_http_next_header_filter(r);
if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
return NGX_ERROR;
}
return ngx_http_next_body_filter(r, in);
}
ngx_http_jwt_ctx_t *ctx = ngx_http_get_module_ctx(r, ngx_http_jwt_module);
if (ctx == NULL) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_issue: context could not be retrieved");
return NGX_ERROR;
}
// Collect all chain buffers in context
if (ctx->body == NULL) {
ctx->body = ngx_palloc(r->pool, ctx->length);
if (ctx->body == NULL) {
return NGX_ERROR;
}
ctx->last = ctx->body;
}
size_t size;
ngx_chain_t *cl;
ngx_buf_t *b = NULL;
for (cl = in; cl; cl = cl->next) {
b = cl->buf;
size = ngx_buf_size(b);
size_t pos = ctx->last - ctx->body;
ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"jwt buf: %uz / %uz + %uz", pos, ctx->length, size);
if (pos + size > ctx->length - 1) { // TODO(SN): no 0-termination
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"jwt_issue: cannot issue token from too large body, max is %O bytes",
conf->issue_buffer_size);
return NGX_HTTP_REQUEST_ENTITY_TOO_LARGE;
}
ctx->last = ngx_cpymem(ctx->last, b->pos, size);
b->pos += size;
}
if (b && !b->last_buf) {
return NGX_OK;
}
// Create token from body buffer
jwt_t* token;
int err = jwt_new(&token); // TODO(SN): memory leak
if (err) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_issue jwt_new: %s", strerror(errno));
return NGX_ERROR;
}
err = jwt_set_alg(token, conf->issue_algorithm, conf->key.data, conf->key.len);
if (err) {
jwt_free(token);
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_issue jwt_set_alg: %s", strerror(errno));
return NGX_ERROR;
}
// TODO(SN): use buffer directly to parse json (jansson: json_loadb)
// instead of requiring null terminated string in jwt_add_grants_json
*(ctx->last) = '\0';
err = jwt_add_grants_json(token, (char *)ctx->body);
if (err) {
jwt_free(token);
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_issue jwt_add_grants: %s", strerror(errno));
return NGX_ERROR;
}
// TODO(SN): issue ttl
// Write token to a single buffer and update headers
char *token_data = jwt_encode_str(token); // TODO(SN): this leaks
jwt_free(token);
if (token_data == NULL) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_issue jwt_encode_str: %s", strerror(errno));
return NGX_ERROR;
}
ngx_pool_cleanup_t *cleanup = ngx_pool_cleanup_add(r->pool, 0);
if (cleanup == NULL) {
return NGX_ERROR;
}
cleanup->handler = free;
cleanup->data = token_data;
size_t token_size = strlen(token_data);
ngx_chain_t *out = ngx_alloc_chain_link(r->pool);
if (out == NULL) {
return NGX_ERROR;
}
ngx_buf_t *buf = ngx_calloc_buf(r->pool);
if (buf == NULL) {
return NGX_ERROR;
}
buf->pos = buf->start = (unsigned char*) token_data;
buf->last = buf->end = (unsigned char*) token_data + token_size;
buf->memory = true; // buffer is in read-only memory
buf->last_buf = true;
out->buf = buf;
out->next = NULL;
r->headers_out.content_length_n = token_size;
ngx_int_t rc = ngx_http_next_header_filter(r);
if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) {
return NGX_ERROR;
}
return ngx_http_next_body_filter(r, out);
}
ngx_int_t ngx_http_jwt_verify_handler(ngx_http_request_t *r) {
ngx_http_jwt_conf_t *conf = ngx_http_get_module_loc_conf(r, ngx_http_jwt_module);
if (!conf->verify) {
return NGX_OK;
}
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "jwt_verify_handler");
if (conf->key.len == 0) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_verify: missing 'jwt_key' or 'jwt_key_file'");
return NGX_ERROR;
}
// Retrieve authorization token from header or cookie
ngx_str_t auth_header;
if (r->headers_in.authorization) {
// TODO(SN): require/support 'Bearer' header value?
auth_header = r->headers_in.authorization->value;
ngx_str_null(&r->headers_in.authorization->value);
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"jwt_verify: using authorization header");
} else {
ngx_str_t cookie_name = ngx_string("authorization");
if (ngx_http_parse_multi_header_lines(&r->headers_in.cookies, &cookie_name,
&auth_header) == NGX_DECLINED) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_verify: no 'authorization' header or cookie");
return NGX_OK;
}
// TODO(SN): ideally the 'authorization' cookie would be dropped here
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"jwt_verify: using authorization cookie");
}
// Copy token to a null terminated string for libjwt
char *token_data = ngx_pcalloc(r->pool, auth_header.len + 1);
if (token_data == NULL) {
return NGX_ERROR;
}
ngx_memcpy(token_data, auth_header.data, auth_header.len);
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"jwt_verify: authorization=%s", token_data);
jwt_t* token;
int err = jwt_decode(&token, token_data, conf->key.data, conf->key.len);
if (err) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_verify: error on decode: %s", strerror(errno));
return NGX_OK;
}
if (jwt_get_alg(token) == JWT_ALG_NONE) {
jwt_free(token);
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_verify: alg=\"none\" rejected");
return NGX_OK;
}
// TODO(SN): verify ttl
// Extract grants
ngx_str_t grants;
grants.data = (unsigned char*)jwt_get_grants_json(token, NULL);
jwt_free(token);
if (grants.data == NULL) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, errno,
"jwt_verify: error on jwt_dump_str: %s", strerror(errno));
return NGX_OK;
}
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"jwt_verify: grants %s", grants.data);
grants.len = strlen((char*)grants.data);
ngx_str_t base64;
base64.len = ngx_base64_encoded_length(grants.len);
base64.data = malloc(base64.len);
if (base64.data == NULL) {
free(grants.data);
return NGX_ERROR;
}
ngx_encode_base64(&base64, &grants);
free(grants.data);
// Create or update authorization header
if (r->headers_in.authorization == NULL) {
ngx_table_elt_t *h = ngx_list_push(&r->headers_in.headers);
if (h == NULL) {
return NGX_ERROR;
}
h->hash = 1;
ngx_str_set(&h->key, "Authorization");
h->value = base64;
r->headers_in.authorization = h;
} else {
r->headers_in.authorization->value = base64;
}
ngx_log_debug(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"jwt_verify: out %V", &r->headers_in.authorization->value);
return NGX_OK;
}