]> git.meshlink.io Git - catta/blob - avahi-utils/avahi-resolve-host-name.c
* Rename AVAHI_ERR_NOT_CONNECTED to AVAHI_ERR_DISCONNECTED
[catta] / avahi-utils / avahi-resolve-host-name.c
1 /* $Id$ */
2
3 /***
4   This file is part of avahi.
5  
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.
10  
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.
15  
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
19   USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <getopt.h>
29 #include <assert.h>
30 #include <string.h>
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <net/if.h>
34 #include <locale.h>
35
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>
43
44 #include "sigint.h"
45
46 #ifdef HAVE_GDBM
47 #include "stdb.h"
48 #endif
49
50 typedef enum {
51     COMMAND_HELP,
52     COMMAND_VERSION,
53     COMMAND_RESOLVE_HOST_NAME,
54     COMMAND_RESOLVE_ADDRESS
55 } Command;
56
57 typedef struct Config {
58     int verbose;
59     Command command;
60     AvahiProtocol proto;
61 } Config;
62
63 static AvahiSimplePoll *simple_poll = NULL;
64 static AvahiClient *client = NULL;
65
66 static int n_resolving = 0;
67
68 static void host_name_resolver_callback(
69     AvahiHostNameResolver *r,
70     AVAHI_GCC_UNUSED AvahiIfIndex interface,
71     AVAHI_GCC_UNUSED AvahiProtocol protocol,
72     AvahiResolverEvent event,
73     const char *name,
74     const AvahiAddress *a,
75     AVAHI_GCC_UNUSED AvahiLookupResultFlags flags,
76     AVAHI_GCC_UNUSED void *userdata) {
77     
78     assert(r);
79
80     switch (event) {
81         case AVAHI_RESOLVER_FOUND: {
82             char address[AVAHI_ADDRESS_STR_MAX];
83
84             avahi_address_snprint(address, sizeof(address), a);
85
86             printf("%s\t%s\n", name, address);
87             
88             break;
89         }
90
91         case AVAHI_RESOLVER_FAILURE:
92             
93             fprintf(stderr, "Failed to resolve host name '%s': %s\n", name, avahi_strerror(avahi_client_errno(client)));
94             break;
95     }
96
97     
98     avahi_host_name_resolver_free(r);
99
100     assert(n_resolving > 0);
101     n_resolving--;
102
103     if (n_resolving <= 0)
104         avahi_simple_poll_quit(simple_poll);
105 }
106
107 static void address_resolver_callback(
108     AvahiAddressResolver *r,
109     AVAHI_GCC_UNUSED AvahiIfIndex interface,
110     AVAHI_GCC_UNUSED AvahiProtocol protocol,
111     AvahiResolverEvent event,
112     const AvahiAddress *a,
113     const char *name,
114     AVAHI_GCC_UNUSED AvahiLookupResultFlags flags,
115     AVAHI_GCC_UNUSED void *userdata) {
116     
117     char address[AVAHI_ADDRESS_STR_MAX];
118     assert(r);
119
120     avahi_address_snprint(address, sizeof(address), a);
121
122     switch (event) {
123         case AVAHI_RESOLVER_FOUND:
124
125             printf("%s\t%s\n", address, name);
126             break;
127
128         case AVAHI_RESOLVER_FAILURE:
129             
130             fprintf(stderr, "Failed to resolve address '%s': %s\n", address, avahi_strerror(avahi_client_errno(client)));
131             break;
132     }
133
134     
135     avahi_address_resolver_free(r);
136
137     assert(n_resolving > 0);
138     n_resolving--;
139
140     if (n_resolving <= 0)
141         avahi_simple_poll_quit(simple_poll);
142 }
143
144 static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UNUSED void * userdata) {
145     switch (state) {
146         case AVAHI_CLIENT_FAILURE:
147             fprintf(stderr, "Client failure, exiting: %s\n", avahi_strerror(avahi_client_errno(c)));
148             avahi_simple_poll_quit(simple_poll);
149             break;
150             
151         case AVAHI_CLIENT_S_REGISTERING:
152         case AVAHI_CLIENT_S_RUNNING:
153         case AVAHI_CLIENT_S_COLLISION:
154             ;
155     }
156 }
157
158 static void help(FILE *f, const char *argv0) {
159     fprintf(f,
160             "%s [options] %s <name ...>\n"
161             "%s [options] %s <address ... >\n\n"
162             "    -h --help            Show this help\n"
163             "    -V --version         Show version\n"
164             "    -n --name            Resolve host name\n"
165             "    -a --address         Resolve address\n"
166             "    -v --verbose         Enable verbose mode\n"
167             "    -6                   Lookup IPv6 address\n"
168             "    -4                   Lookup IPv4 address\n"
169             ,
170             argv0, strstr(argv0, "address") ? "-n" : "[-n]",
171             argv0, strstr(argv0, "address") ? "[-a]" : "-a");
172 }
173
174 static int parse_command_line(Config *c, int argc, char *argv[]) {
175     int o;
176
177     static const struct option long_options[] = {
178         { "help",           no_argument,       NULL, 'h' },
179         { "version",        no_argument,       NULL, 'V' },
180         { "name",           no_argument,       NULL, 'n' },
181         { "address",        no_argument,       NULL, 'a' },
182         { "verbose",        no_argument,       NULL, 'v' },
183         { NULL, 0, NULL, 0 }
184     };
185
186     assert(c);
187
188     c->command = strstr(argv[0], "address") ? COMMAND_RESOLVE_ADDRESS : COMMAND_RESOLVE_HOST_NAME;
189     c->proto = AVAHI_PROTO_UNSPEC;
190     c->verbose = 0;
191
192     opterr = 0;
193     while ((o = getopt_long(argc, argv, "hVnav46", long_options, NULL)) >= 0) {
194
195         switch(o) {
196             case 'h':
197                 c->command = COMMAND_HELP;
198                 break;
199             case 'V':
200                 c->command = COMMAND_VERSION;
201                 break;
202             case 'n':
203                 c->command = COMMAND_RESOLVE_HOST_NAME;
204                 break;
205             case 'a':
206                 c->command = COMMAND_RESOLVE_ADDRESS;
207                 break;
208             case 'v':
209                 c->verbose = 1;
210                 break;
211             case '4':
212                 c->proto = AVAHI_PROTO_INET;
213                 break;
214             case '6':
215                 c->proto = AVAHI_PROTO_INET6;
216                 break;
217             default:
218                 fprintf(stderr, "Invalid command line argument: %c\n", o);
219                 return -1;
220         }
221     }
222
223     if (c->command == COMMAND_RESOLVE_ADDRESS || c->command == COMMAND_RESOLVE_HOST_NAME) {
224         if (optind >= argc) {
225             fprintf(stderr, "Too few arguments\n");
226             return -1;
227         }
228     }
229         
230     return 0;
231 }
232
233 int main(int argc, char *argv[]) {
234     int ret = 1, error;
235     Config config;
236     const char *argv0;
237
238     if ((argv0 = strrchr(argv[0], '/')))
239         argv0++;
240     else
241         argv0 = argv[0];
242
243     if (parse_command_line(&config, argc, argv) < 0)
244         goto fail;
245
246     switch (config.command) {
247         case COMMAND_HELP:
248             help(stdout, argv0);
249             ret = 0;
250             break;
251             
252         case COMMAND_VERSION:
253             printf("%s "PACKAGE_VERSION"\n", argv0);
254             ret = 0;
255             break;
256
257         case COMMAND_RESOLVE_HOST_NAME:
258         case COMMAND_RESOLVE_ADDRESS: {
259             int i;
260             
261             if (!(simple_poll = avahi_simple_poll_new())) {
262                 fprintf(stderr, "Failed to create simple poll object.\n");
263                 goto fail;
264             }
265             
266             if (sigint_install(simple_poll) < 0)
267                 goto fail;
268             
269             if (!(client = avahi_client_new(avahi_simple_poll_get(simple_poll), client_callback, NULL, &error))) {
270                 fprintf(stderr, "Failed to create client object: %s\n", avahi_strerror(error));
271                 goto fail;
272             }
273
274             if (config.verbose) {
275                 const char *version, *hn;
276
277                 if (!(version = avahi_client_get_version_string(client))) {
278                     fprintf(stderr, "Failed to query version string: %s\n", avahi_strerror(avahi_client_errno(client)));
279                     goto fail;
280                 }
281
282                 if (!(hn = avahi_client_get_host_name_fqdn(client))) {
283                     fprintf(stderr, "Failed to query host name: %s\n", avahi_strerror(avahi_client_errno(client)));
284                     goto fail;
285                 }
286                 
287                 fprintf(stderr, "Server version: %s; Host name: %s\n", version, hn);
288             }
289
290             n_resolving = 0;
291             
292             for (i = optind; i < argc; i++) {
293
294                 if (config.command == COMMAND_RESOLVE_HOST_NAME) {
295
296                     if (!(avahi_host_name_resolver_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, argv[i], config.proto, 0, host_name_resolver_callback, NULL))) {
297                         fprintf(stderr, "Failed to create host name resolver: %s\n", avahi_strerror(avahi_client_errno(client)));
298                         goto fail;
299                     }
300                         
301                 } else {
302                     AvahiAddress a;
303                     
304                     assert(config.command == COMMAND_RESOLVE_ADDRESS);
305
306                     if (!avahi_address_parse(argv[i], AVAHI_PROTO_UNSPEC, &a)) {
307                         fprintf(stderr, "Failed to parse address '%s'\n", argv[i]);
308                         goto fail;
309                     }
310
311                     if (!(avahi_address_resolver_new(client, AVAHI_IF_UNSPEC, AVAHI_PROTO_UNSPEC, &a, 0, address_resolver_callback, NULL))) {
312                         fprintf(stderr, "Failed to create address resolver: %s\n", avahi_strerror(avahi_client_errno(client)));
313                         goto fail;
314                     }
315                 }
316
317                 n_resolving++;
318             }
319             
320             avahi_simple_poll_loop(simple_poll);
321             ret = 0;
322             break;
323         }
324     }
325     
326     
327 fail:
328
329     if (client)
330         avahi_client_free(client);
331
332     sigint_uninstall();
333     
334     if (simple_poll)
335         avahi_simple_poll_free(simple_poll);
336
337     return ret;
338 }