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