]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/ppp/tty.c
unfinished sblive driver, playback/mixer only for now - not enabled in
[FreeBSD/FreeBSD.git] / usr.sbin / ppp / tty.c
1 /*-
2  * Copyright (c) 1999 Brian Somers <brian@Awfulhak.org>
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/param.h>
30 #include <sys/un.h>
31 #if defined(__OpenBSD__) || defined(__NetBSD__)
32 #include <sys/ioctl.h>
33 #endif
34
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <sysexits.h>
40 #include <sys/uio.h>
41 #include <termios.h>
42 #include <unistd.h>
43
44 #include "layer.h"
45 #include "defs.h"
46 #include "mbuf.h"
47 #include "log.h"
48 #include "timer.h"
49 #include "lqr.h"
50 #include "hdlc.h"
51 #include "throughput.h"
52 #include "fsm.h"
53 #include "lcp.h"
54 #include "ccp.h"
55 #include "link.h"
56 #include "async.h"
57 #include "descriptor.h"
58 #include "physical.h"
59 #include "mp.h"
60 #include "chat.h"
61 #include "auth.h"
62 #include "chap.h"
63 #include "cbcp.h"
64 #include "datalink.h"
65 #include "main.h"
66 #include "tty.h"
67
68 #if defined(__mac68k__) || defined(__macppc__)
69 #undef  CRTS_IFLOW
70 #undef  CCTS_OFLOW
71 #define CRTS_IFLOW      CDTRCTS
72 #define CCTS_OFLOW      CDTRCTS
73 #endif
74
75 #define Online(dev)     ((dev)->mbits & TIOCM_CD)
76
77 struct ttydevice {
78   struct device dev;            /* What struct physical knows about */
79   struct pppTimer Timer;        /* CD checks */
80   int mbits;                    /* Current DCD status */
81   int carrier_seconds;          /* seconds before CD is *required* */
82   struct termios ios;           /* To be able to reset from raw mode */
83 };
84
85 #define device2tty(d) ((d)->type == TTY_DEVICE ? (struct ttydevice *)d : NULL)
86
87 int
88 tty_DeviceSize(void)
89 {
90   return sizeof(struct ttydevice);
91 }
92
93 /*
94  * tty_Timeout() watches the DCD signal and mentions it if it's status
95  * changes.
96  */
97 static void
98 tty_Timeout(void *data)
99 {
100   struct physical *p = data;
101   struct ttydevice *dev = device2tty(p->handler);
102   int ombits, change;
103
104   timer_Stop(&dev->Timer);
105   dev->Timer.load = SECTICKS;           /* Once a second please */
106   timer_Start(&dev->Timer);
107   ombits = dev->mbits;
108
109   if (p->fd >= 0) {
110     if (ioctl(p->fd, TIOCMGET, &dev->mbits) < 0) {
111       /* we must be a pty ? */
112       if (p->cfg.cd.necessity != CD_DEFAULT)
113         log_Printf(LogWARN, "%s: Carrier ioctl not supported, "
114                    "using ``set cd off''\n", p->link.name);
115       timer_Stop(&dev->Timer);
116       dev->mbits = TIOCM_CD;
117       return;
118     }
119   } else
120     dev->mbits = 0;
121
122   if (ombits == -1) {
123     /* First time looking for carrier */
124     if (Online(dev))
125       log_Printf(LogPHASE, "%s: %s: CD detected\n", p->link.name, p->name.full);
126     else if (++dev->carrier_seconds >= dev->dev.cd.delay) {
127       if (dev->dev.cd.necessity == CD_REQUIRED)
128         log_Printf(LogPHASE, "%s: %s: Required CD not detected\n",
129                    p->link.name, p->name.full);
130       else {
131         log_Printf(LogPHASE, "%s: %s doesn't support CD\n",
132                    p->link.name, p->name.full);
133         dev->mbits = TIOCM_CD;          /* Dodgy null-modem cable ? */
134       }
135       timer_Stop(&dev->Timer);
136       /* tty_AwaitCarrier() will notice */
137     } else {
138       /* Keep waiting */
139       log_Printf(LogDEBUG, "%s: %s: Still no carrier (%d/%d)\n",
140                  p->link.name, p->name.full, dev->carrier_seconds,
141                  dev->dev.cd.delay);
142       dev->mbits = -1;
143     }
144   } else {
145     change = ombits ^ dev->mbits;
146     if (change & TIOCM_CD) {
147       if (dev->mbits & TIOCM_CD)
148         log_Printf(LogDEBUG, "%s: offline -> online\n", p->link.name);
149       else {
150         log_Printf(LogDEBUG, "%s: online -> offline\n", p->link.name);
151         log_Printf(LogPHASE, "%s: Carrier lost\n", p->link.name);
152         datalink_Down(p->dl, CLOSE_NORMAL);
153         timer_Stop(&dev->Timer);
154       }
155     } else
156       log_Printf(LogDEBUG, "%s: Still %sline\n", p->link.name,
157                  Online(dev) ? "on" : "off");
158   }
159 }
160
161 static void
162 tty_StartTimer(struct physical *p)
163 {
164   struct ttydevice *dev = device2tty(p->handler);
165
166   timer_Stop(&dev->Timer);
167   dev->Timer.load = SECTICKS;
168   dev->Timer.func = tty_Timeout;
169   dev->Timer.name = "tty CD";
170   dev->Timer.arg = p;
171   log_Printf(LogDEBUG, "%s: Using tty_Timeout [%p]\n",
172              p->link.name, tty_Timeout);
173   timer_Start(&dev->Timer);
174 }
175
176 static int
177 tty_AwaitCarrier(struct physical *p)
178 {
179   struct ttydevice *dev = device2tty(p->handler);
180
181   if (dev->dev.cd.necessity == CD_NOTREQUIRED || physical_IsSync(p))
182     return CARRIER_OK;
183
184   if (dev->mbits == -1) {
185     if (dev->Timer.state == TIMER_STOPPED) {
186       dev->carrier_seconds = 0;
187       tty_StartTimer(p);
188     }
189     return CARRIER_PENDING;                     /* Not yet ! */
190   }
191
192   return Online(dev) ? CARRIER_OK : CARRIER_LOST;
193 }
194
195 static int
196 tty_Raw(struct physical *p)
197 {
198   struct ttydevice *dev = device2tty(p->handler);
199   struct termios ios;
200   int oldflag;
201
202   log_Printf(LogDEBUG, "%s: Entering tty_Raw\n", p->link.name);
203
204   if (p->type != PHYS_DIRECT && p->fd >= 0 && !Online(dev))
205     log_Printf(LogDEBUG, "%s: Raw: descriptor = %d, mbits = %x\n",
206               p->link.name, p->fd, dev->mbits);
207
208   if (!physical_IsSync(p)) {
209     tcgetattr(p->fd, &ios);
210     cfmakeraw(&ios);
211     if (p->cfg.rts_cts)
212       ios.c_cflag |= CLOCAL | CCTS_OFLOW | CRTS_IFLOW;
213     else
214       ios.c_cflag |= CLOCAL;
215
216     if (p->type != PHYS_DEDICATED)
217       ios.c_cflag |= HUPCL;
218
219     tcsetattr(p->fd, TCSANOW, &ios);
220   }
221
222   oldflag = fcntl(p->fd, F_GETFL, 0);
223   if (oldflag < 0)
224     return 0;
225   fcntl(p->fd, F_SETFL, oldflag | O_NONBLOCK);
226
227   return 1;
228 }
229
230 static void
231 tty_Offline(struct physical *p)
232 {
233   struct ttydevice *dev = device2tty(p->handler);
234
235   if (p->fd >= 0) {
236     timer_Stop(&dev->Timer);
237     dev->mbits &= ~TIOCM_DTR;   /* XXX: Hmm, what's this supposed to do ? */
238     if (Online(dev)) {
239       struct termios tio;
240
241       tcgetattr(p->fd, &tio);
242       if (cfsetspeed(&tio, B0) == -1)
243         log_Printf(LogWARN, "%s: Unable to set physical to speed 0\n",
244                    p->link.name);
245       else
246         tcsetattr(p->fd, TCSANOW, &tio);
247     }
248   }
249 }
250
251 static void
252 tty_Cooked(struct physical *p)
253 {
254   struct ttydevice *dev = device2tty(p->handler);
255   int oldflag;
256
257   tty_Offline(p);       /* In case of emergency close()s */
258
259   tcflush(p->fd, TCIOFLUSH);
260
261   if (!physical_IsSync(p))
262     tcsetattr(p->fd, TCSAFLUSH, &dev->ios);
263
264   if ((oldflag = fcntl(p->fd, F_GETFL, 0)) != -1)
265     fcntl(p->fd, F_SETFL, oldflag & ~O_NONBLOCK);
266 }
267
268 static void
269 tty_StopTimer(struct physical *p)
270 {
271   struct ttydevice *dev = device2tty(p->handler);
272
273   timer_Stop(&dev->Timer);
274 }
275
276 static void
277 tty_Free(struct physical *p)
278 {
279   struct ttydevice *dev = device2tty(p->handler);
280
281   tty_Offline(p);       /* In case of emergency close()s */
282   free(dev);
283 }
284
285 static int
286 tty_Speed(struct physical *p)
287 {
288   struct termios ios;
289
290   if (tcgetattr(p->fd, &ios) == -1)
291     return 0;
292
293   return SpeedToInt(cfgetispeed(&ios));
294 }
295
296 static const char *
297 tty_OpenInfo(struct physical *p)
298 {
299   struct ttydevice *dev = device2tty(p->handler);
300   static char buf[13];
301
302   if (Online(dev))
303     strcpy(buf, "with");
304   else
305     strcpy(buf, "no");
306   strcat(buf, " carrier");
307
308   return buf;
309 }
310
311 static void
312 tty_device2iov(struct device *d, struct iovec *iov, int *niov,
313                int maxiov, int *auxfd, int *nauxfd)
314 {
315   struct ttydevice *dev = device2tty(d);
316   int sz = physical_MaxDeviceSize();
317
318   iov[*niov].iov_base = realloc(d, sz);
319   if (iov[*niov].iov_base == NULL) {
320     log_Printf(LogALERT, "Failed to allocate memory: %d\n", sz);
321     AbortProgram(EX_OSERR);
322   }
323   iov[*niov].iov_len = sz;
324   (*niov)++;
325
326   if (dev->Timer.state != TIMER_STOPPED) {
327     timer_Stop(&dev->Timer);
328     dev->Timer.state = TIMER_RUNNING;
329   }
330 }
331
332 static struct device basettydevice = {
333   TTY_DEVICE,
334   "tty",
335   { CD_VARIABLE, DEF_TTYCDDELAY },
336   tty_AwaitCarrier,
337   NULL,
338   tty_Raw,
339   tty_Offline,
340   tty_Cooked,
341   tty_StopTimer,
342   tty_Free,
343   NULL,
344   NULL,
345   tty_device2iov,
346   tty_Speed,
347   tty_OpenInfo
348 };
349
350 struct device *
351 tty_iov2device(int type, struct physical *p, struct iovec *iov, int *niov,
352                int maxiov, int *auxfd, int *nauxfd)
353 {
354   if (type == TTY_DEVICE) {
355     struct ttydevice *dev = (struct ttydevice *)iov[(*niov)++].iov_base;
356
357     dev = realloc(dev, sizeof *dev);    /* Reduce to the correct size */
358     if (dev == NULL) {
359       log_Printf(LogALERT, "Failed to allocate memory: %d\n",
360                  (int)(sizeof *dev));
361       AbortProgram(EX_OSERR);
362     }
363
364     /* Refresh function pointers etc */
365     memcpy(&dev->dev, &basettydevice, sizeof dev->dev);
366
367     physical_SetupStack(p, dev->dev.name, PHYSICAL_NOFORCE);
368     if (dev->Timer.state != TIMER_STOPPED) {
369       dev->Timer.state = TIMER_STOPPED;
370       p->handler = &dev->dev;           /* For the benefit of StartTimer */
371       tty_StartTimer(p);
372     }
373     return &dev->dev;
374   }
375
376   return NULL;
377 }
378
379 struct device *
380 tty_Create(struct physical *p)
381 {
382   struct ttydevice *dev;
383   struct termios ios;
384   int oldflag;
385
386   if (p->fd < 0 || !isatty(p->fd))
387     /* Don't want this */
388     return NULL;
389
390   if (*p->name.full == '\0') {
391     physical_SetDevice(p, ttyname(p->fd));
392     log_Printf(LogDEBUG, "%s: Input is a tty (%s)\n",
393                p->link.name, p->name.full);
394   } else
395     log_Printf(LogDEBUG, "%s: Opened %s\n", p->link.name, p->name.full);
396
397   /* We're gonna return a ttydevice (unless something goes horribly wrong) */
398
399   if ((dev = malloc(sizeof *dev)) == NULL) {
400     /* Complete failure - parent doesn't continue trying to ``create'' */
401     close(p->fd);
402     p->fd = -1;
403     return NULL;
404   }
405
406   memcpy(&dev->dev, &basettydevice, sizeof dev->dev);
407   memset(&dev->Timer, '\0', sizeof dev->Timer);
408   dev->mbits = -1;
409   tcgetattr(p->fd, &ios);
410   dev->ios = ios;
411
412   if (p->cfg.cd.necessity != CD_DEFAULT)
413     /* Any override is ok for the tty device */
414     dev->dev.cd = p->cfg.cd;
415
416   log_Printf(LogDEBUG, "%s: tty_Create: physical (get): fd = %d,"
417              " iflag = %lx, oflag = %lx, cflag = %lx\n", p->link.name, p->fd,
418              (u_long)ios.c_iflag, (u_long)ios.c_oflag, (u_long)ios.c_cflag);
419
420   cfmakeraw(&ios);
421   if (p->cfg.rts_cts)
422     ios.c_cflag |= CLOCAL | CCTS_OFLOW | CRTS_IFLOW;
423   else {
424     ios.c_cflag |= CLOCAL;
425     ios.c_iflag |= IXOFF;
426   }
427   ios.c_iflag |= IXON;
428   if (p->type != PHYS_DEDICATED)
429     ios.c_cflag |= HUPCL;
430
431   if (p->type != PHYS_DIRECT) {
432       /* Change tty speed when we're not in -direct mode */
433       ios.c_cflag &= ~(CSIZE | PARODD | PARENB);
434       ios.c_cflag |= p->cfg.parity;
435       if (cfsetspeed(&ios, IntToSpeed(p->cfg.speed)) == -1)
436         log_Printf(LogWARN, "%s: %s: Unable to set speed to %d\n",
437                   p->link.name, p->name.full, p->cfg.speed);
438   }
439   tcsetattr(p->fd, TCSADRAIN, &ios);
440   log_Printf(LogDEBUG, "%s: physical (put): iflag = %lx, oflag = %lx, "
441             "cflag = %lx\n", p->link.name, (u_long)ios.c_iflag,
442             (u_long)ios.c_oflag, (u_long)ios.c_cflag);
443
444   oldflag = fcntl(p->fd, F_GETFL, 0);
445   if (oldflag < 0) {
446     /* Complete failure - parent doesn't continue trying to ``create'' */
447
448     log_Printf(LogWARN, "%s: Open: Cannot get physical flags: %s\n",
449                p->link.name, strerror(errno));
450     tty_Cooked(p);
451     close(p->fd);
452     p->fd = -1;
453     free(dev);
454     return NULL;
455   } else
456     fcntl(p->fd, F_SETFL, oldflag & ~O_NONBLOCK);
457
458   physical_SetupStack(p, dev->dev.name, PHYSICAL_NOFORCE);
459
460   return &dev->dev;
461 }