2 * Written by Eivind Eklund <eivind@yes.no>
5 * Copyright (C) 1998, Yes Interactive. All rights reserved.
7 * Redistribution and use in any form is permitted. Redistribution in
8 * source form should include the above copyright and this set of
9 * conditions, because large sections american law seems to have been
10 * created by a bunch of jerks on drugs that are now illegal, forcing
11 * me to include this copyright-stuff instead of placing this in the
12 * public domain. The name of of 'Yes Interactive' or 'Eivind Eklund'
13 * may not be used to endorse or promote products derived from this
14 * software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 * $FreeBSD: src/usr.sbin/ppp/physical.c,v 1.34.2.8 2002/09/01 02:12:29 brian Exp $
20 * $DragonFly: src/usr.sbin/ppp/physical.c,v 1.3 2005/11/24 23:42:54 swildner Exp $
24 #include <sys/param.h>
25 #include <netinet/in.h>
26 #include <netinet/in_systm.h>
27 #include <netinet/ip.h>
28 #include <sys/socket.h>
38 #include <sys/tty.h> /* TIOCOUTQ */
43 #if defined(__OpenBSD__) || defined(__NetBSD__)
44 #include <sys/ioctl.h>
67 #include "throughput.h"
71 #include "slcompress.h"
75 #include "descriptor.h"
101 #include "netgraph.h"
108 #define PPPOTCPLINE "ppp"
110 static int physical_DescriptorWrite(struct fdescriptor
*, struct bundle
*,
114 physical_DeviceSize(void)
116 return sizeof(struct device
);
120 struct device
*(*create
)(struct physical
*);
121 struct device
*(*iov2device
)(int, struct physical
*, struct iovec
*,
122 int *, int, int *, int *);
123 int (*DeviceSize
)(void);
127 * This must come before ``tty'' so that the probe routine is
128 * able to identify it as a more specific type of terminal device.
130 { i4b_Create
, i4b_iov2device
, i4b_DeviceSize
},
132 { tty_Create
, tty_iov2device
, tty_DeviceSize
},
135 * This must come before ``udp'' so that the probe routine is
136 * able to identify it as a more specific type of SOCK_DGRAM.
138 { ether_Create
, ether_iov2device
, ether_DeviceSize
},
139 #ifdef EXPERIMENTAL_NETGRAPH
140 { ng_Create
, ng_iov2device
, ng_DeviceSize
},
144 /* Ditto for ATM devices */
145 { atm_Create
, atm_iov2device
, atm_DeviceSize
},
147 { tcp_Create
, tcp_iov2device
, tcp_DeviceSize
},
148 { udp_Create
, udp_iov2device
, udp_DeviceSize
},
149 { exec_Create
, exec_iov2device
, exec_DeviceSize
}
152 #define NDEVICES (sizeof devices / sizeof devices[0])
155 physical_UpdateSet(struct fdescriptor
*d
, fd_set
*r
, fd_set
*w
, fd_set
*e
,
158 return physical_doUpdateSet(d
, r
, w
, e
, n
, 0);
162 physical_SetDescriptor(struct physical
*p
)
164 p
->desc
.type
= PHYSICAL_DESCRIPTOR
;
165 p
->desc
.UpdateSet
= physical_UpdateSet
;
166 p
->desc
.IsSet
= physical_IsSet
;
167 p
->desc
.Read
= physical_DescriptorRead
;
168 p
->desc
.Write
= physical_DescriptorWrite
;
172 physical_Create(struct datalink
*dl
, int type
)
176 p
= (struct physical
*)malloc(sizeof(struct physical
));
180 p
->link
.type
= PHYSICAL_LINK
;
181 p
->link
.name
= dl
->name
;
182 p
->link
.len
= sizeof *p
;
184 /* The sample period is fixed - see physical2iov() & iov2physical() */
185 throughput_init(&p
->link
.stats
.total
, SAMPLE_PERIOD
);
186 p
->link
.stats
.parent
= dl
->bundle
->ncp
.mp
.active
?
187 &dl
->bundle
->ncp
.mp
.link
.stats
.total
: NULL
;
188 p
->link
.stats
.gather
= 1;
190 memset(p
->link
.Queue
, '\0', sizeof p
->link
.Queue
);
191 memset(p
->link
.proto_in
, '\0', sizeof p
->link
.proto_in
);
192 memset(p
->link
.proto_out
, '\0', sizeof p
->link
.proto_out
);
193 link_EmptyStack(&p
->link
);
196 physical_SetDescriptor(p
);
199 hdlc_Init(&p
->hdlc
, &p
->link
.lcp
);
200 async_Init(&p
->async
);
204 p
->connect_count
= 0;
207 *p
->name
.full
= '\0';
208 p
->name
.base
= p
->name
.full
;
211 p
->session_owner
= (pid_t
)-1;
213 p
->cfg
.rts_cts
= MODEM_CTSRTS
;
214 p
->cfg
.speed
= MODEM_SPEED
;
216 memcpy(p
->cfg
.devlist
, MODEM_LIST
, sizeof MODEM_LIST
);
217 p
->cfg
.ndev
= NMODEMS
;
218 p
->cfg
.cd
.necessity
= CD_DEFAULT
;
219 p
->cfg
.cd
.delay
= 0; /* reconfigured or device specific default */
221 lcp_Init(&p
->link
.lcp
, dl
->bundle
, &p
->link
, &dl
->fsmp
);
222 ccp_Init(&p
->link
.ccp
, dl
->bundle
, &p
->link
, &dl
->fsmp
);
227 static const struct parity
{
232 { "even", "P_EVEN", CS7
| PARENB
},
233 { "odd", "P_ODD", CS7
| PARENB
| PARODD
},
234 { "none", "P_ZERO", CS8
},
239 GetParityValue(const char *str
)
241 const struct parity
*pp
;
243 for (pp
= validparity
; pp
->name
; pp
++) {
244 if (strcasecmp(pp
->name
, str
) == 0 ||
245 strcasecmp(pp
->name1
, str
) == 0) {
253 physical_SetParity(struct physical
*p
, const char *str
)
255 struct termios rstio
;
258 val
= GetParityValue(str
);
262 tcgetattr(p
->fd
, &rstio
);
263 rstio
.c_cflag
&= ~(CSIZE
| PARODD
| PARENB
);
264 rstio
.c_cflag
|= val
;
265 tcsetattr(p
->fd
, TCSADRAIN
, &rstio
);
269 log_Printf(LogWARN
, "%s: %s: Invalid parity\n", p
->link
.name
, str
);
274 physical_GetSpeed(struct physical
*p
)
276 if (p
->handler
&& p
->handler
->speed
)
277 return (*p
->handler
->speed
)(p
);
283 physical_SetSpeed(struct physical
*p
, int speed
)
285 if (IntToSpeed(speed
) != B0
) {
286 p
->cfg
.speed
= speed
;
294 physical_Raw(struct physical
*p
)
296 if (p
->handler
&& p
->handler
->raw
)
297 return (*p
->handler
->raw
)(p
);
303 physical_Offline(struct physical
*p
)
305 if (p
->handler
&& p
->handler
->offline
)
306 (*p
->handler
->offline
)(p
);
307 log_Printf(LogPHASE
, "%s: Disconnected!\n", p
->link
.name
);
311 physical_Lock(struct physical
*p
)
315 if (*p
->name
.full
== '/' && p
->type
!= PHYS_DIRECT
&&
316 (res
= ID0uu_lock(p
->name
.base
)) != UU_LOCK_OK
) {
317 if (res
== UU_LOCK_INUSE
)
318 log_Printf(LogPHASE
, "%s: %s is in use\n", p
->link
.name
, p
->name
.full
);
320 log_Printf(LogPHASE
, "%s: %s is in use: uu_lock: %s\n",
321 p
->link
.name
, p
->name
.full
, uu_lockerr(res
));
329 physical_Unlock(struct physical
*p
)
331 if (*p
->name
.full
== '/' && p
->type
!= PHYS_DIRECT
&&
332 ID0uu_unlock(p
->name
.base
) == -1)
333 log_Printf(LogALERT
, "%s: Can't uu_unlock %s\n", p
->link
.name
,
338 physical_Close(struct physical
*p
)
346 log_Printf(LogDEBUG
, "%s: Close\n", p
->link
.name
);
348 if (p
->handler
&& p
->handler
->cooked
)
349 (*p
->handler
->cooked
)(p
);
351 physical_StopDeviceTimer(p
);
353 if (p
->handler
&& (p
->handler
->type
== TCP_DEVICE
||
354 p
->handler
->type
== UDP_DEVICE
))
355 /* Careful - we logged in on line ``ppp'' with IP as our host */
356 ID0logout(PPPOTCPLINE
, 1);
358 ID0logout(p
->name
.base
, 0);
361 newsid
= tcgetpgrp(p
->fd
) == getpgrp();
364 log_SetTtyCommandMode(p
->dl
);
366 throughput_stop(&p
->link
.stats
.total
);
367 throughput_log(&p
->link
.stats
.total
, LogPHASE
, p
->link
.name
);
369 if (p
->session_owner
!= (pid_t
)-1) {
370 log_Printf(LogPHASE
, "%s: HUPing %ld\n", p
->link
.name
,
371 (long)p
->session_owner
);
372 ID0kill(p
->session_owner
, SIGHUP
);
373 p
->session_owner
= (pid_t
)-1;
377 bundle_setsid(p
->dl
->bundle
, 0);
379 if (*p
->name
.full
== '/') {
380 snprintf(fn
, sizeof fn
, "%s%s.if", _PATH_VARRUN
, p
->name
.base
);
381 if (ID0unlink(fn
) == -1)
382 log_Printf(LogALERT
, "%s: Can't remove %s: %s\n",
383 p
->link
.name
, fn
, strerror(errno
));
386 if (p
->handler
&& p
->handler
->destroy
)
387 (*p
->handler
->destroy
)(p
);
389 p
->name
.base
= p
->name
.full
;
390 *p
->name
.full
= '\0';
394 physical_Destroy(struct physical
*p
)
397 throughput_destroy(&p
->link
.stats
.total
);
402 physical_DescriptorWrite(struct fdescriptor
*d
, struct bundle
*bundle
,
405 struct physical
*p
= descriptor2physical(d
);
409 p
->out
= link_Dequeue(&p
->link
);
412 nw
= physical_Write(p
, MBUF_CTOP(p
->out
), p
->out
->m_len
);
413 log_Printf(LogDEBUG
, "%s: DescriptorWrite: wrote %d(%lu) to %d\n",
414 p
->link
.name
, nw
, (unsigned long)p
->out
->m_len
, p
->fd
);
417 p
->out
->m_offset
+= nw
;
418 if (p
->out
->m_len
== 0)
419 p
->out
= m_free(p
->out
);
424 else if (errno
!= ENOBUFS
) {
425 log_Printf(LogPHASE
, "%s: write (%d): %s\n", p
->link
.name
,
426 p
->fd
, strerror(errno
));
427 datalink_Down(p
->dl
, CLOSE_NORMAL
);
430 /* else we shouldn't really have been called ! select() is broken ! */
437 physical_ShowStatus(struct cmdargs
const *arg
)
439 struct physical
*p
= arg
->cx
->physical
;
444 prompt_Printf(arg
->prompt
, "Name: %s\n", p
->link
.name
);
445 prompt_Printf(arg
->prompt
, " State: ");
447 prompt_Printf(arg
->prompt
, "closed\n");
449 slot
= physical_Slot(p
);
450 if (p
->handler
&& p
->handler
->openinfo
) {
452 prompt_Printf(arg
->prompt
, "open (%s)\n", (*p
->handler
->openinfo
)(p
));
454 prompt_Printf(arg
->prompt
, "open (%s, port %d)\n",
455 (*p
->handler
->openinfo
)(p
), slot
);
456 } else if (slot
== -1)
457 prompt_Printf(arg
->prompt
, "open\n");
459 prompt_Printf(arg
->prompt
, "open (port %d)\n", slot
);
462 prompt_Printf(arg
->prompt
, " Device: %s",
463 *p
->name
.full
? p
->name
.full
:
464 p
->type
== PHYS_DIRECT
? "unknown" : "N/A");
465 if (p
->session_owner
!= (pid_t
)-1)
466 prompt_Printf(arg
->prompt
, " (session owner: %ld)", (long)p
->session_owner
);
468 prompt_Printf(arg
->prompt
, "\n Link Type: %s\n", mode2Nam(p
->type
));
469 prompt_Printf(arg
->prompt
, " Connect Count: %d\n", p
->connect_count
);
471 if (p
->fd
>= 0 && ioctl(p
->fd
, TIOCOUTQ
, &n
) >= 0)
472 prompt_Printf(arg
->prompt
, " Physical outq: %d\n", n
);
475 prompt_Printf(arg
->prompt
, " Queued Packets: %lu\n",
476 (u_long
)link_QueueLen(&p
->link
));
477 prompt_Printf(arg
->prompt
, " Phone Number: %s\n", arg
->cx
->phone
.chosen
);
479 prompt_Printf(arg
->prompt
, "\nDefaults:\n");
481 prompt_Printf(arg
->prompt
, " Device List: ");
482 dev
= p
->cfg
.devlist
;
483 for (n
= 0; n
< p
->cfg
.ndev
; n
++) {
485 prompt_Printf(arg
->prompt
, ", ");
486 prompt_Printf(arg
->prompt
, "\"%s\"", dev
);
487 dev
+= strlen(dev
) + 1;
490 prompt_Printf(arg
->prompt
, "\n Characteristics: ");
491 if (physical_IsSync(arg
->cx
->physical
))
492 prompt_Printf(arg
->prompt
, "sync");
494 prompt_Printf(arg
->prompt
, "%dbps", p
->cfg
.speed
);
496 switch (p
->cfg
.parity
& CSIZE
) {
498 prompt_Printf(arg
->prompt
, ", cs7");
501 prompt_Printf(arg
->prompt
, ", cs8");
504 if (p
->cfg
.parity
& PARENB
) {
505 if (p
->cfg
.parity
& PARODD
)
506 prompt_Printf(arg
->prompt
, ", odd parity");
508 prompt_Printf(arg
->prompt
, ", even parity");
510 prompt_Printf(arg
->prompt
, ", no parity");
512 prompt_Printf(arg
->prompt
, ", CTS/RTS %s\n", (p
->cfg
.rts_cts
? "on" : "off"));
514 prompt_Printf(arg
->prompt
, " CD check delay: ");
515 cd
= p
->handler
? &p
->handler
->cd
: &p
->cfg
.cd
;
516 if (cd
->necessity
== CD_NOTREQUIRED
)
517 prompt_Printf(arg
->prompt
, "no cd");
518 else if (p
->cfg
.cd
.necessity
== CD_DEFAULT
) {
519 prompt_Printf(arg
->prompt
, "device specific");
521 prompt_Printf(arg
->prompt
, "%d second%s", p
->cfg
.cd
.delay
,
522 p
->cfg
.cd
.delay
== 1 ? "" : "s");
523 if (p
->cfg
.cd
.necessity
== CD_REQUIRED
)
524 prompt_Printf(arg
->prompt
, " (required!)");
526 prompt_Printf(arg
->prompt
, "\n\n");
528 throughput_disp(&p
->link
.stats
.total
, arg
->prompt
);
534 physical_DescriptorRead(struct fdescriptor
*d
, struct bundle
*bundle
,
537 struct physical
*p
= descriptor2physical(d
);
541 rbuff
= p
->input
.buf
+ p
->input
.sz
;
543 /* something to read */
544 n
= physical_Read(p
, rbuff
, sizeof p
->input
.buf
- p
->input
.sz
);
545 log_Printf(LogDEBUG
, "%s: DescriptorRead: read %d/%d from %d\n",
546 p
->link
.name
, n
, (int)(sizeof p
->input
.buf
- p
->input
.sz
), p
->fd
);
549 log_Printf(LogPHASE
, "%s: read (%d): %s\n", p
->link
.name
, p
->fd
,
552 log_Printf(LogPHASE
, "%s: read (%d): Got zero bytes\n",
553 p
->link
.name
, p
->fd
);
554 datalink_Down(p
->dl
, CLOSE_NORMAL
);
558 rbuff
-= p
->input
.sz
;
561 if (p
->link
.lcp
.fsm
.state
<= ST_CLOSED
) {
562 if (p
->type
!= PHYS_DEDICATED
) {
563 found
= hdlc_Detect((u_char
const **)&rbuff
, n
, physical_IsSync(p
));
564 if (rbuff
!= p
->input
.buf
)
565 log_WritePrompts(p
->dl
, "%.*s", (int)(rbuff
- p
->input
.buf
),
567 p
->input
.sz
= n
- (rbuff
- p
->input
.buf
);
570 /* LCP packet is detected. Turn ourselves into packet mode */
571 log_Printf(LogPHASE
, "%s: PPP packet detected, coming up\n",
573 log_SetTtyCommandMode(p
->dl
);
574 datalink_Up(p
->dl
, 0, 1);
575 link_PullPacket(&p
->link
, rbuff
, p
->input
.sz
, bundle
);
578 bcopy(rbuff
, p
->input
.buf
, p
->input
.sz
);
580 /* In -dedicated mode, we just discard input until LCP is started */
583 link_PullPacket(&p
->link
, rbuff
, n
, bundle
);
587 iov2physical(struct datalink
*dl
, struct iovec
*iov
, int *niov
, int maxiov
,
588 int fd
, int *auxfd
, int *nauxfd
)
593 p
= (struct physical
*)iov
[(*niov
)++].iov_base
;
594 p
->link
.name
= dl
->name
;
595 memset(p
->link
.Queue
, '\0', sizeof p
->link
.Queue
);
597 p
->desc
.UpdateSet
= physical_UpdateSet
;
598 p
->desc
.IsSet
= physical_IsSet
;
599 p
->desc
.Read
= physical_DescriptorRead
;
600 p
->desc
.Write
= physical_DescriptorWrite
;
601 p
->type
= PHYS_DIRECT
;
603 len
= strlen(_PATH_DEV
);
605 p
->connect_count
= 1;
607 physical_SetDevice(p
, p
->name
.full
);
609 p
->link
.lcp
.fsm
.bundle
= dl
->bundle
;
610 p
->link
.lcp
.fsm
.link
= &p
->link
;
611 memset(&p
->link
.lcp
.fsm
.FsmTimer
, '\0', sizeof p
->link
.lcp
.fsm
.FsmTimer
);
612 memset(&p
->link
.lcp
.fsm
.OpenTimer
, '\0', sizeof p
->link
.lcp
.fsm
.OpenTimer
);
613 memset(&p
->link
.lcp
.fsm
.StoppedTimer
, '\0',
614 sizeof p
->link
.lcp
.fsm
.StoppedTimer
);
615 p
->link
.lcp
.fsm
.parent
= &dl
->fsmp
;
616 lcp_SetupCallbacks(&p
->link
.lcp
);
618 p
->link
.ccp
.fsm
.bundle
= dl
->bundle
;
619 p
->link
.ccp
.fsm
.link
= &p
->link
;
620 /* Our in.state & out.state are NULL (no link-level ccp yet) */
621 memset(&p
->link
.ccp
.fsm
.FsmTimer
, '\0', sizeof p
->link
.ccp
.fsm
.FsmTimer
);
622 memset(&p
->link
.ccp
.fsm
.OpenTimer
, '\0', sizeof p
->link
.ccp
.fsm
.OpenTimer
);
623 memset(&p
->link
.ccp
.fsm
.StoppedTimer
, '\0',
624 sizeof p
->link
.ccp
.fsm
.StoppedTimer
);
625 p
->link
.ccp
.fsm
.parent
= &dl
->fsmp
;
626 ccp_SetupCallbacks(&p
->link
.ccp
);
628 p
->hdlc
.lqm
.owner
= &p
->link
.lcp
;
629 p
->hdlc
.ReportTimer
.state
= TIMER_STOPPED
;
630 p
->hdlc
.lqm
.timer
.state
= TIMER_STOPPED
;
633 p
->link
.stats
.total
.in
.SampleOctets
= (long long *)iov
[(*niov
)++].iov_base
;
634 p
->link
.stats
.total
.out
.SampleOctets
= (long long *)iov
[(*niov
)++].iov_base
;
635 p
->link
.stats
.parent
= dl
->bundle
->ncp
.mp
.active
?
636 &dl
->bundle
->ncp
.mp
.link
.stats
.total
: NULL
;
637 p
->link
.stats
.gather
= 1;
639 type
= (long)p
->handler
;
641 for (h
= 0; h
< NDEVICES
&& p
->handler
== NULL
; h
++)
642 p
->handler
= (*devices
[h
].iov2device
)(type
, p
, iov
, niov
, maxiov
,
644 if (p
->handler
== NULL
) {
645 log_Printf(LogPHASE
, "%s: Unknown link type\n", p
->link
.name
);
646 free(iov
[(*niov
)++].iov_base
);
647 physical_SetupStack(p
, "unknown", PHYSICAL_NOFORCE
);
649 log_Printf(LogPHASE
, "%s: Device %s, link type is %s\n",
650 p
->link
.name
, p
->name
.full
, p
->handler
->name
);
652 if (p
->hdlc
.lqm
.method
&& p
->hdlc
.lqm
.timer
.load
)
653 lqr_reStart(&p
->link
.lcp
);
654 hdlc_StartTimer(&p
->hdlc
);
656 throughput_restart(&p
->link
.stats
.total
, "physical throughput",
657 Enabled(dl
->bundle
, OPT_THROUGHPUT
));
663 physical_MaxDeviceSize(void)
667 biggest
= sizeof(struct device
);
668 for (sz
= n
= 0; n
< NDEVICES
; n
++)
669 if (devices
[n
].DeviceSize
) {
670 sz
= (*devices
[n
].DeviceSize
)();
679 physical2iov(struct physical
*p
, struct iovec
*iov
, int *niov
, int maxiov
,
680 int *auxfd
, int *nauxfd
)
687 hdlc_StopTimer(&p
->hdlc
);
689 timer_Stop(&p
->link
.lcp
.fsm
.FsmTimer
);
690 timer_Stop(&p
->link
.ccp
.fsm
.FsmTimer
);
691 timer_Stop(&p
->link
.lcp
.fsm
.OpenTimer
);
692 timer_Stop(&p
->link
.ccp
.fsm
.OpenTimer
);
693 timer_Stop(&p
->link
.lcp
.fsm
.StoppedTimer
);
694 timer_Stop(&p
->link
.ccp
.fsm
.StoppedTimer
);
697 p
->handler
= (struct device
*)(long)p
->handler
->type
;
700 if (Enabled(p
->dl
->bundle
, OPT_KEEPSESSION
) ||
701 tcgetpgrp(p
->fd
) == getpgrp())
702 p
->session_owner
= getpid(); /* So I'll eventually get HUP'd */
704 p
->session_owner
= (pid_t
)-1;
705 timer_Stop(&p
->link
.stats
.total
.Timer
);
708 if (*niov
+ 2 >= maxiov
) {
709 log_Printf(LogERROR
, "physical2iov: No room for physical + throughput"
716 iov
[*niov
].iov_base
= (void *)p
;
717 iov
[*niov
].iov_len
= sizeof *p
;
720 iov
[*niov
].iov_base
= p
? (void *)p
->link
.stats
.total
.in
.SampleOctets
: NULL
;
721 iov
[*niov
].iov_len
= SAMPLE_PERIOD
* sizeof(long long);
723 iov
[*niov
].iov_base
= p
? (void *)p
->link
.stats
.total
.out
.SampleOctets
: NULL
;
724 iov
[*niov
].iov_len
= SAMPLE_PERIOD
* sizeof(long long);
727 sz
= physical_MaxDeviceSize();
729 if (h
&& h
->device2iov
)
730 (*h
->device2iov
)(h
, iov
, niov
, maxiov
, auxfd
, nauxfd
);
732 iov
[*niov
].iov_base
= malloc(sz
);
734 memcpy(iov
[*niov
].iov_base
, h
, sizeof *h
);
735 iov
[*niov
].iov_len
= sz
;
739 iov
[*niov
].iov_base
= NULL
;
740 iov
[*niov
].iov_len
= sz
;
744 return p
? p
->fd
: 0;
748 physical_LockedDevice(struct physical
*p
)
750 if (p
->fd
>= 0 && *p
->name
.full
== '/' && p
->type
!= PHYS_DIRECT
)
757 physical_ChangedPid(struct physical
*p
, pid_t newpid
)
759 if (physical_LockedDevice(p
)) {
762 if ((res
= ID0uu_lock_txfr(p
->name
.base
, newpid
)) != UU_LOCK_OK
)
763 log_Printf(LogPHASE
, "uu_lock_txfr: %s\n", uu_lockerr(res
));
768 physical_IsSync(struct physical
*p
)
770 return p
->cfg
.speed
== 0;
774 physical_DeviceMTU(struct physical
*p
)
776 return p
->handler
? p
->handler
->mtu
: 0;
780 physical_GetDevice(struct physical
*p
)
786 physical_SetDeviceList(struct physical
*p
, int argc
, const char *const *argv
)
790 p
->cfg
.devlist
[sizeof p
->cfg
.devlist
- 1] = '\0';
791 for (f
= 0, pos
= 0; f
< argc
&& pos
< sizeof p
->cfg
.devlist
- 1; f
++) {
793 p
->cfg
.devlist
[pos
++] = '\0';
794 strncpy(p
->cfg
.devlist
+ pos
, argv
[f
], sizeof p
->cfg
.devlist
- pos
- 1);
795 pos
+= strlen(p
->cfg
.devlist
+ pos
);
801 physical_SetSync(struct physical
*p
)
807 physical_SetRtsCts(struct physical
*p
, int enable
)
809 p
->cfg
.rts_cts
= enable
? 1 : 0;
814 physical_Read(struct physical
*p
, void *buf
, size_t nbytes
)
818 if (p
->handler
&& p
->handler
->read
)
819 ret
= (*p
->handler
->read
)(p
, buf
, nbytes
);
821 ret
= read(p
->fd
, buf
, nbytes
);
823 log_DumpBuff(LogPHYSICAL
, "read", buf
, ret
);
829 physical_Write(struct physical
*p
, const void *buf
, size_t nbytes
)
831 log_DumpBuff(LogPHYSICAL
, "write", buf
, nbytes
);
833 if (p
->handler
&& p
->handler
->write
)
834 return (*p
->handler
->write
)(p
, buf
, nbytes
);
836 return write(p
->fd
, buf
, nbytes
);
840 physical_doUpdateSet(struct fdescriptor
*d
, fd_set
*r
, fd_set
*w
, fd_set
*e
,
843 struct physical
*p
= descriptor2physical(d
);
850 log_Printf(LogTIMER
, "%s: fdset(r) %d\n", p
->link
.name
, p
->fd
);
855 log_Printf(LogTIMER
, "%s: fdset(e) %d\n", p
->link
.name
, p
->fd
);
858 if (w
&& (force
|| link_QueueLen(&p
->link
) || p
->out
)) {
860 log_Printf(LogTIMER
, "%s: fdset(w) %d\n", p
->link
.name
, p
->fd
);
863 if (sets
&& *n
< p
->fd
+ 1)
871 physical_RemoveFromSet(struct physical
*p
, fd_set
*r
, fd_set
*w
, fd_set
*e
)
873 if (p
->handler
&& p
->handler
->removefromset
)
874 return (*p
->handler
->removefromset
)(p
, r
, w
, e
);
880 if (r
&& FD_ISSET(p
->fd
, r
)) {
882 log_Printf(LogTIMER
, "%s: fdunset(r) %d\n", p
->link
.name
, p
->fd
);
885 if (e
&& FD_ISSET(p
->fd
, e
)) {
887 log_Printf(LogTIMER
, "%s: fdunset(e) %d\n", p
->link
.name
, p
->fd
);
890 if (w
&& FD_ISSET(p
->fd
, w
)) {
892 log_Printf(LogTIMER
, "%s: fdunset(w) %d\n", p
->link
.name
, p
->fd
);
902 physical_IsSet(struct fdescriptor
*d
, const fd_set
*fdset
)
904 struct physical
*p
= descriptor2physical(d
);
905 return p
->fd
>= 0 && FD_ISSET(p
->fd
, fdset
);
909 physical_Login(struct physical
*p
, const char *name
)
911 if (p
->type
== PHYS_DIRECT
&& *p
->name
.base
&& !p
->Utmp
) {
916 memset(&ut
, 0, sizeof ut
);
918 strncpy(ut
.ut_name
, name
, sizeof ut
.ut_name
);
919 if (p
->handler
&& (p
->handler
->type
== TCP_DEVICE
||
920 p
->handler
->type
== UDP_DEVICE
)) {
921 strncpy(ut
.ut_line
, PPPOTCPLINE
, sizeof ut
.ut_line
);
922 strncpy(ut
.ut_host
, p
->name
.base
, sizeof ut
.ut_host
);
923 colon
= memchr(ut
.ut_host
, ':', sizeof ut
.ut_host
);
927 strncpy(ut
.ut_line
, p
->name
.base
, sizeof ut
.ut_line
);
928 if ((connstr
= getenv("CONNECT")))
929 /* mgetty sets this to the connection speed */
930 strncpy(ut
.ut_host
, connstr
, sizeof ut
.ut_host
);
932 p
->Utmp
= ut
.ut_time
;
937 physical_SetMode(struct physical
*p
, int mode
)
939 if ((p
->type
& (PHYS_DIRECT
|PHYS_DEDICATED
) ||
940 mode
& (PHYS_DIRECT
|PHYS_DEDICATED
)) &&
941 (!(p
->type
& PHYS_DIRECT
) || !(mode
& PHYS_BACKGROUND
))) {
942 /* Note: The -direct -> -background is for callback ! */
943 log_Printf(LogWARN
, "%s: Cannot change mode %s to %s\n", p
->link
.name
,
944 mode2Nam(p
->type
), mode2Nam(mode
));
952 physical_DeleteQueue(struct physical
*p
)
958 link_DeleteQueue(&p
->link
);
962 physical_SetDevice(struct physical
*p
, const char *name
)
964 int len
= strlen(_PATH_DEV
);
966 if (name
!= p
->name
.full
) {
967 strncpy(p
->name
.full
, name
, sizeof p
->name
.full
- 1);
968 p
->name
.full
[sizeof p
->name
.full
- 1] = '\0';
970 p
->name
.base
= *p
->name
.full
== '!' ? p
->name
.full
+ 1 :
971 strncmp(p
->name
.full
, _PATH_DEV
, len
) ?
972 p
->name
.full
: p
->name
.full
+ len
;
976 physical_Found(struct physical
*p
)
981 if (*p
->name
.full
== '/') {
982 snprintf(fn
, sizeof fn
, "%s%s.if", _PATH_VARRUN
, p
->name
.base
);
983 lockfile
= ID0fopen(fn
, "w");
984 if (lockfile
!= NULL
) {
985 fprintf(lockfile
, "%s%d\n", TUN_NAME
, p
->dl
->bundle
->unit
);
988 log_Printf(LogALERT
, "%s: Can't create %s: %s\n",
989 p
->link
.name
, fn
, strerror(errno
));
992 throughput_start(&p
->link
.stats
.total
, "physical throughput",
993 Enabled(p
->dl
->bundle
, OPT_THROUGHPUT
));
997 log_Printf(LogPHASE
, "%s: Connected!\n", p
->link
.name
);
1001 physical_Open(struct physical
*p
, struct bundle
*bundle
)
1003 int devno
, h
, wasfd
, err
;
1007 log_Printf(LogDEBUG
, "%s: Open: Modem is already open!\n", p
->link
.name
);
1008 /* We're going back into "term" mode */
1009 else if (p
->type
== PHYS_DIRECT
) {
1010 physical_SetDevice(p
, "");
1011 p
->fd
= STDIN_FILENO
;
1012 for (h
= 0; h
< NDEVICES
&& p
->handler
== NULL
&& p
->fd
>= 0; h
++)
1013 p
->handler
= (*devices
[h
].create
)(p
);
1015 if (p
->handler
== NULL
) {
1016 physical_SetupStack(p
, "unknown", PHYSICAL_NOFORCE
);
1017 log_Printf(LogDEBUG
, "%s: stdin is unidentified\n", p
->link
.name
);
1022 dev
= p
->cfg
.devlist
;
1024 while (devno
< p
->cfg
.ndev
&& p
->fd
< 0) {
1025 physical_SetDevice(p
, dev
);
1026 if (physical_Lock(p
)) {
1029 if (*p
->name
.full
== '/') {
1030 p
->fd
= ID0open(p
->name
.full
, O_RDWR
| O_NONBLOCK
);
1036 for (h
= 0; h
< NDEVICES
&& p
->handler
== NULL
; h
++)
1037 if ((p
->handler
= (*devices
[h
].create
)(p
)) == NULL
&& wasfd
!= p
->fd
)
1041 if (h
== NDEVICES
) {
1043 log_Printf(LogWARN
, "%s: %s: %s\n", p
->link
.name
, p
->name
.full
,
1046 log_Printf(LogWARN
, "%s: Device (%s) must begin with a '/',"
1047 " a '!' or contain at least one ':'\n", p
->link
.name
,
1054 dev
+= strlen(dev
) + 1;
1063 physical_SetupStack(struct physical
*p
, const char *who
, int how
)
1065 link_EmptyStack(&p
->link
);
1066 if (how
== PHYSICAL_FORCE_SYNC
|| how
== PHYSICAL_FORCE_SYNCNOACF
||
1067 (how
== PHYSICAL_NOFORCE
&& physical_IsSync(p
)))
1068 link_Stack(&p
->link
, &synclayer
);
1070 link_Stack(&p
->link
, &asynclayer
);
1071 link_Stack(&p
->link
, &hdlclayer
);
1073 if (how
!= PHYSICAL_FORCE_SYNCNOACF
)
1074 link_Stack(&p
->link
, &acflayer
);
1075 link_Stack(&p
->link
, &protolayer
);
1076 link_Stack(&p
->link
, &lqrlayer
);
1077 link_Stack(&p
->link
, &ccplayer
);
1078 link_Stack(&p
->link
, &vjlayer
);
1079 link_Stack(&p
->link
, &tcpmsslayer
);
1081 link_Stack(&p
->link
, &natlayer
);
1083 if (how
== PHYSICAL_FORCE_ASYNC
&& physical_IsSync(p
)) {
1084 log_Printf(LogWARN
, "Sync device setting ignored for ``%s'' device\n", who
);
1085 p
->cfg
.speed
= MODEM_SPEED
;
1086 } else if (how
== PHYSICAL_FORCE_SYNC
&& !physical_IsSync(p
)) {
1087 log_Printf(LogWARN
, "Async device setting ignored for ``%s'' device\n",
1089 physical_SetSync(p
);
1094 physical_StopDeviceTimer(struct physical
*p
)
1096 if (p
->handler
&& p
->handler
->stoptimer
)
1097 (*p
->handler
->stoptimer
)(p
);
1101 physical_AwaitCarrier(struct physical
*p
)
1103 if (p
->handler
&& p
->handler
->awaitcarrier
)
1104 return (*p
->handler
->awaitcarrier
)(p
);
1111 physical_SetAsyncParams(struct physical
*p
, u_int32_t mymap
, u_int32_t hismap
)
1113 if (p
->handler
&& p
->handler
->setasyncparams
)
1114 return (*p
->handler
->setasyncparams
)(p
, mymap
, hismap
);
1116 async_SetLinkParams(&p
->async
, mymap
, hismap
);
1120 physical_Slot(struct physical
*p
)
1122 if (p
->handler
&& p
->handler
->slot
)
1123 return (*p
->handler
->slot
)(p
);