]> git.sur5r.net Git - openldap/blob - clients/tools/ldapmodrdn.c
print diagnostic messages when sasl_interactive_bind or start_tls_s failed
[openldap] / clients / tools / ldapmodrdn.c
1 /* ldapmodrdn.c - generic program to modify an entry's RDN using LDAP */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2009 The OpenLDAP Foundation.
6  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
7  * Portions Copyright 1998-2001 Net Boolean Incorporated.
8  * Portions Copyright 2001-2003 IBM Corporation.
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted only as authorized by the OpenLDAP
13  * Public License.
14  *
15  * A copy of this license is available in the file LICENSE in the
16  * top-level directory of the distribution or, alternatively, at
17  * <http://www.OpenLDAP.org/license.html>.
18  */
19 /* Portions Copyright 1999, Juan C. Gomez, All rights reserved.
20  * This software is not subject to any license of Silicon Graphics 
21  * Inc. or Purdue University.
22  *
23  * Redistribution and use in source and binary forms are permitted
24  * without restriction or fee of any kind as long as this notice
25  * is preserved.
26  */
27 /* Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
28  * All rights reserved.
29  *
30  * Redistribution and use in source and binary forms are permitted
31  * provided that this notice is preserved and that due credit is given
32  * to the University of Michigan at Ann Arbor.  The name of the
33  * University may not be used to endorse or promote products derived
34  * from this software without specific prior written permission.  This
35  * software is provided ``as is'' without express or implied warranty.
36  */
37 /* ACKNOWLEDGEMENTS:
38  * This work was originally developed by the University of Michigan
39  * (as part of U-MICH LDAP).  Additional significant contributors
40  * include:
41  *      Kurt D. Zeilenga
42  *      Juan C Gomez
43  */
44
45
46 #include "portable.h"
47
48 #include <stdio.h>
49
50 #include <ac/stdlib.h>
51
52 #include <ac/ctype.h>
53 #include <ac/string.h>
54 #include <ac/unistd.h>
55 #include <ac/socket.h>
56 #include <ac/time.h>
57
58 #include <ldap.h>
59 #include "lutil.h"
60 #include "lutil_ldap.h"
61 #include "ldap_defaults.h"
62
63 #include "common.h"
64
65
66 static char     *newSuperior = NULL;
67 static int   remove_old_RDN = 0;
68
69
70 static int domodrdn(
71         LDAP    *ld,
72         char    *dn,
73         char    *rdn,
74         char    *newSuperior,
75         int             remove );       /* flag: remove old RDN */
76
77 void
78 usage( void )
79 {
80         fprintf( stderr, _("Rename LDAP entries\n\n"));
81         fprintf( stderr, _("usage: %s [options] [dn rdn]\n"), prog);
82         fprintf( stderr, _("    dn rdn: If given, rdn will replace the RDN of the entry specified by DN\n"));
83         fprintf( stderr, _("            If not given, the list of modifications is read from stdin or\n"));
84         fprintf( stderr, _("            from the file specified by \"-f file\" (see man page).\n"));
85         fprintf( stderr, _("Rename options:\n"));
86         fprintf( stderr, _("  -c         continuous operation mode (do not stop on errors)\n"));
87         fprintf( stderr, _("  -f file    read operations from `file'\n"));
88         fprintf( stderr, _("  -M         enable Manage DSA IT control (-MM to make critical)\n"));
89         fprintf( stderr, _("  -P version protocol version (default: 3)\n"));
90         fprintf( stderr, _("  -r                 remove old RDN\n"));
91         fprintf( stderr, _("  -s newsup  new superior entry\n"));
92         tool_common_usage();
93         exit( EXIT_FAILURE );
94 }
95
96
97 const char options[] = "rs:"
98         "cd:D:e:f:h:H:IMnNO:o:p:P:QR:U:vVw:WxX:y:Y:Z";
99
100 int
101 handle_private_option( int i )
102 {
103         switch ( i ) {
104 #if 0
105                 int crit;
106                 char *control, *cvalue;
107         case 'E': /* modrdn extensions */
108                 if( protocol == LDAP_VERSION2 ) {
109                         fprintf( stderr, _("%s: -E incompatible with LDAPv%d\n"),
110                                 prog, version );
111                         exit( EXIT_FAILURE );
112                 }
113
114                 /* should be extended to support comma separated list of
115                  *      [!]key[=value] parameters, e.g.  -E !foo,bar=567
116                  */
117
118                 crit = 0;
119                 cvalue = NULL;
120                 if( optarg[0] == '!' ) {
121                         crit = 1;
122                         optarg++;
123                 }
124
125                 control = strdup( optarg );
126                 if ( (cvalue = strchr( control, '=' )) != NULL ) {
127                         *cvalue++ = '\0';
128                 }
129                 fprintf( stderr, _("Invalid modrdn extension name: %s\n"), control );
130                 usage();
131 #endif
132
133         case 'r':       /* remove old RDN */
134                 remove_old_RDN++;
135                 break;
136
137         case 's':       /* newSuperior */
138                 if( protocol == LDAP_VERSION2 ) {
139                         fprintf( stderr, _("%s: -X incompatible with LDAPv%d\n"),
140                                 prog, protocol );
141                         exit( EXIT_FAILURE );
142                 }
143                 newSuperior = strdup( optarg );
144                 protocol = LDAP_VERSION3;
145                 break;
146
147         default:
148                 return 0;
149         }
150         return 1;
151 }
152
153
154 int
155 main(int argc, char **argv)
156 {
157         char            *entrydn = NULL, *rdn = NULL, buf[ 4096 ];
158         FILE            *fp = NULL;
159         LDAP            *ld;
160         int             rc, retval, havedn;
161
162         tool_init( TOOL_MODRDN );
163         prog = lutil_progname( "ldapmodrdn", argc, argv );
164
165         tool_args( argc, argv );
166
167         havedn = 0;
168         if (argc - optind == 2) {
169                 if (( rdn = strdup( argv[argc - 1] )) == NULL ) {
170                         perror( "strdup" );
171                         retval = EXIT_FAILURE;
172                         goto fail;
173                 }
174                 if (( entrydn = strdup( argv[argc - 2] )) == NULL ) {
175                         perror( "strdup" );
176                         retval = EXIT_FAILURE;
177                         goto fail;
178                 }
179                 ++havedn;
180         } else if ( argc - optind != 0 ) {
181                 fprintf( stderr, _("%s: invalid number of arguments (%d), only two allowed\n"), prog, argc-optind );
182                 usage();
183         }
184
185         if ( infile != NULL ) {
186                 if (( fp = fopen( infile, "r" )) == NULL ) {
187                         perror( infile );
188                         retval = EXIT_FAILURE;
189                         goto fail;
190                 }
191         } else {
192                 fp = stdin;
193         }
194
195         ld = tool_conn_setup( 0, 0 );
196
197         if ( pw_file || want_bindpw ) {
198                 if ( pw_file ) {
199                         rc = lutil_get_filed_password( pw_file, &passwd );
200                         if( rc ) {
201                                 retval = EXIT_FAILURE;
202                                 goto fail;
203                         }
204                 } else {
205                         passwd.bv_val = getpassphrase( _("Enter LDAP Password: ") );
206                         passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
207                 }
208         }
209
210         tool_bind( ld );
211
212         tool_server_controls( ld, NULL, 0 );
213
214         retval = rc = 0;
215         if (havedn)
216                 retval = domodrdn( ld, entrydn, rdn, newSuperior, remove_old_RDN );
217         else while ((rc == 0 || contoper) && fgets(buf, sizeof(buf), fp) != NULL) {
218                 if ( *buf != '\n' ) {   /* blank lines optional, skip */
219                         buf[ strlen( buf ) - 1 ] = '\0';        /* remove nl */
220
221                         if ( havedn ) { /* have DN, get RDN */
222                                 if (( rdn = strdup( buf )) == NULL ) {
223                                         perror( "strdup" );
224                                         retval = EXIT_FAILURE;
225                                         goto fail;
226                                 }
227                                 rc = domodrdn(ld, entrydn, rdn, newSuperior, remove_old_RDN );
228                                 if ( rc != 0 )
229                                         retval = rc;
230                                 havedn = 0;
231                                 free( rdn ); rdn = NULL;
232                                 free( entrydn ); entrydn = NULL;
233                         } else if ( !havedn ) { /* don't have DN yet */
234                                 if (( entrydn = strdup( buf )) == NULL ) {
235                                         retval = EXIT_FAILURE;
236                                         goto fail;
237                                 }
238                                 ++havedn;
239                         }
240                 }
241         }
242
243         tool_unbind( ld );
244         tool_destroy();
245 fail:
246         if ( fp && fp != stdin ) fclose( fp );
247         if ( entrydn ) free( entrydn );
248         if ( rdn ) free( rdn );
249         return( retval );
250 }
251
252 static int domodrdn(
253         LDAP    *ld,
254         char    *dn,
255         char    *rdn,
256         char    *newSuperior,
257         int             remove ) /* flag: remove old RDN */
258 {
259         int rc, code, id;
260         char *matcheddn=NULL, *text=NULL, **refs=NULL;
261         LDAPControl **ctrls = NULL;
262         LDAPMessage *res;
263
264         if ( verbose ) {
265                 printf( _("Renaming \"%s\"\n"), dn );
266                 printf( _("\tnew rdn=\"%s\" (%s old rdn)\n"),
267                         rdn, remove ? _("delete") : _("keep") );
268                 if( newSuperior != NULL ) {
269                         printf(_("\tnew parent=\"%s\"\n"), newSuperior);
270                 }
271         }
272
273         if( dont ) return LDAP_SUCCESS;
274
275         rc = ldap_rename( ld, dn, rdn, newSuperior, remove,
276                 NULL, NULL, &id );
277
278         if ( rc != LDAP_SUCCESS ) {
279                 fprintf( stderr, "%s: ldap_rename: %s (%d)\n",
280                         prog, ldap_err2string( rc ), rc );
281                 return rc;
282         }
283
284         for ( ; ; ) {
285                 struct timeval  tv = { 0, 0 };
286
287                 if ( tool_check_abandon( ld, id ) ) {
288                         return LDAP_CANCELLED;
289                 }
290
291                 tv.tv_sec = 0;
292                 tv.tv_usec = 100000;
293
294                 rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, &tv, &res );
295                 if ( rc < 0 ) {
296                         tool_perror( "ldap_result", rc, NULL, NULL, NULL, NULL );
297                         return rc;
298                 }
299
300                 if ( rc != 0 ) {
301                         break;
302                 }
303         }
304
305         rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, &ctrls, 1 );
306
307         if( rc != LDAP_SUCCESS ) {
308                 fprintf( stderr, "%s: ldap_parse_result: %s (%d)\n",
309                         prog, ldap_err2string( rc ), rc );
310                 return rc;
311         }
312
313         if( verbose || code != LDAP_SUCCESS ||
314                 (matcheddn && *matcheddn) || (text && *text) || (refs && *refs) )
315         {
316                 printf( _("Rename Result: %s (%d)\n"),
317                         ldap_err2string( code ), code );
318
319                 if( text && *text ) {
320                         printf( _("Additional info: %s\n"), text );
321                 }
322
323                 if( matcheddn && *matcheddn ) {
324                         printf( _("Matched DN: %s\n"), matcheddn );
325                 }
326
327                 if( refs ) {
328                         int i;
329                         for( i=0; refs[i]; i++ ) {
330                                 printf(_("Referral: %s\n"), refs[i] );
331                         }
332                 }
333         }
334
335         if (ctrls) {
336                 tool_print_ctrls( ld, ctrls );
337                 ldap_controls_free( ctrls );
338         }
339
340         ber_memfree( text );
341         ber_memfree( matcheddn );
342         ber_memvfree( (void **) refs );
343
344         return code;
345 }