]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/ppp/atm.c
This commit was generated by cvs2svn to compensate for changes in r94670,
[FreeBSD/FreeBSD.git] / usr.sbin / ppp / atm.c
1 /*-
2  * Copyright (c) 2000 Jakob Stoklund Olesen <stoklund@taxidriver.dk>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include <sys/types.h>
30 #include <sys/socket.h>
31 #include <net/if.h>
32 #include <netnatm/natm.h>
33
34 #include <errno.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <sysexits.h>
39 #include <sys/uio.h>
40 #include <termios.h>
41 #include <unistd.h>
42
43 #include "layer.h"
44 #include "defs.h"
45 #include "mbuf.h"
46 #include "log.h"
47 #include "timer.h"
48 #include "lqr.h"
49 #include "hdlc.h"
50 #include "throughput.h"
51 #include "fsm.h"
52 #include "lcp.h"
53 #include "ccp.h"
54 #include "link.h"
55 #include "async.h"
56 #include "descriptor.h"
57 #include "physical.h"
58 #include "main.h"
59 #include "atm.h"
60
61 /* String identifying PPPoA */
62 #define PPPOA           "PPPoA"
63 #define PPPOA_LEN       (sizeof(PPPOA) - 1)
64
65 struct atmdevice {
66   struct device dev;            /* What struct physical knows about */
67 };
68
69 #define device2atm(d) ((d)->type == ATM_DEVICE ? (struct atmdevice *)d : NULL)
70
71 int
72 atm_DeviceSize(void)
73 {
74   return sizeof(struct atmdevice);
75 }
76
77 static ssize_t
78 atm_Sendto(struct physical *p, const void *v, size_t n)
79 {
80   ssize_t ret = write(p->fd, v, n);
81   if (ret < 0) {
82     log_Printf(LogDEBUG, "atm_Sendto(%ld): %s\n", (long)n, strerror(errno));
83     return ret;
84   }
85   return ret;
86 }
87
88 static ssize_t
89 atm_Recvfrom(struct physical *p, void *v, size_t n)
90 {
91     ssize_t ret = read(p->fd, (char*)v, n);
92     if (ret < 0) {
93       log_Printf(LogDEBUG, "atm_Recvfrom(%ld): %s\n", (long)n, strerror(errno));
94       return ret;
95     }
96     return ret;
97 }
98
99 static void
100 atm_Free(struct physical *p)
101 {
102   struct atmdevice *dev = device2atm(p->handler);
103
104   free(dev);
105 }
106
107 static void
108 atm_device2iov(struct device *d, struct iovec *iov, int *niov,
109                int maxiov, int *auxfd, int *nauxfd)
110 {
111   int sz = physical_MaxDeviceSize();
112
113   iov[*niov].iov_base = realloc(d, sz);
114   if (iov[*niov].iov_base == NULL) {
115     log_Printf(LogALERT, "Failed to allocate memory: %d\n", sz);
116     AbortProgram(EX_OSERR);
117   }
118   iov[*niov].iov_len = sz;
119   (*niov)++;
120 }
121
122 static const struct device baseatmdevice = {
123   ATM_DEVICE,
124   "atm",
125   0,
126   { CD_NOTREQUIRED, 0 },
127   NULL,
128   NULL,
129   NULL,
130   NULL,
131   NULL,
132   NULL,
133   NULL,
134   atm_Free,
135   atm_Recvfrom,
136   atm_Sendto,
137   atm_device2iov,
138   NULL,
139   NULL
140 };
141
142 struct device *
143 atm_iov2device(int type, struct physical *p, struct iovec *iov, int *niov,
144                int maxiov, int *auxfd, int *nauxfd)
145 {
146   if (type == ATM_DEVICE) {
147     struct atmdevice *dev = (struct atmdevice *)iov[(*niov)++].iov_base;
148
149     dev = realloc(dev, sizeof *dev);    /* Reduce to the correct size */
150     if (dev == NULL) {
151       log_Printf(LogALERT, "Failed to allocate memory: %d\n",
152                  (int)(sizeof *dev));
153       AbortProgram(EX_OSERR);
154     }
155
156     /* Refresh function pointers etc */
157     memcpy(&dev->dev, &baseatmdevice, sizeof dev->dev);
158
159     physical_SetupStack(p, dev->dev.name, PHYSICAL_FORCE_SYNCNOACF);
160     return &dev->dev;
161   }
162
163   return NULL;
164 }
165
166 static struct atmdevice *
167 atm_CreateDevice(struct physical *p, const char *iface, unsigned vpi,
168                  unsigned vci)
169 {
170   struct atmdevice *dev;
171   struct sockaddr_natm sock;
172   
173   if ((dev = calloc(1, sizeof *dev)) == NULL) {
174     log_Printf(LogWARN, "%s: Cannot allocate an atm device: %s\n",
175                p->link.name, strerror(errno));
176     return NULL;
177   }
178
179   sock.snatm_len = sizeof sock;
180   sock.snatm_family = AF_NATM;
181   strncpy(sock.snatm_if, iface, IFNAMSIZ);
182   sock.snatm_vpi = vpi;
183   sock.snatm_vci = vci;
184
185   log_Printf(LogPHASE, "%s: Connecting to %s:%u.%u\n", p->link.name,
186              iface, vpi, vci);
187
188   p->fd = socket(PF_NATM, SOCK_DGRAM, PROTO_NATMAAL5);
189   if (p->fd >= 0) {
190     log_Printf(LogDEBUG, "%s: Opened atm socket %s\n", p->link.name,
191                p->name.full);
192     if (connect(p->fd, (struct sockaddr *)&sock, sizeof sock) == 0)
193       return dev;
194     else
195       log_Printf(LogWARN, "%s: connect: %s\n", p->name.full, strerror(errno));
196   } else
197     log_Printf(LogWARN, "%s: socket: %s\n", p->name.full, strerror(errno));
198
199   close(p->fd);
200   p->fd = -1;
201   free(dev);
202
203   return NULL;
204 }
205
206 struct device *
207 atm_Create(struct physical *p)
208 {
209   struct atmdevice *dev;
210
211   dev = NULL;
212   if (p->fd < 0 && !strncasecmp(p->name.full, PPPOA, PPPOA_LEN)
213       && p->name.full[PPPOA_LEN] == ':') {
214     char iface[25];
215     unsigned vci, vpi;
216     
217     if (sscanf(p->name.full + PPPOA_LEN + 1, "%25[A-Za-z0-9]:%u.%u", iface,
218                &vpi, &vci) != 3) {
219       log_Printf(LogWARN, "Malformed ATM device name \'%s\', "
220                  "PPPoA:if:vpi.vci expected\n", p->name.full);
221       return NULL;
222     }
223     
224     dev = atm_CreateDevice(p, iface, vpi, vci);
225   }
226
227   if (dev) {
228     memcpy(&dev->dev, &baseatmdevice, sizeof dev->dev);
229     physical_SetupStack(p, dev->dev.name, PHYSICAL_FORCE_SYNCNOACF);
230     if (p->cfg.cd.necessity != CD_DEFAULT)
231       log_Printf(LogWARN, "Carrier settings ignored\n");
232     return &dev->dev;
233   }
234
235   return NULL;
236 }