Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.sbin / mrouted / testrsrr / testrsrr.c
1 /*
2  * Copyright 1995 Massachusetts Institute of Technology
3  *
4  * Permission to use, copy, modify, and distribute this software and
5  * its documentation for any purpose and without fee is hereby
6  * granted, provided that both the above copyright notice and this
7  * permission notice appear in all copies, that both the above
8  * copyright notice and this permission notice appear in all
9  * supporting documentation, and that the name of M.I.T. not be used
10  * in advertising or publicity pertaining to distribution of the
11  * software without specific, written prior permission.  M.I.T. makes
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied
14  * warranty.
15  * 
16  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
17  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD: src/usr.sbin/mrouted/testrsrr/testrsrr.c,v 1.4 1999/08/28 01:17:17 peter Exp $
30  * $DragonFly: src/usr.sbin/mrouted/testrsrr/testrsrr.c,v 1.2 2003/06/17 04:29:57 dillon Exp $
31  */
32 #include <stddef.h>
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <err.h>
36 #include <sysexits.h>
37
38 #include <sys/param.h>
39 #include <sys/types.h>
40 #include <unistd.h>
41 #include <sys/socket.h>
42 #include <sys/un.h>
43
44 #include <netinet/in.h>
45 #include <arpa/inet.h>
46
47 #include "rsrr.h"
48
49 char sunpath[MAXPATHLEN];
50 int s;
51
52 void exitfn(void) {
53         close(s);
54         unlink(sunpath);
55 }
56
57 int main(void) {
58         struct sockaddr_un sun;
59         char buf[RSRR_MAX_LEN];
60         struct rsrr_header *rh;
61         struct rsrr_vif *rvp;
62         int i;
63
64         s = socket(PF_LOCAL, SOCK_DGRAM, 0);
65         if (s < 0) {
66                 err(EX_OSERR, "socket(PF_LOCAL, SOCK_DGRAM, 0)");
67         }
68
69         sun.sun_family = AF_LOCAL;
70         snprintf(sunpath, sizeof sun.sun_path, "/tmp/testrsrr.%lu", 
71                  (unsigned long)getpid());
72         strcpy(sun.sun_path, sunpath);
73         sun.sun_len = (offsetof(struct sockaddr_un, sun_path) 
74                        + strlen(sunpath));
75
76         if (bind(s, (struct sockaddr *)&sun, sun.sun_len) < 0) {
77                 err(EX_OSERR, "bind: %s", sunpath);
78         }
79
80         atexit(exitfn);         /* clean up if we exit on error */
81
82         strcpy(sun.sun_path, RSRR_SERV_PATH);
83         sun.sun_len = (offsetof(struct sockaddr_un, sun_path) 
84                        + strlen(sunpath));
85
86         if (connect(s, (struct sockaddr *)&sun, sun.sun_len) < 0) {
87                 err(EX_OSERR, "connect: %s", RSRR_SERV_PATH);
88         }
89
90         rh = (struct rsrr_header *)buf;
91         rh->version = RSRR_MAX_VERSION;
92         rh->type = RSRR_INITIAL_QUERY;
93         rh->flags = 0;
94         rh->num = 0;
95
96         if (write(s, rh, sizeof *rh) == (ssize_t)-1) {
97                 err(EX_OSERR, "write(initial query)");
98         }
99
100         if (read(s, buf, sizeof buf) == (ssize_t)-1) {
101                 err(EX_OSERR, "read(initial reply)");
102         }
103
104         if (rh->version != RSRR_MAX_VERSION) {
105                 errx(EX_PROTOCOL, "bad remote version %d", rh->version);
106         }
107
108         if (rh->type != RSRR_INITIAL_REPLY) {
109                 errx(EX_PROTOCOL, "remote returned unexpected message type %d",
110                      rh->type);
111         }
112
113         if (rh->flags) {
114                 printf("confusing flags: %d\n", rh->flags);
115         }
116
117         printf("There are %d vifs configured:\n", rh->num);
118
119         printf(" Vif  Thresh  Status  Local address\n");
120         for(i = 0, rvp = (struct rsrr_vif *)(rh + 1); i < rh->num; i++,rvp++) {
121                 printf(" %3d  %6d  %6d  %s\n", rvp->id, rvp->threshold,
122                        rvp->status, inet_ntoa(rvp->local_addr));
123         }
124         exit(0);
125 }