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