source: mainline/uspace/app/dnsres/dnsres.c@ 3b47db6

Last change on this file since 3b47db6 was 3b47db6, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

(optional) Remove EXIT_RC().

  • 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 <stdio.h>
39#include <stdlib.h>
40
41#define NAME "dnsres"
42
43static void print_syntax(void)
44{
45 printf("Syntax: %s [-4|-6] <host-name>\n", NAME);
46}
47
48int main(int argc, char *argv[])
49{
50 if ((argc < 2) || (argc > 3)) {
51 print_syntax();
52 return 1;
53 }
54
55 uint16_t ver;
56 char *hname;
57
58 if (str_cmp(argv[1], "-4") == 0) {
59 if (argc < 3) {
60 print_syntax();
61 return 1;
62 }
63
64 ver = ip_v4;
65 hname = argv[2];
66 } else if (str_cmp(argv[1], "-6") == 0) {
67 if (argc < 3) {
68 print_syntax();
69 return 1;
70 }
71
72 ver = ip_v6;
73 hname = argv[2];
74 } else {
75 ver = ip_any;
76 hname = argv[1];
77 }
78
79 dnsr_hostinfo_t *hinfo;
80 errno_t rc = dnsr_name2host(hname, &hinfo, ver);
81 if (rc != EOK) {
82 printf("%s: Error resolving '%s'.\n", NAME, hname);
83 return rc;
84 }
85
86 char *saddr;
87 rc = inet_addr_format(&hinfo->addr, &saddr);
88 if (rc != EOK) {
89 dnsr_hostinfo_destroy(hinfo);
90 printf("%s: Error formatting address.\n", NAME);
91 return rc;
92 }
93
94 printf("Host name: %s\n", hname);
95
96 if (str_cmp(hname, hinfo->cname) != 0)
97 printf("Canonical name: %s\n", hinfo->cname);
98
99 printf("Address: %s\n", saddr);
100
101 dnsr_hostinfo_destroy(hinfo);
102 free(saddr);
103
104 return 0;
105}
106
107/** @}
108 */
Note: See TracBrowser for help on using the repository browser.