]> git.ozlabs.org Git - ccan/blob - ccan/tdb/tdb_private.h
ccanize tdb further, and add simple test.
[ccan] / ccan / tdb / tdb_private.h
1 #ifndef TDB_PRIVATE_H
2 #define TDB_PRIVATE_H
3  /* 
4    Unix SMB/CIFS implementation.
5
6    trivial database library - private includes
7
8    Copyright (C) Andrew Tridgell              2005
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 #ifdef _SAMBA_BUILD_
29 #include "replace.h"
30 #include "system/filesys.h"
31 #include "system/time.h"
32 #include "system/shmem.h"
33 #include "system/select.h"
34 #include "system/wait.h"
35 #else
36 #define _XOPEN_SOURCE 500
37 #include <stdint.h>
38 #include <stdbool.h>
39 #include <stdlib.h>
40 #include <sys/time.h>
41 #include <sys/mman.h>
42 #include <unistd.h>
43 #include <fcntl.h>
44 #include <string.h>
45 #include <errno.h>
46 #include <stdio.h>
47 #include <utime.h>
48 #include "config.h"
49 #endif
50 #include "tdb.h"
51
52 #if HAVE_GETPAGESIZE
53 #define getpagesize() 0x2000
54 #endif
55
56 typedef uint32_t tdb_len_t;
57 typedef uint32_t tdb_off_t;
58
59 #ifndef offsetof
60 #define offsetof(t,f) ((unsigned int)&((t *)0)->f)
61 #endif
62
63 #define TDB_MAGIC_FOOD "TDB file\n"
64 #define TDB_VERSION (0x26011967 + 6)
65 #define TDB_MAGIC (0x26011999U)
66 #define TDB_FREE_MAGIC (~TDB_MAGIC)
67 #define TDB_DEAD_MAGIC (0xFEE1DEAD)
68 #define TDB_RECOVERY_MAGIC (0xf53bc0e7U)
69 #define TDB_ALIGNMENT 4
70 #define DEFAULT_HASH_SIZE 131
71 #define FREELIST_TOP (sizeof(struct tdb_header))
72 #define TDB_ALIGN(x,a) (((x) + (a)-1) & ~((a)-1))
73 #define TDB_BYTEREV(x) (((((x)&0xff)<<24)|((x)&0xFF00)<<8)|(((x)>>8)&0xFF00)|((x)>>24))
74 #define TDB_DEAD(r) ((r)->magic == TDB_DEAD_MAGIC)
75 #define TDB_BAD_MAGIC(r) ((r)->magic != TDB_MAGIC && !TDB_DEAD(r))
76 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off_t))
77 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
78 #define TDB_DATA_START(hash_size) (TDB_HASH_TOP(hash_size-1) + sizeof(tdb_off_t))
79 #define TDB_RECOVERY_HEAD offsetof(struct tdb_header, recovery_start)
80 #define TDB_SEQNUM_OFS    offsetof(struct tdb_header, sequence_number)
81 #define TDB_PAD_BYTE 0x42
82 #define TDB_PAD_U32  0x42424242
83
84 /* NB assumes there is a local variable called "tdb" that is the
85  * current context, also takes doubly-parenthesized print-style
86  * argument. */
87 #define TDB_LOG(x) tdb->log.log_fn x
88
89 /* lock offsets */
90 #define GLOBAL_LOCK      0
91 #define ACTIVE_LOCK      4
92 #define TRANSACTION_LOCK 8
93
94 /* free memory if the pointer is valid and zero the pointer */
95 #ifndef SAFE_FREE
96 #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); (x)=NULL;} } while(0)
97 #endif
98
99 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
100
101 #define DOCONV() (tdb->flags & TDB_CONVERT)
102 #define CONVERT(x) (DOCONV() ? tdb_convert(&x, sizeof(x)) : &x)
103
104
105 /* the body of the database is made of one list_struct for the free space
106    plus a separate data list for each hash value */
107 struct list_struct {
108         tdb_off_t next; /* offset of the next record in the list */
109         tdb_len_t rec_len; /* total byte length of record */
110         tdb_len_t key_len; /* byte length of key */
111         tdb_len_t data_len; /* byte length of data */
112         uint32_t full_hash; /* the full 32 bit hash of the key */
113         uint32_t magic;   /* try to catch errors */
114         /* the following union is implied:
115                 union {
116                         char record[rec_len];
117                         struct {
118                                 char key[key_len];
119                                 char data[data_len];
120                         }
121                         uint32_t totalsize; (tailer)
122                 }
123         */
124 };
125
126
127 /* this is stored at the front of every database */
128 struct tdb_header {
129         char magic_food[32]; /* for /etc/magic */
130         uint32_t version; /* version of the code */
131         uint32_t hash_size; /* number of hash entries */
132         tdb_off_t rwlocks; /* obsolete - kept to detect old formats */
133         tdb_off_t recovery_start; /* offset of transaction recovery region */
134         tdb_off_t sequence_number; /* used when TDB_SEQNUM is set */
135         tdb_off_t reserved[29];
136 };
137
138 struct tdb_lock_type {
139         int list;
140         uint32_t count;
141         uint32_t ltype;
142 };
143
144 struct tdb_traverse_lock {
145         struct tdb_traverse_lock *next;
146         uint32_t off;
147         uint32_t hash;
148         int lock_rw;
149 };
150
151
152 struct tdb_methods {
153         int (*tdb_read)(struct tdb_context *, tdb_off_t , void *, tdb_len_t , int );
154         int (*tdb_write)(struct tdb_context *, tdb_off_t, const void *, tdb_len_t);
155         void (*next_hash_chain)(struct tdb_context *, uint32_t *);
156         int (*tdb_oob)(struct tdb_context *, tdb_off_t , int );
157         int (*tdb_expand_file)(struct tdb_context *, tdb_off_t , tdb_off_t );
158         int (*tdb_brlock)(struct tdb_context *, tdb_off_t , int, int, int, size_t);
159 };
160
161 struct tdb_context {
162         char *name; /* the name of the database */
163         void *map_ptr; /* where it is currently mapped */
164         int fd; /* open file descriptor for the database */
165         tdb_len_t map_size; /* how much space has been mapped */
166         int read_only; /* opened read-only */
167         int traverse_read; /* read-only traversal */
168         int traverse_write; /* read-write traversal */
169         struct tdb_lock_type global_lock;
170         int num_lockrecs;
171         struct tdb_lock_type *lockrecs; /* only real locks, all with count>0 */
172         enum TDB_ERROR ecode; /* error code for last tdb error */
173         struct tdb_header header; /* a cached copy of the header */
174         uint32_t flags; /* the flags passed to tdb_open */
175         struct tdb_traverse_lock travlocks; /* current traversal locks */
176         struct tdb_context *next; /* all tdbs to avoid multiple opens */
177         dev_t device;   /* uniquely identifies this tdb */
178         ino_t inode;    /* uniquely identifies this tdb */
179         struct tdb_logging_context log;
180         unsigned int (*hash_fn)(TDB_DATA *key);
181         int open_flags; /* flags used in the open - needed by reopen */
182         unsigned int num_locks; /* number of chain locks held */
183         const struct tdb_methods *methods;
184         struct tdb_transaction *transaction;
185         int page_size;
186         int max_dead_records;
187         bool have_transaction_lock;
188         volatile sig_atomic_t *interrupt_sig_ptr;
189 };
190
191
192 /*
193   internal prototypes
194 */
195 int tdb_munmap(struct tdb_context *tdb);
196 void tdb_mmap(struct tdb_context *tdb);
197 int tdb_lock(struct tdb_context *tdb, int list, int ltype);
198 int tdb_lock_nonblock(struct tdb_context *tdb, int list, int ltype);
199 int tdb_unlock(struct tdb_context *tdb, int list, int ltype);
200 int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset, int rw_type, int lck_type, int probe, size_t len);
201 int tdb_transaction_lock(struct tdb_context *tdb, int ltype);
202 int tdb_transaction_unlock(struct tdb_context *tdb);
203 int tdb_brlock_upgrade(struct tdb_context *tdb, tdb_off_t offset, size_t len);
204 int tdb_write_lock_record(struct tdb_context *tdb, tdb_off_t off);
205 int tdb_write_unlock_record(struct tdb_context *tdb, tdb_off_t off);
206 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
207 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
208 void *tdb_convert(void *buf, uint32_t size);
209 int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
210 tdb_off_t tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct list_struct *rec);
211 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
212 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
213 int tdb_lock_record(struct tdb_context *tdb, tdb_off_t off);
214 int tdb_unlock_record(struct tdb_context *tdb, tdb_off_t off);
215 int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
216 int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
217 int tdb_do_delete(struct tdb_context *tdb, tdb_off_t rec_ptr, struct list_struct *rec);
218 unsigned char *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
219 int tdb_parse_data(struct tdb_context *tdb, TDB_DATA key,
220                    tdb_off_t offset, tdb_len_t len,
221                    int (*parser)(TDB_DATA key, TDB_DATA data,
222                                  void *private_data),
223                    void *private_data);
224 tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, uint32_t hash, int locktype,
225                            struct list_struct *rec);
226 void tdb_io_init(struct tdb_context *tdb);
227 int tdb_expand(struct tdb_context *tdb, tdb_off_t size);
228 int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off,
229                       struct list_struct *rec);
230
231
232 #endif