4fea43c8c805b183f234313d98e79ae5fb030d86
[metze/samba/wip.git] / source4 / lib / ldb / ldb_tdb / ldb_tdb_wrap.c
1 /* 
2    ldb database library
3
4    Copyright (C) Andrew Tridgell  2005
5
6      ** NOTE! The following LGPL license applies to the ldb
7      ** library. This does NOT imply that all of Samba is released
8      ** under the LGPL
9    
10    This library is free software; you can redistribute it and/or
11    modify it under the terms of the GNU Lesser General Public
12    License as published by the Free Software Foundation; either
13    version 3 of the License, or (at your option) any later version.
14
15    This library is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    Lesser General Public License for more details.
19
20    You should have received a copy of the GNU Lesser General Public
21    License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "ldb_includes.h"
25
26 #include "ldb_tdb.h"
27
28 /*
29   the purpose of this code is to work around the braindead posix locking
30   rules, to allow us to have a ldb open more than once while allowing 
31   locking to work
32 */
33
34 struct ltdb_wrap {
35         struct ltdb_wrap *next, *prev;
36         struct tdb_context *tdb;
37         dev_t device;
38         ino_t inode;
39 };
40
41 static struct ltdb_wrap *tdb_list;
42
43 /* destroy the last connection to a tdb */
44 static int ltdb_wrap_destructor(struct ltdb_wrap *w)
45 {
46         tdb_close(w->tdb);
47         if (w->next) {
48                 w->next->prev = w->prev;
49         }
50         if (w->prev) {
51                 w->prev->next = w->next;
52         }
53         if (w == tdb_list) {
54                 tdb_list = w->next;
55         }
56         return 0;
57 }                                
58
59 static void ltdb_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
60 static void ltdb_log_fn(struct tdb_context *tdb, enum tdb_debug_level level, const char *fmt, ...)
61 {
62         va_list ap;
63         const char *name = tdb_name(tdb);
64         struct ldb_context *ldb = talloc_get_type(tdb_get_logging_private(tdb), struct ldb_context);
65         enum ldb_debug_level ldb_level;
66         char *message; 
67
68         if (ldb == NULL)
69                 return;
70
71         va_start(ap, fmt);
72         message = talloc_vasprintf(ldb, fmt, ap);
73         va_end(ap);
74
75         switch (level) {
76         case TDB_DEBUG_FATAL:
77                 ldb_level = LDB_DEBUG_FATAL;
78                 break;
79         case TDB_DEBUG_ERROR:
80                 ldb_level = LDB_DEBUG_ERROR;
81                 break;
82         case TDB_DEBUG_WARNING:
83                 ldb_level = LDB_DEBUG_WARNING;
84                 break;
85         case TDB_DEBUG_TRACE:
86                 ldb_level = LDB_DEBUG_TRACE;
87                 break;
88         default:
89                 ldb_level = LDB_DEBUG_FATAL;
90         }
91
92         ldb_debug(ldb, ldb_level, "ltdb: tdb(%s): %s", name, message);
93         talloc_free(message);
94 }
95
96 /*
97   wrapped connection to a tdb database. The caller should _not_ free
98   this as it is not a talloc structure (as tdb does not use talloc
99   yet). It will auto-close when the caller frees the mem_ctx that is
100   passed to this call
101  */
102 struct tdb_context *ltdb_wrap_open(TALLOC_CTX *mem_ctx,
103                                    const char *path, int hash_size, 
104                                    int tdb_flags,
105                                    int open_flags, mode_t mode, 
106                                    struct ldb_context *ldb)
107 {
108         struct ltdb_wrap *w;
109         struct stat st;
110         struct tdb_logging_context log_ctx;
111
112         log_ctx.log_fn = ltdb_log_fn;
113         log_ctx.log_private = ldb;
114
115         if (stat(path, &st) == 0) {
116                 for (w=tdb_list;w;w=w->next) {
117                         if (st.st_dev == w->device && st.st_ino == w->inode) {
118                                 if (!talloc_reference(mem_ctx, w)) {
119                                         return NULL;
120                                 }
121                                 return w->tdb;
122                         }
123                 }
124         }
125
126         w = talloc(mem_ctx, struct ltdb_wrap);
127         if (w == NULL) {
128                 return NULL;
129         }
130
131         w->tdb = tdb_open_ex(path, hash_size, tdb_flags, open_flags, mode, &log_ctx, NULL);
132         if (w->tdb == NULL) {
133                 talloc_free(w);
134                 return NULL;
135         }
136
137         if (fstat(tdb_fd(w->tdb), &st) != 0) {
138                 tdb_close(w->tdb);
139                 talloc_free(w);
140                 return NULL;
141         }
142
143         w->device = st.st_dev;
144         w->inode  = st.st_ino;
145
146         talloc_set_destructor(w, ltdb_wrap_destructor);
147
148         w->next = tdb_list;
149         w->prev = NULL;
150         if (tdb_list) {
151                 tdb_list->prev = w;
152         }
153         tdb_list = w;
154         
155         return w->tdb;
156 }
157