2 Unix SMB/CIFS implementation.
4 NBT client - used to lookup netbios names
6 Copyright (C) Andrew Tridgell 1994-2005
7 Copyright (C) Jelmer Vernooij 2003 (Conversion to popt)
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.
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.
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.
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"
32 /* command line options */
34 const char *broadcast_address;
35 const char *unicast_address;
45 clean any binary from a node name
47 static const char *clean_name(TALLOC_CTX *mem_ctx, const char *name)
49 char *ret = talloc_strdup(mem_ctx, name);
51 for (i=0;ret[i];i++) {
52 if (!isprint(ret[i])) ret[i] = '.';
58 turn a node status flags field into a string
60 static char *node_status_flags(TALLOC_CTX *mem_ctx, uint16_t flags)
63 const char *group = " ";
64 const char *type = "B";
66 if (flags & NBT_NM_GROUP) {
70 switch (flags & NBT_NM_OWNER_TYPE) {
85 ret = talloc_asprintf(mem_ctx, "%s %s", group, type);
87 if (flags & NBT_NM_DEREGISTER) {
88 ret = talloc_asprintf_append(ret, " <DEREGISTERING>");
90 if (flags & NBT_NM_CONFLICT) {
91 ret = talloc_asprintf_append(ret, " <CONFLICT>");
93 if (flags & NBT_NM_ACTIVE) {
94 ret = talloc_asprintf_append(ret, " <ACTIVE>");
96 if (flags & NBT_NM_PERMANENT) {
97 ret = talloc_asprintf_append(ret, " <PERMANENT>");
103 /* do a single node status */
104 static void do_node_status(struct nbt_name_socket *nbtsock,
107 struct nbt_name_status io;
110 io.in.name.name = "*";
112 io.in.name.scope = NULL;
113 io.in.dest_addr = addr;
117 status = nbt_name_status(nbtsock, nbtsock, &io);
118 if (NT_STATUS_IS_OK(status)) {
120 printf("Node status reply from %s\n",
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));
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]);
138 /* do a single node query */
139 static NTSTATUS do_node_query(struct nbt_name_socket *nbtsock,
141 const char *node_name,
142 enum nbt_name_type node_type,
145 struct nbt_name_query io;
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;
158 status = nbt_name_query(nbtsock, nbtsock, &io);
159 NT_STATUS_NOT_OK_RETURN(status);
161 for (i=0;i<io.out.num_addrs;i++) {
162 printf("%s %s<%02x>\n",
163 io.out.reply_addrs[i],
167 if (options.node_status && io.out.num_addrs > 0) {
168 do_node_status(nbtsock, io.out.reply_addrs[0]);
175 static void process_one(const char *name)
177 TALLOC_CTX *tmp_ctx = talloc_new(NULL);
178 enum nbt_name_type node_type = NBT_NAME_CLIENT;
180 struct nbt_name_socket *nbtsock;
183 if (!options.case_sensitive) {
184 name = strupper_talloc(tmp_ctx, name);
187 if (options.find_master) {
188 node_type = NBT_NAME_MASTER;
190 name = "\01\02__MSBROWSE__\02";
191 node_type = NBT_NAME_MS;
195 p = strchr(name, '#');
197 node_name = talloc_strndup(tmp_ctx, name, PTR_DIFF(p,name));
198 node_type = (enum nbt_name_type)strtol(p+1, NULL, 16);
200 node_name = talloc_strdup(tmp_ctx, name);
203 nbtsock = nbt_name_socket_init(tmp_ctx, NULL);
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));
213 if (options.lookup_by_ip) {
214 do_node_status(nbtsock, name);
215 talloc_free(tmp_ctx);
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);
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;
232 if (!NT_STATUS_IS_OK(status)) {
233 printf("Lookup failed - %s\n", nt_errstr(status));
236 talloc_free(tmp_ctx);
242 int main(int argc,char *argv[])
245 struct poptOption long_options[] = {
247 { "broadcast", 'B', POPT_ARG_STRING, &options.broadcast_address,
248 'B', "Specify address to use for broadcasts", "BROADCAST-ADDRESS" },
250 { "unicast", 'U', POPT_ARG_STRING, &options.unicast_address,
251 'U', "Specify address to use for unicast" },
253 { "master-browser", 'M', POPT_ARG_VAL, &options.find_master,
254 True, "Search for a master browser" },
256 { "wins", 'W', POPT_ARG_VAL, &options.wins_lookup, True, "Do a WINS lookup" },
258 { "status", 'S', POPT_ARG_VAL, &options.node_status,
259 True, "Lookup node status as well" },
261 { "root-port", 'r', POPT_ARG_VAL, &options.root_port,
262 True, "Use root port 137 (Win95 only replies to this)" },
264 { "lookup-by-ip", 'A', POPT_ARG_VAL, &options.lookup_by_ip,
265 True, "Do a node status on <name> as an IP Address" },
267 { "case-sensitive", 0, POPT_ARG_VAL, &options.case_sensitive,
268 True, "Don't uppercase the name before sending" },
274 setup_logging(argv[0], True);
276 pc = poptGetContext("nmblookup", argc, (const char **)argv, long_options,
277 POPT_CONTEXT_KEEP_FIRST);
279 poptSetOtherOptionHelp(pc, "<NODE> ...");
281 while ((poptGetNextOpt(pc) != -1)) /* noop */ ;
283 /* swallow argv[0] */
286 if(!poptPeekArg(pc)) {
287 poptPrintUsage(pc, stderr, 0);
291 lp_load(dyn_CONFIGFILE,True,False,False);
294 while (poptPeekArg(pc)) {
295 const char *name = poptGetArg(pc);