slattach.c revision 1.27
11.27Sagc/* $NetBSD: slattach.c,v 1.27 2003/08/07 10:04:40 agc Exp $ */ 21.15Scgd 31.1Scgd/* 41.12Smycroft * Copyright (c) 1988, 1993 51.12Smycroft * The Regents of the University of California. All rights reserved. 61.1Scgd * 71.1Scgd * This code is derived from software contributed to Berkeley by 81.1Scgd * Rick Adams. 91.1Scgd * 101.1Scgd * Redistribution and use in source and binary forms, with or without 111.1Scgd * modification, are permitted provided that the following conditions 121.1Scgd * are met: 131.1Scgd * 1. Redistributions of source code must retain the above copyright 141.1Scgd * notice, this list of conditions and the following disclaimer. 151.1Scgd * 2. Redistributions in binary form must reproduce the above copyright 161.1Scgd * notice, this list of conditions and the following disclaimer in the 171.1Scgd * documentation and/or other materials provided with the distribution. 181.27Sagc * 3. Neither the name of the University nor the names of its contributors 191.1Scgd * may be used to endorse or promote products derived from this software 201.1Scgd * without specific prior written permission. 211.1Scgd * 221.1Scgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 231.1Scgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 241.1Scgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 251.1Scgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 261.1Scgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 271.1Scgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 281.1Scgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 291.1Scgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 301.1Scgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 311.1Scgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 321.1Scgd * SUCH DAMAGE. 331.1Scgd */ 341.1Scgd 351.18Slukem#include <sys/cdefs.h> 361.1Scgd#ifndef lint 371.18Slukem__COPYRIGHT("@(#) Copyright (c) 1988, 1993\n\ 381.18Slukem The Regents of the University of California. All rights reserved.\n"); 391.1Scgd#endif /* not lint */ 401.1Scgd 411.1Scgd#ifndef lint 421.15Scgd#if 0 431.15Scgdstatic char sccsid[] = "@(#)slattach.c 8.2 (Berkeley) 1/7/94"; 441.15Scgd#else 451.27Sagc__RCSID("$NetBSD: slattach.c,v 1.27 2003/08/07 10:04:40 agc Exp $"); 461.15Scgd#endif 471.1Scgd#endif /* not lint */ 481.1Scgd 491.1Scgd#include <sys/param.h> 501.12Smycroft#include <sys/socket.h> 511.14Scgd#include <sys/types.h> 521.14Scgd#include <sys/ioctl.h> 531.12Smycroft 541.12Smycroft#include <net/if.h> 551.12Smycroft#include <netinet/in.h> 561.12Smycroft 571.12Smycroft#include <err.h> 581.12Smycroft#include <fcntl.h> 591.1Scgd#include <netdb.h> 601.12Smycroft#include <paths.h> 611.14Scgd#include <signal.h> 621.1Scgd#include <stdio.h> 631.12Smycroft#include <stdlib.h> 641.13Scgd#include <string.h> 651.12Smycroft#include <termios.h> 661.14Scgd#include <unistd.h> 671.12Smycroft 681.12Smycroftint speed = 9600; 691.12Smycroftint slipdisc = SLIPDISC; 701.1Scgd 711.12Smycroftchar devicename[32]; 721.1Scgd 731.18Slukemint main __P((int, char *[])); 741.18Slukemint ttydisc __P((char *)); 751.12Smycroftvoid usage __P((void)); 761.1Scgd 771.12Smycroftint 781.12Smycroftmain(argc, argv) 791.12Smycroft int argc; 801.12Smycroft char *argv[]; 811.1Scgd{ 821.18Slukem int fd; 831.18Slukem char *dev = argv[1]; 841.4Scgd struct termios tty; 851.12Smycroft tcflag_t cflag = HUPCL; 861.12Smycroft int ch; 871.26Skleink sigset_t nsigset; 881.22Sproff int opt_detach = 1; 891.4Scgd 901.22Sproff while ((ch = getopt(argc, argv, "hHlmns:t:")) != -1) { 911.12Smycroft switch (ch) { 921.4Scgd case 'h': 931.12Smycroft cflag |= CRTSCTS; 941.19Sscottr break; 951.19Sscottr case 'H': 961.19Sscottr cflag |= CDTRCTS; 971.8Smycroft break; 981.21Sfair case 'l': 991.21Sfair cflag |= CLOCAL; 1001.21Sfair break; 1011.8Smycroft case 'm': 1021.12Smycroft cflag &= ~HUPCL; 1031.4Scgd break; 1041.22Sproff case 'n': 1051.22Sproff opt_detach = 0; 1061.22Sproff break; 1071.4Scgd case 's': 1081.4Scgd speed = atoi(optarg); 1091.4Scgd break; 1101.17Sjonathan case 'r': case 't': 1111.17Sjonathan slipdisc = ttydisc(optarg); 1121.17Sjonathan break; 1131.4Scgd case '?': 1141.4Scgd default: 1151.12Smycroft usage(); 1161.4Scgd } 1171.4Scgd } 1181.12Smycroft argc -= optind; 1191.12Smycroft argv += optind; 1201.4Scgd 1211.12Smycroft if (argc != 1) 1221.12Smycroft usage(); 1231.4Scgd 1241.12Smycroft dev = *argv; 1251.1Scgd if (strncmp(_PATH_DEV, dev, sizeof(_PATH_DEV) - 1)) { 1261.12Smycroft (void)snprintf(devicename, sizeof(devicename), 1271.12Smycroft "%s%s", _PATH_DEV, dev); 1281.12Smycroft dev = devicename; 1291.1Scgd } 1301.22Sproff if ((fd = open(dev, O_RDWR | O_NDELAY)) < 0) 1311.22Sproff err(1, "%s", dev); 1321.12Smycroft tty.c_cflag = CREAD | CS8 | cflag; 1331.4Scgd tty.c_iflag = 0; 1341.12Smycroft tty.c_lflag = 0; 1351.4Scgd tty.c_oflag = 0; 1361.12Smycroft tty.c_cc[VMIN] = 1; 1371.12Smycroft tty.c_cc[VTIME] = 0; 1381.12Smycroft cfsetspeed(&tty, speed); 1391.12Smycroft if (tcsetattr(fd, TCSADRAIN, &tty) < 0) 1401.12Smycroft err(1, "tcsetattr"); 1411.12Smycroft if (ioctl(fd, TIOCSDTR, 0) < 0) 1421.12Smycroft err(1, "TIOCSDTR"); 1431.12Smycroft if (ioctl(fd, TIOCSETD, &slipdisc) < 0) 1441.12Smycroft err(1, "TIOCSETD"); 1451.22Sproff if (opt_detach && daemon(0, 0) != 0) 1461.22Sproff err(1, "couldn't detach"); 1471.26Skleink sigemptyset(&nsigset); 1481.1Scgd for (;;) 1491.26Skleink sigsuspend(&nsigset); 1501.12Smycroft} 1511.12Smycroft 1521.17Sjonathanint 1531.17Sjonathanttydisc(name) 1541.17Sjonathan char *name; 1551.17Sjonathan{ 1561.17Sjonathan if (strcmp(name, "slip") == 0) 1571.17Sjonathan return(SLIPDISC); 1581.17Sjonathan#ifdef STRIPDISC 1591.17Sjonathan else if (strcmp(name, "strip") == 0) 1601.17Sjonathan return(STRIPDISC); 1611.17Sjonathan#endif 1621.17Sjonathan else 1631.17Sjonathan usage(); 1641.18Slukem /* NOTREACHED */ 1651.18Slukem return -1; 1661.17Sjonathan} 1671.17Sjonathan 1681.12Smycroftvoid 1691.12Smycroftusage() 1701.12Smycroft{ 1711.24Scgd 1721.17Sjonathan (void)fprintf(stderr, 1731.25Ssoren "Usage: %s [-t ldisc] [-hHlmn] [-s baudrate] ttyname\n", 1741.24Scgd getprogname()); 1751.12Smycroft exit(1); 1761.1Scgd} 177