diff options
-rw-r--r-- | interface-definitions/system-console.xml.in | 86 | ||||
-rwxr-xr-x | src/conf_mode/system_console.py | 111 |
2 files changed, 197 insertions, 0 deletions
diff --git a/interface-definitions/system-console.xml.in b/interface-definitions/system-console.xml.in new file mode 100644 index 000000000..ccaaa51b2 --- /dev/null +++ b/interface-definitions/system-console.xml.in @@ -0,0 +1,86 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="system"> + <children> + <node name="console" owner="${vyos_conf_scripts_dir}/system_console.py"> + <properties> + <help>Serial console configuration</help> + <priority>100</priority> + </properties> + <children> + <tagNode name="device"> + <properties> + <help>Serial console device name</help> + <valueHelp> + <format>ttySN</format> + <description>Serial device name</description> + </valueHelp> + <valueHelp> + <format>ttyUSBX</format> + <description>USB Serial device name</description> + </valueHelp> + <valueHelp> + <format>hvc0</format> + <description>Xen console</description> + </valueHelp> + <constraint> + <regex>^(ttyS|ttyUSB|hvc)[0-9]+$</regex> + </constraint> + </properties> + <children> + <leafNode name="speed"> + <properties> + <help>Console baud rate</help> + <completionHelp> + <list>1200 2400 4800 9600 19200 38400 57600 115200</list> + </completionHelp> + <valueHelp> + <format>1200</format> + <description>1200 bps</description> + </valueHelp> + <valueHelp> + <format>2400</format> + <description>2400 bps</description> + </valueHelp> + <valueHelp> + <format>4800</format> + <description>4800 bps</description> + </valueHelp> + <valueHelp> + <format>9600</format> + <description>9600 bps</description> + </valueHelp> + <valueHelp> + <format>19200</format> + <description>19200 bps</description> + </valueHelp> + <valueHelp> + <format>38400</format> + <description>38400 bps</description> + </valueHelp> + <valueHelp> + <format>57600</format> + <description>57600 bps</description> + </valueHelp> + <valueHelp> + <format>115200</format> + <description>115200 bps</description> + </valueHelp> + <constraint> + <regex>(1200|2400|4800|9600|19200|38400|57600|115200)</regex> + </constraint> + </properties> + </leafNode> + </children> + </tagNode> + <leafNode name="powersave"> + <properties> + <help>Enable screen blank powersaving on VGA console</help> + <valueless/> + </properties> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> diff --git a/src/conf_mode/system_console.py b/src/conf_mode/system_console.py new file mode 100755 index 000000000..d1d9b7c70 --- /dev/null +++ b/src/conf_mode/system_console.py @@ -0,0 +1,111 @@ +#!/usr/bin/env python3 +# +# Copyright (C) 2020 VyOS maintainers and contributors +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 or later as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import os + +from vyos.config import Config +from vyos.util import call +from vyos import ConfigError, airbag +airbag.enable() + +serial_getty_file = '/lib/systemd/system/serial-getty@.service' + +def get_config(): + conf = Config() + base = ['system', 'console'] + + if not conf.exists(base): + return None + + # retrieve configuration at once + console = conf.get_config_dict(base) + + # set default values + if 'device' in console.keys(): + for device in console['device'].keys(): + # no speed setting has been configured - use default value + if not 'speed' in console['device'][device].keys(): + tmp = { 'speed': '' } + if device.startswith('hvc'): + tmp['speed'] = 38400 + else: + tmp['speed'] = 115200 + + console['device'][device].update(tmp) + + return console + +def verify(console): + if not os.path.isfile(serial_getty_file): + raise ConfigError(f'Could not open: {serial_getty_file}') + + return None + +def generate(console): + base_dir = '/etc/systemd/system' + # Remove all serial-getty configuration files in advance + for root, dirs, files in os.walk(base_dir): + for basename in files: + if 'serial-getty' in basename: + call(f'systemctl stop {basename}') + os.unlink(os.path.join(root, basename)) + + # bail out early if serial device is not configured + if not console or 'device' not in console.keys(): + return None + + for device in console['device'].keys(): + serial_getty_device_file = f'{base_dir}/serial-getty@{device}.service' + serial_getty_wants_file = f'{base_dir}/getty.target.wants/serial-getty@{device}.service' + + with open(serial_getty_file, 'r') as f: + tmp = f.read() + tmp = tmp.replace('115200,38400,9600', str(console['device'][device]['speed'])) + + with open(serial_getty_device_file, 'w') as f: + f.write(tmp) + + # Reload systemd manager configuration + call('systemctl daemon-reload') + return None + +def apply(console): + # bail out early + if not console: + call( '/usr/bin/setterm -blank 0 -powersave off -powerdown 0 -term linux </dev/console >/dev/console 2>&1') + return None + + # Configure screen blank powersaving on VGA console + if 'powersave' in console.keys(): + call('/usr/bin/setterm -blank 15 -powersave powerdown -powerdown 60 -term linux </dev/console >/dev/console 2>&1') + else: + call( '/usr/bin/setterm -blank 0 -powersave off -powerdown 0 -term linux </dev/console >/dev/console 2>&1') + + # Start getty process on configured serial interfaces + for device in console['device'].keys(): + call(f'systemctl start serial-getty@{device}.service') + + return None + +if __name__ == '__main__': + try: + c = get_config() + verify(c) + generate(c) + apply(c) + except ConfigError as e: + print(e) + exit(1) |