libc/termios: #undef TTYDEFCHARS after including <termios.h>.
[dragonfly.git] / lib / libc / gen / termios.c
blob9124ee58129b87a9703c67b2a8a29b71ec483a3e
1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
31 * @(#)termios.c 8.2 (Berkeley) 2/21/94
32 * $FreeBSD: head/lib/libc/gen/termios.c 326025 2017-11-20 19:49:47Z pfg $
35 #include "namespace.h"
36 #include <sys/types.h>
37 #include <sys/fcntl.h>
38 #include <sys/ioctl.h>
39 #include <sys/time.h>
41 #include <errno.h>
42 #include <string.h>
43 #define TTYDEFCHARS
44 #include <termios.h>
45 #undef TTYDEFCHARS
46 #include <unistd.h>
47 #include "un-namespace.h"
49 int
50 tcgetattr(int fd, struct termios *t)
53 return (_ioctl(fd, TIOCGETA, t));
56 int
57 tcsetattr(int fd, int opt, const struct termios *t)
59 struct termios localterm;
61 if (opt & TCSASOFT) {
62 localterm = *t;
63 localterm.c_cflag |= CIGNORE;
64 t = &localterm;
66 switch (opt & ~TCSASOFT) {
67 case TCSANOW:
68 return (_ioctl(fd, TIOCSETA, t));
69 case TCSADRAIN:
70 return (_ioctl(fd, TIOCSETAW, t));
71 case TCSAFLUSH:
72 return (_ioctl(fd, TIOCSETAF, t));
73 default:
74 errno = EINVAL;
75 return (-1);
79 int
80 tcsetpgrp(int fd, pid_t pgrp)
82 int s;
84 s = pgrp;
85 return (_ioctl(fd, TIOCSPGRP, &s));
88 pid_t
89 tcgetpgrp(int fd)
91 int s;
93 if (_ioctl(fd, TIOCGPGRP, &s) < 0)
94 return ((pid_t)-1);
96 return ((pid_t)s);
99 pid_t
100 tcgetsid(int fd)
102 int s;
104 if (_ioctl(fd, TIOCGSID, &s) < 0)
105 return ((pid_t)-1);
107 return ((pid_t)s);
111 tcsetsid(int fd, pid_t pid)
114 if (pid != getsid(0)) {
115 errno = EINVAL;
116 return (-1);
119 return (_ioctl(fd, TIOCSCTTY, NULL));
122 speed_t
123 cfgetospeed(const struct termios *t)
126 return (t->c_ospeed);
129 speed_t
130 cfgetispeed(const struct termios *t)
133 return (t->c_ispeed);
137 cfsetospeed(struct termios *t, speed_t speed)
140 t->c_ospeed = speed;
141 return (0);
145 cfsetispeed(struct termios *t, speed_t speed)
148 t->c_ispeed = speed;
149 return (0);
153 cfsetspeed(struct termios *t, speed_t speed)
156 t->c_ispeed = t->c_ospeed = speed;
157 return (0);
161 * Make a pre-existing termios structure into "raw" mode: character-at-a-time
162 * mode with no characters interpreted, 8-bit data path.
164 void
165 cfmakeraw(struct termios *t)
168 t->c_iflag &= ~(IMAXBEL|IXOFF|INPCK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON|IGNPAR);
169 t->c_iflag |= IGNBRK;
170 t->c_oflag &= ~OPOST;
171 t->c_lflag &= ~(ECHO|ECHOE|ECHOK|ECHONL|ICANON|ISIG|IEXTEN|NOFLSH|TOSTOP|PENDIN);
172 t->c_cflag &= ~(CSIZE|PARENB);
173 t->c_cflag |= CS8|CREAD;
174 t->c_cc[VMIN] = 1;
175 t->c_cc[VTIME] = 0;
179 * Obtain a termios structure which is similar to the one provided by
180 * the kernel.
182 void
183 cfmakesane(struct termios *t)
185 t->c_cflag = TTYDEF_CFLAG;
186 t->c_iflag = TTYDEF_IFLAG;
187 t->c_lflag = TTYDEF_LFLAG;
188 t->c_oflag = TTYDEF_OFLAG;
189 t->c_ispeed = TTYDEF_SPEED;
190 t->c_ospeed = TTYDEF_SPEED;
191 memcpy(&t->c_cc, ttydefchars, sizeof ttydefchars);
195 tcsendbreak(int fd, int len __unused)
197 struct timeval sleepytime;
199 sleepytime.tv_sec = 0;
200 sleepytime.tv_usec = 400000;
201 if (_ioctl(fd, TIOCSBRK, 0) == -1)
202 return (-1);
203 _select(0, 0, 0, 0, &sleepytime);
204 if (_ioctl(fd, TIOCCBRK, 0) == -1)
205 return (-1);
206 return (0);
210 __tcdrain(int fd)
212 return (_ioctl(fd, TIOCDRAIN, 0));
215 #ifndef _THREAD_SAFE
216 __weak_reference(__tcdrain, tcdrain);
217 #endif
220 tcflush(int fd, int which)
222 int com;
224 switch (which) {
225 case TCIFLUSH:
226 com = FREAD;
227 break;
228 case TCOFLUSH:
229 com = FWRITE;
230 break;
231 case TCIOFLUSH:
232 com = FREAD | FWRITE;
233 break;
234 default:
235 errno = EINVAL;
236 return (-1);
238 return (_ioctl(fd, TIOCFLUSH, &com));
242 tcflow(int fd, int action)
244 struct termios term;
245 u_char c;
247 switch (action) {
248 case TCOOFF:
249 return (_ioctl(fd, TIOCSTOP, 0));
250 case TCOON:
251 return (_ioctl(fd, TIOCSTART, 0));
252 case TCION:
253 case TCIOFF:
254 if (tcgetattr(fd, &term) == -1)
255 return (-1);
256 c = term.c_cc[action == TCIOFF ? VSTOP : VSTART];
257 if (c != _POSIX_VDISABLE && _write(fd, &c, sizeof(c)) == -1)
258 return (-1);
259 return (0);
260 default:
261 errno = EINVAL;
262 return (-1);
264 /* NOTREACHED */