]> git.sur5r.net Git - openldap/blob - clients/tools/ldapmodrdn.c
c023c70c9244454b0b7aa83a5dd9d22049f9af19
[openldap] / clients / tools / ldapmodrdn.c
1 /* ldapmodrdn.c - generic program to modify an entry's RDN using LDAP */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6 #include <stdlib.h>
7
8 #include <ac/ctype.h>
9 #include <ac/string.h>
10 #include <ac/unistd.h>
11
12 #include <lber.h>
13 #include <ldap.h>
14
15 static char     *binddn = NULL;
16 static char     *passwd = NULL;
17 static char     *base = NULL;
18 static char     *ldaphost = NULL;
19 static int      ldapport = 0;
20 static int      not, verbose, contoper;
21 static LDAP     *ld;
22
23 #define safe_realloc( ptr, size )       ( ptr == NULL ? malloc( size ) : \
24                                          realloc( ptr, size ))
25
26 static int domodrdn LDAP_P((
27     LDAP        *ld,
28     char        *dn,
29     char        *rdn,
30     int         remove));       /* flag: remove old RDN */
31
32 int
33 main(int argc, char **argv)
34 {
35     char                *usage = "usage: %s [-nvkc] [-d debug-level] [-h ldaphost] [-p ldapport] [-D binddn] [-w passwd] [ -f file | < entryfile | dn newrdn ]\n";
36     char                *myname,*infile, *entrydn, *rdn, buf[ 4096 ];
37     FILE                *fp;
38     int                 rc, i, remove, havedn, authmethod;
39
40     infile = NULL;
41     not = contoper = verbose = remove = 0;
42     authmethod = LDAP_AUTH_SIMPLE;
43
44     myname = (myname = strrchr(argv[0], '/')) == NULL ? argv[0] : ++myname;
45
46     while (( i = getopt( argc, argv, "kKcnvrh:p:D:w:d:f:" )) != EOF ) {
47         switch( i ) {
48         case 'k':       /* kerberos bind */
49 #ifdef HAVE_KERBEROS
50                 authmethod = LDAP_AUTH_KRBV4;
51 #else
52                 fprintf (stderr, "%s was not compiled with Kerberos support\n", argv[0]);
53 #endif
54             break;
55         case 'K':       /* kerberos bind, part one only */
56 #ifdef HAVE_KERBEROS
57                 authmethod = LDAP_AUTH_KRBV41;
58 #else
59                 fprintf (stderr, "%s was not compiled with Kerberos support\n", argv[0]);
60 #endif
61             break;
62         case 'c':       /* continuous operation mode */
63             ++contoper;
64             break;
65         case 'h':       /* ldap host */
66             ldaphost = strdup( optarg );
67             break;
68         case 'D':       /* bind DN */
69             binddn = strdup( optarg );
70             break;
71         case 'w':       /* password */
72             passwd = strdup( optarg );
73             break;
74         case 'd':
75 #ifdef LDAP_DEBUG
76             ldap_debug = lber_debug = atoi( optarg );   /* */
77 #else /* LDAP_DEBUG */
78             fprintf( stderr, "compile with -DLDAP_DEBUG for debugging\n" );
79 #endif /* LDAP_DEBUG */
80             break;
81         case 'f':       /* read from file */
82             infile = strdup( optarg );
83             break;
84         case 'p':
85             ldapport = atoi( optarg );
86             break;
87         case 'n':       /* print adds, don't actually do them */
88             ++not;
89             break;
90         case 'v':       /* verbose mode */
91             verbose++;
92             break;
93         case 'r':       /* remove old RDN */
94             remove++;
95             break;
96         default:
97             fprintf( stderr, usage, argv[0] );
98             exit( 1 );
99         }
100     }
101
102     havedn = 0;
103     if (argc - optind == 2) {
104         if (( rdn = strdup( argv[argc - 1] )) == NULL ) {
105             perror( "strdup" );
106             exit( 1 );
107         }
108         if (( entrydn = strdup( argv[argc - 2] )) == NULL ) {
109             perror( "strdup" );
110             exit( 1 );
111         }
112         ++havedn;
113     } else if ( argc - optind != 0 ) {
114         fprintf( stderr, "%s: invalid number of arguments, only two allowed\n", myname);
115         fprintf( stderr, usage, argv[0] );
116         exit( 1 );
117     }
118
119     if ( infile != NULL ) {
120         if (( fp = fopen( infile, "r" )) == NULL ) {
121             perror( infile );
122             exit( 1 );
123         }
124     } else {
125         fp = stdin;
126     }
127
128     if (( ld = ldap_open( ldaphost, ldapport )) == NULL ) {
129         perror( "ldap_open" );
130         exit( 1 );
131     }
132
133         /* this seems prudent */
134         ldap_set_option( ld, LDAP_OPT_DEREF, LDAP_DEREF_NEVER);
135
136     if ( ldap_bind_s( ld, binddn, passwd, authmethod ) != LDAP_SUCCESS ) {
137         ldap_perror( ld, "ldap_bind" );
138         exit( 1 );
139     }
140
141     rc = 0;
142     if (havedn)
143         rc = domodrdn(ld, entrydn, rdn, remove);
144     else while ((rc == 0 || contoper) && fgets(buf, sizeof(buf), fp) != NULL) {
145         if ( *buf != '\0' ) {   /* blank lines optional, skip */
146             buf[ strlen( buf ) - 1 ] = '\0';    /* remove nl */
147
148             if ( havedn ) {     /* have DN, get RDN */
149                 if (( rdn = strdup( buf )) == NULL ) {
150                     perror( "strdup" );
151                     exit( 1 );
152                 }
153                 rc = domodrdn(ld, entrydn, rdn, remove);
154                 havedn = 0;
155             } else if ( !havedn ) {     /* don't have DN yet */
156                 if (( entrydn = strdup( buf )) == NULL ) {
157                     perror( "strdup" );
158                     exit( 1 );
159                 }
160                 ++havedn;
161             }
162         }
163     }
164
165     ldap_unbind( ld );
166
167     exit( rc );
168
169         /* UNREACHABLE */
170         return(0);
171 }
172
173 static int domodrdn(
174     LDAP        *ld,
175     char        *dn,
176     char        *rdn,
177     int         remove) /* flag: remove old RDN */
178 {
179     int i;
180
181     if ( verbose ) {
182         printf( "modrdn %s:\n\t%s\n", dn, rdn );
183         if (remove)
184             printf("removing old RDN\n");
185         else
186             printf("keeping old RDN\n");
187     }
188
189     if ( !not ) {
190         i = ldap_modrdn2_s( ld, dn, rdn, remove );
191         if ( i != LDAP_SUCCESS ) {
192             ldap_perror( ld, "ldap_modrdn2_s" );
193         } else if ( verbose ) {
194             printf( "modrdn complete\n" );
195         }
196     } else {
197         i = LDAP_SUCCESS;
198     }
199
200     return( i );
201 }