mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00: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')
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2022, Peter Elliott <pelliott@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/Directory.h>
|
|
#include <LibCore/SessionManagement.h>
|
|
#include <LibCore/System.h>
|
|
|
|
#ifdef AK_OS_SERENITY
|
|
# include <LibSystem/syscall.h>
|
|
#endif
|
|
|
|
namespace Core::SessionManagement {
|
|
|
|
ErrorOr<pid_t> root_session_id([[maybe_unused]] Optional<pid_t> force_sid)
|
|
{
|
|
#ifdef AK_OS_SERENITY
|
|
int rc = syscall(SC_get_root_session_id, force_sid.value_or(-1));
|
|
if (rc < 0) {
|
|
return Error::from_syscall("get_root_session_id"sv, rc);
|
|
}
|
|
return static_cast<pid_t>(rc);
|
|
#else
|
|
return 0;
|
|
#endif
|
|
}
|
|
|
|
ErrorOr<void> logout(Optional<pid_t> force_sid)
|
|
{
|
|
pid_t sid = TRY(root_session_id(force_sid));
|
|
TRY(System::kill(-sid, SIGTERM));
|
|
return {};
|
|
}
|
|
|
|
ErrorOr<ByteString> parse_path_with_sid(StringView general_path, Optional<pid_t> force_sid)
|
|
{
|
|
if (general_path.contains("%sid"sv)) {
|
|
pid_t sid = TRY(root_session_id(force_sid));
|
|
return general_path.replace("%sid"sv, ByteString::number(sid), ReplaceMode::All);
|
|
}
|
|
return ByteString(general_path);
|
|
}
|
|
|
|
ErrorOr<void> create_session_temporary_directory_if_needed(uid_t uid, gid_t gid, Optional<pid_t> force_sid)
|
|
{
|
|
pid_t sid = TRY(root_session_id(force_sid));
|
|
auto const temporary_directory = ByteString::formatted("/tmp/session/{}", sid);
|
|
auto directory = TRY(Core::Directory::create(temporary_directory, Core::Directory::CreateDirectories::Yes));
|
|
TRY(directory.chown(uid, gid));
|
|
return {};
|
|
}
|
|
|
|
}
|