5efe6bd3abd339e71d8803f1fa505405599c1faf
[kamenim/samba.git] / source4 / nbt_server / wins / wins_ldb.c
1 /* 
2    ldb database module
3
4    Copyright (C) Stefan Metzmacher 2006
5
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 2 of the License, or
9    (at your option) any later version.
10    
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.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 /*
22  *  Name: ldb
23  *
24  *  Component: ldb winsdb module
25  *
26  *  Description: verify winsdb records before they're written to disk
27  *
28  *  Author: Stefan Metzmacher
29  */
30
31 #include "includes.h"
32 #include "nbt_server/nbt_server.h"
33 #include "nbt_server/wins/winsdb.h"
34 #include "lib/ldb/include/ldb.h"
35 #include "lib/ldb/include/ldb_errors.h"
36 #include "lib/ldb/include/ldb_private.h"
37
38 /* add_record: do things with the sambaPassword attribute */
39 static int wins_ldb_verify(struct ldb_module *module, struct ldb_request *req, const struct ldb_message *msg)
40 {
41         struct winsdb_handle *h = talloc_get_type(ldb_get_opaque(module->ldb, "winsdb_handle"),
42                                                   struct winsdb_handle);
43         char *error = NULL;
44
45         if (!h) {
46                 error = talloc_strdup(module, "WINS_LDB: INTERNAL ERROR: no winsdb_handle present!");
47                 ldb_debug(module->ldb, LDB_DEBUG_FATAL, "%s", error);
48                 ldb_set_errstring(module->ldb, error);
49                 return LDB_ERR_OTHER;
50         }
51
52         switch (h->caller) {
53         case WINSDB_HANDLE_CALLER_NBTD:
54         case WINSDB_HANDLE_CALLER_WREPL:
55                 /* we trust our nbt and wrepl code ... */
56                 return ldb_next_request(module, req);
57
58         case WINSDB_HANDLE_CALLER_ADMIN:
59                 error = talloc_strdup(module, "WINS_LDB: TODO verify add/modify for WINSDB_HANDLE_CALLER_ADMIN");
60                 ldb_debug(module->ldb, LDB_DEBUG_WARNING, "%s\n", error);
61                 return ldb_next_request(module, req);
62         }
63
64         return LDB_ERR_OTHER;
65 }
66
67 static int wins_ldb_request(struct ldb_module *module, struct ldb_request *req)
68 {
69         const struct ldb_message *msg = req->op.mod.message;
70
71         switch (req->operation) {
72         case LDB_REQ_ADD:
73                 msg = req->op.add.message;
74                 break;
75
76         case LDB_REQ_MODIFY:
77                 msg = req->op.mod.message;
78                 break;
79
80         default:
81                 goto call_next;
82         }
83
84         if (ldb_dn_is_special(msg->dn)) goto call_next;
85
86         return wins_ldb_verify(module, req, msg);
87
88 call_next:
89         return ldb_next_request(module, req);   
90 }
91
92 static int wins_ldb_init(struct ldb_module *ctx)
93 {
94         struct winsdb_handle *h;
95         const char *owner;
96
97         ctx->private_data = NULL;
98
99         owner = lp_parm_string(-1, "winsdb", "local_owner");
100         if (!owner) {
101                 owner = iface_n_ip(0);
102                 if (!owner) {
103                         owner = "0.0.0.0";
104                 }
105         }
106
107         h = talloc(ctx, struct winsdb_handle);
108         if (!h) goto failed;
109         h->ldb          = ctx->ldb;
110         h->caller       = WINSDB_HANDLE_CALLER_ADMIN;
111         h->local_owner  = talloc_strdup(h, owner);
112         if (!h->local_owner) goto failed;
113
114         return ldb_set_opaque(ctx->ldb, "winsdb_handle", h);
115
116 failed:
117         talloc_free(h);
118         return LDB_ERR_OTHER;
119 }
120
121 static const struct ldb_module_ops wins_ldb_ops = {
122         .name          = "wins_ldb",
123         .request       = wins_ldb_request,
124         .init_context  = wins_ldb_init
125 };
126
127
128 /* the init function */
129 int wins_ldb_module_init(void)
130 {
131         return ldb_register_module(&wins_ldb_ops);
132 }