r13615: Make ldb_set_errstring get ldb instead of module as parameter.
[metze/samba/wip.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 const struct ldb_module_ops wins_ldb_ops = {
93         .name          = "wins_ldb",
94         .request       = wins_ldb_request
95 };
96
97
98 /* the init function */
99 struct ldb_module *wins_ldb_module_init(struct ldb_context *ldb, const char *options[])
100 {
101         struct ldb_module *ctx;
102         struct winsdb_handle *h;
103         const char *owner;
104         int ret;
105
106         ctx = talloc(ldb, struct ldb_module);
107         if (!ctx) return NULL;
108
109         ctx->private_data = NULL;
110         ctx->ldb = ldb;
111         ctx->prev = ctx->next = NULL;
112         ctx->ops = &wins_ldb_ops;
113
114         owner = lp_parm_string(-1, "winsdb", "local_owner");
115         if (!owner) {
116                 owner = iface_n_ip(0);
117                 if (!owner) {
118                         owner = "0.0.0.0";
119                 }
120         }
121
122         h = talloc(ctx, struct winsdb_handle);
123         if (!h) goto failed;
124         h->ldb          = ldb;
125         h->caller       = WINSDB_HANDLE_CALLER_ADMIN;
126         h->local_owner  = talloc_strdup(h, owner);
127         if (!h->local_owner) goto failed;
128
129         ret = ldb_set_opaque(ldb, "winsdb_handle", h);
130         if (ret != LDB_SUCCESS) goto failed;
131
132         return ctx;
133
134 failed:
135         talloc_free(ctx);
136         return NULL;
137 }