]>
git.saurik.com Git - apple/libc.git/blob - db/btree/FreeBSD/bt_open.c
c8a103a5fb9ed5b1307f9d2caa0687f4671e9052
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #if defined(LIBC_SCCS) && !defined(lint)
38 static char sccsid
[] = "@(#)bt_open.c 8.10 (Berkeley) 8/17/94";
39 #endif /* LIBC_SCCS and not lint */
40 #include <sys/cdefs.h>
41 __FBSDID("$FreeBSD: src/lib/libc/db/btree/bt_open.c,v 1.11 2002/03/22 21:52:01 obrien Exp $");
44 * Implementation of btree access method for 4.4BSD.
46 * The design here was originally based on that of the btree access method
47 * used in the Postgres database system at UC Berkeley. This implementation
48 * is wholly independent of the Postgres code.
51 #include "namespace.h"
52 #include <sys/param.h>
63 #include "un-namespace.h"
73 static int byteorder(void);
74 static int nroot(BTREE
*);
78 * __BT_OPEN -- Open a btree.
80 * Creates and fills a DB struct, and calls the routine that actually
84 * fname: filename (NULL for in-memory trees)
85 * flags: open flag bits
86 * mode: open permission bits
87 * b: BTREEINFO pointer
90 * NULL on failure, pointer to DB on success.
94 __bt_open(fname
, flags
, mode
, openinfo
, dflags
)
96 int flags
, mode
, dflags
;
97 const BTREEINFO
*openinfo
;
111 * Intention is to make sure all of the user's selections are okay
112 * here and then use them without checking. Can't be complete, since
113 * we don't know the right page size, lorder or flags until the backing
114 * file is opened. Also, the file's page size can cause the cachesize
117 machine_lorder
= byteorder();
122 if (b
.flags
& ~(R_DUP
))
126 * Page size must be indx_t aligned and >= MINPSIZE. Default
127 * page size is set farther on, based on the underlying file
131 (b
.psize
< MINPSIZE
|| b
.psize
> MAX_PAGE_OFFSET
+ 1 ||
132 b
.psize
& (sizeof(indx_t
) - 1) ))
135 /* Minimum number of keys per page; absolute minimum is 2. */
137 if (b
.minkeypage
< 2)
140 b
.minkeypage
= DEFMINKEYPAGE
;
142 /* If no comparison, use default comparison and prefix. */
143 if (b
.compare
== NULL
) {
144 b
.compare
= __bt_defcmp
;
145 if (b
.prefix
== NULL
)
146 b
.prefix
= __bt_defpfx
;
150 b
.lorder
= machine_lorder
;
152 b
.compare
= __bt_defcmp
;
155 b
.lorder
= machine_lorder
;
156 b
.minkeypage
= DEFMINKEYPAGE
;
157 b
.prefix
= __bt_defpfx
;
161 /* Check for the ubiquitous PDP-11. */
162 if (b
.lorder
!= BIG_ENDIAN
&& b
.lorder
!= LITTLE_ENDIAN
)
165 /* Allocate and initialize DB and BTREE structures. */
166 if ((t
= (BTREE
*)malloc(sizeof(BTREE
))) == NULL
)
168 memset(t
, 0, sizeof(BTREE
));
169 t
->bt_fd
= -1; /* Don't close unopened fd on error. */
170 t
->bt_lorder
= b
.lorder
;
172 t
->bt_cmp
= b
.compare
;
173 t
->bt_pfx
= b
.prefix
;
176 if ((t
->bt_dbp
= dbp
= (DB
*)malloc(sizeof(DB
))) == NULL
)
178 memset(t
->bt_dbp
, 0, sizeof(DB
));
179 if (t
->bt_lorder
!= machine_lorder
)
180 F_SET(t
, B_NEEDSWAP
);
182 dbp
->type
= DB_BTREE
;
184 dbp
->close
= __bt_close
;
185 dbp
->del
= __bt_delete
;
190 dbp
->sync
= __bt_sync
;
193 * If no file name was supplied, this is an in-memory btree and we
194 * open a backing temporary file. Otherwise, it's a disk-based tree.
197 switch (flags
& O_ACCMODE
) {
208 if ((t
->bt_fd
= _open(fname
, flags
, mode
)) < 0)
212 if ((flags
& O_ACCMODE
) != O_RDWR
)
214 if ((t
->bt_fd
= tmp()) == -1)
219 if (_fcntl(t
->bt_fd
, F_SETFD
, 1) == -1)
222 if (_fstat(t
->bt_fd
, &sb
))
225 if ((nr
= _read(t
->bt_fd
, &m
, sizeof(BTMETA
))) < 0)
227 if (nr
!= sizeof(BTMETA
))
231 * Read in the meta-data. This can change the notion of what
232 * the lorder, page size and flags are, and, when the page size
233 * changes, the cachesize value can change too. If the user
234 * specified the wrong byte order for an existing database, we
235 * don't bother to return an error, we just clear the NEEDSWAP
238 if (m
.magic
== BTREEMAGIC
)
239 F_CLR(t
, B_NEEDSWAP
);
241 F_SET(t
, B_NEEDSWAP
);
243 M_32_SWAP(m
.version
);
249 if (m
.magic
!= BTREEMAGIC
|| m
.version
!= BTREEVERSION
)
251 if (m
.psize
< MINPSIZE
|| m
.psize
> MAX_PAGE_OFFSET
+ 1 ||
252 m
.psize
& (sizeof(indx_t
) - 1) )
254 if (m
.flags
& ~SAVEMETA
)
259 t
->bt_nrecs
= m
.nrecs
;
262 * Set the page size to the best value for I/O to this file.
263 * Don't overflow the page offset type.
266 b
.psize
= sb
.st_blksize
;
267 if (b
.psize
< MINPSIZE
)
269 if (b
.psize
> MAX_PAGE_OFFSET
+ 1)
270 b
.psize
= MAX_PAGE_OFFSET
+ 1;
273 /* Set flag if duplicates permitted. */
274 if (!(b
.flags
& R_DUP
))
277 t
->bt_free
= P_INVALID
;
279 F_SET(t
, B_METADIRTY
);
282 t
->bt_psize
= b
.psize
;
284 /* Set the cache size; must be a multiple of the page size. */
285 if (b
.cachesize
&& b
.cachesize
& (b
.psize
- 1) )
286 b
.cachesize
+= (~b
.cachesize
& (b
.psize
- 1) ) + 1;
287 if (b
.cachesize
< b
.psize
* MINCACHE
)
288 b
.cachesize
= b
.psize
* MINCACHE
;
290 /* Calculate number of pages to cache. */
291 ncache
= (b
.cachesize
+ t
->bt_psize
- 1) / t
->bt_psize
;
294 * The btree data structure requires that at least two keys can fit on
295 * a page, but other than that there's no fixed requirement. The user
296 * specified a minimum number per page, and we translated that into the
297 * number of bytes a key/data pair can use before being placed on an
298 * overflow page. This calculation includes the page header, the size
299 * of the index referencing the leaf item and the size of the leaf item
300 * structure. Also, don't let the user specify a minkeypage such that
301 * a key/data pair won't fit even if both key and data are on overflow
304 t
->bt_ovflsize
= (t
->bt_psize
- BTDATAOFF
) / b
.minkeypage
-
305 (sizeof(indx_t
) + NBLEAFDBT(0, 0));
306 if (t
->bt_ovflsize
< NBLEAFDBT(NOVFLSIZE
, NOVFLSIZE
) + sizeof(indx_t
))
308 NBLEAFDBT(NOVFLSIZE
, NOVFLSIZE
) + sizeof(indx_t
);
310 /* Initialize the buffer pool. */
312 mpool_open(NULL
, t
->bt_fd
, t
->bt_psize
, ncache
)) == NULL
)
314 if (!F_ISSET(t
, B_INMEM
))
315 mpool_filter(t
->bt_mp
, __bt_pgin
, __bt_pgout
, t
);
317 /* Create a root page if new tree. */
318 if (nroot(t
) == RET_ERROR
)
322 if (dflags
& DB_LOCK
)
324 if (dflags
& DB_SHMEM
)
325 F_SET(t
, B_DB_SHMEM
);
331 einval
: errno
= EINVAL
;
334 eftype
: errno
= EFTYPE
;
341 (void)_close(t
->bt_fd
);
348 * NROOT -- Create the root of a new tree.
354 * RET_ERROR, RET_SUCCESS
363 if ((meta
= mpool_get(t
->bt_mp
, 0, 0)) != NULL
) {
364 mpool_put(t
->bt_mp
, meta
, 0);
365 return (RET_SUCCESS
);
367 if (errno
!= EINVAL
) /* It's OK to not exist. */
371 if ((meta
= mpool_new(t
->bt_mp
, &npg
)) == NULL
)
374 if ((root
= mpool_new(t
->bt_mp
, &npg
)) == NULL
)
380 root
->prevpg
= root
->nextpg
= P_INVALID
;
381 root
->lower
= BTDATAOFF
;
382 root
->upper
= t
->bt_psize
;
383 root
->flags
= P_BLEAF
;
384 memset(meta
, 0, t
->bt_psize
);
385 mpool_put(t
->bt_mp
, meta
, MPOOL_DIRTY
);
386 mpool_put(t
->bt_mp
, root
, MPOOL_DIRTY
);
387 return (RET_SUCCESS
);
396 char path
[MAXPATHLEN
];
398 if (issetugid() == 0)
399 envtmp
= getenv("TMPDIR");
401 sizeof(path
), "%s/bt.XXXXXXXXXX", envtmp
? envtmp
: "/tmp");
403 (void)sigfillset(&set
);
404 (void)_sigprocmask(SIG_BLOCK
, &set
, &oset
);
405 if ((fd
= mkstemp(path
)) != -1)
407 (void)_sigprocmask(SIG_SETMASK
, &oset
, NULL
);
423 return (LITTLE_ENDIAN
);
437 /* Toss any page pinned across calls. */
438 if (t
->bt_pinned
!= NULL
) {
439 mpool_put(t
->bt_mp
, t
->bt_pinned
, 0);
443 /* In-memory database can't have a file descriptor. */
444 if (F_ISSET(t
, B_INMEM
)) {