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