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>
|
|
|
|
|
|
|
|
static int not, verbose, contoper;
|
|
|
|
|
|
|
|
#define safe_realloc( ptr, size ) ( ptr == NULL ? malloc( size ) : \
|
|
|
|
realloc( ptr, size ))
|
|
|
|
|
1998-12-12 14:05:44 +08:00
|
|
|
static void
|
|
|
|
usage(char *s)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Usage: %s [options] [dn]...", s);
|
|
|
|
fprintf(stderr, " -c\t\tcontinuous operation mode\n");
|
|
|
|
fprintf(stderr, " -D bindnd\tbind dn\n");
|
|
|
|
fprintf(stderr, " -d level\tdebugging level\n");
|
|
|
|
fprintf(stderr, " -f file\t\t\n");
|
|
|
|
fprintf(stderr, " -h host\tldap sever\n");
|
|
|
|
#ifdef HAVE_KERBEROS
|
|
|
|
fprintf(stderr, " -K\t\tuse Kerberos step 1\n");
|
|
|
|
fprintf(stderr, " -k\t\tuse Kerberos instead of Simple Password authentication\n");
|
|
|
|
#endif
|
|
|
|
fprintf(stderr, " -n\t\t make no modifications\n");
|
|
|
|
fprintf(stderr, " -p port\tldap port\n");
|
|
|
|
fprintf(stderr, " -v\t\tverbose\n");
|
|
|
|
fprintf(stderr, " -W\t\tprompt for bind password\n");
|
|
|
|
fprintf(stderr, " -w passwd\tbind password (for simple authentication)\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
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-12 14:05:44 +08:00
|
|
|
FILE *fp = NULL;
|
|
|
|
LDAP *ld = NULL;
|
|
|
|
char buf[4096];
|
|
|
|
char *binddn = NULL;
|
|
|
|
char *passwd = NULL;
|
|
|
|
char *ldaphost = NULL;
|
|
|
|
int authmethod = LDAP_AUTH_SIMPLE;
|
|
|
|
int deref = LDAP_DEREF_NEVER;
|
|
|
|
int i, rc, want_passwd;
|
|
|
|
int ldapport = LDAP_PORT;
|
|
|
|
|
|
|
|
rc = not = verbose = contoper = want_passwd = 0;
|
|
|
|
|
|
|
|
while ((i = getopt( argc, argv, "cD:d:f:h:Kknp:vWw:")) != EOF )
|
|
|
|
{
|
|
|
|
switch(i)
|
|
|
|
{
|
1998-08-09 08:43:13 +08:00
|
|
|
case 'c': /* continuous operation mode */
|
1998-12-12 14:05:44 +08:00
|
|
|
contoper++;
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
case 'D': /* bind DN */
|
|
|
|
binddn = strdup(optarg);
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
case 'd':
|
|
|
|
#ifdef LDAP_DEBUG
|
|
|
|
ldap_debug = lber_debug = atoi(optarg);
|
|
|
|
#else
|
|
|
|
fprintf( stderr, "compile with -DLDAP_DEBUG for debugging\n" );
|
|
|
|
#endif
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
case 'f': /* read DNs from a file */
|
|
|
|
if ((fp = fopen(optarg, "r")) == NULL)
|
|
|
|
{
|
|
|
|
perror(optarg);
|
|
|
|
return(1);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
break;
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
case 'h': /* ldap host */
|
|
|
|
ldaphost = strdup(optarg);
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
case 'K': /* kerberos bind, part one only */
|
|
|
|
#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-12 14:05:44 +08:00
|
|
|
|
|
|
|
case 'k': /* kerberos bind */
|
|
|
|
#ifdef HAVE_KERBEROS
|
|
|
|
authmethod = LDAP_AUTH_KRBV4;
|
|
|
|
#else
|
|
|
|
fprintf(stderr, "%s was not compiled with Kerberos support\n", argv[0]);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'n': /* print deletes, don't actually do them */
|
|
|
|
not++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
ldapport = atoi( optarg );
|
1998-08-09 08:43:13 +08:00
|
|
|
break;
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
case 'v': /* verbose mode */
|
1998-08-09 08:43:13 +08:00
|
|
|
verbose++;
|
|
|
|
break;
|
|
|
|
|
1998-12-12 14:05:44 +08:00
|
|
|
case 'W':
|
|
|
|
want_passwd++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'w': /* password */
|
|
|
|
passwd = strdup(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
usage(argv[0]);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-12-12 14:05:44 +08:00
|
|
|
if (want_passwd && !passwd)
|
|
|
|
passwd = strdup(getpass("Enter LDAP Password: "));
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-12-12 14:05:44 +08:00
|
|
|
if (fp == NULL && optind >= argc)
|
|
|
|
fp = stdin;
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1998-12-12 14:05:44 +08:00
|
|
|
if ((ld = ldap_open(ldaphost, ldapport)) == NULL) {
|
|
|
|
perror("ldap_open");
|
|
|
|
return(1);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
/* this seems prudent */
|
|
|
|
ldap_set_option(ld, LDAP_OPT_DEREF, &deref);
|
|
|
|
|
|
|
|
if (ldap_bind_s(ld, binddn, passwd, authmethod) != LDAP_SUCCESS) {
|
|
|
|
ldap_perror(ld, "ldap_bind");
|
|
|
|
return(1);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-12-12 14:05:44 +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-12 14:05:44 +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-12 14:05:44 +08:00
|
|
|
ldap_unbind(ld);
|
1998-11-06 09:18:49 +08:00
|
|
|
|
1998-12-12 14:05:44 +08:00
|
|
|
return(rc);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|
|
|
|
|
1998-12-12 14:05:44 +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-12 14:05:44 +08:00
|
|
|
if (verbose)
|
1998-08-09 08:43:13 +08:00
|
|
|
printf( "%sdeleting entry %s\n", not ? "!" : "", dn );
|
1998-12-12 14:05:44 +08:00
|
|
|
|
|
|
|
if (not)
|
1998-08-09 08:43:13 +08:00
|
|
|
rc = LDAP_SUCCESS;
|
1998-12-12 14:05:44 +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-12 14:05:44 +08:00
|
|
|
return(rc);
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|