]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldif/ldif.c
Update copyright for next release
[openldap] / servers / slapd / back-ldif / ldif.c
1 /* ldif.c - the ldif backend */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2005-2009 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was originally developed by Eric Stokes for inclusion
18  * in OpenLDAP Software.
19  */
20
21 #include "portable.h"
22 #include <stdio.h>
23 #include <ac/string.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <ac/dirent.h>
27 #include <fcntl.h>
28 #include <ac/errno.h>
29 #include <ac/unistd.h>
30 #include "slap.h"
31 #include "lutil.h"
32 #include "config.h"
33
34 struct ldif_tool {
35         Entry   **entries;                      /* collected by bi_tool_entry_first() */
36         ID              elen;                           /* length of entries[] array */
37         ID              ecount;                         /* number of entries */
38         ID              ecurrent;                       /* bi_tool_entry_next() position */
39 #       define  ENTRY_BUFF_INCREMENT 500 /* initial entries[] length */
40 };
41
42 /* Per-database data */
43 struct ldif_info {
44         struct berval li_base_path;                     /* database directory */
45         struct ldif_tool li_tool;                       /* for slap tools */
46         /*
47          * Read-only LDAP requests readlock li_rdwr for filesystem input.
48          * Update requests first lock li_modop_mutex for filesystem I/O,
49          * and then writelock li_rdwr as well for filesystem output.
50          * This allows update requests to do callbacks that acquire
51          * read locks, e.g. access controls that inspect entries.
52          * (An alternative would be recursive read/write locks.)
53          */
54         ldap_pvt_thread_mutex_t li_modop_mutex; /* serialize update requests */
55         ldap_pvt_thread_rdwr_t  li_rdwr;        /* no other I/O when writing */
56 };
57
58 #ifdef _WIN32
59 #define mkdir(a,b)      mkdir(a)
60 #define move_file(from, to) (!MoveFileEx(from, to, MOVEFILE_REPLACE_EXISTING))
61 #else
62 #define move_file(from, to) rename(from, to)
63 #endif
64 #define move_dir(from, to) rename(from, to)
65
66
67 #define LDIF    ".ldif"
68 #define LDIF_FILETYPE_SEP       '.'                     /* LDIF[0] */
69
70 /*
71  * Unsafe/translated characters in the filesystem.
72  *
73  * LDIF_UNSAFE_CHAR(c) returns true if the character c is not to be used
74  * in relative filenames, except it should accept '\\', '{' and '}' even
75  * if unsafe.  The value should be a constant expression.
76  *
77  * If '\\' is unsafe, #define LDIF_ESCAPE_CHAR as a safe character.
78  * If '{' and '}' are unsafe, #define IX_FSL/IX_FSR as safe characters.
79  * (Not digits, '-' or '+'.  IX_FSL == IX_FSR is allowed.)
80  *
81  * Characters are escaped as LDIF_ESCAPE_CHAR followed by two hex digits,
82  * except '\\' is replaced with LDIF_ESCAPE_CHAR and {} with IX_FS[LR].
83  * Also some LDIF special chars are hex-escaped.
84  *
85  * Thus an LDIF filename is a valid normalized RDN (or suffix DN)
86  * followed by ".ldif", except with '\\' replaced with LDIF_ESCAPE_CHAR.
87  */
88
89 #ifndef _WIN32
90
91 /*
92  * Unix/MacOSX version.  ':' vs '/' can cause confusion on MacOSX so we
93  * escape both.  We escape them on Unix so both OS variants get the same
94  * filenames.
95  */
96 #define LDIF_ESCAPE_CHAR        '\\'
97 #define LDIF_UNSAFE_CHAR(c)     ((c) == '/' || (c) == ':')
98
99 #else /* _WIN32 */
100
101 /* Windows version - Microsoft's list of unsafe characters, except '\\' */
102 #define LDIF_ESCAPE_CHAR        '^'                     /* Not '\\' (unsafe on Windows) */
103 #define LDIF_UNSAFE_CHAR(c)     \
104         ((c) == '/' || (c) == ':' || \
105          (c) == '<' || (c) == '>' || (c) == '"' || \
106          (c) == '|' || (c) == '?' || (c) == '*')
107
108 #endif /* !_WIN32 */
109
110 /*
111  * Left and Right "{num}" prefix to ordered RDNs ("olcDatabase={1}bdb").
112  * IX_DN* are for LDAP RDNs, IX_FS* for their .ldif filenames.
113  */
114 #define IX_DNL  '{'
115 #define IX_DNR  '}'
116 #ifndef IX_FSL
117 #define IX_FSL  IX_DNL
118 #define IX_FSR  IX_DNR
119 #endif
120
121 /*
122  * Test for unsafe chars, as well as chars handled specially by back-ldif:
123  * - If the escape char is not '\\', it must itself be escaped.  Otherwise
124  *   '\\' and the escape char would map to the same character.
125  * - Escape the '.' in ".ldif", so the directory for an RDN that actually
126  *   ends with ".ldif" can not conflict with a file of the same name.  And
127  *   since some OSes/programs choke on multiple '.'s, escape all of them.
128  * - If '{' and '}' are translated to some other characters, those
129  *   characters must in turn be escaped when they occur in an RDN.
130  */
131 #ifndef LDIF_NEED_ESCAPE
132 #define LDIF_NEED_ESCAPE(c) \
133         ((LDIF_UNSAFE_CHAR(c)) || \
134          LDIF_MAYBE_UNSAFE(c, LDIF_ESCAPE_CHAR) || \
135          LDIF_MAYBE_UNSAFE(c, LDIF_FILETYPE_SEP) || \
136          LDIF_MAYBE_UNSAFE(c, IX_FSL) || \
137          (IX_FSR != IX_FSL && LDIF_MAYBE_UNSAFE(c, IX_FSR)))
138 #endif
139 /*
140  * Helper macro for LDIF_NEED_ESCAPE(): Treat character x as unsafe if
141  * back-ldif does not already treat is specially.
142  */
143 #define LDIF_MAYBE_UNSAFE(c, x) \
144         (!(LDIF_UNSAFE_CHAR(x) || (x) == '\\' || (x) == IX_DNL || (x) == IX_DNR) \
145          && (c) == (x))
146
147 /* Collect other "safe char" tests here, until someone needs a fix. */
148 enum {
149         eq_unsafe = LDIF_UNSAFE_CHAR('='),
150         safe_filenames = STRLENOF("" LDAP_DIRSEP "") == 1 && !(
151                 LDIF_UNSAFE_CHAR('-') || /* for "{-1}frontend" in bconfig.c */
152                 LDIF_UNSAFE_CHAR(LDIF_ESCAPE_CHAR) ||
153                 LDIF_UNSAFE_CHAR(IX_FSL) || LDIF_UNSAFE_CHAR(IX_FSR))
154 };
155 /* Sanity check: Try to force a compilation error if !safe_filenames */
156 typedef struct {
157         int assert_safe_filenames : safe_filenames ? 2 : -2;
158 } assert_safe_filenames[safe_filenames ? 2 : -2];
159
160
161 static ConfigTable ldifcfg[] = {
162         { "directory", "dir", 2, 2, 0, ARG_BERVAL|ARG_OFFSET,
163                 (void *)offsetof(struct ldif_info, li_base_path),
164                 "( OLcfgDbAt:0.1 NAME 'olcDbDirectory' "
165                         "DESC 'Directory for database content' "
166                         "EQUALITY caseIgnoreMatch "
167                         "SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
168         { NULL, NULL, 0, 0, 0, ARG_IGNORED,
169                 NULL, NULL, NULL, NULL }
170 };
171
172 static ConfigOCs ldifocs[] = {
173         { "( OLcfgDbOc:2.1 "
174                 "NAME 'olcLdifConfig' "
175                 "DESC 'LDIF backend configuration' "
176                 "SUP olcDatabaseConfig "
177                 "MUST ( olcDbDirectory ) )", Cft_Database, ldifcfg },
178         { NULL, 0, NULL }
179 };
180
181
182 /*
183  * Handle file/directory names.
184  */
185
186 /* Set *res = LDIF filename path for the normalized DN */
187 static void
188 dn2path( BackendDB *be, struct berval *dn, struct berval *res )
189 {
190         struct ldif_info *li = (struct ldif_info *) be->be_private;
191         struct berval *suffixdn = &be->be_nsuffix[0];
192         const char *start, *end, *next, *p;
193         char ch, *ptr;
194         ber_len_t len;
195         static const char hex[] = "0123456789ABCDEF";
196
197         assert( dn != NULL );
198         assert( !BER_BVISNULL( dn ) );
199         assert( suffixdn != NULL );
200         assert( !BER_BVISNULL( suffixdn ) );
201         assert( dnIsSuffix( dn, suffixdn ) );
202
203         start = dn->bv_val;
204         end = start + dn->bv_len;
205
206         /* Room for dir, dirsep, dn, LDIF, "\hexpair"-escaping of unsafe chars */
207         len = li->li_base_path.bv_len + dn->bv_len + (1 + STRLENOF( LDIF ));
208         for ( p = start; p < end; ) {
209                 ch = *p++;
210                 if ( LDIF_NEED_ESCAPE( ch ) )
211                         len += 2;
212         }
213         res->bv_val = ch_malloc( len + 1 );
214
215         ptr = lutil_strcopy( res->bv_val, li->li_base_path.bv_val );
216         for ( next = end - suffixdn->bv_len; end > start; end = next ) {
217                 /* Set p = start of DN component, next = &',' or start of DN */
218                 while ( (p = next) > start ) {
219                         --next;
220                         if ( DN_SEPARATOR( *next ) )
221                                 break;
222                 }
223                 /* Append <dirsep> <p..end-1: RDN or database-suffix> */
224                 for ( *ptr++ = LDAP_DIRSEP[0]; p < end; *ptr++ = ch ) {
225                         ch = *p++;
226                         if ( LDIF_ESCAPE_CHAR != '\\' && ch == '\\' ) {
227                                 ch = LDIF_ESCAPE_CHAR;
228                         } else if ( IX_FSL != IX_DNL && ch == IX_DNL ) {
229                                 ch = IX_FSL;
230                         } else if ( IX_FSR != IX_DNR && ch == IX_DNR ) {
231                                 ch = IX_FSR;
232                         } else if ( LDIF_NEED_ESCAPE( ch ) ) {
233                                 *ptr++ = LDIF_ESCAPE_CHAR;
234                                 *ptr++ = hex[(ch & 0xFFU) >> 4];
235                                 ch = hex[ch & 0x0FU];
236                         }
237                 }
238         }
239         ptr = lutil_strcopy( ptr, LDIF );
240         res->bv_len = ptr - res->bv_val;
241
242         assert( res->bv_len <= len );
243 }
244
245 /*
246  * *dest = dupbv(<dir + LDAP_DIRSEP>), plus room for <more>-sized filename.
247  * Return pointer past the dirname.
248  */
249 static char *
250 fullpath_alloc( struct berval *dest, const struct berval *dir, ber_len_t more )
251 {
252         char *s = SLAP_MALLOC( dir->bv_len + more + 2 );
253
254         dest->bv_val = s;
255         if ( s == NULL ) {
256                 dest->bv_len = 0;
257                 Debug( LDAP_DEBUG_ANY, "back-ldif: out of memory\n", 0, 0, 0 );
258         } else {
259                 s = lutil_strcopy( dest->bv_val, dir->bv_val );
260                 *s++ = LDAP_DIRSEP[0];
261                 *s = '\0';
262                 dest->bv_len = s - dest->bv_val;
263         }
264         return s;
265 }
266
267 /*
268  * Append filename to fullpath_alloc() dirname or replace previous filename.
269  * dir_end = fullpath_alloc() return value.
270  */
271 #define FILL_PATH(fpath, dir_end, filename) \
272         ((fpath)->bv_len = lutil_strcopy(dir_end, filename) - (fpath)->bv_val)
273
274
275 /* .ldif entry filename length <-> subtree dirname length. */
276 #define ldif2dir_len(bv)  ((bv).bv_len -= STRLENOF(LDIF))
277 #define dir2ldif_len(bv)  ((bv).bv_len += STRLENOF(LDIF))
278 /* .ldif entry filename <-> subtree dirname, both with dirname length. */
279 #define ldif2dir_name(bv) ((bv).bv_val[(bv).bv_len] = '\0')
280 #define dir2ldif_name(bv) ((bv).bv_val[(bv).bv_len] = LDIF_FILETYPE_SEP)
281
282 /* Get the parent directory path, plus the LDIF suffix overwritten by a \0. */
283 static int
284 get_parent_path( struct berval *dnpath, struct berval *res )
285 {
286         ber_len_t i = dnpath->bv_len;
287
288         while ( i > 0 && dnpath->bv_val[ --i ] != LDAP_DIRSEP[0] ) ;
289         if ( res == NULL ) {
290                 res = dnpath;
291         } else {
292                 res->bv_val = SLAP_MALLOC( i + 1 + STRLENOF(LDIF) );
293                 if ( res->bv_val == NULL )
294                         return LDAP_OTHER;
295                 AC_MEMCPY( res->bv_val, dnpath->bv_val, i );
296         }
297         res->bv_len = i;
298         strcpy( res->bv_val + i, LDIF );
299         res->bv_val[i] = '\0';
300         return LDAP_SUCCESS;
301 }
302
303 /* Make temporary filename pattern for mkstemp() based on dnpath. */
304 static char *
305 ldif_tempname( const struct berval *dnpath )
306 {
307         static const char suffix[] = ".XXXXXX";
308         ber_len_t len = dnpath->bv_len - STRLENOF( LDIF );
309         char *name = SLAP_MALLOC( len + sizeof( suffix ) );
310
311         if ( name != NULL ) {
312                 AC_MEMCPY( name, dnpath->bv_val, len );
313                 strcpy( name + len, suffix );
314         }
315         return name;
316 }
317
318 /*
319  * Read a file, or stat() it if datap == NULL.  Allocate and fill *datap.
320  * Return LDAP_SUCCESS, LDAP_NO_SUCH_OBJECT (no such file), or another error.
321  */
322 static int
323 ldif_read_file( const char *path, char **datap )
324 {
325         int rc, fd, len;
326         int res = -1;   /* 0:success, <0:error, >0:file too big/growing. */
327         struct stat st;
328         char *data = NULL, *ptr;
329
330         if ( datap == NULL ) {
331                 res = stat( path, &st );
332                 goto done;
333         }
334         fd = open( path, O_RDONLY );
335         if ( fd >= 0 ) {
336                 if ( fstat( fd, &st ) == 0 ) {
337                         if ( st.st_size > INT_MAX - 2 ) {
338                                 res = 1;
339                         } else {
340                                 len = st.st_size + 1; /* +1 detects file size > st.st_size */
341                                 *datap = data = ptr = SLAP_MALLOC( len + 1 );
342                                 if ( ptr != NULL ) {
343                                         while ( len && (res = read( fd, ptr, len )) ) {
344                                                 if ( res > 0 ) {
345                                                         len -= res;
346                                                         ptr += res;
347                                                 } else if ( errno != EINTR ) {
348                                                         break;
349                                                 }
350                                         }
351                                         *ptr = '\0';
352                                 }
353                         }
354                 }
355                 if ( close( fd ) < 0 )
356                         res = -1;
357         }
358
359  done:
360         if ( res == 0 ) {
361                 Debug( LDAP_DEBUG_TRACE, "ldif_read_file: %s: \"%s\"\n",
362                         datap ? "read entry file" : "entry file exists", path, 0 );
363                 rc = LDAP_SUCCESS;
364         } else {
365                 if ( res < 0 && errno == ENOENT ) {
366                         Debug( LDAP_DEBUG_TRACE, "ldif_read_file: "
367                                 "no entry file \"%s\"\n", path, 0, 0 );
368                         rc = LDAP_NO_SUCH_OBJECT;
369                 } else {
370                         const char *msg = res < 0 ? STRERROR( errno ) : "bad stat() size";
371                         Debug( LDAP_DEBUG_ANY, "ldif_read_file: %s for \"%s\"\n",
372                                 msg, path, 0 );
373                         rc = LDAP_OTHER;
374                 }
375                 if ( data != NULL )
376                         SLAP_FREE( data );
377         }
378         return rc;
379 }
380
381 /*
382  * return nonnegative for success or -1 for error
383  * do not return numbers less than -1
384  */
385 static int
386 spew_file( int fd, const char *spew, int len, int *save_errno )
387 {
388         int writeres = 0;
389
390         while(len > 0) {
391                 writeres = write(fd, spew, len);
392                 if(writeres == -1) {
393                         *save_errno = errno;
394                         if (*save_errno != EINTR)
395                                 break;
396                 }
397                 else {
398                         spew += writeres;
399                         len -= writeres;
400                 }
401         }
402         return writeres;
403 }
404
405 /* Write an entry LDIF file.  Create parentdir first if non-NULL. */
406 static int
407 ldif_write_entry(
408         Operation *op,
409         Entry *e,
410         const struct berval *path,
411         const char *parentdir,
412         const char **text )
413 {
414         int rc = LDAP_OTHER, res, save_errno = 0;
415         int fd, entry_length;
416         char *entry_as_string, *tmpfname;
417
418         if ( op->o_abandon )
419                 return SLAPD_ABANDON;
420
421         if ( parentdir != NULL && mkdir( parentdir, 0750 ) < 0 ) {
422                 save_errno = errno;
423                 Debug( LDAP_DEBUG_ANY, "ldif_write_entry: %s \"%s\": %s\n",
424                         "cannot create parent directory",
425                         parentdir, STRERROR( save_errno ) );
426                 *text = "internal error (cannot create parent directory)";
427                 return rc;
428         }
429
430         tmpfname = ldif_tempname( path );
431         fd = tmpfname == NULL ? -1 : mkstemp( tmpfname );
432         if ( fd < 0 ) {
433                 save_errno = errno;
434                 Debug( LDAP_DEBUG_ANY, "ldif_write_entry: %s for \"%s\": %s\n",
435                         "cannot create file", e->e_dn, STRERROR( save_errno ) );
436                 *text = "internal error (cannot create file)";
437
438         } else {
439                 ber_len_t dn_len = e->e_name.bv_len;
440                 struct berval rdn;
441
442                 /* Only save the RDN onto disk */
443                 dnRdn( &e->e_name, &rdn );
444                 if ( rdn.bv_len != dn_len ) {
445                         e->e_name.bv_val[rdn.bv_len] = '\0';
446                         e->e_name.bv_len = rdn.bv_len;
447                 }
448
449                 res = -2;
450                 ldap_pvt_thread_mutex_lock( &entry2str_mutex );
451                 entry_as_string = entry2str( e, &entry_length );
452                 if ( entry_as_string != NULL )
453                         res = spew_file( fd, entry_as_string, entry_length, &save_errno );
454                 ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
455
456                 /* Restore full DN */
457                 if ( rdn.bv_len != dn_len ) {
458                         e->e_name.bv_val[rdn.bv_len] = ',';
459                         e->e_name.bv_len = dn_len;
460                 }
461
462                 if ( close( fd ) < 0 && res >= 0 ) {
463                         res = -1;
464                         save_errno = errno;
465                 }
466
467                 if ( res >= 0 ) {
468                         if ( move_file( tmpfname, path->bv_val ) == 0 ) {
469                                 Debug( LDAP_DEBUG_TRACE, "ldif_write_entry: "
470                                         "wrote entry \"%s\"\n", e->e_name.bv_val, 0, 0 );
471                                 rc = LDAP_SUCCESS;
472                         } else {
473                                 save_errno = errno;
474                                 Debug( LDAP_DEBUG_ANY, "ldif_write_entry: "
475                                         "could not put entry file for \"%s\" in place: %s\n",
476                                         e->e_name.bv_val, STRERROR( save_errno ), 0 );
477                                 *text = "internal error (could not put entry file in place)";
478                         }
479                 } else if ( res == -1 ) {
480                         Debug( LDAP_DEBUG_ANY, "ldif_write_entry: %s \"%s\": %s\n",
481                                 "write error to", tmpfname, STRERROR( save_errno ) );
482                         *text = "internal error (write error to entry file)";
483                 }
484
485                 if ( rc != LDAP_SUCCESS ) {
486                         unlink( tmpfname );
487                 }
488         }
489
490         if ( tmpfname )
491                 SLAP_FREE( tmpfname );
492         return rc;
493 }
494
495 /*
496  * Read the entry at path, or if entryp==NULL just see if it exists.
497  * pdn and pndn are the parent's DN and normalized DN, or both NULL.
498  * Return an LDAP result code.
499  */
500 static int
501 ldif_read_entry(
502         Operation *op,
503         const char *path,
504         struct berval *pdn,
505         struct berval *pndn,
506         Entry **entryp,
507         const char **text )
508 {
509         int rc;
510         Entry *entry;
511         char *entry_as_string;
512         struct berval rdn;
513
514         /* TODO: Does slapd prevent Abandon of Bind as per rfc4511?
515          * If so we need not check for LDAP_REQ_BIND here.
516          */
517         if ( op->o_abandon && op->o_tag != LDAP_REQ_BIND )
518                 return SLAPD_ABANDON;
519
520         rc = ldif_read_file( path, entryp ? &entry_as_string : NULL );
521
522         switch ( rc ) {
523         case LDAP_SUCCESS:
524                 if ( entryp == NULL )
525                         break;
526                 *entryp = entry = str2entry( entry_as_string );
527                 SLAP_FREE( entry_as_string );
528                 if ( entry == NULL ) {
529                         rc = LDAP_OTHER;
530                         if ( text != NULL )
531                                 *text = "internal error (cannot parse some entry file)";
532                         break;
533                 }
534                 if ( pdn == NULL || BER_BVISEMPTY( pdn ) )
535                         break;
536                 /* Append parent DN to DN from LDIF file */
537                 rdn = entry->e_name;
538                 build_new_dn( &entry->e_name, pdn, &rdn, NULL );
539                 SLAP_FREE( rdn.bv_val );
540                 rdn = entry->e_nname;
541                 build_new_dn( &entry->e_nname, pndn, &rdn, NULL );
542                 SLAP_FREE( rdn.bv_val );
543                 break;
544
545         case LDAP_OTHER:
546                 if ( text != NULL )
547                         *text = entryp
548                                 ? "internal error (cannot read some entry file)"
549                                 : "internal error (cannot stat some entry file)";
550                 break;
551         }
552
553         return rc;
554 }
555
556 /*
557  * Read the operation's entry, or if entryp==NULL just see if it exists.
558  * Return an LDAP result code.  May set *text to a message on failure.
559  * If pathp is non-NULL, set it to the entry filename on success.
560  */
561 static int
562 get_entry(
563         Operation *op,
564         Entry **entryp,
565         struct berval *pathp,
566         const char **text )
567 {
568         int rc;
569         struct berval path, pdn, pndn;
570
571         dnParent( &op->o_req_dn, &pdn );
572         dnParent( &op->o_req_ndn, &pndn );
573         dn2path( op->o_bd, &op->o_req_ndn, &path );
574         rc = ldif_read_entry( op, path.bv_val, &pdn, &pndn, entryp, text );
575
576         if ( rc == LDAP_SUCCESS && pathp != NULL ) {
577                 *pathp = path;
578         } else {
579                 SLAP_FREE( path.bv_val );
580         }
581         return rc;
582 }
583
584
585 /*
586  * RDN-named directory entry, with special handling of "attr={num}val" RDNs.
587  * For sorting, filename "attr=val.ldif" is truncated to "attr="val\0ldif",
588  * and filename "attr={num}val.ldif" to "attr={\0um}val.ldif".
589  * Does not sort escaped chars correctly, would need to un-escape them.
590  */
591 typedef struct bvlist {
592         struct bvlist *next;
593         char *trunc;    /* filename was truncated here */
594         int  inum;              /* num from "attr={num}" in filename, or INT_MIN */
595         char savech;    /* original char at *trunc */
596         char fname;             /* variable length array BVL_NAME(bvl) = &fname */
597 #       define BVL_NAME(bvl) ((char *) (bvl) + offsetof(bvlist, fname))
598 #       define BVL_SIZE(namelen) (sizeof(bvlist) + (namelen))
599 } bvlist;
600
601 static int
602 ldif_send_entry( Operation *op, SlapReply *rs, Entry *e, int scope )
603 {
604         int rc = LDAP_SUCCESS;
605
606         if ( scope == LDAP_SCOPE_BASE || scope == LDAP_SCOPE_SUBTREE ) {
607                 if ( rs == NULL ) {
608                         /* Save the entry for tool mode */
609                         struct ldif_tool *tl =
610                                 &((struct ldif_info *) op->o_bd->be_private)->li_tool;
611
612                         if ( tl->ecount >= tl->elen ) {
613                                 /* Allocate/grow entries */
614                                 ID elen = tl->elen ? tl->elen * 2 : ENTRY_BUFF_INCREMENT;
615                                 Entry **entries = (Entry **) SLAP_REALLOC( tl->entries,
616                                         sizeof(Entry *) * elen );
617                                 if ( entries == NULL ) {
618                                         Debug( LDAP_DEBUG_ANY,
619                                                 "ldif_send_entry: out of memory\n", 0, 0, 0 );
620                                         rc = LDAP_OTHER;
621                                         goto done;
622                                 }
623                                 tl->elen = elen;
624                                 tl->entries = entries;
625                         }
626                         tl->entries[tl->ecount++] = e;
627                         return rc;
628                 }
629
630                 else if ( !get_manageDSAit( op ) && is_entry_referral( e ) ) {
631                         /* Send a continuation reference.
632                          * (ldif_back_referrals() handles baseobject referrals.)
633                          * Don't check the filter since it's only a candidate.
634                          */
635                         BerVarray refs = get_entry_referrals( op, e );
636                         rs->sr_ref = referral_rewrite( refs, &e->e_name, NULL, scope );
637                         rs->sr_entry = e;
638                         rc = send_search_reference( op, rs );
639                         ber_bvarray_free( rs->sr_ref );
640                         ber_bvarray_free( refs );
641                         rs->sr_ref = NULL;
642                         rs->sr_entry = NULL;
643                 }
644
645                 else if ( test_filter( op, e, op->ors_filter ) == LDAP_COMPARE_TRUE ) {
646                         rs->sr_entry = e;
647                         rs->sr_attrs = op->ors_attrs;
648                         rs->sr_flags = REP_ENTRY_MODIFIABLE;
649                         rc = send_search_entry( op, rs );
650                         rs->sr_entry = NULL;
651                 }
652         }
653
654  done:
655         entry_free( e );
656         return rc;
657 }
658
659 /* Read LDIF directory <path> into <listp>.  Set *fname_maxlenp. */
660 static int
661 ldif_readdir(
662         Operation *op,
663         SlapReply *rs,
664         const struct berval *path,
665         bvlist **listp,
666         ber_len_t *fname_maxlenp )
667 {
668         int rc = LDAP_SUCCESS;
669         DIR *dir_of_path;
670
671         *listp = NULL;
672         *fname_maxlenp = 0;
673
674         dir_of_path = opendir( path->bv_val );
675         if ( dir_of_path == NULL ) {
676                 int save_errno = errno;
677                 struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
678                 int is_rootDSE = (path->bv_len == li->li_base_path.bv_len);
679
680                 /* Absent directory is OK (leaf entry), except the database dir */
681                 if ( is_rootDSE || save_errno != ENOENT ) {
682                         Debug( LDAP_DEBUG_ANY,
683                                 "=> ldif_search_entry: failed to opendir \"%s\": %s\n",
684                                 path->bv_val, STRERROR( save_errno ), 0 );
685                         rc = LDAP_OTHER;
686                         if ( rs != NULL )
687                                 rs->sr_text =
688                                         save_errno != ENOENT ? "internal error (bad directory)"
689                                         : !is_rootDSE ? "internal error (missing directory)"
690                                         : "internal error (database directory does not exist)";
691                 }
692
693         } else {
694                 bvlist *ptr;
695                 struct dirent *dir;
696                 int save_errno = 0;
697
698                 while ( (dir = readdir( dir_of_path )) != NULL ) {
699                         size_t fname_len;
700                         bvlist *bvl, **prev;
701                         char *trunc, *idxp, *endp, *endp2;
702
703                         fname_len = strlen( dir->d_name );
704                         if ( fname_len < STRLENOF( "x=" LDIF )) /* min filename size */
705                                 continue;
706                         if ( strcmp( dir->d_name + fname_len - STRLENOF(LDIF), LDIF ))
707                                 continue;
708
709                         if ( *fname_maxlenp < fname_len )
710                                 *fname_maxlenp = fname_len;
711
712                         bvl = SLAP_MALLOC( BVL_SIZE( fname_len ) );
713                         if ( bvl == NULL ) {
714                                 rc = LDAP_OTHER;
715                                 save_errno = errno;
716                                 break;
717                         }
718                         strcpy( BVL_NAME( bvl ), dir->d_name );
719
720                         /* Make it sortable by ("attr=val" or <preceding {num}, num>) */
721                         trunc = BVL_NAME( bvl ) + fname_len - STRLENOF( LDIF );
722                         if ( (idxp = strchr( BVL_NAME( bvl ) + 2, IX_FSL )) != NULL &&
723                                  (endp = strchr( ++idxp, IX_FSR )) != NULL && endp > idxp &&
724                                  (eq_unsafe || idxp[-2] == '=' || endp + 1 == trunc) )
725                         {
726                                 /* attr={n}val or bconfig.c's "pseudo-indexed" attr=val{n} */
727                                 bvl->inum = strtol( idxp, &endp2, 10 );
728                                 if ( endp2 == endp ) {
729                                         trunc = idxp;
730                                         goto truncate;
731                                 }
732                         }
733                         bvl->inum = INT_MIN;
734                 truncate:
735                         bvl->trunc = trunc;
736                         bvl->savech = *trunc;
737                         *trunc = '\0';
738
739                         for ( prev = listp; (ptr = *prev) != NULL; prev = &ptr->next ) {
740                                 int cmp = strcmp( BVL_NAME( bvl ), BVL_NAME( ptr ));
741                                 if ( cmp < 0 || (cmp == 0 && bvl->inum < ptr->inum) )
742                                         break;
743                         }
744                         *prev = bvl;
745                         bvl->next = ptr;
746                 }
747
748                 if ( closedir( dir_of_path ) < 0 ) {
749                         save_errno = errno;
750                         rc = LDAP_OTHER;
751                         if ( rs != NULL )
752                                 rs->sr_text = "internal error (bad directory)";
753                 }
754                 if ( rc != LDAP_SUCCESS ) {
755                         Debug( LDAP_DEBUG_ANY, "ldif_search_entry: %s \"%s\": %s\n",
756                                 "error reading directory", path->bv_val,
757                                 STRERROR( save_errno ) );
758                 }
759         }
760
761         return rc;
762 }
763
764 /*
765  * Send an entry, recursively search its children, and free or save it.
766  * Return an LDAP result code.  Parameters:
767  *  op, rs  operation and reply.  rs == NULL for slap tools.
768  *  e       entry to search, or NULL for rootDSE.
769  *  scope   scope for the part of the search from this entry.
770  *  path    LDIF filename -- bv_len and non-directory part are overwritten.
771  */
772 static int
773 ldif_search_entry(
774         Operation *op,
775         SlapReply *rs,
776         Entry *e,
777         int scope,
778         struct berval *path )
779 {
780         int rc = LDAP_SUCCESS;
781         struct berval dn = BER_BVC( "" ), ndn = BER_BVC( "" );
782
783         if ( scope != LDAP_SCOPE_BASE && e != NULL ) {
784                 /* Copy DN/NDN since we send the entry with REP_ENTRY_MODIFIABLE,
785                  * which bconfig.c seems to need.  (TODO: see config_rename_one.)
786                  */
787                 if ( ber_dupbv( &dn,  &e->e_name  ) == NULL ||
788                          ber_dupbv( &ndn, &e->e_nname ) == NULL )
789                 {
790                         Debug( LDAP_DEBUG_ANY,
791                                 "ldif_search_entry: out of memory\n", 0, 0, 0 );
792                         rc = LDAP_OTHER;
793                         goto done;
794                 }
795         }
796
797         /* Send the entry if appropriate, and free or save it */
798         if ( e != NULL )
799                 rc = ldif_send_entry( op, rs, e, scope );
800
801         /* Search the children */
802         if ( scope != LDAP_SCOPE_BASE && rc == LDAP_SUCCESS ) {
803                 bvlist *list, *ptr;
804                 struct berval fpath;    /* becomes child pathname */
805                 char *dir_end;  /* will point past dirname in fpath */
806
807                 ldif2dir_len( *path );
808                 ldif2dir_name( *path );
809                 rc = ldif_readdir( op, rs, path, &list, &fpath.bv_len );
810
811                 if ( list != NULL ) {
812                         const char **text = rs == NULL ? NULL : &rs->sr_text;
813
814                         if ( scope == LDAP_SCOPE_ONELEVEL )
815                                 scope = LDAP_SCOPE_BASE;
816                         else if ( scope == LDAP_SCOPE_SUBORDINATE )
817                                 scope = LDAP_SCOPE_SUBTREE;
818
819                         /* Allocate fpath and fill in directory part */
820                         dir_end = fullpath_alloc( &fpath, path, fpath.bv_len );
821                         if ( dir_end == NULL )
822                                 rc = LDAP_OTHER;
823
824                         do {
825                                 ptr = list;
826
827                                 if ( rc == LDAP_SUCCESS ) {
828                                         *ptr->trunc = ptr->savech;
829                                         FILL_PATH( &fpath, dir_end, BVL_NAME( ptr ));
830
831                                         rc = ldif_read_entry( op, fpath.bv_val, &dn, &ndn,
832                                                 &e, text );
833                                         switch ( rc ) {
834                                         case LDAP_SUCCESS:
835                                                 rc = ldif_search_entry( op, rs, e, scope, &fpath );
836                                                 break;
837                                         case LDAP_NO_SUCH_OBJECT:
838                                                 /* Only the search baseDN may produce noSuchObject. */
839                                                 rc = LDAP_OTHER;
840                                                 if ( rs != NULL )
841                                                         rs->sr_text = "internal error "
842                                                                 "(did someone just remove an entry file?)";
843                                                 Debug( LDAP_DEBUG_ANY, "ldif_search_entry: "
844                                                         "file listed in parent directory does not exist: "
845                                                         "\"%s\"\n", fpath.bv_val, 0, 0 );
846                                                 break;
847                                         }
848                                 }
849
850                                 list = ptr->next;
851                                 SLAP_FREE( ptr );
852                         } while ( list != NULL );
853
854                         if ( !BER_BVISNULL( &fpath ) )
855                                 SLAP_FREE( fpath.bv_val );
856                 }
857         }
858
859  done:
860         if ( !BER_BVISEMPTY( &dn ) )
861                 ber_memfree( dn.bv_val );
862         if ( !BER_BVISEMPTY( &ndn ) )
863                 ber_memfree( ndn.bv_val );
864         return rc;
865 }
866
867 static int
868 search_tree( Operation *op, SlapReply *rs )
869 {
870         int rc = LDAP_SUCCESS;
871         Entry *e = NULL;
872         struct berval path;
873         struct berval pdn, pndn;
874
875         dn2path( op->o_bd, &op->o_req_ndn, &path );
876         if ( !BER_BVISEMPTY( &op->o_req_ndn ) ) {
877                 /* Read baseObject */
878                 dnParent( &op->o_req_dn, &pdn );
879                 dnParent( &op->o_req_ndn, &pndn );
880                 rc = ldif_read_entry( op, path.bv_val, &pdn, &pndn, &e,
881                         rs == NULL ? NULL : &rs->sr_text );
882         }
883         if ( rc == LDAP_SUCCESS )
884                 rc = ldif_search_entry( op, rs, e, op->ors_scope, &path );
885
886         ch_free( path.bv_val );
887         return rc;
888 }
889
890
891 /*
892  * Prepare to create or rename an entry:
893  * Check that the entry does not already exist.
894  * Check that the parent entry exists and can have subordinates,
895  * unless need_dir is NULL or adding the suffix entry.
896  *
897  * Return an LDAP result code.  May set *text to a message on failure.
898  * If success, set *dnpath to LDIF entry path and *need_dir to
899  * (directory must be created ? dirname : NULL).
900  */
901 static int
902 ldif_prepare_create(
903         Operation *op,
904         Entry *e,
905         struct berval *dnpath,
906         char **need_dir,
907         const char **text )
908 {
909         BackendDB *be = op->o_bd;
910         struct ldif_info *li = (struct ldif_info *) be->be_private;
911         struct berval *ndn = &e->e_nname;
912         struct berval ppath = BER_BVNULL;
913         struct stat st;
914         Entry *parent = NULL;
915         int rc = LDAP_SUCCESS;
916
917         if ( op->o_abandon )
918                 return SLAPD_ABANDON;
919
920         dn2path( be, ndn, dnpath );
921
922         if ( stat( dnpath->bv_val, &st ) == 0 ) { /* entry .ldif file */
923                 rc = LDAP_ALREADY_EXISTS;
924
925         } else if ( errno != ENOENT ) {
926                 Debug( LDAP_DEBUG_ANY,
927                         "ldif_prepare_create: cannot stat \"%s\": %s\n",
928                         dnpath->bv_val, STRERROR( errno ), 0 );
929                 rc = LDAP_OTHER;
930                 *text = "internal error (cannot check entry file)";
931
932         } else if ( need_dir != NULL ) {
933                 *need_dir = NULL;
934                 rc = get_parent_path( dnpath, &ppath );
935                 /* If parent dir exists, so does parent .ldif:
936                  * The directory gets created after and removed before the .ldif.
937                  * Except with the database directory, which has no matching entry.
938                  */
939                 if ( rc == LDAP_SUCCESS && stat( ppath.bv_val, &st ) < 0 ) {
940                         rc = errno == ENOENT && ppath.bv_len > li->li_base_path.bv_len
941                                 ? LDAP_NO_SUCH_OBJECT : LDAP_OTHER;
942                 }
943                 switch ( rc ) {
944                 case LDAP_NO_SUCH_OBJECT:
945                         /* No parent dir, check parent .ldif */
946                         dir2ldif_name( ppath );
947                         rc = ldif_read_entry( op, ppath.bv_val, NULL, NULL,
948                                 (op->o_tag != LDAP_REQ_ADD || get_manageDSAit( op )
949                                  ? &parent : NULL),
950                                 text );
951                         switch ( rc ) {
952                         case LDAP_SUCCESS:
953                                 /* Check that parent is not a referral, unless
954                                  * ldif_back_referrals() already checked.
955                                  */
956                                 if ( parent != NULL ) {
957                                         int is_ref = is_entry_referral( parent );
958                                         entry_free( parent );
959                                         if ( is_ref ) {
960                                                 rc = LDAP_AFFECTS_MULTIPLE_DSAS;
961                                                 *text = op->o_tag == LDAP_REQ_MODDN
962                                                         ? "newSuperior is a referral object"
963                                                         : "parent is a referral object";
964                                                 break;
965                                         }
966                                 }
967                                 /* Must create parent directory. */
968                                 ldif2dir_name( ppath );
969                                 *need_dir = ppath.bv_val;
970                                 break;
971                         case LDAP_NO_SUCH_OBJECT:
972                                 *text = op->o_tag == LDAP_REQ_MODDN
973                                         ? "newSuperior object does not exist"
974                                         : "parent does not exist";
975                                 break;
976                         }
977                         break;
978                 case LDAP_OTHER:
979                         Debug( LDAP_DEBUG_ANY,
980                                 "ldif_prepare_create: cannot stat \"%s\" parent dir: %s\n",
981                                 ndn->bv_val, STRERROR( errno ), 0 );
982                         *text = "internal error (cannot stat parent dir)";
983                         break;
984                 }
985                 if ( *need_dir == NULL && ppath.bv_val != NULL )
986                         SLAP_FREE( ppath.bv_val );
987         }
988
989         if ( rc != LDAP_SUCCESS ) {
990                 SLAP_FREE( dnpath->bv_val );
991                 BER_BVZERO( dnpath );
992         }
993         return rc;
994 }
995
996 static int
997 apply_modify_to_entry(
998         Entry *entry,
999         Modifications *modlist,
1000         Operation *op,
1001         SlapReply *rs )
1002 {
1003         char textbuf[SLAP_TEXT_BUFLEN];
1004         int rc = modlist ? LDAP_UNWILLING_TO_PERFORM : LDAP_SUCCESS;
1005         int is_oc = 0;
1006         Modification *mods;
1007
1008         if (!acl_check_modlist(op, entry, modlist)) {
1009                 return LDAP_INSUFFICIENT_ACCESS;
1010         }
1011
1012         for (; modlist != NULL; modlist = modlist->sml_next) {
1013                 mods = &modlist->sml_mod;
1014
1015                 if ( mods->sm_desc == slap_schema.si_ad_objectClass ) {
1016                         is_oc = 1;
1017                 }
1018                 switch (mods->sm_op) {
1019                 case LDAP_MOD_ADD:
1020                         rc = modify_add_values(entry, mods,
1021                                    get_permissiveModify(op),
1022                                    &rs->sr_text, textbuf,
1023                                    sizeof( textbuf ) );
1024                         break;
1025
1026                 case LDAP_MOD_DELETE:
1027                         rc = modify_delete_values(entry, mods,
1028                                 get_permissiveModify(op),
1029                                 &rs->sr_text, textbuf,
1030                                 sizeof( textbuf ) );
1031                         break;
1032
1033                 case LDAP_MOD_REPLACE:
1034                         rc = modify_replace_values(entry, mods,
1035                                  get_permissiveModify(op),
1036                                  &rs->sr_text, textbuf,
1037                                  sizeof( textbuf ) );
1038                         break;
1039
1040                 case LDAP_MOD_INCREMENT:
1041                         rc = modify_increment_values( entry,
1042                                 mods, get_permissiveModify(op),
1043                                 &rs->sr_text, textbuf,
1044                                 sizeof( textbuf ) );
1045                         break;
1046
1047                 case SLAP_MOD_SOFTADD:
1048                         mods->sm_op = LDAP_MOD_ADD;
1049                         rc = modify_add_values(entry, mods,
1050                                    get_permissiveModify(op),
1051                                    &rs->sr_text, textbuf,
1052                                    sizeof( textbuf ) );
1053                         mods->sm_op = SLAP_MOD_SOFTADD;
1054                         if (rc == LDAP_TYPE_OR_VALUE_EXISTS) {
1055                                 rc = LDAP_SUCCESS;
1056                         }
1057                         break;
1058                 }
1059                 if(rc != LDAP_SUCCESS) break;
1060         }
1061
1062         if ( rc == LDAP_SUCCESS ) {
1063                 rs->sr_text = NULL; /* Needed at least with SLAP_MOD_SOFTADD */
1064                 if ( is_oc ) {
1065                         entry->e_ocflags = 0;
1066                 }
1067                 /* check that the entry still obeys the schema */
1068                 rc = entry_schema_check( op, entry, NULL, 0, 0,
1069                           &rs->sr_text, textbuf, sizeof( textbuf ) );
1070         }
1071
1072         return rc;
1073 }
1074
1075
1076 static int
1077 ldif_back_referrals( Operation *op, SlapReply *rs )
1078 {
1079         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1080         struct berval path, dn = op->o_req_dn, ndn = op->o_req_ndn;
1081         ber_len_t min_dnlen;
1082         Entry *entry = NULL, **entryp;
1083         BerVarray ref;
1084         int rc;
1085
1086         min_dnlen = op->o_bd->be_nsuffix[0].bv_len;
1087         if ( min_dnlen == 0 ) {
1088                 /* Catch root DSE (empty DN), it is not a referral */
1089                 min_dnlen = 1;
1090                 if ( BER_BVISEMPTY( &ndn ) )
1091                         return LDAP_SUCCESS;
1092         }
1093
1094         entryp = get_manageDSAit( op ) ? NULL : &entry;
1095         dn2path( op->o_bd, &ndn, &path );
1096         ldap_pvt_thread_rdwr_rlock( &li->li_rdwr );
1097
1098         for (;;) {
1099                 dnParent( &dn, &dn );
1100                 dnParent( &ndn, &ndn );
1101                 rc = ldif_read_entry( op, path.bv_val, &dn, &ndn,
1102                         entryp, &rs->sr_text );
1103                 if ( rc != LDAP_NO_SUCH_OBJECT )
1104                         break;
1105
1106                 rc = LDAP_SUCCESS;
1107                 if ( ndn.bv_len < min_dnlen )
1108                         break;
1109                 (void) get_parent_path( &path, NULL );
1110                 dir2ldif_name( path );
1111                 entryp = &entry;
1112         }
1113
1114         ldap_pvt_thread_rdwr_runlock( &li->li_rdwr );
1115         SLAP_FREE( path.bv_val );
1116
1117         if ( entry != NULL ) {
1118                 if ( is_entry_referral( entry ) ) {
1119                         Debug( LDAP_DEBUG_TRACE,
1120                                 "ldif_back_referrals: tag=%lu target=\"%s\" matched=\"%s\"\n",
1121                                 (unsigned long) op->o_tag, op->o_req_dn.bv_val, entry->e_dn );
1122
1123                         ref = get_entry_referrals( op, entry );
1124                         rs->sr_ref = referral_rewrite( ref, &entry->e_name, &op->o_req_dn,
1125                                 op->o_tag == LDAP_REQ_SEARCH ?
1126                                 op->ors_scope : LDAP_SCOPE_DEFAULT );
1127                         ber_bvarray_free( ref );
1128
1129                         if ( rs->sr_ref != NULL ) {
1130                                 /* send referral */
1131                                 rc = rs->sr_err = LDAP_REFERRAL;
1132                                 rs->sr_matched = entry->e_dn;
1133                                 send_ldap_result( op, rs );
1134                                 ber_bvarray_free( rs->sr_ref );
1135                                 rs->sr_ref = NULL;
1136                         } else {
1137                                 rc = LDAP_OTHER;
1138                                 rs->sr_text = "bad referral object";
1139                         }
1140                         rs->sr_matched = NULL;
1141                 }
1142
1143                 entry_free( entry );
1144         }
1145
1146         return rc;
1147 }
1148
1149
1150 /* LDAP operations */
1151
1152 static int
1153 ldif_back_bind( Operation *op, SlapReply *rs )
1154 {
1155         struct ldif_info *li;
1156         Attribute *a;
1157         AttributeDescription *password = slap_schema.si_ad_userPassword;
1158         int return_val;
1159         Entry *entry = NULL;
1160
1161         switch ( be_rootdn_bind( op, rs ) ) {
1162         case SLAP_CB_CONTINUE:
1163                 break;
1164
1165         default:
1166                 /* in case of success, front end will send result;
1167                  * otherwise, be_rootdn_bind() did */
1168                 return rs->sr_err;
1169         }
1170
1171         li = (struct ldif_info *) op->o_bd->be_private;
1172         ldap_pvt_thread_rdwr_rlock(&li->li_rdwr);
1173         return_val = get_entry(op, &entry, NULL, NULL);
1174
1175         /* no object is found for them */
1176         if(return_val != LDAP_SUCCESS) {
1177                 rs->sr_err = return_val = LDAP_INVALID_CREDENTIALS;
1178                 goto return_result;
1179         }
1180
1181         /* they don't have userpassword */
1182         if((a = attr_find(entry->e_attrs, password)) == NULL) {
1183                 rs->sr_err = LDAP_INAPPROPRIATE_AUTH;
1184                 return_val = 1;
1185                 goto return_result;
1186         }
1187
1188         /* authentication actually failed */
1189         if(slap_passwd_check(op, entry, a, &op->oq_bind.rb_cred,
1190                              &rs->sr_text) != 0) {
1191                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
1192                 return_val = 1;
1193                 goto return_result;
1194         }
1195
1196         /* let the front-end send success */
1197         return_val = LDAP_SUCCESS;
1198
1199  return_result:
1200         ldap_pvt_thread_rdwr_runlock(&li->li_rdwr);
1201         if(return_val != LDAP_SUCCESS)
1202                 send_ldap_result( op, rs );
1203         if(entry != NULL)
1204                 entry_free(entry);
1205         return return_val;
1206 }
1207
1208 static int
1209 ldif_back_search( Operation *op, SlapReply *rs )
1210 {
1211         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1212
1213         ldap_pvt_thread_rdwr_rlock(&li->li_rdwr);
1214         rs->sr_err = search_tree( op, rs );
1215         ldap_pvt_thread_rdwr_runlock(&li->li_rdwr);
1216         send_ldap_result(op, rs);
1217
1218         return rs->sr_err;
1219 }
1220
1221 static int
1222 ldif_back_add( Operation *op, SlapReply *rs )
1223 {
1224         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1225         Entry * e = op->ora_e;
1226         struct berval path;
1227         char *parentdir;
1228         char textbuf[SLAP_TEXT_BUFLEN];
1229         int rc;
1230
1231         Debug( LDAP_DEBUG_TRACE, "ldif_back_add: \"%s\"\n", e->e_dn, 0, 0 );
1232
1233         rc = entry_schema_check( op, e, NULL, 0, 1,
1234                 &rs->sr_text, textbuf, sizeof( textbuf ) );
1235         if ( rc != LDAP_SUCCESS )
1236                 goto send_res;
1237
1238         rc = slap_add_opattrs( op, &rs->sr_text, textbuf, sizeof( textbuf ), 1 );
1239         if ( rc != LDAP_SUCCESS )
1240                 goto send_res;
1241
1242         ldap_pvt_thread_mutex_lock( &li->li_modop_mutex );
1243
1244         rc = ldif_prepare_create( op, e, &path, &parentdir, &rs->sr_text );
1245         if ( rc == LDAP_SUCCESS ) {
1246                 ldap_pvt_thread_rdwr_wlock( &li->li_rdwr );
1247                 rc = ldif_write_entry( op, e, &path, parentdir, &rs->sr_text );
1248                 ldap_pvt_thread_rdwr_wunlock( &li->li_rdwr );
1249
1250                 SLAP_FREE( path.bv_val );
1251                 if ( parentdir != NULL )
1252                         SLAP_FREE( parentdir );
1253         }
1254
1255         ldap_pvt_thread_mutex_unlock( &li->li_modop_mutex );
1256
1257  send_res:
1258         rs->sr_err = rc;
1259         Debug( LDAP_DEBUG_TRACE, "ldif_back_add: err: %d text: %s\n",
1260                 rc, rs->sr_text ? rs->sr_text : "", 0 );
1261         send_ldap_result( op, rs );
1262         slap_graduate_commit_csn( op );
1263         return rs->sr_err;
1264 }
1265
1266 static int
1267 ldif_back_modify( Operation *op, SlapReply *rs )
1268 {
1269         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1270         Modifications * modlst = op->orm_modlist;
1271         struct berval path;
1272         Entry *entry;
1273         int rc;
1274
1275         slap_mods_opattrs( op, &op->orm_modlist, 1 );
1276
1277         ldap_pvt_thread_mutex_lock( &li->li_modop_mutex );
1278
1279         rc = get_entry( op, &entry, &path, &rs->sr_text );
1280         if ( rc == LDAP_SUCCESS ) {
1281                 rc = apply_modify_to_entry( entry, modlst, op, rs );
1282                 if ( rc == LDAP_SUCCESS ) {
1283                         ldap_pvt_thread_rdwr_wlock( &li->li_rdwr );
1284                         rc = ldif_write_entry( op, entry, &path, NULL, &rs->sr_text );
1285                         ldap_pvt_thread_rdwr_wunlock( &li->li_rdwr );
1286                 }
1287
1288                 entry_free( entry );
1289                 SLAP_FREE( path.bv_val );
1290         }
1291
1292         ldap_pvt_thread_mutex_unlock( &li->li_modop_mutex );
1293
1294         rs->sr_err = rc;
1295         send_ldap_result( op, rs );
1296         slap_graduate_commit_csn( op );
1297         return rs->sr_err;
1298 }
1299
1300 static int
1301 ldif_back_delete( Operation *op, SlapReply *rs )
1302 {
1303         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1304         struct berval path;
1305         int rc = LDAP_SUCCESS;
1306
1307         if ( BER_BVISEMPTY( &op->o_csn )) {
1308                 struct berval csn;
1309                 char csnbuf[LDAP_LUTIL_CSNSTR_BUFSIZE];
1310
1311                 csn.bv_val = csnbuf;
1312                 csn.bv_len = sizeof( csnbuf );
1313                 slap_get_csn( op, &csn, 1 );
1314         }
1315
1316         ldap_pvt_thread_mutex_lock( &li->li_modop_mutex );
1317         ldap_pvt_thread_rdwr_wlock( &li->li_rdwr );
1318         if ( op->o_abandon ) {
1319                 rc = SLAPD_ABANDON;
1320                 goto done;
1321         }
1322
1323         dn2path( op->o_bd, &op->o_req_ndn, &path );
1324         ldif2dir_len( path );
1325         ldif2dir_name( path );
1326         if ( rmdir( path.bv_val ) < 0 ) {
1327                 switch ( errno ) {
1328                 case ENOTEMPTY:
1329                         rc = LDAP_NOT_ALLOWED_ON_NONLEAF;
1330                         break;
1331                 case ENOENT:
1332                         /* is leaf, go on */
1333                         break;
1334                 default:
1335                         rc = LDAP_OTHER;
1336                         rs->sr_text = "internal error (cannot delete subtree directory)";
1337                         break;
1338                 }
1339         }
1340
1341         if ( rc == LDAP_SUCCESS ) {
1342                 dir2ldif_name( path );
1343                 if ( unlink( path.bv_val ) < 0 ) {
1344                         rc = LDAP_NO_SUCH_OBJECT;
1345                         if ( errno != ENOENT ) {
1346                                 rc = LDAP_OTHER;
1347                                 rs->sr_text = "internal error (cannot delete entry file)";
1348                         }
1349                 }
1350         }
1351
1352         if ( rc == LDAP_OTHER ) {
1353                 Debug( LDAP_DEBUG_ANY, "ldif_back_delete: %s \"%s\": %s\n",
1354                         "cannot delete", path.bv_val, STRERROR( errno ) );
1355         }
1356
1357         SLAP_FREE( path.bv_val );
1358  done:
1359         ldap_pvt_thread_rdwr_wunlock( &li->li_rdwr );
1360         ldap_pvt_thread_mutex_unlock( &li->li_modop_mutex );
1361         rs->sr_err = rc;
1362         send_ldap_result( op, rs );
1363         slap_graduate_commit_csn( op );
1364         return rs->sr_err;
1365 }
1366
1367
1368 static int
1369 ldif_move_entry(
1370         Operation *op,
1371         Entry *entry,
1372         int same_ndn,
1373         struct berval *oldpath,
1374         const char **text )
1375 {
1376         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1377         struct berval newpath;
1378         char *parentdir = NULL, *trash;
1379         int rc, rename_res;
1380
1381         if ( same_ndn ) {
1382                 rc = LDAP_SUCCESS;
1383                 newpath = *oldpath;
1384         } else {
1385                 rc = ldif_prepare_create( op, entry, &newpath,
1386                         op->orr_newSup ? &parentdir : NULL, text );
1387         }
1388
1389         if ( rc == LDAP_SUCCESS ) {
1390                 ldap_pvt_thread_rdwr_wlock( &li->li_rdwr );
1391
1392                 rc = ldif_write_entry( op, entry, &newpath, parentdir, text );
1393                 if ( rc == LDAP_SUCCESS && !same_ndn ) {
1394                         trash = oldpath->bv_val; /* will be .ldif file to delete */
1395                         ldif2dir_len( newpath );
1396                         ldif2dir_len( *oldpath );
1397                         /* Move subdir before deleting old entry,
1398                          * so .ldif always exists if subdir does.
1399                          */
1400                         ldif2dir_name( newpath );
1401                         ldif2dir_name( *oldpath );
1402                         rename_res = move_dir( oldpath->bv_val, newpath.bv_val );
1403                         if ( rename_res != 0 && errno != ENOENT ) {
1404                                 rc = LDAP_OTHER;
1405                                 *text = "internal error (cannot move this subtree)";
1406                                 trash = newpath.bv_val;
1407                         }
1408
1409                         /* Delete old entry, or if error undo change */
1410                         for (;;) {
1411                                 dir2ldif_name( newpath );
1412                                 dir2ldif_name( *oldpath );
1413                                 if ( unlink( trash ) == 0 )
1414                                         break;
1415                                 if ( rc == LDAP_SUCCESS ) {
1416                                         /* Prepare to undo change and return failure */
1417                                         rc = LDAP_OTHER;
1418                                         *text = "internal error (cannot move this entry)";
1419                                         trash = newpath.bv_val;
1420                                         if ( rename_res != 0 )
1421                                                 continue;
1422                                         /* First move subdirectory back */
1423                                         ldif2dir_name( newpath );
1424                                         ldif2dir_name( *oldpath );
1425                                         if ( move_dir( newpath.bv_val, oldpath->bv_val ) == 0 )
1426                                                 continue;
1427                                 }
1428                                 *text = "added new but couldn't delete old entry!";
1429                                 break;
1430                         }
1431
1432                         if ( rc != LDAP_SUCCESS ) {
1433                                 char s[128];
1434                                 snprintf( s, sizeof s, "%s (%s)", *text, STRERROR( errno ));
1435                                 Debug( LDAP_DEBUG_ANY,
1436                                         "ldif_move_entry: %s: \"%s\" -> \"%s\"\n",
1437                                         s, op->o_req_dn.bv_val, entry->e_dn );
1438                         }
1439                 }
1440
1441                 ldap_pvt_thread_rdwr_wunlock( &li->li_rdwr );
1442                 if ( !same_ndn )
1443                         SLAP_FREE( newpath.bv_val );
1444                 if ( parentdir != NULL )
1445                         SLAP_FREE( parentdir );
1446         }
1447
1448         return rc;
1449 }
1450
1451 static int
1452 ldif_back_modrdn( Operation *op, SlapReply *rs )
1453 {
1454         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1455         struct berval new_dn = BER_BVNULL, new_ndn = BER_BVNULL;
1456         struct berval p_dn, old_path;
1457         Entry *entry;
1458         int rc, same_ndn;
1459
1460         slap_mods_opattrs( op, &op->orr_modlist, 1 );
1461
1462         ldap_pvt_thread_mutex_lock( &li->li_modop_mutex );
1463
1464         rc = get_entry( op, &entry, &old_path, &rs->sr_text );
1465         if ( rc == LDAP_SUCCESS ) {
1466                 /* build new dn, and new ndn for the entry */
1467                 if ( op->oq_modrdn.rs_newSup != NULL ) {
1468                         p_dn = *op->oq_modrdn.rs_newSup;
1469                 } else {
1470                         dnParent( &entry->e_name, &p_dn );
1471                 }
1472                 build_new_dn( &new_dn, &p_dn, &op->oq_modrdn.rs_newrdn, NULL );
1473                 dnNormalize( 0, NULL, NULL, &new_dn, &new_ndn, NULL );
1474                 same_ndn = !ber_bvcmp( &entry->e_nname, &new_ndn );
1475                 ber_memfree_x( entry->e_name.bv_val, NULL );
1476                 ber_memfree_x( entry->e_nname.bv_val, NULL );
1477                 entry->e_name = new_dn;
1478                 entry->e_nname = new_ndn;
1479
1480                 /* perform the modifications */
1481                 rc = apply_modify_to_entry( entry, op->orr_modlist, op, rs );
1482                 if ( rc == LDAP_SUCCESS )
1483                         rc = ldif_move_entry( op, entry, same_ndn, &old_path,
1484                                 &rs->sr_text );
1485
1486                 entry_free( entry );
1487                 SLAP_FREE( old_path.bv_val );
1488         }
1489
1490         ldap_pvt_thread_mutex_unlock( &li->li_modop_mutex );
1491         rs->sr_err = rc;
1492         send_ldap_result( op, rs );
1493         slap_graduate_commit_csn( op );
1494         return rs->sr_err;
1495 }
1496
1497
1498 /* Return LDAP_SUCCESS IFF we retrieve the specified entry. */
1499 static int
1500 ldif_back_entry_get(
1501         Operation *op,
1502         struct berval *ndn,
1503         ObjectClass *oc,
1504         AttributeDescription *at,
1505         int rw,
1506         Entry **e )
1507 {
1508         struct ldif_info *li = (struct ldif_info *) op->o_bd->be_private;
1509         struct berval op_dn = op->o_req_dn, op_ndn = op->o_req_ndn;
1510         int rc;
1511
1512         assert( ndn != NULL );
1513         assert( !BER_BVISNULL( ndn ) );
1514
1515         ldap_pvt_thread_rdwr_rlock( &li->li_rdwr );
1516         op->o_req_dn = *ndn;
1517         op->o_req_ndn = *ndn;
1518         rc = get_entry( op, e, NULL, NULL );
1519         op->o_req_dn = op_dn;
1520         op->o_req_ndn = op_ndn;
1521         ldap_pvt_thread_rdwr_runlock( &li->li_rdwr );
1522
1523         if ( rc == LDAP_SUCCESS && oc && !is_entry_objectclass_or_sub( *e, oc ) ) {
1524                 rc = LDAP_NO_SUCH_ATTRIBUTE;
1525                 entry_free( *e );
1526                 *e = NULL;
1527         }
1528
1529         return rc;
1530 }
1531
1532
1533 /* Slap tools */
1534
1535 static int
1536 ldif_tool_entry_open( BackendDB *be, int mode )
1537 {
1538         struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool;
1539
1540         tl->ecurrent = 0;
1541         return 0;
1542 }
1543
1544 static int
1545 ldif_tool_entry_close( BackendDB *be )
1546 {
1547         struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool;
1548         Entry **entries = tl->entries;
1549         ID i;
1550
1551         for ( i = tl->ecount; i--; )
1552                 if ( entries[i] )
1553                         entry_free( entries[i] );
1554         SLAP_FREE( entries );
1555         tl->entries = NULL;
1556         tl->ecount = tl->elen = 0;
1557         return 0;
1558 }
1559
1560 static ID
1561 ldif_tool_entry_next( BackendDB *be )
1562 {
1563         struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool;
1564
1565         if ( tl->ecurrent >= tl->ecount )
1566                 return NOID;
1567         else
1568                 return ++tl->ecurrent;
1569 }
1570
1571 static ID
1572 ldif_tool_entry_first( BackendDB *be )
1573 {
1574         struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool;
1575
1576         if ( tl->entries == NULL ) {
1577                 Operation op = {0};
1578
1579                 op.o_bd = be;
1580                 op.o_req_dn = *be->be_suffix;
1581                 op.o_req_ndn = *be->be_nsuffix;
1582                 op.ors_scope = LDAP_SCOPE_SUBTREE;
1583                 if ( search_tree( &op, NULL ) != LDAP_SUCCESS ) {
1584                         tl->ecurrent = tl->ecount; /* fail ldif_tool_entry_next() */
1585                         return 0; /* fail ldif_tool_entry_get() */
1586                 }
1587         }
1588         return ldif_tool_entry_next( be );
1589 }
1590
1591 static Entry *
1592 ldif_tool_entry_get( BackendDB *be, ID id )
1593 {
1594         struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool;
1595         Entry *e = NULL;
1596
1597         --id;
1598         if ( id < tl->ecount ) {
1599                 e = tl->entries[id];
1600                 tl->entries[id] = NULL;
1601         }
1602         return e;
1603 }
1604
1605 static ID
1606 ldif_tool_entry_put( BackendDB *be, Entry *e, struct berval *text )
1607 {
1608         int rc;
1609         const char *errmsg = NULL;
1610         struct berval path;
1611         char *parentdir;
1612         Operation op = {0};
1613
1614         op.o_bd = be;
1615         rc = ldif_prepare_create( &op, e, &path, &parentdir, &errmsg );
1616         if ( rc == LDAP_SUCCESS ) {
1617                 rc = ldif_write_entry( &op, e, &path, parentdir, &errmsg );
1618
1619                 SLAP_FREE( path.bv_val );
1620                 if ( parentdir != NULL )
1621                         SLAP_FREE( parentdir );
1622                 if ( rc == LDAP_SUCCESS )
1623                         return 1;
1624         }
1625
1626         if ( errmsg == NULL && rc != LDAP_OTHER )
1627                 errmsg = ldap_err2string( rc );
1628         if ( errmsg != NULL )
1629                 snprintf( text->bv_val, text->bv_len, "%s", errmsg );
1630         return NOID;
1631 }
1632
1633
1634 /* Setup */
1635
1636 static int
1637 ldif_back_db_init( BackendDB *be, ConfigReply *cr )
1638 {
1639         struct ldif_info *li;
1640
1641         li = ch_calloc( 1, sizeof(struct ldif_info) );
1642         be->be_private = li;
1643         be->be_cf_ocs = ldifocs;
1644         ldap_pvt_thread_mutex_init( &li->li_modop_mutex );
1645         ldap_pvt_thread_rdwr_init( &li->li_rdwr );
1646         SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_ONE_SUFFIX;
1647         return 0;
1648 }
1649
1650 static int
1651 ldif_back_db_destroy( Backend *be, ConfigReply *cr )
1652 {
1653         struct ldif_info *li = be->be_private;
1654
1655         ch_free( li->li_base_path.bv_val );
1656         ldap_pvt_thread_rdwr_destroy( &li->li_rdwr );
1657         ldap_pvt_thread_mutex_destroy( &li->li_modop_mutex );
1658         free( be->be_private );
1659         return 0;
1660 }
1661
1662 static int
1663 ldif_back_db_open( Backend *be, ConfigReply *cr )
1664 {
1665         struct ldif_info *li = (struct ldif_info *) be->be_private;
1666         if( BER_BVISEMPTY(&li->li_base_path)) {/* missing base path */
1667                 Debug( LDAP_DEBUG_ANY, "missing base path for back-ldif\n", 0, 0, 0);
1668                 return 1;
1669         }
1670         return 0;
1671 }
1672
1673 int
1674 ldif_back_initialize( BackendInfo *bi )
1675 {
1676         static char *controls[] = {
1677                 LDAP_CONTROL_MANAGEDSAIT,
1678                 NULL
1679         };
1680         int rc;
1681
1682         bi->bi_flags |=
1683                 SLAP_BFLAG_INCREMENT |
1684                 SLAP_BFLAG_REFERRALS;
1685
1686         bi->bi_controls = controls;
1687
1688         bi->bi_open = 0;
1689         bi->bi_close = 0;
1690         bi->bi_config = 0;
1691         bi->bi_destroy = 0;
1692
1693         bi->bi_db_init = ldif_back_db_init;
1694         bi->bi_db_config = config_generic_wrapper;
1695         bi->bi_db_open = ldif_back_db_open;
1696         bi->bi_db_close = 0;
1697         bi->bi_db_destroy = ldif_back_db_destroy;
1698
1699         bi->bi_op_bind = ldif_back_bind;
1700         bi->bi_op_unbind = 0;
1701         bi->bi_op_search = ldif_back_search;
1702         bi->bi_op_compare = 0;
1703         bi->bi_op_modify = ldif_back_modify;
1704         bi->bi_op_modrdn = ldif_back_modrdn;
1705         bi->bi_op_add = ldif_back_add;
1706         bi->bi_op_delete = ldif_back_delete;
1707         bi->bi_op_abandon = 0;
1708
1709         bi->bi_extended = 0;
1710
1711         bi->bi_chk_referrals = ldif_back_referrals;
1712
1713         bi->bi_connection_init = 0;
1714         bi->bi_connection_destroy = 0;
1715
1716         bi->bi_entry_get_rw = ldif_back_entry_get;
1717
1718 #if 0   /* NOTE: uncomment to completely disable access control */
1719         bi->bi_access_allowed = slap_access_always_allowed;
1720 #endif
1721
1722         bi->bi_tool_entry_open = ldif_tool_entry_open;
1723         bi->bi_tool_entry_close = ldif_tool_entry_close;
1724         bi->bi_tool_entry_first = ldif_tool_entry_first;
1725         bi->bi_tool_entry_next = ldif_tool_entry_next;
1726         bi->bi_tool_entry_get = ldif_tool_entry_get;
1727         bi->bi_tool_entry_put = ldif_tool_entry_put;
1728         bi->bi_tool_entry_reindex = 0;
1729         bi->bi_tool_sync = 0;
1730
1731         bi->bi_tool_dn2id_get = 0;
1732         bi->bi_tool_entry_modify = 0;
1733
1734         bi->bi_cf_ocs = ldifocs;
1735
1736         rc = config_register_schema( ldifcfg, ldifocs );
1737         if ( rc ) return rc;
1738         return 0;
1739 }