1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-05 07:55:45 +08:00
|
|
|
/*
|
2000-05-13 10:25:54 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-05 07:55:45 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-12-06 11:44:28 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1999-06-03 08:37:44 +08:00
|
|
|
|
|
|
|
#include <ac/stdlib.h>
|
1998-12-06 11:44:28 +08:00
|
|
|
|
1999-05-19 09:12:33 +08:00
|
|
|
#include <ac/ctype.h>
|
1999-01-21 06:01:14 +08:00
|
|
|
#include <ac/signal.h>
|
1999-05-19 09:12:33 +08:00
|
|
|
#include <ac/socket.h>
|
1998-12-06 11:44:28 +08:00
|
|
|
#include <ac/string.h>
|
1999-05-19 09:12:33 +08:00
|
|
|
#include <ac/time.h>
|
1998-12-06 11:44:28 +08:00
|
|
|
#include <ac/unistd.h>
|
|
|
|
|
|
|
|
#include <ldap.h>
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
#include "lutil_ldap.h"
|
1999-06-17 11:54:25 +08:00
|
|
|
#include "ldap_defaults.h"
|
1998-12-06 11:44:28 +08:00
|
|
|
|
1998-12-15 02:36:51 +08:00
|
|
|
static int verbose = 0;
|
1998-12-06 11:44:28 +08:00
|
|
|
|
1999-09-02 16:05:17 +08:00
|
|
|
static void
|
|
|
|
usage(const char *s)
|
1998-12-06 11:44:28 +08:00
|
|
|
{
|
1999-12-08 12:37:59 +08:00
|
|
|
fprintf(stderr,
|
2000-04-20 17:23:51 +08:00
|
|
|
"Change the password of an LDAP entry\n\n"
|
|
|
|
"usage: %s [options] dn\n"
|
|
|
|
" dn: the DN of the entry whose password must be changed\n"
|
|
|
|
"options:\n"
|
|
|
|
" -a secret\told password\n"
|
|
|
|
" -A\t\tprompt for old password\n"
|
|
|
|
" -d level\tdebugging level\n"
|
2000-06-26 02:07:15 +08:00
|
|
|
" -C\t\tchase referrals\n"
|
2000-04-20 17:23:51 +08:00
|
|
|
" -D binddn\tbind DN\n"
|
|
|
|
" -E\t\trequest SASL privacy (-EE to make it critical)\n"
|
|
|
|
" -h host\t\tLDAP server (default: localhost)\n"
|
|
|
|
" -I\t\trequest SASL integrity checking (-II to make it\n"
|
|
|
|
" \tcritical)\n"
|
|
|
|
" -n\t\tmake no modifications\n"
|
2000-07-14 06:54:38 +08:00
|
|
|
" -O secprops\tSASL security properties\n"
|
2000-04-20 17:23:51 +08:00
|
|
|
" -p port\t\tport on LDAP server\n"
|
|
|
|
" -S\t\tprompt for new password\n"
|
|
|
|
" -s secret\tnew password\n"
|
|
|
|
" -U user\t\tSASL authentication identity (username)\n"
|
|
|
|
" -v\t\tverbose mode\n"
|
|
|
|
" -w passwd\tbind password (for simple authentication)\n"
|
|
|
|
" -W\t\tprompt for bind password\n"
|
|
|
|
" -X id\t\tSASL authorization identity (\"dn:<dn>\" or \"u:<user>\")\n"
|
|
|
|
" -Y mech\t\tSASL mechanism\n"
|
2000-06-20 00:19:59 +08:00
|
|
|
" -Z\t\tissue Start TLS request (-ZZ to require successful response)\n"
|
1999-12-08 12:37:59 +08:00
|
|
|
, s );
|
|
|
|
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1998-12-06 11:44:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1999-12-08 12:37:59 +08:00
|
|
|
main( int argc, char *argv[] )
|
1998-12-06 11:44:28 +08:00
|
|
|
{
|
1999-12-08 12:37:59 +08:00
|
|
|
int rc;
|
1999-12-10 12:52:32 +08:00
|
|
|
char *ldaphost = NULL;
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
char *dn = NULL;
|
1999-12-08 12:37:59 +08:00
|
|
|
char *binddn = NULL;
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
struct berval passwd = { 0, NULL };
|
1999-12-08 12:37:59 +08:00
|
|
|
char *newpw = NULL;
|
1999-12-10 12:52:32 +08:00
|
|
|
char *oldpw = NULL;
|
|
|
|
|
|
|
|
int want_bindpw = 0;
|
|
|
|
int want_newpw = 0;
|
|
|
|
int want_oldpw = 0;
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
int noupdates = 0;
|
1999-12-08 14:44:22 +08:00
|
|
|
int i;
|
1998-12-15 02:36:51 +08:00
|
|
|
int ldapport = 0;
|
1998-12-22 09:34:01 +08:00
|
|
|
int debug = 0;
|
1998-12-29 13:33:34 +08:00
|
|
|
int version = -1;
|
2000-04-20 17:23:51 +08:00
|
|
|
int authmethod = LDAP_AUTH_SIMPLE;
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
char *sasl_authc_id = NULL;
|
|
|
|
char *sasl_authz_id = NULL;
|
|
|
|
char *sasl_mech = NULL;
|
2000-07-14 06:54:38 +08:00
|
|
|
char *sasl_secprops = NULL;
|
2000-04-20 17:23:51 +08:00
|
|
|
#endif
|
|
|
|
int use_tls = 0;
|
2000-06-26 02:07:15 +08:00
|
|
|
int referrals = 0;
|
1998-12-15 02:36:51 +08:00
|
|
|
LDAP *ld;
|
1999-12-08 12:37:59 +08:00
|
|
|
struct berval *bv = NULL;
|
1998-12-15 02:36:51 +08:00
|
|
|
|
2000-07-04 03:03:22 +08:00
|
|
|
int id, code;
|
|
|
|
LDAPMessage *res;
|
|
|
|
char *matcheddn = NULL, *text = NULL, **refs = NULL;
|
|
|
|
char *retoid = NULL;
|
|
|
|
struct berval *retdata = NULL;
|
1998-12-15 02:36:51 +08:00
|
|
|
|
|
|
|
if (argc == 1)
|
|
|
|
usage (argv[0]);
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
while( (i = getopt( argc, argv,
|
2000-07-14 06:54:38 +08:00
|
|
|
"Aa:CD:d:h:nO:p:Ss:U:vWw:X:Y:Z" )) != EOF )
|
1998-12-06 11:44:28 +08:00
|
|
|
{
|
1999-12-08 12:37:59 +08:00
|
|
|
switch (i) {
|
1999-12-10 12:52:32 +08:00
|
|
|
case 'A': /* prompt for oldr password */
|
|
|
|
want_oldpw++;
|
|
|
|
break;
|
|
|
|
case 'a': /* old password (secret) */
|
|
|
|
oldpw = strdup (optarg);
|
|
|
|
|
|
|
|
{
|
|
|
|
char* p;
|
|
|
|
|
|
|
|
for( p = optarg; *p == '\0'; p++ ) {
|
|
|
|
*p = '*';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2000-06-26 02:07:15 +08:00
|
|
|
case 'C':
|
|
|
|
referrals++;
|
|
|
|
break;
|
1998-12-15 02:36:51 +08:00
|
|
|
case 'D': /* bind distinguished name */
|
1999-05-30 02:53:40 +08:00
|
|
|
binddn = strdup (optarg);
|
1998-12-15 02:36:51 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd': /* debugging option */
|
1998-12-22 09:34:01 +08:00
|
|
|
debug |= atoi (optarg);
|
1998-12-06 11:44:28 +08:00
|
|
|
break;
|
|
|
|
|
1998-12-15 02:36:51 +08:00
|
|
|
case 'h': /* ldap host */
|
1999-05-30 02:53:40 +08:00
|
|
|
ldaphost = strdup (optarg);
|
1998-12-15 02:36:51 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'n': /* don't update entry(s) */
|
1998-12-06 11:44:28 +08:00
|
|
|
noupdates++;
|
|
|
|
break;
|
|
|
|
|
1998-12-15 02:36:51 +08:00
|
|
|
case 'p': /* ldap port */
|
1999-12-08 12:37:59 +08:00
|
|
|
ldapport = strtol( optarg, NULL, 10 );
|
1998-12-06 11:44:28 +08:00
|
|
|
break;
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
case 'S': /* prompt for user password */
|
|
|
|
want_newpw++;
|
|
|
|
break;
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
case 's': /* new password (secret) */
|
|
|
|
newpw = strdup (optarg);
|
1999-12-10 12:52:32 +08:00
|
|
|
{
|
|
|
|
char* p;
|
|
|
|
|
|
|
|
for( p = optarg; *p == '\0'; p++ ) {
|
|
|
|
*p = '*';
|
|
|
|
}
|
|
|
|
}
|
1998-12-06 11:44:28 +08:00
|
|
|
break;
|
|
|
|
|
1998-12-15 02:36:51 +08:00
|
|
|
case 'v': /* verbose */
|
1998-12-06 11:44:28 +08:00
|
|
|
verbose++;
|
|
|
|
break;
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
case 'W': /* prompt for bind password */
|
1998-12-15 02:36:51 +08:00
|
|
|
want_bindpw++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w': /* bind password */
|
2000-05-16 10:16:54 +08:00
|
|
|
passwd.bv_val = strdup (optarg);
|
1999-06-30 02:59:11 +08:00
|
|
|
{
|
|
|
|
char* p;
|
|
|
|
|
1999-07-01 12:39:42 +08:00
|
|
|
for( p = optarg; *p == '\0'; p++ ) {
|
|
|
|
*p = '*';
|
1999-06-30 02:59:11 +08:00
|
|
|
}
|
|
|
|
}
|
2000-05-16 10:16:54 +08:00
|
|
|
passwd.bv_len = strlen( passwd.bv_val );
|
1998-12-15 02:36:51 +08:00
|
|
|
break;
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
case 'O':
|
2000-04-20 17:23:51 +08:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
2000-07-14 06:54:38 +08:00
|
|
|
sasl_secprops = strdup( optarg );
|
2000-04-20 17:23:51 +08:00
|
|
|
authmethod = LDAP_AUTH_SASL;
|
|
|
|
#else
|
2000-07-14 06:54:38 +08:00
|
|
|
fprintf( stderr, "%s was not compiled with SASL support\n",
|
|
|
|
argv[0] );
|
2000-04-20 17:23:51 +08:00
|
|
|
return( EXIT_FAILURE );
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'Y':
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
if ( strcasecmp( optarg, "any" ) &&
|
|
|
|
strcmp( optarg, "*" ) ) {
|
|
|
|
sasl_mech = strdup( optarg );
|
|
|
|
}
|
|
|
|
authmethod = LDAP_AUTH_SASL;
|
|
|
|
#else
|
|
|
|
fprintf( stderr, "%s was not compiled with SASL "
|
|
|
|
"support\n", argv[0] );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'U':
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
sasl_authc_id = strdup( optarg );
|
|
|
|
authmethod = LDAP_AUTH_SASL;
|
|
|
|
#else
|
|
|
|
fprintf( stderr, "%s was not compiled with SASL "
|
|
|
|
"support\n", argv[0] );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'X':
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
sasl_authz_id = strdup( optarg );
|
|
|
|
authmethod = LDAP_AUTH_SASL;
|
|
|
|
#else
|
|
|
|
fprintf( stderr, "%s was not compiled with SASL "
|
|
|
|
"support\n", argv[0] );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 'Z':
|
|
|
|
#ifdef HAVE_TLS
|
|
|
|
use_tls++;
|
|
|
|
#else
|
|
|
|
fprintf( stderr, "%s was not compiled with TLS "
|
|
|
|
"support\n", argv[0] );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
#endif
|
|
|
|
break;
|
1998-12-06 11:44:28 +08:00
|
|
|
|
|
|
|
default:
|
1998-12-15 02:36:51 +08:00
|
|
|
usage (argv[0]);
|
1998-12-06 11:44:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
if( argc - optind != 1 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
|
|
|
|
|
|
|
dn = strdup( argv[optind] );
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( want_oldpw && oldpw == NULL ) {
|
|
|
|
/* prompt for old password */
|
|
|
|
char *ckoldpw;
|
2000-05-20 02:41:26 +08:00
|
|
|
newpw = strdup(getpassphrase("Old password: "));
|
|
|
|
ckoldpw = getpassphrase("Re-enter old password: ");
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2000-06-24 09:40:39 +08:00
|
|
|
if( newpw== NULL || ckoldpw == NULL ||
|
|
|
|
strncmp( oldpw, ckoldpw, strlen(oldpw) ))
|
|
|
|
{
|
1999-12-10 12:52:32 +08:00
|
|
|
fprintf( stderr, "passwords do not match\n" );
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( want_newpw && newpw == NULL ) {
|
1999-12-08 12:37:59 +08:00
|
|
|
/* prompt for new password */
|
1998-12-07 04:07:29 +08:00
|
|
|
char *cknewpw;
|
2000-05-20 02:41:26 +08:00
|
|
|
newpw = strdup(getpassphrase("New password: "));
|
|
|
|
cknewpw = getpassphrase("Re-enter new password: ");
|
1998-12-07 04:07:29 +08:00
|
|
|
|
2000-06-24 09:40:39 +08:00
|
|
|
if( newpw== NULL || cknewpw == NULL ||
|
|
|
|
strncmp( newpw, cknewpw, strlen(newpw) ))
|
|
|
|
{
|
1999-12-08 12:37:59 +08:00
|
|
|
fprintf( stderr, "passwords do not match\n" );
|
|
|
|
return EXIT_FAILURE;
|
1998-12-07 04:07:29 +08:00
|
|
|
}
|
1998-12-06 11:44:28 +08:00
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( binddn == NULL && dn != NULL ) {
|
1999-12-10 05:30:32 +08:00
|
|
|
binddn = dn;
|
|
|
|
dn = NULL;
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2000-05-16 10:16:54 +08:00
|
|
|
if( passwd.bv_val == NULL ) {
|
|
|
|
passwd.bv_val = oldpw;
|
|
|
|
passwd.bv_len = oldpw == NULL ? 0 : strlen( oldpw );
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2000-05-16 10:16:54 +08:00
|
|
|
if (want_bindpw && passwd.bv_val == NULL ) {
|
1999-12-10 12:52:32 +08:00
|
|
|
/* handle bind password */
|
1999-12-08 12:37:59 +08:00
|
|
|
fprintf( stderr, "Bind DN: %s\n", binddn );
|
2000-05-20 02:41:26 +08:00
|
|
|
passwd.bv_val = strdup( getpassphrase("Enter bind password: "));
|
2000-06-24 09:40:39 +08:00
|
|
|
passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
1998-12-22 09:34:01 +08:00
|
|
|
if ( debug ) {
|
1999-06-22 13:47:14 +08:00
|
|
|
if( ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &debug ) != LBER_OPT_SUCCESS ) {
|
1999-05-30 02:53:40 +08:00
|
|
|
fprintf( stderr, "Could not set LBER_OPT_DEBUG_LEVEL %d\n", debug );
|
|
|
|
}
|
1999-06-22 13:47:14 +08:00
|
|
|
if( ldap_set_option( NULL, LDAP_OPT_DEBUG_LEVEL, &debug ) != LDAP_OPT_SUCCESS ) {
|
1999-05-30 02:53:40 +08:00
|
|
|
fprintf( stderr, "Could not set LDAP_OPT_DEBUG_LEVEL %d\n", debug );
|
|
|
|
}
|
1998-12-22 09:34:01 +08:00
|
|
|
}
|
|
|
|
|
1999-01-21 06:01:14 +08:00
|
|
|
#ifdef SIGPIPE
|
|
|
|
(void) SIGNAL( SIGPIPE, SIG_IGN );
|
|
|
|
#endif
|
|
|
|
|
1998-12-06 11:44:28 +08:00
|
|
|
/* connect to server */
|
1999-12-08 12:37:59 +08:00
|
|
|
if ((ld = ldap_init( ldaphost, ldapport )) == NULL) {
|
|
|
|
perror("ldap_init");
|
|
|
|
return EXIT_FAILURE;
|
1998-12-06 11:44:28 +08:00
|
|
|
}
|
|
|
|
|
2000-06-26 02:07:15 +08:00
|
|
|
/* referrals */
|
|
|
|
if (ldap_set_option( ld, LDAP_OPT_REFERRALS,
|
|
|
|
referrals ? LDAP_OPT_ON : LDAP_OPT_OFF ) != LDAP_OPT_SUCCESS )
|
|
|
|
{
|
|
|
|
fprintf( stderr, "Could not set LDAP_OPT_REFERRALS %s\n",
|
|
|
|
referrals ? "on" : "off" );
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
1998-12-22 09:34:01 +08:00
|
|
|
|
2000-04-20 22:15:39 +08:00
|
|
|
/* LDAPv3 only */
|
1999-12-08 12:37:59 +08:00
|
|
|
version = 3;
|
|
|
|
rc = ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version );
|
|
|
|
|
|
|
|
if(rc != LDAP_OPT_SUCCESS ) {
|
1999-05-30 02:53:40 +08:00
|
|
|
fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION %d\n", version );
|
2000-06-26 02:17:47 +08:00
|
|
|
return EXIT_FAILURE;
|
1998-12-29 13:33:34 +08:00
|
|
|
}
|
1998-12-22 09:34:01 +08:00
|
|
|
|
2000-06-14 04:45:30 +08:00
|
|
|
if ( use_tls && ldap_start_tls_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
|
2000-04-20 17:23:51 +08:00
|
|
|
if ( use_tls > 1 ) {
|
|
|
|
ldap_perror( ld, "ldap_start_tls" );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
}
|
2000-06-26 02:07:15 +08:00
|
|
|
fprintf( stderr, "WARNING: could not start TLS\n" );
|
2000-04-20 17:23:51 +08:00
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-04-20 17:23:51 +08:00
|
|
|
if ( authmethod == LDAP_AUTH_SASL ) {
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
2000-07-14 06:54:38 +08:00
|
|
|
ldap_set_sasl_interact_proc( ld, lutil_sasl_interact );
|
|
|
|
|
|
|
|
if( sasl_secprops != NULL ) {
|
|
|
|
rc = ldap_set_option( ld, LDAP_OPT_X_SASL_SECPROPS,
|
|
|
|
(void *) sasl_secprops );
|
|
|
|
|
|
|
|
if( rc != LDAP_OPT_SUCCESS ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"Could not set LDAP_OPT_X_SASL_SECPROPS: %s\n",
|
|
|
|
sasl_secprops );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
}
|
2000-04-20 17:23:51 +08:00
|
|
|
}
|
|
|
|
|
2000-07-14 06:54:38 +08:00
|
|
|
rc = ldap_sasl_interactive_bind_s( ld, binddn,
|
|
|
|
sasl_mech, NULL, NULL );
|
2000-05-16 10:16:54 +08:00
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
2000-07-14 06:54:38 +08:00
|
|
|
ldap_perror( ld, "ldap_sasl_interactive_bind_s" );
|
2000-04-20 17:23:51 +08:00
|
|
|
return( EXIT_FAILURE );
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
fprintf( stderr, "%s was not compiled with SASL support\n",
|
|
|
|
argv[0] );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
2000-05-16 10:16:54 +08:00
|
|
|
if ( ldap_bind_s( ld, binddn, passwd.bv_val, authmethod )
|
2000-04-20 17:23:51 +08:00
|
|
|
!= LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_bind" );
|
|
|
|
return( EXIT_FAILURE );
|
|
|
|
}
|
1998-12-15 02:36:51 +08:00
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( dn != NULL || oldpw != NULL || newpw != NULL ) {
|
|
|
|
/* build change password control */
|
|
|
|
BerElement *ber = ber_alloc_t( LBER_USE_DER );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( ber == NULL ) {
|
|
|
|
perror( "ber_alloc_t" );
|
|
|
|
ldap_unbind( ld );
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
1998-12-06 11:44:28 +08:00
|
|
|
|
1999-12-12 03:33:45 +08:00
|
|
|
ber_printf( ber, "{" /*}*/ );
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( dn != NULL ) {
|
|
|
|
ber_printf( ber, "ts",
|
|
|
|
LDAP_TAG_EXOP_X_MODIFY_PASSWD_ID, dn );
|
|
|
|
free(dn);
|
|
|
|
}
|
1999-12-10 05:30:32 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( oldpw != NULL ) {
|
|
|
|
ber_printf( ber, "ts",
|
|
|
|
LDAP_TAG_EXOP_X_MODIFY_PASSWD_NEW, oldpw );
|
|
|
|
free(oldpw);
|
|
|
|
}
|
1999-12-10 05:30:32 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( newpw != NULL ) {
|
|
|
|
ber_printf( ber, "ts",
|
|
|
|
LDAP_TAG_EXOP_X_MODIFY_PASSWD_NEW, newpw );
|
|
|
|
free(newpw);
|
|
|
|
}
|
1999-12-10 05:30:32 +08:00
|
|
|
|
2000-06-24 09:40:39 +08:00
|
|
|
ber_printf( ber, /*{*/ "N}" );
|
1999-12-12 03:33:45 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
rc = ber_flatten( ber, &bv );
|
1998-12-06 11:44:28 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( rc < 0 ) {
|
|
|
|
perror( "ber_flatten" );
|
|
|
|
ldap_unbind( ld );
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
ber_free( ber, 1 );
|
1998-12-06 11:44:28 +08:00
|
|
|
}
|
|
|
|
|
2000-07-04 03:03:22 +08:00
|
|
|
if ( noupdates ) {
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
goto skip;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = ldap_extended_operation( ld,
|
1999-12-08 12:37:59 +08:00
|
|
|
LDAP_EXOP_X_MODIFY_PASSWD, bv,
|
2000-07-04 03:03:22 +08:00
|
|
|
NULL, NULL, &id );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
|
|
|
ber_bvfree( bv );
|
|
|
|
|
2000-07-04 03:03:22 +08:00
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_extended_operation" );
|
|
|
|
ldap_unbind( ld );
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2000-07-05 05:49:00 +08:00
|
|
|
rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, NULL, &res );
|
2000-07-05 05:59:41 +08:00
|
|
|
if ( rc < 0 ) {
|
|
|
|
ldap_perror( ld, "ldappasswd: ldap_result" );
|
2000-07-04 03:03:22 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, NULL, 0 );
|
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_parse_result" );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = ldap_parse_extended_result( ld, res, &retoid, &retdata, 1 );
|
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_parse_result" );
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( retdata != NULL ) {
|
|
|
|
ber_tag_t tag;
|
|
|
|
char *s;
|
|
|
|
BerElement *ber = ber_init( retdata );
|
|
|
|
|
|
|
|
if( ber == NULL ) {
|
|
|
|
perror( "ber_init" );
|
|
|
|
ldap_unbind( ld );
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we should check the tag */
|
1999-12-12 03:33:45 +08:00
|
|
|
tag = ber_scanf( ber, "{a}", &s);
|
1999-12-10 12:52:32 +08:00
|
|
|
|
|
|
|
if( tag == LBER_ERROR ) {
|
|
|
|
perror( "ber_scanf" );
|
|
|
|
} else {
|
|
|
|
printf("New password: %s\n", s);
|
|
|
|
free( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
ber_free( ber, 1 );
|
|
|
|
}
|
|
|
|
|
2000-07-04 03:03:22 +08:00
|
|
|
if( verbose || code != LDAP_SUCCESS || matcheddn || text || refs ) {
|
|
|
|
printf( "Result: %s (%d)\n", ldap_err2string( code ), code );
|
|
|
|
|
|
|
|
if( text && *text ) {
|
|
|
|
printf( "Additional info: %s\n", text );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( matcheddn && *matcheddn ) {
|
|
|
|
printf( "Matched DN: %s\n", matcheddn );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( refs ) {
|
|
|
|
int i;
|
|
|
|
for( i=0; refs[i]; i++ ) {
|
|
|
|
printf("Referral: %s\n", refs[i] );
|
|
|
|
}
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2000-07-04 03:03:22 +08:00
|
|
|
ber_memfree( text );
|
|
|
|
ber_memfree( matcheddn );
|
2000-07-05 05:59:41 +08:00
|
|
|
ber_memvfree( (void **) refs );
|
2000-07-04 03:03:22 +08:00
|
|
|
ber_memfree( retoid );
|
1999-12-08 12:37:59 +08:00
|
|
|
ber_bvfree( retdata );
|
|
|
|
|
2000-07-04 03:03:22 +08:00
|
|
|
skip:
|
1998-12-06 11:44:28 +08:00
|
|
|
/* disconnect from server */
|
1998-12-15 02:36:51 +08:00
|
|
|
ldap_unbind (ld);
|
|
|
|
|
2000-04-20 22:15:39 +08:00
|
|
|
return EXIT_SUCCESS;
|
1998-12-06 11:44:28 +08:00
|
|
|
}
|