3 * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
11 #include <ac/stdlib.h>
14 #include <ac/signal.h>
15 #include <ac/socket.h>
16 #include <ac/string.h>
18 #include <ac/unistd.h>
22 #include "ldap_defaults.h"
24 static int verbose = 0;
30 "Change the password of an LDAP entry\n\n"
31 "usage: %s [options] dn\n"
32 " dn: the DN of the entry whose password must be changed\n"
34 " -a secret\told password\n"
35 " -A\t\tprompt for old password\n"
36 " -d level\tdebugging level\n"
37 " -D binddn\tbind DN\n"
38 " -E\t\trequest SASL privacy (-EE to make it critical)\n"
39 " -h host\t\tLDAP server (default: localhost)\n"
40 " -I\t\trequest SASL integrity checking (-II to make it\n"
42 " -n\t\tmake no modifications\n"
43 " -p port\t\tport on LDAP server\n"
44 " -S\t\tprompt for new password\n"
45 " -s secret\tnew password\n"
46 " -U user\t\tSASL authentication identity (username)\n"
47 " -v\t\tverbose mode\n"
48 " -w passwd\tbind password (for simple authentication)\n"
49 " -W\t\tprompt for bind password\n"
50 " -X id\t\tSASL authorization identity (\"dn:<dn>\" or \"u:<user>\")\n"
51 " -Y mech\t\tSASL mechanism\n"
52 " -Z\t\tissue Start TLS request (-ZZ to require successful response)\n"
59 main( int argc, char *argv[] )
62 char *ldaphost = NULL;
67 struct berval passwd = { 0, NULL};
80 int authmethod = LDAP_AUTH_SIMPLE;
81 #ifdef HAVE_CYRUS_SASL
82 char *sasl_authc_id = NULL;
83 char *sasl_authz_id = NULL;
84 char *sasl_mech = NULL;
85 int sasl_integrity = 0;
90 struct berval *bv = NULL;
93 struct berval *retdata;
98 while( (i = getopt( argc, argv,
99 "Aa:D:d:EIh:np:Ss:U:vWw:X:Y:Z" )) != EOF )
102 case 'A': /* prompt for oldr password */
105 case 'a': /* old password (secret) */
106 oldpw = strdup (optarg);
111 for( p = optarg; *p == '\0'; p++ ) {
116 case 'D': /* bind distinguished name */
117 binddn = strdup (optarg);
120 case 'd': /* debugging option */
121 debug |= atoi (optarg);
124 case 'h': /* ldap host */
125 ldaphost = strdup (optarg);
128 case 'n': /* don't update entry(s) */
132 case 'p': /* ldap port */
133 ldapport = strtol( optarg, NULL, 10 );
136 case 'S': /* prompt for user password */
140 case 's': /* new password (secret) */
141 newpw = strdup (optarg);
146 for( p = optarg; *p == '\0'; p++ ) {
152 case 'v': /* verbose */
156 case 'W': /* prompt for bind password */
160 case 'w': /* bind password */
161 passwd.bv_val = strdup (optarg);
165 for( p = optarg; *p == '\0'; p++ ) {
169 passwd.bv_len = strlen( passwd.bv_val );
173 #ifdef HAVE_CYRUS_SASL
175 authmethod = LDAP_AUTH_SASL;
177 fprintf( stderr, "%s was not compiled with SASL "
178 "support\n", argv[0] );
179 return( EXIT_FAILURE );
183 #ifdef HAVE_CYRUS_SASL
185 authmethod = LDAP_AUTH_SASL;
187 fprintf( stderr, "%s was not compiled with SASL "
188 "support\n", argv[0] );
189 return( EXIT_FAILURE );
193 #ifdef HAVE_CYRUS_SASL
194 if ( strcasecmp( optarg, "any" ) &&
195 strcmp( optarg, "*" ) ) {
196 sasl_mech = strdup( optarg );
198 authmethod = LDAP_AUTH_SASL;
200 fprintf( stderr, "%s was not compiled with SASL "
201 "support\n", argv[0] );
202 return( EXIT_FAILURE );
206 #ifdef HAVE_CYRUS_SASL
207 sasl_authc_id = strdup( optarg );
208 authmethod = LDAP_AUTH_SASL;
210 fprintf( stderr, "%s was not compiled with SASL "
211 "support\n", argv[0] );
212 return( EXIT_FAILURE );
216 #ifdef HAVE_CYRUS_SASL
217 sasl_authz_id = strdup( optarg );
218 authmethod = LDAP_AUTH_SASL;
220 fprintf( stderr, "%s was not compiled with SASL "
221 "support\n", argv[0] );
222 return( EXIT_FAILURE );
229 fprintf( stderr, "%s was not compiled with TLS "
230 "support\n", argv[0] );
231 return( EXIT_FAILURE );
240 if( argc - optind != 1 ) {
244 dn = strdup( argv[optind] );
246 if( want_oldpw && oldpw == NULL ) {
247 /* prompt for old password */
249 newpw = strdup(getpassphrase("Old password: "));
250 ckoldpw = getpassphrase("Re-enter old password: ");
252 if( newpw== NULL || ckoldpw == NULL ||
253 strncmp( oldpw, ckoldpw, strlen(oldpw) ))
255 fprintf( stderr, "passwords do not match\n" );
260 if( want_newpw && newpw == NULL ) {
261 /* prompt for new password */
263 newpw = strdup(getpassphrase("New password: "));
264 cknewpw = getpassphrase("Re-enter new password: ");
266 if( newpw== NULL || cknewpw == NULL ||
267 strncmp( newpw, cknewpw, strlen(newpw) ))
269 fprintf( stderr, "passwords do not match\n" );
274 if( binddn == NULL && dn != NULL ) {
278 if( passwd.bv_val == NULL ) {
279 passwd.bv_val = oldpw;
280 passwd.bv_len = oldpw == NULL ? 0 : strlen( oldpw );
284 if (want_bindpw && passwd.bv_val == NULL ) {
285 /* handle bind password */
286 fprintf( stderr, "Bind DN: %s\n", binddn );
287 passwd.bv_val = strdup( getpassphrase("Enter bind password: "));
288 passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
292 if( ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &debug ) != LBER_OPT_SUCCESS ) {
293 fprintf( stderr, "Could not set LBER_OPT_DEBUG_LEVEL %d\n", debug );
295 if( ldap_set_option( NULL, LDAP_OPT_DEBUG_LEVEL, &debug ) != LDAP_OPT_SUCCESS ) {
296 fprintf( stderr, "Could not set LDAP_OPT_DEBUG_LEVEL %d\n", debug );
301 (void) SIGNAL( SIGPIPE, SIG_IGN );
304 /* connect to server */
305 if ((ld = ldap_init( ldaphost, ldapport )) == NULL) {
310 /* don't chase referrals */
311 ldap_set_option( ld, LDAP_OPT_REFERRALS, LDAP_OPT_OFF );
315 rc = ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version );
317 if(rc != LDAP_OPT_SUCCESS ) {
318 fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION %d\n", version );
321 if ( use_tls && ldap_start_tls_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
323 ldap_perror( ld, "ldap_start_tls" );
324 return( EXIT_FAILURE );
328 if ( authmethod == LDAP_AUTH_SASL ) {
329 #ifdef HAVE_CYRUS_SASL
330 int minssf = 0, maxssf = 0;
332 if ( sasl_integrity > 0 )
334 if ( sasl_integrity > 1 )
336 if ( sasl_privacy > 0 )
337 maxssf = 100000; /* Something big value */
338 if ( sasl_privacy > 1 )
341 if ( ldap_set_option( ld, LDAP_OPT_X_SASL_MINSSF,
342 (void *)&minssf ) != LDAP_OPT_SUCCESS ) {
343 fprintf( stderr, "Could not set LDAP_OPT_X_SASL_MINSSF"
345 return( EXIT_FAILURE );
347 if ( ldap_set_option( ld, LDAP_OPT_X_SASL_MAXSSF,
348 (void *)&maxssf ) != LDAP_OPT_SUCCESS ) {
349 fprintf( stderr, "Could not set LDAP_OPT_X_SASL_MAXSSF"
351 return( EXIT_FAILURE );
354 rc = ldap_negotiated_sasl_bind_s( ld, binddn, sasl_authc_id,
355 sasl_authz_id, sasl_mech,
356 passwd.bv_len ? &passwd : NULL,
359 if( rc != LDAP_SUCCESS ) {
360 ldap_perror( ld, "ldap_negotiated_sasl_bind_s" );
361 return( EXIT_FAILURE );
364 fprintf( stderr, "%s was not compiled with SASL support\n",
366 return( EXIT_FAILURE );
370 if ( ldap_bind_s( ld, binddn, passwd.bv_val, authmethod )
372 ldap_perror( ld, "ldap_bind" );
373 return( EXIT_FAILURE );
377 if( dn != NULL || oldpw != NULL || newpw != NULL ) {
378 /* build change password control */
379 BerElement *ber = ber_alloc_t( LBER_USE_DER );
382 perror( "ber_alloc_t" );
387 ber_printf( ber, "{" /*}*/ );
390 ber_printf( ber, "ts",
391 LDAP_TAG_EXOP_X_MODIFY_PASSWD_ID, dn );
395 if( oldpw != NULL ) {
396 ber_printf( ber, "ts",
397 LDAP_TAG_EXOP_X_MODIFY_PASSWD_NEW, oldpw );
401 if( newpw != NULL ) {
402 ber_printf( ber, "ts",
403 LDAP_TAG_EXOP_X_MODIFY_PASSWD_NEW, newpw );
407 ber_printf( ber, /*{*/ "N}" );
409 rc = ber_flatten( ber, &bv );
412 perror( "ber_flatten" );
420 rc = ldap_extended_operation_s( ld,
421 LDAP_EXOP_X_MODIFY_PASSWD, bv,
427 if( retdata != NULL ) {
430 BerElement *ber = ber_init( retdata );
433 perror( "ber_init" );
438 /* we should check the tag */
439 tag = ber_scanf( ber, "{a}", &s);
441 if( tag == LBER_ERROR ) {
442 perror( "ber_scanf" );
444 printf("New password: %s\n", s);
451 if ( rc != LDAP_SUCCESS ) {
452 ldap_perror( ld, "ldap_extended_operation" );
457 ldap_memfree( retoid );
458 ber_bvfree( retdata );
460 /* disconnect from server */