mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 01:37:40 +00:00

Those nodes are not exposing any sensitive information so there's no harm in exposing them.
29 lines
819 B
C++
29 lines
819 B
C++
/*
|
|
* Copyright (c) 2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/FileSystem/SysFS/Subsystems/Kernel/GlobalInformation.h>
|
|
#include <Kernel/KBufferBuilder.h>
|
|
#include <Kernel/Library/LockRefPtr.h>
|
|
#include <Kernel/UserOrKernelBuffer.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class SysFSUptime final : public SysFSGlobalInformation {
|
|
public:
|
|
virtual StringView name() const override { return "uptime"sv; }
|
|
static NonnullLockRefPtr<SysFSUptime> must_create(SysFSDirectory const& parent_directory);
|
|
|
|
private:
|
|
explicit SysFSUptime(SysFSDirectory const& parent_directory);
|
|
virtual ErrorOr<void> try_generate(KBufferBuilder& builder) override;
|
|
|
|
virtual bool is_readable_by_jailed_processes() const override { return true; }
|
|
};
|
|
|
|
}
|