]> git.sur5r.net Git - openldap/blob - servers/slapd/tools/slapadd.c
slapi-plugin.h goes in include
[openldap] / servers / slapd / tools / slapadd.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 #include "portable.h"
7
8 #include <stdio.h>
9
10 #include <ac/stdlib.h>
11
12 #include <ac/ctype.h>
13 #include <ac/string.h>
14 #include <ac/socket.h>
15 #include <ac/unistd.h>
16
17 #include <lber.h>
18 #include <ldif.h>
19 #include <lutil.h>
20
21 #include "slapcommon.h"
22
23 int
24 main( int argc, char **argv )
25 {
26         char            *buf = NULL;
27         int         lineno;
28         int         lmax;
29         int                     rc = EXIT_SUCCESS;
30
31         const char *text;
32         char textbuf[SLAP_TEXT_BUFLEN] = { '\0' };
33         size_t textlen = sizeof textbuf;
34
35 #ifdef NEW_LOGGING
36         lutil_log_initialize(argc, argv );
37 #endif
38         slap_tool_init( "slapadd", SLAPADD, argc, argv );
39
40         if( !be->be_entry_open ||
41                 !be->be_entry_close ||
42                 !be->be_entry_put )
43         {
44                 fprintf( stderr, "%s: database doesn't support necessary operations.\n",
45                         progname );
46                 exit( EXIT_FAILURE );
47         }
48
49         lmax = 0;
50         lineno = 0;
51
52         if( be->be_entry_open( be, 1 ) != 0 ) {
53                 fprintf( stderr, "%s: could not open database.\n",
54                         progname );
55                 exit( EXIT_FAILURE );
56         }
57
58         while( ldif_read_record( ldiffp, &lineno, &buf, &lmax ) ) {
59                 Entry *e = str2entry( buf );
60                 struct berval bvtext;
61
62                 /*
63                  * Initialize text buffer
64                  */
65                 bvtext.bv_len = textlen;
66                 bvtext.bv_val = textbuf;
67                 bvtext.bv_val[0] = '\0';
68
69                 if( e == NULL ) {
70                         fprintf( stderr, "%s: could not parse entry (line=%d)\n",
71                                 progname, lineno );
72                         rc = EXIT_FAILURE;
73                         if( continuemode ) continue;
74                         break;
75                 }
76
77                 /* make sure the DN is not empty */
78                 if( !e->e_nname.bv_len ) {
79                         fprintf( stderr, "%s: empty dn=\"%s\" (line=%d)\n",
80                                 progname, e->e_dn, lineno );
81                         rc = EXIT_FAILURE;
82                         entry_free( e );
83                         if( continuemode ) continue;
84                         break;
85                 }
86
87                 /* check backend */
88                 if( select_backend( &e->e_nname, is_entry_referral(e), nosubordinates )
89                         != be )
90                 {
91                         fprintf( stderr, "%s: line %d: "
92                                 "database (%s) not configured to hold \"%s\"\n",
93                                 progname, lineno,
94                                 be ? be->be_suffix[0].bv_val : "<none>",
95                                 e->e_dn );
96                         fprintf( stderr, "%s: line %d: "
97                                 "database (%s) not configured to hold \"%s\"\n",
98                                 progname, lineno,
99                                 be ? be->be_nsuffix[0].bv_val : "<none>",
100                                 e->e_ndn );
101                         rc = EXIT_FAILURE;
102                         entry_free( e );
103                         if( continuemode ) continue;
104                         break;
105                 }
106
107                 if( global_schemacheck ) {
108                         Attribute *sc = attr_find( e->e_attrs,
109                                 slap_schema.si_ad_structuralObjectClass );
110                         Attribute *oc = attr_find( e->e_attrs,
111                                 slap_schema.si_ad_objectClass );
112
113                         if( oc == NULL ) {
114                                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): %s\n",
115                                         progname, e->e_dn, lineno,
116                                         "no objectClass attribute");
117                                 rc = EXIT_FAILURE;
118                                 entry_free( e );
119                                 if( continuemode ) continue;
120                                 break;
121                         }
122
123                         if( sc == NULL ) {
124                                 struct berval vals[2];
125
126                                 rc = structural_class( oc->a_vals, vals,
127                                         NULL, &text, textbuf, textlen );
128
129                                 if( rc != LDAP_SUCCESS ) {
130                                         fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
131                                                 progname, e->e_dn, lineno, rc, text );
132                                         rc = EXIT_FAILURE;
133                                         entry_free( e );
134                                         if( continuemode ) continue;
135                                         break;
136                                 }
137
138                                 vals[1].bv_val = NULL;
139                                 attr_merge( e, slap_schema.si_ad_structuralObjectClass,
140                                         vals );
141                         }
142
143                         /* check schema */
144                         rc = entry_schema_check( be, e, NULL, &text, textbuf, textlen );
145
146                         if( rc != LDAP_SUCCESS ) {
147                                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
148                                         progname, e->e_dn, lineno, rc, text );
149                                 rc = EXIT_FAILURE;
150                                 entry_free( e );
151                                 if( continuemode ) continue;
152                                 break;
153                         }
154                 }
155
156                 if ( SLAP_LASTMOD(be) ) {
157                         struct tm *ltm;
158                         time_t now = slap_get_time();
159                         char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
160                         struct berval vals[ 2 ];
161
162                         struct berval name, timestamp, csn;
163                         char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
164                         char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
165
166                         ltm = gmtime(&now);
167                         lutil_gentime( timebuf, sizeof(timebuf), ltm );
168
169                         csn.bv_len = lutil_csnstr( csnbuf, sizeof( csnbuf ), 0, 0 );
170                         csn.bv_val = csnbuf;
171
172                         timestamp.bv_val = timebuf;
173                         timestamp.bv_len = strlen(timebuf);
174
175                         if ( be->be_rootndn.bv_len == 0 ) {
176                                 name.bv_val = SLAPD_ANONYMOUS;
177                                 name.bv_len = sizeof(SLAPD_ANONYMOUS) - 1;
178                         } else {
179                                 name = be->be_rootndn;
180                         }
181
182                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryUUID )
183                                 == NULL )
184                         {
185                                 vals[0].bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
186                                 vals[0].bv_val = uuidbuf;
187                                 vals[1].bv_len = 0;
188                                 vals[1].bv_val = NULL;
189                                 attr_merge( e, slap_schema.si_ad_entryUUID, vals );
190                         }
191
192                         if( attr_find( e->e_attrs, slap_schema.si_ad_creatorsName )
193                                 == NULL )
194                         {
195                                 vals[0] = name;
196                                 vals[1].bv_len = 0;
197                                 vals[1].bv_val = NULL;
198                                 attr_merge( e, slap_schema.si_ad_creatorsName, vals);
199                         }
200
201                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifiersName )
202                                 == NULL )
203                         {
204                                 vals[0] = name;
205                                 vals[1].bv_len = 0;
206                                 vals[1].bv_val = NULL;
207                                 attr_merge( e, slap_schema.si_ad_modifiersName, vals);
208                         }
209
210                         if( attr_find( e->e_attrs, slap_schema.si_ad_createTimestamp )
211                                 == NULL )
212                         {
213                                 vals[0] = timestamp;
214                                 vals[1].bv_len = 0;
215                                 vals[1].bv_val = NULL;
216                                 attr_merge( e, slap_schema.si_ad_createTimestamp, vals );
217                         }
218
219                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifyTimestamp )
220                                 == NULL )
221                         {
222                                 vals[0] = timestamp;
223                                 vals[1].bv_len = 0;
224                                 vals[1].bv_val = NULL;
225                                 attr_merge( e, slap_schema.si_ad_modifyTimestamp, vals );
226                         }
227
228                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryCSN )
229                                 == NULL )
230                         {
231                                 vals[0] = csn;
232                                 vals[1].bv_len = 0;
233                                 vals[1].bv_val = NULL;
234                                 attr_merge( e, slap_schema.si_ad_entryCSN, vals );
235                         }
236                 }
237
238                 if (!dryrun) {
239                         ID id = be->be_entry_put( be, e, &bvtext );
240                         if( id == NOID ) {
241                                 fprintf( stderr, "%s: could not add entry dn=\"%s\" (line=%d): %s\n",
242                                         progname, e->e_dn, lineno, bvtext.bv_val );
243                                 rc = EXIT_FAILURE;
244                                 entry_free( e );
245                                 if( continuemode ) continue;
246                                 break;
247                         }
248                 
249                         if ( verbose ) {
250                                 fprintf( stderr, "added: \"%s\" (%08lx)\n",
251                                         e->e_dn, (long) id );
252                         }
253                 } else {
254                         if ( verbose ) {
255                                 fprintf( stderr, "(dry) added: \"%s\"\n", e->e_dn );
256                         }
257                 }
258
259                 entry_free( e );
260         }
261
262         ch_free( buf );
263
264         be->be_entry_close( be );
265
266         if( be->be_sync ) {
267                 be->be_sync( be );
268         }
269
270         slap_tool_destroy();
271         return rc;
272 }