]> git.ozlabs.org Git - ccan/blob - ccan/tdb/tdb_private.h
New test for endianness.
[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 /* #define TDB_TRACE 1 */
53
54 #if HAVE_GETPAGESIZE
55 #define getpagesize() 0x2000
56 #endif
57
58 typedef uint32_t tdb_len_t;
59 typedef uint32_t tdb_off_t;
60
61 #ifndef offsetof
62 #define offsetof(t,f) ((unsigned int)&((t *)0)->f)
63 #endif
64
65 #define TDB_MAGIC_FOOD "TDB file\n"
66 #define TDB_VERSION (0x26011967 + 6)
67 #define TDB_MAGIC (0x26011999U)
68 #define TDB_FREE_MAGIC (~TDB_MAGIC)
69 #define TDB_DEAD_MAGIC (0xFEE1DEAD)
70 #define TDB_RECOVERY_MAGIC (0xf53bc0e7U)
71 #define TDB_ALIGNMENT 4
72 #define DEFAULT_HASH_SIZE 131
73 #define FREELIST_TOP (sizeof(struct tdb_header))
74 #define TDB_ALIGN(x,a) (((x) + (a)-1) & ~((a)-1))
75 #define TDB_BYTEREV(x) (((((x)&0xff)<<24)|((x)&0xFF00)<<8)|(((x)>>8)&0xFF00)|((x)>>24))
76 #define TDB_DEAD(r) ((r)->magic == TDB_DEAD_MAGIC)
77 #define TDB_BAD_MAGIC(r) ((r)->magic != TDB_MAGIC && !TDB_DEAD(r))
78 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off_t))
79 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
80 #define TDB_DATA_START(hash_size) (TDB_HASH_TOP(hash_size-1) + sizeof(tdb_off_t))
81 #define TDB_RECOVERY_HEAD offsetof(struct tdb_header, recovery_start)
82 #define TDB_SEQNUM_OFS    offsetof(struct tdb_header, sequence_number)
83 #define TDB_PAD_BYTE 0x42
84 #define TDB_PAD_U32  0x42424242
85
86 /* NB assumes there is a local variable called "tdb" that is the
87  * current context, also takes doubly-parenthesized print-style
88  * argument. */
89 #define TDB_LOG(x) tdb->log.log_fn x
90
91 #ifdef TDB_TRACE
92 void tdb_trace(struct tdb_context *tdb, const char *op);
93 void tdb_trace_seqnum(struct tdb_context *tdb, uint32_t seqnum, const char *op);
94 void tdb_trace_open(struct tdb_context *tdb, const char *op,
95                     unsigned hash_size, unsigned tdb_flags, unsigned open_flags);
96 void tdb_trace_ret(struct tdb_context *tdb, const char *op, int ret);
97 void tdb_trace_retrec(struct tdb_context *tdb, const char *op, TDB_DATA ret);
98 void tdb_trace_1rec(struct tdb_context *tdb, const char *op,
99                     TDB_DATA rec);
100 void tdb_trace_1rec_ret(struct tdb_context *tdb, const char *op,
101                         TDB_DATA rec, int ret);
102 void tdb_trace_1rec_retrec(struct tdb_context *tdb, const char *op,
103                            TDB_DATA rec, TDB_DATA ret);
104 void tdb_trace_2rec_flag_ret(struct tdb_context *tdb, const char *op,
105                              TDB_DATA rec1, TDB_DATA rec2, unsigned flag,
106                              int ret);
107 void tdb_trace_2rec_retrec(struct tdb_context *tdb, const char *op,
108                            TDB_DATA rec1, TDB_DATA rec2, TDB_DATA ret);
109 #else
110 #define tdb_trace(tdb, op)
111 #define tdb_trace_seqnum(tdb, seqnum, op)
112 #define tdb_trace_open(tdb, op, hash_size, tdb_flags, open_flags)
113 #define tdb_trace_ret(tdb, op, ret)
114 #define tdb_trace_retrec(tdb, op, ret)
115 #define tdb_trace_1rec(tdb, op, rec)
116 #define tdb_trace_1rec_ret(tdb, op, rec, ret)
117 #define tdb_trace_1rec_retrec(tdb, op, rec, ret)
118 #define tdb_trace_2rec_flag_ret(tdb, op, rec1, rec2, flag, ret)
119 #define tdb_trace_2rec_retrec(tdb, op, rec1, rec2, ret)
120 #endif /* !TDB_TRACE */
121
122 /* lock offsets */
123 #define GLOBAL_LOCK      0
124 #define ACTIVE_LOCK      4
125 #define TRANSACTION_LOCK 8
126
127 /* free memory if the pointer is valid and zero the pointer */
128 #ifndef SAFE_FREE
129 #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); (x)=NULL;} } while(0)
130 #endif
131
132 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
133
134 #define DOCONV() (tdb->flags & TDB_CONVERT)
135 #define CONVERT(x) (DOCONV() ? tdb_convert(&x, sizeof(x)) : &x)
136
137
138 /* the body of the database is made of one list_struct for the free space
139    plus a separate data list for each hash value */
140 struct list_struct {
141         tdb_off_t next; /* offset of the next record in the list */
142         tdb_len_t rec_len; /* total byte length of record */
143         tdb_len_t key_len; /* byte length of key */
144         tdb_len_t data_len; /* byte length of data */
145         uint32_t full_hash; /* the full 32 bit hash of the key */
146         uint32_t magic;   /* try to catch errors */
147         /* the following union is implied:
148                 union {
149                         char record[rec_len];
150                         struct {
151                                 char key[key_len];
152                                 char data[data_len];
153                         }
154                         uint32_t totalsize; (tailer)
155                 }
156         */
157 };
158
159
160 /* this is stored at the front of every database */
161 struct tdb_header {
162         char magic_food[32]; /* for /etc/magic */
163         uint32_t version; /* version of the code */
164         uint32_t hash_size; /* number of hash entries */
165         tdb_off_t rwlocks; /* obsolete - kept to detect old formats */
166         tdb_off_t recovery_start; /* offset of transaction recovery region */
167         tdb_off_t sequence_number; /* used when TDB_SEQNUM is set */
168         tdb_off_t reserved[29];
169 };
170
171 struct tdb_lock_type {
172         int list;
173         uint32_t count;
174         uint32_t ltype;
175 };
176
177 struct tdb_traverse_lock {
178         struct tdb_traverse_lock *next;
179         uint32_t off;
180         uint32_t hash;
181         int lock_rw;
182 };
183
184
185 struct tdb_methods {
186         int (*tdb_read)(struct tdb_context *, tdb_off_t , void *, tdb_len_t , int );
187         int (*tdb_write)(struct tdb_context *, tdb_off_t, const void *, tdb_len_t);
188         void (*next_hash_chain)(struct tdb_context *, uint32_t *);
189         int (*tdb_oob)(struct tdb_context *, tdb_off_t , int );
190         int (*tdb_expand_file)(struct tdb_context *, tdb_off_t , tdb_off_t );
191         int (*tdb_brlock)(struct tdb_context *, tdb_off_t , int, int, int, size_t);
192 };
193
194 struct tdb_context {
195         char *name; /* the name of the database */
196         void *map_ptr; /* where it is currently mapped */
197         int fd; /* open file descriptor for the database */
198         tdb_len_t map_size; /* how much space has been mapped */
199         int read_only; /* opened read-only */
200         int traverse_read; /* read-only traversal */
201         int traverse_write; /* read-write traversal */
202         struct tdb_lock_type global_lock;
203         int num_lockrecs;
204         struct tdb_lock_type *lockrecs; /* only real locks, all with count>0 */
205         enum TDB_ERROR ecode; /* error code for last tdb error */
206         struct tdb_header header; /* a cached copy of the header */
207         uint32_t flags; /* the flags passed to tdb_open */
208         struct tdb_traverse_lock travlocks; /* current traversal locks */
209         struct tdb_context *next; /* all tdbs to avoid multiple opens */
210         dev_t device;   /* uniquely identifies this tdb */
211         ino_t inode;    /* uniquely identifies this tdb */
212         struct tdb_logging_context log;
213         unsigned int (*hash_fn)(TDB_DATA *key);
214         int open_flags; /* flags used in the open - needed by reopen */
215         unsigned int num_locks; /* number of chain locks held */
216         const struct tdb_methods *methods;
217         struct tdb_transaction *transaction;
218         int page_size;
219         int max_dead_records;
220         int transaction_lock_count;
221 #ifdef TDB_TRACE
222         int tracefd;
223         uint32_t transaction_prepare_seqnum;
224 #endif
225         volatile sig_atomic_t *interrupt_sig_ptr;
226 };
227
228
229 /*
230   internal prototypes
231 */
232 int tdb_munmap(struct tdb_context *tdb);
233 void tdb_mmap(struct tdb_context *tdb);
234 int tdb_lock(struct tdb_context *tdb, int list, int ltype);
235 int tdb_lock_nonblock(struct tdb_context *tdb, int list, int ltype);
236 int tdb_unlock(struct tdb_context *tdb, int list, int ltype);
237 int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset, int rw_type, int lck_type, int probe, size_t len);
238 int tdb_transaction_lock(struct tdb_context *tdb, int ltype);
239 int tdb_transaction_unlock(struct tdb_context *tdb);
240 int tdb_brlock_upgrade(struct tdb_context *tdb, tdb_off_t offset, size_t len);
241 int tdb_write_lock_record(struct tdb_context *tdb, tdb_off_t off);
242 int tdb_write_unlock_record(struct tdb_context *tdb, tdb_off_t off);
243 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
244 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
245 void *tdb_convert(void *buf, uint32_t size);
246 int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
247 tdb_off_t tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct list_struct *rec);
248 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
249 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
250 int tdb_lock_record(struct tdb_context *tdb, tdb_off_t off);
251 int tdb_unlock_record(struct tdb_context *tdb, tdb_off_t off);
252 int tdb_transaction_cancel_internal(struct tdb_context *tdb);
253 int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
254 int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
255 int tdb_do_delete(struct tdb_context *tdb, tdb_off_t rec_ptr, struct list_struct *rec);
256 unsigned char *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
257 int tdb_parse_data(struct tdb_context *tdb, TDB_DATA key,
258                    tdb_off_t offset, tdb_len_t len,
259                    int (*parser)(TDB_DATA key, TDB_DATA data,
260                                  void *private_data),
261                    void *private_data);
262 tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, uint32_t hash, int locktype,
263                            struct list_struct *rec);
264 void tdb_io_init(struct tdb_context *tdb);
265 int tdb_expand(struct tdb_context *tdb, tdb_off_t size);
266 int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off,
267                       struct list_struct *rec);
268
269
270 #endif