source: mainline/uspace/app/dnsres/dnsres.c@ ff03f79

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ff03f79 was cd18cd1, checked in by Martin Decky <martin@…>, 12 years ago

add switches for IPv6-only and IPv4-only lookups

  • Property mode set to 100644
File size: 2.7 KB
Line 
1/*
2 * Copyright (c) 2013 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup dnsres
30 * @{
31 */
32/** @file DNS query utility.
33 */
34
35#include <errno.h>
36#include <inet/addr.h>
37#include <inet/dnsr.h>
38#include <net/socket_codes.h>
39#include <stdio.h>
40#include <stdlib.h>
41
42#define NAME "dnsres"
43
44static void print_syntax(void)
45{
46 printf("Syntax: %s [-4|-6] <host-name>\n", NAME);
47}
48
49int main(int argc, char *argv[])
50{
51 if ((argc < 2) || (argc > 3)) {
52 print_syntax();
53 return 1;
54 }
55
56 uint16_t af;
57 char *hname;
58
59 if (str_cmp(argv[1], "-4") == 0) {
60 if (argc < 3) {
61 print_syntax();
62 return 1;
63 }
64
65 af = AF_INET;
66 hname = argv[2];
67 } else if (str_cmp(argv[1], "-6") == 0) {
68 if (argc < 3) {
69 print_syntax();
70 return 1;
71 }
72
73 af = AF_INET6;
74 hname = argv[2];
75 } else {
76 af = 0;
77 hname = argv[1];
78 }
79
80 dnsr_hostinfo_t *hinfo;
81 int rc = dnsr_name2host(hname, &hinfo, af);
82 if (rc != EOK) {
83 printf("%s: Error resolving '%s'.\n", NAME, hname);
84 return rc;
85 }
86
87 char *saddr;
88 rc = inet_addr_format(&hinfo->addr, &saddr);
89 if (rc != EOK) {
90 dnsr_hostinfo_destroy(hinfo);
91 printf("%s: Error formatting address.\n", NAME);
92 return rc;
93 }
94
95 printf("Host name: %s\n", hname);
96
97 if (str_cmp(hname, hinfo->cname) != 0)
98 printf("Canonical name: %s\n", hinfo->cname);
99
100 printf("Address: %s\n", saddr);
101
102 dnsr_hostinfo_destroy(hinfo);
103 free(saddr);
104
105 return 0;
106}
107
108/** @}
109 */
Note: See TracBrowser for help on using the repository browser.