dump.c revision 1.6 1 1.6 itojun /* $NetBSD: dump.c,v 1.6 2002/07/10 21:11:43 itojun Exp $ */
2 1.5 itojun /* $KAME: dump.c,v 1.28 2002/05/29 14:25:01 itojun Exp $ */
3 1.1 itojun
4 1.1 itojun /*
5 1.1 itojun * Copyright (C) 2000 WIDE Project.
6 1.1 itojun * All rights reserved.
7 1.1 itojun *
8 1.1 itojun * Redistribution and use in source and binary forms, with or without
9 1.1 itojun * modification, are permitted provided that the following conditions
10 1.1 itojun * are met:
11 1.1 itojun * 1. Redistributions of source code must retain the above copyright
12 1.1 itojun * notice, this list of conditions and the following disclaimer.
13 1.1 itojun * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 itojun * notice, this list of conditions and the following disclaimer in the
15 1.1 itojun * documentation and/or other materials provided with the distribution.
16 1.1 itojun * 3. Neither the name of the project nor the names of its contributors
17 1.1 itojun * may be used to endorse or promote products derived from this software
18 1.1 itojun * without specific prior written permission.
19 1.1 itojun *
20 1.1 itojun * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 1.1 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 1.1 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 1.1 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 1.1 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.1 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.1 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.1 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.1 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.1 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.1 itojun * SUCH DAMAGE.
31 1.1 itojun */
32 1.1 itojun #include <sys/types.h>
33 1.1 itojun #include <sys/socket.h>
34 1.3 itojun #include <sys/queue.h>
35 1.1 itojun
36 1.1 itojun #include <net/if.h>
37 1.1 itojun #include <net/if_dl.h>
38 1.1 itojun
39 1.1 itojun #include <netinet/in.h>
40 1.1 itojun
41 1.1 itojun /* XXX: the following two are non-standard include files */
42 1.1 itojun #include <netinet6/in6_var.h>
43 1.1 itojun #include <netinet6/nd6.h>
44 1.1 itojun
45 1.1 itojun #include <arpa/inet.h>
46 1.1 itojun
47 1.1 itojun #include <time.h>
48 1.1 itojun #include <stdio.h>
49 1.1 itojun #include <stdarg.h>
50 1.1 itojun #include <syslog.h>
51 1.1 itojun #include <string.h>
52 1.1 itojun #include <errno.h>
53 1.5 itojun #include <netdb.h>
54 1.1 itojun
55 1.1 itojun #include "rtadvd.h"
56 1.1 itojun #include "timer.h"
57 1.2 itojun #include "if.h"
58 1.1 itojun #include "dump.h"
59 1.1 itojun
60 1.1 itojun static FILE *fp;
61 1.1 itojun
62 1.1 itojun extern struct rainfo *ralist;
63 1.1 itojun
64 1.1 itojun static char *ether_str __P((struct sockaddr_dl *));
65 1.1 itojun static void if_dump __P((void));
66 1.1 itojun
67 1.5 itojun static char *rtpref_str[] = {
68 1.5 itojun "medium", /* 00 */
69 1.5 itojun "high", /* 01 */
70 1.5 itojun "rsv", /* 10 */
71 1.5 itojun "low" /* 11 */
72 1.5 itojun };
73 1.1 itojun
74 1.1 itojun static char *
75 1.1 itojun ether_str(sdl)
76 1.1 itojun struct sockaddr_dl *sdl;
77 1.1 itojun {
78 1.5 itojun static char hbuf[NI_MAXHOST];
79 1.1 itojun
80 1.5 itojun if (sdl->sdl_alen) {
81 1.5 itojun if (getnameinfo((struct sockaddr *)sdl, sdl->sdl_len,
82 1.5 itojun hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST) != 0)
83 1.5 itojun snprintf(hbuf, sizeof(hbuf), "<invalid>");
84 1.5 itojun } else
85 1.5 itojun snprintf(hbuf, sizeof(hbuf), "NONE");
86 1.1 itojun
87 1.5 itojun return(hbuf);
88 1.1 itojun }
89 1.1 itojun
90 1.1 itojun static void
91 1.1 itojun if_dump()
92 1.1 itojun {
93 1.1 itojun struct rainfo *rai;
94 1.1 itojun struct prefix *pfx;
95 1.1 itojun char prefixbuf[INET6_ADDRSTRLEN];
96 1.1 itojun int first;
97 1.3 itojun struct timeval now;
98 1.1 itojun
99 1.3 itojun gettimeofday(&now, NULL); /* XXX: unused in most cases */
100 1.1 itojun for (rai = ralist; rai; rai = rai->next) {
101 1.1 itojun fprintf(fp, "%s:\n", rai->ifname);
102 1.1 itojun
103 1.2 itojun fprintf(fp, " Status: %s\n",
104 1.2 itojun (iflist[rai->ifindex]->ifm_flags & IFF_UP) ? "UP" :
105 1.2 itojun "DOWN");
106 1.2 itojun
107 1.1 itojun /* control information */
108 1.1 itojun if (rai->lastsent.tv_sec) {
109 1.1 itojun /* note that ctime() appends CR by itself */
110 1.1 itojun fprintf(fp, " Last RA sent: %s",
111 1.1 itojun ctime((time_t *)&rai->lastsent.tv_sec));
112 1.1 itojun }
113 1.1 itojun if (rai->timer) {
114 1.1 itojun fprintf(fp, " Next RA will be sent: %s",
115 1.1 itojun ctime((time_t *)&rai->timer->tm.tv_sec));
116 1.1 itojun }
117 1.2 itojun else
118 1.2 itojun fprintf(fp, " RA timer is stopped");
119 1.1 itojun fprintf(fp, " waits: %d, initcount: %d\n",
120 1.1 itojun rai->waiting, rai->initcounter);
121 1.1 itojun
122 1.1 itojun /* statistics */
123 1.5 itojun fprintf(fp, " statistics: RA(out/in/inconsistent): "
124 1.5 itojun "%llu/%llu/%llu, ",
125 1.5 itojun (unsigned long long)rai->raoutput,
126 1.5 itojun (unsigned long long)rai->rainput,
127 1.5 itojun (unsigned long long)rai->rainconsistent);
128 1.5 itojun fprintf(fp, "RS(input): %llu\n",
129 1.5 itojun (unsigned long long)rai->rsinput);
130 1.1 itojun
131 1.1 itojun /* interface information */
132 1.1 itojun if (rai->advlinkopt)
133 1.1 itojun fprintf(fp, " Link-layer address: %s\n",
134 1.5 itojun ether_str(rai->sdl));
135 1.1 itojun fprintf(fp, " MTU: %d\n", rai->phymtu);
136 1.1 itojun
137 1.1 itojun /* Router configuration variables */
138 1.5 itojun fprintf(fp, " DefaultLifetime: %d, MaxAdvInterval: %d, "
139 1.5 itojun "MinAdvInterval: %d\n", rai->lifetime, rai->maxinterval,
140 1.5 itojun rai->mininterval);
141 1.5 itojun fprintf(fp, " Flags: %s%s%s, ",
142 1.5 itojun rai->managedflg ? "M" : "", rai->otherflg ? "O" : "",
143 1.5 itojun "");
144 1.5 itojun fprintf(fp, "Preference: %s, ",
145 1.5 itojun rtpref_str[(rai->rtpref >> 3) & 0xff]);
146 1.5 itojun fprintf(fp, "MTU: %d\n", rai->linkmtu);
147 1.1 itojun fprintf(fp, " ReachableTime: %d, RetransTimer: %d, "
148 1.1 itojun "CurHopLimit: %d\n", rai->reachabletime,
149 1.1 itojun rai->retranstimer, rai->hoplimit);
150 1.3 itojun if (rai->clockskew)
151 1.3 itojun fprintf(fp, " Clock skew: %ldsec\n",
152 1.5 itojun rai->clockskew);
153 1.1 itojun for (first = 1, pfx = rai->prefix.next; pfx != &rai->prefix;
154 1.1 itojun pfx = pfx->next) {
155 1.1 itojun if (first) {
156 1.1 itojun fprintf(fp, " Prefixes:\n");
157 1.1 itojun first = 0;
158 1.1 itojun }
159 1.1 itojun fprintf(fp, " %s/%d(",
160 1.5 itojun inet_ntop(AF_INET6, &pfx->prefix, prefixbuf,
161 1.5 itojun sizeof(prefixbuf)), pfx->prefixlen);
162 1.4 itojun switch (pfx->origin) {
163 1.1 itojun case PREFIX_FROM_KERNEL:
164 1.1 itojun fprintf(fp, "KERNEL, ");
165 1.1 itojun break;
166 1.1 itojun case PREFIX_FROM_CONFIG:
167 1.1 itojun fprintf(fp, "CONFIG, ");
168 1.1 itojun break;
169 1.1 itojun case PREFIX_FROM_DYNAMIC:
170 1.1 itojun fprintf(fp, "DYNAMIC, ");
171 1.1 itojun break;
172 1.1 itojun }
173 1.1 itojun if (pfx->validlifetime == ND6_INFINITE_LIFETIME)
174 1.3 itojun fprintf(fp, "vltime: infinity");
175 1.1 itojun else
176 1.3 itojun fprintf(fp, "vltime: %ld",
177 1.1 itojun (long)pfx->validlifetime);
178 1.3 itojun if (pfx->vltimeexpire != 0)
179 1.3 itojun fprintf(fp, "(decr,expire %ld), ", (long)
180 1.3 itojun pfx->vltimeexpire > now.tv_sec ?
181 1.3 itojun pfx->vltimeexpire - now.tv_sec : 0);
182 1.3 itojun else
183 1.3 itojun fprintf(fp, ", ");
184 1.1 itojun if (pfx->preflifetime == ND6_INFINITE_LIFETIME)
185 1.3 itojun fprintf(fp, "pltime: infinity");
186 1.1 itojun else
187 1.3 itojun fprintf(fp, "pltime: %ld",
188 1.1 itojun (long)pfx->preflifetime);
189 1.3 itojun if (pfx->pltimeexpire != 0)
190 1.3 itojun fprintf(fp, "(decr,expire %ld), ", (long)
191 1.3 itojun pfx->pltimeexpire > now.tv_sec ?
192 1.3 itojun pfx->pltimeexpire - now.tv_sec : 0);
193 1.3 itojun else
194 1.3 itojun fprintf(fp, ", ");
195 1.1 itojun fprintf(fp, "flags: %s%s%s",
196 1.1 itojun pfx->onlinkflg ? "L" : "",
197 1.1 itojun pfx->autoconfflg ? "A" : "",
198 1.1 itojun "");
199 1.1 itojun fprintf(fp, ")\n");
200 1.1 itojun }
201 1.1 itojun }
202 1.1 itojun }
203 1.1 itojun
204 1.1 itojun void
205 1.1 itojun rtadvd_dump_file(dumpfile)
206 1.1 itojun char *dumpfile;
207 1.1 itojun {
208 1.1 itojun if ((fp = fopen(dumpfile, "w")) == NULL) {
209 1.1 itojun syslog(LOG_WARNING, "<%s> open a dump file(%s)",
210 1.6 itojun __func__, dumpfile);
211 1.1 itojun return;
212 1.1 itojun }
213 1.1 itojun
214 1.1 itojun if_dump();
215 1.1 itojun
216 1.1 itojun fclose(fp);
217 1.1 itojun }
218