1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2013 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
26 #include "udev-util.h"
29 int main(int argc, char *argv[]) {
30 _cleanup_udev_unref_ struct udev *udev = NULL;
31 _cleanup_udev_device_unref_ struct udev_device *device = NULL;
32 _cleanup_free_ char *saved = NULL, *escaped_name = NULL, *escaped_path_id = NULL;
33 const char *name, *path_id;
37 log_error("This program requires two arguments.");
41 log_set_target(LOG_TARGET_AUTO);
42 log_parse_environment();
47 r = mkdir_p("/var/lib/systemd/rfkill", 0755);
49 log_error("Failed to create rfkill directory: %s", strerror(-r));
60 device = udev_device_new_from_subsystem_sysname(udev, "rfkill", argv[2]);
63 log_error("Failed to get rfkill device '%s': %m", argv[2]);
70 name = udev_device_get_sysattr_value(device, "name");
72 log_error("rfkill device has no name?");
76 escaped_name = cescape(name);
82 path_id = udev_device_get_property_value(device, "ID_PATH");
84 escaped_path_id = cescape(path_id);
85 if (!escaped_path_id) {
90 saved = strjoin("/var/lib/systemd/rfkill/", escaped_path_id, ":", escaped_name, NULL);
92 saved = strjoin("/var/lib/systemd/rfkill/", escaped_name, NULL);
99 if (streq(argv[1], "load") && restore_state()) {
100 _cleanup_free_ char *value = NULL;
102 r = read_one_line_file(saved, &value);
108 log_error("Failed to read %s: %s", saved, strerror(-r));
112 r = udev_device_set_sysattr_value(device, "soft", value);
114 log_error("Failed to write system attribute: %s", strerror(-r));
118 } else if (streq(argv[1], "save")) {
121 value = udev_device_get_sysattr_value(device, "soft");
123 log_error("Failed to read system attribute: %s", strerror(-r));
127 r = write_string_file(saved, value);
129 log_error("Failed to write %s: %s", saved, strerror(-r));
134 log_error("Unknown verb %s.", argv[1]);