convert kinfo to sysctl
[unix-history] / usr / src / sbin / routed / trace.c
CommitLineData
5ff67f98 1/*
3256e1bb 2 * Copyright (c) 1983, 1988 Regents of the University of California.
0eb85d71
KB
3 * All rights reserved.
4 *
d60d530a 5 * %sccs.include.redist.c%
5ff67f98
DF
6 */
7
f036a54d 8#ifndef lint
49dac2b7 9static char sccsid[] = "@(#)trace.c 5.11 (Berkeley) %G%";
0eb85d71 10#endif /* not lint */
f036a54d
SL
11
12/*
13 * Routing Table Management Daemon
14 */
15#define RIPCMDS
7fe7fe74 16#include "defs.h"
09069ad0 17#include <sys/stat.h>
3256e1bb 18#include <sys/signal.h>
49dac2b7
KB
19#include <fcntl.h>
20#include <stdlib.h>
7abf8d65 21#include "pathnames.h"
f036a54d
SL
22
23#define NRECORDS 50 /* size of circular trace buffer */
24#ifdef DEBUG
25FILE *ftrace = stdout;
4033c8f6 26int traceactions = 0;
f036a54d 27#endif
4033c8f6
MK
28static struct timeval lastlog;
29static char *savetracename;
f036a54d
SL
30
31traceinit(ifp)
32 register struct interface *ifp;
33{
49dac2b7 34 static int iftraceinit();
f036a54d
SL
35
36 if (iftraceinit(ifp, &ifp->int_input) &&
37 iftraceinit(ifp, &ifp->int_output))
38 return;
3256e1bb 39 tracehistory = 0;
f036a54d
SL
40 fprintf(stderr, "traceinit: can't init %s\n", ifp->int_name);
41}
42
43static
44iftraceinit(ifp, ifd)
45 struct interface *ifp;
46 register struct ifdebug *ifd;
47{
48 register struct iftrace *t;
49
50 ifd->ifd_records =
51 (struct iftrace *)malloc(NRECORDS * sizeof (struct iftrace));
52 if (ifd->ifd_records == 0)
53 return (0);
54 ifd->ifd_front = ifd->ifd_records;
b7e4f8be 55 ifd->ifd_count = 0;
f036a54d
SL
56 for (t = ifd->ifd_records; t < ifd->ifd_records + NRECORDS; t++) {
57 t->ift_size = 0;
58 t->ift_packet = 0;
59 }
60 ifd->ifd_if = ifp;
61 return (1);
62}
63
64traceon(file)
65 char *file;
66{
09069ad0 67 struct stat stbuf;
f036a54d
SL
68
69 if (ftrace != NULL)
70 return;
09069ad0
MK
71 if (stat(file, &stbuf) >= 0 && (stbuf.st_mode & S_IFMT) != S_IFREG)
72 return;
4033c8f6
MK
73 savetracename = file;
74 (void) gettimeofday(&now, (struct timezone *)NULL);
f036a54d
SL
75 ftrace = fopen(file, "a");
76 if (ftrace == NULL)
77 return;
78 dup2(fileno(ftrace), 1);
79 dup2(fileno(ftrace), 2);
3256e1bb 80 traceactions = 1;
4033c8f6 81 fprintf(ftrace, "Tracing enabled %s\n", ctime((time_t *)&now.tv_sec));
f036a54d
SL
82}
83
84traceoff()
85{
3256e1bb 86 if (!traceactions)
f036a54d 87 return;
9d9e2fa1 88 if (ftrace != NULL) {
7abf8d65 89 int fd = open(_PATH_DEVNULL, O_RDWR);
9d9e2fa1 90
4033c8f6
MK
91 fprintf(ftrace, "Tracing disabled %s\n",
92 ctime((time_t *)&now.tv_sec));
93 fflush(ftrace);
9d9e2fa1
MK
94 (void) dup2(fd, 1);
95 (void) dup2(fd, 2);
96 (void) close(fd);
f036a54d 97 fclose(ftrace);
9d9e2fa1
MK
98 ftrace = NULL;
99 }
3256e1bb
MK
100 traceactions = 0;
101 tracehistory = 0;
4033c8f6
MK
102 tracepackets = 0;
103 tracecontents = 0;
3256e1bb
MK
104}
105
49dac2b7 106void
3256e1bb
MK
107sigtrace(s)
108 int s;
109{
4033c8f6
MK
110
111 if (s == SIGUSR2)
3256e1bb 112 traceoff();
4033c8f6
MK
113 else if (ftrace == NULL && savetracename)
114 traceon(savetracename);
115 else
116 bumploglevel();
117}
118
119/*
120 * Move to next higher level of tracing when -t option processed or
121 * SIGUSR1 is received. Successive levels are:
122 * traceactions
123 * traceactions + tracepackets
124 * traceactions + tracehistory (packets and contents after change)
125 * traceactions + tracepackets + tracecontents
126 */
127bumploglevel()
128{
129
130 (void) gettimeofday(&now, (struct timezone *)NULL);
131 if (traceactions == 0) {
3256e1bb 132 traceactions++;
4033c8f6
MK
133 if (ftrace)
134 fprintf(ftrace, "Tracing actions started %s\n",
135 ctime((time_t *)&now.tv_sec));
136 } else if (tracepackets == 0) {
137 tracepackets++;
138 tracehistory = 0;
139 tracecontents = 0;
140 if (ftrace)
141 fprintf(ftrace, "Tracing packets started %s\n",
142 ctime((time_t *)&now.tv_sec));
143 } else if (tracehistory == 0) {
3256e1bb 144 tracehistory++;
4033c8f6
MK
145 if (ftrace)
146 fprintf(ftrace, "Tracing history started %s\n",
147 ctime((time_t *)&now.tv_sec));
148 } else {
3256e1bb 149 tracepackets++;
4033c8f6 150 tracecontents++;
3256e1bb 151 tracehistory = 0;
4033c8f6
MK
152 if (ftrace)
153 fprintf(ftrace, "Tracing packet contents started %s\n",
154 ctime((time_t *)&now.tv_sec));
3256e1bb 155 }
4033c8f6
MK
156 if (ftrace)
157 fflush(ftrace);
f036a54d
SL
158}
159
160trace(ifd, who, p, len, m)
161 register struct ifdebug *ifd;
162 struct sockaddr *who;
163 char *p;
164 int len, m;
165{
166 register struct iftrace *t;
167
168 if (ifd->ifd_records == 0)
169 return;
170 t = ifd->ifd_front++;
171 if (ifd->ifd_front >= ifd->ifd_records + NRECORDS)
172 ifd->ifd_front = ifd->ifd_records;
b7e4f8be
MK
173 if (ifd->ifd_count < NRECORDS)
174 ifd->ifd_count++;
9bd44906 175 if (t->ift_size > 0 && t->ift_size < len && t->ift_packet) {
f036a54d 176 free(t->ift_packet);
9bd44906
MK
177 t->ift_packet = 0;
178 }
4033c8f6 179 t->ift_stamp = now;
f036a54d 180 t->ift_who = *who;
9bd44906 181 if (len > 0 && t->ift_packet == 0) {
f036a54d 182 t->ift_packet = malloc(len);
9bd44906 183 if (t->ift_packet == 0)
f036a54d
SL
184 len = 0;
185 }
9bd44906
MK
186 if (len > 0)
187 bcopy(p, t->ift_packet, len);
f036a54d
SL
188 t->ift_size = len;
189 t->ift_metric = m;
190}
191
192traceaction(fd, action, rt)
193 FILE *fd;
194 char *action;
195 struct rt_entry *rt;
196{
197 struct sockaddr_in *dst, *gate;
198 static struct bits {
199 int t_bits;
200 char *t_name;
201 } flagbits[] = {
202 { RTF_UP, "UP" },
203 { RTF_GATEWAY, "GATEWAY" },
204 { RTF_HOST, "HOST" },
205 { 0 }
206 }, statebits[] = {
207 { RTS_PASSIVE, "PASSIVE" },
208 { RTS_REMOTE, "REMOTE" },
209 { RTS_INTERFACE,"INTERFACE" },
210 { RTS_CHANGED, "CHANGED" },
09069ad0
MK
211 { RTS_INTERNAL, "INTERNAL" },
212 { RTS_EXTERNAL, "EXTERNAL" },
213 { RTS_SUBNET, "SUBNET" },
f036a54d
SL
214 { 0 }
215 };
216 register struct bits *p;
217 register int first;
218 char *cp;
219 struct interface *ifp;
220
221 if (fd == NULL)
222 return;
4033c8f6
MK
223 if (lastlog.tv_sec != now.tv_sec || lastlog.tv_usec != now.tv_usec) {
224 fprintf(fd, "\n%.19s:\n", ctime((time_t *)&now.tv_sec));
225 lastlog = now;
3256e1bb 226 }
f036a54d
SL
227 fprintf(fd, "%s ", action);
228 dst = (struct sockaddr_in *)&rt->rt_dst;
229 gate = (struct sockaddr_in *)&rt->rt_router;
2513c24a
SL
230 fprintf(fd, "dst %s, ", inet_ntoa(dst->sin_addr));
231 fprintf(fd, "router %s, metric %d, flags",
232 inet_ntoa(gate->sin_addr), rt->rt_metric);
f036a54d
SL
233 cp = " %s";
234 for (first = 1, p = flagbits; p->t_bits > 0; p++) {
235 if ((rt->rt_flags & p->t_bits) == 0)
236 continue;
237 fprintf(fd, cp, p->t_name);
238 if (first) {
239 cp = "|%s";
240 first = 0;
241 }
242 }
243 fprintf(fd, " state");
244 cp = " %s";
245 for (first = 1, p = statebits; p->t_bits > 0; p++) {
246 if ((rt->rt_state & p->t_bits) == 0)
247 continue;
248 fprintf(fd, cp, p->t_name);
249 if (first) {
250 cp = "|%s";
251 first = 0;
252 }
253 }
3256e1bb 254 fprintf(fd, " timer %d\n", rt->rt_timer);
4033c8f6
MK
255 if (tracehistory && !tracepackets &&
256 (rt->rt_state & RTS_PASSIVE) == 0 && rt->rt_ifp)
f036a54d
SL
257 dumpif(fd, rt->rt_ifp);
258 fflush(fd);
4033c8f6
MK
259 if (ferror(fd))
260 traceoff();
f036a54d
SL
261}
262
3256e1bb
MK
263tracenewmetric(fd, rt, newmetric)
264 FILE *fd;
265 struct rt_entry *rt;
266 int newmetric;
267{
268 struct sockaddr_in *dst, *gate;
269
270 if (fd == NULL)
271 return;
4033c8f6
MK
272 if (lastlog.tv_sec != now.tv_sec || lastlog.tv_usec != now.tv_usec) {
273 fprintf(fd, "\n%.19s:\n", ctime((time_t *)&now.tv_sec));
274 lastlog = now;
275 }
3256e1bb
MK
276 dst = (struct sockaddr_in *)&rt->rt_dst;
277 gate = (struct sockaddr_in *)&rt->rt_router;
278 fprintf(fd, "CHANGE metric dst %s, ", inet_ntoa(dst->sin_addr));
279 fprintf(fd, "router %s, from %d to %d\n",
280 inet_ntoa(gate->sin_addr), rt->rt_metric, newmetric);
281 fflush(fd);
4033c8f6
MK
282 if (ferror(fd))
283 traceoff();
3256e1bb
MK
284}
285
f036a54d 286dumpif(fd, ifp)
4033c8f6 287 FILE *fd;
f036a54d
SL
288 register struct interface *ifp;
289{
b7e4f8be
MK
290 if (ifp->int_input.ifd_count || ifp->int_output.ifd_count) {
291 fprintf(fd, "*** Packet history for interface %s ***\n",
292 ifp->int_name);
3256e1bb 293#ifdef notneeded
b7e4f8be 294 dumptrace(fd, "to", &ifp->int_output);
3256e1bb 295#endif
b7e4f8be
MK
296 dumptrace(fd, "from", &ifp->int_input);
297 fprintf(fd, "*** end packet history ***\n");
298 }
f036a54d
SL
299}
300
301dumptrace(fd, dir, ifd)
302 FILE *fd;
303 char *dir;
304 register struct ifdebug *ifd;
305{
306 register struct iftrace *t;
307 char *cp = !strcmp(dir, "to") ? "Output" : "Input";
308
309 if (ifd->ifd_front == ifd->ifd_records &&
310 ifd->ifd_front->ift_size == 0) {
311 fprintf(fd, "%s: no packets.\n", cp);
9bd44906 312 fflush(fd);
f036a54d
SL
313 return;
314 }
315 fprintf(fd, "%s trace:\n", cp);
b7e4f8be
MK
316 t = ifd->ifd_front - ifd->ifd_count;
317 if (t < ifd->ifd_records)
318 t += NRECORDS;
319 for ( ; ifd->ifd_count; ifd->ifd_count--, t++) {
320 if (t >= ifd->ifd_records + NRECORDS)
321 t = ifd->ifd_records;
f036a54d
SL
322 if (t->ift_size == 0)
323 continue;
3256e1bb
MK
324 dumppacket(fd, dir, &t->ift_who, t->ift_packet, t->ift_size,
325 &t->ift_stamp);
f036a54d
SL
326 }
327}
328
4033c8f6 329dumppacket(fd, dir, who, cp, size, stamp)
f036a54d
SL
330 FILE *fd;
331 struct sockaddr_in *who; /* should be sockaddr */
332 char *dir, *cp;
333 register int size;
4033c8f6 334 struct timeval *stamp;
f036a54d
SL
335{
336 register struct rip *msg = (struct rip *)cp;
337 register struct netinfo *n;
338
4033c8f6
MK
339 if (fd == NULL)
340 return;
f036a54d 341 if (msg->rip_cmd && msg->rip_cmd < RIPCMD_MAX)
4033c8f6 342 fprintf(fd, "%s %s %s.%d %.19s:\n", ripcmds[msg->rip_cmd],
3256e1bb 343 dir, inet_ntoa(who->sin_addr), ntohs(who->sin_port),
4033c8f6
MK
344 ctime((time_t *)&stamp->tv_sec));
345 else {
346 fprintf(fd, "Bad cmd 0x%x %s %x.%d %.19s\n", msg->rip_cmd,
347 dir, inet_ntoa(who->sin_addr), ntohs(who->sin_port));
348 fprintf(fd, "size=%d cp=%x packet=%x\n", size, cp, packet,
349 ctime((time_t *)&stamp->tv_sec));
350 fflush(fd);
351 return;
352 }
353 if (tracepackets && tracecontents == 0) {
9bd44906 354 fflush(fd);
f036a54d
SL
355 return;
356 }
357 switch (msg->rip_cmd) {
358
359 case RIPCMD_REQUEST:
360 case RIPCMD_RESPONSE:
f036a54d
SL
361 size -= 4 * sizeof (char);
362 n = msg->rip_nets;
363 for (; size > 0; n++, size -= sizeof (struct netinfo)) {
4033c8f6
MK
364 if (size < sizeof (struct netinfo)) {
365 fprintf(fd, "(truncated record, len %d)\n",
366 size);
f036a54d 367 break;
4033c8f6
MK
368 }
369 if (sizeof(n->rip_dst.sa_family) > 1)
370 n->rip_dst.sa_family = ntohs(n->rip_dst.sa_family);
371
372 switch ((int)n->rip_dst.sa_family) {
373
374 case AF_INET:
375 fprintf(fd, "\tdst %s metric %d\n",
2513c24a 376#define satosin(sa) ((struct sockaddr_in *)&sa)
4033c8f6
MK
377 inet_ntoa(satosin(n->rip_dst)->sin_addr),
378 ntohl(n->rip_metric));
379 break;
380
381 default:
382 fprintf(fd, "\taf %d? metric %d\n",
383 n->rip_dst.sa_family,
384 ntohl(n->rip_metric));
385 break;
386 }
f036a54d
SL
387 }
388 break;
389
390 case RIPCMD_TRACEON:
3256e1bb 391 fprintf(fd, "\tfile=%*s\n", size, msg->rip_tracefile);
f036a54d
SL
392 break;
393
394 case RIPCMD_TRACEOFF:
f036a54d
SL
395 break;
396 }
9bd44906 397 fflush(fd);
4033c8f6
MK
398 if (ferror(fd))
399 traceoff();
f036a54d 400}