2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2020-11-15 12:11:21 +00:00
|
|
|
#include <AK/ByteBuffer.h>
|
2019-09-06 13:34:26 +00:00
|
|
|
#include <AK/String.h>
|
2019-01-18 14:35:38 +00:00
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <AK/Vector.h>
|
2020-02-06 14:04:03 +00:00
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibCore/DirIterator.h>
|
|
|
|
#include <LibCore/File.h>
|
2019-06-07 09:49:31 +00:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2019-01-18 14:35:38 +00:00
|
|
|
|
2019-05-17 13:01:41 +00:00
|
|
|
static String read_var(const String& name)
|
2019-01-18 14:35:38 +00:00
|
|
|
{
|
2019-05-17 13:01:41 +00:00
|
|
|
StringBuilder builder;
|
|
|
|
builder.append("/proc/sys/");
|
|
|
|
builder.append(name);
|
|
|
|
auto path = builder.to_string();
|
2020-02-02 11:34:39 +00:00
|
|
|
auto f = Core::File::construct(path);
|
|
|
|
if (!f->open(Core::IODevice::ReadOnly)) {
|
2020-05-04 00:24:42 +00:00
|
|
|
fprintf(stderr, "open: %s\n", f->error_string());
|
2019-05-17 13:01:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-09-21 18:50:06 +00:00
|
|
|
const auto& b = f->read_all();
|
|
|
|
if (f->error() < 0) {
|
2020-05-04 00:24:42 +00:00
|
|
|
fprintf(stderr, "read: %s\n", f->error_string());
|
2019-05-17 13:01:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-09-30 06:57:01 +00:00
|
|
|
return String((const char*)b.data(), b.size(), Chomp);
|
2019-01-18 14:35:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 13:01:41 +00:00
|
|
|
static void write_var(const String& name, const String& value)
|
2019-01-18 14:35:38 +00:00
|
|
|
{
|
2019-05-17 13:01:41 +00:00
|
|
|
StringBuilder builder;
|
|
|
|
builder.append("/proc/sys/");
|
|
|
|
builder.append(name);
|
|
|
|
auto path = builder.to_string();
|
2020-02-02 11:34:39 +00:00
|
|
|
auto f = Core::File::construct(path);
|
|
|
|
if (!f->open(Core::IODevice::WriteOnly)) {
|
2020-05-04 00:24:42 +00:00
|
|
|
fprintf(stderr, "open: %s\n", f->error_string());
|
2019-05-17 13:01:41 +00:00
|
|
|
exit(1);
|
2019-01-18 14:35:38 +00:00
|
|
|
}
|
2019-09-21 18:50:06 +00:00
|
|
|
f->write(value);
|
|
|
|
if (f->error() < 0) {
|
2020-05-04 00:24:42 +00:00
|
|
|
fprintf(stderr, "write: %s\n", f->error_string());
|
2019-05-17 13:01:41 +00:00
|
|
|
exit(1);
|
2019-01-18 14:35:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-17 13:01:41 +00:00
|
|
|
static int handle_show_all()
|
2019-01-18 14:35:38 +00:00
|
|
|
{
|
2020-02-02 11:34:39 +00:00
|
|
|
Core::DirIterator di("/proc/sys", Core::DirIterator::SkipDots);
|
2019-05-27 07:26:54 +00:00
|
|
|
if (di.has_error()) {
|
2020-03-06 22:37:51 +00:00
|
|
|
fprintf(stderr, "DirIterator: %s\n", di.error_string());
|
2019-01-18 14:35:38 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-05-27 07:26:54 +00:00
|
|
|
while (di.has_next()) {
|
2019-06-02 10:05:06 +00:00
|
|
|
String variable_name = di.next_path();
|
|
|
|
printf("%s = %s\n", variable_name.characters(), read_var(variable_name).characters());
|
2019-01-18 14:35:38 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-05-17 13:01:41 +00:00
|
|
|
static int handle_var(const String& var)
|
2019-01-18 14:35:38 +00:00
|
|
|
{
|
2019-05-17 13:01:41 +00:00
|
|
|
String spec(var.characters(), Chomp);
|
2019-01-18 14:35:38 +00:00
|
|
|
auto parts = spec.split('=');
|
|
|
|
String variable_name = parts[0];
|
|
|
|
bool is_write = parts.size() > 1;
|
|
|
|
|
|
|
|
if (!is_write) {
|
|
|
|
printf("%s = %s\n", variable_name.characters(), read_var(variable_name).characters());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("%s = %s", variable_name.characters(), read_var(variable_name).characters());
|
|
|
|
write_var(variable_name, parts[1]);
|
|
|
|
printf(" -> %s\n", read_var(variable_name).characters());
|
|
|
|
return 0;
|
|
|
|
}
|
2019-05-17 13:01:41 +00:00
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2020-01-27 17:25:36 +00:00
|
|
|
bool show_all = false;
|
|
|
|
const char* var = nullptr;
|
2019-05-17 13:01:41 +00:00
|
|
|
|
2020-02-02 11:34:39 +00:00
|
|
|
Core::ArgsParser args_parser;
|
2020-12-05 15:22:58 +00:00
|
|
|
args_parser.set_general_help(
|
|
|
|
"Show or modify system-internal values. This requires root, and can crash your system.");
|
2020-01-27 17:25:36 +00:00
|
|
|
args_parser.add_option(show_all, "Show all variables", nullptr, 'a');
|
2020-05-04 00:26:17 +00:00
|
|
|
args_parser.add_positional_argument(var, "Command (var[=value])", "command", Core::ArgsParser::Required::No);
|
2020-01-27 17:25:36 +00:00
|
|
|
args_parser.parse(argc, argv);
|
2019-05-17 13:01:41 +00:00
|
|
|
|
2020-05-04 00:26:17 +00:00
|
|
|
if (var == nullptr) {
|
|
|
|
// Not supplied; assume `-a`.
|
|
|
|
show_all = true;
|
|
|
|
}
|
|
|
|
|
2020-01-27 17:25:36 +00:00
|
|
|
if (show_all) {
|
2020-05-04 00:26:17 +00:00
|
|
|
// Ignore `var`, even if it was supplied. Just like the real procps does.
|
2019-05-17 13:01:41 +00:00
|
|
|
return handle_show_all();
|
|
|
|
}
|
|
|
|
|
2020-01-27 17:25:36 +00:00
|
|
|
return handle_var(var);
|
2019-05-17 13:01:41 +00:00
|
|
|
}
|