]> git.ozlabs.org Git - ccan/blob - ccan/tdb/open.c
e58d381f7ce85fc675f9d6eb7cd48e8ba51a5e2e
[ccan] / ccan / tdb / open.c
1  /* 
2    Unix SMB/CIFS implementation.
3
4    trivial database library
5
6    Copyright (C) Andrew Tridgell              1999-2005
7    Copyright (C) Paul `Rusty' Russell              2000
8    Copyright (C) Jeremy Allison                    2000-2003
9    
10      ** NOTE! The following LGPL license applies to the tdb
11      ** library. This does NOT imply that all of Samba is released
12      ** under the LGPL
13    
14    This library is free software; you can redistribute it and/or
15    modify it under the terms of the GNU Lesser General Public
16    License as published by the Free Software Foundation; either
17    version 3 of the License, or (at your option) any later version.
18
19    This library is distributed in the hope that it will be useful,
20    but WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22    Lesser General Public License for more details.
23
24    You should have received a copy of the GNU Lesser General Public
25    License along with this library; if not, see <http://www.gnu.org/licenses/>.
26 */
27
28 #include "tdb_private.h"
29
30 /* all contexts, to ensure no double-opens (fcntl locks don't nest!) */
31 static struct tdb_context *tdbs = NULL;
32
33
34 /* This is based on the hash algorithm from gdbm */
35 static unsigned int default_tdb_hash(TDB_DATA *key)
36 {
37         uint32_t value; /* Used to compute the hash value.  */
38         uint32_t   i;   /* Used to cycle through random values. */
39
40         /* Set the initial value from the key size. */
41         for (value = 0x238F13AF * key->dsize, i=0; i < key->dsize; i++)
42                 value = (value + (key->dptr[i] << (i*5 % 24)));
43
44         return (1103515243 * value + 12345);  
45 }
46
47
48 /* initialise a new database with a specified hash size */
49 static int tdb_new_database(struct tdb_context *tdb, int hash_size)
50 {
51         struct tdb_header *newdb;
52         size_t size;
53         int ret = -1;
54         ssize_t written;
55
56         /* We make it up in memory, then write it out if not internal */
57         size = sizeof(struct tdb_header) + (hash_size+1)*sizeof(tdb_off_t);
58         if (!(newdb = (struct tdb_header *)calloc(size, 1)))
59                 return TDB_ERRCODE(TDB_ERR_OOM, -1);
60
61         /* Fill in the header */
62         newdb->version = TDB_VERSION;
63         newdb->hash_size = hash_size;
64         if (tdb->flags & TDB_INTERNAL) {
65                 tdb->map_size = size;
66                 tdb->map_ptr = (char *)newdb;
67                 memcpy(&tdb->header, newdb, sizeof(tdb->header));
68                 /* Convert the `ondisk' version if asked. */
69                 CONVERT(*newdb);
70                 return 0;
71         }
72         if (lseek(tdb->fd, 0, SEEK_SET) == -1)
73                 goto fail;
74
75         if (ftruncate(tdb->fd, 0) == -1)
76                 goto fail;
77
78         /* This creates an endian-converted header, as if read from disk */
79         CONVERT(*newdb);
80         memcpy(&tdb->header, newdb, sizeof(tdb->header));
81         /* Don't endian-convert the magic food! */
82         memcpy(newdb->magic_food, TDB_MAGIC_FOOD, strlen(TDB_MAGIC_FOOD)+1);
83         /* we still have "ret == -1" here */
84         written = write(tdb->fd, newdb, size);
85         if (written == size) {
86                 ret = 0;
87         } else if (written != -1) {
88                 /* call write once again, this usually should return -1 and
89                  * set errno appropriately */
90                 size -= written;
91                 written = write(tdb->fd, newdb+written, size);
92                 if (written == size) {
93                 ret = 0;
94                 } else if (written >= 0) {
95                         /* a second incomplete write - we give up.
96                          * guessing the errno... */
97                         errno = ENOSPC;
98                 }
99         }
100
101   fail:
102         SAFE_FREE(newdb);
103         return ret;
104 }
105
106
107
108 static int tdb_already_open(dev_t device,
109                             ino_t ino)
110 {
111         struct tdb_context *i;
112         
113         for (i = tdbs; i; i = i->next) {
114                 if (i->device == device && i->inode == ino) {
115                         return 1;
116                 }
117         }
118
119         return 0;
120 }
121
122 /* open the database, creating it if necessary 
123
124    The open_flags and mode are passed straight to the open call on the
125    database file. A flags value of O_WRONLY is invalid. The hash size
126    is advisory, use zero for a default value.
127
128    Return is NULL on error, in which case errno is also set.  Don't 
129    try to call tdb_error or tdb_errname, just do strerror(errno).
130
131    @param name may be NULL for internal databases. */
132 struct tdb_context *tdb_open(const char *name, int hash_size, int tdb_flags,
133                       int open_flags, mode_t mode)
134 {
135         return tdb_open_ex(name, hash_size, tdb_flags, open_flags, mode, NULL, NULL);
136 }
137
138 /* a default logging function */
139 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
140 static void null_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...)
141 {
142 }
143
144
145 struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
146                                 int open_flags, mode_t mode,
147                                 const struct tdb_logging_context *log_ctx,
148                                 tdb_hash_func hash_fn)
149 {
150         struct tdb_context *tdb;
151         struct stat st;
152         int rev = 0, locked = 0;
153         unsigned char *vp;
154         uint32_t vertest;
155         unsigned v;
156 #ifdef TDB_TRACE
157         char tracefile[strlen(name) + 32];
158 #endif
159
160         if (!(tdb = (struct tdb_context *)calloc(1, sizeof *tdb))) {
161                 /* Can't log this */
162                 errno = ENOMEM;
163                 goto fail;
164         }
165
166 #ifdef TDB_TRACE
167         if (!(tdb_flags & TDB_INTERNAL)) {
168                 sprintf(tracefile, "%s.trace.%u", name, getpid());
169                 tdb->tracefd = open(tracefile, O_WRONLY|O_CREAT|O_EXCL, 0600);
170                 if (tdb->tracefd < 0)
171                         goto fail;
172                 tdb_trace(tdb, "tdb_open %s %u %#x %#x %p\n",
173                           name, hash_size, tdb_flags, open_flags, hash_fn);
174         } else
175                 /* All writes will fail.  That's OK. */
176                 tdb->tracefd = -1;
177 #endif
178
179         tdb_io_init(tdb);
180         tdb->fd = -1;
181         tdb->name = NULL;
182         tdb->map_ptr = NULL;
183         tdb->flags = tdb_flags;
184         tdb->open_flags = open_flags;
185         if (log_ctx) {
186                 tdb->log = *log_ctx;
187         } else {
188                 tdb->log.log_fn = null_log_fn;
189                 tdb->log.log_private = NULL;
190         }
191         tdb->hash_fn = hash_fn ? hash_fn : default_tdb_hash;
192
193         /* cache the page size */
194         tdb->page_size = getpagesize();
195         if (tdb->page_size <= 0) {
196                 tdb->page_size = 0x2000;
197         }
198
199         tdb->max_dead_records = (tdb_flags & TDB_VOLATILE) ? 5 : 0;
200
201         if ((open_flags & O_ACCMODE) == O_WRONLY) {
202                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: can't open tdb %s write-only\n",
203                          name));
204                 errno = EINVAL;
205                 goto fail;
206         }
207         
208         if (hash_size == 0)
209                 hash_size = DEFAULT_HASH_SIZE;
210         if ((open_flags & O_ACCMODE) == O_RDONLY) {
211                 tdb->read_only = 1;
212                 /* read only databases don't do locking or clear if first */
213                 tdb->flags |= TDB_NOLOCK;
214                 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
215         }
216
217         /* internal databases don't mmap or lock, and start off cleared */
218         if (tdb->flags & TDB_INTERNAL) {
219                 tdb->flags |= (TDB_NOLOCK | TDB_NOMMAP);
220                 tdb->flags &= ~TDB_CLEAR_IF_FIRST;
221                 if (tdb_new_database(tdb, hash_size) != 0) {
222                         TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: tdb_new_database failed!"));
223                         goto fail;
224                 }
225                 goto internal;
226         }
227
228         if ((tdb->fd = open(name, open_flags, mode)) == -1) {
229                 TDB_LOG((tdb, TDB_DEBUG_WARNING, "tdb_open_ex: could not open file %s: %s\n",
230                          name, strerror(errno)));
231                 goto fail;      /* errno set by open(2) */
232         }
233
234         /* on exec, don't inherit the fd */
235         v = fcntl(tdb->fd, F_GETFD, 0);
236         fcntl(tdb->fd, F_SETFD, v | FD_CLOEXEC);
237
238         /* ensure there is only one process initialising at once */
239         if (tdb->methods->tdb_brlock(tdb, GLOBAL_LOCK, F_WRLCK, F_SETLKW, 0, 1) == -1) {
240                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to get global lock on %s: %s\n",
241                          name, strerror(errno)));
242                 goto fail;      /* errno set by tdb_brlock */
243         }
244
245         /* we need to zero database if we are the only one with it open */
246         if ((tdb_flags & TDB_CLEAR_IF_FIRST) &&
247             (!tdb->read_only) &&
248             (locked = (tdb->methods->tdb_brlock(tdb, ACTIVE_LOCK, F_WRLCK, F_SETLK, 0, 1) == 0))) {
249                 open_flags |= O_CREAT;
250                 if (ftruncate(tdb->fd, 0) == -1) {
251                         TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_open_ex: "
252                                  "failed to truncate %s: %s\n",
253                                  name, strerror(errno)));
254                         goto fail; /* errno set by ftruncate */
255                 }
256         }
257
258         errno = 0;
259         if (read(tdb->fd, &tdb->header, sizeof(tdb->header)) != sizeof(tdb->header)
260             || strcmp(tdb->header.magic_food, TDB_MAGIC_FOOD) != 0
261             || (tdb->header.version != TDB_VERSION
262                 && !(rev = (tdb->header.version==TDB_BYTEREV(TDB_VERSION))))) {
263                 /* its not a valid database - possibly initialise it */
264                 if (!(open_flags & O_CREAT) || tdb_new_database(tdb, hash_size) == -1) {
265                         if (errno == 0) {
266                         errno = EIO; /* ie bad format or something */
267                         }
268                         goto fail;
269                 }
270                 rev = (tdb->flags & TDB_CONVERT);
271         }
272         vp = (unsigned char *)&tdb->header.version;
273         vertest = (((uint32_t)vp[0]) << 24) | (((uint32_t)vp[1]) << 16) |
274                   (((uint32_t)vp[2]) << 8) | (uint32_t)vp[3];
275         tdb->flags |= (vertest==TDB_VERSION) ? TDB_BIGENDIAN : 0;
276         if (!rev)
277                 tdb->flags &= ~TDB_CONVERT;
278         else {
279                 tdb->flags |= TDB_CONVERT;
280                 tdb_convert(&tdb->header, sizeof(tdb->header));
281         }
282         if (fstat(tdb->fd, &st) == -1)
283                 goto fail;
284
285         if (tdb->header.rwlocks != 0) {
286                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: spinlocks no longer supported\n"));
287                 goto fail;
288         }
289
290         /* Is it already in the open list?  If so, fail. */
291         if (tdb_already_open(st.st_dev, st.st_ino)) {
292                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
293                          "%s (%d,%d) is already open in this process\n",
294                          name, (int)st.st_dev, (int)st.st_ino));
295                 errno = EBUSY;
296                 goto fail;
297         }
298
299         if (!(tdb->name = (char *)strdup(name))) {
300                 errno = ENOMEM;
301                 goto fail;
302         }
303
304         tdb->map_size = st.st_size;
305         tdb->device = st.st_dev;
306         tdb->inode = st.st_ino;
307         tdb_mmap(tdb);
308         if (locked) {
309                 if (tdb->methods->tdb_brlock(tdb, ACTIVE_LOCK, F_UNLCK, F_SETLK, 0, 1) == -1) {
310                         TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: "
311                                  "failed to take ACTIVE_LOCK on %s: %s\n",
312                                  name, strerror(errno)));
313                         goto fail;
314                 }
315
316         }
317
318         /* We always need to do this if the CLEAR_IF_FIRST flag is set, even if
319            we didn't get the initial exclusive lock as we need to let all other
320            users know we're using it. */
321
322         if (tdb_flags & TDB_CLEAR_IF_FIRST) {
323                 /* leave this lock in place to indicate it's in use */
324                 if (tdb->methods->tdb_brlock(tdb, ACTIVE_LOCK, F_RDLCK, F_SETLKW, 0, 1) == -1)
325                         goto fail;
326         }
327
328         /* if needed, run recovery */
329         if (tdb_transaction_recover(tdb) == -1) {
330                 goto fail;
331         }
332
333  internal:
334         /* Internal (memory-only) databases skip all the code above to
335          * do with disk files, and resume here by releasing their
336          * global lock and hooking into the active list. */
337         if (tdb->methods->tdb_brlock(tdb, GLOBAL_LOCK, F_UNLCK, F_SETLKW, 0, 1) == -1)
338                 goto fail;
339         tdb->next = tdbs;
340         tdbs = tdb;
341         return tdb;
342
343  fail:
344         { int save_errno = errno;
345
346         if (!tdb)
347                 return NULL;
348
349         close(tdb->tracefd);
350         
351         if (tdb->map_ptr) {
352                 if (tdb->flags & TDB_INTERNAL)
353                         SAFE_FREE(tdb->map_ptr);
354                 else
355                         tdb_munmap(tdb);
356         }
357         SAFE_FREE(tdb->name);
358         if (tdb->fd != -1)
359                 if (close(tdb->fd) != 0)
360                         TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_open_ex: failed to close tdb->fd on error!\n"));
361         SAFE_FREE(tdb);
362         errno = save_errno;
363         return NULL;
364         }
365 }
366
367 /*
368  * Set the maximum number of dead records per hash chain
369  */
370
371 void tdb_set_max_dead(struct tdb_context *tdb, int max_dead)
372 {
373         tdb->max_dead_records = max_dead;
374 }
375
376 /**
377  * Close a database.
378  *
379  * @returns -1 for error; 0 for success.
380  **/
381 int tdb_close(struct tdb_context *tdb)
382 {
383         struct tdb_context **i;
384         int ret = 0;
385
386         tdb_trace(tdb, "tdb_close\n");
387         if (tdb->transaction) {
388                 tdb_transaction_cancel_internal(tdb);
389         }
390
391         if (tdb->map_ptr) {
392                 if (tdb->flags & TDB_INTERNAL)
393                         SAFE_FREE(tdb->map_ptr);
394                 else
395                         tdb_munmap(tdb);
396         }
397         SAFE_FREE(tdb->name);
398         if (tdb->fd != -1)
399                 ret = close(tdb->fd);
400         SAFE_FREE(tdb->lockrecs);
401
402         /* Remove from contexts list */
403         for (i = &tdbs; *i; i = &(*i)->next) {
404                 if (*i == tdb) {
405                         *i = tdb->next;
406                         break;
407                 }
408         }
409
410         close(tdb->tracefd);
411         memset(tdb, 0, sizeof(*tdb));
412         SAFE_FREE(tdb);
413
414         return ret;
415 }
416
417 /* register a loging function */
418 void tdb_set_logging_function(struct tdb_context *tdb,
419                               const struct tdb_logging_context *log_ctx)
420 {
421         tdb->log = *log_ctx;
422 }
423
424 void *tdb_get_logging_private(struct tdb_context *tdb)
425 {
426         return tdb->log.log_private;
427 }
428
429 /* reopen a tdb - this can be used after a fork to ensure that we have an independent
430    seek pointer from our parent and to re-establish locks */
431 int tdb_reopen(struct tdb_context *tdb)
432 {
433         struct stat st;
434
435         if (tdb->flags & TDB_INTERNAL) {
436                 return 0; /* Nothing to do. */
437         }
438
439         if (tdb->num_locks != 0 || tdb->global_lock.count) {
440                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed with locks held\n"));
441                 goto fail;
442         }
443
444         if (tdb->transaction != 0) {
445                 TDB_LOG((tdb, TDB_DEBUG_ERROR, "tdb_reopen: reopen not allowed inside a transaction\n"));
446                 goto fail;
447         }
448
449         if (tdb_munmap(tdb) != 0) {
450                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: munmap failed (%s)\n", strerror(errno)));
451                 goto fail;
452         }
453         if (close(tdb->fd) != 0)
454                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: WARNING closing tdb->fd failed!\n"));
455         tdb->fd = open(tdb->name, tdb->open_flags & ~(O_CREAT|O_TRUNC), 0);
456         if (tdb->fd == -1) {
457                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: open failed (%s)\n", strerror(errno)));
458                 goto fail;
459         }
460         if ((tdb->flags & TDB_CLEAR_IF_FIRST) && 
461             (tdb->methods->tdb_brlock(tdb, ACTIVE_LOCK, F_RDLCK, F_SETLKW, 0, 1) == -1)) {
462                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: failed to obtain active lock\n"));
463                 goto fail;
464         }
465         if (fstat(tdb->fd, &st) != 0) {
466                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: fstat failed (%s)\n", strerror(errno)));
467                 goto fail;
468         }
469         if (st.st_ino != tdb->inode || st.st_dev != tdb->device) {
470                 TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_reopen: file dev/inode has changed!\n"));
471                 goto fail;
472         }
473         tdb_mmap(tdb);
474
475         return 0;
476
477 fail:
478         tdb_close(tdb);
479         return -1;
480 }
481
482 /* reopen all tdb's */
483 int tdb_reopen_all(int parent_longlived)
484 {
485         struct tdb_context *tdb;
486
487         for (tdb=tdbs; tdb; tdb = tdb->next) {
488                 /*
489                  * If the parent is longlived (ie. a
490                  * parent daemon architecture), we know
491                  * it will keep it's active lock on a
492                  * tdb opened with CLEAR_IF_FIRST. Thus
493                  * for child processes we don't have to
494                  * add an active lock. This is essential
495                  * to improve performance on systems that
496                  * keep POSIX locks as a non-scalable data
497                  * structure in the kernel.
498                  */
499                 if (parent_longlived) {
500                         /* Ensure no clear-if-first. */
501                         tdb->flags &= ~TDB_CLEAR_IF_FIRST;
502                 }
503
504                 if (tdb_reopen(tdb) != 0)
505                         return -1;
506         }
507
508         return 0;
509 }