1 /* ldapdelete.c - simple program to delete an entry using LDAP */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2006 The OpenLDAP Foundation.
6 * Portions Copyright 1998-2003 Kurt D. Zeilenga.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in the file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
17 /* Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
18 * All rights reserved.
20 * Redistribution and use in source and binary forms are permitted
21 * provided that this notice is preserved and that due credit is given
22 * to the University of Michigan at Ann Arbor. The name of the
23 * University may not be used to endorse or promote products derived
24 * from this software without specific prior written permission. This
25 * software is provided ``as is'' without express or implied warranty.
28 * This work was originally developed by the University of Michigan
29 * (as part of U-MICH LDAP). Additional significant contributors
38 #include <ac/stdlib.h>
40 #include <ac/string.h>
41 #include <ac/unistd.h>
46 #include "lutil_ldap.h"
47 #include "ldap_defaults.h"
55 static int dodelete LDAP_P((
59 static int deletechildren LDAP_P((
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"));
77 const char options[] = "r"
78 "cd:D:e:f:h:H:IkKMnO:p:P:QR:U:vVw:WxX:y:Y:Z";
81 handle_private_option( int i )
86 char *control, *cvalue;
87 case 'E': /* delete extensions */
88 if( protocol == LDAP_VERSION2 ) {
89 fprintf( stderr, _("%s: -E incompatible with LDAPv%d\n"),
94 /* should be extended to support comma separated list of
95 * [!]key[=value] parameters, e.g. -E !foo,bar=567
100 if( optarg[0] == '!' ) {
105 control = strdup( optarg );
106 if ( (cvalue = strchr( control, '=' )) != NULL ) {
109 fprintf( stderr, _("Invalid delete extension name: %s\n"), control );
125 private_conn_setup( LDAP *ld )
127 /* this seems prudent for searches below */
128 int deref = LDAP_DEREF_NEVER;
129 ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
134 main( int argc, char **argv )
144 prog = lutil_progname( "ldapdelete", argc, argv );
146 tool_args( argc, argv );
148 if ( infile != NULL ) {
149 if (( fp = fopen( infile, "r" )) == NULL ) {
151 exit( EXIT_FAILURE );
154 if ( optind >= argc ) {
159 ld = tool_conn_setup( 0, &private_conn_setup );
161 if ( pw_file || want_bindpw ) {
163 rc = lutil_get_filed_password( pw_file, &passwd );
164 if( rc ) return EXIT_FAILURE;
166 passwd.bv_val = getpassphrase( _("Enter LDAP Password: ") );
167 passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
173 if ( assertion || authzid || manageDIT || manageDSAit || noop ) {
174 tool_server_controls( ld, NULL, 0 );
180 for ( ; optind < argc; ++optind ) {
181 rc = dodelete( ld, argv[ optind ] );
183 /* Stop on error and no -c option */
186 if( contoper == 0 ) break;
190 while ((rc == 0 || contoper) && fgets(buf, sizeof(buf), fp) != NULL) {
191 buf[ strlen( buf ) - 1 ] = '\0'; /* remove trailing newline */
193 if ( *buf != '\0' ) {
194 rc = dodelete( ld, buf );
213 char *matcheddn = NULL, *text = NULL, **refs = NULL;
217 printf( _("%sdeleting entry \"%s\"\n"),
218 (not ? "!" : ""), dn );
225 /* If prune is on, remove a whole subtree. Delete the children of the
226 * DN recursively, then the DN requested.
228 if ( prune ) deletechildren( ld, dn );
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 );
240 if ( tool_check_abandon( ld, id ) ) {
241 return LDAP_CANCELLED;
247 rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, &tv, &res );
249 ldap_perror( ld, "ldapdelete: ldap_result" );
258 rc = ldap_parse_result( ld, res, &code, &matcheddn, &text, &refs, NULL, 1 );
260 if( rc != LDAP_SUCCESS ) {
261 fprintf( stderr, "%s: ldap_parse_result: %s (%d)\n",
262 prog, ldap_err2string( rc ), rc );
266 if( verbose || code != LDAP_SUCCESS ||
267 (matcheddn && *matcheddn) || (text && *text) || (refs && *refs) )
269 printf( _("Delete Result: %s (%d)\n"),
270 ldap_err2string( code ), code );
272 if( text && *text ) {
273 printf( _("Additional info: %s\n"), text );
276 if( matcheddn && *matcheddn ) {
277 printf( _("Matched DN: %s\n"), matcheddn );
282 for( i=0; refs[i]; i++ ) {
283 printf(_("Referral: %s\n"), refs[i] );
289 ber_memfree( matcheddn );
290 ber_memvfree( (void **) refs );
296 * Delete all the children of an entry recursively until leaf nodes are reached.
298 static int deletechildren(
302 LDAPMessage *res, *e;
305 static char *attrs[] = { LDAP_NO_ATTRS, NULL };
306 LDAPControl c, *ctrls[2];
307 BerElement *ber = NULL;
310 if ( verbose ) printf ( _("deleting children of: %s\n"), dn );
313 * Do a one level search at dn for children. For each, delete its children.
316 rc = ldap_search_ext_s( ld, dn, LDAP_SCOPE_ONELEVEL, NULL, attrs, 1,
317 NULL, NULL, NULL, -1, &res );
318 if ( rc != LDAP_SUCCESS ) {
319 ldap_perror( ld, "ldap_search" );
323 entries = ldap_count_entries( ld, res );
328 for (e = ldap_first_entry( ld, res ), i = 0; e != NULL;
329 e = ldap_next_entry( ld, e ), i++ )
331 char *dn = ldap_get_dn( ld, e );
334 ldap_perror( ld, "ldap_prune" );
335 ldap_get_option( ld, LDAP_OPT_ERROR_NUMBER, &rc );
340 rc = deletechildren( ld, dn );
342 ldap_perror( ld, "ldap_prune" );
348 printf( _("\tremoving %s\n"), dn );
351 rc = ldap_delete_s( ld, dn );
353 ldap_perror( ld, "ldap_delete" );
360 printf( _("\t%s removed\n"), dn );
370 * Do a one level search at dn for subentry children.
373 if ((ber = ber_alloc_t(LBER_USE_DER)) == NULL) {
376 rc = ber_printf( ber, "b", 1 );
379 fprintf( stderr, _("Subentries control encoding error!\n"));
382 if ( ber_flatten2( ber, &c.ldctl_value, 0 ) == -1 ) {
385 c.ldctl_oid = LDAP_CONTROL_SUBENTRIES;
386 c.ldctl_iscritical = 1;
390 rc = ldap_search_ext_s( ld, dn, LDAP_SCOPE_ONELEVEL, NULL, attrs, 1,
391 ctrls, NULL, NULL, -1, &res_se );
392 if ( rc != LDAP_SUCCESS ) {
393 ldap_perror( ld, "ldap_search" );
398 entries = ldap_count_entries( ld, res_se );
403 for (e = ldap_first_entry( ld, res_se ), i = 0; e != NULL;
404 e = ldap_next_entry( ld, e ), i++ )
406 char *dn = ldap_get_dn( ld, e );
409 ldap_perror( ld, "ldap_prune" );
410 ldap_get_option( ld, LDAP_OPT_ERROR_NUMBER, &rc );
416 printf( _("\tremoving %s\n"), dn );
419 rc = ldap_delete_s( ld, dn );
421 ldap_perror( ld, "ldap_delete" );
428 printf( _("\t%s removed\n"), dn );
435 ldap_msgfree( res_se );