From 72c5c3ac775262a6e4fe3bff18513ce703cbe2ef Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Tue, 23 May 2023 22:09:48 +0100 Subject: [PATCH] Utilities/w: Replace LibC function calls with modern equivalents --- Userland/Utilities/w.cpp | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Userland/Utilities/w.cpp b/Userland/Utilities/w.cpp index 16c6741082..9e415002d1 100644 --- a/Userland/Utilities/w.cpp +++ b/Userland/Utilities/w.cpp @@ -1,24 +1,25 @@ /* * Copyright (c) 2020, Andreas Kling + * Copyright (c) 2023, Tim Ledbetter * * SPDX-License-Identifier: BSD-2-Clause */ #include #include +#include +#include #include #include #include #include #include -#include -#include -#include ErrorOr serenity_main(Main::Arguments) { TRY(Core::System::pledge("stdio rpath")); TRY(Core::System::unveil("/dev", "r")); + TRY(Core::System::unveil("/etc/group", "r")); TRY(Core::System::unveil("/etc/passwd", "r")); TRY(Core::System::unveil("/etc/timezone", "r")); TRY(Core::System::unveil("/var/run/utmp", "r")); @@ -35,7 +36,7 @@ ErrorOr serenity_main(Main::Arguments) auto process_statistics = TRY(Core::ProcessStatisticsReader::get_all()); - auto now = time(nullptr); + auto now = Time::now_realtime().to_seconds(); outln("\033[1m{:10} {:12} {:16} {:6} {}\033[0m", "USER", "TTY", "LOGIN@", "IDLE", "WHAT"); json.as_object().for_each_member([&](auto& tty, auto& value) { @@ -46,18 +47,19 @@ ErrorOr serenity_main(Main::Arguments) auto login_time = Core::DateTime::from_timestamp(entry.get_integer("login_at"sv).value_or(0)); auto login_at = login_time.to_deprecated_string("%b%d %H:%M:%S"sv); - auto* pw = getpwuid(uid); + auto maybe_account = Core::Account::from_uid(uid, Core::Account::Read::PasswdOnly); DeprecatedString username; - if (pw) - username = pw->pw_name; + if (!maybe_account.is_error()) + username = maybe_account.release_value().username(); else username = DeprecatedString::number(uid); StringBuilder builder; DeprecatedString idle_string = "n/a"; - struct stat st; - if (stat(tty.characters(), &st) == 0) { - auto idle_time = now - st.st_mtime; + auto maybe_stat = Core::System::stat(tty); + if (!maybe_stat.is_error()) { + auto stat = maybe_stat.release_value(); + auto idle_time = now - stat.st_mtime; if (idle_time >= 0) { builder.appendff("{}s", idle_time); idle_string = builder.to_deprecated_string();