]> git.sur5r.net Git - openldap/blob - servers/slapd/slapadd.c
ac66a3f00864a38ed6b9f74d2b03b16b33869053
[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 i, checkvals;
67         struct berval mc;
68         slap_tool_init( progname, SLAPADD, argc, argv );
69
70         if( !be->be_entry_open ||
71                 !be->be_entry_close ||
72                 !be->be_entry_put )
73         {
74                 fprintf( stderr, "%s: database doesn't support necessary operations.\n",
75                         progname );
76                 if ( dryrun ) {
77                         fprintf( stderr, "\t(dry) continuing...\n" );
78
79                 } else {
80                         exit( EXIT_FAILURE );
81                 }
82         }
83
84         checkvals = (slapMode & SLAP_TOOL_QUICK) ? 0 : 1;
85
86         lmax = 0;
87         lineno = 0;
88
89         if( !dryrun && be->be_entry_open( be, 1 ) != 0 ) {
90                 fprintf( stderr, "%s: could not open database.\n",
91                         progname );
92                 exit( EXIT_FAILURE );
93         }
94
95         if ( update_ctxcsn ) {
96                 maxcsn.bv_val = maxcsnbuf;
97                 maxcsn.bv_len = 0;
98         }
99
100         while( ldif_read_record( ldiffp, &lineno, &buf, &lmax ) ) {
101                 Entry *e = str2entry2( buf, checkvals );
102
103                 /*
104                  * Initialize text buffer
105                  */
106                 bvtext.bv_len = textlen;
107                 bvtext.bv_val = textbuf;
108                 bvtext.bv_val[0] = '\0';
109
110                 if( e == NULL ) {
111                         fprintf( stderr, "%s: could not parse entry (line=%d)\n",
112                                 progname, lineno );
113                         rc = EXIT_FAILURE;
114                         if( continuemode ) continue;
115                         break;
116                 }
117
118                 /* make sure the DN is not empty */
119                 if( BER_BVISEMPTY( &e->e_nname ) &&
120                         !BER_BVISEMPTY( be->be_nsuffix )) {
121                         fprintf( stderr, "%s: empty dn=\"%s\" (line=%d)\n",
122                                 progname, e->e_dn, lineno );
123                         rc = EXIT_FAILURE;
124                         entry_free( e );
125                         if( continuemode ) continue;
126                         break;
127                 }
128
129                 /* check backend */
130                 if( select_backend( &e->e_nname, is_entry_referral(e), nosubordinates )
131                         != be )
132                 {
133                         fprintf( stderr, "%s: line %d: "
134                                 "database (%s) not configured to hold \"%s\"\n",
135                                 progname, lineno,
136                                 be ? be->be_suffix[0].bv_val : "<none>",
137                                 e->e_dn );
138                         fprintf( stderr, "%s: line %d: "
139                                 "database (%s) not configured to hold \"%s\"\n",
140                                 progname, lineno,
141                                 be ? be->be_nsuffix[0].bv_val : "<none>",
142                                 e->e_ndn );
143                         rc = EXIT_FAILURE;
144                         entry_free( e );
145                         if( continuemode ) continue;
146                         break;
147                 }
148
149                 {
150                         Attribute *sc = attr_find( e->e_attrs,
151                                 slap_schema.si_ad_structuralObjectClass );
152                         Attribute *oc = attr_find( e->e_attrs,
153                                 slap_schema.si_ad_objectClass );
154
155                         if( oc == NULL ) {
156                                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): %s\n",
157                                         progname, e->e_dn, lineno,
158                                         "no objectClass attribute");
159                                 rc = EXIT_FAILURE;
160                                 entry_free( e );
161                                 if( continuemode ) continue;
162                                 break;
163                         }
164
165                         if( sc == NULL ) {
166                                 struct berval val;
167
168                                 rc = structural_class( oc->a_vals, &val,
169                                         NULL, &text, textbuf, textlen );
170
171                                 if( rc != LDAP_SUCCESS ) {
172                                         fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
173                                                 progname, e->e_dn, lineno, rc, text );
174                                         rc = EXIT_FAILURE;
175                                         entry_free( e );
176                                         if( continuemode ) continue;
177                                         break;
178                                 }
179
180                                 attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
181                                         &val, NULL );
182                         }
183
184                         /* check schema */
185                         rc = entry_schema_check( be, e, NULL, manage,
186                                 &text, textbuf, textlen );
187
188                         if( rc != LDAP_SUCCESS ) {
189                                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
190                                         progname, e->e_dn, lineno, rc, text );
191                                 rc = EXIT_FAILURE;
192                                 entry_free( e );
193                                 if( continuemode ) continue;
194                                 break;
195                         }
196                 }
197
198                 if ( SLAP_LASTMOD(be) ) {
199                         struct tm *ltm;
200                         time_t now = slap_get_time();
201                         char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
202                         struct berval vals[ 2 ];
203
204                         struct berval name, timestamp;
205
206                         struct berval nvals[ 2 ];
207                         struct berval nname;
208                         char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
209
210                         vals[1].bv_len = 0;
211                         vals[1].bv_val = NULL;
212
213                         nvals[1].bv_len = 0;
214                         nvals[1].bv_val = NULL;
215
216                         ltm = gmtime(&now);
217                         lutil_gentime( timebuf, sizeof(timebuf), ltm );
218
219                         csn.bv_len = lutil_csnstr( csnbuf, sizeof( csnbuf ), 0, 0 );
220                         csn.bv_val = csnbuf;
221
222                         timestamp.bv_val = timebuf;
223                         timestamp.bv_len = strlen(timebuf);
224
225                         if ( BER_BVISEMPTY( &be->be_rootndn ) ) {
226                                 BER_BVSTR( &name, SLAPD_ANONYMOUS );
227                                 nname = name;
228                         } else {
229                                 name = be->be_rootdn;
230                                 nname = be->be_rootndn;
231                         }
232
233                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryUUID )
234                                 == NULL )
235                         {
236                                 vals[0].bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
237                                 vals[0].bv_val = uuidbuf;
238                                 attr_merge_normalize_one( e, slap_schema.si_ad_entryUUID, vals, NULL );
239                         }
240
241                         if( attr_find( e->e_attrs, slap_schema.si_ad_creatorsName )
242                                 == NULL )
243                         {
244                                 vals[0] = name;
245                                 nvals[0] = nname;
246                                 attr_merge( e, slap_schema.si_ad_creatorsName, vals, nvals );
247                         }
248
249                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifiersName )
250                                 == NULL )
251                         {
252                                 vals[0] = name;
253                                 nvals[0] = nname;
254                                 attr_merge( e, slap_schema.si_ad_modifiersName, vals, nvals );
255                         }
256
257                         if( attr_find( e->e_attrs, slap_schema.si_ad_createTimestamp )
258                                 == NULL )
259                         {
260                                 vals[0] = timestamp;
261                                 attr_merge( e, slap_schema.si_ad_createTimestamp, vals, NULL );
262                         }
263
264                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifyTimestamp )
265                                 == NULL )
266                         {
267                                 vals[0] = timestamp;
268                                 attr_merge( e, slap_schema.si_ad_modifyTimestamp, vals, NULL );
269                         }
270
271                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryCSN )
272                                 == NULL )
273                         {
274                                 vals[0] = csn;
275                                 attr_merge( e, slap_schema.si_ad_entryCSN, vals, NULL );
276                         }
277
278                         if ( update_ctxcsn ) {
279                                 attr = attr_find( e->e_attrs, slap_schema.si_ad_entryCSN );
280                                 if ( maxcsn.bv_len != 0 ) {
281                                         match = 0;
282                                         value_match( &match, slap_schema.si_ad_entryCSN,
283                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
284                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
285                                                 &maxcsn, &attr->a_nvals[0], &text );
286                                 } else {
287                                         match = -1;
288                                 }
289                                 if ( match < 0 ) {
290                                         strcpy( maxcsn.bv_val, attr->a_nvals[0].bv_val );
291                                         maxcsn.bv_len = attr->a_nvals[0].bv_len;
292                                 }
293                         }
294                 }
295
296                 if ( !dryrun ) {
297                         id = be->be_entry_put( be, e, &bvtext );
298                         if( id == NOID ) {
299                                 fprintf( stderr, "%s: could not add entry dn=\"%s\" "
300                                                                  "(line=%d): %s\n", progname, e->e_dn,
301                                                                  lineno, bvtext.bv_val );
302                                 rc = EXIT_FAILURE;
303                                 entry_free( e );
304                                 if( continuemode ) continue;
305                                 break;
306                         }
307                 }
308
309                 if ( verbose ) {
310                         if ( dryrun ) {
311                                 fprintf( stderr, "added: \"%s\"\n",
312                                         e->e_dn );
313                         } else {
314                                 fprintf( stderr, "added: \"%s\" (%08lx)\n",
315                                         e->e_dn, (long) id );
316                         }
317                 }
318
319 done:;
320                 entry_free( e );
321         }
322
323         bvtext.bv_len = textlen;
324         bvtext.bv_val = textbuf;
325         bvtext.bv_val[0] = '\0';
326
327         if ( rc == EXIT_SUCCESS && update_ctxcsn && !dryrun && maxcsn.bv_len ) {
328                 ctxcsn_id = be->be_dn2id_get( be, be->be_nsuffix );
329                 if ( ctxcsn_id == NOID ) {
330                         fprintf( stderr, "%s: context entry is missing\n", progname );
331                         rc = EXIT_FAILURE;
332                 } else {
333                         ret = be->be_id2entry_get( be, ctxcsn_id, &ctxcsn_e );
334                         if ( ret == LDAP_SUCCESS ) {
335                                 attr = attr_find( ctxcsn_e->e_attrs,
336                                                                         slap_schema.si_ad_contextCSN );
337                                 if ( attr ) {
338                                         value_match( &match, slap_schema.si_ad_entryCSN,
339                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
340                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
341                                                 &maxcsn, &attr->a_nvals[0], &text );
342                                         if ( match > 0 ) {
343                                                 AC_MEMCPY( attr->a_vals[0].bv_val, maxcsn.bv_val, maxcsn.bv_len );
344                                                 attr->a_vals[0].bv_val[maxcsn.bv_len] = '\0';
345                                                 attr->a_vals[0].bv_len = maxcsn.bv_len;
346                                         }
347                                 } else {
348                                         match = 1;
349                                         attr_merge_one( ctxcsn_e, slap_schema.si_ad_contextCSN, &maxcsn, NULL );
350                                 }
351                                 if ( match > 0 ) {
352                                         ctxcsn_id = be->be_entry_modify( be, ctxcsn_e, &bvtext );
353                                         if( ctxcsn_id == NOID ) {
354                                                 fprintf( stderr, "%s: could not modify ctxcsn\n",
355                                                                                 progname);
356                                                 rc = EXIT_FAILURE;
357                                         } else if ( verbose ) {
358                                                 fprintf( stderr, "modified: \"%s\" (%08lx)\n",
359                                                                                  ctxcsn_e->e_dn, (long) ctxcsn_id );
360                                         }
361                                 }
362                         }
363                 } 
364         }
365
366         ch_free( buf );
367
368         if ( !dryrun ) {
369                 if( be->be_entry_close( be ) ) {
370                         rc = EXIT_FAILURE;
371                 }
372
373                 if( be->be_sync ) {
374                         be->be_sync( be );
375                 }
376         }
377
378         slap_tool_destroy();
379
380         return rc;
381 }
382