1998-08-09 08:43:13 +08:00
|
|
|
/* ldapdelete.c - simple program to delete an entry using LDAP */
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/string.h>
|
1998-10-26 09:18:41 +08:00
|
|
|
#include <ac/unistd.h>
|
1998-08-20 10:18:28 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#include <lber.h>
|
|
|
|
#include <ldap.h>
|
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
static char *binddn = NULL;
|
|
|
|
static char *passwd = NULL;
|
|
|
|
static char *base = NULL;
|
|
|
|
static char *ldaphost = NULL;
|
|
|
|
static int ldapport = 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
static int not, verbose, contoper;
|
1998-12-14 18:10:41 +08:00
|
|
|
static LDAP *ld;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
#define safe_realloc( ptr, size ) ( ptr == NULL ? malloc( size ) : \
|
|
|
|
realloc( ptr, size ))
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
static int dodelete LDAP_P((
|
|
|
|
LDAP *ld,
|
|
|
|
char *dn));
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-11-04 21:15:18 +08:00
|
|
|
int
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
main( int argc, char **argv )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
1998-12-14 18:10:41 +08:00
|
|
|
char *usage = "usage: %s [-n] [-v] [-k] [-d debug-level] [-f file] [-h ldaphost] [-p ldapport] [-D binddn] [-w passwd] [dn]...\n";
|
|
|
|
char buf[ 4096 ];
|
|
|
|
FILE *fp;
|
1998-12-15 04:39:02 +08:00
|
|
|
int i, rc, authmethod;
|
1998-12-14 18:10:41 +08:00
|
|
|
|
1998-12-15 04:39:02 +08:00
|
|
|
not = verbose = contoper = 0;
|
1998-12-14 18:10:41 +08:00
|
|
|
fp = NULL;
|
1998-12-15 04:39:02 +08:00
|
|
|
authmethod = LDAP_AUTH_SIMPLE;
|
1998-12-14 18:10:41 +08:00
|
|
|
|
|
|
|
while (( i = getopt( argc, argv, "nvkKch:p:D:w:d:f:" )) != EOF ) {
|
|
|
|
switch( i ) {
|
|
|
|
case 'k': /* kerberos bind */
|
1998-12-15 04:39:02 +08:00
|
|
|
#ifdef HAVE_KERBEROS
|
|
|
|
authmethod = LDAP_AUTH_KRBV4;
|
|
|
|
#else
|
|
|
|
fprintf (stderr, "%s was not compiled with Kerberos support\n", argv[0]);
|
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'K': /* kerberos bind, part one only */
|
1998-12-15 04:39:02 +08:00
|
|
|
#ifdef HAVE_KERBEROS
|
|
|
|
authmethod = LDAP_AUTH_KRBV41;
|
|
|
|
#else
|
|
|
|
fprintf (stderr, "%s was not compiled with Kerberos support\n", argv[0]);
|
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'c': /* continuous operation mode */
|
|
|
|
++contoper;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'h': /* ldap host */
|
|
|
|
ldaphost = strdup( optarg );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'D': /* bind DN */
|
|
|
|
binddn = strdup( optarg );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'w': /* password */
|
|
|
|
passwd = strdup( optarg );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'f': /* read DNs from a file */
|
|
|
|
if (( fp = fopen( optarg, "r" )) == NULL ) {
|
|
|
|
perror( optarg );
|
|
|
|
exit( 1 );
|
|
|
|
}
|
1998-12-12 14:05:44 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'd':
|
|
|
|
#ifdef LDAP_DEBUG
|
|
|
|
ldap_debug = lber_debug = atoi( optarg ); /* */
|
|
|
|
#else /* LDAP_DEBUG */
|
|
|
|
fprintf( stderr, "compile with -DLDAP_DEBUG for debugging\n" );
|
|
|
|
#endif /* LDAP_DEBUG */
|
|
|
|
break;
|
|
|
|
case 'p':
|
1998-12-12 14:05:44 +08:00
|
|
|
ldapport = atoi( optarg );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'n': /* print deletes, don't actually do them */
|
|
|
|
++not;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
case 'v': /* verbose mode */
|
|
|
|
verbose++;
|
1998-12-12 14:05:44 +08:00
|
|
|
break;
|
1998-12-14 18:10:41 +08:00
|
|
|
default:
|
|
|
|
fprintf( stderr, usage, argv[0] );
|
|
|
|
exit( 1 );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
if ( fp == NULL ) {
|
|
|
|
if ( optind >= argc ) {
|
|
|
|
fp = stdin;
|
|
|
|
}
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
if (( ld = ldap_open( ldaphost, ldapport )) == NULL ) {
|
|
|
|
perror( "ldap_open" );
|
|
|
|
exit( 1 );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-12-12 14:05:44 +08:00
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
{
|
|
|
|
/* this seems prudent */
|
|
|
|
int deref = LDAP_DEREF_NEVER;
|
|
|
|
ldap_set_option( ld, LDAP_OPT_DEREF, &deref );
|
|
|
|
}
|
1998-12-12 14:05:44 +08:00
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
if ( ldap_bind_s( ld, binddn, passwd, authmethod ) != LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_bind" );
|
|
|
|
exit( 1 );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
if ( fp == NULL ) {
|
|
|
|
for ( ; optind < argc; ++optind ) {
|
|
|
|
rc = dodelete( ld, argv[ optind ] );
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
} else {
|
|
|
|
rc = 0;
|
|
|
|
while ((rc == 0 || contoper) && fgets(buf, sizeof(buf), fp) != NULL) {
|
1998-12-14 18:10:41 +08:00
|
|
|
buf[ strlen( buf ) - 1 ] = '\0'; /* remove trailing newline */
|
|
|
|
if ( *buf != '\0' ) {
|
|
|
|
rc = dodelete( ld, buf );
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
ldap_unbind( ld );
|
|
|
|
|
|
|
|
exit( rc );
|
1998-11-06 09:18:49 +08:00
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
/* UNREACHABLE */
|
|
|
|
return(0);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
|
|
|
|
static int dodelete(
|
1998-10-25 09:41:42 +08:00
|
|
|
LDAP *ld,
|
|
|
|
char *dn)
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
if ( verbose ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
printf( "%sdeleting entry %s\n", not ? "!" : "", dn );
|
1998-12-14 18:10:41 +08:00
|
|
|
}
|
|
|
|
if ( not ) {
|
1998-08-09 08:43:13 +08:00
|
|
|
rc = LDAP_SUCCESS;
|
1998-12-14 18:10:41 +08:00
|
|
|
} else {
|
|
|
|
if (( rc = ldap_delete_s( ld, dn )) != LDAP_SUCCESS ) {
|
|
|
|
ldap_perror( ld, "ldap_delete" );
|
|
|
|
} else if ( verbose ) {
|
|
|
|
printf( "entry removed\n" );
|
|
|
|
}
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-12-14 18:10:41 +08:00
|
|
|
return( rc );
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|