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
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
|
/* TODO: Include attribution for ideas, and code from mod_auth_digest */
#define _XOPEN_SOURCE
#include "usuals.h"
#include "httpauthd.h"
#include "hash.h"
#include "defaults.h"
#include "digest.h"
#include "basic.h"
#include "md5.h"
#include "sha1.h"
#include <sys/time.h>
#include <unistd.h>
#include <syslog.h>
/* LDAP library */
#include <ldap.h>
unsigned char g_ldap_secret[DIGEST_SECRET_LEN];
/* -------------------------------------------------------------------------------
* Defaults and Constants
*/
#define BASIC_ESTABLISHED (void*)1
/* TODO: We need to support more password types */
#define LDAP_PW_CLEAR 0
#define LDAP_PW_CRYPT 1
#define LDAP_PW_MD5 2
#define LDAP_PW_SHA 3
#define LDAP_PW_UNKNOWN -1
typedef struct ldap_pw_type
{
const char* name;
int type;
}
ldap_pw_type_t;
static const ldap_pw_type_t kLDAPPWTypes[] =
{
{ "cleartext", LDAP_PW_CLEAR },
{ "crypt", LDAP_PW_CRYPT },
{ "md5", LDAP_PW_MD5 },
{ "sha", LDAP_PW_SHA }
};
/* -------------------------------------------------------------------------------
* Structures
*/
/* Our hanler context */
typedef struct ldap_context
{
/* Settings ---------------------------------------------------------- */
const char* servers; /* Servers to authenticate against (required) */
const char* filter; /* Filter (either this or dnmap must be set) */
const char* base; /* Base for the filter */
const char* pw_attr; /* The clear password attribute */
const char* ha1_attr; /* Password for an encrypted Digest H(A1) */
const char* user; /* User to bind as */
const char* password; /* Password to bind with */
const char* dnmap; /* For mapping users to dns */
int port; /* Port to connect to LDAP server on */
int scope; /* Scope for filter */
const char* realm; /* The realm to use in authentication */
const char* domains; /* Domains for which digest auth is valid */
int dobind; /* Bind to do simple authentication */
int cache_max; /* Maximum number of connections at once */
int cache_timeout;
int ldap_max; /* Number of open connections allowed */
int ldap_timeout; /* Maximum amount of time to dedicate to an ldap query */
/* Context ----------------------------------------------------------- */
hash_t* cache; /* Some cached records or basic */
LDAP** pool; /* Pool of available connections */
int pool_mark; /* Amount of connections allocated */
#ifdef _DEBUG
const char* debug_nonce;
#endif
}
ldap_context_t;
/* The defaults for the context */
static const ldap_context_t ldap_defaults =
{
NULL, /* servers */
NULL, /* filter */
NULL, /* base */
"userPassword", /* pw_attr */
NULL, /* ha1_attr */
NULL, /* user */
NULL, /* password */
NULL, /* dnmap */
389, /* port */
LDAP_SCOPE_SUBTREE, /* scope */
"", /* realm */
NULL, /* domains */
1, /* dobind */
1000, /* cache_max */
30, /* cache_timeout */
10, /* ldap_max */
30, /* ldap_timeout */
NULL, /* cache */
NULL, /* pool */
0 /* pool_mark */
#ifdef _DEBUG
, NULL /* debug_nonce */
#endif
};
/* -------------------------------------------------------------------------------
* Internal Functions
*/
static void free_hash_object(void* arg, void* val)
{
if(val && val != BASIC_ESTABLISHED)
free(val);
}
static int report_ldap(const char* msg, int code)
{
ASSERT(code != LDAP_SUCCESS);
if(!msg)
msg = "ldap error";
ha_messagex(LOG_ERR, "%s: %s", msg, ldap_err2string(code));
switch(code)
{
case LDAP_NO_MEMORY:
return HA_CRITERROR;
default:
return HA_FAILED;
};
}
static digest_record_t* get_cached_digest(ldap_context_t* ctx, unsigned char* nonce)
{
digest_record_t* rec;
ASSERT(ctx && nonce);
if(ctx->cache_max == 0)
return NULL;
ha_lock(NULL);
rec = (digest_record_t*)hash_get(ctx->cache, nonce);
/* Just in case it's a basic :) */
if(rec && rec != BASIC_ESTABLISHED)
hash_rem(ctx->cache, nonce);
ha_unlock(NULL);
ASSERT(!rec || memcmp(nonce, rec->nonce, DIGEST_NONCE_LEN) == 0);
return rec;
}
static int have_cached_basic(ldap_context_t* ctx, unsigned char* key)
{
int ret = 0;
ASSERT(ctx && key);
ha_lock(NULL);
ret = (hash_get(ctx->cache, key) == BASIC_ESTABLISHED);
ha_unlock(NULL);
return ret;
}
static int save_cached_digest(ldap_context_t* ctx, digest_record_t* rec)
{
int r;
ASSERT(ctx && rec);
if(ctx->cache_max == 0)
{
free_hash_object(NULL, rec);
return HA_FALSE;
}
ha_lock(NULL);
while(hash_count(ctx->cache) >= ctx->cache_max)
hash_bump(ctx->cache);
r = hash_set(ctx->cache, rec->nonce, rec);
ha_unlock(NULL);
if(!r)
{
ha_messagex(LOG_CRIT, "out of memory");
return HA_CRITERROR;
}
return HA_OK;
}
static int add_cached_basic(ldap_context_t* ctx, unsigned char* key)
{
int r;
ASSERT(ctx && key);
if(ctx->cache_max == 0)
return HA_FALSE;
ha_lock(NULL);
while(hash_count(ctx->cache) >= ctx->cache_max)
hash_bump(ctx->cache);
r = hash_set(ctx->cache, key, BASIC_ESTABLISHED);
ha_unlock(NULL);
if(!r)
{
ha_messagex(LOG_CRIT, "out of memory");
return HA_CRITERROR;
}
return HA_OK;
}
static const char* substitute_params(ldap_context_t* ctx, ha_buffer_t* buf,
const char* user, const char* str)
{
const char* t;
ASSERT(ctx && buf && user && str);
/* TODO: We need to be escaping the user and realm properly */
/* This starts a new block to join */
ha_bufcpy(buf, "");
while(str[0])
{
t = strchr(str, '%');
if(!t)
{
ha_bufjoin(buf);
ha_bufcpy(buf, str);
break;
}
ha_bufjoin(buf);
ha_bufncpy(buf, str, t - str);
t++;
switch(t[0])
{
case 'u':
ha_bufjoin(buf);
ha_bufcpy(buf, user);
t++;
break;
case 'r':
ha_bufjoin(buf);
ha_bufcpy(buf, ctx->realm);
t++;
break;
case '%':
ha_bufjoin(buf);
ha_bufcpy(buf, "%");
t++;
break;
};
str = t;
}
return ha_bufdata(buf);
}
static const char* make_password_md5(ha_buffer_t* buf, const char* clearpw)
{
md5_ctx_t md5;
unsigned char digest[MD5_LEN];
ASSERT(buf && clearpw);
md5_init(&md5);
md5_update(&md5, clearpw, strlen(clearpw));
md5_final(digest, &md5);
return ha_bufenc64(buf, digest, MD5_LEN);
}
static const char* make_password_sha(ha_buffer_t* buf, const char* clearpw)
{
sha1_ctx_t sha;
unsigned char digest[SHA1_LEN];
ASSERT(buf && clearpw);
sha1_init(&sha);
sha1_update(&sha, clearpw, strlen(clearpw));
sha1_final(digest, &sha);
return ha_bufenc64(buf, digest, SHA1_LEN);
}
static int parse_ldap_password(const char** password)
{
const char* pw;
const char* scheme;
int i;
ASSERT(password && *password);
pw = *password;
/* zero length passwords are clear */
if(strlen(pw) == 0)
return LDAP_PW_CLEAR;
/* passwords without a scheme are clear */
if(pw[0] != '{')
return LDAP_PW_CLEAR;
pw++;
scheme = pw;
while(*pw && (isalpha(*pw) || isdigit(*pw) || *pw == '-'))
pw++;
/* scheme should end in a brace */
if(*pw != '}')
return LDAP_PW_CLEAR;
*password = pw + 1;
/* find a scheme in our map */
for(i = 0; i < countof(kLDAPPWTypes); i++)
{
if(strncasecmp(kLDAPPWTypes[i].name, scheme, pw - scheme) == 0)
return kLDAPPWTypes[i].type;
}
return LDAP_PW_UNKNOWN;
}
static const char* find_cleartext_password(ha_buffer_t* buf, const char** pws)
{
ASSERT(buf);
for(; pws && *pws; pws++)
{
const char* pw = *pws;
if(parse_ldap_password(&pw) == LDAP_PW_CLEAR)
return pw;
}
return NULL;
}
static int parse_ldap_ha1(ha_buffer_t* buf, struct berval* bv, unsigned char* ha1)
{
ASSERT(buf && bv && ha1);
size_t len;
void* d;
/* Raw binary */
if(bv->bv_len == MD5_LEN)
{
memcpy(ha1, bv->bv_val, MD5_LEN);
return HA_OK;
}
/* Hex encoded */
else if(bv->bv_len == (MD5_LEN * 2))
{
len = MD5_LEN;
d = ha_bufdechex(buf, bv->bv_val, &len);
if(d && len == MD5_LEN)
{
memcpy(ha1, d, MD5_LEN);
return HA_OK;
}
}
/* B64 Encoded */
else
{
len = MD5_LEN;
d = ha_bufdec64(buf, bv->bv_val, &len);
if(d && len == MD5_LEN)
{
memcpy(ha1, ha_bufdata(buf), MD5_LEN);
return HA_OK;
}
}
return ha_buferr(buf) ? HA_CRITERROR : HA_FALSE;
}
static int validate_ldap_password(ldap_context_t* ctx, LDAP* ld, LDAPMessage* entry,
ha_buffer_t* buf, const char* user, const char* clearpw)
{
char** pws;
char** t;
const char* pw;
const char* p;
int type;
int res = HA_FALSE;
int unknown = 0;
ASSERT(entry && ld && ctx && clearpw);
ASSERT(ctx->pw_attr);
pws = ldap_get_values(ld, entry, ctx->pw_attr);
if(pws)
{
for(t = pws ; *t; t++)
{
pw = *t;
type = parse_ldap_password(&pw);
switch(type)
{
case LDAP_PW_CLEAR:
p = clearpw;
break;
case LDAP_PW_MD5:
p = make_password_md5(buf, clearpw);
break;
case LDAP_PW_CRYPT:
/* Not sure if crypt is thread safe */
ha_lock(NULL);
p = crypt(clearpw, pw);
ha_unlock(NULL);
break;
case LDAP_PW_SHA:
p = make_password_sha(buf, clearpw);
break;
case LDAP_PW_UNKNOWN:
unknown = 1;
continue;
default:
/* Not reached */
ASSERT(0);
};
if(!p)
{
res = HA_CRITERROR;
break;
}
if(strcmp(pw, p) == 0)
{
res = HA_OK;
break;
}
}
ldap_value_free(pws);
}
if(res == HA_FALSE && unknown)
ha_messagex(LOG_ERR, "LDAP does not contain any compatible passwords for user: %s", user);
return res;
}
static int validate_ldap_ha1(ldap_context_t* ctx, LDAP* ld, LDAPMessage* entry,
ha_buffer_t* buf, const char* user, const char* clearpw)
{
struct berval** ha1s;
struct berval** b;
unsigned char key[MD5_LEN];
unsigned char k[MD5_LEN];
int r, first = 1;
int res = HA_FALSE;
ASSERT(ctx && ld && entry && buf && user && clearpw);
if(!ctx->ha1_attr)
return HA_FALSE;
ha1s = ldap_get_values_len(ld, entry, ctx->ha1_attr);
if(ha1s)
{
digest_makeha1(key, user, ctx->realm, clearpw);
for(b = ha1s ; *b; b++)
{
r = parse_ldap_ha1(buf, *b, k);
if(r < 0)
{
res = r;
break;
}
if(r == HA_FALSE)
{
if(first)
ha_messagex(LOG_ERR, "LDAP contains invalid HA1 digest hash for user: %s", user);
first = 0;
continue;
}
if(memcmp(key, k, MD5_LEN) == 0)
{
res = HA_OK;
break;
}
}
ldap_value_free_len(ha1s);
}
return res;
}
static LDAP* get_ldap_connection(ldap_context_t* ctx)
{
LDAP* ld;
int i, r;
ASSERT(ctx);
for(i = 0; i < ctx->ldap_max; i++)
{
/* An open connection in the pool */
if(ctx->pool[i])
{
ld = ctx->pool[i];
ctx->pool[i] = NULL;
return ld;
}
}
if(ctx->pool_mark >= ctx->ldap_max)
{
ha_messagex(LOG_ERR, "too many open connections to LDAP");
return NULL;
}
ld = ldap_init(ctx->servers, ctx->port);
if(!ld)
{
ha_message(LOG_ERR, "couldn't initialize ldap connection");
return NULL;
}
if(ctx->user || ctx->password)
{
r = ldap_simple_bind_s(ld, ctx->user ? ctx->user : "",
ctx->password ? ctx->password : "");
if(r != LDAP_SUCCESS)
{
report_ldap("couldn't bind to LDAP server", r);
ldap_unbind_s(ld);
return NULL;
}
}
ctx->pool_mark++;
return ld;
}
static void save_ldap_connection(ldap_context_t* ctx, LDAP* ld)
{
int i, e;
ASSERT(ctx);
if(!ld)
return;
ldap_get_option(ld, LDAP_OPT_ERROR_NUMBER, &e);
/* Make sure it's worth saving */
switch(e)
{
case LDAP_SERVER_DOWN:
case LDAP_LOCAL_ERROR:
case LDAP_NO_MEMORY:
break;
default:
for(i = 0; i < ctx->ldap_max; i++)
{
/* An open connection in the pool */
if(!ctx->pool[i])
{
ctx->pool[i] = ld;
ld = NULL;
break;
}
}
break;
};
if(ld != NULL)
{
ldap_unbind_s(ld);
ctx->pool_mark--;
}
}
static int retrieve_user_entry(ldap_context_t* ctx, ha_buffer_t* buf, LDAP* ld,
const char* user, const char** dn,
LDAPMessage** entry, LDAPMessage** result)
{
struct timeval tv;
const char* filter;
const char* attrs[3];
int r;
ASSERT(ctx && buf && ld && user && dn && entry && result);
if(ctx->filter)
{
/* Filters can also have %u and %r */
filter = substitute_params(ctx, buf, user, ctx->filter);
if(!filter)
return HA_CRITERROR;
}
else
{
filter = "(objectClass=*)";
}
attrs[0] = ctx->dobind ? NULL : ctx->pw_attr;
attrs[1] = ctx->dobind ? NULL : ctx->ha1_attr;
attrs[2] = NULL;
tv.tv_sec = ctx->ldap_timeout;
tv.tv_usec = 0;
r = ldap_search_st(ld, *dn ? *dn : ctx->base,
*dn ? LDAP_SCOPE_BASE : ctx->scope,
filter, (char**)attrs, 0, &tv, result);
if(r != LDAP_SUCCESS)
{
if(r == LDAP_NO_SUCH_OBJECT)
{
ha_messagex(LOG_WARNING, "user not found in LDAP: %s", user);
return HA_FALSE;
}
return report_ldap("couldn't search LDAP server", r);
}
/* Only one result should exist */
switch(r = ldap_count_entries(ld, *result))
{
case 1:
*entry = ldap_first_entry(ld, *result);
if(!(*dn))
*dn = ldap_get_dn(ld, *entry);
return HA_OK;
case 0:
ha_messagex(LOG_WARNING, "user not found in LDAP: %s", user);
break;
default:
ha_messagex(LOG_WARNING, "more than one user found for filter: %s", filter);
break;
};
return HA_FALSE;
}
static int complete_digest_ha1(ldap_context_t* ctx, digest_record_t* rec,
ha_buffer_t* buf, const char* user)
{
LDAP* ld = NULL; /* freed in finally */
LDAPMessage* results = NULL; /* freed in finally */
LDAPMessage* entry = NULL; /* no need to free */
struct berval** ha1s = NULL; /* freed manually */
char** pws;
int ret = HA_FALSE;
const char* dn = NULL;
int r;
ASSERT(ctx && rec && buf && user);
ld = get_ldap_connection(ctx);
if(!ld)
{
ret = HA_FAILED;
goto finally;
}
/*
* Discover the DN of the user. If there's a DN map string
* then we can do this really quickly here without querying
* the LDAP tree
*/
if(ctx->dnmap)
{
/* The map can have %u and %r to denote user and realm */
dn = substitute_params(ctx, buf, user, ctx->dnmap);
if(!dn)
{
ret = HA_CRITERROR;
goto finally;
}
}
/* Okay now we contact the LDAP server. */
r = retrieve_user_entry(ctx, buf, ld, user, &dn, &entry, &results);
if(r != HA_OK)
{
ret = r;
goto finally;
}
/* Figure out the users ha1 */
if(ctx->ha1_attr)
ha1s = ldap_get_values_len(ld, entry, ctx->ha1_attr);
if(ha1s)
{
if(*ha1s)
{
ret = parse_ldap_ha1(buf, *ha1s, rec->ha1);
if(ret != HA_OK)
{
if(ret == HA_FALSE)
ha_messagex(LOG_ERR, "LDAP contains invalid HA1 digest hash for user: %s", user);
}
}
ldap_value_free_len(ha1s);
goto finally;
}
/* If no ha1 set or none found, use password and make a HA1 */
pws = ldap_get_values(ld, entry, ctx->pw_attr);
if(pws)
{
/* Find a cleartext password */
const char* t = find_cleartext_password(buf, (const char**)pws);
if(t)
{
digest_makeha1(rec->ha1, user, ctx->realm, t);
ret = HA_OK;
}
ldap_value_free(pws);
if(ret == HA_OK)
goto finally;
}
ha_messagex(LOG_ERR, "LDAP contains no cleartext password for user: %s", user);
finally:
if(ld)
save_ldap_connection(ctx, ld);
if(results)
ldap_msgfree(results);
return ret;
}
static int basic_ldap_response(ldap_context_t* ctx, const char* header,
ha_response_t* resp, ha_buffer_t* buf)
{
basic_header_t basic;
LDAP* ld = NULL;
LDAPMessage* entry = NULL;
LDAPMessage* results = NULL;
const char* dn = NULL;
int ret = HA_FALSE;
int found = 0;
int r;
ASSERT(buf && header && resp && buf);
if((r = basic_parse(header, buf, &basic)) < 0)
return r;
/* Past this point we don't return directly */
/* Check and see if this connection is in the cache */
if(have_cached_basic(ctx, basic.key))
{
found = 1;
ret = HA_OK;
goto finally;
}
/* If we have a user name and password */
if(!basic.user || !basic.user[0] ||
!basic.password || !basic.password[0])
goto finally;
ld = get_ldap_connection(ctx);
if(!ld)
{
ret = HA_FAILED;
goto finally;
}
/*
* Discover the DN of the user. If there's a DN map string
* then we can do this really quickly here without querying
* the LDAP tree
*/
if(ctx->dnmap)
{
/* The map can have %u and %r to denote user and realm */
dn = substitute_params(ctx, buf, basic.user, ctx->dnmap);
if(!dn)
{
ret = HA_CRITERROR;
goto finally;
}
}
/**
* Okay now we contact the LDAP server. There are many ways
* this is used for different authentication modes:
*
* - If a dn has been mapped above, this can apply a
* configured filter to narrow things down.
* - If no dn has been mapped, then this maps out a dn
* by using the single object the filter returns.
* - If not in 'dobind' mode we also retrieve the password
* here.
*
* All this results in only one query to the LDAP server,
* except for the case of dobind without a dnmap.
*/
if(!ctx->dobind || !dn || ctx->filter)
{
r = retrieve_user_entry(ctx, buf, ld, basic.user, &dn, &entry, &results);
if(r != HA_OK)
{
ret = r;
goto finally;
}
}
/* Now if in bind mode we try to bind as that user */
if(ctx->dobind)
{
ASSERT(dn);
r = ldap_simple_bind_s(ld, dn, basic.password);
if(r != LDAP_SUCCESS)
{
if(r == LDAP_INVALID_CREDENTIALS)
ha_messagex(LOG_WARNING, "invalid login for: %s", basic.user);
else
report_ldap("couldn't bind to LDAP server", r);
goto finally;
}
/* It worked! */
found = 1;
}
/* Otherwise we compare the password attribute */
else
{
ret = validate_ldap_password(ctx, ld, entry, buf, basic.user, basic.password);
if(ret == HA_FALSE)
ret = validate_ldap_ha1(ctx, ld, entry, buf, basic.user, basic.password);
if(ret == HA_OK)
found = 1;
else
ha_messagex(LOG_WARNING, "invalid, unreadable or unrecognized password for user: %s", basic.user);
}
finally:
if(ld)
save_ldap_connection(ctx, ld);
if(results)
ldap_msgfree(results);
if(found && ret >= 0)
{
resp->code = HA_SERVER_ACCEPT;
resp->detail = basic.user;
/* We put this connection into the successful connections */
ret = add_cached_basic(ctx, basic.key);
}
return ret;
}
static int digest_ldap_challenge(ldap_context_t* ctx, ha_response_t* resp,
ha_buffer_t* buf, int stale)
{
unsigned char nonce[DIGEST_NONCE_LEN];
const char* nonce_str;
const char* header;
ASSERT(ctx && resp && buf);
#ifdef _DEBUG
if(ctx->debug_nonce)
{
nonce_str = ctx->debug_nonce;
ha_messagex(LOG_WARNING, "using debug nonce. security non-existant.");
}
else
#endif
{
unsigned char nonce[DIGEST_NONCE_LEN];
digest_makenonce(nonce, g_ldap_secret, NULL);
nonce_str = ha_bufenchex(buf, nonce, DIGEST_NONCE_LEN);
if(!nonce_str)
return HA_CRITERROR;
}
/* Now generate a message to send */
header = digest_challenge(buf, nonce_str, ctx->realm, ctx->domains, stale);
if(!header)
return HA_CRITERROR;
/* And append it nicely */
resp->code = HA_SERVER_DECLINE;
ha_addheader(resp, "WWW-Authenticate", header);
return HA_OK;
}
static int digest_ldap_response(ldap_context_t* ctx, const char* header,
const char* method, const char* uri,
ha_response_t* resp, ha_buffer_t* buf)
{
unsigned char nonce[DIGEST_NONCE_LEN];
digest_header_t dg;
digest_record_t* rec = NULL;
const char* t;
time_t expiry;
int ret = HA_FALSE;
int stale = 0;
int r;
ASSERT(ctx && header && method && uri && resp && buf);
/* We use this below to send a default response */
resp->code = -1;
if((r = digest_parse(header, buf, &dg, nonce)) < 0)
return r;
#ifdef _DEBUG
if(ctx->debug_nonce)
{
if(dg.nonce && strcmp(dg.nonce, ctx->debug_nonce) != 0)
{
ret = HA_FALSE;
resp->code = HA_SERVER_BADREQ;
ha_messagex(LOG_WARNING, "digest response contains invalid nonce");
goto finally;
}
/* Do a rough hash into the real nonce, for use as a key */
md5_string(nonce, ctx->debug_nonce);
/* Debug nonce's never expire */
expiry = time(NULL);
}
else
#endif
{
r = digest_checknonce(nonce, g_ldap_secret, &expiry);
if(r != HA_OK)
{
if(r == HA_FALSE)
{
resp->code = HA_SERVER_BADREQ;
ha_messagex(LOG_WARNING, "digest response contains invalid nonce");
}
goto finally;
}
}
rec = get_cached_digest(ctx, nonce);
/* Check to see if we're stale */
if((expiry + ctx->cache_timeout) <= time(NULL))
{
stale = 1;
goto finally;
}
if(!rec)
{
/*
* If we're valid but don't have a record in the
* cache then complete the record properly.
*/
rec = digest_makerec(nonce, dg.username);
if(!rec)
{
ret = HA_CRITERROR;
goto finally;
}
r = complete_digest_ha1(ctx, rec, buf, dg.username);
if(r != HA_OK)
{
ret = r;
goto finally;
}
}
/* Increment our nonce count */
rec->nc++;
ret = digest_check(ctx->realm, method, uri, buf, &dg, rec);
if(ret == HA_BADREQ)
{
ret = HA_FALSE;
resp->code = HA_SERVER_BADREQ;
}
else if(ret == HA_OK)
{
resp->code = HA_SERVER_ACCEPT;
resp->detail = dg.username;
/* Figure out if we need a new nonce */
if((expiry + (ctx->cache_timeout - (ctx->cache_timeout / 8))) < time(NULL))
{
digest_makenonce(nonce, g_ldap_secret, NULL);
stale = 1;
}
t = digest_respond(buf, &dg, rec, stale ? nonce : NULL);
if(!t)
{
ret = HA_CRITERROR;
goto finally;
}
if(t[0])
ha_addheader(resp, "Authentication-Info", t);
/* Put the connection into the cache */
if((r = save_cached_digest(ctx, rec)) < 0)
ret = r;
rec = NULL;
}
finally:
/* If the record wasn't stored away then free it */
if(rec)
free(rec);
/* If nobody above responded then challenge the client again */
if(resp->code == -1)
return digest_ldap_challenge(ctx, resp, buf, stale);
return ret;
}
/* -------------------------------------------------------------------------------
* Handler Functions
*/
int ldap_config(ha_context_t* context, const char* name, const char* value)
{
ldap_context_t* ctx = (ldap_context_t*)(context->data);
ASSERT(name && value && value[0]);
if(strcmp(name, "ldapservers") == 0)
{
ctx->servers = value;
return HA_OK;
}
else if(strcmp(name, "ldapfilter") == 0)
{
ctx->filter = value;
return HA_OK;
}
else if(strcmp(name, "ldapbase") == 0)
{
ctx->base = value;
return HA_OK;
}
else if(strcmp(name, "ldappwattr") == 0)
{
ctx->pw_attr = value;
return HA_OK;
}
else if(strcmp(name, "ldapha1attr") == 0)
{
ctx->ha1_attr = value;
return HA_OK;
}
else if(strcmp(name, "ldapuser") == 0)
{
ctx->user = value;
return HA_OK;
}
else if(strcmp(name, "ldappassword") == 0)
{
ctx->password = value;
return HA_OK;
}
else if(strcmp(name, "ldapdnmap") == 0)
{
ctx->dnmap = value;
return HA_OK;
}
else if(strcmp(name, "realm") == 0)
{
ctx->realm = value;
return HA_OK;
}
else if(strcmp(name, "digestdomains") == 0)
{
ctx->domains = value;
return HA_OK;
}
else if(strcmp(name, "ldapscope") == 0)
{
if(strcmp(value, "sub") == 0 || strcmp(value, "subtree") == 0)
ctx->scope = LDAP_SCOPE_SUBTREE;
else if(strcmp(value, "base") == 0)
ctx->scope = LDAP_SCOPE_BASE;
else if(strcmp(value, "one") == 0 || strcmp(value, "onelevel") == 0)
ctx->scope = LDAP_SCOPE_ONELEVEL;
else
{
ha_messagex(LOG_ERR, "invalid value for '%s' (must be 'sub', 'base' or 'one')", name);
return HA_FAILED;
}
return HA_OK;
}
else if(strcmp(name, "ldapdobind") == 0)
{
return ha_confbool(name, value, &(ctx->dobind));
}
else if(strcmp(name, "ldapmax") == 0)
{
return ha_confint(name, value, 1, 256, &(ctx->ldap_max));
}
else if(strcmp(name, "ldaptimeout") == 0)
{
return ha_confint(name, value, 0, 86400, &(ctx->ldap_timeout));
}
#ifdef _DEBUG
else if(strcmp(name, "digestdebugnonce") == 0)
{
ctx->debug_nonce = value;
return HA_OK;
}
#endif
return HA_FALSE;
}
int ldap_inithand(ha_context_t* context)
{
/* Global initialization */
if(!context)
{
return ha_genrandom(g_ldap_secret, DIGEST_SECRET_LEN);
}
/* Context specific initialization */
else
{
ldap_context_t* ctx = (ldap_context_t*)(context->data);
ASSERT(ctx);
/* Make sure there are some types of authentication we can do */
if(!(context->types & (HA_TYPE_BASIC | HA_TYPE_DIGEST)))
{
ha_messagex(LOG_ERR, "LDAP module configured, but does not implement any "
"configured authentication type.");
return HA_FAILED;
}
/* Check for mandatory configuration */
if(!ctx->servers)
{
ha_messagex(LOG_ERR, "LDAP configuration incomplete. "
"Must have LDAPServers.");
return HA_FAILED;
}
if(!ctx->dnmap && (!ctx->filter || !ctx->base))
{
ha_messagex(LOG_ERR, "LDAP configuration incomplete. "
"When not using LDAPDNMap must specify LDAPBase and LDAPFilter.");
return HA_FAILED;
}
/* The cache for digest records and basic */
if(!(ctx->cache = hash_create(MD5_LEN, free_hash_object, NULL)))
{
ha_messagex(LOG_CRIT, "out of memory");
return HA_CRITERROR;
}
ASSERT(!ctx->pool);
ASSERT(ctx->ldap_max > 0);
/*
* Our connection pool. It's the size of our maximum
* amount of pending connections as that's the max
* we'd be able to use at a time anyway.
*/
ctx->pool = (LDAP**)malloc(sizeof(LDAP*) * ctx->ldap_max);
if(!ctx->pool)
{
ha_messagex(LOG_CRIT, "out of memory");
return HA_CRITERROR;
}
memset(ctx->pool, 0, sizeof(LDAP*) * ctx->ldap_max);
/* Copy some settings over for easy access */
ctx->cache_max = context->cache_max;
ctx->cache_timeout = context->cache_timeout;
}
return HA_OK;
}
void ldap_destroy(ha_context_t* context)
{
int i;
if(!context)
return;
/* Note: We don't need to be thread safe here anymore */
ldap_context_t* ctx = (ldap_context_t*)(context->data);
ASSERT(ctx);
if(ctx->cache)
hash_free(ctx->cache);
if(ctx->pool)
{
/* Close any connections we have open */
for(i = 0; i < ctx->ldap_max; i++)
{
if(ctx->pool[i])
ldap_unbind_s(ctx->pool[i]);
}
/* And free the connection pool */
free(ctx->pool);
}
}
int ldap_process(ha_context_t* context, ha_request_t* req,
ha_response_t* resp, ha_buffer_t* buf)
{
ldap_context_t* ctx = (ldap_context_t*)context->data;
time_t t = time(NULL);
const char* header = NULL;
int ret;
ASSERT(req && resp && buf);
ASSERT(req->args[AUTH_ARG_METHOD]);
ASSERT(req->args[AUTH_ARG_URI]);
ha_lock(NULL);
/* Purge out stale connection stuff. */
hash_purge(ctx->cache, t - ctx->cache_timeout);
ha_unlock(NULL);
/* We use this below to detect whether to send a default response */
resp->code = -1;
/* Check the headers and see if we got a response thingy */
if(context->types & HA_TYPE_DIGEST)
{
header = ha_getheader(req, "Authorization", HA_PREFIX_DIGEST);
if(header)
{
ret = digest_ldap_response(ctx, header, req->args[AUTH_ARG_METHOD],
req->args[AUTH_ARG_URI], resp, buf);
if(ret < 0)
return ret;
}
}
/* Or a basic authentication */
if(!header && context->types & HA_TYPE_BASIC)
{
header = ha_getheader(req, "Authorization", HA_PREFIX_BASIC);
if(header)
{
ret = basic_ldap_response(ctx, header, resp, buf);
if(ret < 0)
return ret;
}
}
/* Send a default response if that's what we need */
if(resp->code == -1)
{
resp->code = HA_SERVER_DECLINE;
if(context->types & HA_TYPE_DIGEST)
{
ret = digest_ldap_challenge(ctx, resp, buf, 0);
if(ret < 0)
return ret;
}
if(context->types & HA_TYPE_BASIC)
{
ha_bufmcat(buf, "BASIC realm=\"", ctx->realm , "\"", NULL);
if(ha_buferr(buf))
return HA_CRITERROR;
ha_addheader(resp, "WWW-Authenticate", ha_bufdata(buf));
}
}
return ret;
}
/* -------------------------------------------------------------------------------
* Handler Definition
*/
ha_handler_t ldap_handler =
{
"LDAP", /* The type */
ldap_inithand, /* Initialization function */
ldap_destroy, /* Uninitialization routine */
ldap_config, /* Config routine */
ldap_process, /* Processing routine */
&ldap_defaults, /* The context defaults */
sizeof(ldap_context_t)
};
|