chiark / gitweb /
Prep v224: Major cleanup of unneeded functions and some source files.
[elogind.git] / src / basic / terminal-util.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2010 Lennart Poettering
5
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.
10
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.
15
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/>.
18 ***/
19
20 #include <sys/ioctl.h>
21 #include <sys/types.h>
22 #include <sys/stat.h>
23 #include <termios.h>
24 #include <unistd.h>
25 #include <fcntl.h>
26 #include <signal.h>
27 #include <time.h>
28 #include <assert.h>
29 #include <poll.h>
30 #include <linux/vt.h>
31 #include <linux/tiocl.h>
32 #include <linux/kd.h>
33
34 #include "terminal-util.h"
35 #include "time-util.h"
36 #include "process-util.h"
37 #include "util.h"
38 #include "fileio.h"
39 #include "path-util.h"
40
41 static volatile unsigned cached_columns = 0;
42 static volatile unsigned cached_lines = 0;
43
44 int chvt(int vt) {
45         _cleanup_close_ int fd;
46
47         fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
48         if (fd < 0)
49                 return -errno;
50
51         if (vt < 0) {
52                 int tiocl[2] = {
53                         TIOCL_GETKMSGREDIRECT,
54                         0
55                 };
56
57                 if (ioctl(fd, TIOCLINUX, tiocl) < 0)
58                         return -errno;
59
60                 vt = tiocl[0] <= 0 ? 1 : tiocl[0];
61         }
62
63         if (ioctl(fd, VT_ACTIVATE, vt) < 0)
64                 return -errno;
65
66         return 0;
67 }
68
69 int read_one_char(FILE *f, char *ret, usec_t t, bool *need_nl) {
70         struct termios old_termios, new_termios;
71         char c, line[LINE_MAX];
72
73         assert(f);
74         assert(ret);
75
76         if (tcgetattr(fileno(f), &old_termios) >= 0) {
77                 new_termios = old_termios;
78
79                 new_termios.c_lflag &= ~ICANON;
80                 new_termios.c_cc[VMIN] = 1;
81                 new_termios.c_cc[VTIME] = 0;
82
83                 if (tcsetattr(fileno(f), TCSADRAIN, &new_termios) >= 0) {
84                         size_t k;
85
86                         if (t != USEC_INFINITY) {
87                                 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0) {
88                                         tcsetattr(fileno(f), TCSADRAIN, &old_termios);
89                                         return -ETIMEDOUT;
90                                 }
91                         }
92
93                         k = fread(&c, 1, 1, f);
94
95                         tcsetattr(fileno(f), TCSADRAIN, &old_termios);
96
97                         if (k <= 0)
98                                 return -EIO;
99
100                         if (need_nl)
101                                 *need_nl = c != '\n';
102
103                         *ret = c;
104                         return 0;
105                 }
106         }
107
108         if (t != USEC_INFINITY) {
109                 if (fd_wait_for_event(fileno(f), POLLIN, t) <= 0)
110                         return -ETIMEDOUT;
111         }
112
113         errno = 0;
114         if (!fgets(line, sizeof(line), f))
115                 return errno ? -errno : -EIO;
116
117         truncate_nl(line);
118
119         if (strlen(line) != 1)
120                 return -EBADMSG;
121
122         if (need_nl)
123                 *need_nl = false;
124
125         *ret = line[0];
126         return 0;
127 }
128
129 /// UNNEEDED by elogind
130 #if 0
131 int ask_char(char *ret, const char *replies, const char *text, ...) {
132         int r;
133
134         assert(ret);
135         assert(replies);
136         assert(text);
137
138         for (;;) {
139                 va_list ap;
140                 char c;
141                 bool need_nl = true;
142
143                 if (on_tty())
144                         fputs(ANSI_HIGHLIGHT_ON, stdout);
145
146                 va_start(ap, text);
147                 vprintf(text, ap);
148                 va_end(ap);
149
150                 if (on_tty())
151                         fputs(ANSI_HIGHLIGHT_OFF, stdout);
152
153                 fflush(stdout);
154
155                 r = read_one_char(stdin, &c, USEC_INFINITY, &need_nl);
156                 if (r < 0) {
157
158                         if (r == -EBADMSG) {
159                                 puts("Bad input, please try again.");
160                                 continue;
161                         }
162
163                         putchar('\n');
164                         return r;
165                 }
166
167                 if (need_nl)
168                         putchar('\n');
169
170                 if (strchr(replies, c)) {
171                         *ret = c;
172                         return 0;
173                 }
174
175                 puts("Read unexpected character, please try again.");
176         }
177 }
178
179 int ask_string(char **ret, const char *text, ...) {
180         assert(ret);
181         assert(text);
182
183         for (;;) {
184                 char line[LINE_MAX];
185                 va_list ap;
186
187                 if (on_tty())
188                         fputs(ANSI_HIGHLIGHT_ON, stdout);
189
190                 va_start(ap, text);
191                 vprintf(text, ap);
192                 va_end(ap);
193
194                 if (on_tty())
195                         fputs(ANSI_HIGHLIGHT_OFF, stdout);
196
197                 fflush(stdout);
198
199                 errno = 0;
200                 if (!fgets(line, sizeof(line), stdin))
201                         return errno ? -errno : -EIO;
202
203                 if (!endswith(line, "\n"))
204                         putchar('\n');
205                 else {
206                         char *s;
207
208                         if (isempty(line))
209                                 continue;
210
211                         truncate_nl(line);
212                         s = strdup(line);
213                         if (!s)
214                                 return -ENOMEM;
215
216                         *ret = s;
217                         return 0;
218                 }
219         }
220 }
221 #endif // 0
222
223 int reset_terminal_fd(int fd, bool switch_to_text) {
224         struct termios termios;
225         int r = 0;
226
227         /* Set terminal to some sane defaults */
228
229         assert(fd >= 0);
230
231         /* We leave locked terminal attributes untouched, so that
232          * Plymouth may set whatever it wants to set, and we don't
233          * interfere with that. */
234
235         /* Disable exclusive mode, just in case */
236         ioctl(fd, TIOCNXCL);
237
238         /* Switch to text mode */
239         if (switch_to_text)
240                 ioctl(fd, KDSETMODE, KD_TEXT);
241
242         /* Enable console unicode mode */
243         ioctl(fd, KDSKBMODE, K_UNICODE);
244
245         if (tcgetattr(fd, &termios) < 0) {
246                 r = -errno;
247                 goto finish;
248         }
249
250         /* We only reset the stuff that matters to the software. How
251          * hardware is set up we don't touch assuming that somebody
252          * else will do that for us */
253
254         termios.c_iflag &= ~(IGNBRK | BRKINT | ISTRIP | INLCR | IGNCR | IUCLC);
255         termios.c_iflag |= ICRNL | IMAXBEL | IUTF8;
256         termios.c_oflag |= ONLCR;
257         termios.c_cflag |= CREAD;
258         termios.c_lflag = ISIG | ICANON | IEXTEN | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOPRT | ECHOKE;
259
260         termios.c_cc[VINTR]    =   03;  /* ^C */
261         termios.c_cc[VQUIT]    =  034;  /* ^\ */
262         termios.c_cc[VERASE]   = 0177;
263         termios.c_cc[VKILL]    =  025;  /* ^X */
264         termios.c_cc[VEOF]     =   04;  /* ^D */
265         termios.c_cc[VSTART]   =  021;  /* ^Q */
266         termios.c_cc[VSTOP]    =  023;  /* ^S */
267         termios.c_cc[VSUSP]    =  032;  /* ^Z */
268         termios.c_cc[VLNEXT]   =  026;  /* ^V */
269         termios.c_cc[VWERASE]  =  027;  /* ^W */
270         termios.c_cc[VREPRINT] =  022;  /* ^R */
271         termios.c_cc[VEOL]     =    0;
272         termios.c_cc[VEOL2]    =    0;
273
274         termios.c_cc[VTIME]  = 0;
275         termios.c_cc[VMIN]   = 1;
276
277         if (tcsetattr(fd, TCSANOW, &termios) < 0)
278                 r = -errno;
279
280 finish:
281         /* Just in case, flush all crap out */
282         tcflush(fd, TCIOFLUSH);
283
284         return r;
285 }
286
287 int reset_terminal(const char *name) {
288         _cleanup_close_ int fd = -1;
289
290         fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
291         if (fd < 0)
292                 return fd;
293
294         return reset_terminal_fd(fd, true);
295 }
296
297 int open_terminal(const char *name, int mode) {
298         int fd, r;
299         unsigned c = 0;
300
301         /*
302          * If a TTY is in the process of being closed opening it might
303          * cause EIO. This is horribly awful, but unlikely to be
304          * changed in the kernel. Hence we work around this problem by
305          * retrying a couple of times.
306          *
307          * https://bugs.launchpad.net/ubuntu/+source/linux/+bug/554172/comments/245
308          */
309
310         assert(!(mode & O_CREAT));
311
312         for (;;) {
313                 fd = open(name, mode, 0);
314                 if (fd >= 0)
315                         break;
316
317                 if (errno != EIO)
318                         return -errno;
319
320                 /* Max 1s in total */
321                 if (c >= 20)
322                         return -errno;
323
324                 usleep(50 * USEC_PER_MSEC);
325                 c++;
326         }
327
328         r = isatty(fd);
329         if (r < 0) {
330                 safe_close(fd);
331                 return -errno;
332         }
333
334         if (!r) {
335                 safe_close(fd);
336                 return -ENOTTY;
337         }
338
339         return fd;
340 }
341
342 int acquire_terminal(
343                 const char *name,
344                 bool fail,
345                 bool force,
346                 bool ignore_tiocstty_eperm,
347                 usec_t timeout) {
348
349         int fd = -1, notify = -1, r = 0, wd = -1;
350         usec_t ts = 0;
351
352         assert(name);
353
354         /* We use inotify to be notified when the tty is closed. We
355          * create the watch before checking if we can actually acquire
356          * it, so that we don't lose any event.
357          *
358          * Note: strictly speaking this actually watches for the
359          * device being closed, it does *not* really watch whether a
360          * tty loses its controlling process. However, unless some
361          * rogue process uses TIOCNOTTY on /dev/tty *after* closing
362          * its tty otherwise this will not become a problem. As long
363          * as the administrator makes sure not configure any service
364          * on the same tty as an untrusted user this should not be a
365          * problem. (Which he probably should not do anyway.) */
366
367         if (timeout != USEC_INFINITY)
368                 ts = now(CLOCK_MONOTONIC);
369
370         if (!fail && !force) {
371                 notify = inotify_init1(IN_CLOEXEC | (timeout != USEC_INFINITY ? IN_NONBLOCK : 0));
372                 if (notify < 0) {
373                         r = -errno;
374                         goto fail;
375                 }
376
377                 wd = inotify_add_watch(notify, name, IN_CLOSE);
378                 if (wd < 0) {
379                         r = -errno;
380                         goto fail;
381                 }
382         }
383
384         for (;;) {
385                 struct sigaction sa_old, sa_new = {
386                         .sa_handler = SIG_IGN,
387                         .sa_flags = SA_RESTART,
388                 };
389
390                 if (notify >= 0) {
391                         r = flush_fd(notify);
392                         if (r < 0)
393                                 goto fail;
394                 }
395
396                 /* We pass here O_NOCTTY only so that we can check the return
397                  * value TIOCSCTTY and have a reliable way to figure out if we
398                  * successfully became the controlling process of the tty */
399                 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
400                 if (fd < 0)
401                         return fd;
402
403                 /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
404                  * if we already own the tty. */
405                 assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
406
407                 /* First, try to get the tty */
408                 if (ioctl(fd, TIOCSCTTY, force) < 0)
409                         r = -errno;
410
411                 assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
412
413                 /* Sometimes it makes sense to ignore TIOCSCTTY
414                  * returning EPERM, i.e. when very likely we already
415                  * are have this controlling terminal. */
416                 if (r < 0 && r == -EPERM && ignore_tiocstty_eperm)
417                         r = 0;
418
419                 if (r < 0 && (force || fail || r != -EPERM)) {
420                         goto fail;
421                 }
422
423                 if (r >= 0)
424                         break;
425
426                 assert(!fail);
427                 assert(!force);
428                 assert(notify >= 0);
429
430                 for (;;) {
431                         union inotify_event_buffer buffer;
432                         struct inotify_event *e;
433                         ssize_t l;
434
435                         if (timeout != USEC_INFINITY) {
436                                 usec_t n;
437
438                                 n = now(CLOCK_MONOTONIC);
439                                 if (ts + timeout < n) {
440                                         r = -ETIMEDOUT;
441                                         goto fail;
442                                 }
443
444                                 r = fd_wait_for_event(fd, POLLIN, ts + timeout - n);
445                                 if (r < 0)
446                                         goto fail;
447
448                                 if (r == 0) {
449                                         r = -ETIMEDOUT;
450                                         goto fail;
451                                 }
452                         }
453
454                         l = read(notify, &buffer, sizeof(buffer));
455                         if (l < 0) {
456                                 if (errno == EINTR || errno == EAGAIN)
457                                         continue;
458
459                                 r = -errno;
460                                 goto fail;
461                         }
462
463                         FOREACH_INOTIFY_EVENT(e, buffer, l) {
464                                 if (e->wd != wd || !(e->mask & IN_CLOSE)) {
465                                         r = -EIO;
466                                         goto fail;
467                                 }
468                         }
469
470                         break;
471                 }
472
473                 /* We close the tty fd here since if the old session
474                  * ended our handle will be dead. It's important that
475                  * we do this after sleeping, so that we don't enter
476                  * an endless loop. */
477                 fd = safe_close(fd);
478         }
479
480         safe_close(notify);
481
482         r = reset_terminal_fd(fd, true);
483         if (r < 0)
484                 log_warning_errno(r, "Failed to reset terminal: %m");
485
486         return fd;
487
488 fail:
489         safe_close(fd);
490         safe_close(notify);
491
492         return r;
493 }
494
495 /// UNNEEDED by elogind
496 #if 0
497 int release_terminal(void) {
498         static const struct sigaction sa_new = {
499                 .sa_handler = SIG_IGN,
500                 .sa_flags = SA_RESTART,
501         };
502
503         _cleanup_close_ int fd = -1;
504         struct sigaction sa_old;
505         int r = 0;
506
507         fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_NDELAY|O_CLOEXEC);
508         if (fd < 0)
509                 return -errno;
510
511         /* Temporarily ignore SIGHUP, so that we don't get SIGHUP'ed
512          * by our own TIOCNOTTY */
513         assert_se(sigaction(SIGHUP, &sa_new, &sa_old) == 0);
514
515         if (ioctl(fd, TIOCNOTTY) < 0)
516                 r = -errno;
517
518         assert_se(sigaction(SIGHUP, &sa_old, NULL) == 0);
519
520         return r;
521 }
522 #endif // 0
523
524 int terminal_vhangup_fd(int fd) {
525         assert(fd >= 0);
526
527         if (ioctl(fd, TIOCVHANGUP) < 0)
528                 return -errno;
529
530         return 0;
531 }
532
533 int terminal_vhangup(const char *name) {
534         _cleanup_close_ int fd;
535
536         fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
537         if (fd < 0)
538                 return fd;
539
540         return terminal_vhangup_fd(fd);
541 }
542
543 int vt_disallocate(const char *name) {
544         int fd, r;
545         unsigned u;
546
547         /* Deallocate the VT if possible. If not possible
548          * (i.e. because it is the active one), at least clear it
549          * entirely (including the scrollback buffer) */
550
551         if (!startswith(name, "/dev/"))
552                 return -EINVAL;
553
554         if (!tty_is_vc(name)) {
555                 /* So this is not a VT. I guess we cannot deallocate
556                  * it then. But let's at least clear the screen */
557
558                 fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
559                 if (fd < 0)
560                         return fd;
561
562                 loop_write(fd,
563                            "\033[r"    /* clear scrolling region */
564                            "\033[H"    /* move home */
565                            "\033[2J",  /* clear screen */
566                            10, false);
567                 safe_close(fd);
568
569                 return 0;
570         }
571
572         if (!startswith(name, "/dev/tty"))
573                 return -EINVAL;
574
575         r = safe_atou(name+8, &u);
576         if (r < 0)
577                 return r;
578
579         if (u <= 0)
580                 return -EINVAL;
581
582         /* Try to deallocate */
583         fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
584         if (fd < 0)
585                 return fd;
586
587         r = ioctl(fd, VT_DISALLOCATE, u);
588         safe_close(fd);
589
590         if (r >= 0)
591                 return 0;
592
593         if (errno != EBUSY)
594                 return -errno;
595
596         /* Couldn't deallocate, so let's clear it fully with
597          * scrollback */
598         fd = open_terminal(name, O_RDWR|O_NOCTTY|O_CLOEXEC);
599         if (fd < 0)
600                 return fd;
601
602         loop_write(fd,
603                    "\033[r"   /* clear scrolling region */
604                    "\033[H"   /* move home */
605                    "\033[3J", /* clear screen including scrollback, requires Linux 2.6.40 */
606                    10, false);
607         safe_close(fd);
608
609         return 0;
610 }
611
612 void warn_melody(void) {
613         _cleanup_close_ int fd = -1;
614
615         fd = open("/dev/console", O_WRONLY|O_CLOEXEC|O_NOCTTY);
616         if (fd < 0)
617                 return;
618
619         /* Yeah, this is synchronous. Kinda sucks. But well... */
620
621         ioctl(fd, KIOCSOUND, (int)(1193180/440));
622         usleep(125*USEC_PER_MSEC);
623
624         ioctl(fd, KIOCSOUND, (int)(1193180/220));
625         usleep(125*USEC_PER_MSEC);
626
627         ioctl(fd, KIOCSOUND, (int)(1193180/220));
628         usleep(125*USEC_PER_MSEC);
629
630         ioctl(fd, KIOCSOUND, 0);
631 }
632
633 /// UNNEEDED by elogind
634 #if 0
635 int make_console_stdio(void) {
636         int fd, r;
637
638         /* Make /dev/console the controlling terminal and stdin/stdout/stderr */
639
640         fd = acquire_terminal("/dev/console", false, true, true, USEC_INFINITY);
641         if (fd < 0)
642                 return log_error_errno(fd, "Failed to acquire terminal: %m");
643
644         r = make_stdio(fd);
645         if (r < 0)
646                 return log_error_errno(r, "Failed to duplicate terminal fd: %m");
647
648         return 0;
649 }
650 #endif // 0
651
652 int status_vprintf(const char *status, bool ellipse, bool ephemeral, const char *format, va_list ap) {
653         static const char status_indent[] = "         "; /* "[" STATUS "] " */
654         _cleanup_free_ char *s = NULL;
655         _cleanup_close_ int fd = -1;
656         struct iovec iovec[6] = {};
657         int n = 0;
658         static bool prev_ephemeral;
659
660         assert(format);
661
662         /* This is independent of logging, as status messages are
663          * optional and go exclusively to the console. */
664
665         if (vasprintf(&s, format, ap) < 0)
666                 return log_oom();
667
668         fd = open_terminal("/dev/console", O_WRONLY|O_NOCTTY|O_CLOEXEC);
669         if (fd < 0)
670                 return fd;
671
672         if (ellipse) {
673                 char *e;
674                 size_t emax, sl;
675                 int c;
676
677                 c = fd_columns(fd);
678                 if (c <= 0)
679                         c = 80;
680
681                 sl = status ? sizeof(status_indent)-1 : 0;
682
683                 emax = c - sl - 1;
684                 if (emax < 3)
685                         emax = 3;
686
687                 e = ellipsize(s, emax, 50);
688                 if (e) {
689                         free(s);
690                         s = e;
691                 }
692         }
693
694         if (prev_ephemeral)
695                 IOVEC_SET_STRING(iovec[n++], "\r" ANSI_ERASE_TO_END_OF_LINE);
696         prev_ephemeral = ephemeral;
697
698         if (status) {
699                 if (!isempty(status)) {
700                         IOVEC_SET_STRING(iovec[n++], "[");
701                         IOVEC_SET_STRING(iovec[n++], status);
702                         IOVEC_SET_STRING(iovec[n++], "] ");
703                 } else
704                         IOVEC_SET_STRING(iovec[n++], status_indent);
705         }
706
707         IOVEC_SET_STRING(iovec[n++], s);
708         if (!ephemeral)
709                 IOVEC_SET_STRING(iovec[n++], "\n");
710
711         if (writev(fd, iovec, n) < 0)
712                 return -errno;
713
714         return 0;
715 }
716
717 int status_printf(const char *status, bool ellipse, bool ephemeral, const char *format, ...) {
718         va_list ap;
719         int r;
720
721         assert(format);
722
723         va_start(ap, format);
724         r = status_vprintf(status, ellipse, ephemeral, format, ap);
725         va_end(ap);
726
727         return r;
728 }
729
730 bool tty_is_vc(const char *tty) {
731         assert(tty);
732
733         return vtnr_from_tty(tty) >= 0;
734 }
735
736 bool tty_is_console(const char *tty) {
737         assert(tty);
738
739         if (startswith(tty, "/dev/"))
740                 tty += 5;
741
742         return streq(tty, "console");
743 }
744
745 int vtnr_from_tty(const char *tty) {
746         int i, r;
747
748         assert(tty);
749
750         if (startswith(tty, "/dev/"))
751                 tty += 5;
752
753         if (!startswith(tty, "tty") )
754                 return -EINVAL;
755
756         if (tty[3] < '0' || tty[3] > '9')
757                 return -EINVAL;
758
759         r = safe_atoi(tty+3, &i);
760         if (r < 0)
761                 return r;
762
763         if (i < 0 || i > 63)
764                 return -EINVAL;
765
766         return i;
767 }
768
769 char *resolve_dev_console(char **active) {
770         char *tty;
771
772         /* Resolve where /dev/console is pointing to, if /sys is actually ours
773          * (i.e. not read-only-mounted which is a sign for container setups) */
774
775         if (path_is_read_only_fs("/sys") > 0)
776                 return NULL;
777
778         if (read_one_line_file("/sys/class/tty/console/active", active) < 0)
779                 return NULL;
780
781         /* If multiple log outputs are configured the last one is what
782          * /dev/console points to */
783         tty = strrchr(*active, ' ');
784         if (tty)
785                 tty++;
786         else
787                 tty = *active;
788
789         if (streq(tty, "tty0")) {
790                 char *tmp;
791
792                 /* Get the active VC (e.g. tty1) */
793                 if (read_one_line_file("/sys/class/tty/tty0/active", &tmp) >= 0) {
794                         free(*active);
795                         tty = *active = tmp;
796                 }
797         }
798
799         return tty;
800 }
801
802 bool tty_is_vc_resolve(const char *tty) {
803         _cleanup_free_ char *active = NULL;
804
805         assert(tty);
806
807         if (startswith(tty, "/dev/"))
808                 tty += 5;
809
810         if (streq(tty, "console")) {
811                 tty = resolve_dev_console(&active);
812                 if (!tty)
813                         return false;
814         }
815
816         return tty_is_vc(tty);
817 }
818
819 /// UNNEEDED by elogind
820 #if 0
821 const char *default_term_for_tty(const char *tty) {
822         assert(tty);
823
824         return tty_is_vc_resolve(tty) ? "TERM=linux" : "TERM=vt220";
825 }
826 #endif // 0
827
828 int fd_columns(int fd) {
829         struct winsize ws = {};
830
831         if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
832                 return -errno;
833
834         if (ws.ws_col <= 0)
835                 return -EIO;
836
837         return ws.ws_col;
838 }
839
840 unsigned columns(void) {
841         const char *e;
842         int c;
843
844         if (_likely_(cached_columns > 0))
845                 return cached_columns;
846
847         c = 0;
848         e = getenv("COLUMNS");
849         if (e)
850                 (void) safe_atoi(e, &c);
851
852         if (c <= 0)
853                 c = fd_columns(STDOUT_FILENO);
854
855         if (c <= 0)
856                 c = 80;
857
858         cached_columns = c;
859         return cached_columns;
860 }
861
862 int fd_lines(int fd) {
863         struct winsize ws = {};
864
865         if (ioctl(fd, TIOCGWINSZ, &ws) < 0)
866                 return -errno;
867
868         if (ws.ws_row <= 0)
869                 return -EIO;
870
871         return ws.ws_row;
872 }
873
874 unsigned lines(void) {
875         const char *e;
876         int l;
877
878         if (_likely_(cached_lines > 0))
879                 return cached_lines;
880
881         l = 0;
882         e = getenv("LINES");
883         if (e)
884                 (void) safe_atoi(e, &l);
885
886         if (l <= 0)
887                 l = fd_lines(STDOUT_FILENO);
888
889         if (l <= 0)
890                 l = 24;
891
892         cached_lines = l;
893         return cached_lines;
894 }
895
896 /* intended to be used as a SIGWINCH sighandler */
897 /// UNNEEDED by elogind
898 #if 0
899 void columns_lines_cache_reset(int signum) {
900         cached_columns = 0;
901         cached_lines = 0;
902 }
903 #endif // 0
904
905 bool on_tty(void) {
906         static int cached_on_tty = -1;
907
908         if (_unlikely_(cached_on_tty < 0))
909                 cached_on_tty = isatty(STDOUT_FILENO) > 0;
910
911         return cached_on_tty;
912 }
913
914 int make_stdio(int fd) {
915         int r, s, t;
916
917         assert(fd >= 0);
918
919         r = dup2(fd, STDIN_FILENO);
920         s = dup2(fd, STDOUT_FILENO);
921         t = dup2(fd, STDERR_FILENO);
922
923         if (fd >= 3)
924                 safe_close(fd);
925
926         if (r < 0 || s < 0 || t < 0)
927                 return -errno;
928
929         /* Explicitly unset O_CLOEXEC, since if fd was < 3, then
930          * dup2() was a NOP and the bit hence possibly set. */
931         fd_cloexec(STDIN_FILENO, false);
932         fd_cloexec(STDOUT_FILENO, false);
933         fd_cloexec(STDERR_FILENO, false);
934
935         return 0;
936 }
937
938 int make_null_stdio(void) {
939         int null_fd;
940
941         null_fd = open("/dev/null", O_RDWR|O_NOCTTY);
942         if (null_fd < 0)
943                 return -errno;
944
945         return make_stdio(null_fd);
946 }
947
948 int getttyname_malloc(int fd, char **ret) {
949         size_t l = 100;
950         int r;
951
952         assert(fd >= 0);
953         assert(ret);
954
955         for (;;) {
956                 char path[l];
957
958                 r = ttyname_r(fd, path, sizeof(path));
959                 if (r == 0) {
960                         const char *p;
961                         char *c;
962
963                         p = startswith(path, "/dev/");
964                         c = strdup(p ?: path);
965                         if (!c)
966                                 return -ENOMEM;
967
968                         *ret = c;
969                         return 0;
970                 }
971
972                 if (r != ERANGE)
973                         return -r;
974
975                 l *= 2;
976         }
977
978         return 0;
979 }
980
981 /// UNNEEDED by elogind
982 #if 0
983 int getttyname_harder(int fd, char **r) {
984         int k;
985         char *s = NULL;
986
987         k = getttyname_malloc(fd, &s);
988         if (k < 0)
989                 return k;
990
991         if (streq(s, "tty")) {
992                 free(s);
993                 return get_ctty(0, NULL, r);
994         }
995
996         *r = s;
997         return 0;
998 }
999 #endif // 0
1000
1001 int get_ctty_devnr(pid_t pid, dev_t *d) {
1002         int r;
1003         _cleanup_free_ char *line = NULL;
1004         const char *p;
1005         unsigned long ttynr;
1006
1007         assert(pid >= 0);
1008
1009         p = procfs_file_alloca(pid, "stat");
1010         r = read_one_line_file(p, &line);
1011         if (r < 0)
1012                 return r;
1013
1014         p = strrchr(line, ')');
1015         if (!p)
1016                 return -EIO;
1017
1018         p++;
1019
1020         if (sscanf(p, " "
1021                    "%*c "  /* state */
1022                    "%*d "  /* ppid */
1023                    "%*d "  /* pgrp */
1024                    "%*d "  /* session */
1025                    "%lu ", /* ttynr */
1026                    &ttynr) != 1)
1027                 return -EIO;
1028
1029         if (major(ttynr) == 0 && minor(ttynr) == 0)
1030                 return -ENXIO;
1031
1032         if (d)
1033                 *d = (dev_t) ttynr;
1034
1035         return 0;
1036 }
1037
1038 int get_ctty(pid_t pid, dev_t *_devnr, char **r) {
1039         char fn[sizeof("/dev/char/")-1 + 2*DECIMAL_STR_MAX(unsigned) + 1 + 1], *b = NULL;
1040         _cleanup_free_ char *s = NULL;
1041         const char *p;
1042         dev_t devnr;
1043         int k;
1044
1045         assert(r);
1046
1047         k = get_ctty_devnr(pid, &devnr);
1048         if (k < 0)
1049                 return k;
1050
1051         sprintf(fn, "/dev/char/%u:%u", major(devnr), minor(devnr));
1052
1053         k = readlink_malloc(fn, &s);
1054         if (k < 0) {
1055
1056                 if (k != -ENOENT)
1057                         return k;
1058
1059                 /* This is an ugly hack */
1060                 if (major(devnr) == 136) {
1061                         if (asprintf(&b, "pts/%u", minor(devnr)) < 0)
1062                                 return -ENOMEM;
1063                 } else {
1064                         /* Probably something like the ptys which have no
1065                          * symlink in /dev/char. Let's return something
1066                          * vaguely useful. */
1067
1068                         b = strdup(fn + 5);
1069                         if (!b)
1070                                 return -ENOMEM;
1071                 }
1072         } else {
1073                 if (startswith(s, "/dev/"))
1074                         p = s + 5;
1075                 else if (startswith(s, "../"))
1076                         p = s + 3;
1077                 else
1078                         p = s;
1079
1080                 b = strdup(p);
1081                 if (!b)
1082                         return -ENOMEM;
1083         }
1084
1085         *r = b;
1086         if (_devnr)
1087                 *_devnr = devnr;
1088
1089         return 0;
1090 }