r5114: the nbtd task can now act as a basic B-node server. It registers its
[bbaumbach/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 "dynconfig.h"
27 #include "libcli/nbt/libnbt.h"
28 #include "lib/cmdline/popt_common.h"
29 #include "system/iconv.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 } 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(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 void 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 = 0;
110         io.in.name.scope = NULL;
111         io.in.dest_addr = addr;
112         io.in.timeout = 3;
113
114         status = nbt_name_status(nbtsock, nbtsock, &io);
115         if (NT_STATUS_IS_OK(status)) {
116                 int i;
117                 printf("Node status reply from %s\n",
118                        io.out.reply_from);
119                 for (i=0;i<io.out.status.num_names;i++) {
120                         d_printf("\t%-16s <%02x>  %s\n", 
121                                  clean_name(nbtsock, io.out.status.names[i].name),
122                                  io.out.status.names[i].type,
123                                  node_status_flags(nbtsock, io.out.status.names[i].nb_flags));
124                 }
125                 printf("\n\tMAC Address = %02X-%02X-%02X-%02X-%02X-%02X\n",
126                        io.out.status.statistics.unit_id[0],
127                        io.out.status.statistics.unit_id[1],
128                        io.out.status.statistics.unit_id[2],
129                        io.out.status.statistics.unit_id[3],
130                        io.out.status.statistics.unit_id[4],
131                        io.out.status.statistics.unit_id[5]);
132         }
133 }
134
135 /* do a single node query */
136 static NTSTATUS do_node_query(struct nbt_name_socket *nbtsock,
137                               const char *addr, 
138                               const char *node_name, 
139                               enum nbt_name_type node_type,
140                               BOOL broadcast)
141 {
142         struct nbt_name_query io;
143         NTSTATUS status;
144         int i;
145
146         io.in.name.name = node_name;
147         io.in.name.type = node_type;
148         io.in.name.scope = NULL;
149         io.in.dest_addr = addr;
150         io.in.broadcast = broadcast;
151         io.in.wins_lookup = options.wins_lookup;
152         io.in.timeout = 3;
153
154         status = nbt_name_query(nbtsock, nbtsock, &io);
155         NT_STATUS_NOT_OK_RETURN(status);
156                 
157         for (i=0;i<io.out.num_addrs;i++) {
158                 printf("%s %s<%02x>\n",
159                        io.out.reply_addrs[i],
160                        io.out.name.name,
161                        io.out.name.type);
162         }
163         if (options.node_status && io.out.num_addrs > 0) {
164                 do_node_status(nbtsock, io.out.reply_addrs[0]);
165         }
166
167         return status;
168 }
169
170
171 static void process_one(const char *name)
172 {
173         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
174         enum nbt_name_type node_type = NBT_NAME_CLIENT;
175         char *node_name, *p;
176         struct nbt_name_socket *nbtsock;
177         
178         if (options.find_master) {
179                 node_type = NBT_NAME_MASTER;
180                 if (*name == '-') {
181                         name = "\01\02__MSBROWSE__\02";
182                         node_type = NBT_NAME_MS;
183                 }
184         }
185
186         p = strchr(name, '#');
187         if (p) {
188                 node_name = talloc_strndup(tmp_ctx, name, PTR_DIFF(p,name));
189                 node_type = (enum nbt_name_type)strtol(p+1, NULL, 16);
190         } else {
191                 node_name = talloc_strdup(tmp_ctx, name);
192         }
193
194         nbtsock = nbt_name_socket_init(tmp_ctx, NULL);
195
196         if (options.root_port) {
197                 NTSTATUS status;
198                 status = socket_listen(nbtsock->sock, "0.0.0.0", NBT_NAME_SERVICE_PORT, 0, 0);
199                 if (!NT_STATUS_IS_OK(status)) {
200                         printf("Failed to bind to local port 137 - %s\n", nt_errstr(status));
201                         return;
202                 }
203         }
204
205         if (options.lookup_by_ip) {
206                 do_node_status(nbtsock, name);
207                 talloc_free(tmp_ctx);
208                 return;
209         }
210
211         if (options.broadcast_address) {
212                 do_node_query(nbtsock, options.broadcast_address, node_name, node_type, True);
213         } else if (options.unicast_address) {
214                 do_node_query(nbtsock, options.unicast_address, node_name, node_type, False);
215         } else {
216                 int i, num_interfaces = iface_count();
217                 for (i=0;i<num_interfaces;i++) {
218                         const char *bcast = sys_inet_ntoa(*iface_n_bcast(i));
219                         NTSTATUS status = do_node_query(nbtsock, bcast, node_name, node_type, True);
220                         if (NT_STATUS_IS_OK(status)) break;
221                 }
222         }
223
224         talloc_free(tmp_ctx);
225  }
226
227 /*
228   main program
229 */
230 int main(int argc,char *argv[])
231 {
232         poptContext pc;
233         struct poptOption long_options[] = {
234                 POPT_AUTOHELP
235                 { "broadcast", 'B', POPT_ARG_STRING, &options.broadcast_address, 
236                   'B', "Specify address to use for broadcasts", "BROADCAST-ADDRESS" },
237
238                 { "unicast", 'U', POPT_ARG_STRING, &options.unicast_address, 
239                   'U', "Specify address to use for unicast" },
240
241                 { "master-browser", 'M', POPT_ARG_VAL, &options.find_master, 
242                   True, "Search for a master browser" },
243
244                 { "wins", 'W', POPT_ARG_VAL, &options.wins_lookup, True, "Do a WINS lookup" },
245
246                 { "status", 'S', POPT_ARG_VAL, &options.node_status, 
247                   True, "Lookup node status as well" },
248
249                 { "root-port", 'r', POPT_ARG_VAL, &options.root_port, 
250                   True, "Use root port 137 (Win95 only replies to this)" },
251
252                 { "lookup-by-ip", 'A', POPT_ARG_VAL, &options.lookup_by_ip, 
253                   True, "Do a node status on <name> as an IP Address" },
254
255                 POPT_COMMON_SAMBA
256                 { 0, 0, 0, 0 }
257         };
258         
259         setup_logging(argv[0], True);
260
261         pc = poptGetContext("nmblookup", argc, (const char **)argv, long_options, 
262                             POPT_CONTEXT_KEEP_FIRST);
263         
264         poptSetOtherOptionHelp(pc, "<NODE> ...");
265
266         while ((poptGetNextOpt(pc) != -1)) /* noop */ ;
267
268         /* swallow argv[0] */
269         poptGetArg(pc);
270
271         if(!poptPeekArg(pc)) { 
272                 poptPrintUsage(pc, stderr, 0);
273                 exit(1);
274         }
275         
276         lp_load(dyn_CONFIGFILE,True,False,False);
277         load_interfaces();
278         
279         while (poptPeekArg(pc)) {
280                 const char *name = poptGetArg(pc);
281
282                 process_one(name);
283         }
284
285         poptFreeContext(pc);
286
287         return 0;
288 }