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