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