2005-08-01 23:42:30 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2017-10-05 18:10:24 +05:30
|
|
|
* setconsole.c - redirect system console output
|
2005-08-01 23:42:30 +05:30
|
|
|
*
|
2017-10-05 18:10:24 +05:30
|
|
|
* Copyright (C) 2004,2005 Enrik Berkhan <Enrik.Berkhan@inka.de>
|
|
|
|
* Copyright (C) 2008 Bernhard Reutner-Fischer
|
2005-08-01 23:42:30 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2005-08-01 23:42:30 +05:30
|
|
|
*/
|
2016-11-23 15:09:27 +05:30
|
|
|
//config:config SETCONSOLE
|
2017-07-19 01:31:24 +05:30
|
|
|
//config: bool "setconsole (3.7 kb)"
|
2016-11-23 15:09:27 +05:30
|
|
|
//config: default y
|
|
|
|
//config: select PLATFORM_LINUX
|
|
|
|
//config: help
|
2017-08-07 21:06:41 +05:30
|
|
|
//config: Redirect writes to /dev/console to another device,
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: like the current tty while logged in via telnet.
|
2017-08-07 21:06:41 +05:30
|
|
|
//config: This does not redirect kernel log, only writes
|
|
|
|
//config: from user space.
|
2016-11-23 15:09:27 +05:30
|
|
|
//config:
|
|
|
|
//config:config FEATURE_SETCONSOLE_LONG_OPTIONS
|
|
|
|
//config: bool "Enable long options"
|
|
|
|
//config: default y
|
|
|
|
//config: depends on SETCONSOLE && LONG_OPTS
|
|
|
|
|
2017-08-06 22:26:25 +05:30
|
|
|
//applet:IF_SETCONSOLE(APPLET_NOEXEC(setconsole, setconsole, BB_DIR_SBIN, BB_SUID_DROP, setconsole))
|
2016-11-23 15:09:27 +05:30
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_SETCONSOLE) += setconsole.o
|
2005-08-01 23:42:30 +05:30
|
|
|
|
2011-03-28 03:12:28 +05:30
|
|
|
//usage:#define setconsole_trivial_usage
|
2017-08-06 22:24:16 +05:30
|
|
|
//usage: "[-r] [DEVICE]"
|
2011-03-28 03:12:28 +05:30
|
|
|
//usage:#define setconsole_full_usage "\n\n"
|
2017-08-07 21:06:41 +05:30
|
|
|
//usage: "Make writes to /dev/console appear on DEVICE (default: /dev/tty)."
|
|
|
|
//usage: "\n""Does not redirect kernel log output or reads from /dev/console."
|
|
|
|
//usage: "\n"
|
|
|
|
//usage: "\n"" -r Reset: writes to /dev/console go to kernel log tty(s)"
|
2011-03-28 03:12:28 +05:30
|
|
|
|
2017-08-06 22:24:16 +05:30
|
|
|
/* It was a bbox-specific invention, but SUSE does have a similar utility.
|
|
|
|
* SUSE has no -r option, though.
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-08-01 23:42:30 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int setconsole_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int setconsole_main(int argc UNUSED_PARAM, char **argv)
|
2005-08-01 23:42:30 +05:30
|
|
|
{
|
2005-09-08 08:57:06 +05:30
|
|
|
const char *device = CURRENT_TTY;
|
2017-08-07 21:06:41 +05:30
|
|
|
int reset;
|
2005-08-01 23:42:30 +05:30
|
|
|
|
2008-05-19 13:48:50 +05:30
|
|
|
/* at most one non-option argument */
|
2017-08-09 01:25:02 +05:30
|
|
|
reset = getopt32(argv, "^" "r" "\0" "?1");
|
2005-08-01 23:42:30 +05:30
|
|
|
|
2008-05-19 13:48:50 +05:30
|
|
|
argv += 1 + reset;
|
|
|
|
if (*argv) {
|
|
|
|
device = *argv;
|
2005-08-01 23:42:30 +05:30
|
|
|
} else {
|
2008-05-19 13:48:50 +05:30
|
|
|
if (reset)
|
2007-02-17 21:22:02 +05:30
|
|
|
device = DEV_CONSOLE;
|
2005-08-01 23:42:30 +05:30
|
|
|
}
|
|
|
|
|
2017-08-07 21:06:41 +05:30
|
|
|
//TODO: fails if TIOCCONS redir is already active to some tty.
|
|
|
|
//I think SUSE version first does TIOCCONS on /dev/console fd (iow: resets)
|
|
|
|
//then TIOCCONS to new tty?
|
2011-05-26 21:21:37 +05:30
|
|
|
xioctl(xopen(device, O_WRONLY), TIOCCONS, NULL);
|
2005-08-01 23:42:30 +05:30
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|