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