[d23d911] | 1 | /*
|
---|
[31e9fe0] | 2 | * Copyright (c) 2013 Jiri Svoboda
|
---|
[d23d911] | 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 |
|
---|
[adae30d] | 29 | /** @addtogroup dnsres
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
[31e9fe0] | 32 | /** @file DNS query utility.
|
---|
[adae30d] | 33 | */
|
---|
| 34 |
|
---|
[31e9fe0] | 35 | #include <errno.h>
|
---|
[a2e3ee6] | 36 | #include <inet/addr.h>
|
---|
[31e9fe0] | 37 | #include <inet/dnsr.h>
|
---|
[d23d911] | 38 | #include <stdio.h>
|
---|
[7262f89] | 39 | #include <stdlib.h>
|
---|
[1d6dd2a] | 40 | #include <str.h>
|
---|
[d23d911] | 41 |
|
---|
[cd18cd1] | 42 | #define NAME "dnsres"
|
---|
[d23d911] | 43 |
|
---|
[31e9fe0] | 44 | static void print_syntax(void)
|
---|
| 45 | {
|
---|
[cd18cd1] | 46 | printf("Syntax: %s [-4|-6] <host-name>\n", NAME);
|
---|
[31e9fe0] | 47 | }
|
---|
[d23d911] | 48 |
|
---|
| 49 | int main(int argc, char *argv[])
|
---|
| 50 | {
|
---|
[cd18cd1] | 51 | if ((argc < 2) || (argc > 3)) {
|
---|
[31e9fe0] | 52 | print_syntax();
|
---|
| 53 | return 1;
|
---|
[7262f89] | 54 | }
|
---|
[a35b458] | 55 |
|
---|
[e948fde] | 56 | uint16_t ver;
|
---|
[cd18cd1] | 57 | char *hname;
|
---|
[a35b458] | 58 |
|
---|
[cd18cd1] | 59 | if (str_cmp(argv[1], "-4") == 0) {
|
---|
| 60 | if (argc < 3) {
|
---|
| 61 | print_syntax();
|
---|
| 62 | return 1;
|
---|
| 63 | }
|
---|
[a35b458] | 64 |
|
---|
[e948fde] | 65 | ver = ip_v4;
|
---|
[cd18cd1] | 66 | hname = argv[2];
|
---|
| 67 | } else if (str_cmp(argv[1], "-6") == 0) {
|
---|
| 68 | if (argc < 3) {
|
---|
| 69 | print_syntax();
|
---|
| 70 | return 1;
|
---|
| 71 | }
|
---|
[a35b458] | 72 |
|
---|
[e948fde] | 73 | ver = ip_v6;
|
---|
[cd18cd1] | 74 | hname = argv[2];
|
---|
| 75 | } else {
|
---|
[e948fde] | 76 | ver = ip_any;
|
---|
[cd18cd1] | 77 | hname = argv[1];
|
---|
| 78 | }
|
---|
[a35b458] | 79 |
|
---|
[cd18cd1] | 80 | dnsr_hostinfo_t *hinfo;
|
---|
[b7fd2a0] | 81 | errno_t rc = dnsr_name2host(hname, &hinfo, ver);
|
---|
[31e9fe0] | 82 | if (rc != EOK) {
|
---|
[cd18cd1] | 83 | printf("%s: Error resolving '%s'.\n", NAME, hname);
|
---|
| 84 | return rc;
|
---|
[31e9fe0] | 85 | }
|
---|
[a35b458] | 86 |
|
---|
[cd18cd1] | 87 | char *saddr;
|
---|
[a2e3ee6] | 88 | rc = inet_addr_format(&hinfo->addr, &saddr);
|
---|
[31e9fe0] | 89 | if (rc != EOK) {
|
---|
| 90 | dnsr_hostinfo_destroy(hinfo);
|
---|
[cd18cd1] | 91 | printf("%s: Error formatting address.\n", NAME);
|
---|
| 92 | return rc;
|
---|
[31e9fe0] | 93 | }
|
---|
[a35b458] | 94 |
|
---|
[959d2ec] | 95 | printf("Host name: %s\n", hname);
|
---|
[a35b458] | 96 |
|
---|
[959d2ec] | 97 | if (str_cmp(hname, hinfo->cname) != 0)
|
---|
| 98 | printf("Canonical name: %s\n", hinfo->cname);
|
---|
[a35b458] | 99 |
|
---|
[959d2ec] | 100 | printf("Address: %s\n", saddr);
|
---|
[a35b458] | 101 |
|
---|
[31e9fe0] | 102 | dnsr_hostinfo_destroy(hinfo);
|
---|
| 103 | free(saddr);
|
---|
[a35b458] | 104 |
|
---|
[d23d911] | 105 | return 0;
|
---|
| 106 | }
|
---|
[adae30d] | 107 |
|
---|
| 108 | /** @}
|
---|
| 109 | */
|
---|