]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/tdb1_open.c
e22a6d1428b157b17052d4e80c1962ce314f5755
[ccan] / ccan / tdb2 / tdb1_open.c
1  /*
2    Unix SMB/CIFS implementation.
3
4    trivial database library
5
6    Copyright (C) Andrew Tridgell              1999-2005
7    Copyright (C) Paul `Rusty' Russell              2000
8    Copyright (C) Jeremy Allison                    2000-2003
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 #include <assert.h>
28 #include "tdb1_private.h"
29 #include <assert.h>
30
31 /* We use two hashes to double-check they're using the right hash function. */
32 void tdb1_header_hash(struct tdb_context *tdb,
33                      uint32_t *magic1_hash, uint32_t *magic2_hash)
34 {
35         uint32_t tdb1_magic = TDB1_MAGIC;
36
37         *magic1_hash = tdb_hash(tdb, TDB_MAGIC_FOOD, sizeof(TDB_MAGIC_FOOD));
38         *magic2_hash = tdb_hash(tdb, TDB1_CONV(tdb1_magic), sizeof(tdb1_magic));
39
40         /* Make sure at least one hash is non-zero! */
41         if (*magic1_hash == 0 && *magic2_hash == 0)
42                 *magic1_hash = 1;
43 }
44
45 static void tdb_context_init(struct tdb_context *tdb,
46                              struct tdb_attribute_tdb1_max_dead *max_dead)
47 {
48         assert(tdb->flags & TDB_VERSION1);
49
50         tdb1_io_init(tdb);
51
52         tdb->tdb1.traverse_read = tdb->tdb1.traverse_write = 0;
53         memset(&tdb->tdb1.travlocks, 0, sizeof(tdb->tdb1.travlocks));
54         tdb->tdb1.transaction = NULL;
55
56         /* cache the page size */
57         tdb->tdb1.page_size = getpagesize();
58         if (tdb->tdb1.page_size <= 0) {
59                 tdb->tdb1.page_size = 0x2000;
60         }
61
62         if (max_dead) {
63                 tdb->tdb1.max_dead_records = max_dead->max_dead;
64         } else {
65                 tdb->tdb1.max_dead_records = 0;
66         }
67 }
68
69 /* initialise a new database */
70 enum TDB_ERROR tdb1_new_database(struct tdb_context *tdb,
71                                  struct tdb_attribute_tdb1_hashsize *hashsize,
72                                  struct tdb_attribute_tdb1_max_dead *max_dead)
73 {
74         struct tdb1_header *newdb;
75         size_t size;
76         int hash_size = TDB1_DEFAULT_HASH_SIZE;
77         enum TDB_ERROR ret = TDB_ERR_IO;
78
79         tdb_context_init(tdb, max_dead);
80
81         /* Default TDB2 hash becomes default TDB1 hash. */
82         if (tdb->hash_fn == tdb_jenkins_hash)
83                 tdb->hash_fn = tdb1_old_hash;
84
85         if (hashsize)
86                 hash_size = hashsize->hsize;
87
88         /* We make it up in memory, then write it out if not internal */
89         size = sizeof(struct tdb1_header) + (hash_size+1)*sizeof(tdb1_off_t);
90         if (!(newdb = (struct tdb1_header *)calloc(size, 1))) {
91                 return TDB_ERR_OOM;
92         }
93
94         /* Fill in the header */
95         newdb->version = TDB1_VERSION;
96         newdb->hash_size = hash_size;
97
98         tdb1_header_hash(tdb, &newdb->magic1_hash, &newdb->magic2_hash);
99
100         /* Make sure older tdbs (which don't check the magic hash fields)
101          * will refuse to open this TDB. */
102         if (tdb->hash_fn == tdb1_incompatible_hash)
103                 newdb->rwlocks = TDB1_HASH_RWLOCK_MAGIC;
104
105         memcpy(&tdb->tdb1.header, newdb, sizeof(tdb->tdb1.header));
106         /* This creates an endian-converted db. */
107         TDB1_CONV(*newdb);
108         /* Don't endian-convert the magic food! */
109         memcpy(newdb->magic_food, TDB_MAGIC_FOOD, strlen(TDB_MAGIC_FOOD)+1);
110
111         if (tdb->flags & TDB_INTERNAL) {
112                 tdb->file->map_size = size;
113                 tdb->file->map_ptr = (char *)newdb;
114                 return TDB_SUCCESS;
115         }
116         if (lseek(tdb->file->fd, 0, SEEK_SET) == -1)
117                 goto fail;
118
119         if (ftruncate(tdb->file->fd, 0) == -1)
120                 goto fail;
121
122         /* we still have "ret == TDB_ERR_IO" here */
123         if (tdb1_write_all(tdb->file->fd, newdb, size))
124                 ret = TDB_SUCCESS;
125
126   fail:
127         SAFE_FREE(newdb);
128         return ret;
129 }
130
131 typedef void (*tdb1_log_func)(struct tdb_context *, enum tdb_log_level, enum TDB_ERROR,
132                               const char *, void *);
133 typedef uint64_t (*tdb1_hash_func)(const void *key, size_t len, uint64_t seed,
134                                    void *data);
135
136 struct tdb1_logging_context {
137         tdb1_log_func log_fn;
138         void *log_private;
139 };
140
141 static bool hash_correct(struct tdb_context *tdb,
142                          uint32_t *m1, uint32_t *m2)
143 {
144         /* older TDB without magic hash references */
145         if (tdb->tdb1.header.magic1_hash == 0
146             && tdb->tdb1.header.magic2_hash == 0) {
147                 return true;
148         }
149
150         tdb1_header_hash(tdb, m1, m2);
151         return (tdb->tdb1.header.magic1_hash == *m1 &&
152                 tdb->tdb1.header.magic2_hash == *m2);
153 }
154
155 static bool check_header_hash(struct tdb_context *tdb,
156                               uint32_t *m1, uint32_t *m2)
157 {
158         if (hash_correct(tdb, m1, m2))
159                 return true;
160
161         /* If they use one inbuilt, try the other inbuilt hash. */
162         if (tdb->hash_fn == tdb1_old_hash)
163                 tdb->hash_fn = tdb1_incompatible_hash;
164         else if (tdb->hash_fn == tdb1_incompatible_hash)
165                 tdb->hash_fn = tdb1_old_hash;
166         else
167                 return false;
168         return hash_correct(tdb, m1, m2);
169 }
170
171 /* We are hold the TDB open lock on tdb->fd. */
172 enum TDB_ERROR tdb1_open(struct tdb_context *tdb,
173                          struct tdb_attribute_tdb1_max_dead *max_dead)
174 {
175         const char *hash_alg;
176         uint32_t magic1, magic2;
177
178         tdb->flags |= TDB_VERSION1;
179
180         tdb_context_init(tdb, max_dead);
181
182         /* Default TDB2 hash becomes default TDB1 hash. */
183         if (tdb->hash_fn == tdb_jenkins_hash) {
184                 tdb->hash_fn = tdb1_old_hash;
185                 hash_alg = "default";
186         } else if (tdb->hash_fn == tdb1_incompatible_hash)
187                 hash_alg = "tdb1_incompatible_hash";
188         else
189                 hash_alg = "the user defined";
190
191         if (tdb->tdb1.header.version != TDB1_BYTEREV(TDB1_VERSION)) {
192                 if (tdb->flags & TDB_CONVERT) {
193                         return tdb_logerr(tdb, TDB_ERR_IO, TDB_LOG_ERROR,
194                                           "tdb1_open:"
195                                           " %s does not need TDB_CONVERT",
196                                           tdb->name);
197                 }
198         } else {
199                 tdb->flags |= TDB_CONVERT;
200                 tdb1_convert(&tdb->tdb1.header, sizeof(tdb->tdb1.header));
201         }
202
203         if (tdb->tdb1.header.rwlocks != 0 &&
204             tdb->tdb1.header.rwlocks != TDB1_HASH_RWLOCK_MAGIC) {
205                 return tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_ERROR,
206                                   "tdb1_open: spinlocks no longer supported");
207         }
208
209         if (!check_header_hash(tdb, &magic1, &magic2)) {
210                 return tdb_logerr(tdb, TDB_ERR_CORRUPT, TDB_LOG_USE_ERROR,
211                            "tdb1_open: "
212                            "%s was not created with %s hash function we are using\n"
213                            "magic1_hash[0x%08X %s 0x%08X] "
214                            "magic2_hash[0x%08X %s 0x%08X]",
215                            tdb->name, hash_alg,
216                            tdb->tdb1.header.magic1_hash,
217                            (tdb->tdb1.header.magic1_hash == magic1) ? "==" : "!=",
218                            magic1,
219                            tdb->tdb1.header.magic2_hash,
220                            (tdb->tdb1.header.magic2_hash == magic2) ? "==" : "!=",
221                            magic2);
222         }
223         return TDB_SUCCESS;
224 }