s3-dbwrap: Make dbwrap_fallback_parse_record private
[mat/samba.git] / source3 / lib / dbwrap / dbwrap_open.c
1 /*
2    Unix SMB/CIFS implementation.
3    Database interface wrapper
4
5    Copyright (C) Volker Lendecke 2005-2007
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "dbwrap/dbwrap.h"
23 #include "dbwrap/dbwrap_private.h"
24 #include "dbwrap/dbwrap_open.h"
25 #include "dbwrap/dbwrap_tdb.h"
26 #include "dbwrap/dbwrap_ctdb.h"
27 #include "util_tdb.h"
28 #ifdef CLUSTER_SUPPORT
29 #include "ctdb_private.h"
30 #endif
31
32 bool db_is_local(const char *name)
33 {
34 #ifdef CLUSTER_SUPPORT
35         const char *sockname = lp_ctdbd_socket();
36
37         if(!sockname || !*sockname) {
38                 sockname = CTDB_PATH;
39         }
40
41         if (lp_clustering() && socket_exist(sockname)) {
42                 const char *partname;
43                 /* ctdb only wants the file part of the name */
44                 partname = strrchr(name, '/');
45                 if (partname) {
46                         partname++;
47                 } else {
48                         partname = name;
49                 }
50                 /* allow ctdb for individual databases to be disabled */
51                 if (lp_parm_bool(-1, "ctdb", partname, True)) {
52                         return false;
53                 }
54         }
55 #endif
56         return true;
57 }
58
59 /**
60  * open a database
61  */
62 struct db_context *db_open(TALLOC_CTX *mem_ctx,
63                            const char *name,
64                            int hash_size, int tdb_flags,
65                            int open_flags, mode_t mode)
66 {
67         struct db_context *result = NULL;
68 #ifdef CLUSTER_SUPPORT
69         const char *sockname = lp_ctdbd_socket();
70
71         if(!sockname || !*sockname) {
72                 sockname = CTDB_PATH;
73         }
74
75         if (lp_clustering()) {
76                 const char *partname;
77
78                 if (!socket_exist(sockname)) {
79                         DEBUG(1, ("ctdb socket does not exist - is ctdb not "
80                                   "running?\n"));
81                         return NULL;
82                 }
83
84                 /* ctdb only wants the file part of the name */
85                 partname = strrchr(name, '/');
86                 if (partname) {
87                         partname++;
88                 } else {
89                         partname = name;
90                 }
91                 /* allow ctdb for individual databases to be disabled */
92                 if (lp_parm_bool(-1, "ctdb", partname, True)) {
93                         result = db_open_ctdb(mem_ctx, partname, hash_size,
94                                               tdb_flags, open_flags, mode);
95                         if (result == NULL) {
96                                 DEBUG(0,("failed to attach to ctdb %s\n",
97                                          partname));
98                                 if (errno == 0) {
99                                         errno = EIO;
100                                 }
101                                 return NULL;
102                         }
103                 }
104         }
105
106 #endif
107
108         if (result == NULL) {
109                 result = db_open_tdb(mem_ctx, name, hash_size,
110                                      tdb_flags, open_flags, mode);
111         }
112
113         if ((result != NULL) && (result->wipe == NULL)) {
114                 result->wipe = dbwrap_fallback_wipe;
115         }
116
117         return result;
118 }