]> git.sur5r.net Git - openldap/blob - clients/tools/ldappasswd.c
70ed51609e694f4e8d292949f41072ca7126239f
[openldap] / clients / tools / ldappasswd.c
1 /*
2  *      Copyright 1998, David E. Storey, All rights reserved.
3  *      This software is not subject to any license of The Murphy Group, Inc.
4  *      or George Mason University.
5  *
6  *      Redistribution and use in source and binary forms are permitted only
7  *      as authorized by the OpenLDAP Public License.  A copy of this
8  *      license is available at http://www.OpenLDAP.org/license.html or
9  *      in file LICENSE in the top-level directory of the distribution.
10  *
11  *      ldappasswd.c - program to modify passwords in an LDAP tree
12  *
13  *      Author: David E. Storey <dave@tamos.net>
14  */
15
16 #include "portable.h"
17
18 #include <ctype.h>
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <sys/time.h>
22
23 #include <ac/string.h>
24 #include <ac/unistd.h>
25
26 #include <lber.h>
27 #include <ldap.h>
28 #include <lutil.h>
29 #include <lutil_md5.h>
30 #include <lutil_sha1.h>
31
32 #include "ldapconfig.h"
33
34 /* local macros */
35 #define CEILING(x)      ((double)x > (int)x ? (int)x + 1 : (int)x)
36 #define STRDUP(x)       (x ? strcpy(malloc(strlen(x) + 1), x) : NULL)
37
38 #define LDAP_PASSWD_ATTRIB "userPassword"
39 #define LDAP_PASSWD_CONF   DEFAULT_SYSCONFDIR"/passwd.conf"
40
41 #define HS_NONE  0
42 #define HS_PLAIN 1
43 #define HS_CONV  2
44
45 typedef enum
46 {
47         HASHTYPE_NONE,
48         HASHTYPE_CRYPT,
49         HASHTYPE_MD5,
50         HASHTYPE_SMD5,
51         HASHTYPE_SHA1,
52         HASHTYPE_SSHA1
53 }
54 HashTypes;
55
56 typedef struct salt_t
57 {
58         unsigned char  *salt;
59         unsigned int    len;
60 }
61 Salt;
62
63 typedef struct hash_t
64 {
65         char           *name;
66         unsigned int    namesz;
67         char           *(*func) (const char *, Salt *);
68         unsigned char   takes_salt;
69         HashTypes       type;
70         HashTypes       type_salted;
71         unsigned int    default_salt_len;
72 }
73 Hash;
74
75 static int      noupdates = 0;
76 static int      verbose = 0;
77 static int      want_entryhash = 0;
78 static int      auto_gen_pw = 0;
79
80 /*** functions ***/
81
82 /*
83  * pw_encode() essentially base64 encodes a password and it's salt
84  */
85
86 char *
87 pw_encode (unsigned char *passwd, Salt * salt, unsigned int len)
88 {
89         int             salted = salt && salt->salt && salt->len;
90         int             b64_len = 0;
91         char           *base64digest = NULL;
92         unsigned char  *npasswd = passwd;
93
94         if (salted)
95         {
96                 npasswd = (unsigned char *)malloc (len + salt->len);
97                 memcpy (npasswd, passwd, len);
98                 memcpy (&npasswd[len], salt->salt, salt->len);
99                 len += salt->len;
100         }
101
102         b64_len = CEILING (len / 3) * 4 + 1;
103         base64digest = (char *)malloc (b64_len);
104         if (lutil_b64_ntop (npasswd, len, base64digest, b64_len) < 0)
105         {
106                 free (base64digest);
107                 base64digest = NULL;
108         }
109
110         if (salted)
111                 free (npasswd);
112
113         return (base64digest);
114 }
115
116 /*
117  * if you'd like to write a better salt generator, please, be my guest.
118  */
119
120 void
121 make_salt (Salt * salt, unsigned int len)
122 {
123         struct timeval  tv;
124
125         if (!salt)
126                 return;
127
128         /* seed random number generator */
129         gettimeofday (&tv, NULL);
130         srand (tv.tv_usec);
131
132         salt->len = len;
133         salt->salt = (unsigned char *)malloc (len);
134
135         for (len = 0; len < salt->len; len++)
136                 salt->salt[len] = (tv.tv_usec ^ rand ()) & 0xff;
137 }
138
139 /*
140  * password generator
141  */
142
143 char *
144 gen_pass (unsigned int len)
145 {
146         const unsigned char autogen[] =
147                 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890.,";
148         int             i;
149         Salt            salt = {NULL, 0};
150
151         make_salt (&salt, len);
152         for (i = 0; i < len; i++)
153                 salt.salt[i] = autogen[salt.salt[i] % (sizeof (autogen) - 1)];
154
155         return ((char *)salt.salt);
156 }
157
158 char *
159 hash_none (const char *pw_in, Salt * salt)
160 {
161         return (STRDUP (pw_in));
162 }
163
164 char *
165 hash_crypt (const char *pw_in, Salt * salt)
166 {
167         const unsigned char crypt64[] =
168                 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890./";
169         char   *crypted_pw = NULL;
170         Salt    lsalt;
171
172         if (salt && salt->salt && strlen ((char *)salt->salt) >= 2)
173         {
174                 /* sanity check */
175                 if (!(isalnum(salt->salt[0]) || salt->salt[0] == '.' || salt->salt[0] == '/'))
176                         salt->salt[0] = crypt64[salt->salt[0] % (sizeof (crypt64) - 1)];
177                 if (!(isalnum(salt->salt[1]) || salt->salt[1] == '.' || salt->salt[1] == '/'))
178                         salt->salt[1] = crypt64[salt->salt[1] % (sizeof (crypt64) - 1)];
179
180                 crypted_pw = crypt (pw_in, (char *)salt->salt);
181         }
182         else
183         {
184                 make_salt (&lsalt, 2);
185                 lsalt.salt[0] = crypt64[lsalt.salt[0] % (sizeof (crypt64) - 1)];
186                 lsalt.salt[1] = crypt64[lsalt.salt[1] % (sizeof (crypt64) - 1)];
187                 crypted_pw = crypt (pw_in, (char *)lsalt.salt);
188                 free (lsalt.salt);
189         }
190         return (STRDUP (crypted_pw));
191 }
192
193 char *
194 hash_md5 (const char *pw_in, Salt * salt)
195 {
196         lutil_MD5_CTX   MD5context;
197         unsigned char   MD5digest[16];
198
199         lutil_MD5Init (&MD5context);
200         lutil_MD5Update (&MD5context, pw_in, strlen(pw_in));
201         if (salt && salt->salt && salt->len)
202                 lutil_MD5Update (&MD5context, salt->salt, salt->len);
203         lutil_MD5Final (MD5digest, &MD5context);
204
205         return (pw_encode (MD5digest, salt, sizeof (MD5digest)));
206 }
207
208 char *
209 hash_sha1 (const char *pw_in, Salt * salt)
210 {
211         lutil_SHA1_CTX  SHA1context;
212         unsigned char   SHA1digest[20];
213
214         lutil_SHA1Init (&SHA1context);
215         lutil_SHA1Update (&SHA1context, pw_in, strlen(pw_in));
216         if (salt && salt->salt && salt->len)
217                 lutil_SHA1Update (&SHA1context, salt->salt, salt->len);
218         lutil_SHA1Final (SHA1digest, &SHA1context);
219
220         return (pw_encode (SHA1digest, salt, sizeof (SHA1digest)));
221 }
222
223 static Hash hashes[] =
224 {
225         {"none",  4, hash_none,  0, HASHTYPE_NONE,  HASHTYPE_NONE,  0},
226         {"crypt", 5, hash_crypt, 1, HASHTYPE_CRYPT, HASHTYPE_CRYPT, 2},
227         {"md5",   3, hash_md5,   0, HASHTYPE_MD5,   HASHTYPE_SMD5,  0},
228         {"smd5",  4, hash_md5,   1, HASHTYPE_SMD5,  HASHTYPE_SMD5,  4},
229         {"sha",   3, hash_sha1,  0, HASHTYPE_SHA1,  HASHTYPE_SSHA1, 0},
230         {"ssha",  4, hash_sha1,  1, HASHTYPE_SSHA1, HASHTYPE_SSHA1, 4},
231         {NULL,    0, NULL,       0, HASHTYPE_NONE,  HASHTYPE_NONE,  0}
232 };
233
234 int
235 modify_dn (LDAP * ld, char *targetdn, char *pwattr, char *oldpw,
236            char *newpw, HashTypes htype, Salt * salt)
237 {
238         int             ret = 0;
239         int             salted = salt->salt ? 1 : 0;
240         int             want_salt = salt->len && !salted;
241         char           *buf = NULL;
242         char           *hashed_pw = NULL;
243         char           *strvals[2] = {NULL, NULL};
244         LDAPMod         mod;
245         LDAPMod        *mods[2] = {&mod, NULL};
246
247         if (!ld || !targetdn || !newpw)
248                 return (1);
249
250         /* auto-generate password */
251         if (auto_gen_pw)
252                 newpw = gen_pass (auto_gen_pw);
253
254         /* handle salt */
255         if (want_salt)
256         {
257                 make_salt (salt, salt->len);
258                 htype = hashes[htype].type_salted;
259         }
260         else if (hashes[htype].default_salt_len)
261         {
262                 /* user chose a salted hash and needs a salt */
263                 if (!salted)
264                 {
265                         want_salt++;
266                         salt->len = hashes[htype].default_salt_len;
267                         make_salt (salt, salt->len);
268                 }
269         }
270
271         /* hash password */
272         hashed_pw = hashes[htype].func (newpw, salt->len ? salt : NULL);
273
274         /* return salt back to it's original state */
275         if (want_salt)
276         {
277                 free (salt->salt);
278                 salt->salt = NULL;
279         }
280
281         buf = (char *)malloc (hashes[htype].namesz + 3 + strlen (hashed_pw));
282         if (htype)
283                 sprintf (buf, "{%s}%s", hashes[htype].name, hashed_pw);
284         else
285                 sprintf (buf, "%s", hashed_pw);
286
287         if (verbose > 0)
288         {
289                 printf ("%s", targetdn);
290                 if (verbose > 1)
291                 {
292                         printf (":%s", buf);
293                         if (verbose > 2)
294                                 printf (":%s", newpw);
295                 }
296                 printf ("\n");
297         }
298
299         strvals[0] = buf;
300         mod.mod_vals.modv_strvals = strvals;
301         mod.mod_type = pwattr;
302         mod.mod_op = LDAP_MOD_REPLACE;
303
304         if (!noupdates && (ret = ldap_modify_s (ld, targetdn, mods)) != LDAP_SUCCESS)
305                 ldap_perror (ld, "ldap_modify_s");
306
307         free (hashed_pw);
308         free (buf);
309         return (ret);
310 }
311
312 void
313 usage (char *s)
314 {
315         fprintf (stderr, "Usage: %s [options] [filter]\n", s);
316         fprintf (stderr, "  -a attrib\tpassword attribute (default: %s)\n", LDAP_PASSWD_ATTRIB);
317         fprintf (stderr, "  -b basedn\tbasedn to perform searches\n");
318 /*      fprintf (stderr, "  -C\t\tuse entry's current hash mechanism\n"); */
319         fprintf (stderr, "  -D binddn\tbind dn\n");
320         fprintf (stderr, "  -d level\tdebugging level\n");
321         fprintf (stderr, "  -E\t\tprompt for new password\n");
322         fprintf (stderr, "  -e passwd\tnew password\n");
323         fprintf (stderr, "  -g passlen\tauto-generate passwords with length pwlen\n");
324         fprintf (stderr, "  -H hash\thash type (default: crypt)\n");
325         fprintf (stderr, "  -h host\tldap server (default: localhost)\n");
326 #ifdef HAVE_KERBEROS
327         fprintf (stderr, "  -K\t\tuse Kerberos step 1\n");
328         fprintf (stderr, "  -k\t\tuse Kerberos\n");
329 #endif
330         fprintf (stderr, "  -l time\ttime limit\n");
331         fprintf (stderr, "  -n\t\tmake no modifications\n");
332         fprintf (stderr, "  -p port\tldap port\n");
333         fprintf (stderr, "  -s scope\tsearch scope: base, one, sub (default: sub)\n");
334         fprintf (stderr, "  -t targetdn\tdn to change password\n");
335         fprintf (stderr, "  -v\t\tverbose (more v's, more verbose)\n");
336         fprintf (stderr, "  -W\t\tprompt for bind password\n");
337         fprintf (stderr, "  -w passwd\tbind password (for simple authentication)\n");
338         fprintf (stderr, "  -Y saltlen\tsalt length to use\n");
339 /*      fprintf (stderr, "  -y salt\tsalt to use\n"); */
340         fprintf (stderr, "  -z size\tsize limit\n");
341         exit (1);
342 }
343
344 int
345 main (int argc, char *argv[])
346 {
347         char           *base = NULL;
348         char           *binddn = NULL;
349         char           *bindpw = NULL;
350         char           *filtpattern = NULL;
351         char           *ldaphost = NULL;
352         char           *targetdn = NULL;
353         char           *pwattr = LDAP_PASSWD_ATTRIB;
354         char           *newpw = NULL;
355         int             authmethod = LDAP_AUTH_SIMPLE;
356         int             hashtype = HASHTYPE_CRYPT;
357         int             i, j;
358         int             ldapport = 0;
359         int             debug = 0;
360         int             scope = LDAP_SCOPE_SUBTREE;
361         int             sizelimit = LDAP_NO_LIMIT;
362         int             timelimit = LDAP_NO_LIMIT;
363         int             want_bindpw = 0;
364         int             want_newpw = 0;
365         LDAP           *ld;
366         Salt            salt;
367
368         salt.salt = NULL;
369         salt.len = 0;
370
371         if (argc == 1)
372                 usage (argv[0]);
373
374         while ((i = getopt (argc, argv, "a:b:C:D:d:Ee:g:H:h:Kkl:np:s:t:vWw:Y:y:z:")) != EOF)
375         {
376                 switch (i)
377                 {
378                 case 'a':       /* password attribute */
379                         pwattr = STRDUP (optarg);
380                         break;
381
382                 case 'b':       /* base search dn */
383                         base = STRDUP (optarg);
384                         break;
385
386                 case 'C':
387                         want_entryhash++;
388                         break;
389
390                 case 'D':       /* bind distinguished name */
391                         binddn = STRDUP (optarg);
392                         break;
393
394                 case 'd':       /* debugging option */
395                         debug |= atoi (optarg);
396                         break;
397
398                 case 'E':       /* prompt for new password */
399                         want_newpw++;
400                         break;
401
402                 case 'e':       /* new password */
403                         newpw = STRDUP (optarg);
404                         break;
405
406                 case 'g':
407                         auto_gen_pw = strtol (optarg, NULL, 10);
408                         break;
409
410                 case 'H':       /* hashes */
411                         for (j = 0; hashes[j].name; j++)
412                         {
413                                 if (!strncasecmp (optarg, hashes[j].name, hashes[j].namesz))
414                                 {
415                                         hashtype = hashes[j].type;
416                                         break;
417                                 }
418                         }
419
420                         if (!hashes[j].name)
421                         {
422                                 fprintf (stderr, "hash type: %s is unknown\n", optarg);
423                                 usage (argv[0]);
424                         }
425                         break;
426
427                 case 'h':       /* ldap host */
428                         ldaphost = STRDUP (optarg);
429                         break;
430
431                 case 'K':       /* use kerberos bind, 1st part only */
432 #ifdef HAVE_KERBEROS
433                         authmethod = LDAP_AUTH_KRBV41;
434 #else
435                         fprintf (stderr, "%s was not compiled with Kerberos support\n", argv[0]);
436 #endif
437                         break;
438
439                 case 'k':       /* use kerberos bind */
440 #ifdef HAVE_KERBEROS
441                         authmethod = LDAP_AUTH_KRBV4;
442 #else
443                         fprintf (stderr, "%s was not compiled with Kerberos support\n", argv[0]);
444 #endif
445                         break;
446
447                 case 'l':       /* time limit */
448                         timelimit = strtol (optarg, NULL, 10);
449                         break;
450
451                 case 'n':       /* don't update entry(s) */
452                         noupdates++;
453                         break;
454
455                 case 'p':       /* ldap port */
456                         ldapport = strtol (optarg, NULL, 10);
457                         break;
458
459                 case 's':       /* scope */
460                         if (strncasecmp (optarg, "base", 4) == 0)
461                                 scope = LDAP_SCOPE_BASE;
462                         else if (strncasecmp (optarg, "one", 3) == 0)
463                                 scope = LDAP_SCOPE_ONELEVEL;
464                         else if (strncasecmp (optarg, "sub", 3) == 0)
465                                 scope = LDAP_SCOPE_SUBTREE;
466                         else
467                         {
468                                 fprintf (stderr, "scope should be base, one, or sub\n");
469                                 usage (argv[0]);
470                         }
471                         break;
472
473                 case 't':       /* target dn */
474                         targetdn = STRDUP (optarg);
475                         break;
476
477                 case 'v':       /* verbose */
478                         verbose++;
479                         break;
480
481                 case 'W':       /* promt for bind password */
482                         want_bindpw++;
483                         break;
484
485                 case 'w':       /* bind password */
486                         bindpw = STRDUP (optarg);
487                         break;
488
489                 case 'Y':       /* salt length */
490                         salt.len = strtol (optarg, NULL, 10);
491                         break;
492
493                 case 'y':       /* user specified salt */
494                         salt.len = strlen (optarg);
495                         salt.salt = (unsigned char *)STRDUP (optarg);
496                         break;
497
498                 case 'z':       /* time limit */
499                         sizelimit = strtol (optarg, NULL, 10);
500                         break;
501
502                 default:
503                         usage (argv[0]);
504                 }
505         }
506
507         /* grab filter */
508         if (!(argc - optind < 1))
509                 filtpattern = STRDUP (argv[optind]);
510
511         /* check for target(s) */
512         if (!filtpattern && !targetdn)
513                 targetdn = binddn;
514
515         /* handle bind password */
516         if (want_bindpw)
517                 bindpw = strdup (getpass ("Enter LDAP password: "));
518
519         /* handle new password */
520         if (!newpw)
521         {
522                 char *cknewpw;
523                 newpw = strdup (getpass ("New password: "));
524                 cknewpw = getpass ("Re-enter new password: ");
525
526                 if (strncmp (newpw, cknewpw, strlen (newpw)))
527                 {
528                         fprintf (stderr, "passwords do not match\n");
529                         exit (1);
530                 }
531         }
532
533         if ( debug ) {
534                 lber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &debug );
535                 ldap_set_option( NULL, LDAP_OPT_DEBUG_LEVEL, &debug );
536         }
537
538         /* connect to server */
539         if ((ld = ldap_open (ldaphost, ldapport)) == NULL)
540         {
541                 perror (ldaphost);
542                 exit (1);
543         }
544
545         /* set options */
546         ldap_set_option (ld, LDAP_OPT_TIMELIMIT, (void *)&timelimit);
547         ldap_set_option (ld, LDAP_OPT_SIZELIMIT, (void *)&sizelimit);
548
549         /* this seems prudent */
550         {
551                 int deref = LDAP_DEREF_NEVER;
552                 ldap_set_option( ld, LDAP_OPT_DEREF, &deref);
553         }
554
555
556         /* authenticate to server */
557         if (ldap_bind_s (ld, binddn, bindpw, authmethod) != LDAP_SUCCESS)
558         {
559                 ldap_perror (ld, "ldap_bind");
560                 exit (1);
561         }
562
563         if (targetdn)
564         {
565                 if (want_entryhash)
566                 {
567                         /* insert code here =) */
568                 }
569                 else
570                         modify_dn (ld, targetdn, pwattr, NULL, newpw, hashtype, &salt);
571         }
572
573         if (filtpattern)
574         {
575                 char            filter[BUFSIZ];
576                 LDAPMessage    *result = NULL, *e = NULL;
577                 char           *attrs[3] = {"dn", NULL, NULL};
578                 attrs[1] = pwattr;
579
580                 /* search */
581                 sprintf (filter, "%s", filtpattern);
582                 i = ldap_search_s (ld, base, scope, filter, attrs, 0, &result);
583                 if (i != LDAP_SUCCESS &&
584                     i != LDAP_TIMELIMIT_EXCEEDED &&
585                     i != LDAP_SIZELIMIT_EXCEEDED)
586                 {
587                         ldap_perror (ld, "ldap_search_s");
588                         exit (1);
589                 }
590
591                 for (e = ldap_first_entry (ld, result); e; e = ldap_next_entry (ld, e))
592                 {
593                         char *dn = ldap_get_dn (ld, e);
594                         if (dn)
595                         {
596                                 struct berval **pw_vals = ldap_get_values_len (ld, e, pwattr);
597                                 modify_dn (ld, dn, pwattr, pw_vals ? pw_vals[0]->bv_val : NULL, newpw, hashtype, &salt);
598                                 if (pw_vals)
599                                         ldap_value_free_len (pw_vals);
600                                 free (dn);
601                         }
602                 }
603         }
604
605         /* disconnect from server */
606         ldap_unbind (ld);
607         exit(0);
608
609         /* unreached */
610         return (0);
611 }