r12608: Remove some unused #include lines.
[kai/samba-autobuild/.git] / source4 / utils / nmblookup.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    NBT client - used to lookup netbios names
5
6    Copyright (C) Andrew Tridgell 1994-2005
7    Copyright (C) Jelmer Vernooij 2003 (Conversion to popt)
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
25 #include "includes.h"
26 #include "lib/cmdline/popt_common.h"
27 #include "system/iconv.h"
28 #include "lib/socket/socket.h"
29
30 /* command line options */
31 static struct {
32         const char *broadcast_address;
33         const char *unicast_address;
34         BOOL find_master;
35         BOOL wins_lookup;
36         BOOL node_status;
37         BOOL root_port;
38         BOOL lookup_by_ip;
39         BOOL case_sensitive;
40 } options;
41
42 /*
43   clean any binary from a node name
44 */
45 static const char *clean_name(TALLOC_CTX *mem_ctx, const char *name)
46 {
47         char *ret = talloc_strdup(mem_ctx, name);
48         int i;
49         for (i=0;ret[i];i++) {
50                 if (!isprint((unsigned char)ret[i])) ret[i] = '.';
51         }
52         return ret;
53 }
54
55 /*
56   turn a node status flags field into a string
57 */
58 static char *node_status_flags(TALLOC_CTX *mem_ctx, uint16_t flags)
59 {
60         char *ret;
61         const char *group = "       ";
62         const char *type = "B";
63
64         if (flags & NBT_NM_GROUP) {
65                 group = "<GROUP>";
66         }
67
68         switch (flags & NBT_NM_OWNER_TYPE) {
69         case NBT_NODE_B: 
70                 type = "B";
71                 break;
72         case NBT_NODE_P: 
73                 type = "P";
74                 break;
75         case NBT_NODE_M: 
76                 type = "M";
77                 break;
78         case NBT_NODE_H: 
79                 type = "H";
80                 break;
81         }
82
83         ret = talloc_asprintf(mem_ctx, "%s %s", group, type);
84
85         if (flags & NBT_NM_DEREGISTER) {
86                 ret = talloc_asprintf_append(ret, " <DEREGISTERING>");
87         }
88         if (flags & NBT_NM_CONFLICT) {
89                 ret = talloc_asprintf_append(ret, " <CONFLICT>");
90         }
91         if (flags & NBT_NM_ACTIVE) {
92                 ret = talloc_asprintf_append(ret, " <ACTIVE>");
93         }
94         if (flags & NBT_NM_PERMANENT) {
95                 ret = talloc_asprintf_append(ret, " <PERMANENT>");
96         }
97         
98         return ret;
99 }
100
101 /* do a single node status */
102 static BOOL do_node_status(struct nbt_name_socket *nbtsock,
103                            const char *addr)
104 {
105         struct nbt_name_status io;
106         NTSTATUS status;
107
108         io.in.name.name = "*";
109         io.in.name.type = NBT_NAME_CLIENT;
110         io.in.name.scope = NULL;
111         io.in.dest_addr = addr;
112         io.in.timeout = 1;
113         io.in.retries = 2;
114
115         status = nbt_name_status(nbtsock, nbtsock, &io);
116         if (NT_STATUS_IS_OK(status)) {
117                 int i;
118                 printf("Node status reply from %s\n",
119                        io.out.reply_from);
120                 for (i=0;i<io.out.status.num_names;i++) {
121                         d_printf("\t%-16s <%02x>  %s\n", 
122                                  clean_name(nbtsock, io.out.status.names[i].name),
123                                  io.out.status.names[i].type,
124                                  node_status_flags(nbtsock, io.out.status.names[i].nb_flags));
125                 }
126                 printf("\n\tMAC Address = %02X-%02X-%02X-%02X-%02X-%02X\n",
127                        io.out.status.statistics.unit_id[0],
128                        io.out.status.statistics.unit_id[1],
129                        io.out.status.statistics.unit_id[2],
130                        io.out.status.statistics.unit_id[3],
131                        io.out.status.statistics.unit_id[4],
132                        io.out.status.statistics.unit_id[5]);
133                 return True;
134         }
135
136         return False;
137 }
138
139 /* do a single node query */
140 static NTSTATUS do_node_query(struct nbt_name_socket *nbtsock,
141                               const char *addr, 
142                               const char *node_name, 
143                               enum nbt_name_type node_type,
144                               BOOL broadcast)
145 {
146         struct nbt_name_query io;
147         NTSTATUS status;
148         int i;
149
150         io.in.name.name = node_name;
151         io.in.name.type = node_type;
152         io.in.name.scope = NULL;
153         io.in.dest_addr = addr;
154         io.in.broadcast = broadcast;
155         io.in.wins_lookup = options.wins_lookup;
156         io.in.timeout = 1;
157         io.in.retries = 2;
158
159         status = nbt_name_query(nbtsock, nbtsock, &io);
160         NT_STATUS_NOT_OK_RETURN(status);
161
162         for (i=0;i<io.out.num_addrs;i++) {
163                 printf("%s %s<%02x>\n",
164                        io.out.reply_addrs[i],
165                        io.out.name.name,
166                        io.out.name.type);
167         }
168         if (options.node_status && io.out.num_addrs > 0) {
169                 do_node_status(nbtsock, io.out.reply_addrs[0]);
170         }
171
172         return status;
173 }
174
175
176 static BOOL process_one(const char *name)
177 {
178         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
179         enum nbt_name_type node_type = NBT_NAME_CLIENT;
180         char *node_name, *p;
181         struct nbt_name_socket *nbtsock;
182         NTSTATUS status = NT_STATUS_OK;
183         BOOL ret = True;
184
185         if (!options.case_sensitive) {
186                 name = strupper_talloc(tmp_ctx, name);
187         }
188         
189         if (options.find_master) {
190                 node_type = NBT_NAME_MASTER;
191                 if (*name == '-') {
192                         name = "\01\02__MSBROWSE__\02";
193                         node_type = NBT_NAME_MS;
194                 }
195         }
196
197         p = strchr(name, '#');
198         if (p) {
199                 node_name = talloc_strndup(tmp_ctx, name, PTR_DIFF(p,name));
200                 node_type = (enum nbt_name_type)strtol(p+1, NULL, 16);
201         } else {
202                 node_name = talloc_strdup(tmp_ctx, name);
203         }
204
205         nbtsock = nbt_name_socket_init(tmp_ctx, NULL);
206
207         if (options.root_port) {
208                 status = socket_listen(nbtsock->sock, "0.0.0.0", NBT_NAME_SERVICE_PORT, 0, 0);
209                 if (!NT_STATUS_IS_OK(status)) {
210                         printf("Failed to bind to local port 137 - %s\n", nt_errstr(status));
211                         talloc_free(tmp_ctx);
212                         return False;
213                 }
214         }
215
216         if (options.lookup_by_ip) {
217                 ret = do_node_status(nbtsock, name);
218                 talloc_free(tmp_ctx);
219                 return ret;
220         }
221
222         if (options.broadcast_address) {
223                 status = do_node_query(nbtsock, options.broadcast_address, node_name, node_type, True);
224         } else if (options.unicast_address) {
225                 status = do_node_query(nbtsock, options.unicast_address, node_name, node_type, False);
226         } else {
227                 int i, num_interfaces = iface_count();
228                 for (i=0;i<num_interfaces;i++) {
229                         const char *bcast = iface_n_bcast(i);
230                         status = do_node_query(nbtsock, bcast, node_name, node_type, True);
231                         if (NT_STATUS_IS_OK(status)) break;
232                 }
233         }
234
235         if (!NT_STATUS_IS_OK(status)) {
236                 printf("Lookup failed - %s\n", nt_errstr(status));
237                 ret = False;
238         }
239
240         talloc_free(tmp_ctx);
241         return ret;
242 }
243
244 /*
245   main program
246 */
247 int main(int argc,char *argv[])
248 {
249         BOOL ret = True;
250         poptContext pc;
251         struct poptOption long_options[] = {
252                 POPT_AUTOHELP
253                 { "broadcast", 'B', POPT_ARG_STRING, &options.broadcast_address, 
254                   'B', "Specify address to use for broadcasts", "BROADCAST-ADDRESS" },
255
256                 { "unicast", 'U', POPT_ARG_STRING, &options.unicast_address, 
257                   'U', "Specify address to use for unicast" },
258
259                 { "master-browser", 'M', POPT_ARG_VAL, &options.find_master, 
260                   True, "Search for a master browser" },
261
262                 { "wins", 'W', POPT_ARG_VAL, &options.wins_lookup, True, "Do a WINS lookup" },
263
264                 { "status", 'S', POPT_ARG_VAL, &options.node_status, 
265                   True, "Lookup node status as well" },
266
267                 { "root-port", 'r', POPT_ARG_VAL, &options.root_port, 
268                   True, "Use root port 137 (Win95 only replies to this)" },
269
270                 { "lookup-by-ip", 'A', POPT_ARG_VAL, &options.lookup_by_ip, 
271                   True, "Do a node status on <name> as an IP Address" },
272
273                 { "case-sensitive", 0, POPT_ARG_VAL, &options.case_sensitive, 
274                   True, "Don't uppercase the name before sending" },
275
276                 POPT_COMMON_SAMBA
277                 { 0, 0, 0, 0 }
278         };
279         
280         pc = poptGetContext("nmblookup", argc, (const char **)argv, long_options, 
281                             POPT_CONTEXT_KEEP_FIRST);
282         
283         poptSetOtherOptionHelp(pc, "<NODE> ...");
284
285         while ((poptGetNextOpt(pc) != -1)) /* noop */ ;
286
287         /* swallow argv[0] */
288         poptGetArg(pc);
289
290         if(!poptPeekArg(pc)) { 
291                 poptPrintUsage(pc, stderr, 0);
292                 exit(1);
293         }
294         
295         while (poptPeekArg(pc)) {
296                 const char *name = poptGetArg(pc);
297
298                 ret &= process_one(name);
299         }
300
301         poptFreeContext(pc);
302
303         if (!ret) {
304                 return 1;
305         }
306
307         return 0;
308 }