d16dcb93afe67a26f814c2f55d31ce13ed78b1f7
[ira/wip.git] / source / lib / tdb / common / tdb_private.h
1  /* 
2    Unix SMB/CIFS implementation.
3
4    trivial database library - private includes
5
6    Copyright (C) Andrew Tridgell              2005
7    
8      ** NOTE! The following LGPL license applies to the tdb
9      ** library. This does NOT imply that all of Samba is released
10      ** under the LGPL
11    
12    This library is free software; you can redistribute it and/or
13    modify it under the terms of the GNU Lesser General Public
14    License as published by the Free Software Foundation; either
15    version 3 of the License, or (at your option) any later version.
16
17    This library is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20    Lesser General Public License for more details.
21
22    You should have received a copy of the GNU Lesser General Public
23    License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 */
25
26 #include "replace.h"
27 #include "system/filesys.h"
28 #include "system/time.h"
29 #include "system/shmem.h"
30 #include "system/select.h"
31 #include "tdb.h"
32
33 #ifndef u32
34 #define u32 unsigned
35 #endif
36
37 #ifndef HAVE_GETPAGESIZE
38 #define getpagesize() 0x2000
39 #endif
40
41 typedef u32 tdb_len_t;
42 typedef u32 tdb_off_t;
43
44 #ifndef offsetof
45 #define offsetof(t,f) ((unsigned int)&((t *)0)->f)
46 #endif
47
48 #define TDB_MAGIC_FOOD "TDB file\n"
49 #define TDB_VERSION (0x26011967 + 6)
50 #define TDB_MAGIC (0x26011999U)
51 #define TDB_FREE_MAGIC (~TDB_MAGIC)
52 #define TDB_DEAD_MAGIC (0xFEE1DEAD)
53 #define TDB_RECOVERY_MAGIC (0xf53bc0e7U)
54 #define TDB_ALIGNMENT 4
55 #define MIN_REC_SIZE (2*sizeof(struct list_struct) + TDB_ALIGNMENT)
56 #define DEFAULT_HASH_SIZE 131
57 #define FREELIST_TOP (sizeof(struct tdb_header))
58 #define TDB_ALIGN(x,a) (((x) + (a)-1) & ~((a)-1))
59 #define TDB_BYTEREV(x) (((((x)&0xff)<<24)|((x)&0xFF00)<<8)|(((x)>>8)&0xFF00)|((x)>>24))
60 #define TDB_DEAD(r) ((r)->magic == TDB_DEAD_MAGIC)
61 #define TDB_BAD_MAGIC(r) ((r)->magic != TDB_MAGIC && !TDB_DEAD(r))
62 #define TDB_HASH_TOP(hash) (FREELIST_TOP + (BUCKET(hash)+1)*sizeof(tdb_off_t))
63 #define TDB_HASHTABLE_SIZE(tdb) ((tdb->header.hash_size+1)*sizeof(tdb_off_t))
64 #define TDB_DATA_START(hash_size) TDB_HASH_TOP(hash_size-1)
65 #define TDB_RECOVERY_HEAD offsetof(struct tdb_header, recovery_start)
66 #define TDB_SEQNUM_OFS    offsetof(struct tdb_header, sequence_number)
67 #define TDB_PAD_BYTE 0x42
68 #define TDB_PAD_U32  0x42424242
69
70 /* NB assumes there is a local variable called "tdb" that is the
71  * current context, also takes doubly-parenthesized print-style
72  * argument. */
73 #define TDB_LOG(x) tdb->log.log_fn x
74
75 /* lock offsets */
76 #define GLOBAL_LOCK      0
77 #define ACTIVE_LOCK      4
78 #define TRANSACTION_LOCK 8
79
80 /* free memory if the pointer is valid and zero the pointer */
81 #ifndef SAFE_FREE
82 #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); (x)=NULL;} } while(0)
83 #endif
84
85 #define BUCKET(hash) ((hash) % tdb->header.hash_size)
86
87 #define DOCONV() (tdb->flags & TDB_CONVERT)
88 #define CONVERT(x) (DOCONV() ? tdb_convert(&x, sizeof(x)) : &x)
89
90
91 /* the body of the database is made of one list_struct for the free space
92    plus a separate data list for each hash value */
93 struct list_struct {
94         tdb_off_t next; /* offset of the next record in the list */
95         tdb_len_t rec_len; /* total byte length of record */
96         tdb_len_t key_len; /* byte length of key */
97         tdb_len_t data_len; /* byte length of data */
98         u32 full_hash; /* the full 32 bit hash of the key */
99         u32 magic;   /* try to catch errors */
100         /* the following union is implied:
101                 union {
102                         char record[rec_len];
103                         struct {
104                                 char key[key_len];
105                                 char data[data_len];
106                         }
107                         u32 totalsize; (tailer)
108                 }
109         */
110 };
111
112
113 /* this is stored at the front of every database */
114 struct tdb_header {
115         char magic_food[32]; /* for /etc/magic */
116         u32 version; /* version of the code */
117         u32 hash_size; /* number of hash entries */
118         tdb_off_t rwlocks; /* obsolete - kept to detect old formats */
119         tdb_off_t recovery_start; /* offset of transaction recovery region */
120         tdb_off_t sequence_number; /* used when TDB_SEQNUM is set */
121         tdb_off_t reserved[29];
122 };
123
124 struct tdb_lock_type {
125         int list;
126         u32 count;
127         u32 ltype;
128 };
129
130 struct tdb_traverse_lock {
131         struct tdb_traverse_lock *next;
132         u32 off;
133         u32 hash;
134         int lock_rw;
135 };
136
137
138 struct tdb_methods {
139         int (*tdb_read)(struct tdb_context *, tdb_off_t , void *, tdb_len_t , int );
140         int (*tdb_write)(struct tdb_context *, tdb_off_t, const void *, tdb_len_t);
141         void (*next_hash_chain)(struct tdb_context *, u32 *);
142         int (*tdb_oob)(struct tdb_context *, tdb_off_t , int );
143         int (*tdb_expand_file)(struct tdb_context *, tdb_off_t , tdb_off_t );
144         int (*tdb_brlock)(struct tdb_context *, tdb_off_t , int, int, int, size_t);
145 };
146
147 struct tdb_context {
148         char *name; /* the name of the database */
149         void *map_ptr; /* where it is currently mapped */
150         int fd; /* open file descriptor for the database */
151         tdb_len_t map_size; /* how much space has been mapped */
152         int read_only; /* opened read-only */
153         int traverse_read; /* read-only traversal */
154         struct tdb_lock_type global_lock;
155         int num_lockrecs;
156         struct tdb_lock_type *lockrecs; /* only real locks, all with count>0 */
157         enum TDB_ERROR ecode; /* error code for last tdb error */
158         struct tdb_header header; /* a cached copy of the header */
159         u32 flags; /* the flags passed to tdb_open */
160         struct tdb_traverse_lock travlocks; /* current traversal locks */
161         struct tdb_context *next; /* all tdbs to avoid multiple opens */
162         dev_t device;   /* uniquely identifies this tdb */
163         ino_t inode;    /* uniquely identifies this tdb */
164         struct tdb_logging_context log;
165         unsigned int (*hash_fn)(TDB_DATA *key);
166         int open_flags; /* flags used in the open - needed by reopen */
167         unsigned int num_locks; /* number of chain locks held */
168         const struct tdb_methods *methods;
169         struct tdb_transaction *transaction;
170         int page_size;
171         int max_dead_records;
172         bool have_transaction_lock;
173 };
174
175
176 /*
177   internal prototypes
178 */
179 int tdb_munmap(struct tdb_context *tdb);
180 void tdb_mmap(struct tdb_context *tdb);
181 int tdb_lock(struct tdb_context *tdb, int list, int ltype);
182 int tdb_unlock(struct tdb_context *tdb, int list, int ltype);
183 int tdb_brlock(struct tdb_context *tdb, tdb_off_t offset, int rw_type, int lck_type, int probe, size_t len);
184 int tdb_transaction_lock(struct tdb_context *tdb, int ltype);
185 int tdb_transaction_unlock(struct tdb_context *tdb);
186 int tdb_brlock_upgrade(struct tdb_context *tdb, tdb_off_t offset, size_t len);
187 int tdb_write_lock_record(struct tdb_context *tdb, tdb_off_t off);
188 int tdb_write_unlock_record(struct tdb_context *tdb, tdb_off_t off);
189 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
190 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
191 void *tdb_convert(void *buf, u32 size);
192 int tdb_free(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
193 tdb_off_t tdb_allocate(struct tdb_context *tdb, tdb_len_t length, struct list_struct *rec);
194 int tdb_ofs_read(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
195 int tdb_ofs_write(struct tdb_context *tdb, tdb_off_t offset, tdb_off_t *d);
196 int tdb_lock_record(struct tdb_context *tdb, tdb_off_t off);
197 int tdb_unlock_record(struct tdb_context *tdb, tdb_off_t off);
198 int tdb_rec_read(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
199 int tdb_rec_write(struct tdb_context *tdb, tdb_off_t offset, struct list_struct *rec);
200 int tdb_do_delete(struct tdb_context *tdb, tdb_off_t rec_ptr, struct list_struct *rec);
201 unsigned char *tdb_alloc_read(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t len);
202 int tdb_parse_data(struct tdb_context *tdb, TDB_DATA key,
203                    tdb_off_t offset, tdb_len_t len,
204                    int (*parser)(TDB_DATA key, TDB_DATA data,
205                                  void *private_data),
206                    void *private_data);
207 tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, int locktype,
208                            struct list_struct *rec);
209 void tdb_io_init(struct tdb_context *tdb);
210 int tdb_expand(struct tdb_context *tdb, tdb_off_t size);
211 int tdb_rec_free_read(struct tdb_context *tdb, tdb_off_t off,
212                       struct list_struct *rec);
213
214