source: rtems-libbsd/freebsd-userspace/lib/libc/db/btree/bt_open.c @ e4e1746

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since e4e1746 was e4e1746, checked in by Jennifer Averett <jennifer.averett@…>, on 09/12/12 at 15:59:41

Added userspace db files.

  • Property mode set to 100644
File size: 11.1 KB
Line 
1#include "port_before.h"
2
3/*-
4 * Copyright (c) 1990, 1993, 1994
5 *      The Regents of the University of California.  All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Mike Olson.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 *    may be used to endorse or promote products derived from this software
20 *    without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#if defined(LIBC_SCCS) && !defined(lint)
36static char sccsid[] = "@(#)bt_open.c   8.10 (Berkeley) 8/17/94";
37#endif /* LIBC_SCCS and not lint */
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD$");
40
41/*
42 * Implementation of btree access method for 4.4BSD.
43 *
44 * The design here was originally based on that of the btree access method
45 * used in the Postgres database system at UC Berkeley.  This implementation
46 * is wholly independent of the Postgres code.
47 */
48
49#include "namespace.h"
50#include <sys/param.h>
51#include <sys/stat.h>
52
53#include <errno.h>
54#include <fcntl.h>
55#include <limits.h>
56#include <signal.h>
57#include <stdio.h>
58#include <stdlib.h>
59#include <string.h>
60#include <unistd.h>
61#include "un-namespace.h"
62
63#include <db.h>
64#include "btree.h"
65
66#ifdef DEBUG
67#undef  MINPSIZE
68#define MINPSIZE        128
69#endif
70
71static int byteorder(void);
72static int nroot(BTREE *);
73static int tmp(void);
74
75/*
76 * __BT_OPEN -- Open a btree.
77 *
78 * Creates and fills a DB struct, and calls the routine that actually
79 * opens the btree.
80 *
81 * Parameters:
82 *      fname:  filename (NULL for in-memory trees)
83 *      flags:  open flag bits
84 *      mode:   open permission bits
85 *      b:      BTREEINFO pointer
86 *
87 * Returns:
88 *      NULL on failure, pointer to DB on success.
89 *
90 */
91DB *
92__bt_open(const char *fname, int flags, int mode, const BTREEINFO *openinfo, int dflags)
93{
94        struct stat sb;
95        BTMETA m;
96        BTREE *t;
97        BTREEINFO b;
98        DB *dbp;
99        pgno_t ncache;
100        ssize_t nr;
101        int machine_lorder, saved_errno;
102
103        t = NULL;
104
105        /*
106         * Intention is to make sure all of the user's selections are okay
107         * here and then use them without checking.  Can't be complete, since
108         * we don't know the right page size, lorder or flags until the backing
109         * file is opened.  Also, the file's page size can cause the cachesize
110         * to change.
111         */
112        machine_lorder = byteorder();
113        if (openinfo) {
114                b = *openinfo;
115
116                /* Flags: R_DUP. */
117                if (b.flags & ~(R_DUP))
118                        goto einval;
119
120                /*
121                 * Page size must be indx_t aligned and >= MINPSIZE.  Default
122                 * page size is set farther on, based on the underlying file
123                 * transfer size.
124                 */
125                if (b.psize &&
126                    (b.psize < MINPSIZE || b.psize > MAX_PAGE_OFFSET + 1 ||
127                    b.psize & (sizeof(indx_t) - 1) ))
128                        goto einval;
129
130                /* Minimum number of keys per page; absolute minimum is 2. */
131                if (b.minkeypage) {
132                        if (b.minkeypage < 2)
133                                goto einval;
134                } else
135                        b.minkeypage = DEFMINKEYPAGE;
136
137                /* If no comparison, use default comparison and prefix. */
138                if (b.compare == NULL) {
139                        b.compare = __bt_defcmp;
140                        if (b.prefix == NULL)
141                                b.prefix = __bt_defpfx;
142                }
143
144                if (b.lorder == 0)
145                        b.lorder = machine_lorder;
146        } else {
147                b.compare = __bt_defcmp;
148                b.cachesize = 0;
149                b.flags = 0;
150                b.lorder = machine_lorder;
151                b.minkeypage = DEFMINKEYPAGE;
152                b.prefix = __bt_defpfx;
153                b.psize = 0;
154        }
155
156        /* Check for the ubiquitous PDP-11. */
157        if (b.lorder != BIG_ENDIAN && b.lorder != LITTLE_ENDIAN)
158                goto einval;
159
160        /* Allocate and initialize DB and BTREE structures. */
161        if ((t = (BTREE *)calloc(1, sizeof(BTREE))) == NULL)
162                goto err;
163        t->bt_fd = -1;                  /* Don't close unopened fd on error. */
164        t->bt_lorder = b.lorder;
165        t->bt_order = NOT;
166        t->bt_cmp = b.compare;
167        t->bt_pfx = b.prefix;
168        t->bt_rfd = -1;
169
170        if ((t->bt_dbp = dbp = (DB *)calloc(1, sizeof(DB))) == NULL)
171                goto err;
172        if (t->bt_lorder != machine_lorder)
173                F_SET(t, B_NEEDSWAP);
174
175        dbp->type = DB_BTREE;
176        dbp->internal = t;
177        dbp->close = __bt_close;
178        dbp->del = __bt_delete;
179        dbp->fd = __bt_fd;
180        dbp->get = __bt_get;
181        dbp->put = __bt_put;
182        dbp->seq = __bt_seq;
183        dbp->sync = __bt_sync;
184
185        /*
186         * If no file name was supplied, this is an in-memory btree and we
187         * open a backing temporary file.  Otherwise, it's a disk-based tree.
188         */
189        if (fname) {
190                switch (flags & O_ACCMODE) {
191                case O_RDONLY:
192                        F_SET(t, B_RDONLY);
193                        break;
194                case O_RDWR:
195                        break;
196                case O_WRONLY:
197                default:
198                        goto einval;
199                }
200
201                if ((t->bt_fd = _open(fname, flags, mode)) < 0)
202                        goto err;
203
204        } else {
205                if ((flags & O_ACCMODE) != O_RDWR)
206                        goto einval;
207                if ((t->bt_fd = tmp()) == -1)
208                        goto err;
209                F_SET(t, B_INMEM);
210        }
211
212        if (_fcntl(t->bt_fd, F_SETFD, 1) == -1)
213                goto err;
214
215        if (_fstat(t->bt_fd, &sb))
216                goto err;
217        if (sb.st_size) {
218                if ((nr = _read(t->bt_fd, &m, sizeof(BTMETA))) < 0)
219                        goto err;
220                if (nr != sizeof(BTMETA))
221                        goto eftype;
222
223                /*
224                 * Read in the meta-data.  This can change the notion of what
225                 * the lorder, page size and flags are, and, when the page size
226                 * changes, the cachesize value can change too.  If the user
227                 * specified the wrong byte order for an existing database, we
228                 * don't bother to return an error, we just clear the NEEDSWAP
229                 * bit.
230                 */
231                if (m.magic == BTREEMAGIC)
232                        F_CLR(t, B_NEEDSWAP);
233                else {
234                        F_SET(t, B_NEEDSWAP);
235                        M_32_SWAP(m.magic);
236                        M_32_SWAP(m.version);
237                        M_32_SWAP(m.psize);
238                        M_32_SWAP(m.free);
239                        M_32_SWAP(m.nrecs);
240                        M_32_SWAP(m.flags);
241                }
242                if (m.magic != BTREEMAGIC || m.version != BTREEVERSION)
243                        goto eftype;
244                if (m.psize < MINPSIZE || m.psize > MAX_PAGE_OFFSET + 1 ||
245                    m.psize & (sizeof(indx_t) - 1) )
246                        goto eftype;
247                if (m.flags & ~SAVEMETA)
248                        goto eftype;
249                b.psize = m.psize;
250                F_SET(t, m.flags);
251                t->bt_free = m.free;
252                t->bt_nrecs = m.nrecs;
253        } else {
254                /*
255                 * Set the page size to the best value for I/O to this file.
256                 * Don't overflow the page offset type.
257                 */
258                if (b.psize == 0) {
259                        b.psize = sb.st_blksize;
260                        if (b.psize < MINPSIZE)
261                                b.psize = MINPSIZE;
262                        if (b.psize > MAX_PAGE_OFFSET + 1)
263                                b.psize = MAX_PAGE_OFFSET + 1;
264                }
265
266                /* Set flag if duplicates permitted. */
267                if (!(b.flags & R_DUP))
268                        F_SET(t, B_NODUPS);
269
270                t->bt_free = P_INVALID;
271                t->bt_nrecs = 0;
272                F_SET(t, B_METADIRTY);
273        }
274
275        t->bt_psize = b.psize;
276
277        /* Set the cache size; must be a multiple of the page size. */
278        if (b.cachesize && b.cachesize & (b.psize - 1) )
279                b.cachesize += (~b.cachesize & (b.psize - 1) ) + 1;
280        if (b.cachesize < b.psize * MINCACHE)
281                b.cachesize = b.psize * MINCACHE;
282
283        /* Calculate number of pages to cache. */
284        ncache = (b.cachesize + t->bt_psize - 1) / t->bt_psize;
285
286        /*
287         * The btree data structure requires that at least two keys can fit on
288         * a page, but other than that there's no fixed requirement.  The user
289         * specified a minimum number per page, and we translated that into the
290         * number of bytes a key/data pair can use before being placed on an
291         * overflow page.  This calculation includes the page header, the size
292         * of the index referencing the leaf item and the size of the leaf item
293         * structure.  Also, don't let the user specify a minkeypage such that
294         * a key/data pair won't fit even if both key and data are on overflow
295         * pages.
296         */
297        t->bt_ovflsize = (t->bt_psize - BTDATAOFF) / b.minkeypage -
298            (sizeof(indx_t) + NBLEAFDBT(0, 0));
299        if (t->bt_ovflsize < NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t))
300                t->bt_ovflsize =
301                    NBLEAFDBT(NOVFLSIZE, NOVFLSIZE) + sizeof(indx_t);
302
303        /* Initialize the buffer pool. */
304        if ((t->bt_mp =
305            mpool_open(NULL, t->bt_fd, t->bt_psize, ncache)) == NULL)
306                goto err;
307        if (!F_ISSET(t, B_INMEM))
308                mpool_filter(t->bt_mp, __bt_pgin, __bt_pgout, t);
309
310        /* Create a root page if new tree. */
311        if (nroot(t) == RET_ERROR)
312                goto err;
313
314        /* Global flags. */
315        if (dflags & DB_LOCK)
316                F_SET(t, B_DB_LOCK);
317        if (dflags & DB_SHMEM)
318                F_SET(t, B_DB_SHMEM);
319        if (dflags & DB_TXN)
320                F_SET(t, B_DB_TXN);
321
322        return (dbp);
323
324einval: errno = EINVAL;
325        goto err;
326
327eftype: errno = EFTYPE;
328        goto err;
329
330err:    saved_errno = errno;
331        if (t) {
332                if (t->bt_dbp)
333                        free(t->bt_dbp);
334                if (t->bt_fd != -1)
335                        (void)_close(t->bt_fd);
336                free(t);
337        }
338        errno = saved_errno;
339        return (NULL);
340}
341
342/*
343 * NROOT -- Create the root of a new tree.
344 *
345 * Parameters:
346 *      t:      tree
347 *
348 * Returns:
349 *      RET_ERROR, RET_SUCCESS
350 */
351static int
352nroot(BTREE *t)
353{
354        PAGE *meta, *root;
355        pgno_t npg;
356
357        if ((root = mpool_get(t->bt_mp, 1, 0)) != NULL) {
358                if (root->lower == 0 &&
359                    root->pgno == 0 &&
360                    root->linp[0] == 0) {
361                        mpool_delete(t->bt_mp, root);
362                        errno = EINVAL;
363                } else {
364                        mpool_put(t->bt_mp, root, 0);
365                        return (RET_SUCCESS);
366                }
367        }
368        if (errno != EINVAL)            /* It's OK to not exist. */
369                return (RET_ERROR);
370        errno = 0;
371
372        if ((meta = mpool_new(t->bt_mp, &npg, MPOOL_PAGE_NEXT)) == NULL)
373                return (RET_ERROR);
374
375        if ((root = mpool_new(t->bt_mp, &npg, MPOOL_PAGE_NEXT)) == NULL)
376                return (RET_ERROR);
377
378        if (npg != P_ROOT)
379                return (RET_ERROR);
380        root->pgno = npg;
381        root->prevpg = root->nextpg = P_INVALID;
382        root->lower = BTDATAOFF;
383        root->upper = t->bt_psize;
384        root->flags = P_BLEAF;
385        memset(meta, 0, t->bt_psize);
386        mpool_put(t->bt_mp, meta, MPOOL_DIRTY);
387        mpool_put(t->bt_mp, root, MPOOL_DIRTY);
388        return (RET_SUCCESS);
389}
390
391static int
392tmp(void)
393{
394        sigset_t set, oset;
395        int fd, len;
396        char *envtmp = NULL;
397        char path[MAXPATHLEN];
398
399        if (issetugid() == 0)
400                envtmp = getenv("TMPDIR");
401        len = snprintf(path,
402            sizeof(path), "%s/bt.XXXXXXXXXX", envtmp ? envtmp : "/tmp");
403        if (len < 0 || len >= (int)sizeof(path)) {
404                errno = ENAMETOOLONG;
405                return(-1);
406        }
407
408        (void)sigfillset(&set);
409        (void)_sigprocmask(SIG_BLOCK, &set, &oset);
410        if ((fd = mkstemp(path)) != -1)
411                (void)unlink(path);
412        (void)_sigprocmask(SIG_SETMASK, &oset, NULL);
413        return(fd);
414}
415
416static int
417byteorder(void)
418{
419        u_int32_t x;
420        u_char *p;
421
422        x = 0x01020304;
423        p = (u_char *)&x;
424        switch (*p) {
425        case 1:
426                return (BIG_ENDIAN);
427        case 4:
428                return (LITTLE_ENDIAN);
429        default:
430                return (0);
431        }
432}
433
434int
435__bt_fd(const DB *dbp)
436{
437        BTREE *t;
438
439        t = dbp->internal;
440
441        /* Toss any page pinned across calls. */
442        if (t->bt_pinned != NULL) {
443                mpool_put(t->bt_mp, t->bt_pinned, 0);
444                t->bt_pinned = NULL;
445        }
446
447        /* In-memory database can't have a file descriptor. */
448        if (F_ISSET(t, B_INMEM)) {
449                errno = ENOENT;
450                return (-1);
451        }
452        return (t->bt_fd);
453}
Note: See TracBrowser for help on using the repository browser.