forked from opinsys/smbkrb5pwd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmbkrb5pwd.c
1023 lines (861 loc) · 25.8 KB
/
smbkrb5pwd.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
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
/* smbkrb5pwd.c - Overlay for managing Samba and MIT Kerberos passwords */
/* $OpenLDAP: pkg/ldap/contrib/slapd-modules/smbk5pwd/smbk5pwd.c,v 1.17.2.16 2009/08/17 21:49:00 quanah Exp $ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 2004-2009 The OpenLDAP Foundation.
* Portions Copyright 2004-2005 by Howard Chu, Symas Corp.
* Other portions Copyright 2010 Opinsys.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
/* ACKNOWLEDGEMENTS:
* Support for table-driven configuration added by Pierangelo Masarati.
* Support for sambaPwdMustChange and sambaPwdCanChange added by Marco D'Ettorre.
*
* Modified to support MIT Kerberos by Opinsys.
* Renamed the module from smbk5pwd to smbkrb5pwd.
*/
#include <portable.h>
#include <netdb.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#ifndef SLAPD_OVER_SMBKRB5PWD
#define SLAPD_OVER_SMBKRB5PWD SLAPD_MOD_DYNAMIC
#endif
#ifdef SLAPD_OVER_SMBKRB5PWD
#include <slap.h>
#include "config.h"
#include <lber.h>
#include <lber_pvt.h>
#include <lutil.h>
#include <krb5/krb5.h>
#include <kadm5/admin.h>
#define KRB5_KEYTAB "/etc/ldap/slapd.d/openldap-krb5.keytab"
static AttributeDescription *ad_objectclass;
static AttributeDescription *ad_uid;
static AttributeDescription *ad_userPassword;
#ifdef HAVE_GNUTLS
#include <gcrypt.h>
typedef unsigned char DES_cblock[8];
#else
#include <openssl/des.h>
#include <openssl/md4.h>
#endif
#include "ldap_utf8.h"
static AttributeDescription *ad_sambaNTPassword;
static AttributeDescription *ad_sambaPwdLastSet;
static AttributeDescription *ad_sambaPwdMustChange;
static AttributeDescription *ad_sambaPwdCanChange;
static ObjectClass *oc_sambaSamAccount;
/* Per-instance configuration information */
typedef struct smbkrb5pwd_t {
unsigned mode;
#define SMBKRB5PWD_F_KRB5 (0x1U)
#define SMBKRB5PWD_F_SAMBA (0x2U)
#define SMBKRB5PWD_DO_KRB5(pi) ((pi)->mode & SMBKRB5PWD_F_KRB5)
#define SMBKRB5PWD_DO_SAMBA(pi) ((pi)->mode & SMBKRB5PWD_F_SAMBA)
/* How many seconds before forcing a password change? */
time_t smb_must_change;
/* How many seconds after allowing a password change? */
time_t smb_can_change;
char *kerberos_realm;
char *admin_princstr;
ldap_pvt_thread_mutex_t krb5_mutex;
ObjectClass *oc_requiredObjectclass;
int keep_sasl_id;
} smbkrb5pwd_t;
static const unsigned SMBKRB5PWD_F_ALL =
0
| SMBKRB5PWD_F_KRB5
| SMBKRB5PWD_F_SAMBA
;
static int smbkrb5pwd_modules_init( smbkrb5pwd_t *pi );
static const char hex[] = "0123456789abcdef";
#define MAX_PWLEN 256
#define HASHLEN 16
static void hexify(
const char in[HASHLEN],
struct berval *out)
{
int i;
char *a;
unsigned char *b;
out->bv_val = ch_malloc(HASHLEN*2 + 1);
out->bv_len = HASHLEN*2;
a = out->bv_val;
b = (unsigned char *)in;
for (i=0; i<HASHLEN; i++) {
*a++ = hex[*b >> 4];
*a++ = hex[*b++ & 0x0f];
}
*a++ = '\0';
}
static void nthash(
struct berval *passwd,
struct berval *hash)
{
/* Windows currently only allows 14 character passwords, but
* may support up to 256 in the future. We assume this means
* 256 UCS2 characters, not 256 bytes...
*/
char hbuf[HASHLEN];
#ifdef HAVE_OPENSSL
MD4_CTX ctx;
#endif
if (passwd->bv_len > MAX_PWLEN*2)
passwd->bv_len = MAX_PWLEN*2;
#ifdef HAVE_OPENSSL
MD4_Init( &ctx );
MD4_Update( &ctx, passwd->bv_val, passwd->bv_len );
MD4_Final( (unsigned char *)hbuf, &ctx );
#elif defined(HAVE_GNUTLS)
gcry_md_hash_buffer(GCRY_MD_MD4, hbuf, passwd->bv_val, passwd->bv_len );
#endif
hexify( hbuf, hash );
}
static int
lookup_admin_princstr(
char *kerberos_realm,
char **admin_princstr)
{
char fqdn[NI_MAXHOST] = "";
char hostname[HOST_NAME_MAX+1];
struct addrinfo *host_addr = NULL;
int rc;
rc = -1;
#ifdef SMBKRB5PWD_KADM5_CLNT
if (gethostname(hostname, HOST_NAME_MAX+1) ||
getaddrinfo(hostname, NULL, NULL, &host_addr)) {
Log0(LDAP_DEBUG_ANY, LDAP_LEVEL_NOTICE,
"smbkrb5pwd : an error occurred in gethostname()"
" or getaddrinfo(), check your dns settings\n");
goto error;
}
if (getnameinfo(host_addr->ai_addr, host_addr->ai_addrlen, fqdn,
NI_MAXHOST, NULL, 0, 0)) {
Log0(LDAP_DEBUG_ANY, LDAP_LEVEL_NOTICE,
"smbkrb5pwd : an error occurred in getnameinfo(),"
" check your dns settings\n");
goto error_with_host_addr;
}
size_t princstr_size = sizeof("smbkrb5pwd/")
+ strlen(fqdn)
+ sizeof("@")
+ strlen(kerberos_realm) + 1;
#endif
#ifdef SMBKRB5PWD_KADM5_SRV
size_t princstr_size = strlen("root/admin@") + strlen(kerberos_realm) + 1;
#endif
if (*admin_princstr)
free(*admin_princstr);
if ((*admin_princstr = calloc(princstr_size, 1)) == NULL)
goto error_with_host_addr;
#ifdef SMBKRB5PWD_KADM5_CLNT
snprintf(*admin_princstr, princstr_size, "smbkrb5pwd/%s@%s", fqdn,
kerberos_realm);
#endif
#ifdef SMBKRB5PWD_KADM5_SRV
snprintf(*admin_princstr, princstr_size, "root/admin@%s", kerberos_realm);
#endif
rc = 0;
error_with_host_addr:
if (host_addr)
freeaddrinfo(host_addr);
error:
return rc;
}
static int krb5_set_passwd(
Operation *op,
req_pwdexop_s *qpw,
Entry *e,
smbkrb5pwd_t *pi)
{
void *kadm5_handle;
kadm5_config_params params;
kadm5_principal_ent_rec princ;
kadm5_ret_t retval;
krb5_context context;
Attribute *a_objectclass, *a_uid;
char *user_uid = NULL, *user_password = NULL, *user_princstr = NULL;
int rc;
size_t user_princstr_size;
pid_t worker_pid = 0;
pid_t timeout_pid = 0;
int status = 0;
if (!access_allowed(op, e, slap_schema.si_ad_userPassword, NULL,
ACL_WRITE, NULL))
return LDAP_INSUFFICIENT_ACCESS;
rc = LDAP_LOCAL_ERROR;
/* The krb5 kadm5 libraries seem to use global variables that hold the
master key for the realm and some other realm specific data. Mutexes
did not seem to get rid of all the problems related to this and
some lockups still happened, so fork the process instead before
doing any krb5 operations. The process is forked and the child sets
an alarm that kills the forked process if the password change is not
finished in 2 seconds.
*/
worker_pid = fork();
if (worker_pid == -1) {
switch (errno) {
case EAGAIN:
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : failed to fork process for password change (EAGAIN)!\n",
op->o_log_prefix);
return LDAP_LOCAL_ERROR;
case ENOMEM:
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : failed to fork process for password change (ENOMEM - No memory)!\n",
op->o_log_prefix);
return LDAP_LOCAL_ERROR;
case ENOSYS:
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : failed to fork process for password change (ENOSYS - Not supported)!\n",
op->o_log_prefix);
return LDAP_LOCAL_ERROR;
default:
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : failed to fork process for password change!\n",
op->o_log_prefix);
return LDAP_LOCAL_ERROR;
}
}
if (worker_pid) {
waitpid(worker_pid, &status, 0);
if (status == SIGALRM) {
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : forked password change process did not complete in 15s\n",
op->o_log_prefix);
return LDAP_LOCAL_ERROR;
}
return status;
}
signal(SIGALRM, SIG_DFL);
alarm(15);
kadm5_handle = NULL;
memset(&princ, 0, sizeof(princ));
memset(¶ms, 0, sizeof(params));
princ.principal = NULL;
/* Find the uid of the user - this is used to generate the kerberos
* principal for the user */
/* XXX add user information to all error messages */
a_uid = attr_find(e->e_attrs, ad_uid);
if (!a_uid) {
Log2(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : could not find uid in entry: %s\n",
op->o_log_prefix,
ldap_err2string(LDAP_NO_SUCH_ATTRIBUTE));
rc = LDAP_NO_SUCH_ATTRIBUTE;
goto finish;
}
user_uid = calloc(a_uid->a_vals[0].bv_len + 1, 1);
user_password = calloc(qpw->rs_new.bv_len + 1, 1);
memcpy(user_uid, a_uid->a_vals[0].bv_val, a_uid->a_vals[0].bv_len);
memcpy(user_password, qpw->rs_new.bv_val, qpw->rs_new.bv_len);
retval = kadm5_init_krb5_context(&context);
if (retval) {
Log3(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : kadm5_init_krb5_context() failed"
" for user %s: %s\n",
op->o_log_prefix, user_uid, error_message(retval));
rc = LDAP_CONNECT_ERROR;
goto finish;
}
params.mask |= KADM5_CONFIG_REALM;
params.realm = pi->kerberos_realm;
#ifdef SMBKRB5PWD_KADM5_SRV
retval = kadm5_init_with_password(context, pi->admin_princstr, NULL,
NULL, ¶ms,
KADM5_STRUCT_VERSION,
KADM5_API_VERSION_3, NULL,
&kadm5_handle);
#endif
#ifdef SMBKRB5PWD_KADM5_CLNT
retval = kadm5_init_with_skey(context, pi->admin_princstr, KRB5_KEYTAB,
KADM5_ADMIN_SERVICE, ¶ms,
KADM5_STRUCT_VERSION,
KADM5_API_VERSION_3, NULL,
&kadm5_handle);
#endif
if (retval) {
Log4(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : kadm5_init_with_password() failed"
" for user %s (%s): %s\n",
op->o_log_prefix, user_uid, pi->admin_princstr, error_message(retval));
rc = LDAP_CONNECT_ERROR;
goto mitkrb_error_with_context;
}
user_princstr_size = strlen(user_uid)
+ sizeof("@")
+ strlen(pi->kerberos_realm)
+ 1;
if ((user_princstr = calloc(user_princstr_size, 1)) == NULL) {
rc = LDAP_CONNECT_ERROR;
goto mitkrb_error_with_kadm5_handle;
}
snprintf(user_princstr, user_princstr_size, "%s@%s", user_uid,
pi->kerberos_realm);
retval = krb5_parse_name(context, user_princstr, &princ.principal);
if (retval) {
Log3(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : krb5_parse_name() failed"
" for user %s: %s\n",
op->o_log_prefix, user_princstr, error_message(retval));
rc = LDAP_CONNECT_ERROR;
goto mitkrb_error_with_user_princstr;
}
long create_mask = KADM5_PRINCIPAL|KADM5_MAX_LIFE|KADM5_ATTRIBUTES;
princ.attributes |= KRB5_KDB_REQUIRES_PRE_AUTH;
retval = kadm5_create_principal(kadm5_handle, &princ, create_mask,
user_password);
if (retval == KADM5_OK) {
Log2(LDAP_DEBUG_ANY, LDAP_LEVEL_NOTICE,
"smbkrb5pwd %s : created principal for user %s\n",
op->o_log_prefix, user_princstr);
rc = LDAP_SUCCESS;
} else if (retval == KADM5_DUP) {
/* principal exists, only change password */
retval = kadm5_chpass_principal(kadm5_handle, princ.principal,
user_password);
if (retval) {
Log3(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : kadm5_chpass_principal() failed "
"for user %s: %s\n",
op->o_log_prefix, user_princstr,
error_message(retval));
rc = LDAP_CONNECT_ERROR;
goto mitkrb_error_with_princ;
} else {
Log2(LDAP_DEBUG_ANY, LDAP_LEVEL_NOTICE,
"smbkrb5pwd %s : changed password for user %s\n",
op->o_log_prefix, user_princstr);
rc = LDAP_SUCCESS;
}
} else {
Log3(LDAP_DEBUG_ANY, LDAP_LEVEL_ERR,
"smbkrb5pwd %s : Problem creating principal for user %s: "
"%s\n", op->o_log_prefix, user_princstr,
error_message(retval));
rc = LDAP_CONNECT_ERROR;
goto mitkrb_error_with_princ;
}
mitkrb_error_with_princ:
krb5_free_principal(context, princ.principal);
mitkrb_error_with_kadm5_handle:
kadm5_destroy(kadm5_handle);
mitkrb_error_with_user_princstr:
free(user_princstr);
mitkrb_error_with_context:
krb5_free_context(context);
finish:
if (user_uid)
free(user_uid);
if (user_password)
free(user_password);
_exit(rc);
}
static int smbkrb5pwd_exop_passwd(
Operation *op,
SlapReply *rs)
{
int rc, rc_krb5;
req_pwdexop_s *qpw = &op->oq_pwdexop;
Entry *e;
Modifications *ml;
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
smbkrb5pwd_t *pi = on->on_bi.bi_private;
char term;
/* Not the operation we expected, pass it on... */
if ( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, &op->ore_reqoid ) ) {
return SLAP_CB_CONTINUE;
}
op->o_bd->bd_info = (BackendInfo *)on->on_info;
rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
if ( rc != LDAP_SUCCESS ) return rc;
term = qpw->rs_new.bv_val[qpw->rs_new.bv_len];
qpw->rs_new.bv_val[qpw->rs_new.bv_len] = '\0';
rc = SLAP_CB_CONTINUE;
if (pi->oc_requiredObjectclass &&
!is_entry_objectclass(e, pi->oc_requiredObjectclass, 0)) {
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_NOTICE,
"smbkrb5pwd %s : an entry is not of required"
" objectClass\n",
op->o_log_prefix);
rc = LDAP_PARAM_ERROR;
goto finish;
}
if (SMBKRB5PWD_DO_KRB5(pi)) {
Attribute *a;
struct berval *keys;
/* if this fails, do not bother with samba,
because passwords should be kept in sync */
rc_krb5 = krb5_set_passwd(op, qpw, e, pi);
if (rc_krb5 != LDAP_SUCCESS) {
rc = rc_krb5;
goto finish;
}
if (pi->keep_sasl_id == 1) {
a = attr_find( e->e_attrs, ad_userPassword );
if (a) {
const char* SASL_SCHEME = "{sasl}";
const int SASL_SCHEME_LEN = 6;
if (a->a_vals[0].bv_len >= SASL_SCHEME_LEN && strncasecmp(a->a_vals[0].bv_val, SASL_SCHEME, SASL_SCHEME_LEN) == 0) {
ml = ch_malloc(sizeof(Modifications));
if (!qpw->rs_modtail) qpw->rs_modtail = &ml->sml_next;
ml->sml_next = qpw->rs_mods;
qpw->rs_mods = ml;
keys = ch_malloc( 2 * sizeof(struct berval) );
BER_BVZERO( &keys[1] );
ber_dupbv(keys, &a->a_vals[0]);
ml->sml_desc = ad_userPassword;
ml->sml_op = LDAP_MOD_REPLACE;
#ifdef SLAP_MOD_INTERNAL
ml->sml_flags = SLAP_MOD_INTERNAL;
#endif
ml->sml_numvals = 1;
ml->sml_values = keys;
ml->sml_nvalues = NULL;
}
}
}
}
/* Samba stuff */
if ( SMBKRB5PWD_DO_SAMBA( pi ) && is_entry_objectclass(e, oc_sambaSamAccount, 0 ) ) {
struct berval *keys;
ber_len_t j,l;
wchar_t *wcs, wc;
char *c, *d;
struct berval pwd;
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_NOTICE,
"smbkrb5pwd %s : setting samba password",
op->o_log_prefix);
/* Expand incoming UTF8 string to UCS4 */
l = ldap_utf8_chars(qpw->rs_new.bv_val);
wcs = ch_malloc((l+1) * sizeof(wchar_t));
ldap_x_utf8s_to_wcs( wcs, qpw->rs_new.bv_val, l );
/* Truncate UCS4 to UCS2 */
c = (char *)wcs;
for (j=0; j<l; j++) {
wc = wcs[j];
*c++ = wc & 0xff;
*c++ = (wc >> 8) & 0xff;
}
*c++ = 0;
pwd.bv_val = (char *)wcs;
pwd.bv_len = l * 2;
ml = ch_malloc(sizeof(Modifications));
if (!qpw->rs_modtail) qpw->rs_modtail = &ml->sml_next;
ml->sml_next = qpw->rs_mods;
qpw->rs_mods = ml;
keys = ch_malloc( 2 * sizeof(struct berval) );
BER_BVZERO( &keys[1] );
nthash( &pwd, keys );
ml->sml_desc = ad_sambaNTPassword;
ml->sml_op = LDAP_MOD_REPLACE;
#ifdef SLAP_MOD_INTERNAL
ml->sml_flags = SLAP_MOD_INTERNAL;
#endif
ml->sml_numvals = 1;
ml->sml_values = keys;
ml->sml_nvalues = NULL;
ch_free(wcs);
ml = ch_malloc(sizeof(Modifications));
ml->sml_next = qpw->rs_mods;
qpw->rs_mods = ml;
keys = ch_malloc( 2 * sizeof(struct berval) );
keys[0].bv_val = ch_malloc( LDAP_PVT_INTTYPE_CHARS(long) );
keys[0].bv_len = snprintf(keys[0].bv_val,
LDAP_PVT_INTTYPE_CHARS(long),
"%ld", slap_get_time());
BER_BVZERO( &keys[1] );
ml->sml_desc = ad_sambaPwdLastSet;
ml->sml_op = LDAP_MOD_REPLACE;
#ifdef SLAP_MOD_INTERNAL
ml->sml_flags = SLAP_MOD_INTERNAL;
#endif
ml->sml_numvals = 1;
ml->sml_values = keys;
ml->sml_nvalues = NULL;
if (pi->smb_must_change)
{
ml = ch_malloc(sizeof(Modifications));
ml->sml_next = qpw->rs_mods;
qpw->rs_mods = ml;
keys = ch_malloc( 2 * sizeof(struct berval) );
keys[0].bv_val = ch_malloc( LDAP_PVT_INTTYPE_CHARS(long) );
keys[0].bv_len = snprintf(keys[0].bv_val,
LDAP_PVT_INTTYPE_CHARS(long),
"%ld", slap_get_time() + pi->smb_must_change);
BER_BVZERO( &keys[1] );
ml->sml_desc = ad_sambaPwdMustChange;
ml->sml_op = LDAP_MOD_REPLACE;
#ifdef SLAP_MOD_INTERNAL
ml->sml_flags = SLAP_MOD_INTERNAL;
#endif
ml->sml_numvals = 1;
ml->sml_values = keys;
ml->sml_nvalues = NULL;
}
if (pi->smb_can_change)
{
ml = ch_malloc(sizeof(Modifications));
ml->sml_next = qpw->rs_mods;
qpw->rs_mods = ml;
keys = ch_malloc( 2 * sizeof(struct berval) );
keys[0].bv_val = ch_malloc( LDAP_PVT_INTTYPE_CHARS(long) );
keys[0].bv_len = snprintf(keys[0].bv_val,
LDAP_PVT_INTTYPE_CHARS(long),
"%ld", slap_get_time() + pi->smb_can_change);
BER_BVZERO( &keys[1] );
ml->sml_desc = ad_sambaPwdCanChange;
ml->sml_op = LDAP_MOD_REPLACE;
#ifdef SLAP_MOD_INTERNAL
ml->sml_flags = SLAP_MOD_INTERNAL;
#endif
ml->sml_numvals = 1;
ml->sml_values = keys;
ml->sml_nvalues = NULL;
}
}
finish:
be_entry_release_r( op, e );
qpw->rs_new.bv_val[qpw->rs_new.bv_len] = term;
return rc;
}
static slap_overinst smbkrb5pwd;
/* back-config stuff */
enum {
PC_SMB_MUST_CHANGE = 1,
PC_SMB_CAN_CHANGE,
PC_SMB_ENABLE,
PC_SMB_KRB5REALM,
PC_SMB_REQUIREDCLASS,
PC_SMB_KEEP_SASL_ID,
};
static ConfigDriver smbkrb5pwd_cf_func;
/*
* NOTE: uses OID arcs OLcfgCtAt:1 and OLcfgCtOc:1
*/
static ConfigTable smbkrb5pwd_cfats[] = {
{ "smbkrb5pwd-enable", "arg",
2, 0, 0, ARG_MAGIC|PC_SMB_ENABLE, smbkrb5pwd_cf_func,
"( OLcfgCtAt:1.1 NAME 'olcSmbKrb5PwdEnable' "
"DESC 'Modules to be enabled' "
"SYNTAX OMsDirectoryString )", NULL, NULL },
{ "smbkrb5pwd-must-change", "time",
2, 2, 0, ARG_MAGIC|ARG_INT|PC_SMB_MUST_CHANGE, smbkrb5pwd_cf_func,
"( OLcfgCtAt:1.2 NAME 'olcSmbKrb5PwdMustChange' "
"DESC 'Credentials validity interval' "
"SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
{ "smbkrb5pwd-can-change", "time",
2, 2, 0, ARG_MAGIC|ARG_INT|PC_SMB_CAN_CHANGE, smbkrb5pwd_cf_func,
"( OLcfgCtAt:1.3 NAME 'olcSmbKrb5PwdCanChange' "
"DESC 'Credentials minimum validity interval' "
"SYNTAX OMsInteger SINGLE-VALUE )", NULL, NULL },
{ "smbkrb5pwd-krb5realm", "arg",
2, 2, 0, ARG_MAGIC|ARG_STRING|PC_SMB_KRB5REALM, smbkrb5pwd_cf_func,
"( OLcfgCtAt:1.4 NAME 'olcSmbKrb5PwdKrb5Realm' "
"DESC 'Kerberos5 realm' "
"SYNTAX OMsDirectoryString )", NULL, NULL },
{ "smbkrb5pwd-requiredclass", "arg",
2, 2, 0, ARG_MAGIC|ARG_STRING|PC_SMB_REQUIREDCLASS,
smbkrb5pwd_cf_func,
"( OLcfgCtAt:1.5 NAME 'olcSmbKrb5PwdRequiredClass' "
"DESC 'Required objectClass' "
"SYNTAX OMsDirectoryString )", NULL, NULL },
{ "smbkrb5pwd-keep-sasl-identity", "on|off",
2, 2, 0, ARG_MAGIC|ARG_ON_OFF|PC_SMB_KEEP_SASL_ID, smbkrb5pwd_cf_func,
"( OLcfgCtAt:1.6 NAME 'olcSmbKrb5PwdKeepSaslIdentity' "
"DESC 'Keep the SASL id defined in userPassword if password is changed' "
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
{ NULL, NULL, 0, 0, 0, ARG_IGNORED }
};
static ConfigOCs smbkrb5pwd_cfocs[] = {
{ "( OLcfgCtOc:1.1 "
"NAME 'olcSmbKrb5PwdConfig' "
"DESC 'smbkrb5pwd overlay configuration' "
"SUP olcOverlayConfig "
"MAY ( "
"olcSmbKrb5PwdEnable "
"$ olcSmbKrb5PwdMustChange "
"$ olcSmbKrb5PwdCanChange "
"$ olcSmbKrb5PwdKrb5Realm "
"$ olcSmbKrb5PwdRequiredClass "
"$ olcSmbKrb5PwdKeepSaslIdentity "
") )", Cft_Overlay, smbkrb5pwd_cfats },
{ NULL, 0, NULL }
};
/*
* add here other functionalities; handle their initialization
* as appropriate in smbkrb5pwd_modules_init().
*/
static slap_verbmasks smbkrb5pwd_modules[] = {
{ BER_BVC( "krb5" ), SMBKRB5PWD_F_KRB5 },
{ BER_BVC( "samba" ), SMBKRB5PWD_F_SAMBA },
{ BER_BVNULL, -1 }
};
static int
smbkrb5pwd_cf_func( ConfigArgs *c )
{
slap_overinst *on = (slap_overinst *)c->bi;
int rc = 0;
smbkrb5pwd_t *pi = on->on_bi.bi_private;
if ( c->op == SLAP_CONFIG_EMIT ) {
switch( c->type ) {
case PC_SMB_MUST_CHANGE:
c->value_int = pi->smb_must_change;
break;
case PC_SMB_CAN_CHANGE:
c->value_int = pi->smb_can_change;
break;
case PC_SMB_ENABLE:
c->rvalue_vals = NULL;
if ( pi->mode ) {
mask_to_verbs( smbkrb5pwd_modules, pi->mode, &c->rvalue_vals );
if ( c->rvalue_vals == NULL ) {
rc = 1;
}
}
break;
case PC_SMB_KEEP_SASL_ID:
c->value_int = pi->keep_sasl_id;
break;
default:
assert( 0 );
rc = 1;
}
return rc;
} else if ( c->op == LDAP_MOD_DELETE ) {
switch( c->type ) {
case PC_SMB_MUST_CHANGE:
break;
case PC_SMB_CAN_CHANGE:
break;
case PC_SMB_ENABLE:
if ( !c->line ) {
pi->mode = 0;
} else {
slap_mask_t m;
m = verb_to_mask( c->line, smbkrb5pwd_modules );
pi->mode &= ~m;
}
break;
case PC_SMB_KEEP_SASL_ID:
break;
default:
assert( 0 );
rc = 1;
}
return rc;
}
switch( c->type ) {
case PC_SMB_MUST_CHANGE:
if ( c->value_int < 0 ) {
Debug( LDAP_DEBUG_ANY, "%s: smbkrb5pwd: "
"<%s> invalid negative value \"%d\".",
c->log, c->argv[ 0 ], 0 );
return 1;
}
pi->smb_must_change = c->value_int;
break;
case PC_SMB_CAN_CHANGE:
if ( c->value_int < 0 ) {
Debug( LDAP_DEBUG_ANY, "%s: smbkrb5pwd: "
"<%s> invalid negative value \"%d\".",
c->log, c->argv[ 0 ], 0 );
return 1;
}
pi->smb_can_change = c->value_int;
break;
case PC_SMB_ENABLE: {
slap_mask_t mode = pi->mode, m;
rc = verbs_to_mask( c->argc, c->argv, smbkrb5pwd_modules, &m );
if ( rc > 0 ) {
Debug( LDAP_DEBUG_ANY, "%s: smbkrb5pwd: "
"<%s> unknown module \"%s\".\n",
c->log, c->argv[ 0 ], c->argv[ rc ] );
return 1;
}
/* we can hijack the smbkrb5pwd_t structure because
* from within the configuration, this is the only
* active thread. */
pi->mode |= m;
{
BackendDB db = *c->be;
/* Re-initialize the module, because
* the configuration might have changed */
db.bd_info = (BackendInfo *)on;
rc = smbkrb5pwd_modules_init( pi );
if ( rc ) {
pi->mode = mode;
return 1;
}
}
} break;
case PC_SMB_KRB5REALM: {
if (pi->kerberos_realm)
free(pi->kerberos_realm);
if ((pi->kerberos_realm = strdup(c->value_string)) == NULL)
return 1;
rc = lookup_admin_princstr(pi->kerberos_realm,
&pi->admin_princstr);
if (rc)
return rc;
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
"smbkrb5pwd : using admin principal %s\n",
pi->admin_princstr);
break;
}
case PC_SMB_REQUIREDCLASS: {
if (!(pi->oc_requiredObjectclass = oc_find(c->value_string))) {
Log1(LDAP_DEBUG_ANY, LDAP_LEVEL_INFO,
"smbkrb5pwd : could not find required "
"objectclass %s\n",
c->value_string);
return 1;
}
break;
}
case PC_SMB_KEEP_SASL_ID: {
if (c->value_int)
pi->keep_sasl_id = 1;
else
pi->keep_sasl_id = 0;
break;
}
default:
assert( 0 );
return 1;
}
return rc;
}
static int
smbkrb5pwd_modules_init( smbkrb5pwd_t *pi )
{
static struct {
const char *name;
AttributeDescription **adp;
}
krb5_ad[] = {
{ "uid", &ad_uid },
{ "userPassword", &ad_userPassword },
{ NULL }
},
samba_ad[] = {
{ "sambaNTPassword", &ad_sambaNTPassword },
{ "sambaPwdLastSet", &ad_sambaPwdLastSet },
{ "sambaPwdMustChange", &ad_sambaPwdMustChange },
{ "sambaPwdCanChange", &ad_sambaPwdCanChange },
{ NULL }
},
dummy_ad;
/* this is to silence the unused var warning */
dummy_ad.name = NULL;
if ( SMBKRB5PWD_DO_KRB5( pi ) ) {
int i, rc;
for ( i = 0; krb5_ad[ i ].name != NULL; i++ ) {
const char *text;
*(krb5_ad[ i ].adp) = NULL;
rc = slap_str2ad( krb5_ad[ i ].name, krb5_ad[ i ].adp, &text );
if ( rc != LDAP_SUCCESS ) {
Debug( LDAP_DEBUG_ANY, "smbk5pwd: "
"unable to find \"%s\" attributeType: %s (%d).\n",
krb5_ad[ i ].name, text, rc );
return rc;
}
}
}
if ( SMBKRB5PWD_DO_SAMBA( pi ) && oc_sambaSamAccount == NULL ) {
int i, rc;
oc_sambaSamAccount = oc_find( "sambaSamAccount" );
if ( !oc_sambaSamAccount ) {
Debug( LDAP_DEBUG_ANY, "smbkrb5pwd: "
"unable to find \"sambaSamAccount\" objectClass.\n",
0, 0, 0 );
return -1;
}
for ( i = 0; samba_ad[ i ].name != NULL; i++ ) {
const char *text;
*(samba_ad[ i ].adp) = NULL;
rc = slap_str2ad( samba_ad[ i ].name, samba_ad[ i ].adp, &text );
if ( rc != LDAP_SUCCESS ) {
Debug( LDAP_DEBUG_ANY, "smbkrb5pwd: "
"unable to find \"%s\" attributeType: %s (%d).\n",
samba_ad[ i ].name, text, rc );
oc_sambaSamAccount = NULL;
return rc;
}
}
}
return 0;
}
static int
smbkrb5pwd_db_init(BackendDB *be, ConfigReply *cr)
{
slap_overinst *on = (slap_overinst *)be->bd_info;
smbkrb5pwd_t *pi;
pi = ch_calloc( 1, sizeof( smbkrb5pwd_t ) );
if ( pi == NULL ) {
return 1;
}
pi->admin_princstr = NULL;
pi->kerberos_realm = NULL;
pi->oc_requiredObjectclass = NULL;
ldap_pvt_thread_mutex_init(&pi->krb5_mutex);
on->on_bi.bi_private = (void *)pi;
return 0;
}
static int
smbkrb5pwd_db_open(BackendDB *be, ConfigReply *cr)
{
slap_overinst *on = (slap_overinst *)be->bd_info;
smbkrb5pwd_t *pi = (smbkrb5pwd_t *)on->on_bi.bi_private;
int rc;
if ( pi->mode == 0 ) {
pi->mode = SMBKRB5PWD_F_ALL;
}
rc = smbkrb5pwd_modules_init( pi );
if ( rc ) {
return rc;
}
return 0;
}
static int
smbkrb5pwd_db_destroy(BackendDB *be, ConfigReply *cr)
{
slap_overinst *on = (slap_overinst *)be->bd_info;
smbkrb5pwd_t *pi = (smbkrb5pwd_t *)on->on_bi.bi_private;
if ( pi ) {
ch_free( pi );
}
return 0;
}
int
smbkrb5pwd_initialize(void)
{
int rc;
smbkrb5pwd.on_bi.bi_type = "smbkrb5pwd";