2 This file is part of systemd.
4 Copyright 2010 Lennart Poettering
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
27 #include <sys/inotify.h>
28 #include <sys/socket.h>
29 #include <sys/sysmacros.h>
32 #include <linux/tiocl.h>
36 #include <sys/ioctl.h>
37 #include <sys/types.h>
41 #include "alloc-util.h"
48 #include "parse-util.h"
49 #include "process-util.h"
50 #include "socket-util.h"
51 #include "stat-util.h"
52 #include "string-util.h"
54 #include "terminal-util.h"
55 #include "time-util.h"
58 static volatile unsigned cached_columns = 0;
59 static volatile unsigned cached_lines = 0;
62 _cleanup_close_ int fd;
64 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC|O_NONBLOCK);
70 TIOCL_GETKMSGREDIRECT,
74 if (ioctl(fd, TIOCLINUX, tiocl) < 0)
77 vt = tiocl[0] <= 0 ? 1 : tiocl[0];
80 if (ioctl(fd, VT_ACTIVATE, vt) < 0)
86 #if 0 /// UNNEEDED by elogind
87 int read_one_char(FILE *f, char *ret, usec_t t, bool *need_nl) {
88 struct termios old_termios, new_termios;
89 char c, line[LINE_MAX];
94 if (tcgetattr(fileno(f), &old_termios) >= 0) {
95 new_termios = old_termios;
97 new_termios.c_lflag &= ~ICANON;
98 new_termios.c_cc[VMIN] = 1;
99 new_termios.c_cc[VTIME] = 0;
101 if (tcsetattr(fileno(f), TCSADRAIN, &new_termios) >= 0) {
104 if (t != USEC_INFINITY) {
105 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0) {
106 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
111 k = fread(&c, 1, 1, f);
113 tcsetattr(fileno(f), TCSADRAIN, &old_termios);
119 *need_nl = c != '\n';
126 if (t != USEC_INFINITY) {
127 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0)
132 if (!fgets(line, sizeof(line), f))
133 return errno > 0 ? -errno : -EIO;
137 if (strlen(line) != 1)
147 int ask_char(char *ret, const char *replies, const char *text, ...) {
159 if (colors_enabled())
160 fputs(ANSI_HIGHLIGHT, stdout);
166 if (colors_enabled())
167 fputs(ANSI_NORMAL, stdout);
171 r = read_one_char(stdin, &c, USEC_INFINITY, &need_nl);
175 puts("Bad input, please try again.");
186 if (strchr(replies, c)) {
191 puts("Read unexpected character, please try again.");
195 int ask_string(char **ret, const char *text, ...) {
203 if (colors_enabled())
204 fputs(ANSI_HIGHLIGHT, stdout);
210 if (colors_enabled())
211 fputs(ANSI_NORMAL, stdout);
216 if (!fgets(line, sizeof(line), stdin))
217 return errno > 0 ? -errno : -EIO;
219 if (!endswith(line, "\n"))
238 int reset_terminal_fd(int fd, bool switch_to_text) {
239 struct termios termios;
242 /* Set terminal to some sane defaults */
246 /* We leave locked terminal attributes untouched, so that
247 * Plymouth may set whatever it wants to set, and we don't
248 * interfere with that. */
250 /* Disable exclusive mode, just in case */
251 (void) ioctl(fd, TIOCNXCL);
253 /* Switch to text mode */
255 (void) ioctl(fd, KDSETMODE, KD_TEXT);
257 /* Enable console unicode mode */
258 (void) ioctl(fd, KDSKBMODE, K_UNICODE);
260 if (tcgetattr(fd, &termios) < 0) {
265 /* We only reset the stuff that matters to the software. How
266 * hardware is set up we don't touch assuming that somebody
267 * else will do that for us */
269 termios.c_iflag &= ~(IGNBRK | BRKINT | ISTRIP | INLCR | IGNCR | IUCLC);
270 termios.c_iflag |= ICRNL | IMAXBEL | IUTF8;
271 termios.c_oflag |= ONLCR;
272 termios.c_cflag |= CREAD;
273 termios.c_lflag = ISIG | ICANON | IEXTEN | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOPRT | ECHOKE;
275 termios.c_cc[VINTR] = 03; /* ^C */
276 termios.c_cc[VQUIT] = 034; /* ^\ */
277 termios.c_cc[VERASE] = 0177;
278 termios.c_cc[VKILL] = 025; /* ^X */
279 termios.c_cc[VEOF] = 04; /* ^D */
280 termios.c_cc[VSTART] = 021; /* ^Q */
281 termios.c_cc[VSTOP] = 023; /* ^S */
282 termios.c_cc[VSUSP] = 032; /* ^Z */
283 termios.c_cc[VLNEXT] = 026; /* ^V */
284 termios.c_cc[VWERASE] = 027; /* ^W */
285 termios.c_cc[VREPRINT] = 022; /* ^R */
286 termios.c_cc[VEOL] = 0;
287 termios.c_cc[VEOL2] = 0;
289 termios.c_cc[VTIME] = 0;
290 termios.c_cc[VMIN] = 1;
292 if (tcsetattr(fd, TCSANOW, &termios) < 0)
296 /* Just in case, flush all crap out */
297 (void) tcflush(fd, TCIOFLUSH);
302 int reset_terminal(const char *name) {
303 _cleanup_close_ int fd = -1;
305 /* We open the terminal with O_NONBLOCK here, to ensure we
306 * don't block on carrier if this is a terminal with carrier
309 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC|O_NONBLOCK);
313 return reset_terminal_fd(fd, true);
317 int open_terminal(const char *name, int mode) {
322 * If a TTY is in the process of being closed opening it might
323 * cause EIO. This is horribly awful, but unlikely to be
324 * changed in the kernel. Hence we work around this problem by
325 * retrying a couple of times.
327 * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554172/comments/245
334 fd = open(name, mode, 0);
341 /* Max 1s in total */
345 usleep(50 * USEC_PER_MSEC);
358 #if 0 /// UNNEEDED by elogind
359 int acquire_terminal(
363 bool ignore_tiocstty_eperm,
366 int fd = -1, notify = -1, r = 0, wd = -1;
371 /* We use inotify to be notified when the tty is closed. We
372 * create the watch before checking if we can actually acquire
373 * it, so that we don't lose any event.
375 * Note: strictly speaking this actually watches for the
376 * device being closed, it does *not* really watch whether a
377 * tty loses its controlling process. However, unless some
378 * rogue process uses TIOCNOTTY on /dev/tty *after* closing
379 * its tty otherwise this will not become a problem. As long
380 * as the administrator makes sure not configure any service
381 * on the same tty as an untrusted user this should not be a
382 * problem. (Which he probably should not do anyway.) */
384 if (timeout != USEC_INFINITY)
385 ts = now(CLOCK_MONOTONIC);
387 if (!fail && !force) {
388 notify = inotify_init1(IN_CLOEXEC | (timeout != USEC_INFINITY ? IN_NONBLOCK : 0));
394 wd = inotify_add_watch(notify, name, IN_CLOSE);
402 struct sigaction sa_old, sa_new = {
403 .sa_handler = SIG_IGN,
404 .sa_flags = SA_RESTART,
408 r = flush_fd(notify);
413 /* We pass here O_NOCTTY only so that we can check the return
414 * value TIOCSCTTY and have a reliable way to figure out if we
415 * successfully became the controlling process of the tty */
416 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
420 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
421 * if we already own the tty. */
422 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
424 /* First, try to get the tty */
425 if (ioctl(fd, TIOCSCTTY, force) < 0)
428 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
430 /* Sometimes, it makes sense to ignore TIOCSCTTY
431 * returning EPERM, i.e. when very likely we already
432 * are have this controlling terminal. */
433 if (r < 0 && r == -EPERM && ignore_tiocstty_eperm)
436 if (r < 0 && (force || fail || r != -EPERM))
447 union inotify_event_buffer buffer;
448 struct inotify_event *e;
451 if (timeout != USEC_INFINITY) {
454 n = now(CLOCK_MONOTONIC);
455 if (ts + timeout < n) {
460 r = fd_wait_for_event(fd, POLLIN, ts + timeout - n);
470 l = read(notify, &buffer, sizeof(buffer));
472 if (errno == EINTR || errno == EAGAIN)
479 FOREACH_INOTIFY_EVENT(e, buffer, l) {
480 if (e->wd != wd || !(e->mask & IN_CLOSE)) {
489 /* We close the tty fd here since if the old session
490 * ended our handle will be dead. It's important that
491 * we do this after sleeping, so that we don't enter
492 * an endless loop. */
508 #if 0 /// UNNEEDED by elogind
509 int release_terminal(void) {
510 static const struct sigaction sa_new = {
511 .sa_handler = SIG_IGN,
512 .sa_flags = SA_RESTART,
515 _cleanup_close_ int fd = -1;
516 struct sigaction sa_old;
519 fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_CLOEXEC|O_NONBLOCK);
523 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
524 * by our own TIOCNOTTY */
525 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
527 if (ioctl(fd, TIOCNOTTY) < 0)
530 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
535 int terminal_vhangup_fd(int fd) {
538 if (ioctl(fd, TIOCVHANGUP) < 0)
544 int terminal_vhangup(const char *name) {
545 _cleanup_close_ int fd;
547 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC|O_NONBLOCK);
551 return terminal_vhangup_fd(fd);
554 int vt_disallocate(const char *name) {
555 _cleanup_close_ int fd = -1;
559 /* Deallocate the VT if possible. If not possible
560 * (i.e. because it is the active one), at least clear it
561 * entirely (including the scrollback buffer) */
563 if (!startswith(name, "/dev/"))
566 if (!tty_is_vc(name)) {
567 /* So this is not a VT. I guess we cannot deallocate
568 * it then. But let's at least clear the screen */
570 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
575 "\033[r" /* clear scrolling region */
576 "\033[H" /* move home */
577 "\033[2J", /* clear screen */
582 if (!startswith(name, "/dev/tty"))
585 r = safe_atou(name+8, &u);
592 /* Try to deallocate */
593 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC|O_NONBLOCK);
597 r = ioctl(fd, VT_DISALLOCATE, u);
606 /* Couldn't deallocate, so let's clear it fully with
608 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
613 "\033[r" /* clear scrolling region */
614 "\033[H" /* move home */
615 "\033[3J", /* clear screen including scrollback, requires Linux 2.6.40 */
620 int make_console_stdio(void) {
623 /* Make /dev/console the controlling terminal and stdin/stdout/stderr */
625 fd = acquire_terminal("/dev/console", false, true, true, USEC_INFINITY);
627 return log_error_errno(fd, "Failed to acquire terminal: %m");
629 r = reset_terminal_fd(fd, true);
631 log_warning_errno(r, "Failed to reset terminal, ignoring: %m");
635 return log_error_errno(r, "Failed to duplicate terminal fd: %m");
641 bool tty_is_vc(const char *tty) {
644 return vtnr_from_tty(tty) >= 0;
647 bool tty_is_console(const char *tty) {
650 if (startswith(tty, "/dev/"))
653 return streq(tty, "console");
656 int vtnr_from_tty(const char *tty) {
661 if (startswith(tty, "/dev/"))
664 if (!startswith(tty, "tty") )
667 if (tty[3] < '0' || tty[3] > '9')
670 r = safe_atoi(tty+3, &i);
680 #if 0 /// UNNEEDED by elogind
681 char *resolve_dev_console(char **active) {
684 /* Resolve where /dev/console is pointing to, if /sys is actually ours
685 * (i.e. not read-only-mounted which is a sign for container setups) */
687 if (path_is_read_only_fs("/sys") > 0)
690 if (read_one_line_file("/sys/class/tty/console/active", active) < 0)
693 /* If multiple log outputs are configured the last one is what
694 * /dev/console points to */
695 tty = strrchr(*active, ' ');
701 if (streq(tty, "tty0")) {
704 /* Get the active VC (e.g. tty1) */
705 if (read_one_line_file("/sys/class/tty/tty0/active", &tmp) >= 0) {
714 int get_kernel_consoles(char ***consoles) {
715 _cleanup_strv_free_ char **con = NULL;
716 _cleanup_free_ char *line = NULL;
722 r = read_one_line_file("/sys/class/tty/console/active", &line);
728 _cleanup_free_ char *tty = NULL;
731 r = extract_first_word(&active, &tty, NULL, 0);
737 if (streq(tty, "tty0")) {
739 r = read_one_line_file("/sys/class/tty/tty0/active", &tty);
744 path = strappend("/dev/", tty);
748 if (access(path, F_OK) < 0) {
749 log_debug_errno(errno, "Console device %s is not accessible, skipping: %m", path);
754 r = strv_consume(&con, path);
759 if (strv_isempty(con)) {
760 log_debug("No devices found for system console");
762 r = strv_extend(&con, "/dev/console");
772 bool tty_is_vc_resolve(const char *tty) {
773 _cleanup_free_ char *active = NULL;
777 if (startswith(tty, "/dev/"))
780 if (streq(tty, "console")) {
781 tty = resolve_dev_console(&active);
786 return tty_is_vc(tty);
789 const char *default_term_for_tty(const char *tty) {
790 return tty && tty_is_vc_resolve(tty) ? "linux" : "vt220";
794 int fd_columns(int fd) {
795 struct winsize ws = {};
797 if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
806 unsigned columns(void) {
810 if (_likely_(cached_columns > 0))
811 return cached_columns;
814 e = getenv("COLUMNS");
816 (void) safe_atoi(e, &c);
819 c = fd_columns(STDOUT_FILENO);
825 return cached_columns;
828 int fd_lines(int fd) {
829 struct winsize ws = {};
831 if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
840 unsigned lines(void) {
844 if (_likely_(cached_lines > 0))
850 (void) safe_atoi(e, &l);
853 l = fd_lines(STDOUT_FILENO);
862 /* intended to be used as a SIGWINCH sighandler */
863 #if 0 /// UNNEEDED by elogind
864 void columns_lines_cache_reset(int signum) {
871 static int cached_on_tty = -1;
873 if (_unlikely_(cached_on_tty < 0))
874 cached_on_tty = isatty(STDOUT_FILENO) > 0;
876 return cached_on_tty;
879 int make_stdio(int fd) {
884 r = dup2(fd, STDIN_FILENO);
885 s = dup2(fd, STDOUT_FILENO);
886 t = dup2(fd, STDERR_FILENO);
891 if (r < 0 || s < 0 || t < 0)
894 /* Explicitly unset O_CLOEXEC, since if fd was < 3, then
895 * dup2() was a NOP and the bit hence possibly set. */
896 stdio_unset_cloexec();
901 int make_null_stdio(void) {
904 null_fd = open("/dev/null", O_RDWR|O_NOCTTY);
908 return make_stdio(null_fd);
911 int getttyname_malloc(int fd, char **ret) {
921 r = ttyname_r(fd, path, sizeof(path));
926 p = startswith(path, "/dev/");
927 c = strdup(p ?: path);
944 int getttyname_harder(int fd, char **r) {
948 k = getttyname_malloc(fd, &s);
952 if (streq(s, "tty")) {
954 return get_ctty(0, NULL, r);
961 int get_ctty_devnr(pid_t pid, dev_t *d) {
963 _cleanup_free_ char *line = NULL;
969 p = procfs_file_alloca(pid, "stat");
970 r = read_one_line_file(p, &line);
974 p = strrchr(line, ')');
989 if (major(ttynr) == 0 && minor(ttynr) == 0)
998 int get_ctty(pid_t pid, dev_t *_devnr, char **r) {
999 char fn[sizeof("/dev/char/")-1 + 2*DECIMAL_STR_MAX(unsigned) + 1 + 1], *b = NULL;
1000 _cleanup_free_ char *s = NULL;
1007 k = get_ctty_devnr(pid, &devnr);
1011 sprintf(fn, "/dev/char/%u:%u", major(devnr), minor(devnr));
1013 k = readlink_malloc(fn, &s);
1019 /* This is an ugly hack */
1020 if (major(devnr) == 136) {
1021 if (asprintf(&b, "pts/%u", minor(devnr)) < 0)
1024 /* Probably something like the ptys which have no
1025 * symlink in /dev/char. Let's return something
1026 * vaguely useful. */
1033 if (startswith(s, "/dev/"))
1035 else if (startswith(s, "../"))
1052 #if 0 /// UNNEEDED by elogind
1053 int ptsname_malloc(int fd, char **ret) {
1066 if (ptsname_r(fd, c, l) == 0) {
1070 if (errno != ERANGE) {
1080 int ptsname_namespace(int pty, char **ret) {
1083 /* Like ptsname(), but doesn't assume that the path is
1084 * accessible in the local namespace. */
1086 r = ioctl(pty, TIOCGPTN, &no);
1093 if (asprintf(ret, "/dev/pts/%i", no) < 0)
1099 int openpt_in_namespace(pid_t pid, int flags) {
1100 _cleanup_close_ int pidnsfd = -1, mntnsfd = -1, usernsfd = -1, rootfd = -1;
1101 _cleanup_close_pair_ int pair[2] = { -1, -1 };
1108 r = namespace_open(pid, &pidnsfd, &mntnsfd, NULL, &usernsfd, &rootfd);
1112 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, pair) < 0)
1122 pair[0] = safe_close(pair[0]);
1124 r = namespace_enter(pidnsfd, mntnsfd, -1, usernsfd, rootfd);
1126 _exit(EXIT_FAILURE);
1128 master = posix_openpt(flags|O_NOCTTY|O_CLOEXEC);
1130 _exit(EXIT_FAILURE);
1132 if (unlockpt(master) < 0)
1133 _exit(EXIT_FAILURE);
1135 if (send_one_fd(pair[1], master, 0) < 0)
1136 _exit(EXIT_FAILURE);
1138 _exit(EXIT_SUCCESS);
1141 pair[1] = safe_close(pair[1]);
1143 r = wait_for_terminate(child, &si);
1146 if (si.si_code != CLD_EXITED || si.si_status != EXIT_SUCCESS)
1149 return receive_one_fd(pair[0], 0);
1152 int open_terminal_in_namespace(pid_t pid, const char *name, int mode) {
1153 _cleanup_close_ int pidnsfd = -1, mntnsfd = -1, usernsfd = -1, rootfd = -1;
1154 _cleanup_close_pair_ int pair[2] = { -1, -1 };
1159 r = namespace_open(pid, &pidnsfd, &mntnsfd, NULL, &usernsfd, &rootfd);
1163 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, pair) < 0)
1173 pair[0] = safe_close(pair[0]);
1175 r = namespace_enter(pidnsfd, mntnsfd, -1, usernsfd, rootfd);
1177 _exit(EXIT_FAILURE);
1179 master = open_terminal(name, mode|O_NOCTTY|O_CLOEXEC);
1181 _exit(EXIT_FAILURE);
1183 if (send_one_fd(pair[1], master, 0) < 0)
1184 _exit(EXIT_FAILURE);
1186 _exit(EXIT_SUCCESS);
1189 pair[1] = safe_close(pair[1]);
1191 r = wait_for_terminate(child, &si);
1194 if (si.si_code != CLD_EXITED || si.si_status != EXIT_SUCCESS)
1197 return receive_one_fd(pair[0], 0);
1201 static bool getenv_terminal_is_dumb(void) {
1208 return streq(e, "dumb");
1211 bool terminal_is_dumb(void) {
1215 return getenv_terminal_is_dumb();
1218 bool colors_enabled(void) {
1219 static int enabled = -1;
1221 if (_unlikely_(enabled < 0)) {
1222 #if 0 /// elogind does not allow such forcing, and we are never init!
1225 val = getenv_bool("SYSTEMD_COLORS");
1228 else if (getpid() == 1)
1229 /* PID1 outputs to the console without holding it open all the time */
1230 enabled = !getenv_terminal_is_dumb();
1233 enabled = !terminal_is_dumb();