f787d52d3135614580d681d326cff85144cf2591
[abartlet/samba.git/.git] / source4 / libcli / resolve / wins.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    wins name resolution module
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "../libcli/nbt/libnbt.h"
24 #include "libcli/resolve/resolve.h"
25 #include "param/param.h"
26 #include "lib/socket/netif.h"
27
28 struct resolve_wins_data {
29         const char **address_list;
30         struct interface *ifaces;
31         uint16_t nbt_port;
32         int nbt_timeout;
33 };
34
35 /**
36   wins name resolution method - async send
37  */
38 struct composite_context *resolve_name_wins_send(
39                                 TALLOC_CTX *mem_ctx, 
40                                 struct event_context *event_ctx,
41                                 void *userdata,
42                                 struct nbt_name *name)
43 {
44         struct resolve_wins_data *wins_data = talloc_get_type(userdata, struct resolve_wins_data);
45         if (wins_data->address_list == NULL) return NULL;
46         return resolve_name_nbtlist_send(mem_ctx, event_ctx, name, wins_data->address_list, wins_data->ifaces, wins_data->nbt_port, wins_data->nbt_timeout, false, true);
47 }
48
49 /*
50   wins name resolution method - recv side
51  */
52 NTSTATUS resolve_name_wins_recv(struct composite_context *c, 
53                                 TALLOC_CTX *mem_ctx, const char **reply_addr)
54 {
55         return resolve_name_nbtlist_recv(c, mem_ctx, reply_addr);
56 }
57
58 /*
59   wins name resolution method - sync call
60  */
61 NTSTATUS resolve_name_wins(struct nbt_name *name, 
62                             TALLOC_CTX *mem_ctx,
63                             const char **address_list,
64                             struct interface *ifaces,
65                             uint16_t nbt_port,
66                             int nbt_timeout,
67                             const char **reply_addr)
68 {
69         struct composite_context *c;
70         struct resolve_wins_data *wins_data = talloc(mem_ctx, struct resolve_wins_data);
71         wins_data->address_list = address_list;
72         wins_data->ifaces = ifaces;
73         wins_data->nbt_port = nbt_port;
74         wins_data->nbt_timeout = nbt_timeout;
75         c = resolve_name_wins_send(mem_ctx, NULL, wins_data, name);
76         return resolve_name_wins_recv(c, mem_ctx, reply_addr);
77 }
78
79 bool resolve_context_add_wins_method(struct resolve_context *ctx, const char **address_list, struct interface *ifaces, uint16_t nbt_port, int nbt_timeout)
80 {
81         struct resolve_wins_data *wins_data = talloc(ctx, struct resolve_wins_data);
82         wins_data->address_list = (const char **)str_list_copy(wins_data, address_list);
83         wins_data->ifaces = talloc_reference(wins_data, ifaces);
84         wins_data->nbt_port = nbt_port;
85         wins_data->nbt_timeout = nbt_timeout;
86         return resolve_context_add_method(ctx, resolve_name_wins_send, resolve_name_wins_recv,
87                                           wins_data);
88 }
89
90 bool resolve_context_add_wins_method_lp(struct resolve_context *ctx, struct loadparm_context *lp_ctx)
91 {
92         struct interface *ifaces;
93         load_interfaces(ctx, lp_interfaces(lp_ctx), &ifaces);
94         return resolve_context_add_wins_method(ctx, lp_wins_server_list(lp_ctx), ifaces, lp_nbt_port(lp_ctx), lp_parm_int(lp_ctx, NULL, "nbt", "timeout", 1));
95 }