]> git.sur5r.net Git - openldap/blob - servers/slapd/slapadd.c
Reject slapadd -w if not supported (partial ITS#3979 fix)
[openldap] / servers / slapd / slapadd.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2005 The OpenLDAP Foundation.
5  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
6  * Portions Copyright 2003 IBM Corporation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by Kurt Zeilenga for inclusion
19  * in OpenLDAP Software.  Additional signficant contributors include
20  *    Jong Hyuk Choi
21  *    Pierangelo Masarati
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/stdlib.h>
29
30 #include <ac/ctype.h>
31 #include <ac/string.h>
32 #include <ac/socket.h>
33 #include <ac/unistd.h>
34
35 #include <lber.h>
36 #include <ldif.h>
37 #include <lutil.h>
38
39 #include "slapcommon.h"
40
41 static char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
42 static char maxcsnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
43
44 int
45 slapadd( int argc, char **argv )
46 {
47         char            *buf = NULL;
48         int         lineno;
49         int         lmax;
50         int                     rc = EXIT_SUCCESS;
51
52         const char *text;
53         char textbuf[SLAP_TEXT_BUFLEN] = { '\0' };
54         size_t textlen = sizeof textbuf;
55         const char *progname = "slapadd";
56         int manage = 0; 
57
58         struct berval csn;
59         struct berval maxcsn;
60         int match;
61         Attribute *attr;
62         Entry *ctxcsn_e;
63         ID      ctxcsn_id, id;
64         int ret;
65         struct berval bvtext;
66         int checkvals;
67         char opbuf[OPERATION_BUFFER_SIZE];
68         Operation *op;
69
70         slap_tool_init( progname, SLAPADD, argc, argv );
71
72         memset( opbuf, 0, sizeof(opbuf) );
73         op = (Operation *)opbuf;
74
75         if( !be->be_entry_open ||
76                 !be->be_entry_close ||
77                 !be->be_entry_put ||
78                 (update_ctxcsn &&
79                  (!be->be_dn2id_get ||
80                   !be->be_id2entry_get ||
81                   !be->be_entry_modify)) )
82         {
83                 fprintf( stderr, "%s: database doesn't support necessary operations.\n",
84                         progname );
85                 if ( dryrun ) {
86                         fprintf( stderr, "\t(dry) continuing...\n" );
87
88                 } else {
89                         exit( EXIT_FAILURE );
90                 }
91         }
92
93         checkvals = (slapMode & SLAP_TOOL_QUICK) ? 0 : 1;
94
95         lmax = 0;
96         lineno = 0;
97
98         if( !dryrun && be->be_entry_open( be, 1 ) != 0 ) {
99                 fprintf( stderr, "%s: could not open database.\n",
100                         progname );
101                 exit( EXIT_FAILURE );
102         }
103
104         if ( update_ctxcsn ) {
105                 maxcsn.bv_val = maxcsnbuf;
106                 maxcsn.bv_len = 0;
107         }
108
109         while( ldif_read_record( ldiffp, &lineno, &buf, &lmax ) ) {
110                 Entry *e = str2entry2( buf, checkvals );
111
112                 /*
113                  * Initialize text buffer
114                  */
115                 bvtext.bv_len = textlen;
116                 bvtext.bv_val = textbuf;
117                 bvtext.bv_val[0] = '\0';
118
119                 if( e == NULL ) {
120                         fprintf( stderr, "%s: could not parse entry (line=%d)\n",
121                                 progname, lineno );
122                         rc = EXIT_FAILURE;
123                         if( continuemode ) continue;
124                         break;
125                 }
126
127                 /* make sure the DN is not empty */
128                 if( BER_BVISEMPTY( &e->e_nname ) &&
129                         !BER_BVISEMPTY( be->be_nsuffix )) {
130                         fprintf( stderr, "%s: empty dn=\"%s\" (line=%d)\n",
131                                 progname, e->e_dn, lineno );
132                         rc = EXIT_FAILURE;
133                         entry_free( e );
134                         if( continuemode ) continue;
135                         break;
136                 }
137
138                 /* check backend */
139                 if( select_backend( &e->e_nname, is_entry_referral(e), nosubordinates )
140                         != be )
141                 {
142                         fprintf( stderr, "%s: line %d: "
143                                 "database (%s) not configured to hold \"%s\"\n",
144                                 progname, lineno,
145                                 be ? be->be_suffix[0].bv_val : "<none>",
146                                 e->e_dn );
147                         fprintf( stderr, "%s: line %d: "
148                                 "database (%s) not configured to hold \"%s\"\n",
149                                 progname, lineno,
150                                 be ? be->be_nsuffix[0].bv_val : "<none>",
151                                 e->e_ndn );
152                         rc = EXIT_FAILURE;
153                         entry_free( e );
154                         if( continuemode ) continue;
155                         break;
156                 }
157
158                 {
159                         Attribute *sc = attr_find( e->e_attrs,
160                                 slap_schema.si_ad_structuralObjectClass );
161                         Attribute *oc = attr_find( e->e_attrs,
162                                 slap_schema.si_ad_objectClass );
163
164                         if( oc == NULL ) {
165                                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): %s\n",
166                                         progname, e->e_dn, lineno,
167                                         "no objectClass attribute");
168                                 rc = EXIT_FAILURE;
169                                 entry_free( e );
170                                 if( continuemode ) continue;
171                                 break;
172                         }
173
174                         if( sc == NULL ) {
175                                 struct berval val;
176
177                                 rc = structural_class( oc->a_vals, &val,
178                                         NULL, &text, textbuf, textlen );
179
180                                 if( rc != LDAP_SUCCESS ) {
181                                         fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
182                                                 progname, e->e_dn, lineno, rc, text );
183                                         rc = EXIT_FAILURE;
184                                         entry_free( e );
185                                         if( continuemode ) continue;
186                                         break;
187                                 }
188
189                                 attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
190                                         &val, NULL );
191                         }
192
193                         /* check schema */
194                         op->o_bd = be;
195
196                         rc = entry_schema_check( op, e, NULL, manage,
197                                 &text, textbuf, textlen );
198
199                         if( rc != LDAP_SUCCESS ) {
200                                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
201                                         progname, e->e_dn, lineno, rc, text );
202                                 rc = EXIT_FAILURE;
203                                 entry_free( e );
204                                 if( continuemode ) continue;
205                                 break;
206                         }
207                 }
208
209                 if ( SLAP_LASTMOD(be) ) {
210                         time_t now = slap_get_time();
211                         char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
212                         struct berval vals[ 2 ];
213
214                         struct berval name, timestamp;
215
216                         struct berval nvals[ 2 ];
217                         struct berval nname;
218                         char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
219
220                         vals[1].bv_len = 0;
221                         vals[1].bv_val = NULL;
222
223                         nvals[1].bv_len = 0;
224                         nvals[1].bv_val = NULL;
225
226                         csn.bv_len = lutil_csnstr( csnbuf, sizeof( csnbuf ), 0, 0 );
227                         csn.bv_val = csnbuf;
228
229                         timestamp.bv_val = timebuf;
230                         timestamp.bv_len = sizeof(timebuf);
231
232                         slap_timestamp( &now, &timestamp );
233
234                         if ( BER_BVISEMPTY( &be->be_rootndn ) ) {
235                                 BER_BVSTR( &name, SLAPD_ANONYMOUS );
236                                 nname = name;
237                         } else {
238                                 name = be->be_rootdn;
239                                 nname = be->be_rootndn;
240                         }
241
242                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryUUID )
243                                 == NULL )
244                         {
245                                 vals[0].bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
246                                 vals[0].bv_val = uuidbuf;
247                                 attr_merge_normalize_one( e, slap_schema.si_ad_entryUUID, vals, NULL );
248                         }
249
250                         if( attr_find( e->e_attrs, slap_schema.si_ad_creatorsName )
251                                 == NULL )
252                         {
253                                 vals[0] = name;
254                                 nvals[0] = nname;
255                                 attr_merge( e, slap_schema.si_ad_creatorsName, vals, nvals );
256                         }
257
258                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifiersName )
259                                 == NULL )
260                         {
261                                 vals[0] = name;
262                                 nvals[0] = nname;
263                                 attr_merge( e, slap_schema.si_ad_modifiersName, vals, nvals );
264                         }
265
266                         if( attr_find( e->e_attrs, slap_schema.si_ad_createTimestamp )
267                                 == NULL )
268                         {
269                                 vals[0] = timestamp;
270                                 attr_merge( e, slap_schema.si_ad_createTimestamp, vals, NULL );
271                         }
272
273                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifyTimestamp )
274                                 == NULL )
275                         {
276                                 vals[0] = timestamp;
277                                 attr_merge( e, slap_schema.si_ad_modifyTimestamp, vals, NULL );
278                         }
279
280                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryCSN )
281                                 == NULL )
282                         {
283                                 vals[0] = csn;
284                                 attr_merge( e, slap_schema.si_ad_entryCSN, vals, NULL );
285                         }
286
287                         if ( update_ctxcsn ) {
288                                 attr = attr_find( e->e_attrs, slap_schema.si_ad_entryCSN );
289                                 if ( maxcsn.bv_len != 0 ) {
290                                         match = 0;
291                                         value_match( &match, slap_schema.si_ad_entryCSN,
292                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
293                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
294                                                 &maxcsn, &attr->a_nvals[0], &text );
295                                 } else {
296                                         match = -1;
297                                 }
298                                 if ( match < 0 ) {
299                                         strcpy( maxcsn.bv_val, attr->a_nvals[0].bv_val );
300                                         maxcsn.bv_len = attr->a_nvals[0].bv_len;
301                                 }
302                         }
303                 }
304
305                 if ( !dryrun ) {
306                         id = be->be_entry_put( be, e, &bvtext );
307                         if( id == NOID ) {
308                                 fprintf( stderr, "%s: could not add entry dn=\"%s\" "
309                                                                  "(line=%d): %s\n", progname, e->e_dn,
310                                                                  lineno, bvtext.bv_val );
311                                 rc = EXIT_FAILURE;
312                                 entry_free( e );
313                                 if( continuemode ) continue;
314                                 break;
315                         }
316                         if ( verbose )
317                                 fprintf( stderr, "added: \"%s\" (%08lx)\n",
318                                         e->e_dn, (long) id );
319                 } else {
320                         if ( verbose )
321                                 fprintf( stderr, "added: \"%s\"\n",
322                                         e->e_dn );
323                 }
324
325                 entry_free( e );
326         }
327
328         bvtext.bv_len = textlen;
329         bvtext.bv_val = textbuf;
330         bvtext.bv_val[0] = '\0';
331
332         if ( rc == EXIT_SUCCESS && update_ctxcsn && !dryrun && maxcsn.bv_len ) {
333                 ctxcsn_id = be->be_dn2id_get( be, be->be_nsuffix );
334                 if ( ctxcsn_id == NOID ) {
335                         fprintf( stderr, "%s: context entry is missing\n", progname );
336                         rc = EXIT_FAILURE;
337                 } else {
338                         ret = be->be_id2entry_get( be, ctxcsn_id, &ctxcsn_e );
339                         if ( ret == LDAP_SUCCESS ) {
340                                 attr = attr_find( ctxcsn_e->e_attrs,
341                                                                         slap_schema.si_ad_contextCSN );
342                                 if ( attr ) {
343                                         value_match( &match, slap_schema.si_ad_entryCSN,
344                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
345                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
346                                                 &maxcsn, &attr->a_nvals[0], &text );
347                                         if ( match > 0 ) {
348                                                 AC_MEMCPY( attr->a_vals[0].bv_val, maxcsn.bv_val, maxcsn.bv_len );
349                                                 attr->a_vals[0].bv_val[maxcsn.bv_len] = '\0';
350                                                 attr->a_vals[0].bv_len = maxcsn.bv_len;
351                                         }
352                                 } else {
353                                         match = 1;
354                                         attr_merge_one( ctxcsn_e, slap_schema.si_ad_contextCSN, &maxcsn, NULL );
355                                 }
356                                 if ( match > 0 ) {
357                                         ctxcsn_id = be->be_entry_modify( be, ctxcsn_e, &bvtext );
358                                         if( ctxcsn_id == NOID ) {
359                                                 fprintf( stderr, "%s: could not modify ctxcsn\n",
360                                                                                 progname);
361                                                 rc = EXIT_FAILURE;
362                                         } else if ( verbose ) {
363                                                 fprintf( stderr, "modified: \"%s\" (%08lx)\n",
364                                                                                  ctxcsn_e->e_dn, (long) ctxcsn_id );
365                                         }
366                                 }
367                         }
368                 } 
369         }
370
371         ch_free( buf );
372
373         if ( !dryrun ) {
374                 if( be->be_entry_close( be ) ) {
375                         rc = EXIT_FAILURE;
376                 }
377
378                 if( be->be_sync ) {
379                         be->be_sync( be );
380                 }
381         }
382
383         slap_tool_destroy();
384
385         return rc;
386 }
387