]> git.sur5r.net Git - openldap/blob - clients/tools/ldapdelete.c
eebbf405089bfc8f08c1abcb7792cba10185e554
[openldap] / clients / tools / ldapdelete.c
1 /* ldapdelete.c - simple program to delete an entry using LDAP */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2003 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 (c) 1992-1996 Regents of the University of Michigan.
20  * All rights reserved.
21  *
22  * Redistribution and use in source and binary forms are permitted
23  * provided that this notice is preserved and that due credit is given
24  * to the University of Michigan at Ann Arbor.  The name of the
25  * University may not be used to endorse or promote products derived
26  * from this software without specific prior written permission.  This
27  * software is provided ``as is'' without express or implied warranty.
28  */
29 /* This work was originally developed by the University of Michigan
30  * (as part of U-MICH LDAP).  Additional significant contributors
31  * include:
32  *   Kurt D. Zeilenga
33  */
34
35 #include "portable.h"
36
37 #include <stdio.h>
38
39 #include <ac/stdlib.h>
40 #include <ac/ctype.h>
41 #include <ac/string.h>
42 #include <ac/unistd.h>
43
44 #include <ldap.h>
45 #include "lutil.h"
46 #include "lutil_ldap.h"
47 #include "ldap_defaults.h"
48
49 #include "common.h"
50
51
52 static int      prune = 0;
53
54
55 static int dodelete LDAP_P((
56     LDAP *ld,
57     const char *dn));
58
59 static int deletechildren LDAP_P((
60         LDAP *ld,
61         const char *dn ));
62
63 void
64 usage( void )
65 {
66         fprintf( stderr, _("Delete entries from an LDAP server\n\n"));
67         fprintf( stderr, _("usage: %s [options] [dn]...\n"), prog);
68         fprintf( stderr, _("    dn: list of DNs to delete. If not given, it will be readed from stdin\n"));
69         fprintf( stderr, _("        or from the file specified with \"-f file\".\n"));
70         fprintf( stderr, _("Delete Options:\n"));
71         fprintf( stderr, _("  -r         delete recursively\n"));
72         tool_common_usage();
73         exit( EXIT_FAILURE );
74 }
75
76
77 const char options[] = "r"
78         "cCd:D:e:f:h:H:IkKMnO:p:P:QR:U:vVw:WxX:y:Y:Z";
79
80 int
81 handle_private_option( int i )
82 {
83         switch ( i ) {
84 #if 0
85                 int crit;
86                 char *control, *cvalue;
87         case 'E': /* delete controls */
88                 if( protocol == LDAP_VERSION2 ) {
89                         fprintf( stderr, _("%s: -E incompatible with LDAPv%d\n"),
90                                 prog, protocol );
91                         exit( EXIT_FAILURE );
92                 }
93
94                 /* should be extended to support comma separated list of
95                  *      [!]key[=value] parameters, e.g.  -E !foo,bar=567
96                  */
97
98                 crit = 0;
99                 cvalue = NULL;
100                 if( optarg[0] == '!' ) {
101                         crit = 1;
102                         optarg++;
103                 }
104
105                 control = strdup( optarg );
106                 if ( (cvalue = strchr( control, '=' )) != NULL ) {
107                         *cvalue++ = '\0';
108                 }
109                 fprintf( stderr, _("Invalid delete control name: %s\n"), control );
110                 usage();
111 #endif
112
113         case 'r':
114                 prune = 1;
115                 break;
116
117         default:
118                 return 0;
119         }
120         return 1;
121 }
122
123
124 static void
125 private_conn_setup( LDAP *ld )
126 {
127         /* this seems prudent for searches below */
128         int deref = LDAP_DEREF_NEVER;
129         ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
130 }
131
132
133 int
134 main( int argc, char **argv )
135 {
136         char            buf[ 4096 ];
137         FILE            *fp;
138         LDAP            *ld;
139         int             rc, retval;
140
141     fp = NULL;
142
143         tool_init();
144     prog = lutil_progname( "ldapdelete", argc, argv );
145
146         tool_args( argc, argv );
147
148         if ( infile != NULL ) {
149                 if (( fp = fopen( infile, "r" )) == NULL ) {
150                         perror( optarg );
151                         exit( EXIT_FAILURE );
152             }
153         } else {
154         if ( optind >= argc ) {
155             fp = stdin;
156         }
157     }
158
159         ld = tool_conn_setup( 0, &private_conn_setup );
160
161         if ( pw_file || want_bindpw ) {
162                 if ( pw_file ) {
163                         rc = lutil_get_filed_password( pw_file, &passwd );
164                         if( rc ) return EXIT_FAILURE;
165                 } else {
166                         passwd.bv_val = getpassphrase( _("Enter LDAP Password: ") );
167                         passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
168                 }
169         }
170
171         tool_bind( ld );
172
173         if ( assertion || authzid || manageDSAit || noop ) {
174                 tool_server_controls( ld, NULL, 0 );
175         }
176
177         retval = rc = 0;
178
179     if ( fp == NULL ) {
180                 for ( ; optind < argc; ++optind ) {
181                         rc = dodelete( ld, argv[ optind ] );
182
183                         /* Stop on error and no -c option */
184                         if( rc != 0 ) {
185                                 retval = rc;
186                                 if( contoper == 0 ) break;
187                         }
188                 }
189         } else {
190                 while ((rc == 0 || contoper) && fgets(buf, sizeof(buf), fp) != NULL) {
191                         buf[ strlen( buf ) - 1 ] = '\0'; /* remove trailing newline */
192
193                         if ( *buf != '\0' ) {
194                                 rc = dodelete( ld, buf );
195                                 if ( rc != 0 )
196                                         retval = rc;
197                         }
198                 }
199         }
200
201     ldap_unbind( ld );
202
203     return( retval );
204 }
205
206
207 static int dodelete(
208     LDAP        *ld,
209     const char  *dn)
210 {
211         int id;
212         int     rc, code;
213         char *matcheddn = NULL, *text = NULL, **refs = NULL;
214         LDAPMessage *res;
215
216         if ( verbose ) {
217                 printf( _("%sdeleting entry \"%s\"\n"),
218                         (not ? "!" : ""), dn );
219         }
220
221         if ( not ) {
222                 return LDAP_SUCCESS;
223         }
224
225         /* If prune is on, remove a whole subtree.  Delete the children of the
226          * DN recursively, then the DN requested.
227          */
228         if ( prune ) deletechildren( ld, dn );
229
230         rc = ldap_delete_ext( ld, dn, NULL, NULL, &id );
231         if ( rc != LDAP_SUCCESS ) {
232                 fprintf( stderr, "%s: ldap_delete_ext: %s (%d)\n",
233                         prog, ldap_err2string( rc ), rc );
234                 return rc;
235         }
236
237         rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, NULL, &res );
238         if ( rc < 0 ) {
239                 ldap_perror( ld, "ldapdelete: ldap_result" );
240                 return rc;
241         }
242
243         rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, NULL, 1 );
244
245         if( rc != LDAP_SUCCESS ) {
246                 fprintf( stderr, "%s: ldap_parse_result: %s (%d)\n",
247                         prog, ldap_err2string( rc ), rc );
248                 return rc;
249         }
250
251         if( verbose || code != LDAP_SUCCESS ||
252                 (matcheddn && *matcheddn) || (text && *text) || (refs && *refs) )
253         {
254                 printf( _("Delete Result: %s (%d)\n"), ldap_err2string( code ), code );
255
256                 if( text && *text ) {
257                         printf( _("Additional info: %s\n"), text );
258                 }
259
260                 if( matcheddn && *matcheddn ) {
261                         printf( _("Matched DN: %s\n"), matcheddn );
262                 }
263
264                 if( refs ) {
265                         int i;
266                         for( i=0; refs[i]; i++ ) {
267                                 printf(_("Referral: %s\n"), refs[i] );
268                         }
269                 }
270         }
271
272         ber_memfree( text );
273         ber_memfree( matcheddn );
274         ber_memvfree( (void **) refs );
275
276         return code;
277 }
278
279 /*
280  * Delete all the children of an entry recursively until leaf nodes are reached.
281  *
282  */
283 static int deletechildren(
284         LDAP *ld,
285         const char *dn )
286 {
287         LDAPMessage *res, *e;
288         int entries;
289         int rc;
290         static char *attrs[] = { "1.1", NULL };
291
292         if ( verbose ) printf ( _("deleting children of: %s\n"), dn );
293         /*
294          * Do a one level search at dn for children.  For each, delete its children.
295          */
296
297         rc = ldap_search_ext_s( ld, dn, LDAP_SCOPE_ONELEVEL, NULL, attrs, 1,
298                 NULL, NULL, NULL, -1, &res );
299         if ( rc != LDAP_SUCCESS ) {
300                 ldap_perror( ld, "ldap_search" );
301                 return( rc );
302         }
303
304         entries = ldap_count_entries( ld, res );
305
306         if ( entries > 0 ) {
307                 int i;
308
309                 for (e = ldap_first_entry( ld, res ), i = 0; e != NULL;
310                         e = ldap_next_entry( ld, e ), i++ )
311                 {
312                         char *dn = ldap_get_dn( ld, e );
313
314                         if( dn == NULL ) {
315                                 ldap_perror( ld, "ldap_prune" );
316                                 ldap_get_option( ld, LDAP_OPT_ERROR_NUMBER, &rc );
317                                 ber_memfree( dn );
318                                 return rc;
319                         }
320
321                         rc = deletechildren( ld, dn );
322                         if ( rc == -1 ) {
323                                 ldap_perror( ld, "ldap_prune" );
324                                 ber_memfree( dn );
325                                 return rc;
326                         }
327
328                         if ( verbose ) {
329                                 printf( _("\tremoving %s\n"), dn );
330                         }
331
332                         rc = ldap_delete_s( ld, dn );
333                         if ( rc == -1 ) {
334                                 ldap_perror( ld, "ldap_delete" );
335                                 ber_memfree( dn );
336                                 return rc;
337
338                         }
339                         
340                         if ( verbose ) {
341                                 printf( _("\t%s removed\n"), dn );
342                         }
343
344                         ber_memfree( dn );
345                 }
346         }
347
348         ldap_msgfree( res );
349         return rc;
350 }