2020-01-18 11:38:21 +03: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.
|
|
|
|
*/
|
|
|
|
|
2019-09-06 16:34:26 +03:00
|
|
|
#include <AK/String.h>
|
2019-01-18 17:35:38 +03:00
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <AK/Vector.h>
|
2019-05-17 16:35:30 +03:00
|
|
|
#include <LibCore/CArgsParser.h>
|
2019-05-27 10:26:54 +03:00
|
|
|
#include <LibCore/CDirIterator.h>
|
2019-06-02 13:05:06 +03:00
|
|
|
#include <LibCore/CFile.h>
|
2019-06-07 12:49:31 +03:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2019-01-18 17:35:38 +03:00
|
|
|
|
2019-05-17 16:01:41 +03:00
|
|
|
static String read_var(const String& name)
|
2019-01-18 17:35:38 +03:00
|
|
|
{
|
2019-05-17 16:01:41 +03:00
|
|
|
StringBuilder builder;
|
|
|
|
builder.append("/proc/sys/");
|
|
|
|
builder.append(name);
|
|
|
|
auto path = builder.to_string();
|
2019-09-21 21:50:06 +03:00
|
|
|
auto f = CFile::construct(path);
|
|
|
|
if (!f->open(CIODevice::ReadOnly)) {
|
|
|
|
fprintf(stderr, "open: %s", f->error_string());
|
2019-05-17 16:01:41 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-09-21 21:50:06 +03:00
|
|
|
const auto& b = f->read_all();
|
|
|
|
if (f->error() < 0) {
|
|
|
|
fprintf(stderr, "read: %s", f->error_string());
|
2019-05-17 16:01:41 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
2019-09-30 09:57:01 +03:00
|
|
|
return String((const char*)b.data(), b.size(), Chomp);
|
2019-01-18 17:35:38 +03:00
|
|
|
}
|
|
|
|
|
2019-05-17 16:01:41 +03:00
|
|
|
static void write_var(const String& name, const String& value)
|
2019-01-18 17:35:38 +03:00
|
|
|
{
|
2019-05-17 16:01:41 +03:00
|
|
|
StringBuilder builder;
|
|
|
|
builder.append("/proc/sys/");
|
|
|
|
builder.append(name);
|
|
|
|
auto path = builder.to_string();
|
2019-09-21 21:50:06 +03:00
|
|
|
auto f = CFile::construct(path);
|
|
|
|
if (!f->open(CIODevice::WriteOnly)) {
|
|
|
|
fprintf(stderr, "open: %s", f->error_string());
|
2019-05-17 16:01:41 +03:00
|
|
|
exit(1);
|
2019-01-18 17:35:38 +03:00
|
|
|
}
|
2019-09-21 21:50:06 +03:00
|
|
|
f->write(value);
|
|
|
|
if (f->error() < 0) {
|
|
|
|
fprintf(stderr, "write: %s", f->error_string());
|
2019-05-17 16:01:41 +03:00
|
|
|
exit(1);
|
2019-01-18 17:35:38 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-17 16:01:41 +03:00
|
|
|
static int handle_show_all()
|
2019-01-18 17:35:38 +03:00
|
|
|
{
|
2019-05-27 10:26:54 +03:00
|
|
|
CDirIterator di("/proc/sys", CDirIterator::SkipDots);
|
|
|
|
if (di.has_error()) {
|
|
|
|
fprintf(stderr, "CDirIterator: %s\n", di.error_string());
|
2019-01-18 17:35:38 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-05-27 10:26:54 +03:00
|
|
|
while (di.has_next()) {
|
2019-06-02 13:05:06 +03:00
|
|
|
String variable_name = di.next_path();
|
|
|
|
printf("%s = %s\n", variable_name.characters(), read_var(variable_name).characters());
|
2019-01-18 17:35:38 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-05-17 16:01:41 +03:00
|
|
|
static int handle_var(const String& var)
|
2019-01-18 17:35:38 +03:00
|
|
|
{
|
2019-05-17 16:01:41 +03:00
|
|
|
String spec(var.characters(), Chomp);
|
2019-01-18 17:35:38 +03: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 16:01:41 +03:00
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2019-05-17 16:35:30 +03:00
|
|
|
CArgsParser args_parser("sysctl");
|
2019-05-17 16:01:41 +03:00
|
|
|
|
|
|
|
args_parser.add_arg("a", "show all variables");
|
2019-05-17 16:17:43 +03:00
|
|
|
args_parser.add_single_value("variable=[value]");
|
2019-05-17 16:01:41 +03:00
|
|
|
|
2019-06-22 16:47:08 +03:00
|
|
|
CArgsParserResult args = args_parser.parse(argc, argv);
|
2019-05-17 16:01:41 +03:00
|
|
|
|
|
|
|
if (args.is_present("a")) {
|
|
|
|
return handle_show_all();
|
|
|
|
} else if (args.get_single_values().size() != 1) {
|
|
|
|
args_parser.print_usage();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector<String> values = args.get_single_values();
|
|
|
|
return handle_var(values[0]);
|
|
|
|
}
|