4 This file is part of avahi.
6 avahi is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 avahi is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with avahi; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
31 #include <sys/types.h>
32 #include <sys/socket.h>
36 #include <avahi-common/simple-watch.h>
37 #include <avahi-common/error.h>
38 #include <avahi-common/malloc.h>
39 #include <avahi-common/domain.h>
40 #include <avahi-common/llist.h>
41 #include <avahi-client/client.h>
42 #include <avahi-client/lookup.h>
54 COMMAND_RESOLVE_HOST_NAME,
55 COMMAND_RESOLVE_ADDRESS
58 typedef struct Config {
64 static AvahiSimplePoll *simple_poll = NULL;
65 static AvahiClient *client = NULL;
67 static int n_resolving = 0;
69 static void host_name_resolver_callback(
70 AvahiHostNameResolver *r,
71 AVAHI_GCC_UNUSED AvahiIfIndex interface,
72 AVAHI_GCC_UNUSED AvahiProtocol protocol,
73 AvahiResolverEvent event,
75 const AvahiAddress *a,
76 AVAHI_GCC_UNUSED AvahiLookupResultFlags flags,
77 AVAHI_GCC_UNUSED void *userdata) {
82 case AVAHI_RESOLVER_FOUND: {
83 char address[AVAHI_ADDRESS_STR_MAX];
85 avahi_address_snprint(address, sizeof(address), a);
87 printf("%s\t%s\n", name, address);
92 case AVAHI_RESOLVER_FAILURE:
94 fprintf(stderr, "Failed to resolve host name '%s': %s\n", name, avahi_strerror(avahi_client_errno(client)));
99 avahi_host_name_resolver_free(r);
101 assert(n_resolving > 0);
104 if (n_resolving <= 0)
105 avahi_simple_poll_quit(simple_poll);
108 static void address_resolver_callback(
109 AvahiAddressResolver *r,
110 AVAHI_GCC_UNUSED AvahiIfIndex interface,
111 AVAHI_GCC_UNUSED AvahiProtocol protocol,
112 AvahiResolverEvent event,
113 const AvahiAddress *a,
115 AVAHI_GCC_UNUSED AvahiLookupResultFlags flags,
116 AVAHI_GCC_UNUSED void *userdata) {
118 char address[AVAHI_ADDRESS_STR_MAX];
121 avahi_address_snprint(address, sizeof(address), a);
124 case AVAHI_RESOLVER_FOUND:
126 printf("%s\t%s\n", address, name);
129 case AVAHI_RESOLVER_FAILURE:
131 fprintf(stderr, "Failed to resolve address '%s': %s\n", address, avahi_strerror(avahi_client_errno(client)));
136 avahi_address_resolver_free(r);
138 assert(n_resolving > 0);
141 if (n_resolving <= 0)
142 avahi_simple_poll_quit(simple_poll);
145 static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void * userdata) {
147 case AVAHI_CLIENT_FAILURE:
148 fprintf(stderr, "Client failure, exiting: %s\n", avahi_strerror(avahi_client_errno(c)));
149 avahi_simple_poll_quit(simple_poll);
152 case AVAHI_CLIENT_S_REGISTERING:
153 case AVAHI_CLIENT_S_RUNNING:
154 case AVAHI_CLIENT_S_COLLISION:
155 case AVAHI_CLIENT_CONNECTING:
160 static void help(FILE *f, const char *argv0) {
162 "%s [options] %s <host name ...>\n"
163 "%s [options] %s <address ... >\n\n"
164 " -h --help Show this help\n"
165 " -V --version Show version\n"
166 " -n --name Resolve host name\n"
167 " -a --address Resolve address\n"
168 " -v --verbose Enable verbose mode\n"
169 " -6 Lookup IPv6 address\n"
170 " -4 Lookup IPv4 address\n"
172 argv0, strstr(argv0, "address") ? "[-a]" : "-a",
173 argv0, strstr(argv0, "host-name") ? "[-n]" : "-n");
176 static int parse_command_line(Config *c, const char *argv0, int argc, char *argv[]) {
179 static const struct option long_options[] = {
180 { "help", no_argument, NULL, 'h' },
181 { "version", no_argument, NULL, 'V' },
182 { "name", no_argument, NULL, 'n' },
183 { "address", no_argument, NULL, 'a' },
184 { "verbose", no_argument, NULL, 'v' },
190 c->command = strstr(argv0, "address") ? COMMAND_RESOLVE_ADDRESS : (strstr(argv0, "host-name") ? COMMAND_RESOLVE_HOST_NAME : COMMAND_UNSPEC);
191 c->proto = AVAHI_PROTO_UNSPEC;
195 while ((o = getopt_long(argc, argv, "hVnav46", long_options, NULL)) >= 0) {
199 c->command = COMMAND_HELP;
202 c->command = COMMAND_VERSION;
205 c->command = COMMAND_RESOLVE_HOST_NAME;
208 c->command = COMMAND_RESOLVE_ADDRESS;
214 c->proto = AVAHI_PROTO_INET;
217 c->proto = AVAHI_PROTO_INET6;
220 fprintf(stderr, "Invalid command line argument: %c\n", o);
225 if (c->command == COMMAND_RESOLVE_ADDRESS || c->command == COMMAND_RESOLVE_HOST_NAME) {
226 if (optind >= argc) {
227 fprintf(stderr, "Too few arguments\n");
235 int main(int argc, char *argv[]) {
240 if ((argv0 = strrchr(argv[0], '/')))
245 if (parse_command_line(&config, argv0, argc, argv) < 0)
248 switch (config.command) {
251 fprintf(stderr, "No command specified.\n");
259 case COMMAND_VERSION:
260 printf("%s "PACKAGE_VERSION"\n", argv0);
264 case COMMAND_RESOLVE_HOST_NAME:
265 case COMMAND_RESOLVE_ADDRESS: {
268 if (!(simple_poll = avahi_simple_poll_new())) {
269 fprintf(stderr, "Failed to create simple poll object.\n");
273 if (sigint_install(simple_poll) < 0)
276 if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), 0, client_callback, NULL, &error))) {
277 fprintf(stderr, "Failed to create client object: %s\n", avahi_strerror(error));
281 if (config.verbose) {
282 const char *version, *hn;
284 if (!(version = avahi_client_get_version_string(client))) {
285 fprintf(stderr, "Failed to query version string: %s\n", avahi_strerror(avahi_client_errno(client)));
289 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
290 fprintf(stderr, "Failed to query host name: %s\n", avahi_strerror(avahi_client_errno(client)));
294 fprintf(stderr, "Server version: %s; Host name: %s\n", version, hn);
299 for (i = optind; i < argc; i++) {
301 if (config.command == COMMAND_RESOLVE_HOST_NAME) {
303 if (!(avahi_host_name_resolver_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, argv[i], config.proto, 0, host_name_resolver_callback, NULL))) {
304 fprintf(stderr, "Failed to create host name resolver: %s\n", avahi_strerror(avahi_client_errno(client)));
311 assert(config.command == COMMAND_RESOLVE_ADDRESS);
313 if (!avahi_address_parse(argv[i], AVAHI_PROTO_UNSPEC, &a)) {
314 fprintf(stderr, "Failed to parse address '%s'\n", argv[i]);
318 if (!(avahi_address_resolver_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, &a, 0, address_resolver_callback, NULL))) {
319 fprintf(stderr, "Failed to create address resolver: %s\n", avahi_strerror(avahi_client_errno(client)));
327 avahi_simple_poll_loop(simple_poll);
336 avahi_client_free(client);
341 avahi_simple_poll_free(simple_poll);