blob: d47a33d59803e26ce1be63703d6c7bb6de798c06 [file] [log] [blame]
Paul Foxfc2256a2005-08-01 18:12:30 +00001/* vi: set sw=4 ts=4: */
2/*
3 * setconsole.c - redirect system console output
4 *
5 * Copyright (C) 2004,2005 Enrik Berkhan <Enrik.Berkhan@inka.de>
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00006 * Copyright (C) 2008 Bernhard Reutner-Fischer
Paul Foxfc2256a2005-08-01 18:12:30 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Paul Foxfc2256a2005-08-01 18:12:30 +00009 */
Denys Vlasenko6d932992016-11-23 10:39:27 +010010//config:config SETCONSOLE
11//config: bool "setconsole"
12//config: default y
13//config: select PLATFORM_LINUX
14//config: help
15//config: This program redirects the system console to another device,
16//config: like the current tty while logged in via telnet.
17//config:
18//config:config FEATURE_SETCONSOLE_LONG_OPTIONS
19//config: bool "Enable long options"
20//config: default y
21//config: depends on SETCONSOLE && LONG_OPTS
Denys Vlasenko6d932992016-11-23 10:39:27 +010022
23//applet:IF_SETCONSOLE(APPLET(setconsole, BB_DIR_SBIN, BB_SUID_DROP))
24
25//kbuild:lib-$(CONFIG_SETCONSOLE) += setconsole.o
Paul Foxfc2256a2005-08-01 18:12:30 +000026
Pere Orga55068c42011-03-27 23:42:28 +020027//usage:#define setconsole_trivial_usage
28//usage: "[-r" IF_FEATURE_SETCONSOLE_LONG_OPTIONS("|--reset") "] [DEVICE]"
29//usage:#define setconsole_full_usage "\n\n"
30//usage: "Redirect system console output to DEVICE (default: /dev/tty)\n"
Pere Orga55068c42011-03-27 23:42:28 +020031//usage: "\n -r Reset output to /dev/console"
32
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000033#include "libbb.h"
Paul Foxfc2256a2005-08-01 18:12:30 +000034
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000035int setconsole_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000036int setconsole_main(int argc UNUSED_PARAM, char **argv)
Paul Foxfc2256a2005-08-01 18:12:30 +000037{
Rob Landley9f0e00f2005-09-08 03:27:06 +000038 const char *device = CURRENT_TTY;
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000039 bool reset;
Paul Foxfc2256a2005-08-01 18:12:30 +000040
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000041#if ENABLE_FEATURE_SETCONSOLE_LONG_OPTIONS
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000042 static const char setconsole_longopts[] ALIGN1 =
43 "reset\0" No_argument "r"
44 ;
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +000045 applet_long_options = setconsole_longopts;
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +000046#endif
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000047 /* at most one non-option argument */
48 opt_complementary = "?1";
49 reset = getopt32(argv, "r");
Paul Foxfc2256a2005-08-01 18:12:30 +000050
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000051 argv += 1 + reset;
52 if (*argv) {
53 device = *argv;
Paul Foxfc2256a2005-08-01 18:12:30 +000054 } else {
Bernhard Reutner-Fischerae4342c2008-05-19 08:18:50 +000055 if (reset)
Denis Vlasenkoec27feb2007-02-17 15:52:02 +000056 device = DEV_CONSOLE;
Paul Foxfc2256a2005-08-01 18:12:30 +000057 }
58
Peter Korsgaard8dc61952011-05-26 17:51:37 +020059 xioctl(xopen(device, O_WRONLY), TIOCCONS, NULL);
Paul Foxfc2256a2005-08-01 18:12:30 +000060 return EXIT_SUCCESS;
61}