2021-04-14 02:23:55 +00:00
|
|
|
/*
|
2021-04-16 14:55:05 +00:00
|
|
|
* Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
|
2021-05-30 20:06:28 +00:00
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
2021-04-14 02:23:55 +00:00
|
|
|
*
|
2021-04-16 14:55:05 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-04-14 02:23:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibCore/Account.h>
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
|
|
#include <LibCore/GetPassword.h>
|
2021-12-16 18:18:37 +00:00
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibMain/Main.h>
|
2021-04-14 02:23:55 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2021-12-16 18:18:37 +00:00
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2021-04-14 02:23:55 +00:00
|
|
|
{
|
2022-03-12 20:58:50 +00:00
|
|
|
Vector<StringView> command;
|
2021-04-14 02:23:55 +00:00
|
|
|
Core::ArgsParser args_parser;
|
2021-08-16 02:58:34 +00:00
|
|
|
uid_t as_user_uid = 0;
|
2022-06-28 17:10:31 +00:00
|
|
|
bool preserve_env = false;
|
2021-12-28 18:10:22 +00:00
|
|
|
args_parser.set_stop_on_first_non_option(true);
|
2021-08-16 02:58:34 +00:00
|
|
|
args_parser.add_option(as_user_uid, "User to execute as", nullptr, 'u', "UID");
|
2022-06-28 17:10:31 +00:00
|
|
|
args_parser.add_option(preserve_env, "Preserve user environment when running command", "preserve-env", 'E');
|
2021-04-14 02:23:55 +00:00
|
|
|
args_parser.add_positional_argument(command, "Command to run at elevated privilege level", "command");
|
2021-12-16 18:18:37 +00:00
|
|
|
args_parser.parse(arguments);
|
2021-04-14 02:23:55 +00:00
|
|
|
|
2021-12-16 18:18:37 +00:00
|
|
|
TRY(Core::System::pledge("stdio rpath exec id tty"));
|
2021-04-14 02:23:55 +00:00
|
|
|
|
2021-12-16 18:18:37 +00:00
|
|
|
TRY(Core::System::seteuid(0));
|
2021-04-16 14:55:05 +00:00
|
|
|
|
2021-12-16 18:18:37 +00:00
|
|
|
auto as_user = TRY(Core::Account::from_uid(as_user_uid));
|
2021-08-16 02:58:34 +00:00
|
|
|
|
2021-05-30 20:06:28 +00:00
|
|
|
// If the current user is not a superuser, make them authenticate themselves.
|
|
|
|
if (auto uid = getuid()) {
|
2021-12-16 18:18:37 +00:00
|
|
|
auto account = TRY(Core::Account::from_uid(uid));
|
2021-05-30 20:06:28 +00:00
|
|
|
if (account.has_password()) {
|
2021-12-16 18:18:37 +00:00
|
|
|
auto password = TRY(Core::get_password());
|
|
|
|
if (!account.authenticate(password))
|
2022-07-11 17:57:32 +00:00
|
|
|
return Error::from_string_literal("Incorrect or disabled password.");
|
2021-05-30 20:06:28 +00:00
|
|
|
}
|
2021-04-14 02:23:55 +00:00
|
|
|
}
|
|
|
|
|
2021-12-16 18:18:37 +00:00
|
|
|
TRY(Core::System::pledge("stdio rpath exec id"));
|
2021-04-14 02:23:55 +00:00
|
|
|
|
2022-08-14 19:19:05 +00:00
|
|
|
TRY(as_user.login());
|
2021-04-16 14:55:05 +00:00
|
|
|
|
2021-12-16 18:18:37 +00:00
|
|
|
TRY(Core::System::pledge("stdio rpath exec"));
|
2022-11-04 09:54:29 +00:00
|
|
|
TRY(Core::System::exec_command(command, preserve_env));
|
2021-04-14 02:23:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|