1 /* ldapmodify.c - generic program to modify or add entries using LDAP */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2015 The OpenLDAP Foundation.
6 * Portions Copyright 2006 Howard Chu.
7 * Portions Copyright 1998-2003 Kurt D. Zeilenga.
8 * Portions Copyright 1998-2001 Net Boolean Incorporated.
9 * Portions Copyright 2001-2003 IBM Corporation.
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted only as authorized by the OpenLDAP
16 * A copy of this license is available in the file LICENSE in the
17 * top-level directory of the distribution or, alternatively, at
18 * <http://www.OpenLDAP.org/license.html>.
20 /* Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
21 * All rights reserved.
23 * Redistribution and use in source and binary forms are permitted
24 * provided that this notice is preserved and that due credit is given
25 * to the University of Michigan at Ann Arbor. The name of the
26 * University may not be used to endorse or promote products derived
27 * from this software without specific prior written permission. This
28 * software is provided ``as is'' without express or implied warranty.
31 * This work was originally developed by the University of Michigan
32 * (as part of U-MICH LDAP). Additional significant contributors
43 #include <ac/stdlib.h>
45 #include <ac/string.h>
46 #include <ac/unistd.h>
47 #include <ac/socket.h>
50 #ifdef HAVE_SYS_STAT_H
54 #ifdef HAVE_SYS_FILE_H
64 #include "lutil_ldap.h"
66 #include "ldap_defaults.h"
73 static char *rejfile = NULL;
74 static LDAP *ld = NULL;
78 /* strings found in LDIF entries */
79 static struct berval BV_VERSION = BER_BVC("version");
80 static struct berval BV_DN = BER_BVC("dn");
81 static struct berval BV_CONTROL = BER_BVC("control");
82 static struct berval BV_CHANGETYPE = BER_BVC("changetype");
83 static struct berval BV_ADDCT = BER_BVC("add");
84 static struct berval BV_MODIFYCT = BER_BVC("modify");
85 static struct berval BV_DELETECT = BER_BVC("delete");
86 static struct berval BV_MODRDNCT = BER_BVC("modrdn");
87 static struct berval BV_MODDNCT = BER_BVC("moddn");
88 static struct berval BV_RENAMECT = BER_BVC("rename");
89 static struct berval BV_MODOPADD = BER_BVC("add");
90 static struct berval BV_MODOPREPLACE = BER_BVC("replace");
91 static struct berval BV_MODOPDELETE = BER_BVC("delete");
92 static struct berval BV_MODOPINCREMENT = BER_BVC("increment");
93 static struct berval BV_NEWRDN = BER_BVC("newrdn");
94 static struct berval BV_DELETEOLDRDN = BER_BVC("deleteoldrdn");
95 static struct berval BV_NEWSUP = BER_BVC("newsuperior");
97 #define BV_CASEMATCH(a, b) \
98 ((a)->bv_len == (b)->bv_len && 0 == strcasecmp((a)->bv_val, (b)->bv_val))
100 static int process_ldif_rec LDAP_P(( char *rbuf, unsigned long lineno ));
101 static int parse_ldif_control LDAP_P(( struct berval *val, LDAPControl ***pctrls ));
102 static int domodify LDAP_P((
105 LDAPControl **pctrls,
107 static int dodelete LDAP_P((
109 LDAPControl **pctrls ));
110 static int dorename LDAP_P((
115 LDAPControl **pctrls ));
116 static int process_response(
124 static int txnabort = 0;
125 struct berval *txn_id = NULL;
131 fprintf( stderr, _("Add or modify entries from an LDAP server\n\n"));
132 fprintf( stderr, _("usage: %s [options]\n"), prog);
133 fprintf( stderr, _(" The list of desired operations are read from stdin"
134 " or from the file\n"));
135 fprintf( stderr, _(" specified by \"-f file\".\n"));
136 fprintf( stderr, _("Add or modify options:\n"));
137 fprintf( stderr, _(" -a add values (%s)\n"),
138 (ldapadd ? _("default") : _("default is to replace")));
139 fprintf( stderr, _(" -c continuous operation mode (do not stop on errors)\n"));
140 fprintf( stderr, _(" -E [!]ext=extparam modify extensions"
141 " (! indicate s criticality)\n"));
142 fprintf( stderr, _(" -f file read operations from `file'\n"));
143 fprintf( stderr, _(" -M enable Manage DSA IT control (-MM to make critical)\n"));
144 fprintf( stderr, _(" -P version protocol version (default: 3)\n"));
147 _(" [!]txn=<commit|abort> (transaction)\n"));
149 fprintf( stderr, _(" -S file write skipped modifications to `file'\n"));
152 exit( EXIT_FAILURE );
156 const char options[] = "aE:rS:"
157 "cd:D:e:f:h:H:IMnNO:o:p:P:QR:U:vVw:WxX:y:Y:Z";
160 handle_private_option( int i )
162 char *control, *cvalue;
166 case 'E': /* modify extensions */
167 if( protocol == LDAP_VERSION2 ) {
168 fprintf( stderr, _("%s: -E incompatible with LDAPv%d\n"),
170 exit( EXIT_FAILURE );
173 /* should be extended to support comma separated list of
174 * [!]key[=value] parameters, e.g. -E !foo,bar=567
179 if( optarg[0] == '!' ) {
184 control = ber_strdup( optarg );
185 if ( (cvalue = strchr( control, '=' )) != NULL ) {
190 if( strcasecmp( control, "txn" ) == 0 ) {
194 _("txn control previously specified\n"));
195 exit( EXIT_FAILURE );
197 if( cvalue != NULL ) {
198 if( strcasecmp( cvalue, "abort" ) == 0 ) {
200 } else if( strcasecmp( cvalue, "commit" ) != 0 ) {
201 fprintf( stderr, _("Invalid value for txn control, %s\n"),
203 exit( EXIT_FAILURE );
211 fprintf( stderr, _("Invalid modify extension name: %s\n"),
221 case 'r': /* replace (obsolete) */
224 case 'S': /* skipped modifications to file */
225 if( rejfile != NULL ) {
226 fprintf( stderr, _("%s: -S previously specified\n"), prog );
227 exit( EXIT_FAILURE );
229 rejfile = ber_strdup( optarg );
240 main( int argc, char **argv )
242 char *rbuf = NULL, *rejbuf = NULL;
244 struct LDIFFP *ldiffp = NULL, ldifdummy = {0};
245 char *matched_msg, *error_msg;
246 int rc, retval, ldifrc;
249 unsigned long lineno, nextline = 0;
252 prog = lutil_progname( "ldapmodify", argc, argv );
254 /* strncmp instead of strcmp since NT binaries carry .exe extension */
255 ldapadd = ( strncasecmp( prog, "ldapadd", sizeof("ldapadd")-1 ) == 0 );
257 tool_init( ldapadd ? TOOL_ADD : TOOL_MODIFY );
259 tool_args( argc, argv );
261 if ( argc != optind ) usage();
263 if ( rejfile != NULL ) {
264 if (( rejfp = fopen( rejfile, "w" )) == NULL ) {
266 retval = EXIT_FAILURE;
273 if ( infile != NULL ) {
274 if (( ldiffp = ldif_open( infile, "r" )) == NULL ) {
276 retval = EXIT_FAILURE;
280 ldifdummy.fp = stdin;
284 if ( debug ) ldif_debug = debug;
286 ld = tool_conn_setup( dont, 0 );
294 /* start transaction */
295 rc = ldap_txn_start_s( ld, NULL, NULL, &txn_id );
296 if( rc != LDAP_SUCCESS ) {
297 tool_perror( "ldap_txn_start_s", rc, NULL, NULL, NULL, NULL );
299 retval = EXIT_FAILURE;
315 c[i].ldctl_oid = LDAP_CONTROL_X_TXN_SPEC;
316 c[i].ldctl_value = *txn_id;
317 c[i].ldctl_iscritical = 1;
323 tool_server_controls( ld, c, i );
328 while (( rc == 0 || contoper ) && ( ldifrc = ldif_read_record( ldiffp, &nextline,
329 &rbuf, &lmax )) > 0 )
332 len = strlen( rbuf );
333 if (( rejbuf = (char *)ber_memalloc( len+1 )) == NULL ) {
335 retval = EXIT_FAILURE;
338 memcpy( rejbuf, rbuf, len+1 );
341 rc = process_ldif_rec( rbuf, lineno );
344 if ( rc ) retval = rc;
346 fprintf(rejfp, _("# Error: %s (%d)"), ldap_err2string(rc), rc);
349 ldap_get_option(ld, LDAP_OPT_MATCHED_DN, &matched_msg);
350 if ( matched_msg != NULL ) {
351 if ( *matched_msg != '\0' ) {
352 fprintf( rejfp, _(", matched DN: %s"), matched_msg );
354 ldap_memfree( matched_msg );
358 ldap_get_option(ld, LDAP_OPT_DIAGNOSTIC_MESSAGE, &error_msg);
359 if ( error_msg != NULL ) {
360 if ( *error_msg != '\0' ) {
361 fprintf( rejfp, _(", additional info: %s"), error_msg );
363 ldap_memfree( error_msg );
365 fprintf( rejfp, "\n%s\n", rejbuf );
368 if (rejfp) ber_memfree( rejbuf );
376 if( retval == 0 && txn ) {
377 rc = ldap_set_option( ld, LDAP_OPT_SERVER_CONTROLS, NULL );
378 if ( rc != LDAP_OPT_SUCCESS ) {
379 fprintf( stderr, "Could not unset controls for ldap_txn_end\n");
382 /* create transaction */
383 rc = ldap_txn_end_s( ld, !txnabort, txn_id, NULL, NULL, NULL );
384 if( rc != LDAP_SUCCESS ) {
385 tool_perror( "ldap_txn_end_s", rc, NULL, NULL, NULL, NULL );
392 if ( rejfp != NULL ) {
396 if ( ldiffp != NULL && ldiffp != &ldifdummy ) {
397 ldif_close( ldiffp );
400 tool_exit( ld, retval );
405 process_ldif_rec( char *rbuf, unsigned long linenum )
407 char *line, *dn, *newrdn, *newsup;
409 int expect_modop, expect_sep;
411 int new_entry, delete_entry, got_all;
412 LDAPMod **pmods, *lm = NULL;
414 LDAPControl **pctrls;
415 int i, j, k, lines, idn, nmods;
416 struct berval *btype, *vals, **bvl, bv;
418 unsigned char *mops = NULL;
422 rc = got_all = delete_entry = modop = expect_modop = 0;
428 dn = newrdn = newsup = NULL;
430 lines = ldif_countlines( rbuf );
431 btype = ber_memcalloc( 1, (lines+1)*2*sizeof(struct berval)+lines );
433 return LDAP_NO_MEMORY;
435 vals = btype+lines+1;
436 freeval = (char *)(vals+lines+1);
439 while ( rc == 0 && ( line = ldif_getline( &rbuf )) != NULL ) {
442 if ( *line == '\n' || *line == '\0' ) {
448 if ( line[0] == '-' && !line[1] ) {
449 BER_BVZERO( btype+i );
454 if ( ( rc = ldif_parse_line2( line, btype+i, vals+i, &freev ) ) < 0 ) {
455 fprintf( stderr, _("%s: invalid format (line %lu) entry: \"%s\"\n"),
456 prog, linenum+i, dn == NULL ? "" : dn );
457 rc = LDAP_PARAM_ERROR;
463 if ( linenum+i == 1 && BV_CASEMATCH( btype+i, &BV_VERSION )) {
465 if( vals[i].bv_len == 0 || lutil_atoi( &v, vals[i].bv_val) != 0 || v != 1 ) {
467 _("%s: invalid version %s, line %lu (ignored)\n"),
468 prog, vals[i].bv_val, linenum );
472 } else if ( BV_CASEMATCH( btype+i, &BV_DN )) {
476 /* skip all lines until we see "dn:" */
480 /* check to make sure there was a dn: line */
493 if( version && lines == 1 ) {
499 /* Check for "control" tag after dn and before changetype. */
500 if ( BV_CASEMATCH( btype+i, &BV_CONTROL )) {
501 /* Parse and add it to the list of controls */
502 rc = parse_ldif_control( vals+i, &pctrls );
505 _("%s: Error processing %s line, line %lu: %s\n"),
506 prog, BV_CONTROL.bv_val, linenum+i, ldap_err2string(rc) );
512 _("%s: Expecting more input after %s line, line %lu\n"),
513 prog, btype[i-1].bv_val, linenum+i );
515 rc = LDAP_PARAM_ERROR;
520 /* Check for changetype */
521 if ( BV_CASEMATCH( btype+i, &BV_CHANGETYPE )) {
522 #ifdef LIBERAL_CHANGETYPE_MODOP
523 /* trim trailing spaces (and log warning ...) */
525 for ( icnt = vals[i].bv_len; --icnt > 0; ) {
526 if ( !isspace( (unsigned char) vals[i].bv_val[icnt] ) ) {
531 if ( ++icnt != vals[i].bv_len ) {
532 fprintf( stderr, _("%s: illegal trailing space after"
533 " \"%s: %s\" trimmed (line %lu, entry \"%s\")\n"),
534 prog, BV_CHANGETYPE.bv_val, vals[i].bv_val, linenum+i, dn );
535 vals[i].bv_val[icnt] = '\0';
537 #endif /* LIBERAL_CHANGETYPE_MODOP */
539 if ( BV_CASEMATCH( vals+i, &BV_MODIFYCT )) {
542 } else if ( BV_CASEMATCH( vals+i, &BV_ADDCT )) {
544 modop = LDAP_MOD_ADD;
545 } else if ( BV_CASEMATCH( vals+i, &BV_MODRDNCT )
546 || BV_CASEMATCH( vals+i, &BV_MODDNCT )
547 || BV_CASEMATCH( vals+i, &BV_RENAMECT ))
552 if ( !BV_CASEMATCH( btype+i, &BV_NEWRDN )) {
553 fprintf( stderr, _("%s: expecting \"%s:\" but saw"
554 " \"%s:\" (line %lu, entry \"%s\")\n"),
555 prog, BV_NEWRDN.bv_val, btype[i].bv_val, linenum+i, dn );
556 rc = LDAP_PARAM_ERROR;
559 newrdn = vals[i].bv_val;
563 if ( !BV_CASEMATCH( btype+i, &BV_DELETEOLDRDN )) {
564 fprintf( stderr, _("%s: expecting \"%s:\" but saw"
565 " \"%s:\" (line %lu, entry \"%s\")\n"),
566 prog, BV_DELETEOLDRDN.bv_val, btype[i].bv_val, linenum+i, dn );
567 rc = LDAP_PARAM_ERROR;
570 deleteoldrdn = ( vals[i].bv_val[0] == '0' ) ? 0 : 1;
573 if ( !BV_CASEMATCH( btype+i, &BV_NEWSUP )) {
574 fprintf( stderr, _("%s: expecting \"%s:\" but saw"
575 " \"%s:\" (line %lu, entry \"%s\")\n"),
576 prog, BV_NEWSUP.bv_val, btype[i].bv_val, linenum+i, dn );
577 rc = LDAP_PARAM_ERROR;
580 newsup = vals[i].bv_val;
584 } else if ( BV_CASEMATCH( vals+i, &BV_DELETECT )) {
585 got_all = delete_entry = 1;
588 _("%s: unknown %s \"%s\" (line %lu, entry \"%s\")\n"),
589 prog, BV_CHANGETYPE.bv_val, vals[i].bv_val, linenum+i, dn );
590 rc = LDAP_PARAM_ERROR;
594 } else if ( ldapadd ) { /* missing changetype => add */
596 modop = LDAP_MOD_ADD;
598 expect_modop = 1; /* missing changetype => modify */
604 _("%s: extra lines at end (line %lu, entry \"%s\")\n"),
605 prog, linenum+i, dn );
606 rc = LDAP_PARAM_ERROR;
618 /* Make sure all attributes with multiple values are contiguous */
619 for (; i<lines; i++) {
620 for (j=i+1; j<lines; j++) {
621 if ( !btype[j].bv_val ) {
623 _("%s: missing attributeDescription (line %lu, entry \"%s\")\n"),
624 prog, linenum+j, dn );
625 rc = LDAP_PARAM_ERROR;
628 if ( BV_CASEMATCH( btype+i, btype+j )) {
630 /* out of order, move intervening attributes down */
634 for (k=j; k>i; k--) {
635 btype[k] = btype[k-1];
637 freeval[k] = freeval[k-1];
648 /* Allocate space for array of mods, array of pointers to mods,
649 * and array of pointers to values, allowing for NULL terminators
650 * for the pointer arrays...
652 lm = ber_memalloc( nmods * sizeof(LDAPMod) +
653 (nmods+1) * sizeof(LDAPMod*) +
654 (lines + nmods - idn) * sizeof(struct berval *));
655 pmods = (LDAPMod **)(lm+nmods);
656 bvl = (struct berval **)(pmods+nmods+1);
661 for (i=idn; i<lines; i++) {
662 if ( BV_CASEMATCH( btype+i, &BV_DN )) {
663 fprintf( stderr, _("%s: attributeDescription \"%s\":"
664 " (possible missing newline"
665 " after line %lu, entry \"%s\"?)\n"),
666 prog, btype[i].bv_val, linenum+i - 1, dn );
668 if ( !BV_CASEMATCH( btype+i, &bv )) {
671 lm[j].mod_op = LDAP_MOD_ADD | LDAP_MOD_BVALUES;
672 lm[j].mod_type = bv.bv_val;
673 lm[j].mod_bvalues = bvl+k;
684 mops = ber_memalloc( lines+1 );
688 for ( ; i<lines; i++ ) {
689 if ( expect_modop ) {
690 #ifdef LIBERAL_CHANGETYPE_MODOP
691 /* trim trailing spaces (and log warning ...) */
693 for ( icnt = vals[i].bv_len; --icnt > 0; ) {
694 if ( !isspace( (unsigned char) vals[i].bv_val[icnt] ) ) break;
697 if ( ++icnt != vals[i].bv_len ) {
698 fprintf( stderr, _("%s: illegal trailing space after"
699 " \"%s: %s\" trimmed (line %lu, entry \"%s\")\n"),
700 prog, type, vals[i].bv_val, linenum+i, dn );
701 vals[i].bv_val[icnt] = '\0';
703 #endif /* LIBERAL_CHANGETYPE_MODOP */
707 if ( BV_CASEMATCH( btype+i, &BV_MODOPADD )) {
708 modop = LDAP_MOD_ADD;
711 } else if ( BV_CASEMATCH( btype+i, &BV_MODOPREPLACE )) {
712 /* defer handling these since they might have no values.
713 * Use the BVALUES flag to signal that these were
714 * deferred. If values are provided later, this
715 * flag will be switched off.
717 modop = LDAP_MOD_REPLACE;
718 mops[i] = modop | LDAP_MOD_BVALUES;
720 } else if ( BV_CASEMATCH( btype+i, &BV_MODOPDELETE )) {
721 modop = LDAP_MOD_DELETE;
722 mops[i] = modop | LDAP_MOD_BVALUES;
724 } else if ( BV_CASEMATCH( btype+i, &BV_MODOPINCREMENT )) {
725 modop = LDAP_MOD_INCREMENT;
728 } else { /* no modify op: invalid LDIF */
729 fprintf( stderr, _("%s: modify operation type is missing at"
730 " line %lu, entry \"%s\"\n"),
731 prog, linenum+i, dn );
732 rc = LDAP_PARAM_ERROR;
736 } else if ( expect_sep && BER_BVISEMPTY( btype+i )) {
742 if ( !BV_CASEMATCH( btype+i, &bv )) {
743 fprintf( stderr, _("%s: wrong attributeType at"
744 " line %lu, entry \"%s\"\n"),
745 prog, linenum+i, dn );
746 rc = LDAP_PARAM_ERROR;
750 /* If prev op was deferred and matches this type,
753 if ( (mops[i-1] & LDAP_MOD_BVALUES)
754 && BV_CASEMATCH( btype+i, btype+i-1 ))
762 #if 0 /* we should faithfully encode the LDIF, not combine */
763 /* Make sure all modops with multiple values are contiguous */
764 for (i=idn; i<lines; i++) {
765 if ( mops[i] == M_SEP )
767 for (j=i+1; j<lines; j++) {
768 if ( mops[j] == M_SEP || mops[i] != mops[j] )
770 if ( BV_CASEMATCH( btype+i, btype+j )) {
772 /* out of order, move intervening attributes down */
781 for (k=j; k>i; k--) {
782 btype[k] = btype[k-1];
784 freeval[k] = freeval[k-1];
799 /* Allocate space for array of mods, array of pointers to mods,
800 * and array of pointers to values, allowing for NULL terminators
801 * for the pointer arrays...
803 lm = ber_memalloc( nmods * sizeof(LDAPMod) +
804 (nmods+1) * sizeof(LDAPMod*) +
805 (lines + nmods - idn) * sizeof(struct berval *));
806 pmods = (LDAPMod **)(lm+nmods);
807 bvl = (struct berval **)(pmods+nmods+1);
813 for (i=idn; i<lines; i++) {
814 if ( mops[i] == M_SEP )
816 if ( mops[i] != mops[i-1] || !BV_CASEMATCH( btype+i, &bv )) {
819 lm[j].mod_op = mops[i] | LDAP_MOD_BVALUES;
820 lm[j].mod_type = bv.bv_val;
821 if ( mops[i] & LDAP_MOD_BVALUES ) {
822 lm[j].mod_bvalues = NULL;
824 lm[j].mod_bvalues = bvl+k;
835 /* If default controls are set (as with -M option) and controls are
836 specified in the LDIF file, we must add the default controls to
837 the list of controls sent with the ldap operation.
841 LDAPControl **defctrls = NULL; /* Default server controls */
842 LDAPControl **newctrls = NULL;
843 ldap_get_option(ld, LDAP_OPT_SERVER_CONTROLS, &defctrls);
845 int npc=0; /* Num of LDIF controls */
846 int ndefc=0; /* Num of default controls */
847 while (pctrls[npc]) npc++; /* Count LDIF controls */
848 while (defctrls[ndefc]) ndefc++; /* Count default controls */
849 newctrls = ber_memrealloc(pctrls,
850 (npc+ndefc+1)*sizeof(LDAPControl*));
852 if (newctrls == NULL) {
857 for (i=npc; i<npc+ndefc; i++) {
858 pctrls[i] = ldap_control_dup(defctrls[i-npc]);
859 if (pctrls[i] == NULL) {
864 pctrls[npc+ndefc] = NULL;
866 ldap_controls_free(defctrls); /* Must be freed by library */
872 if ( delete_entry ) {
873 rc = dodelete( dn, pctrls );
874 } else if ( newrdn != NULL ) {
875 rc = dorename( dn, newrdn, newsup, deleteoldrdn, pctrls );
877 rc = domodify( dn, pmods, pctrls, new_entry );
880 if ( rc == LDAP_SUCCESS ) {
886 if (pctrls != NULL) {
887 ldap_controls_free( pctrls );
892 if ( mops != NULL ) {
895 for (i=lines-1; i>=0; i--)
896 if ( freeval[i] ) ber_memfree( vals[i].bv_val );
897 ber_memfree( btype );
902 /* Parse an LDIF control line of the form
903 control: oid [true/false] [: value] or
904 control: oid [true/false] [:: base64-value] or
905 control: oid [true/false] [:< url]
906 The control is added to the list of controls in *ppctrls.
911 LDAPControl ***ppctrls )
914 int criticality = 0; /* Default is false if not present */
917 LDAPControl *newctrl = NULL;
918 LDAPControl **pctrls = NULL;
919 struct berval type, bv = BER_BVNULL;
922 if (ppctrls) pctrls = *ppctrls;
923 /* OID should come first. Validate and extract it. */
925 if (*s == 0) return ( LDAP_PARAM_ERROR );
927 while (isdigit((unsigned char)*s) || *s == '.') {
928 s++; /* OID should be digits or . */
931 return ( LDAP_PARAM_ERROR ); /* OID was not present */
933 if (*s) { /* End of OID should be space or NULL */
934 if (!isspace((unsigned char)*s)) {
935 return ( LDAP_PARAM_ERROR ); /* else OID contained invalid chars */
937 *s++ = 0; /* Replace space with null to terminate */
940 oid = ber_strdup(oidStart);
941 if (oid == NULL) return ( LDAP_NO_MEMORY );
943 /* Optional Criticality field is next. */
944 while (*s && isspace((unsigned char)*s)) {
945 s++; /* Skip white space before criticality */
947 if (strncasecmp(s, "true", 4) == 0) {
951 else if (strncasecmp(s, "false", 5) == 0) {
956 /* Optional value field is next */
957 while (*s && isspace((unsigned char)*s)) {
958 s++; /* Skip white space before value */
961 if (*s != ':') { /* If value is present, must start with : */
962 rc = LDAP_PARAM_ERROR;
966 /* Back up so value is in the form
970 Then we can use ldif_parse_line2 to extract and decode the value
975 rc = ldif_parse_line2(s, &type, &bv, &freeval);
977 rc = LDAP_PARAM_ERROR;
982 /* Create a new LDAPControl structure. */
983 newctrl = (LDAPControl *)ber_memalloc(sizeof(LDAPControl));
984 if ( newctrl == NULL ) {
988 newctrl->ldctl_oid = oid;
990 newctrl->ldctl_iscritical = criticality;
992 newctrl->ldctl_value = bv;
994 ber_dupbv( &newctrl->ldctl_value, &bv );
996 /* Add the new control to the passed-in list of controls. */
999 while ( pctrls[i] ) { /* Count the # of controls passed in */
1003 /* Allocate 1 more slot for the new control and 1 for the NULL. */
1004 pctrls = (LDAPControl **) ber_memrealloc(pctrls,
1005 (i+2)*(sizeof(LDAPControl *)));
1006 if (pctrls == NULL) {
1007 rc = LDAP_NO_MEMORY;
1010 pctrls[i] = newctrl;
1017 if (newctrl->ldctl_oid) ber_memfree(newctrl->ldctl_oid);
1018 if (newctrl->ldctl_value.bv_val) {
1019 ber_memfree(newctrl->ldctl_value.bv_val);
1021 ber_memfree(newctrl);
1023 if (oid) ber_memfree(oid);
1033 LDAPControl **pctrls,
1036 int rc, i, j, k, notascii, op;
1040 fprintf( stderr, _("%s: no DN specified\n"), prog );
1041 return( LDAP_PARAM_ERROR );
1044 if ( pmods == NULL ) {
1045 /* implement "touch" (empty sequence)
1046 * modify operation (note that there
1047 * is no symmetry with the UNIX command,
1048 * since \"touch\" on a non-existent entry
1050 printf( "warning: no attributes to %sadd (entry=\"%s\")\n",
1051 newentry ? "" : "change or ", dn );
1054 for ( i = 0; pmods[ i ] != NULL; ++i ) {
1055 op = pmods[ i ]->mod_op & ~LDAP_MOD_BVALUES;
1056 if( op == LDAP_MOD_ADD && ( pmods[i]->mod_bvalues == NULL )) {
1058 _("%s: attribute \"%s\" has no values (entry=\"%s\")\n"),
1059 prog, pmods[i]->mod_type, dn );
1060 return LDAP_PARAM_ERROR;
1065 for ( i = 0; pmods[ i ] != NULL; ++i ) {
1066 op = pmods[ i ]->mod_op & ~LDAP_MOD_BVALUES;
1068 op == LDAP_MOD_REPLACE ? _("replace") :
1069 op == LDAP_MOD_ADD ? _("add") :
1070 op == LDAP_MOD_INCREMENT ? _("increment") :
1071 op == LDAP_MOD_DELETE ? _("delete") :
1073 pmods[ i ]->mod_type );
1075 if ( pmods[ i ]->mod_bvalues != NULL ) {
1076 for ( j = 0; pmods[ i ]->mod_bvalues[ j ] != NULL; ++j ) {
1077 bvp = pmods[ i ]->mod_bvalues[ j ];
1079 for ( k = 0; (unsigned long) k < bvp->bv_len; ++k ) {
1080 if ( !isascii( bvp->bv_val[ k ] )) {
1086 printf( _("\tNOT ASCII (%ld bytes)\n"), bvp->bv_len );
1088 printf( "\t%s\n", bvp->bv_val );
1097 printf( "%sadding new entry \"%s\"\n", dont ? "!" : "", dn );
1099 printf( "%smodifying entry \"%s\"\n", dont ? "!" : "", dn );
1105 rc = ldap_add_ext( ld, dn, pmods, pctrls, NULL, &msgid );
1107 rc = ldap_modify_ext( ld, dn, pmods, pctrls, NULL, &msgid );
1110 if ( rc != LDAP_SUCCESS ) {
1111 /* print error message about failed update including DN */
1112 fprintf( stderr, _("%s: update failed: %s\n"), prog, dn );
1113 tool_perror( newentry ? "ldap_add" : "ldap_modify",
1114 rc, NULL, NULL, NULL, NULL );
1117 rc = process_response( ld, msgid,
1118 newentry ? LDAP_RES_ADD : LDAP_RES_MODIFY, dn );
1120 if ( verbose && rc == LDAP_SUCCESS ) {
1121 printf( _("modify complete\n") );
1137 LDAPControl **pctrls )
1142 printf( _("%sdeleting entry \"%s\"\n"), dont ? "!" : "", dn );
1144 rc = ldap_delete_ext( ld, dn, pctrls, NULL, &msgid );
1145 if ( rc != LDAP_SUCCESS ) {
1146 fprintf( stderr, _("%s: delete failed: %s\n"), prog, dn );
1147 tool_perror( "ldap_delete", rc, NULL, NULL, NULL, NULL );
1150 rc = process_response( ld, msgid, LDAP_RES_DELETE, dn );
1152 if ( verbose && rc == LDAP_SUCCESS ) {
1153 printf( _("delete complete\n") );
1171 LDAPControl **pctrls )
1176 printf( _("%smodifying rdn of entry \"%s\"\n"), dont ? "!" : "", dn );
1178 printf( _("\tnew RDN: \"%s\" (%skeep existing values)\n"),
1179 newrdn, deleteoldrdn ? _("do not ") : "" );
1182 rc = ldap_rename( ld, dn, newrdn, newsup, deleteoldrdn,
1183 pctrls, NULL, &msgid );
1184 if ( rc != LDAP_SUCCESS ) {
1185 fprintf( stderr, _("%s: rename failed: %s\n"), prog, dn );
1186 tool_perror( "ldap_rename", rc, NULL, NULL, NULL, NULL );
1189 rc = process_response( ld, msgid, LDAP_RES_RENAME, dn );
1191 if ( verbose && rc == LDAP_SUCCESS ) {
1192 printf( _("rename complete\n") );
1204 res2str( int res ) {
1208 case LDAP_RES_DELETE:
1209 return "ldap_delete";
1210 case LDAP_RES_MODIFY:
1211 return "ldap_modify";
1212 case LDAP_RES_MODRDN:
1213 return "ldap_rename";
1218 return "ldap_unknown";
1221 static int process_response(
1228 int rc = LDAP_OTHER, msgtype;
1229 struct timeval tv = { 0, 0 };
1231 char *text = NULL, *matched = NULL, **refs = NULL;
1232 LDAPControl **ctrls = NULL;
1236 tv.tv_usec = 100000;
1238 rc = ldap_result( ld, msgid, LDAP_MSG_ALL, &tv, &res );
1239 if ( tool_check_abandon( ld, msgid ) ) {
1240 return LDAP_CANCELLED;
1244 ldap_get_option( ld, LDAP_OPT_RESULT_CODE, &rc );
1245 tool_perror( "ldap_result", rc, NULL, NULL, NULL, NULL );
1254 msgtype = ldap_msgtype( res );
1256 rc = ldap_parse_result( ld, res, &err, &matched, &text, &refs, &ctrls, 1 );
1257 if ( rc == LDAP_SUCCESS ) rc = err;
1260 if ( rc == LDAP_X_TXN_SPECIFY_OKAY ) {
1264 if ( rc != LDAP_SUCCESS ) {
1265 tool_perror( res2str( op ), rc, NULL, matched, text, refs );
1266 } else if ( msgtype != op ) {
1267 fprintf( stderr, "%s: msgtype: expected %d got %d\n",
1268 res2str( op ), op, msgtype );
1272 if ( text ) ldap_memfree( text );
1273 if ( matched ) ldap_memfree( matched );
1274 if ( refs ) ber_memvfree( (void **)refs );
1277 tool_print_ctrls( ld, ctrls );
1278 ldap_controls_free( ctrls );