]> git.sur5r.net Git - openldap/blob - clients/tools/ldapdelete.c
Y2k copyright update
[openldap] / clients / tools / ldapdelete.c
1 /* ldapdelete.c - simple program to delete an entry using LDAP */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/stdlib.h>
13 #include <ac/ctype.h>
14
15 #include <ac/signal.h>
16 #include <ac/string.h>
17 #include <ac/unistd.h>
18
19 #include <lber.h>
20 #include <ldap.h>
21
22 static char     *binddn = NULL;
23 static char     *passwd = NULL;
24 static char     *ldaphost = NULL;
25 static int      ldapport = 0;
26 static int      prune = 0;
27 #ifdef HAVE_CYRUS_SASL
28 static char     *sasl_authc_id = NULL;
29 static char     *sasl_authz_id = NULL;
30 static char     *sasl_mech = NULL;
31 static int      sasl_integrity = 0;
32 static int      sasl_privacy = 0;
33 #endif
34 static int      use_tls = 0;
35 static int      not, verbose, contoper;
36 static LDAP     *ld;
37
38 static int dodelete LDAP_P((
39     LDAP        *ld,
40     char        *dn));
41
42 static int deletechildren LDAP_P(( LDAP *ld,
43                                    char *dn ));
44
45 static void
46 usage( const char *s )
47 {
48         fprintf( stderr,
49 "Delete entries from an LDAP server\n\n"
50 "usage: %s [options] [dn]...\n"
51 "       dn: list of DNs to delete. If not given, it will be readed from stdin\n"
52 "           or from the file specified with \"-f file\".\n"
53 "options:\n"
54 "       -c\t\tcontinuous operation mode (do not stop on errors)\n"
55 "       -d level\tset LDAP debugging level to `level'\n"
56 "       -D binddn\tbind DN\n"
57 "       -E\t\trequest SASL privacy (-EE to make it critical)\n"
58 "       -f file\t\tdelete DNs listed in `file'\n"
59 "       -h host\t\tLDAP server\n"
60 "       -I\t\trequest SASL integrity checking (-II to make it\n"
61 "               \tcritical)\n"
62 "       -k\t\tuse Kerberos authentication\n"
63 "       -K\t\tlike -k, but do only step 1 of the Kerberos bind\n"
64 "       -M\t\tenable Manage DSA IT control (-MM to make it critical)\n"
65 "       -n\t\tshow what would be done but don't actually delete\n"
66 "       -p port\t\tport on LDAP server\n"
67 "       -P version\tprocotol version (2 or 3)\n"
68 "       -r\t\tdelete recursively\n"
69 "       -U user\t\tSASL authentication identity (username)\n"
70 "       -v\t\trun in verbose mode (diagnostics to standard output)\n"
71 "       -w passwd\tbind passwd (for simple authentication)\n"
72 "       -W\t\tprompt for bind passwd\n"
73 "       -X id\t\tSASL authorization identity (\"dn:<dn>\" or \"u:<user>\")\n"
74 "       -Y mech\t\tSASL mechanism\n"
75 "       -Z\t\trequest the use of TLS (-ZZ to make it critical)\n"
76 ,               s );
77
78         exit( EXIT_FAILURE );
79 }
80
81
82 int
83 main( int argc, char **argv )
84 {
85         char            buf[ 4096 ];
86         FILE            *fp;
87         int             i, rc, authmethod, want_bindpw, version, debug, manageDSAit;
88
89     not = verbose = contoper = want_bindpw = debug = manageDSAit = 0;
90     fp = NULL;
91     authmethod = LDAP_AUTH_SIMPLE;
92         version = -1;
93
94     while (( i = getopt( argc, argv, "cD:d:Ef:h:IKkMnP:p:rU:vWw:X:Y:Z" )) != EOF ) {
95         switch( i ) {
96         case 'k':       /* kerberos bind */
97 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
98                 authmethod = LDAP_AUTH_KRBV4;
99 #else
100                 fprintf( stderr, "%s was not compiled with Kerberos support\n", argv[0] );
101                 return( EXIT_FAILURE );
102 #endif
103             break;
104         case 'K':       /* kerberos bind, part one only */
105 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
106                 authmethod = LDAP_AUTH_KRBV41;
107 #else
108                 fprintf( stderr, "%s was not compiled with Kerberos support\n", argv[0] );
109                 return( EXIT_FAILURE );
110 #endif
111             break;
112         case 'c':       /* continuous operation mode */
113             ++contoper;
114             break;
115         case 'h':       /* ldap host */
116             ldaphost = strdup( optarg );
117             break;
118         case 'D':       /* bind DN */
119             binddn = strdup( optarg );
120             break;
121         case 'w':       /* password */
122             passwd = strdup( optarg );
123                 {
124                         char* p;
125
126                         for( p = optarg; *p == '\0'; p++ ) {
127                                 *p = '*';
128                         }
129                 }
130             break;
131         case 'f':       /* read DNs from a file */
132             if (( fp = fopen( optarg, "r" )) == NULL ) {
133                 perror( optarg );
134                 exit( EXIT_FAILURE );
135             }
136             break;
137         case 'd':
138             debug |= atoi( optarg );
139             break;
140         case 'p':
141             ldapport = atoi( optarg );
142             break;
143         case 'n':       /* print deletes, don't actually do them */
144             ++not;
145             break;
146         case 'r':
147                 prune = 1;
148                 break;
149         case 'v':       /* verbose mode */
150             verbose++;
151             break;
152         case 'M':
153                 /* enable Manage DSA IT */
154                 manageDSAit++;
155                 break;
156         case 'W':
157                 want_bindpw++;
158                 break;
159         case 'P':
160                 switch( atoi(optarg) )
161                 {
162                 case 2:
163                         version = LDAP_VERSION2;
164                         break;
165                 case 3:
166                         version = LDAP_VERSION3;
167                         break;
168                 default:
169                         fprintf( stderr, "protocol version should be 2 or 3\n" );
170                         usage( argv[0] );
171                         return( EXIT_FAILURE );
172                 }
173                 break;
174         case 'I':
175 #ifdef HAVE_CYRUS_SASL
176                 sasl_integrity++;
177                 authmethod = LDAP_AUTH_SASL;
178 #else
179                 fprintf( stderr, "%s was not compiled with SASL support\n",
180                         argv[0] );
181                 return( EXIT_FAILURE );
182 #endif
183                 break;
184         case 'E':
185 #ifdef HAVE_CYRUS_SASL
186                 sasl_privacy++;
187                 authmethod = LDAP_AUTH_SASL;
188 #else
189                 fprintf( stderr, "%s was not compiled with SASL support\n",
190                         argv[0] );
191                 return( EXIT_FAILURE );
192 #endif
193                 break;
194         case 'Y':
195 #ifdef HAVE_CYRUS_SASL
196                 if ( strcasecmp( optarg, "any" ) && strcmp( optarg, "*" ) ) {
197                         sasl_mech = strdup( optarg );
198                 }
199                 authmethod = LDAP_AUTH_SASL;
200 #else
201                 fprintf( stderr, "%s was not compiled with SASL support\n",
202                         argv[0] );
203                 return( EXIT_FAILURE );
204 #endif
205                 break;
206         case 'U':
207 #ifdef HAVE_CYRUS_SASL
208                 sasl_authc_id = strdup( optarg );
209                 authmethod = LDAP_AUTH_SASL;
210 #else
211                 fprintf( stderr, "%s was not compiled with SASL support\n",
212                         argv[0] );
213                 return( EXIT_FAILURE );
214 #endif
215                 break;
216         case 'X':
217 #ifdef HAVE_CYRUS_SASL
218                 sasl_authz_id = strdup( optarg );
219                 authmethod = LDAP_AUTH_SASL;
220 #else
221                 fprintf( stderr, "%s was not compiled with SASL support\n",
222                         argv[0] );
223                 return( EXIT_FAILURE );
224 #endif
225                 break;
226         case 'Z':
227 #ifdef HAVE_TLS
228                 use_tls++;
229 #else
230                 fprintf( stderr, "%s was not compiled with TLS support\n",
231                         argv[0] );
232                 return( EXIT_FAILURE );
233 #endif
234                 break;
235         default:
236                 usage( argv[0] );
237                 return( EXIT_FAILURE );
238         }
239     }
240
241         if ( ( authmethod == LDAP_AUTH_KRBV4 ) || ( authmethod ==
242                         LDAP_AUTH_KRBV41 ) ) {
243                 if( version > LDAP_VERSION2 ) {
244                         fprintf( stderr, "Kerberos requires LDAPv2\n" );
245                         return( EXIT_FAILURE );
246                 }
247                 version = LDAP_VERSION2;
248         }
249         else if ( authmethod == LDAP_AUTH_SASL ) {
250                 if( version != -1 && version != LDAP_VERSION3 ) {
251                         fprintf( stderr, "SASL requires LDAPv3\n" );
252                         return( EXIT_FAILURE );
253                 }
254                 version = LDAP_VERSION3;
255         }
256
257         if( manageDSAit ) {
258                 if( version != -1 && version != LDAP_VERSION3 ) {
259                         fprintf(stderr, "manage DSA control requires LDAPv3\n");
260                         return EXIT_FAILURE;
261                 }
262                 version = LDAP_VERSION3;
263         }
264
265         if( use_tls ) {
266                 if( version != -1 && version != LDAP_VERSION3 ) {
267                         fprintf(stderr, "Start TLS requires LDAPv3\n");
268                         return EXIT_FAILURE;
269                 }
270                 version = LDAP_VERSION3;
271         }
272
273     if ( fp == NULL ) {
274         if ( optind >= argc ) {
275             fp = stdin;
276         }
277     }
278
279         if ( debug ) {
280                 if( ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &debug ) != LBER_OPT_SUCCESS ) {
281                         fprintf( stderr, "Could not set LBER_OPT_DEBUG_LEVEL %d\n", debug );
282                 }
283                 if( ldap_set_option( NULL, LDAP_OPT_DEBUG_LEVEL, &debug ) != LDAP_OPT_SUCCESS ) {
284                         fprintf( stderr, "Could not set LDAP_OPT_DEBUG_LEVEL %d\n", debug );
285                 }
286         }
287
288 #ifdef SIGPIPE
289         (void) SIGNAL( SIGPIPE, SIG_IGN );
290 #endif
291
292     if (( ld = ldap_init( ldaphost, ldapport )) == NULL ) {
293         perror( "ldap_init" );
294         return( EXIT_FAILURE );
295     }
296
297         {
298                 /* this seems prudent */
299                 int deref = LDAP_DEREF_NEVER;
300                 ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
301         }
302
303         /* don't chase referrals */
304         ldap_set_option( ld, LDAP_OPT_REFERRALS, LDAP_OPT_OFF );
305
306         if (version != -1 &&
307                 ldap_set_option( ld, LDAP_OPT_PROTOCOL_VERSION, &version ) != LDAP_OPT_SUCCESS)
308         {
309                 fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION %d\n", version );
310         }
311
312         if ( use_tls && ldap_start_tls( ld, NULL, NULL ) != LDAP_SUCCESS ) {
313                 if ( use_tls > 1 ) {
314                         ldap_perror( ld, "ldap_start_tls" );
315                         return( EXIT_FAILURE );
316                 }
317         }
318
319         if (want_bindpw)
320                 passwd = getpass("Enter LDAP Password: ");
321
322         if ( authmethod == LDAP_AUTH_SASL ) {
323 #ifdef HAVE_CYRUS_SASL
324                 int     minssf = 0, maxssf = 0;
325
326                 if ( sasl_integrity > 0 )
327                         maxssf = 1;
328                 if ( sasl_integrity > 1 )
329                         minssf = 1;
330                 if ( sasl_privacy > 0 )
331                         maxssf = 100000; /* Something big value */
332                 if ( sasl_privacy > 1 )
333                         minssf = 56;
334                 
335                 if ( ldap_set_option( ld, LDAP_OPT_X_SASL_MINSSF,
336                                 (void *)&minssf ) != LDAP_OPT_SUCCESS ) {
337                         fprintf( stderr, "Could not set LDAP_OPT_X_SASL_MINSSF"
338                                 "%d\n", minssf);
339                         return( EXIT_FAILURE );
340                 }
341                 if ( ldap_set_option( ld, LDAP_OPT_X_SASL_MAXSSF,
342                                 (void *)&maxssf ) != LDAP_OPT_SUCCESS ) {
343                         fprintf( stderr, "Could not set LDAP_OPT_X_SASL_MAXSSF"
344                                 "%d\n", maxssf);
345                         return( EXIT_FAILURE );
346                 }
347                 
348                 if ( ldap_negotiated_sasl_bind_s( ld, binddn, sasl_authc_id,
349                                 sasl_authz_id, sasl_mech, NULL, NULL, NULL )
350                                         != LDAP_SUCCESS ) {
351                         ldap_perror( ld, "ldap_sasl_bind" );
352                         return( EXIT_FAILURE );
353                 }
354 #else
355                 fprintf( stderr, "%s was not compiled with SASL support\n",
356                         argv[0] );
357                 return( EXIT_FAILURE );
358 #endif
359         }
360         else {
361                 if ( ldap_bind_s( ld, binddn, passwd, authmethod )
362                                 != LDAP_SUCCESS ) {
363                         ldap_perror( ld, "ldap_bind" );
364                         return( EXIT_FAILURE );
365                 }
366         }
367
368         if ( manageDSAit ) {
369                 int err;
370                 LDAPControl c;
371                 LDAPControl *ctrls[2];
372                 ctrls[0] = &c;
373                 ctrls[1] = NULL;
374
375                 c.ldctl_oid = LDAP_CONTROL_MANAGEDSAIT;
376                 c.ldctl_value.bv_val = NULL;
377                 c.ldctl_value.bv_len = 0;
378                 c.ldctl_iscritical = manageDSAit > 1;
379
380                 err = ldap_set_option( ld, LDAP_OPT_SERVER_CONTROLS, &ctrls );
381
382                 if( err != LDAP_OPT_SUCCESS ) {
383                         fprintf( stderr, "Could not set Manage DSA IT Control\n" );
384                         if( c.ldctl_iscritical ) {
385                                 exit( EXIT_FAILURE );
386                         }
387                 }
388         }
389
390         rc = 0;
391     if ( fp == NULL ) {
392         for ( ; optind < argc; ++optind ) {
393             rc = dodelete( ld, argv[ optind ] );
394         }
395     } else {
396         while ((rc == 0 || contoper) && fgets(buf, sizeof(buf), fp) != NULL) {
397             buf[ strlen( buf ) - 1 ] = '\0';    /* remove trailing newline */
398             if ( *buf != '\0' ) {
399                 rc = dodelete( ld, buf );
400             }
401         }
402     }
403
404     ldap_unbind( ld );
405
406         return( rc );
407 }
408
409
410 static int dodelete(
411     LDAP        *ld,
412     char        *dn)
413 {
414     int rc;
415
416     if ( verbose ) {
417         printf( "%sdeleting entry \"%s\"\n",
418                 (not ? "!" : ""), dn );
419     }
420     if ( not ) {
421         rc = LDAP_SUCCESS;
422     } else {
423                 /* If prune is on, remove a whole subtree.  Delete the children of the
424                  * DN recursively, then the DN requested.
425                  */
426                 if ( prune ) deletechildren( ld, dn );
427                 if (( rc = ldap_delete_s( ld, dn )) != LDAP_SUCCESS ) {
428                         ldap_perror( ld, "ldap_delete" );
429         } else if ( verbose ) {
430             printf( "\tremoved\n" );
431         }
432     }
433
434     return( rc );
435 }
436
437 /*
438  * Delete all the children of an entry recursively until leaf nodes are reached.
439  *
440  */
441 static int deletechildren( LDAP *ld,
442                            char *dn )
443 {
444     LDAPMessage *res, *e;
445     int entries;
446     int rc;
447         int timeout = 30 * 10000;
448
449     ldap_set_option( ld, LDAP_OPT_TIMEOUT, &timeout );
450     if ( verbose ) printf ( "deleting children of: %s\n", dn );
451     /*
452      * Do a one level search at dn for children.  For each, delete its children.
453      */
454     if ( ldap_search_s( ld, dn, LDAP_SCOPE_ONELEVEL, NULL, NULL, 0, &res ) == -1 )
455     {
456         ldap_perror( ld, "ldap_search" );
457                 ldap_get_option( ld, LDAP_OPT_ERROR_NUMBER, &rc );
458         return( rc );
459     }
460
461     entries = ldap_count_entries( ld, res );
462     if ( entries > 0 )
463     {
464         int i;
465
466         for (e = ldap_first_entry( ld, res ), i = 0; e != NULL;
467              e = ldap_next_entry( ld, e ), i++ )
468         {
469             if ( (rc = deletechildren( ld, ldap_get_dn( ld, e) )) == -1 )
470             {
471                 ldap_perror( ld, "ldap_prune" );
472                 return rc;
473             }
474             if ( verbose )
475             {
476                 printf( "\tremoving %s\n", ldap_get_dn( ld, e ) );
477             }
478             if ( ( rc = ldap_delete_s( ld, ldap_get_dn( ld, e ) ) ) == -1 )
479             {
480                 ldap_perror( ld, "ldap_delete" );
481                 return rc;
482             }
483             else if ( verbose )
484             {
485                 printf( "\t%s removed\n", ldap_get_dn( ld, e ) );
486             }
487         }
488     }
489     ldap_msgfree( res );
490     return rc;
491 }