[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>
|
---|
[d23d911] | 40 |
|
---|
[cd18cd1] | 41 | #define NAME "dnsres"
|
---|
[d23d911] | 42 |
|
---|
[31e9fe0] | 43 | static void print_syntax(void)
|
---|
| 44 | {
|
---|
[cd18cd1] | 45 | printf("Syntax: %s [-4|-6] <host-name>\n", NAME);
|
---|
[31e9fe0] | 46 | }
|
---|
[d23d911] | 47 |
|
---|
| 48 | int main(int argc, char *argv[])
|
---|
| 49 | {
|
---|
[cd18cd1] | 50 | if ((argc < 2) || (argc > 3)) {
|
---|
[31e9fe0] | 51 | print_syntax();
|
---|
| 52 | return 1;
|
---|
[7262f89] | 53 | }
|
---|
[cd18cd1] | 54 |
|
---|
[e948fde] | 55 | uint16_t ver;
|
---|
[cd18cd1] | 56 | char *hname;
|
---|
| 57 |
|
---|
| 58 | if (str_cmp(argv[1], "-4") == 0) {
|
---|
| 59 | if (argc < 3) {
|
---|
| 60 | print_syntax();
|
---|
| 61 | return 1;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
[e948fde] | 64 | ver = ip_v4;
|
---|
[cd18cd1] | 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 |
|
---|
[e948fde] | 72 | ver = ip_v6;
|
---|
[cd18cd1] | 73 | hname = argv[2];
|
---|
| 74 | } else {
|
---|
[e948fde] | 75 | ver = ip_any;
|
---|
[cd18cd1] | 76 | hname = argv[1];
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | dnsr_hostinfo_t *hinfo;
|
---|
[5a6cc679] | 80 | errno_t rc = dnsr_name2host(hname, &hinfo, ver);
|
---|
[31e9fe0] | 81 | if (rc != EOK) {
|
---|
[cd18cd1] | 82 | printf("%s: Error resolving '%s'.\n", NAME, hname);
|
---|
| 83 | return rc;
|
---|
[31e9fe0] | 84 | }
|
---|
[cd18cd1] | 85 |
|
---|
| 86 | char *saddr;
|
---|
[a2e3ee6] | 87 | rc = inet_addr_format(&hinfo->addr, &saddr);
|
---|
[31e9fe0] | 88 | if (rc != EOK) {
|
---|
| 89 | dnsr_hostinfo_destroy(hinfo);
|
---|
[cd18cd1] | 90 | printf("%s: Error formatting address.\n", NAME);
|
---|
| 91 | return rc;
|
---|
[31e9fe0] | 92 | }
|
---|
[cd18cd1] | 93 |
|
---|
[959d2ec] | 94 | printf("Host name: %s\n", hname);
|
---|
[cd18cd1] | 95 |
|
---|
[959d2ec] | 96 | if (str_cmp(hname, hinfo->cname) != 0)
|
---|
| 97 | printf("Canonical name: %s\n", hinfo->cname);
|
---|
[cd18cd1] | 98 |
|
---|
[959d2ec] | 99 | printf("Address: %s\n", saddr);
|
---|
[cd18cd1] | 100 |
|
---|
[31e9fe0] | 101 | dnsr_hostinfo_destroy(hinfo);
|
---|
| 102 | free(saddr);
|
---|
[cd18cd1] | 103 |
|
---|
[d23d911] | 104 | return 0;
|
---|
| 105 | }
|
---|
[adae30d] | 106 |
|
---|
| 107 | /** @}
|
---|
| 108 | */
|
---|