2 Unix SMB/CIFS implementation.
6 Copyright (C) Andrew Tridgell 2005
7 Copyright (C) Stefan Metzmacher 2005
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 3 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "nbt_server/nbt_server.h"
25 #include "nbt_server/wins/winsdb.h"
27 #include <ldb_errors.h>
28 #include "librpc/gen_ndr/ndr_nbt.h"
29 #include "system/time.h"
31 #include "system/network.h"
32 #include "lib/socket/netif.h"
33 #include "param/param.h"
35 uint64_t winsdb_get_maxVersion(struct winsdb_handle
*h
)
38 struct ldb_context
*ldb
= h
->ldb
;
40 struct ldb_result
*res
= NULL
;
41 TALLOC_CTX
*tmp_ctx
= talloc_new(ldb
);
42 uint64_t maxVersion
= 0;
44 dn
= ldb_dn_new(tmp_ctx
, ldb
, "CN=VERSION");
47 /* find the record in the WINS database */
48 ret
= ldb_search(ldb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_BASE
, NULL
, NULL
);
49 if (ret
!= LDB_SUCCESS
) goto failed
;
50 if (res
->count
> 1) goto failed
;
52 if (res
->count
== 1) {
53 maxVersion
= ldb_msg_find_attr_as_uint64(res
->msgs
[0], "maxVersion", 0);
62 if newVersion == 0 return the old maxVersion + 1 and save it
63 if newVersion > 0 return MAX(oldMaxVersion, newMaxVersion) and save it
65 uint64_t winsdb_set_maxVersion(struct winsdb_handle
*h
, uint64_t newMaxVersion
)
70 struct ldb_result
*res
= NULL
;
71 struct ldb_message
*msg
= NULL
;
72 struct ldb_context
*wins_db
= h
->ldb
;
73 TALLOC_CTX
*tmp_ctx
= talloc_new(wins_db
);
74 uint64_t oldMaxVersion
= 0;
76 trans
= ldb_transaction_start(wins_db
);
77 if (trans
!= LDB_SUCCESS
) goto failed
;
79 dn
= ldb_dn_new(tmp_ctx
, wins_db
, "CN=VERSION");
82 /* find the record in the WINS database */
83 ret
= ldb_search(wins_db
, tmp_ctx
, &res
, dn
, LDB_SCOPE_BASE
, NULL
, NULL
);
84 if (ret
!= LDB_SUCCESS
) goto failed
;
85 if (res
->count
> 1) goto failed
;
87 if (res
->count
== 1) {
88 oldMaxVersion
= ldb_msg_find_attr_as_uint64(res
->msgs
[0], "maxVersion", 0);
91 if (newMaxVersion
== 0) {
92 newMaxVersion
= oldMaxVersion
+ 1;
94 newMaxVersion
= MAX(oldMaxVersion
, newMaxVersion
);
97 msg
= ldb_msg_new(tmp_ctx
);
98 if (!msg
) goto failed
;
102 ret
= ldb_msg_add_empty(msg
, "objectClass", LDB_FLAG_MOD_REPLACE
, NULL
);
103 if (ret
!= LDB_SUCCESS
) goto failed
;
104 ret
= ldb_msg_add_string(msg
, "objectClass", "winsMaxVersion");
105 if (ret
!= LDB_SUCCESS
) goto failed
;
106 ret
= ldb_msg_add_empty(msg
, "maxVersion", LDB_FLAG_MOD_REPLACE
, NULL
);
107 if (ret
!= LDB_SUCCESS
) goto failed
;
108 ret
= ldb_msg_add_fmt(msg
, "maxVersion", "%llu", (long long)newMaxVersion
);
109 if (ret
!= LDB_SUCCESS
) goto failed
;
111 ret
= ldb_modify(wins_db
, msg
);
112 if (ret
!= LDB_SUCCESS
) ret
= ldb_add(wins_db
, msg
);
113 if (ret
!= LDB_SUCCESS
) goto failed
;
115 trans
= ldb_transaction_commit(wins_db
);
116 if (trans
!= LDB_SUCCESS
) goto failed
;
118 talloc_free(tmp_ctx
);
119 return newMaxVersion
;
122 if (trans
== LDB_SUCCESS
) ldb_transaction_cancel(wins_db
);
123 talloc_free(tmp_ctx
);
128 return a DN for a nbt_name
130 static struct ldb_dn
*winsdb_dn(TALLOC_CTX
*mem_ctx
, struct ldb_context
*ldb
,
131 const struct nbt_name
*name
)
135 dn
= ldb_dn_new_fmt(mem_ctx
, ldb
, "type=0x%02X", name
->type
);
136 if (ldb_dn_is_valid(dn
) && name
->name
&& *name
->name
) {
137 ldb_dn_add_child_fmt(dn
, "name=%s", name
->name
);
139 if (ldb_dn_is_valid(dn
) && name
->scope
&& *name
->scope
) {
140 ldb_dn_add_child_fmt(dn
, "scope=%s", name
->scope
);
145 static NTSTATUS
winsdb_nbt_name(TALLOC_CTX
*mem_ctx
, struct ldb_dn
*dn
, struct nbt_name
**_name
)
148 struct nbt_name
*name
;
149 unsigned int comp_num
;
152 name
= talloc(mem_ctx
, struct nbt_name
);
154 status
= NT_STATUS_NO_MEMORY
;
158 comp_num
= ldb_dn_get_comp_num(dn
);
161 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
165 if (comp_num
> cur
&& strcasecmp("scope", ldb_dn_get_component_name(dn
, cur
)) == 0) {
166 name
->scope
= (const char *)talloc_strdup(name
, (char *)ldb_dn_get_component_val(dn
, cur
)->data
);
172 if (comp_num
> cur
&& strcasecmp("name", ldb_dn_get_component_name(dn
, cur
)) == 0) {
173 name
->name
= (const char *)talloc_strdup(name
, (char *)ldb_dn_get_component_val(dn
, cur
)->data
);
176 name
->name
= talloc_strdup(name
, "");
178 status
= NT_STATUS_NO_MEMORY
;
183 if (comp_num
> cur
&& strcasecmp("type", ldb_dn_get_component_name(dn
, cur
)) == 0) {
184 name
->type
= strtoul((char *)ldb_dn_get_component_val(dn
, cur
)->data
, NULL
, 0);
187 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
199 decode the winsdb_addr("address") attribute:
201 "172.31.1.1;winsOwner:172.31.9.202;expireTime:20050923032330.0Z;"
204 static NTSTATUS
winsdb_addr_decode(struct winsdb_handle
*h
, struct winsdb_record
*rec
, struct ldb_val
*val
,
205 TALLOC_CTX
*mem_ctx
, struct winsdb_addr
**_addr
)
208 struct winsdb_addr
*addr
;
210 const char *wins_owner
;
211 const char *expire_time
;
214 addr
= talloc(mem_ctx
, struct winsdb_addr
);
216 status
= NT_STATUS_NO_MEMORY
;
220 address
= (char *)val
->data
;
222 p
= strchr(address
, ';');
224 /* support old entries, with only the address */
225 addr
->address
= (const char *)talloc_steal(addr
, val
->data
);
226 addr
->wins_owner
= talloc_strdup(addr
, rec
->wins_owner
);
227 if (!addr
->wins_owner
) {
228 status
= NT_STATUS_NO_MEMORY
;
231 addr
->expire_time
= rec
->expire_time
;
237 addr
->address
= talloc_strdup(addr
, address
);
238 if (!addr
->address
) {
239 status
= NT_STATUS_NO_MEMORY
;
243 if (strncmp("winsOwner:", p
, 10) != 0) {
244 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
248 p
= strchr(wins_owner
, ';');
250 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
255 if (strcmp(wins_owner
, "0.0.0.0") == 0) {
256 wins_owner
= h
->local_owner
;
258 addr
->wins_owner
= talloc_strdup(addr
, wins_owner
);
259 if (!addr
->wins_owner
) {
260 status
= NT_STATUS_NO_MEMORY
;
264 if (strncmp("expireTime:", p
, 11) != 0) {
265 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
269 expire_time
= p
+ 11;
270 p
= strchr(expire_time
, ';');
272 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
277 addr
->expire_time
= ldb_string_to_time(expire_time
);
287 encode the winsdb_addr("address") attribute like this:
289 "172.31.1.1;winsOwner:172.31.9.202;expireTime:20050923032330.0Z;"
293 static int ldb_msg_add_winsdb_addr(struct ldb_message
*msg
, struct winsdb_record
*rec
,
294 const char *attr_name
, struct winsdb_addr
*addr
)
298 if (rec
->is_static
) {
299 str
= talloc_strdup(msg
, addr
->address
);
300 if (!str
) return LDB_ERR_OPERATIONS_ERROR
;
303 expire_time
= ldb_timestring(msg
, addr
->expire_time
);
304 if (!expire_time
) return LDB_ERR_OPERATIONS_ERROR
;
305 str
= talloc_asprintf(msg
, "%s;winsOwner:%s;expireTime:%s;",
306 addr
->address
, addr
->wins_owner
,
308 talloc_free(expire_time
);
309 if (!str
) return LDB_ERR_OPERATIONS_ERROR
;
312 return ldb_msg_add_string(msg
, attr_name
, str
);
315 struct winsdb_addr
**winsdb_addr_list_make(TALLOC_CTX
*mem_ctx
)
317 struct winsdb_addr
**addresses
;
319 addresses
= talloc_array(mem_ctx
, struct winsdb_addr
*, 1);
320 if (!addresses
) return NULL
;
327 static int winsdb_addr_sort_list (struct winsdb_addr
**p1
, struct winsdb_addr
**p2
, void *opaque
)
329 struct winsdb_addr
*a1
= talloc_get_type(*p1
, struct winsdb_addr
);
330 struct winsdb_addr
*a2
= talloc_get_type(*p2
, struct winsdb_addr
);
331 struct winsdb_handle
*h
= talloc_get_type(opaque
, struct winsdb_handle
);
332 bool a1_owned
= false;
333 bool a2_owned
= false;
336 * first the owned addresses with the newest to the oldest address
337 * then the replica addresses with the newest to the oldest address
339 if (a2
->expire_time
!= a1
->expire_time
) {
340 return a2
->expire_time
- a1
->expire_time
;
343 if (strcmp(a2
->wins_owner
, h
->local_owner
) == 0) {
347 if (strcmp(a1
->wins_owner
, h
->local_owner
) == 0) {
351 return a2_owned
- a1_owned
;
354 struct winsdb_addr
**winsdb_addr_list_add(struct winsdb_handle
*h
, const struct winsdb_record
*rec
,
355 struct winsdb_addr
**addresses
, const char *address
,
356 const char *wins_owner
, time_t expire_time
,
357 bool is_name_registration
)
359 struct winsdb_addr
*old_addr
= NULL
;
362 bool found_old_replica
= false;
365 * count the addresses and maybe
366 * find an old entry for the new address
368 for (i
=0; addresses
[i
]; i
++) {
369 if (old_addr
) continue;
370 if (strcmp(addresses
[i
]->address
, address
) == 0) {
371 old_addr
= addresses
[i
];
377 * the address is already there
378 * and we can replace it
381 goto remove_old_addr
;
385 * if we don't have 25 addresses already,
386 * we can just add the new address
393 * if we haven't found the address,
394 * and we have already have 25 addresses
395 * if so then we need to do the following:
396 * - if it isn't a name registration, then just ignore the new address
397 * - if it is a name registration, then first search for
398 * the oldest replica and if there's no replica address
399 * search the oldest owned address
401 if (!is_name_registration
) {
406 * find the oldest replica address, if there's no replica
407 * record at all, find the oldest owned address
409 for (i
=0; addresses
[i
]; i
++) {
410 bool cur_is_replica
= false;
411 /* find out if the current address is a replica */
412 if (strcmp(addresses
[i
]->wins_owner
, h
->local_owner
) != 0) {
413 cur_is_replica
= true;
417 * if we already found a replica address and the current address
418 * is not a replica, then skip it
420 if (found_old_replica
&& !cur_is_replica
) continue;
423 * if we found the first replica address, reset the address
424 * that would be replaced
426 if (!found_old_replica
&& cur_is_replica
) {
427 found_old_replica
= true;
428 old_addr
= addresses
[i
];
433 * if the first address isn't a replica, just start with
437 old_addr
= addresses
[i
];
442 * see if we find an older address
444 if (addresses
[i
]->expire_time
< old_addr
->expire_time
) {
445 old_addr
= addresses
[i
];
451 winsdb_addr_list_remove(addresses
, old_addr
->address
);
455 addresses
= talloc_realloc(addresses
, addresses
, struct winsdb_addr
*, len
+ 2);
456 if (!addresses
) return NULL
;
458 addresses
[len
] = talloc(addresses
, struct winsdb_addr
);
459 if (!addresses
[len
]) {
460 talloc_free(addresses
);
464 addresses
[len
]->address
= talloc_strdup(addresses
[len
], address
);
465 if (!addresses
[len
]->address
) {
466 talloc_free(addresses
);
470 addresses
[len
]->wins_owner
= talloc_strdup(addresses
[len
], wins_owner
);
471 if (!addresses
[len
]->wins_owner
) {
472 talloc_free(addresses
);
476 addresses
[len
]->expire_time
= expire_time
;
478 addresses
[len
+1] = NULL
;
480 LDB_TYPESAFE_QSORT(addresses
, len
+1, h
, winsdb_addr_sort_list
);
485 void winsdb_addr_list_remove(struct winsdb_addr
**addresses
, const char *address
)
489 for (i
=0; addresses
[i
]; i
++) {
490 if (strcmp(addresses
[i
]->address
, address
) == 0) {
495 for (; addresses
[i
]; i
++) {
496 addresses
[i
] = addresses
[i
+1];
502 struct winsdb_addr
*winsdb_addr_list_check(struct winsdb_addr
**addresses
, const char *address
)
506 for (i
=0; addresses
[i
]; i
++) {
507 if (strcmp(addresses
[i
]->address
, address
) == 0) {
515 size_t winsdb_addr_list_length(struct winsdb_addr
**addresses
)
518 for (i
=0; addresses
[i
]; i
++);
522 const char **winsdb_addr_string_list(TALLOC_CTX
*mem_ctx
, struct winsdb_addr
**addresses
)
524 size_t len
= winsdb_addr_list_length(addresses
);
525 const char **str_list
=NULL
;
528 for (i
=0; i
< len
; i
++) {
529 str_list
= str_list_add(str_list
, addresses
[i
]->address
);
534 talloc_steal(mem_ctx
, str_list
);
539 load a WINS entry from the database
541 NTSTATUS
winsdb_lookup(struct winsdb_handle
*h
,
542 const struct nbt_name
*name
,
544 struct winsdb_record
**_rec
)
547 struct ldb_result
*res
= NULL
;
549 struct winsdb_record
*rec
;
550 struct ldb_context
*wins_db
= h
->ldb
;
551 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
552 time_t now
= time(NULL
);
554 /* find the record in the WINS database */
555 ret
= ldb_search(wins_db
, tmp_ctx
, &res
,
556 winsdb_dn(tmp_ctx
, wins_db
, name
),
557 LDB_SCOPE_BASE
, NULL
, NULL
);
559 if (ret
!= LDB_SUCCESS
|| res
->count
> 1) {
560 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
562 } else if (res
->count
== 0) {
563 status
= NT_STATUS_OBJECT_NAME_NOT_FOUND
;
567 status
= winsdb_record(h
, res
->msgs
[0], tmp_ctx
, now
, &rec
);
568 if (!NT_STATUS_IS_OK(status
)) goto failed
;
570 talloc_steal(mem_ctx
, rec
);
571 talloc_free(tmp_ctx
);
576 talloc_free(tmp_ctx
);
580 NTSTATUS
winsdb_record(struct winsdb_handle
*h
, struct ldb_message
*msg
, TALLOC_CTX
*mem_ctx
, time_t now
, struct winsdb_record
**_rec
)
583 struct winsdb_record
*rec
;
584 struct ldb_message_element
*el
;
585 struct nbt_name
*name
;
586 uint32_t i
, j
, num_values
;
588 rec
= talloc(mem_ctx
, struct winsdb_record
);
590 status
= NT_STATUS_NO_MEMORY
;
594 status
= winsdb_nbt_name(rec
, msg
->dn
, &name
);
595 if (!NT_STATUS_IS_OK(status
)) goto failed
;
597 if (strlen(name
->name
) > 15) {
598 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
601 if (name
->scope
&& strlen(name
->scope
) > 238) {
602 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
606 /* parse it into a more convenient winsdb_record structure */
608 rec
->type
= ldb_msg_find_attr_as_int(msg
, "recordType", WREPL_TYPE_UNIQUE
);
609 rec
->state
= ldb_msg_find_attr_as_int(msg
, "recordState", WREPL_STATE_RELEASED
);
610 rec
->node
= ldb_msg_find_attr_as_int(msg
, "nodeType", WREPL_NODE_B
);
611 rec
->is_static
= ldb_msg_find_attr_as_int(msg
, "isStatic", 0);
612 rec
->expire_time
= ldb_string_to_time(ldb_msg_find_attr_as_string(msg
, "expireTime", NULL
));
613 rec
->version
= ldb_msg_find_attr_as_uint64(msg
, "versionID", 0);
614 rec
->wins_owner
= ldb_msg_find_attr_as_string(msg
, "winsOwner", NULL
);
615 rec
->registered_by
= ldb_msg_find_attr_as_string(msg
, "registeredBy", NULL
);
616 talloc_steal(rec
, rec
->wins_owner
);
617 talloc_steal(rec
, rec
->registered_by
);
619 if (!rec
->wins_owner
|| strcmp(rec
->wins_owner
, "0.0.0.0") == 0) {
620 rec
->wins_owner
= h
->local_owner
;
623 el
= ldb_msg_find_element(msg
, "address");
625 num_values
= el
->num_values
;
630 if (rec
->type
== WREPL_TYPE_UNIQUE
|| rec
->type
== WREPL_TYPE_GROUP
) {
631 if (num_values
!= 1) {
632 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
636 if (rec
->state
== WREPL_STATE_ACTIVE
) {
637 if (num_values
< 1) {
638 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
642 if (num_values
> 25) {
643 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
647 rec
->addresses
= talloc_array(rec
, struct winsdb_addr
*, num_values
+1);
648 if (rec
->addresses
== NULL
) {
649 status
= NT_STATUS_NO_MEMORY
;
653 for (i
=0,j
=0;i
<num_values
;i
++) {
654 bool we_are_owner
= false;
656 status
= winsdb_addr_decode(h
, rec
, &el
->values
[i
], rec
->addresses
, &rec
->addresses
[j
]);
657 if (!NT_STATUS_IS_OK(status
)) goto failed
;
659 if (strcmp(rec
->addresses
[j
]->wins_owner
, h
->local_owner
) == 0) {
664 * the record isn't static and is active
665 * then don't add the address if it's expired,
666 * but only if we're the owner of the address
668 * This is important for SGROUP records,
669 * because each server thinks he's the owner of the
670 * record and the record isn't replicated on a
671 * name_refresh. So addresses owned by another owner
672 * could expire, but we still need to return them
675 if (!rec
->is_static
&&
676 rec
->addresses
[j
]->expire_time
<= now
&&
677 rec
->state
== WREPL_STATE_ACTIVE
&&
679 DEBUG(5,("WINS: expiring name addr %s of %s (expired at %s)\n",
680 rec
->addresses
[j
]->address
, nbt_name_string(rec
->addresses
[j
], rec
->name
),
681 timestring(rec
->addresses
[j
], rec
->addresses
[j
]->expire_time
)));
682 talloc_free(rec
->addresses
[j
]);
683 rec
->addresses
[j
] = NULL
;
688 rec
->addresses
[j
] = NULL
;
691 if (rec
->is_static
&& rec
->state
== WREPL_STATE_ACTIVE
) {
692 rec
->expire_time
= get_time_t_max();
693 for (i
=0;rec
->addresses
[i
];i
++) {
694 rec
->addresses
[i
]->expire_time
= rec
->expire_time
;
698 if (rec
->state
== WREPL_STATE_ACTIVE
) {
699 if (num_values
< 1) {
700 DEBUG(5,("WINS: expiring name %s (because it has no active addresses)\n",
701 nbt_name_string(mem_ctx
, rec
->name
)));
702 rec
->state
= WREPL_STATE_RELEASED
;
709 if (NT_STATUS_EQUAL(NT_STATUS_INTERNAL_DB_CORRUPTION
, status
)) {
710 DEBUG(1,("winsdb_record: corrupted record: %s\n", ldb_dn_get_linearized(msg
->dn
)));
717 form a ldb_message from a winsdb_record
719 static struct ldb_message
*winsdb_message(struct ldb_context
*ldb
,
720 struct winsdb_record
*rec
,
725 const char *expire_time
;
726 struct ldb_message
*msg
= ldb_msg_new(mem_ctx
);
727 if (msg
== NULL
) goto failed
;
729 /* make sure we don't put in corrupted records */
730 addr_count
= winsdb_addr_list_length(rec
->addresses
);
731 if (rec
->state
== WREPL_STATE_ACTIVE
&& addr_count
== 0) {
732 rec
->state
= WREPL_STATE_RELEASED
;
734 if (rec
->type
== WREPL_TYPE_UNIQUE
&& addr_count
> 1) {
735 rec
->type
= WREPL_TYPE_MHOMED
;
738 expire_time
= ldb_timestring(msg
, rec
->expire_time
);
743 msg
->dn
= winsdb_dn(msg
, ldb
, rec
->name
);
744 if (msg
->dn
== NULL
) goto failed
;
745 ret
= ldb_msg_add_fmt(msg
, "type", "0x%02X", rec
->name
->type
);
746 if (rec
->name
->name
&& *rec
->name
->name
) {
747 ret
|= ldb_msg_add_string(msg
, "name", rec
->name
->name
);
749 if (rec
->name
->scope
&& *rec
->name
->scope
) {
750 ret
|= ldb_msg_add_string(msg
, "scope", rec
->name
->scope
);
752 ret
|= ldb_msg_add_fmt(msg
, "objectClass", "winsRecord");
753 ret
|= ldb_msg_add_fmt(msg
, "recordType", "%u", rec
->type
);
754 ret
|= ldb_msg_add_fmt(msg
, "recordState", "%u", rec
->state
);
755 ret
|= ldb_msg_add_fmt(msg
, "nodeType", "%u", rec
->node
);
756 ret
|= ldb_msg_add_fmt(msg
, "isStatic", "%u", rec
->is_static
);
757 ret
|= ldb_msg_add_empty(msg
, "expireTime", 0, NULL
);
758 if (!(rec
->is_static
&& rec
->state
== WREPL_STATE_ACTIVE
)) {
759 ret
|= ldb_msg_add_string(msg
, "expireTime", expire_time
);
761 ret
|= ldb_msg_add_fmt(msg
, "versionID", "%llu", (long long)rec
->version
);
762 ret
|= ldb_msg_add_string(msg
, "winsOwner", rec
->wins_owner
);
763 ret
|= ldb_msg_add_empty(msg
, "address", 0, NULL
);
764 for (i
=0;rec
->addresses
[i
];i
++) {
765 ret
|= ldb_msg_add_winsdb_addr(msg
, rec
, "address", rec
->addresses
[i
]);
767 if (rec
->registered_by
) {
768 ret
|= ldb_msg_add_empty(msg
, "registeredBy", 0, NULL
);
769 ret
|= ldb_msg_add_string(msg
, "registeredBy", rec
->registered_by
);
771 if (ret
!= LDB_SUCCESS
) goto failed
;
780 save a WINS record into the database
782 uint8_t winsdb_add(struct winsdb_handle
*h
, struct winsdb_record
*rec
, uint32_t flags
)
784 struct ldb_message
*msg
;
785 struct ldb_context
*wins_db
= h
->ldb
;
786 TALLOC_CTX
*tmp_ctx
= talloc_new(wins_db
);
790 trans
= ldb_transaction_start(wins_db
);
791 if (trans
!= LDB_SUCCESS
) goto failed
;
793 if (flags
& WINSDB_FLAG_ALLOC_VERSION
) {
794 /* passing '0' means auto-allocate a new one */
795 rec
->version
= winsdb_set_maxVersion(h
, 0);
796 if (rec
->version
== 0) goto failed
;
798 if (flags
& WINSDB_FLAG_TAKE_OWNERSHIP
) {
799 rec
->wins_owner
= h
->local_owner
;
802 msg
= winsdb_message(wins_db
, rec
, tmp_ctx
);
803 if (msg
== NULL
) goto failed
;
804 ret
= ldb_add(wins_db
, msg
);
805 if (ret
!= LDB_SUCCESS
) goto failed
;
807 trans
= ldb_transaction_commit(wins_db
);
808 if (trans
!= LDB_SUCCESS
) goto failed
;
810 wins_hook(h
, rec
, WINS_HOOK_ADD
, h
->hook_script
);
812 talloc_free(tmp_ctx
);
816 if (trans
== LDB_SUCCESS
) ldb_transaction_cancel(wins_db
);
817 talloc_free(tmp_ctx
);
818 return NBT_RCODE_SVR
;
823 modify a WINS record in the database
825 uint8_t winsdb_modify(struct winsdb_handle
*h
, struct winsdb_record
*rec
, uint32_t flags
)
827 struct ldb_message
*msg
;
828 struct ldb_context
*wins_db
= h
->ldb
;
829 TALLOC_CTX
*tmp_ctx
= talloc_new(wins_db
);
834 trans
= ldb_transaction_start(wins_db
);
835 if (trans
!= LDB_SUCCESS
) goto failed
;
837 if (flags
& WINSDB_FLAG_ALLOC_VERSION
) {
838 /* passing '0' means auto-allocate a new one */
839 rec
->version
= winsdb_set_maxVersion(h
, 0);
840 if (rec
->version
== 0) goto failed
;
842 if (flags
& WINSDB_FLAG_TAKE_OWNERSHIP
) {
843 rec
->wins_owner
= h
->local_owner
;
846 msg
= winsdb_message(wins_db
, rec
, tmp_ctx
);
847 if (msg
== NULL
) goto failed
;
849 for (i
=0;i
<msg
->num_elements
;i
++) {
850 msg
->elements
[i
].flags
= LDB_FLAG_MOD_REPLACE
;
853 ret
= ldb_modify(wins_db
, msg
);
854 if (ret
!= LDB_SUCCESS
) goto failed
;
856 trans
= ldb_transaction_commit(wins_db
);
857 if (trans
!= LDB_SUCCESS
) goto failed
;
859 wins_hook(h
, rec
, WINS_HOOK_MODIFY
, h
->hook_script
);
861 talloc_free(tmp_ctx
);
865 if (trans
== LDB_SUCCESS
) ldb_transaction_cancel(wins_db
);
866 talloc_free(tmp_ctx
);
867 return NBT_RCODE_SVR
;
872 delete a WINS record from the database
874 uint8_t winsdb_delete(struct winsdb_handle
*h
, struct winsdb_record
*rec
)
876 struct ldb_context
*wins_db
= h
->ldb
;
877 TALLOC_CTX
*tmp_ctx
= talloc_new(wins_db
);
882 trans
= ldb_transaction_start(wins_db
);
883 if (trans
!= LDB_SUCCESS
) goto failed
;
885 dn
= winsdb_dn(tmp_ctx
, wins_db
, rec
->name
);
886 if (dn
== NULL
) goto failed
;
888 ret
= ldb_delete(wins_db
, dn
);
889 if (ret
!= LDB_SUCCESS
) goto failed
;
891 trans
= ldb_transaction_commit(wins_db
);
892 if (trans
!= LDB_SUCCESS
) goto failed
;
894 wins_hook(h
, rec
, WINS_HOOK_DELETE
, h
->hook_script
);
896 talloc_free(tmp_ctx
);
900 if (trans
== LDB_SUCCESS
) ldb_transaction_cancel(wins_db
);
901 talloc_free(tmp_ctx
);
902 return NBT_RCODE_SVR
;
905 static bool winsdb_check_or_add_module_list(struct tevent_context
*ev_ctx
,
906 struct loadparm_context
*lp_ctx
, struct winsdb_handle
*h
,
907 const char *wins_path
)
912 struct ldb_result
*res
= NULL
;
913 struct ldb_message
*msg
= NULL
;
914 TALLOC_CTX
*tmp_ctx
= talloc_new(h
);
915 unsigned int flags
= 0;
917 trans
= ldb_transaction_start(h
->ldb
);
918 if (trans
!= LDB_SUCCESS
) goto failed
;
920 /* check if we have a special @MODULES record already */
921 dn
= ldb_dn_new(tmp_ctx
, h
->ldb
, "@MODULES");
922 if (!dn
) goto failed
;
924 /* find the record in the WINS database */
925 ret
= ldb_search(h
->ldb
, tmp_ctx
, &res
, dn
, LDB_SCOPE_BASE
, NULL
, NULL
);
926 if (ret
!= LDB_SUCCESS
) goto failed
;
928 if (res
->count
> 0) goto skip
;
930 /* if there's no record, add one */
931 msg
= ldb_msg_new(tmp_ctx
);
932 if (!msg
) goto failed
;
935 ret
= ldb_msg_add_string(msg
, "@LIST", "wins_ldb");
936 if (ret
!= LDB_SUCCESS
) goto failed
;
938 ret
= ldb_add(h
->ldb
, msg
);
939 if (ret
!= LDB_SUCCESS
) goto failed
;
941 trans
= ldb_transaction_commit(h
->ldb
);
942 if (trans
!= LDB_SUCCESS
) goto failed
;
944 /* close and reopen the database, with the modules */
945 trans
= LDB_ERR_OTHER
;
949 if (lpcfg_parm_bool(lp_ctx
, NULL
,"winsdb", "nosync", false)) {
950 flags
|= LDB_FLG_NOSYNC
;
953 h
->ldb
= ldb_wrap_connect(h
, ev_ctx
, lp_ctx
, wins_path
,
955 if (!h
->ldb
) goto failed
;
957 talloc_free(tmp_ctx
);
961 if (trans
== LDB_SUCCESS
) ldb_transaction_cancel(h
->ldb
);
962 talloc_free(tmp_ctx
);
966 if (trans
== LDB_SUCCESS
) ldb_transaction_cancel(h
->ldb
);
967 talloc_free(tmp_ctx
);
971 struct winsdb_handle
*winsdb_connect(TALLOC_CTX
*mem_ctx
,
972 struct tevent_context
*ev_ctx
,
973 struct loadparm_context
*lp_ctx
,
975 enum winsdb_handle_caller caller
)
977 struct winsdb_handle
*h
= NULL
;
978 unsigned int flags
= 0;
983 h
= talloc_zero(mem_ctx
, struct winsdb_handle
);
986 wins_path
= lpcfg_state_path(h
, lp_ctx
, "wins.ldb");
988 if (lpcfg_parm_bool(lp_ctx
, NULL
,"winsdb", "nosync", false)) {
989 flags
|= LDB_FLG_NOSYNC
;
992 h
->ldb
= ldb_wrap_connect(h
, ev_ctx
, lp_ctx
, wins_path
,
994 if (!h
->ldb
) goto failed
;
997 h
->hook_script
= lpcfg_wins_hook(lp_ctx
, h
);
999 h
->local_owner
= talloc_strdup(h
, owner
);
1000 if (!h
->local_owner
) goto failed
;
1002 /* make sure the module list is available and used */
1003 ret
= winsdb_check_or_add_module_list(ev_ctx
, lp_ctx
, h
, wins_path
);
1004 if (!ret
) goto failed
;
1006 ldb_err
= ldb_set_opaque(h
->ldb
, "winsdb_handle", h
);
1007 if (ldb_err
!= LDB_SUCCESS
) goto failed
;