2 * Copyright (c) 1995 - 2004 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #ifdef HAVE_ARPA_NAMESER_H
40 #include <arpa/nameser.h>
49 static int version_flag
= 0;
50 static int help_flag
= 0;
52 static struct getargs args
[] = {
53 {"version", 0, arg_flag
, &version_flag
,
54 "print version", NULL
},
55 {"help", 0, arg_flag
, &help_flag
,
63 sizeof(args
)/sizeof(*args
),
65 "dns-record resource-record-type");
70 main(int argc
, char **argv
)
72 struct rk_dns_reply
*r
;
73 struct rk_resource_record
*rr
;
76 setprogname (argv
[0]);
78 if(getarg(args
, sizeof(args
) / sizeof(args
[0]), argc
, argv
, &optidx
))
85 printf("some version\n");
95 r
= rk_dns_lookup(argv
[0], argv
[1]);
97 printf("No reply.\n");
100 if(r
->q
.type
== rk_ns_t_srv
)
103 for(rr
= r
->head
; rr
;rr
=rr
->next
){
104 printf("%-30s %-5s %-6d ", rr
->domain
, rk_dns_type_to_string(rr
->type
), rr
->ttl
);
109 printf("%s\n", (char*)rr
->u
.data
);
112 printf("%s\n", inet_ntoa(*rr
->u
.a
));
116 printf("%d %s\n", rr
->u
.mx
->preference
, rr
->u
.mx
->domain
);
120 struct rk_srv_record
*srv
= rr
->u
.srv
;
121 printf("%d %d %d %s\n", srv
->priority
, srv
->weight
,
122 srv
->port
, srv
->target
);
126 printf("%s\n", rr
->u
.txt
);
130 struct rk_sig_record
*sig
= rr
->u
.sig
;
131 const char *type_string
= rk_dns_type_to_string (sig
->type
);
133 printf ("type %u (%s), algorithm %u, labels %u, orig_ttl %u, sig_expiration %u, sig_inception %u, key_tag %u, signer %s\n",
134 sig
->type
, type_string
? type_string
: "",
135 sig
->algorithm
, sig
->labels
, sig
->orig_ttl
,
136 sig
->sig_expiration
, sig
->sig_inception
, sig
->key_tag
,
141 struct rk_key_record
*key
= rr
->u
.key
;
143 printf ("flags %u, protocol %u, algorithm %u\n",
144 key
->flags
, key
->protocol
, key
->algorithm
);
147 case rk_ns_t_sshfp
: {
148 struct rk_sshfp_record
*sshfp
= rr
->u
.sshfp
;
151 printf ("alg %u type %u length %lu data ", sshfp
->algorithm
,
152 sshfp
->type
, (unsigned long)sshfp
->sshfp_len
);
153 for (i
= 0; i
< sshfp
->sshfp_len
; i
++)
154 printf("%02X", sshfp
->sshfp_data
[i
]);
160 struct rk_ds_record
*ds
= rr
->u
.ds
;
163 printf ("key tag %u alg %u type %u length %u data ",
164 ds
->key_tag
, ds
->algorithm
, ds
->digest_type
,
166 for (i
= 0; i
< ds
->digest_len
; i
++)
167 printf("%02X", ds
->digest_data
[i
]);