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>
|
2019-05-17 13:35:30 +00:00
|
|
|
#include <LibCore/CArgsParser.h>
|
2019-05-27 07:26:54 +00:00
|
|
|
#include <LibCore/CDirIterator.h>
|
2019-06-02 10:05:06 +00:00
|
|
|
#include <LibCore/CFile.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();
|
2019-09-21 18:50:06 +00:00
|
|
|
auto f = CFile::construct(path);
|
|
|
|
if (!f->open(CIODevice::ReadOnly)) {
|
|
|
|
fprintf(stderr, "open: %s", 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) {
|
|
|
|
fprintf(stderr, "read: %s", 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();
|
2019-09-21 18:50:06 +00:00
|
|
|
auto f = CFile::construct(path);
|
|
|
|
if (!f->open(CIODevice::WriteOnly)) {
|
|
|
|
fprintf(stderr, "open: %s", 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) {
|
|
|
|
fprintf(stderr, "write: %s", 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
|
|
|
{
|
2019-05-27 07:26:54 +00:00
|
|
|
CDirIterator di("/proc/sys", CDirIterator::SkipDots);
|
|
|
|
if (di.has_error()) {
|
|
|
|
fprintf(stderr, "CDirIterator: %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)
|
|
|
|
{
|
2019-05-17 13:35:30 +00:00
|
|
|
CArgsParser args_parser("sysctl");
|
2019-05-17 13:01:41 +00:00
|
|
|
|
|
|
|
args_parser.add_arg("a", "show all variables");
|
2019-05-17 13:17:43 +00:00
|
|
|
args_parser.add_single_value("variable=[value]");
|
2019-05-17 13:01:41 +00:00
|
|
|
|
2019-06-22 13:47:08 +00:00
|
|
|
CArgsParserResult args = args_parser.parse(argc, argv);
|
2019-05-17 13:01:41 +00: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]);
|
|
|
|
}
|