s4:torture:smb2: don't skip the compound.interim2 test for non win7/win2k8
[Samba/gebeck_regimport.git] / source4 / nbt_server / wins / wins_ldb.c
blob304c98d803a2c2487d7b4fab84175e89415cc285
1 /*
2 ldb database module
4 Copyright (C) Stefan Metzmacher 2006
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * Name: ldb
23 * Component: ldb winsdb module
25 * Description: verify winsdb records before they're written to disk
27 * Author: Stefan Metzmacher
30 #include "includes.h"
31 #include "lib/events/events.h"
32 #include "nbt_server/nbt_server.h"
33 #include "nbt_server/wins/winsdb.h"
34 #include <ldb_module.h>
35 #include "system/network.h"
36 #include "lib/socket/netif.h"
37 #include "param/param.h"
39 static int wins_ldb_verify(struct ldb_module *module, struct ldb_request *req)
41 struct ldb_context *ldb = ldb_module_get_ctx(module);
42 struct winsdb_handle *h = talloc_get_type(ldb_get_opaque(ldb, "winsdb_handle"),
43 struct winsdb_handle);
44 const struct ldb_message *msg;
46 switch (req->operation) {
47 case LDB_ADD:
48 msg = req->op.add.message;
49 break;
51 case LDB_MODIFY:
52 msg = req->op.mod.message;
53 break;
55 default:
56 return ldb_next_request(module, req);
59 /* do not manipulate our control entries */
60 if (ldb_dn_is_special(msg->dn)) {
61 return ldb_next_request(module, req);
64 if (!h) {
65 ldb_debug_set(ldb, LDB_DEBUG_FATAL, "%s", "WINS_LDB: INTERNAL ERROR: no winsdb_handle present!");
66 return LDB_ERR_OTHER;
69 switch (h->caller) {
70 case WINSDB_HANDLE_CALLER_NBTD:
71 case WINSDB_HANDLE_CALLER_WREPL:
72 /* we trust our nbt and wrepl code ... */
73 return ldb_next_request(module, req);
75 case WINSDB_HANDLE_CALLER_ADMIN:
76 ldb_debug(ldb, LDB_DEBUG_WARNING, "%s\n", "WINS_LDB: TODO verify add/modify for WINSDB_HANDLE_CALLER_ADMIN");
77 return ldb_next_request(module, req);
80 return LDB_ERR_OTHER;
83 static int wins_ldb_init(struct ldb_module *module)
85 struct ldb_context *ldb = ldb_module_get_ctx(module);
86 struct winsdb_handle *h;
87 const char *owner;
88 struct loadparm_context *lp_ctx = ldb_get_opaque(ldb, "loadparm");
90 ldb_module_set_private(module, NULL);
92 owner = lpcfg_parm_string(lp_ctx, NULL, "winsdb", "local_owner");
93 if (!owner) {
94 struct interface *ifaces;
95 load_interface_list(module, lp_ctx, &ifaces);
96 owner = iface_list_first_v4(ifaces);
97 if (!owner) {
98 owner = "0.0.0.0";
102 h = talloc_zero(module, struct winsdb_handle);
103 if (!h) goto failed;
104 h->ldb = ldb;
105 h->caller = WINSDB_HANDLE_CALLER_ADMIN;
106 h->local_owner = talloc_strdup(h, owner);
107 if (!h->local_owner) goto failed;
109 return ldb_set_opaque(ldb, "winsdb_handle", h);
111 failed:
112 talloc_free(h);
113 return LDB_ERR_OTHER;
116 static const struct ldb_module_ops ldb_wins_ldb_module_ops = {
117 .name = "wins_ldb",
118 .add = wins_ldb_verify,
119 .modify = wins_ldb_verify,
120 .init_context = wins_ldb_init
123 int ldb_wins_ldb_module_init(const char *version)
125 LDB_MODULE_CHECK_VERSION(version);
126 return ldb_register_module(&ldb_wins_ldb_module_ops);