-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathngx_http_auth_sso_module.c
executable file
·784 lines (658 loc) · 22.8 KB
/
ngx_http_auth_sso_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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
/*
* Copyright (C) 2009 Michal Kowalski <superflouos{at}gmail[dot]com>
*
* Blah, blah, blah...
*
*/
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
/*
#include <ngx_string.h>
*/
#include <gssapi/gssapi.h>
#include <krb5.h>
/* #include <spnegohelp.h> */
int parseNegTokenInit (const unsigned char * negTokenInit,
size_t negTokenInitLength,
const unsigned char ** kerberosToken,
size_t * kerberosTokenLength);
int makeNegTokenTarg (const unsigned char * kerberosToken,
size_t kerberosTokenLength,
const unsigned char ** negTokenTarg,
size_t * negTokenTargLength);
/* Module handler */
static ngx_int_t ngx_http_auth_sso_handler(ngx_http_request_t*);
static void *ngx_http_auth_sso_create_loc_conf(ngx_conf_t*);
static char *ngx_http_auth_sso_merge_loc_conf(ngx_conf_t*, void*, void*);
static ngx_int_t ngx_http_auth_sso_init(ngx_conf_t*);
/* stolen straight from mod_auth_gss_krb5.c except for ngx_ mods */
const char *
get_gss_error(ngx_pool_t *p,
OM_uint32 error_status,
char *prefix)
{
OM_uint32 maj_stat, min_stat;
OM_uint32 msg_ctx = 0;
gss_buffer_desc status_string;
char buf[1024];
size_t len;
ngx_str_t str;
/* ngx_fubarprintf... what a hack... %Z inserts '\0' */
ngx_snprintf((u_char *) buf, sizeof(buf), "%s: %Z", prefix);
len = ngx_strlen(buf);
do {
maj_stat = gss_display_status (&min_stat,
error_status,
GSS_C_MECH_CODE,
GSS_C_NO_OID,
&msg_ctx,
&status_string);
if (sizeof(buf) > len + status_string.length + 1) {
/*
sprintf(buf, "%s:", (char*) status_string.value);
*/
ngx_sprintf((u_char *) buf+len, "%s:%Z", (char*) status_string.value);
len += ( status_string.length + 1);
}
gss_release_buffer(&min_stat, &status_string);
} while (!GSS_ERROR(maj_stat) && msg_ctx != 0);
/* "include" '\0' */
str.len = len + 1;
str.data = (u_char *) buf;
return (char *)(ngx_pstrdup(p, &str));
}
/* Module per Req/Con CONTEXTUAL Struct */
typedef struct {
ngx_str_t token; /* decoded Negotiate token */
ngx_int_t head; /* non-zero flag if headers set */
ngx_int_t ret; /* current return code */
} ngx_http_auth_sso_ctx_t;
/* Module Configuration Struct(s) (main|srv|loc) */
typedef struct {
ngx_flag_t protect;
ngx_str_t realm;
ngx_str_t keytab;
ngx_str_t srvcname;
ngx_flag_t fqun;
} ngx_http_auth_sso_loc_conf_t;
/* Module Directives */
static ngx_command_t ngx_http_auth_sso_commands[] = {
/*
{ ngx_str_t name;
ngx_uint_t type;
char *(*set)(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
ngx_uint_t conf;
ngx_uint_t offset;
void *post; }
*/
{ ngx_string("auth_gss"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
ngx_conf_set_flag_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_sso_loc_conf_t, protect),
NULL },
{ ngx_string("auth_gss_realm"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_sso_loc_conf_t, realm),
NULL },
{ ngx_string("auth_gss_keytab"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_sso_loc_conf_t, keytab),
NULL },
{ ngx_string("auth_gss_service_name"),
/* TODO change to NGX_CONF_1MORE for "http", "khttp", besides "HTTP" */
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_sso_loc_conf_t, srvcname),
NULL },
{ ngx_string("auth_gss_format_full"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_FLAG,
ngx_conf_set_flag_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_sso_loc_conf_t, fqun),
NULL },
ngx_null_command
};
/* Module Context */
static ngx_http_module_t ngx_http_auth_sso_module_ctx = {
NULL, /* preconf */
ngx_http_auth_sso_init, /* postconf */
NULL, /* create main conf (defaults) */
NULL, /* init main conf (what's in nginx.conf) */
NULL, /* create server conf */
NULL, /* merge with main */
ngx_http_auth_sso_create_loc_conf, /* create location conf */
ngx_http_auth_sso_merge_loc_conf /* merge with server */
};
/* Module Definition */
/* really ngx_module_s /shrug */
ngx_module_t ngx_http_auth_sso_module = {
/* ngx_uint_t ctx_index, index, spare{0-3}, version; */
NGX_MODULE_V1, /* 0, 0, 0, 0, 0, 0, 1 */
&ngx_http_auth_sso_module_ctx, /* void *ctx */
ngx_http_auth_sso_commands, /* ngx_command_t *commands */
NGX_HTTP_MODULE, /* ngx_uint_t type = 0x50545448 */
NULL, /* ngx_int_t (*init_master)(ngx_log_t *log) */
NULL, /* ngx_int_t (*init_module)(ngx_cycle_t *cycle) */
NULL, /* ngx_int_t (*init_process)(ngx_cycle_t *cycle) */
NULL, /* ngx_int_t (*init_thread)(ngx_cycle_t *cycle) */
NULL, /* void (*exit_thread)(ngx_cycle_t *cycle) */
NULL, /* void (*exit_process)(ngx_cycle_t *cycle) */
NULL, /* void (*exit_master)(ngx_cycle_t *cycle) */
NGX_MODULE_V1_PADDING /* 0, 0, 0, 0, 0, 0, 0, 0 */
/* uintptr_t spare_hook{0-7}; */
};
static void *
ngx_http_auth_sso_create_loc_conf(ngx_conf_t *cf)
{
ngx_http_auth_sso_loc_conf_t *conf;
conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_auth_sso_loc_conf_t));
if (conf == NULL) {
return NGX_CONF_ERROR;
}
conf->protect = NGX_CONF_UNSET;
conf->fqun = NGX_CONF_UNSET;
/* temporary "debug" */
#if (NGX_DEBUG)
ngx_conf_log_error(NGX_LOG_INFO, cf, 0,
"auth_sso: allocated loc_conf_t (0x%p)", conf);
#endif
/* TODO find out if there is way to enable it only in debug mode */
return conf;
}
static char *
ngx_http_auth_sso_merge_loc_conf(ngx_conf_t *cf,
void *parent,
void *child)
{
ngx_http_auth_sso_loc_conf_t *prev = parent;
ngx_http_auth_sso_loc_conf_t *conf = child;
/* "off" by default */
ngx_conf_merge_off_value(conf->protect, prev->protect, 0);
ngx_conf_merge_str_value(conf->realm, prev->realm, "LOCALDOMAIN");
ngx_conf_merge_str_value(conf->keytab, prev->keytab, "/etc/krb5.keytab");
ngx_conf_merge_str_value(conf->srvcname, prev->srvcname, "HTTP");
ngx_conf_merge_off_value(conf->fqun, prev->fqun, 0);
/* TODO make it only shout in debug */
#if (NGX_DEBUG)
ngx_conf_log_error(NGX_LOG_INFO, cf, 0, "auth_sso: protect = %i",
conf->protect);
ngx_conf_log_error(NGX_LOG_INFO, cf, 0, "auth_sso: realm@0x%p = %s",
conf->realm.data, conf->realm.data);
ngx_conf_log_error(NGX_LOG_INFO, cf, 0, "auth_sso: keytab@0x%p = %s",
conf->keytab.data, conf->keytab.data);
ngx_conf_log_error(NGX_LOG_INFO, cf, 0, "auth_sso: srvcname@0x%p = %s",
conf->srvcname.data, conf->srvcname.data);
ngx_conf_log_error(NGX_LOG_INFO, cf, 0, "auth_sso: fqun = %i",
conf->fqun);
#endif
return NGX_CONF_OK;
}
static ngx_int_t
ngx_http_auth_sso_init(ngx_conf_t *cf)
{
ngx_http_handler_pt *h;
ngx_http_core_main_conf_t *cmcf;
cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);
h = ngx_array_push(&cmcf->phases[NGX_HTTP_ACCESS_PHASE].handlers);
if (h == NULL) {
return NGX_ERROR;
}
*h = ngx_http_auth_sso_handler;
return NGX_OK;
}
static ngx_int_t
ngx_http_auth_sso_negotiate_headers(ngx_http_request_t *r,
ngx_http_auth_sso_ctx_t *ctx,
ngx_str_t *token)
{
ngx_str_t value = ngx_null_string;
if (token == NULL) {
value.len = sizeof("Negotiate") - 1;
value.data = (u_char *) "Negotiate";
} else {
value.len = sizeof("Negotiate") + token->len;
value.data = ngx_pcalloc(r->pool, value.len + 1);
if (value.data == NULL) {
return NGX_ERROR;
}
ngx_snprintf(value.data, value.len + 1, "Negotiate %V", token);
}
r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers);
if (r->headers_out.www_authenticate == NULL) {
return NGX_ERROR;
}
r->headers_out.www_authenticate->hash = 1;
r->headers_out.www_authenticate->key.len = sizeof("WWW-Authenticate") - 1;
r->headers_out.www_authenticate->key.data = (u_char *) "WWW-Authenticate";
r->headers_out.www_authenticate->value.len = value.len;
r->headers_out.www_authenticate->value.data = value.data;
ctx->head = 1;
return NGX_OK;
}
/* sort of like ngx_http_auth_basic_user ... except we store in ctx_t? */
ngx_int_t
ngx_http_auth_sso_token(ngx_http_request_t *r,
ngx_http_auth_sso_ctx_t *ctx)
{
/* not copying or decoding anything, just checking if token is present
and where? NOPE, koz ngx_decode_base64 uses ngx_str_t... so might as well... */
ngx_str_t token;
ngx_str_t decoded;
if (r->headers_in.authorization == NULL) {
return NGX_DECLINED;
}
/* but don't decode second time? */
if (ctx->token.len) return NGX_OK;
token = r->headers_in.authorization->value;
if (token.len < sizeof("Negotiate ") - 1
|| ngx_strncasecmp(token.data, (u_char *) "Negotiate ",
sizeof("Negotiate ") - 1) != 0) {
return NGX_DECLINED;
}
token.len -= sizeof("Negotiate ") - 1;
token.data += sizeof("Negotiate ") - 1;
while (token.len && token.data[0] == ' ') {
token.len--;
token.data++;
}
if (token.len == 0) {
return NGX_DECLINED;
}
decoded.len = ngx_base64_decoded_length(token.len);
decoded.data = ngx_pnalloc(r->pool, decoded.len + 1);
if (decoded.data == NULL) {
return NGX_ERROR;
}
if (ngx_decode_base64(&decoded, &token) != NGX_OK) {
return NGX_DECLINED;
}
decoded.data[decoded.len] = '\0'; /* hmmm */
/* ctx = ngx_palloc(r->pool, sizeof(ngx_http_auth_sso_ctx_t)); */
/* if (ctx == NULL) { */
/* return NGX_ERROR; */
/* } */
/* ngx_http_set_ctx(r, ctx, ngx_http_auth_sso_module); */
ctx->token.len = decoded.len;
ctx->token.data = decoded.data;
/* off by one? hmmm... */
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"Token decoded");
return NGX_OK;
}
/*
Because 'remote_user' is assumed to be provided by basic authorization
(see ngx_http_variable_remote_user) we are forced to create bogus
non-Negotiate authorization header. This may possibly clobber Negotiate
token too soon.
*/
ngx_int_t
ngx_http_auth_sso_set_bogus_authorization(ngx_http_request_t *r)
{
ngx_str_t plain, encoded, final;
/* jezuz 3 allocs ;( */
if (r->headers_in.user.len == 0) {
return NGX_DECLINED;
}
/* including \0 from sizeof because it's "user:password" */
plain.len = r->headers_in.user.len + sizeof("bogus");
plain.data = ngx_pnalloc(r->pool, plain.len);
if (plain.data == NULL) {
return NGX_ERROR;
}
ngx_snprintf(plain.data, plain.len, "%V:bogus", &r->headers_in.user);
encoded.len = ngx_base64_encoded_length(plain.len);
encoded.data = ngx_pnalloc(r->pool, encoded.len);
if (encoded.data == NULL) {
return NGX_ERROR;
}
ngx_encode_base64(&encoded, &plain);
final.len = sizeof("Basic ") + encoded.len - 1;
final.data = ngx_pnalloc(r->pool, final.len);
if (final.data == NULL) {
return NGX_ERROR;
}
ngx_snprintf(final.data, final.len, "Basic %V", &encoded);
/* WARNING clobbering authorization header value */
r->headers_in.authorization->value.len = final.len;
r->headers_in.authorization->value.data = final.data;
return NGX_OK;
}
ngx_int_t
ngx_http_auth_sso_auth_user_gss(ngx_http_request_t *r,
ngx_http_auth_sso_ctx_t *ctx,
ngx_http_auth_sso_loc_conf_t *alcf)
{
static unsigned char ntlmProtocol [] = {'N', 'T', 'L', 'M', 'S', 'S', 'P', 0};
/*
nginx stuff
*/
ngx_str_t host_name;
ngx_int_t ret = NGX_DECLINED;
int rc;
int spnego_flag = 0;
char *p;
/*
kerberos stuff
*/
krb5_context krb_ctx = NULL;
char *ktname = NULL;
/* ngx_str_t kerberosToken; ? */
unsigned char *kerberosToken = NULL;
size_t kerberosTokenLength = 0;
/* this izgotten from de-SPNEGGING original token...
and put into gss_accept_sec_context...
silly...
*/
ngx_str_t spnegoToken = ngx_null_string;
/* unsigned char *spnegoToken = NULL ;
size_t spnegoTokenLength = 0; */
/*
gssapi stuff
*/
OM_uint32 major_status, minor_status, minor_status2;
gss_buffer_desc service = GSS_C_EMPTY_BUFFER;
gss_name_t my_gss_name = GSS_C_NO_NAME;
gss_cred_id_t my_gss_creds = GSS_C_NO_CREDENTIAL;
gss_buffer_desc input_token = GSS_C_EMPTY_BUFFER;
gss_ctx_id_t gss_context = GSS_C_NO_CONTEXT;
gss_name_t client_name = GSS_C_NO_NAME;
gss_buffer_desc output_token = GSS_C_EMPTY_BUFFER;
OM_uint32 ret_flags = 0;
gss_cred_id_t delegated_cred = GSS_C_NO_CREDENTIAL;
/* first, see if there is a point in runing */
/* ctx = ngx_http_get_module_ctx(r, ngx_http_auth_sso_module); */
/* this really shouldn't 'eppen */
if (!ctx || ctx->token.len == 0) {
return ret;
}
/* on with the copy cat show */
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"GSSAPI authorizing");
krb5_init_context(&krb_ctx);
ktname = (char *) ngx_pcalloc(r->pool, sizeof("KRB5_KTNAME=")+alcf->keytab.len);
if (ktname == NULL) {
ret = NGX_ERROR;
goto end;
}
ngx_snprintf((u_char *) ktname, sizeof("KRB5_KTNAME=")+alcf->keytab.len,
"KRB5_KTNAME=%V%Z", &alcf->keytab);
putenv(ktname);
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"Use keytab %V", &alcf->keytab);
/* TODECIDE: wherefrom use the hostname value for the service name? */
host_name = r->headers_in.host->value;
/* for now using the name client thinks... */
service.length = alcf->srvcname.len + host_name.len + 2;
/* @ vel / */
service.value = ngx_palloc(r->pool, service.length);
if (service.value == NULL) {
ret = NGX_ERROR;
goto end;
}
ngx_snprintf(service.value, service.length, "%V@%V%Z",
&alcf->srvcname, &host_name);
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"Use service principal %V/%V", &alcf->srvcname, &host_name);
major_status = gss_import_name(&minor_status, &service,
GSS_C_NT_HOSTBASED_SERVICE, &my_gss_name);
if (GSS_ERROR(major_status)) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"%s Used service principal: %s",
get_gss_error(r->pool, minor_status,
"gss_import_name() failed for service principal"),
(unsigned char *)service.value);
ret = NGX_ERROR;
goto end;
}
major_status = gss_acquire_cred(&minor_status,
my_gss_name,
GSS_C_INDEFINITE,
GSS_C_NO_OID_SET,
GSS_C_ACCEPT,
&my_gss_creds,
NULL,
NULL);
if (GSS_ERROR(major_status)) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"%s Used service principal: %s",
get_gss_error(r->pool, minor_status,
"gss_acquire_cred() failed"),
(unsigned char *)service.value);
ret = NGX_ERROR;
goto end;
}
/* the MEAT? */
input_token.length = ctx->token.len + 1;
input_token.value = (void *) ctx->token.data;
/* Should check first if SPNEGO token */
/* but it looks like mit-kerberos version > 1.4.4 DOES include GSSAPI
code that supports SPNEGO... ("donated by SUN")... */
if ( (rc = parseNegTokenInit (input_token.value,
input_token.length,
(const unsigned char **) &kerberosToken,
&kerberosTokenLength)) != 0 ) {
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"parseNegTokenInit failed with rc=%d", rc);
/*
Error 1xy -> assume GSSAPI token and continue
*/
if ( rc < 100 || rc > 199 ) {
ret = NGX_DECLINED;
goto end;
/* TOTALLY CLUELESS */
}
/* feeble NTLM... */
if ( (input_token.length >= sizeof ntlmProtocol + 1) &&
(!ngx_memcmp(input_token.value, ntlmProtocol, sizeof ntlmProtocol)) ) {
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"received type %d NTLM token",
(int) *((unsigned char *)input_token.value + sizeof ntlmProtocol)); /* jeez */
ret = NGX_DECLINED;
goto end;
}
spnego_flag = 0;
} else {
input_token.length = kerberosTokenLength;
input_token.value = ngx_pcalloc(r->pool, input_token.length);
if (input_token.value == NULL) {
ret = NGX_ERROR;
goto end;
}
ngx_memcpy(input_token.value, kerberosToken, input_token.length);
spnego_flag = 1;
}
major_status = gss_accept_sec_context(&minor_status,
&gss_context,
my_gss_creds,
&input_token,
GSS_C_NO_CHANNEL_BINDINGS,
&client_name,
NULL,
&output_token,
&ret_flags,
NULL,
&delegated_cred);
if (output_token.length) {
ngx_str_t token = ngx_null_string;
if (spnego_flag) {
if ( (rc = makeNegTokenTarg (output_token.value,
output_token.length,
(const unsigned char **) &spnegoToken.data,
&spnegoToken.len)) != 0 ) {
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"makeNegTokenTarg failed with rc=%d",rc);
ret = NGX_DECLINED;
goto end;
}
} else {
spnegoToken.data = (u_char *) output_token.value;
spnegoToken.len = output_token.length - 1;
}
/* XXX use ap_uuencode() */
token.len = ngx_base64_encoded_length(spnegoToken.len);
token.data = ngx_pcalloc(r->pool, token.len + 1);
if (token.data == NULL) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"Not enough memory");
ret = NGX_ERROR;
/* ??? */
gss_release_buffer(&minor_status2, &output_token);
goto end;
}
ngx_encode_base64(&token, &spnegoToken); /* did it work (void) */
/* ??? */
gss_release_buffer(&minor_status2, &output_token);
/* and now here we had to rework ngx_http_auth_sso_negotiate_headers... */
if ( (ret = ngx_http_auth_sso_negotiate_headers(r, ctx, &token)) == NGX_ERROR ) {
goto end;
}
/* ap_table_set(r->err_headers_out, "WWW-Authenticate",
ap_pstrcat(r->pool, "Negotiate ", token, NULL)); */
}
/* theesee two ifs could/SHOULD? as well go before the block above?!?
headers shouldn't be set if we DECLINE, but i guess there won't be output_token anyway... */
if (GSS_ERROR(major_status)) {
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"%s Used service principal: %s",
get_gss_error(r->pool, minor_status,
"gss_accept_sec_context() failed"),
(unsigned char *)service.value);
ret = NGX_DECLINED;
goto end;
}
if (major_status & GSS_S_CONTINUE_NEEDED) {
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"only one authentication iteration allowed");
ret = NGX_DECLINED;
goto end;
}
/* INFO */
if ( !(ret_flags & GSS_C_REPLAY_FLAG || ret_flags & GSS_C_SEQUENCE_FLAG) ){
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"GSSAPI Warning: no replay protection !");
}
if ( !(ret_flags & GSS_C_SEQUENCE_FLAG) ){
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"GSSAPI Warning: no sequence protection !");
}
/* getting user name at the other end of the request */
major_status = gss_display_name(&minor_status,
client_name,
&output_token,
NULL);
gss_release_name(&minor_status, &client_name);
/* hmm... if he is going to ERROR out now we should do it before setting headers... */
if (GSS_ERROR(major_status)) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"%s", get_gss_error(r->pool, minor_status,
"gss_display_name() failed"));
ret = NGX_ERROR;
goto end;
}
if (output_token.length) {
/* TOFIX dirty quick trick for now (no "-1" i.e. include '\0' */
ngx_str_t user = { output_token.length,
(u_char *) output_token.value };
r->headers_in.user.data = ngx_pstrdup(r->pool, &user);
/* NULL?!? */
r->headers_in.user.len = user.len;
if (alcf->fqun == 0) {
p = ngx_strchr(r->headers_in.user.data, '@');
if (p != NULL) {
if (ngx_strcmp(p+1, alcf->realm.data) == 0) {
*p = '\0';
r->headers_in.user.len = ngx_strlen(r->headers_in.user.data);
}
}
}
/* this for the sake of ngx_http_variable_remote_user */
ngx_http_auth_sso_set_bogus_authorization(r);
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"user is %V", &r->headers_in.user);
}
gss_release_buffer(&minor_status, &output_token);
/* saving creds... LATER, for now debug msg... */
if (delegated_cred != GSS_C_NO_CREDENTIAL) {
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"Had delegated_cred to save.");
}
ret = NGX_OK;
/* goto end; */
/* well, alright, the end, my friend */
end:
if (delegated_cred)
gss_release_cred(&minor_status, &delegated_cred);
if (output_token.length)
gss_release_buffer(&minor_status, &output_token);
if (client_name != GSS_C_NO_NAME)
gss_release_name(&minor_status, &client_name);
if (gss_context != GSS_C_NO_CONTEXT)
gss_delete_sec_context(&minor_status, &gss_context, GSS_C_NO_BUFFER);
krb5_free_context(krb_ctx);
if (my_gss_name != GSS_C_NO_NAME)
gss_release_name(&minor_status, &my_gss_name);
if (my_gss_creds != GSS_C_NO_CREDENTIAL)
gss_release_cred(&minor_status, &my_gss_creds);
return ret;
}
static ngx_int_t
ngx_http_auth_sso_handler(ngx_http_request_t *r)
{
ngx_int_t ret;
ngx_http_auth_sso_ctx_t *ctx;
ngx_http_auth_sso_loc_conf_t *alcf;
alcf = ngx_http_get_module_loc_conf(r, ngx_http_auth_sso_module);
if (alcf->protect == 0) {
return NGX_DECLINED;
}
/* looks like we need ctx_t "frst" after all, there is URI level
access phase and filesystem level access phase... */
ctx = ngx_http_get_module_ctx(r, ngx_http_auth_sso_module);
if (ctx == NULL) {
ctx = ngx_palloc(r->pool, sizeof(ngx_http_auth_sso_ctx_t));
if (ctx == NULL) {
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
ctx->token.len = 0;
ctx->token.data = NULL;
ctx->head = 0;
ctx->ret = NGX_HTTP_UNAUTHORIZED;
ngx_http_set_ctx(r, ctx, ngx_http_auth_sso_module);
}
/* nope... local fs req creates new ctx... useless... */
ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"SSO auth handling IN: token.len=%d, head=%d, ret=%d",
ctx->token.len, ctx->head, ctx->ret);
if (ctx->token.len && ctx->head)
return ctx->ret;
if (r->headers_in.user.data != NULL)
return NGX_OK;
ret = ngx_http_auth_sso_token(r, ctx);
if (ret == NGX_OK) {
/* ok... looks like client sent some Negotiate'ing authorization header... */
ret = ngx_http_auth_sso_auth_user_gss(r, ctx, alcf);
}
if (ret == NGX_DECLINED) {
/* TODEBATE skip if (ctx->head)... */
ret = ngx_http_auth_sso_negotiate_headers(r, ctx, NULL);
if (ret == NGX_ERROR) {
return (ctx->ret = NGX_HTTP_INTERNAL_SERVER_ERROR);
}
return (ctx->ret = NGX_HTTP_UNAUTHORIZED);
}
if (ret == NGX_ERROR) {
return (ctx->ret = NGX_HTTP_INTERNAL_SERVER_ERROR);
}
/* else NGX_OK */
ngx_log_debug3(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"SSO auth handling OUT: token.len=%d, head=%d, ret=%d",
ctx->token.len, ctx->head, ret);
return (ctx->ret = ret);
}