r5550: Initialise retry count - valgrind was freaking out because this value
[samba.git] / source4 / libcli / resolve / nbtlist.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    nbt list of addresses 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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 /*
24   TODO: we should lower the timeout, and add retries for each name
25 */
26
27 #include "includes.h"
28 #include "libcli/raw/libcliraw.h"
29 #include "libcli/nbt/libnbt.h"
30 #include "libcli/composite/composite.h"
31
32 struct nbtlist_state {
33         struct nbt_name name;
34         struct nbt_name_socket *nbtsock;
35         int num_queries;
36         struct nbt_name_request **queries;
37         struct nbt_name_query *io_queries;
38         const char *reply_addr;
39 };
40
41 /*
42   handle events during nbtlist name resolution
43 */
44 static void nbtlist_handler(struct nbt_name_request *req)
45 {
46         struct composite_context *c = talloc_get_type(req->async.private, 
47                                                      struct composite_context);
48         struct nbtlist_state *state = talloc_get_type(c->private, struct nbtlist_state);
49         int i;
50
51         for (i=0;i<state->num_queries;i++) {
52                 if (req == state->queries[i]) break;
53         }
54         if (i == state->num_queries) {
55                 /* not for us?! */
56                 c->status = NT_STATUS_INTERNAL_ERROR;
57                 c->state = SMBCLI_REQUEST_ERROR;                
58                 goto done;
59         } 
60
61         c->status = nbt_name_query_recv(req, state, &state->io_queries[i]);
62         if (!NT_STATUS_IS_OK(c->status)) {
63                 c->state = SMBCLI_REQUEST_ERROR;
64         } else {
65                 if (state->io_queries[i].out.num_addrs < 1) {
66                         c->state = SMBCLI_REQUEST_ERROR;
67                         c->status = NT_STATUS_UNEXPECTED_NETWORK_ERROR;
68                 } else {
69                         c->state = SMBCLI_REQUEST_DONE;
70                         state->reply_addr = talloc_steal(state, state->io_queries[i].out.reply_addrs[0]);
71                 }
72         }
73
74 done:
75         talloc_free(state->nbtsock);
76         if (c->async.fn) {
77                 c->async.fn(c);
78         }
79 }
80
81 /*
82   nbtlist name resolution method - async send
83  */
84 struct composite_context *resolve_name_nbtlist_send(struct nbt_name *name, 
85                                                    struct event_context *event_ctx,
86                                                    const char **address_list,
87                                                    BOOL broadcast,
88                                                    BOOL wins_lookup)
89 {
90         struct composite_context *c;
91         struct nbtlist_state *state;
92         int i;
93         NTSTATUS status;
94
95         c = talloc_zero(NULL, struct composite_context);
96         if (c == NULL) goto failed;
97
98         state = talloc(c, struct nbtlist_state);
99         if (state == NULL) goto failed;
100
101         status = nbt_name_dup(state, name, &state->name);
102         if (!NT_STATUS_IS_OK(status)) goto failed;
103
104         state->name.name = strupper_talloc(state, state->name.name);
105         if (state->name.name == NULL) goto failed;
106         if (state->name.scope) {
107                 state->name.scope = strupper_talloc(state, state->name.scope);
108                 if (state->name.scope == NULL) goto failed;
109         }
110
111         state->nbtsock = nbt_name_socket_init(state, event_ctx);
112         if (state->nbtsock == NULL) goto failed;
113
114         /* count the address_list size */
115         for (i=0;address_list[i];i++) /* noop */ ;
116
117         state->num_queries = i;
118         state->io_queries = talloc_array(state, struct nbt_name_query, state->num_queries);
119         if (!state->io_queries) goto failed;
120
121         state->queries = talloc_array(state, struct nbt_name_request *, state->num_queries);
122         if (!state->queries) goto failed;
123
124         for (i=0;i<state->num_queries;i++) {
125                 state->io_queries[i].in.name = state->name;
126                 state->io_queries[i].in.dest_addr = talloc_strdup(state->io_queries, address_list[i]);
127                 if (!state->io_queries[i].in.dest_addr) goto failed;
128                 state->io_queries[i].in.broadcast = broadcast;
129                 state->io_queries[i].in.wins_lookup = wins_lookup;
130                 state->io_queries[i].in.timeout = lp_parm_int(-1, "nbt", "timeout", 3);
131
132                 state->io_queries[i].in.retries = 0;
133                 state->queries[i] = nbt_name_query_send(state->nbtsock, &state->io_queries[i]);
134                 if (!state->queries[i]) goto failed;
135
136                 state->queries[i]->async.fn = nbtlist_handler;
137                 state->queries[i]->async.private = c;
138         }
139
140         c->state = SMBCLI_REQUEST_SEND;
141         c->private = state;
142         c->event_ctx = talloc_reference(c, state->nbtsock->event_ctx);
143
144         return c;
145
146 failed:
147         talloc_free(c);
148         return NULL;
149 }
150
151 /*
152   nbt list of addresses name resolution method - recv side
153  */
154 NTSTATUS resolve_name_nbtlist_recv(struct composite_context *c, 
155                                    TALLOC_CTX *mem_ctx, const char **reply_addr)
156 {
157         NTSTATUS status;
158
159         status = composite_wait(c);
160
161         if (NT_STATUS_IS_OK(status)) {
162                 struct nbtlist_state *state = talloc_get_type(c->private, struct nbtlist_state);
163                 *reply_addr = talloc_steal(mem_ctx, state->reply_addr);
164         }
165
166         talloc_free(c);
167         return status;
168 }
169
170 /*
171   nbt list of addresses name resolution method - sync call
172  */
173 NTSTATUS resolve_name_nbtlist(struct nbt_name *name, 
174                               TALLOC_CTX *mem_ctx,
175                               const char **address_list,
176                               BOOL broadcast, BOOL wins_lookup,
177                               const char **reply_addr)
178 {
179         struct composite_context *c = resolve_name_nbtlist_send(name, NULL, address_list, 
180                                                                broadcast, wins_lookup);
181         return resolve_name_nbtlist_recv(c, mem_ctx, reply_addr);
182 }
183