f462f9460d633a510463b47d6926340a933e51f9
[dragonfly.git] / sbin / atm / atm / atm_inet.c
1 /*
2  *
3  * ===================================
4  * HARP  |  Host ATM Research Platform
5  * ===================================
6  *
7  *
8  * This Host ATM Research Platform ("HARP") file (the "Software") is
9  * made available by Network Computing Services, Inc. ("NetworkCS")
10  * "AS IS".  NetworkCS does not provide maintenance, improvements or
11  * support of any kind.
12  *
13  * NETWORKCS MAKES NO WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED,
14  * INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
15  * AND FITNESS FOR A PARTICULAR PURPOSE, AS TO ANY ELEMENT OF THE
16  * SOFTWARE OR ANY SUPPORT PROVIDED IN CONNECTION WITH THIS SOFTWARE.
17  * In no event shall NetworkCS be responsible for any damages, including
18  * but not limited to consequential damages, arising from or relating to
19  * any use of the Software or related support.
20  *
21  * Copyright 1994-1998 Network Computing Services, Inc.
22  *
23  * Copies of this Software may be made, however, the above copyright
24  * notice must be reproduced on all copies.
25  *
26  *      @(#) $FreeBSD: src/sbin/atm/atm/atm_inet.c,v 1.3.2.1 2000/07/01 06:02:14 ps Exp $
27  *      @(#) $DragonFly: src/sbin/atm/atm/atm_inet.c,v 1.3 2003/09/28 14:39:16 hmp Exp $
28  */
29
30 /*
31  * User configuration and display program
32  * --------------------------------------
33  *
34  * IP support
35  *
36  */
37
38 #include <sys/param.h>  
39 #include <sys/socket.h> 
40 #include <net/if.h>
41 #include <netinet/in.h>
42 #include <netatm/port.h>
43 #include <netatm/atm.h>
44 #include <netatm/atm_if.h> 
45 #include <netatm/atm_sap.h>
46 #include <netatm/atm_sys.h>
47 #include <netatm/atm_ioctl.h>
48
49 #include <errno.h>
50 #include <libatm.h>
51 #include <stdio.h>
52 #include <stdlib.h>
53 #include <string.h>
54
55 #include "atm.h"
56
57 /*
58  * Process add command for a TCP/IP PVC
59  * 
60  * Command format: 
61  *      atm add pvc <intf> <vpi> <vci> <aal> <encaps> IP <netif>
62  *              <IP addr> | dynamic
63  *
64  * Arguments:
65  *      argc    number of remaining arguments to command
66  *      argv    pointer to remaining argument strings
67  *      cmdp    pointer to command description 
68  *      app     pointer to AIOCAPVC structure
69  *      intp    pointer to air_int_rsp structure with information
70  *              about the physical interface that is the PVC is for.
71  *
72  * Returns:
73  *      none
74  *
75  */
76 void
77 ip_pvcadd(int argc, char **argv, struct cmd *cmdp, struct atmaddreq *app,
78           struct air_int_rsp *intp)
79 {
80         char    *cp;
81         char    nhelp[128];
82         int     i, netif_pref_len, netif_no;
83
84         /*
85          * Yet more validation
86          */
87         if (argc != 2) {
88                 strcpy(nhelp, cmdp->help);
89                 cp = strstr(nhelp, "<netif>");
90                 if (cp)
91                         strcpy(cp, "ip {dyn|<dst>}");
92                 fprintf(stderr, "%s: Invalid number of arguments:\n",
93                                 prog);
94                 fprintf(stderr, "\tformat is: %s%s %s\n",
95                                 prefix, cmdp->name, nhelp);
96                 exit(1);
97         }
98
99         /*
100          * Validate and set network interface
101          */
102         UM_ZERO(app->aar_pvc_intf, sizeof(app->aar_pvc_intf));
103         netif_pref_len = strlen(intp->anp_nif_pref);
104         cp = &argv[0][netif_pref_len];
105         netif_no = atoi(cp);
106         for (i=0; i<strlen(cp); i++) {
107                 if (cp[i] < '0' || cp[i] > '9') {
108                         netif_no = -1;
109                         break;
110                 }
111         }
112         if ((strlen(argv[0]) > sizeof(app->aar_pvc_intf) - 1) ||
113                         (netif_no < 0)) {
114                 fprintf(stderr, "%s: Illegal network interface name\n",
115                                 prog);
116                 exit(1);
117         }
118         if (strncasecmp(intp->anp_nif_pref, argv[0], netif_pref_len) ||
119                         strlen (argv[0]) <= netif_pref_len ||
120                         netif_no > intp->anp_nif_cnt - 1) {
121                 fprintf(stderr, "%s: network interface %s is not associated with interface %s\n",
122                                 prog,
123                                 argv[0],
124                                 intp->anp_intf);
125                 exit(1);
126         }
127         strcpy(app->aar_pvc_intf, argv[0]);
128         argc--; argv++;
129
130         /*
131          * Set PVC destination address
132          */
133         UM_ZERO(&app->aar_pvc_dst, sizeof(struct sockaddr));
134         if (strcasecmp(argv[0], "dynamic") == 0 ||
135                         strcasecmp(argv[0], "dyn") == 0) {
136
137                 /*
138                  * Destination is dynamically determined
139                  */
140                 app->aar_pvc_flags |= PVC_DYN;
141         } else {
142
143                 /*
144                  * Get destination IP address
145                  */
146                 struct sockaddr_in      *sin;
147
148                 sin = (struct sockaddr_in *) &app->aar_pvc_dst;
149                 sin->sin_addr.s_addr =
150                                 get_ip_addr(argv[0])->sin_addr.s_addr;
151         }
152         argc--; argv++;
153 }
154