mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
5e1499d104
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/Account.h>
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
#include <grp.h>
|
|
#include <unistd.h>
|
|
|
|
static void print_account_gids(Core::Account const& account)
|
|
{
|
|
auto* gr = getgrgid(account.gid());
|
|
if (!gr) {
|
|
outln();
|
|
return;
|
|
}
|
|
|
|
out("{}", gr->gr_name);
|
|
for (auto& gid : account.extra_gids()) {
|
|
gr = getgrgid(gid);
|
|
out(" {}", gr->gr_name);
|
|
}
|
|
outln();
|
|
}
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::unveil("/etc/passwd", "r"));
|
|
TRY(Core::System::unveil("/etc/group", "r"));
|
|
TRY(Core::System::unveil(nullptr, nullptr));
|
|
TRY(Core::System::pledge("stdio rpath"));
|
|
|
|
Vector<ByteString> usernames;
|
|
|
|
Core::ArgsParser args_parser;
|
|
args_parser.set_general_help("Print group memberships for each username or, if no username is specified, for the current process.");
|
|
args_parser.add_positional_argument(usernames, "Usernames to list group memberships for", "usernames", Core::ArgsParser::Required::No);
|
|
args_parser.parse(arguments);
|
|
|
|
if (usernames.is_empty()) {
|
|
auto account = TRY(Core::Account::from_uid(geteuid(), Core::Account::Read::PasswdOnly));
|
|
print_account_gids(account);
|
|
}
|
|
|
|
for (auto const& username : usernames) {
|
|
auto result = Core::Account::from_name(username, Core::Account::Read::PasswdOnly);
|
|
if (result.is_error()) {
|
|
warnln("{} '{}'", result.error(), username);
|
|
continue;
|
|
}
|
|
out("{} : ", username);
|
|
print_account_gids(result.value());
|
|
}
|
|
return 0;
|
|
}
|