r12542: Move some more prototypes out to seperate headers
[ira/wip.git] / source4 / nbt_server / wins / winsdb.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    WINS database routines
5
6    Copyright (C) Andrew Tridgell        2005
7    Copyright (C) Stefan Metzmacher      2005
8       
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25 #include "nbt_server/nbt_server.h"
26 #include "nbt_server/wins/winsdb.h"
27 #include "lib/ldb/include/ldb.h"
28 #include "lib/ldb/include/ldb_errors.h"
29 #include "db_wrap.h"
30 #include "system/time.h"
31 #include "auth/auth.h"
32
33 /*
34   return the new maxVersion and save it
35 */
36 static uint64_t winsdb_allocate_version(struct ldb_context *wins_db)
37 {
38         int trans;
39         int ret;
40         struct ldb_dn *dn;
41         struct ldb_result *res = NULL;
42         struct ldb_message *msg = NULL;
43         TALLOC_CTX *tmp_ctx = talloc_new(wins_db);
44         uint64_t maxVersion = 0;
45
46         trans = ldb_transaction_start(wins_db);
47         if (trans != LDB_SUCCESS) goto failed;
48
49         dn = ldb_dn_explode(tmp_ctx, "CN=VERSION");
50         if (!dn) goto failed;
51
52         /* find the record in the WINS database */
53         ret = ldb_search(wins_db, dn, LDB_SCOPE_BASE, NULL, NULL, &res);
54
55         if (ret != LDB_SUCCESS) goto failed;
56         if (res->count > 1) goto failed;
57
58         talloc_steal(tmp_ctx, res);
59
60         if (res->count == 1) {
61                 maxVersion = ldb_msg_find_uint64(res->msgs[0], "maxVersion", 0);
62         }
63         maxVersion++;
64
65         msg = ldb_msg_new(tmp_ctx);
66         if (!msg) goto failed;
67         msg->dn = dn;
68
69
70         ret = ldb_msg_add_empty(msg, "objectClass", LDB_FLAG_MOD_REPLACE);
71         if (ret != 0) goto failed;
72         ret = ldb_msg_add_string(msg, "objectClass", "winsMaxVersion");
73         if (ret != 0) goto failed;
74         ret = ldb_msg_add_empty(msg, "maxVersion", LDB_FLAG_MOD_REPLACE);
75         if (ret != 0) goto failed;
76         ret = ldb_msg_add_fmt(msg, "maxVersion", "%llu", (long long)maxVersion);
77         if (ret != 0) goto failed;
78
79         ret = ldb_modify(wins_db, msg);
80         if (ret != 0) ret = ldb_add(wins_db, msg);
81         if (ret != 0) goto failed;
82
83         trans = ldb_transaction_commit(wins_db);
84         if (trans != LDB_SUCCESS) goto failed;
85
86         talloc_free(tmp_ctx);
87         return maxVersion;
88
89 failed:
90         if (trans == LDB_SUCCESS) ldb_transaction_cancel(wins_db);
91         talloc_free(tmp_ctx);
92         return 0;
93 }
94
95 /*
96   return a DN for a nbt_name
97 */
98 static struct ldb_dn *winsdb_dn(TALLOC_CTX *mem_ctx, struct nbt_name *name)
99 {
100         struct ldb_dn *dn;
101
102         dn = ldb_dn_string_compose(mem_ctx, NULL, "type=0x%02X", name->type);
103         if (dn && name->name && *name->name) {
104                 dn = ldb_dn_string_compose(mem_ctx, dn, "name=%s", name->name);
105         }
106         if (dn && name->scope && *name->scope) {
107                 dn = ldb_dn_string_compose(mem_ctx, dn, "scope=%s", name->scope);
108         }
109         return dn;
110 }
111
112 static NTSTATUS winsdb_nbt_name(TALLOC_CTX *mem_ctx, struct ldb_dn *dn, struct nbt_name **_name)
113 {
114         NTSTATUS status;
115         struct nbt_name *name;
116         uint32_t cur = 0;
117
118         name = talloc(mem_ctx, struct nbt_name);
119         if (!name) {
120                 status = NT_STATUS_NO_MEMORY;
121                 goto failed;
122         }
123
124         if (dn->comp_num > 3) {
125                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
126                 goto failed;
127         }
128
129         if (dn->comp_num > cur && strcasecmp("scope", dn->components[cur].name) == 0) {
130                 name->scope     = talloc_steal(name, dn->components[cur].value.data);
131                 cur++;
132         } else {
133                 name->scope     = NULL;
134         }
135
136         if (dn->comp_num > cur && strcasecmp("name", dn->components[cur].name) == 0) {
137                 name->name      = talloc_steal(name, dn->components[cur].value.data);
138                 cur++;
139         } else {
140                 name->name      = talloc_strdup(name, "");
141                 if (!name->name) {
142                         status = NT_STATUS_NO_MEMORY;
143                         goto failed;
144                 }
145         }
146
147         if (dn->comp_num > cur && strcasecmp("type", dn->components[cur].name) == 0) {
148                 name->type      = strtoul((char *)dn->components[cur].value.data, NULL, 0);
149                 cur++;
150         } else {
151                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
152                 goto failed;
153         }
154
155         *_name = name;
156         return NT_STATUS_OK;
157 failed:
158         talloc_free(name);
159         return status;
160 }
161
162 /*
163  decode the winsdb_addr("address") attribute:
164  "172.31.1.1" or 
165  "172.31.1.1;winsOwner:172.31.9.202;expireTime:20050923032330.0Z;"
166  are valid records
167 */
168 static NTSTATUS winsdb_addr_decode(struct winsdb_record *rec, struct ldb_val *val,
169                                    TALLOC_CTX *mem_ctx, struct winsdb_addr **_addr)
170 {
171         NTSTATUS status;
172         struct winsdb_addr *addr;
173         char *address;
174         char *wins_owner;
175         char *expire_time;
176         char *p;
177
178         addr = talloc(mem_ctx, struct winsdb_addr);
179         if (!addr) {
180                 status = NT_STATUS_NO_MEMORY;
181                 goto failed;
182         }
183
184         address = (char *)val->data;
185
186         p = strchr(address, ';');
187         if (!p) {
188                 /* support old entries, with only the address */
189                 addr->address           = talloc_steal(addr, val->data);
190                 addr->wins_owner        = talloc_reference(addr, rec->wins_owner);
191                 if (!addr->wins_owner) {
192                         status = NT_STATUS_NO_MEMORY;
193                         goto failed;
194                 }
195                 addr->expire_time       = rec->expire_time;
196                 *_addr = addr;
197                 return NT_STATUS_OK;
198         }
199
200         *p = '\0';p++;
201         addr->address = talloc_strdup(addr, address);
202         if (!addr->address) {
203                 status = NT_STATUS_NO_MEMORY;
204                 goto failed;
205         }
206
207         if (strncmp("winsOwner:", p, 10) != 0) {
208                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
209                 goto failed;
210         }
211         wins_owner = p + 10;
212         p = strchr(wins_owner, ';');
213         if (!p) {
214                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
215                 goto failed;
216         }
217
218         *p = '\0';p++;
219         addr->wins_owner = talloc_strdup(addr, wins_owner);
220         if (!addr->wins_owner) {
221                 status = NT_STATUS_NO_MEMORY;
222                 goto failed;
223         }
224
225         if (strncmp("expireTime:", p, 11) != 0) {
226                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
227                 goto failed;
228         }
229
230         expire_time = p + 11;
231         p = strchr(expire_time, ';');
232         if (!p) {
233                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
234                 goto failed;
235         }
236
237         *p = '\0';p++;
238         addr->expire_time = ldb_string_to_time(expire_time);
239
240         *_addr = addr;
241         return NT_STATUS_OK;
242 failed:
243         talloc_free(addr);
244         return status;
245 }
246
247 /*
248  encode the winsdb_addr("address") attribute like this:
249  "172.31.1.1;winsOwner:172.31.9.202;expireTime:20050923032330.0Z;"
250 */
251 static int ldb_msg_add_winsdb_addr(struct ldb_message *msg, 
252                                    const char *attr_name, struct winsdb_addr *addr)
253 {
254         struct ldb_val val;
255         const char *str;
256
257         str = talloc_asprintf(msg, "%s;winsOwner:%s;expireTime:%s;",
258                               addr->address, addr->wins_owner,
259                               ldb_timestring(msg, addr->expire_time));
260         if (!str) return -1;
261
262         val.data = discard_const_p(uint8_t, str);
263         val.length = strlen(str);
264
265         return ldb_msg_add_value(msg, attr_name, &val);
266 }
267
268 struct winsdb_addr **winsdb_addr_list_make(TALLOC_CTX *mem_ctx)
269 {
270         struct winsdb_addr **addresses;
271
272         addresses = talloc_array(mem_ctx, struct winsdb_addr *, 1);
273         if (!addresses) return NULL;
274
275         addresses[0] = NULL;
276
277         return addresses;
278 }
279
280 struct winsdb_addr **winsdb_addr_list_add(struct winsdb_addr **addresses, const char *address,
281                                           const char *wins_owner, time_t expire_time)
282 {
283         size_t len = winsdb_addr_list_length(addresses);
284
285         addresses = talloc_realloc(addresses, addresses, struct winsdb_addr *, len + 2);
286         if (!addresses) return NULL;
287
288         addresses[len] = talloc(addresses, struct winsdb_addr);
289         if (!addresses[len]) {
290                 talloc_free(addresses);
291                 return NULL;
292         }
293
294         addresses[len]->address = talloc_strdup(addresses[len], address);
295         if (!addresses[len]->address) {
296                 talloc_free(addresses);
297                 return NULL;
298         }
299
300         addresses[len]->wins_owner = talloc_strdup(addresses[len], wins_owner);
301         if (!addresses[len]->wins_owner) {
302                 talloc_free(addresses);
303                 return NULL;
304         }
305
306         addresses[len]->expire_time = expire_time;
307
308         addresses[len+1] = NULL;
309
310         return addresses;
311 }
312
313 void winsdb_addr_list_remove(struct winsdb_addr **addresses, const char *address)
314 {
315         size_t i;
316
317         for (i=0; addresses[i]; i++) {
318                 if (strcmp(addresses[i]->address, address) == 0) {
319                         break;
320                 }
321         }
322         if (!addresses[i]) return;
323
324         for (; addresses[i]; i++) {
325                 addresses[i] = addresses[i+1];
326         }
327
328         return;
329 }
330
331 struct winsdb_addr *winsdb_addr_list_check(struct winsdb_addr **addresses, const char *address)
332 {
333         size_t i;
334
335         for (i=0; addresses[i]; i++) {
336                 if (strcmp(addresses[i]->address, address) == 0) {
337                         return addresses[i];
338                 }
339         }
340
341         return NULL;
342 }
343
344 size_t winsdb_addr_list_length(struct winsdb_addr **addresses)
345 {
346         size_t i;
347         for (i=0; addresses[i]; i++);
348         return i;
349 }
350
351 const char **winsdb_addr_string_list(TALLOC_CTX *mem_ctx, struct winsdb_addr **addresses)
352 {
353         size_t len = winsdb_addr_list_length(addresses);
354         const char **str_list=NULL;
355         size_t i;
356
357         for (i=0; i < len; i++) {
358                 str_list = str_list_add(str_list, addresses[i]->address);
359                 if (!str_list[i]) {
360                         return NULL;
361                 }
362         }
363         talloc_steal(mem_ctx, str_list);
364         return str_list;
365 }
366
367 /*
368   load a WINS entry from the database
369 */
370 NTSTATUS winsdb_lookup(struct ldb_context *wins_db, 
371                        struct nbt_name *name,
372                        TALLOC_CTX *mem_ctx,
373                        struct winsdb_record **_rec)
374 {
375         NTSTATUS status;
376         struct ldb_result *res = NULL;
377         int ret;
378         struct winsdb_record *rec;
379         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
380
381         /* find the record in the WINS database */
382         ret = ldb_search(wins_db, winsdb_dn(tmp_ctx, name), LDB_SCOPE_BASE, 
383                          NULL, NULL, &res);
384
385         if (ret != LDB_SUCCESS || res->count > 1) {
386                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
387                 goto failed;
388         } else if (res->count== 0) {
389                 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
390                 goto failed;
391         }
392
393         talloc_steal(tmp_ctx, res);
394
395         status = winsdb_record(res->msgs[0], tmp_ctx, &rec);
396         if (!NT_STATUS_IS_OK(status)) goto failed;
397
398         /* see if it has already expired */
399         if (rec->state == WREPL_STATE_ACTIVE &&
400             rec->expire_time <= time(NULL)) {
401                 DEBUG(5,("WINS: expiring name %s (expired at %s)\n", 
402                          nbt_name_string(tmp_ctx, rec->name), timestring(tmp_ctx, rec->expire_time)));
403                 rec->state = WREPL_STATE_RELEASED;
404         }
405
406         talloc_steal(mem_ctx, rec);
407         talloc_free(tmp_ctx);
408         *_rec = rec;
409         return NT_STATUS_OK;
410
411 failed:
412         talloc_free(tmp_ctx);
413         return status;
414 }
415
416 NTSTATUS winsdb_record(struct ldb_message *msg, TALLOC_CTX *mem_ctx, struct winsdb_record **_rec)
417 {
418         NTSTATUS status;
419         struct winsdb_record *rec;
420         struct ldb_message_element *el;
421         struct nbt_name *name;
422         uint32_t i, num_values;
423
424         rec = talloc(mem_ctx, struct winsdb_record);
425         if (rec == NULL) {
426                 status = NT_STATUS_NO_MEMORY;
427                 goto failed;
428         }
429
430         status = winsdb_nbt_name(rec, msg->dn, &name);
431         if (!NT_STATUS_IS_OK(status)) goto failed;
432
433         if (strlen(name->name) > 15) {
434                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
435                 goto failed;
436         }
437         if (name->scope && strlen(name->scope) > 238) {
438                 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
439                 goto failed;
440         }
441
442         /* parse it into a more convenient winsdb_record structure */
443         rec->name               = name;
444         rec->type               = ldb_msg_find_int(msg, "recordType", WREPL_TYPE_UNIQUE);
445         rec->state              = ldb_msg_find_int(msg, "recordState", WREPL_STATE_RELEASED);
446         rec->node               = ldb_msg_find_int(msg, "nodeType", WREPL_NODE_B);
447         rec->is_static          = ldb_msg_find_int(msg, "isStatic", 0);
448         rec->expire_time        = ldb_string_to_time(ldb_msg_find_string(msg, "expireTime", NULL));
449         rec->version            = ldb_msg_find_uint64(msg, "versionID", 0);
450         rec->wins_owner         = ldb_msg_find_string(msg, "winsOwner", NULL);
451         rec->registered_by      = ldb_msg_find_string(msg, "registeredBy", NULL);
452         talloc_steal(rec, rec->wins_owner);
453         talloc_steal(rec, rec->registered_by);
454
455         if (!rec->wins_owner) {
456                 rec->wins_owner = talloc_strdup(rec, WINSDB_OWNER_LOCAL);
457                 if (rec->wins_owner == NULL) {
458                         status = NT_STATUS_NO_MEMORY;
459                         goto failed;
460                 }
461         }
462
463         el = ldb_msg_find_element(msg, "address");
464         if (el) {
465                 num_values = el->num_values;
466         } else {
467                 num_values = 0;
468         }
469
470         if (rec->type == WREPL_TYPE_UNIQUE || rec->type == WREPL_TYPE_GROUP) {
471                 if (num_values != 1) {
472                         status = NT_STATUS_INTERNAL_DB_CORRUPTION;
473                         goto failed;
474                 }
475         }
476         if (rec->state == WREPL_STATE_ACTIVE) {
477                 if (num_values < 1) {
478                         status = NT_STATUS_INTERNAL_DB_CORRUPTION;
479                         goto failed;
480                 }
481         }
482
483         rec->addresses     = talloc_array(rec, struct winsdb_addr *, num_values+1);
484         if (rec->addresses == NULL) {
485                 status = NT_STATUS_NO_MEMORY;
486                 goto failed;
487         }
488
489         for (i=0;i<num_values;i++) {
490                 status = winsdb_addr_decode(rec, &el->values[i], rec->addresses, &rec->addresses[i]);
491                 if (!NT_STATUS_IS_OK(status)) goto failed;
492         }
493         rec->addresses[i] = NULL;
494
495         if (rec->is_static) {
496                 if (num_values < 1) {
497                         status = NT_STATUS_INTERNAL_DB_CORRUPTION;
498                         goto failed;
499                 }
500                 rec->state = WREPL_STATE_ACTIVE;
501                 rec->expire_time = get_time_t_max();
502                 for (i=0;rec->addresses[i];i++) {
503                         rec->addresses[i]->expire_time = rec->expire_time;
504                 }
505         }
506
507         *_rec = rec;
508         return NT_STATUS_OK;
509 failed:
510         if (NT_STATUS_EQUAL(NT_STATUS_INTERNAL_DB_CORRUPTION, status)) {
511                 DEBUG(1,("winsdb_record: corrupted record: %s\n", ldb_dn_linearize(rec, msg->dn)));
512         }
513         talloc_free(rec);
514         return status;
515 }
516
517 /*
518   form a ldb_message from a winsdb_record
519 */
520 struct ldb_message *winsdb_message(struct ldb_context *ldb, 
521                                    struct winsdb_record *rec, TALLOC_CTX *mem_ctx)
522 {
523         int i, ret=0;
524         size_t addr_count;
525         struct ldb_message *msg = ldb_msg_new(mem_ctx);
526         if (msg == NULL) goto failed;
527
528         if (rec->is_static) {
529                 rec->state = WREPL_STATE_ACTIVE;
530                 rec->expire_time = get_time_t_max();
531                 for (i=0;rec->addresses[i];i++) {
532                         rec->addresses[i]->expire_time = rec->expire_time;
533                 }
534         }
535
536         /* make sure we don't put in corrupted records */
537         addr_count = winsdb_addr_list_length(rec->addresses);
538         if (rec->state == WREPL_STATE_ACTIVE && addr_count == 0) {
539                 rec->state = WREPL_STATE_RELEASED;
540         }
541         if (rec->type == WREPL_TYPE_UNIQUE && addr_count > 1) {
542                 rec->type = WREPL_TYPE_MHOMED;
543         }
544
545         msg->dn = winsdb_dn(msg, rec->name);
546         if (msg->dn == NULL) goto failed;
547         ret |= ldb_msg_add_fmt(msg, "type", "0x%02X", rec->name->type);
548         if (rec->name->name && *rec->name->name) {
549                 ret |= ldb_msg_add_string(msg, "name", rec->name->name);
550         }
551         if (rec->name->scope && *rec->name->scope) {
552                 ret |= ldb_msg_add_string(msg, "scope", rec->name->scope);
553         }
554         ret |= ldb_msg_add_fmt(msg, "objectClass", "winsRecord");
555         ret |= ldb_msg_add_fmt(msg, "recordType", "%u", rec->type);
556         ret |= ldb_msg_add_fmt(msg, "recordState", "%u", rec->state);
557         ret |= ldb_msg_add_fmt(msg, "nodeType", "%u", rec->node);
558         ret |= ldb_msg_add_fmt(msg, "isStatic", "%u", rec->is_static);
559         ret |= ldb_msg_add_string(msg, "expireTime", 
560                                   ldb_timestring(msg, rec->expire_time));
561         ret |= ldb_msg_add_fmt(msg, "versionID", "%llu", (long long)rec->version);
562         ret |= ldb_msg_add_string(msg, "winsOwner", rec->wins_owner);
563         ret |= ldb_msg_add_empty(msg, "address", 0);
564         for (i=0;rec->addresses[i];i++) {
565                 ret |= ldb_msg_add_winsdb_addr(msg, "address", rec->addresses[i]);
566         }
567         ret |= ldb_msg_add_empty(msg, "registeredBy", 0);
568         if (rec->registered_by) {
569                 ret |= ldb_msg_add_string(msg, "registeredBy", rec->registered_by);
570                 if (ret != 0) goto failed;
571         }
572         return msg;
573
574 failed:
575         talloc_free(msg);
576         return NULL;
577 }
578
579 /*
580   save a WINS record into the database
581 */
582 uint8_t winsdb_add(struct ldb_context *wins_db, struct winsdb_record *rec, uint32_t flags)
583 {
584         struct ldb_message *msg;
585         TALLOC_CTX *tmp_ctx = talloc_new(wins_db);
586         int trans = -1;
587         int ret = 0;
588
589         trans = ldb_transaction_start(wins_db);
590         if (trans != LDB_SUCCESS) goto failed;
591
592         if (flags & WINSDB_FLAG_ALLOC_VERSION) {
593                 rec->version = winsdb_allocate_version(wins_db);
594                 if (rec->version == 0) goto failed;
595         }
596         if (flags & WINSDB_FLAG_TAKE_OWNERSHIP) {
597                 rec->wins_owner = WINSDB_OWNER_LOCAL;
598         }
599
600         msg = winsdb_message(wins_db, rec, tmp_ctx);
601         if (msg == NULL) goto failed;
602         ret = ldb_add(wins_db, msg);
603         if (ret != 0) goto failed;
604
605         trans = ldb_transaction_commit(wins_db);
606         if (trans != LDB_SUCCESS) goto failed;
607
608         talloc_free(tmp_ctx);
609         return NBT_RCODE_OK;
610
611 failed:
612         if (trans == LDB_SUCCESS) ldb_transaction_cancel(wins_db);
613         talloc_free(tmp_ctx);
614         return NBT_RCODE_SVR;
615 }
616
617
618 /*
619   modify a WINS record in the database
620 */
621 uint8_t winsdb_modify(struct ldb_context *wins_db, struct winsdb_record *rec, uint32_t flags)
622 {
623         struct ldb_message *msg;
624         TALLOC_CTX *tmp_ctx = talloc_new(wins_db);
625         int trans;
626         int ret;
627         int i;
628
629         trans = ldb_transaction_start(wins_db);
630         if (trans != LDB_SUCCESS) goto failed;
631
632         if (flags & WINSDB_FLAG_ALLOC_VERSION) {
633                 rec->version = winsdb_allocate_version(wins_db);
634                 if (rec->version == 0) goto failed;
635         }
636         if (flags & WINSDB_FLAG_TAKE_OWNERSHIP) {
637                 rec->wins_owner = WINSDB_OWNER_LOCAL;
638         }
639
640         msg = winsdb_message(wins_db, rec, tmp_ctx);
641         if (msg == NULL) goto failed;
642
643         for (i=0;i<msg->num_elements;i++) {
644                 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
645         }
646
647         ret = ldb_modify(wins_db, msg);
648         if (ret != 0) goto failed;
649
650         trans = ldb_transaction_commit(wins_db);
651         if (trans != LDB_SUCCESS) goto failed;
652
653         talloc_free(tmp_ctx);
654         return NBT_RCODE_OK;
655
656 failed:
657         if (trans == LDB_SUCCESS) ldb_transaction_cancel(wins_db);
658         talloc_free(tmp_ctx);
659         return NBT_RCODE_SVR;
660 }
661
662
663 /*
664   delete a WINS record from the database
665 */
666 uint8_t winsdb_delete(struct ldb_context *wins_db, struct winsdb_record *rec)
667 {
668         TALLOC_CTX *tmp_ctx = talloc_new(wins_db);
669         const struct ldb_dn *dn;
670         int trans;
671         int ret;
672
673         trans = ldb_transaction_start(wins_db);
674         if (trans != LDB_SUCCESS) goto failed;
675
676         dn = winsdb_dn(tmp_ctx, rec->name);
677         if (dn == NULL) goto failed;
678
679         ret = ldb_delete(wins_db, dn);
680         if (ret != 0) goto failed;
681
682         trans = ldb_transaction_commit(wins_db);
683         if (trans != LDB_SUCCESS) goto failed;
684
685         talloc_free(tmp_ctx);
686         return NBT_RCODE_OK;
687
688 failed:
689         if (trans == LDB_SUCCESS) ldb_transaction_cancel(wins_db);
690         talloc_free(tmp_ctx);
691         return NBT_RCODE_SVR;
692 }
693
694 struct ldb_context *winsdb_connect(TALLOC_CTX *mem_ctx)
695 {
696         return ldb_wrap_connect(mem_ctx, lock_path(mem_ctx, lp_wins_url()),
697                                 system_session(mem_ctx), NULL, 0, NULL);
698 }