2021-04-14 12:23:55 +10:00
|
|
|
/*
|
2021-04-17 00:55:05 +10:00
|
|
|
* Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
|
2021-05-30 22:06:28 +02:00
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
2021-04-14 12:23:55 +10:00
|
|
|
*
|
2021-04-17 00:55:05 +10:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-04-14 12:23:55 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibCore/Account.h>
|
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
|
#include <LibCore/GetPassword.h>
|
2021-12-16 19:18:37 +01:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
|
#include <LibMain/Main.h>
|
2021-04-14 12:23:55 +10:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
2021-12-16 19:18:37 +01:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2021-04-14 12:23:55 +10:00
|
|
|
{
|
2022-03-12 20:58:50 +00:00
|
|
|
Vector<StringView> command;
|
2021-04-14 12:23:55 +10:00
|
|
|
Core::ArgsParser args_parser;
|
2021-08-16 03:58:34 +01:00
|
|
|
uid_t as_user_uid = 0;
|
2021-12-28 20:10:22 +02:00
|
|
|
args_parser.set_stop_on_first_non_option(true);
|
2021-08-16 03:58:34 +01:00
|
|
|
args_parser.add_option(as_user_uid, "User to execute as", nullptr, 'u', "UID");
|
2021-04-14 12:23:55 +10:00
|
|
|
args_parser.add_positional_argument(command, "Command to run at elevated privilege level", "command");
|
2021-12-16 19:18:37 +01:00
|
|
|
args_parser.parse(arguments);
|
2021-04-14 12:23:55 +10:00
|
|
|
|
2021-12-16 19:18:37 +01:00
|
|
|
TRY(Core::System::pledge("stdio rpath exec id tty"));
|
2021-04-14 12:23:55 +10:00
|
|
|
|
2021-12-16 19:18:37 +01:00
|
|
|
TRY(Core::System::seteuid(0));
|
2021-04-17 00:55:05 +10:00
|
|
|
|
2021-12-16 19:18:37 +01:00
|
|
|
auto as_user = TRY(Core::Account::from_uid(as_user_uid));
|
2021-08-16 03:58:34 +01:00
|
|
|
|
2021-05-30 22:06:28 +02:00
|
|
|
// If the current user is not a superuser, make them authenticate themselves.
|
|
|
|
|
if (auto uid = getuid()) {
|
2021-12-16 19:18:37 +01:00
|
|
|
auto account = TRY(Core::Account::from_uid(uid));
|
2021-05-30 22:06:28 +02:00
|
|
|
if (account.has_password()) {
|
2021-12-16 19:18:37 +01:00
|
|
|
auto password = TRY(Core::get_password());
|
|
|
|
|
if (!account.authenticate(password))
|
|
|
|
|
return Error::from_string_literal("Incorrect or disabled password."sv);
|
2021-05-30 22:06:28 +02:00
|
|
|
}
|
2021-04-14 12:23:55 +10:00
|
|
|
}
|
|
|
|
|
|
2021-12-16 19:18:37 +01:00
|
|
|
TRY(Core::System::pledge("stdio rpath exec id"));
|
2021-04-14 12:23:55 +10:00
|
|
|
|
2021-12-16 19:18:37 +01:00
|
|
|
TRY(Core::System::setgid(0));
|
|
|
|
|
TRY(Core::System::setuid(as_user_uid));
|
2021-04-17 00:55:05 +10:00
|
|
|
|
2021-12-16 19:18:37 +01:00
|
|
|
TRY(Core::System::pledge("stdio rpath exec"));
|
2021-04-14 12:23:55 +10:00
|
|
|
|
2022-03-12 20:58:50 +00:00
|
|
|
Vector<String> exec_environment_strings;
|
|
|
|
|
Vector<StringView> exec_environment;
|
|
|
|
|
if (auto* term = getenv("TERM")) {
|
|
|
|
|
exec_environment_strings.append(String::formatted("TERM={}", term));
|
|
|
|
|
exec_environment.append(exec_environment_strings.last());
|
|
|
|
|
}
|
2021-04-14 12:23:55 +10:00
|
|
|
|
2022-03-12 20:58:50 +00:00
|
|
|
Vector<String> exec_arguments;
|
|
|
|
|
exec_arguments.ensure_capacity(command.size());
|
|
|
|
|
for (auto const& it : command)
|
|
|
|
|
exec_arguments.append(it.to_string());
|
2021-04-14 12:23:55 +10:00
|
|
|
|
2022-03-12 20:58:50 +00:00
|
|
|
TRY(Core::System::exec(command.at(0), command, Core::System::SearchInPath::Yes, exec_environment));
|
2021-04-14 12:23:55 +10:00
|
|
|
return 0;
|
|
|
|
|
}
|