1 /* $OpenBSD: rip6query.c,v 1.12 2004/07/09 16:22:04 deraadt Exp $ */
2 /* $KAME: rip6query.c,v 1.17 2002/09/08 01:35:17 itojun Exp $ */
3
4 /*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * 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.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33 #include <stdio.h>
34
35 #include <unistd.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <ctype.h>
39 #include <signal.h>
40 #include <errno.h>
41 #include <err.h>
42
43 #include <sys/types.h>
44 #include <sys/socket.h>
45 #include <sys/queue.h>
46
47 #include <net/if.h>
48 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
49 #include <net/if_var.h>
50 #endif /* __FreeBSD__ >= 3 */
51 #include <netinet/in.h>
52 #include <netinet/in_var.h>
53 #include <arpa/inet.h>
54 #include <netdb.h>
55
56 #include "route6d.h"
57
58 #define DEFAULT_WAIT 5
59
60 int s;
61 int query_wait = DEFAULT_WAIT;
62 struct sockaddr_in6 sin6;
63 struct rip6 *ripbuf;
64
65 #define RIPSIZE(n) (sizeof(struct rip6) + (n-1) * sizeof(struct netinfo6))
66
67 static void usage(void);
68 static void sigalrm_handler(int);
69 static const char *sa_n2a(struct sockaddr *);
70 static const char *inet6_n2a(struct in6_addr *);
71
72 int
main(int argc,char * argv[])73 main(int argc, char *argv[])
74 {
75 struct netinfo6 *np;
76 struct sockaddr_in6 fsock;
77 int i, n, len;
78 socklen_t flen;
79 int c;
80 int ifidx = -1;
81 int error;
82 char pbuf[NI_MAXSERV];
83 struct addrinfo hints, *res;
84
85 while ((c = getopt(argc, argv, "I:w:")) != -1) {
86 switch (c) {
87 case 'I':
88 ifidx = if_nametoindex(optarg);
89 if (ifidx == 0) {
90 errx(1, "invalid interface %s", optarg);
91 /*NOTREACHED*/
92 }
93 break;
94 case 'w':
95 query_wait = atoi(optarg);
96 break;
97 default:
98 usage();
99 exit(1);
100 /*NOTREACHED*/
101 }
102 }
103 argv += optind;
104 argc -= optind;
105
106 if (argc != 1) {
107 usage();
108 exit(1);
109 }
110
111 if ((s = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
112 err(1, "socket");
113 /*NOTREACHED*/
114 }
115
116 /* getaddrinfo is preferred for addr%scope syntax */
117 snprintf(pbuf, sizeof(pbuf), "%d", RIP6_PORT);
118 memset(&hints, 0, sizeof(hints));
119 hints.ai_family = AF_INET6;
120 hints.ai_socktype = SOCK_DGRAM;
121 error = getaddrinfo(argv[0], pbuf, &hints, &res);
122 if (error) {
123 errx(1, "%s: %s", argv[0], gai_strerror(error));
124 /*NOTREACHED*/
125 }
126 if (res->ai_next) {
127 errx(1, "%s: %s", argv[0], "resolved to multiple addrs");
128 /*NOTREACHED*/
129 }
130 if (sizeof(sin6) != res->ai_addrlen) {
131 errx(1, "%s: %s", argv[0], "invalid addrlen");
132 /*NOTREACHED*/
133 }
134 memcpy(&sin6, res->ai_addr, res->ai_addrlen);
135 if (ifidx >= 0)
136 sin6.sin6_scope_id = ifidx;
137
138 if ((ripbuf = (struct rip6 *)malloc(BUFSIZ)) == NULL) {
139 err(1, "malloc");
140 /*NOTREACHED*/
141 }
142 ripbuf->rip6_cmd = RIP6_REQUEST;
143 ripbuf->rip6_vers = RIP6_VERSION;
144 ripbuf->rip6_res1[0] = 0;
145 ripbuf->rip6_res1[1] = 0;
146 np = ripbuf->rip6_nets;
147 bzero(&np->rip6_dest, sizeof(struct in6_addr));
148 np->rip6_tag = 0;
149 np->rip6_plen = 0;
150 np->rip6_metric = HOPCNT_INFINITY6;
151 if (sendto(s, ripbuf, RIPSIZE(1), 0, (struct sockaddr *)&sin6,
152 sizeof(struct sockaddr_in6)) < 0) {
153 err(1, "send");
154 /*NOTREACHED*/
155 }
156 signal(SIGALRM, sigalrm_handler);
157 for (;;) {
158 flen = sizeof(fsock);
159 alarm(query_wait);
160 if ((len = recvfrom(s, ripbuf, BUFSIZ, 0,
161 (struct sockaddr *)&fsock, &flen)) < 0) {
162 err(1, "recvfrom");
163 /*NOTREACHED*/
164 }
165 alarm(0);
166 printf("Response from %s len %d\n",
167 sa_n2a((struct sockaddr *)&fsock), len);
168 n = (len - sizeof(struct rip6) + sizeof(struct netinfo6)) /
169 sizeof(struct netinfo6);
170 np = ripbuf->rip6_nets;
171 for (i = 0; i < n; i++, np++) {
172 printf("\t%s/%d [%d]", inet6_n2a(&np->rip6_dest),
173 np->rip6_plen, np->rip6_metric);
174 if (np->rip6_tag)
175 printf(" tag=0x%x", ntohs(np->rip6_tag));
176 printf("\n");
177 }
178 }
179
180 exit(0);
181 }
182
183 static void
usage(void)184 usage(void)
185 {
186 fprintf(stderr, "Usage: rip6query [-I iface] [-w wait] address\n");
187 }
188
189 /* getnameinfo() is preferred as we may be able to show ifindex as ifname */
190 static const char *
sa_n2a(struct sockaddr * sa)191 sa_n2a(struct sockaddr *sa)
192 {
193 static char buf[NI_MAXHOST];
194
195 if (getnameinfo(sa, sa->sa_len, buf, sizeof(buf),
196 NULL, 0, NI_NUMERICHOST) != 0) {
197 snprintf(buf, sizeof(buf), "%s", "(invalid)");
198 }
199 return buf;
200 }
201
202 static const char *
inet6_n2a(struct in6_addr * addr)203 inet6_n2a(struct in6_addr *addr)
204 {
205 static char buf[NI_MAXHOST];
206
207 return inet_ntop(AF_INET6, addr, buf, sizeof(buf));
208 }
209
210 static void
sigalrm_handler(int sig)211 sigalrm_handler(int sig)
212 {
213
214 _exit(0);
215 }
216