1 /*- 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. 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 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by the University of 16 * California, Berkeley and its contributors. 17 * 4. Neither the name of the University nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 * 33 * $FreeBSD$ 34 */ 35 36 #if defined(LIBC_SCCS) && !defined(lint) 37 static char sccsid[] = "@(#)termios.c 8.2 (Berkeley) 2/21/94"; 38 #endif /* LIBC_SCCS and not lint */ 39 40 #include "namespace.h" 41 #include <sys/types.h> 42 #include <sys/fcntl.h> 43 #include <sys/ioctl.h> 44 #include <sys/time.h> 45 46 #include <errno.h> 47 #include <termios.h> 48 #include <unistd.h> 49 #include "un-namespace.h" 50 51 int 52 tcgetattr(fd, t) 53 int fd; 54 struct termios *t; 55 { 56 57 return (_ioctl(fd, TIOCGETA, t)); 58 } 59 60 int 61 tcsetattr(fd, opt, t) 62 int fd, opt; 63 const struct termios *t; 64 { 65 struct termios localterm; 66 67 if (opt & TCSASOFT) { 68 localterm = *t; 69 localterm.c_cflag |= CIGNORE; 70 t = &localterm; 71 } 72 switch (opt & ~TCSASOFT) { 73 case TCSANOW: 74 return (_ioctl(fd, TIOCSETA, t)); 75 case TCSADRAIN: 76 return (_ioctl(fd, TIOCSETAW, t)); 77 case TCSAFLUSH: 78 return (_ioctl(fd, TIOCSETAF, t)); 79 default: 80 errno = EINVAL; 81 return (-1); 82 } 83 } 84 85 int 86 #if __STDC__ 87 tcsetpgrp(int fd, pid_t pgrp) 88 #else 89 tcsetpgrp(fd, pgrp) 90 int fd; 91 pid_t pgrp; 92 #endif 93 { 94 int s; 95 96 s = pgrp; 97 return (_ioctl(fd, TIOCSPGRP, &s)); 98 } 99 100 pid_t 101 tcgetpgrp(fd) 102 int fd; 103 { 104 int s; 105 106 if (_ioctl(fd, TIOCGPGRP, &s) < 0) 107 return ((pid_t)-1); 108 109 return ((pid_t)s); 110 } 111 112 speed_t 113 cfgetospeed(t) 114 const struct termios *t; 115 { 116 117 return (t->c_ospeed); 118 } 119 120 speed_t 121 cfgetispeed(t) 122 const struct termios *t; 123 { 124 125 return (t->c_ispeed); 126 } 127 128 int 129 cfsetospeed(t, speed) 130 struct termios *t; 131 speed_t speed; 132 { 133 134 t->c_ospeed = speed; 135 return (0); 136 } 137 138 int 139 cfsetispeed(t, speed) 140 struct termios *t; 141 speed_t speed; 142 { 143 144 t->c_ispeed = speed; 145 return (0); 146 } 147 148 int 149 cfsetspeed(t, speed) 150 struct termios *t; 151 speed_t speed; 152 { 153 154 t->c_ispeed = t->c_ospeed = speed; 155 return (0); 156 } 157 158 /* 159 * Make a pre-existing termios structure into "raw" mode: character-at-a-time 160 * mode with no characters interpreted, 8-bit data path. 161 */ 162 void 163 cfmakeraw(t) 164 struct termios *t; 165 { 166 167 t->c_iflag &= ~(IMAXBEL|IXOFF|INPCK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON|IGNPAR); 168 t->c_iflag |= IGNBRK; 169 t->c_oflag &= ~OPOST; 170 t->c_lflag &= ~(ECHO|ECHOE|ECHOK|ECHONL|ICANON|ISIG|IEXTEN|NOFLSH|TOSTOP|PENDIN); 171 t->c_cflag &= ~(CSIZE|PARENB); 172 t->c_cflag |= CS8|CREAD; 173 t->c_cc[VMIN] = 1; 174 t->c_cc[VTIME] = 0; 175 } 176 177 int 178 tcsendbreak(fd, len) 179 int fd, len; 180 { 181 struct timeval sleepytime; 182 183 sleepytime.tv_sec = 0; 184 sleepytime.tv_usec = 400000; 185 if (_ioctl(fd, TIOCSBRK, 0) == -1) 186 return (-1); 187 (void)_select(0, 0, 0, 0, &sleepytime); 188 if (_ioctl(fd, TIOCCBRK, 0) == -1) 189 return (-1); 190 return (0); 191 } 192 193 int 194 __tcdrain(fd) 195 int fd; 196 { 197 return (_ioctl(fd, TIOCDRAIN, 0)); 198 } 199 200 __weak_reference(__tcdrain, tcdrain); 201 __weak_reference(__tcdrain, _tcdrain); 202 203 int 204 tcflush(fd, which) 205 int fd, which; 206 { 207 int com; 208 209 switch (which) { 210 case TCIFLUSH: 211 com = FREAD; 212 break; 213 case TCOFLUSH: 214 com = FWRITE; 215 break; 216 case TCIOFLUSH: 217 com = FREAD | FWRITE; 218 break; 219 default: 220 errno = EINVAL; 221 return (-1); 222 } 223 return (_ioctl(fd, TIOCFLUSH, &com)); 224 } 225 226 int 227 tcflow(fd, action) 228 int fd, action; 229 { 230 struct termios term; 231 u_char c; 232 233 switch (action) { 234 case TCOOFF: 235 return (_ioctl(fd, TIOCSTOP, 0)); 236 case TCOON: 237 return (_ioctl(fd, TIOCSTART, 0)); 238 case TCION: 239 case TCIOFF: 240 if (tcgetattr(fd, &term) == -1) 241 return (-1); 242 c = term.c_cc[action == TCIOFF ? VSTOP : VSTART]; 243 if (c != _POSIX_VDISABLE && _write(fd, &c, sizeof(c)) == -1) 244 return (-1); 245 return (0); 246 default: 247 errno = EINVAL; 248 return (-1); 249 } 250 /* NOTREACHED */ 251 } 252