2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
#include "ProcFS.h"
|
2019-06-07 12:43:58 +03:00
|
|
|
#include "KSyms.h"
|
2019-02-03 14:33:11 +03:00
|
|
|
#include "Process.h"
|
2019-06-07 12:43:58 +03:00
|
|
|
#include "Scheduler.h"
|
2019-08-27 14:19:51 +03:00
|
|
|
#include <AK/JsonArraySerializer.h>
|
2019-06-29 10:04:45 +03:00
|
|
|
#include <AK/JsonObject.h>
|
2019-08-27 14:19:51 +03:00
|
|
|
#include <AK/JsonObjectSerializer.h>
|
2019-06-29 10:04:45 +03:00
|
|
|
#include <AK/JsonValue.h>
|
2019-06-07 21:02:01 +03:00
|
|
|
#include <Kernel/Arch/i386/CPU.h>
|
2019-05-30 19:58:59 +03:00
|
|
|
#include <Kernel/FileSystem/Custody.h>
|
2019-08-17 12:17:36 +03:00
|
|
|
#include <Kernel/FileSystem/DiskBackedFileSystem.h>
|
2019-06-07 10:36:51 +03:00
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
2019-04-03 13:25:24 +03:00
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
2019-11-28 23:12:02 +03:00
|
|
|
#include <Kernel/Heap/kmalloc.h>
|
2019-08-07 22:52:43 +03:00
|
|
|
#include <Kernel/KBufferBuilder.h>
|
2019-06-16 15:05:07 +03:00
|
|
|
#include <Kernel/KParams.h>
|
2019-11-28 23:12:02 +03:00
|
|
|
#include <Kernel/Module.h>
|
2019-08-10 19:11:35 +03:00
|
|
|
#include <Kernel/Net/LocalSocket.h>
|
2019-06-16 08:06:49 +03:00
|
|
|
#include <Kernel/Net/NetworkAdapter.h>
|
2019-09-02 08:41:18 +03:00
|
|
|
#include <Kernel/Net/Routing.h>
|
2019-08-06 16:40:38 +03:00
|
|
|
#include <Kernel/Net/TCPSocket.h>
|
2019-08-09 13:27:40 +03:00
|
|
|
#include <Kernel/Net/UDPSocket.h>
|
2019-12-31 14:04:30 +03:00
|
|
|
#include <Kernel/PCI/Access.h>
|
2019-12-11 22:36:56 +03:00
|
|
|
#include <Kernel/Profiling.h>
|
2019-06-07 12:43:58 +03:00
|
|
|
#include <Kernel/VM/MemoryManager.h>
|
2019-12-09 21:12:38 +03:00
|
|
|
#include <Kernel/VM/PurgeableVMObject.h>
|
2020-02-09 17:47:15 +03:00
|
|
|
#include <LibBareMetal/Output/Console.h>
|
|
|
|
#include <LibBareMetal/StdLib.h>
|
2019-02-03 14:33:11 +03:00
|
|
|
#include <LibC/errno_numbers.h>
|
|
|
|
|
2019-06-07 18:13:23 +03:00
|
|
|
enum ProcParentDirectory {
|
2019-02-03 14:33:11 +03:00
|
|
|
PDI_AbstractRoot = 0,
|
|
|
|
PDI_Root,
|
|
|
|
PDI_Root_sys,
|
2019-08-09 13:10:26 +03:00
|
|
|
PDI_Root_net,
|
2019-02-03 14:33:11 +03:00
|
|
|
PDI_PID,
|
|
|
|
PDI_PID_fd,
|
|
|
|
};
|
|
|
|
|
2019-06-07 18:13:23 +03:00
|
|
|
enum ProcFileType {
|
2019-02-03 14:33:11 +03:00
|
|
|
FI_Invalid = 0,
|
|
|
|
|
|
|
|
FI_Root = 1, // directory
|
|
|
|
|
|
|
|
__FI_Root_Start,
|
|
|
|
FI_Root_mm,
|
|
|
|
FI_Root_mounts,
|
2019-02-21 16:48:00 +03:00
|
|
|
FI_Root_df,
|
2019-02-03 20:53:18 +03:00
|
|
|
FI_Root_all,
|
2019-03-10 14:13:22 +03:00
|
|
|
FI_Root_memstat,
|
2019-02-03 14:33:11 +03:00
|
|
|
FI_Root_cpuinfo,
|
|
|
|
FI_Root_inodes,
|
|
|
|
FI_Root_dmesg,
|
2019-02-06 12:29:35 +03:00
|
|
|
FI_Root_pci,
|
2019-08-18 14:58:47 +03:00
|
|
|
FI_Root_devices,
|
2019-04-14 16:19:45 +03:00
|
|
|
FI_Root_uptime,
|
2019-06-16 15:05:07 +03:00
|
|
|
FI_Root_cmdline,
|
2019-11-28 23:12:02 +03:00
|
|
|
FI_Root_modules,
|
2019-12-11 22:36:56 +03:00
|
|
|
FI_Root_profile,
|
2019-02-03 14:33:11 +03:00
|
|
|
FI_Root_self, // symlink
|
2019-06-07 12:43:58 +03:00
|
|
|
FI_Root_sys, // directory
|
2019-08-09 13:10:26 +03:00
|
|
|
FI_Root_net, // directory
|
2019-02-03 14:33:11 +03:00
|
|
|
__FI_Root_End,
|
|
|
|
|
2019-08-16 16:35:02 +03:00
|
|
|
FI_Root_sys_variable,
|
|
|
|
|
2019-08-09 13:10:26 +03:00
|
|
|
FI_Root_net_adapters,
|
2019-09-02 08:41:18 +03:00
|
|
|
FI_Root_net_arp,
|
2019-08-09 13:10:26 +03:00
|
|
|
FI_Root_net_tcp,
|
2019-08-09 13:27:40 +03:00
|
|
|
FI_Root_net_udp,
|
2019-08-10 19:11:35 +03:00
|
|
|
FI_Root_net_local,
|
2019-08-09 13:10:26 +03:00
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
FI_PID,
|
|
|
|
|
|
|
|
__FI_PID_Start,
|
|
|
|
FI_PID_vm,
|
2019-12-19 21:13:44 +03:00
|
|
|
FI_PID_vmobjects,
|
2019-02-03 14:33:11 +03:00
|
|
|
FI_PID_stack,
|
|
|
|
FI_PID_regs,
|
|
|
|
FI_PID_fds,
|
2020-01-21 00:19:02 +03:00
|
|
|
FI_PID_unveil,
|
2020-01-11 18:25:26 +03:00
|
|
|
FI_PID_exe, // symlink
|
|
|
|
FI_PID_cwd, // symlink
|
2020-01-11 01:48:44 +03:00
|
|
|
FI_PID_root, // symlink
|
2020-01-11 18:25:26 +03:00
|
|
|
FI_PID_fd, // directory
|
2019-02-03 14:33:11 +03:00
|
|
|
__FI_PID_End,
|
|
|
|
|
|
|
|
FI_MaxStaticFileIndex,
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline pid_t to_pid(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
#ifdef PROCFS_DEBUG
|
|
|
|
dbgprintf("to_pid, index=%08x -> %u\n", identifier.index(), identifier.index() >> 16);
|
|
|
|
#endif
|
|
|
|
return identifier.index() >> 16u;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline ProcParentDirectory to_proc_parent_directory(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
return (ProcParentDirectory)((identifier.index() >> 12) & 0xf);
|
|
|
|
}
|
|
|
|
|
2019-08-16 16:35:02 +03:00
|
|
|
static inline ProcFileType to_proc_file_type(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
return (ProcFileType)(identifier.index() & 0xff);
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
static inline int to_fd(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
ASSERT(to_proc_parent_directory(identifier) == PDI_PID_fd);
|
|
|
|
return (identifier.index() & 0xff) - FI_MaxStaticFileIndex;
|
|
|
|
}
|
|
|
|
|
2019-04-23 14:00:53 +03:00
|
|
|
static inline int to_sys_index(const InodeIdentifier& identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
ASSERT(to_proc_parent_directory(identifier) == PDI_Root_sys);
|
2019-08-16 16:35:02 +03:00
|
|
|
ASSERT(to_proc_file_type(identifier) == FI_Root_sys_variable);
|
|
|
|
return identifier.index() >> 16u;
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline InodeIdentifier to_identifier(unsigned fsid, ProcParentDirectory parent, pid_t pid, ProcFileType proc_file_type)
|
|
|
|
{
|
|
|
|
return { fsid, ((unsigned)parent << 12u) | ((unsigned)pid << 16u) | (unsigned)proc_file_type };
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline InodeIdentifier to_identifier_with_fd(unsigned fsid, pid_t pid, int fd)
|
|
|
|
{
|
|
|
|
return { fsid, (PDI_PID_fd << 12u) | ((unsigned)pid << 16u) | (FI_MaxStaticFileIndex + fd) };
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline InodeIdentifier sys_var_to_identifier(unsigned fsid, unsigned index)
|
|
|
|
{
|
|
|
|
ASSERT(index < 256);
|
2019-08-16 16:35:02 +03:00
|
|
|
return { fsid, (PDI_Root_sys << 12u) | (index << 16u) | FI_Root_sys_variable };
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline InodeIdentifier to_parent_id(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
switch (to_proc_parent_directory(identifier)) {
|
|
|
|
case PDI_AbstractRoot:
|
|
|
|
case PDI_Root:
|
|
|
|
return { identifier.fsid(), FI_Root };
|
|
|
|
case PDI_Root_sys:
|
|
|
|
return { identifier.fsid(), FI_Root_sys };
|
2019-08-09 13:10:26 +03:00
|
|
|
case PDI_Root_net:
|
|
|
|
return { identifier.fsid(), FI_Root_net };
|
2019-02-03 14:33:11 +03:00
|
|
|
case PDI_PID:
|
|
|
|
return to_identifier(identifier.fsid(), PDI_Root, to_pid(identifier), FI_PID);
|
|
|
|
case PDI_PID_fd:
|
|
|
|
return to_identifier(identifier.fsid(), PDI_PID, to_pid(identifier), FI_PID_fd);
|
|
|
|
}
|
2019-02-12 14:11:22 +03:00
|
|
|
ASSERT_NOT_REACHED();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
2019-07-03 22:17:35 +03:00
|
|
|
static inline u8 to_unused_metadata(const InodeIdentifier& identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
return (identifier.index() >> 8) & 0xf;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline bool is_process_related_file(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
if (to_proc_file_type(identifier) == FI_PID)
|
|
|
|
return true;
|
|
|
|
auto proc_parent_directory = to_proc_parent_directory(identifier);
|
|
|
|
switch (proc_parent_directory) {
|
|
|
|
case PDI_PID:
|
|
|
|
case PDI_PID_fd:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_directory(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
auto proc_file_type = to_proc_file_type(identifier);
|
|
|
|
switch (proc_file_type) {
|
|
|
|
case FI_Root:
|
|
|
|
case FI_Root_sys:
|
2019-08-09 13:10:26 +03:00
|
|
|
case FI_Root_net:
|
2019-02-03 14:33:11 +03:00
|
|
|
case FI_PID:
|
|
|
|
case FI_PID_fd:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool is_persistent_inode(const InodeIdentifier& identifier)
|
|
|
|
{
|
|
|
|
return to_proc_parent_directory(identifier) == PDI_Root_sys;
|
|
|
|
}
|
|
|
|
|
2019-06-21 19:37:47 +03:00
|
|
|
NonnullRefPtr<ProcFS> ProcFS::create()
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
return adopt(*new ProcFS);
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcFS::~ProcFS()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pid_fds(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2019-10-22 16:48:17 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
2019-10-22 16:48:17 +03:00
|
|
|
if (!handle) {
|
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
|
|
|
}
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
2019-10-22 16:48:17 +03:00
|
|
|
if (process.number_of_open_file_descriptors() == 0) {
|
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
|
|
|
}
|
2019-08-27 14:19:51 +03:00
|
|
|
|
2019-04-23 14:00:53 +03:00
|
|
|
for (int i = 0; i < process.max_open_file_descriptors(); ++i) {
|
2020-01-07 17:53:42 +03:00
|
|
|
auto description = process.file_description(i);
|
2019-06-13 23:03:04 +03:00
|
|
|
if (!description)
|
2019-02-03 14:33:11 +03:00
|
|
|
continue;
|
2019-09-28 23:00:38 +03:00
|
|
|
bool cloexec = process.fd_flags(i) & FD_CLOEXEC;
|
|
|
|
|
2019-11-04 20:02:27 +03:00
|
|
|
auto description_object = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
description_object.add("fd", i);
|
|
|
|
description_object.add("absolute_path", description->absolute_path());
|
|
|
|
description_object.add("seekable", description->file().is_seekable());
|
|
|
|
description_object.add("class", description->file().class_name());
|
|
|
|
description_object.add("offset", description->offset());
|
2019-09-28 23:00:38 +03:00
|
|
|
description_object.add("cloexec", cloexec);
|
|
|
|
description_object.add("blocking", description->is_blocking());
|
2019-11-10 00:15:35 +03:00
|
|
|
description_object.add("can_read", description->can_read());
|
|
|
|
description_object.add("can_write", description->can_write());
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pid_fd_entry(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
|
|
|
int fd = to_fd(identifier);
|
2020-01-07 17:53:42 +03:00
|
|
|
auto description = process.file_description(fd);
|
2019-06-13 23:03:04 +03:00
|
|
|
if (!description)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-06-13 23:03:04 +03:00
|
|
|
return description->absolute_path().to_byte_buffer();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pid_vm(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
2019-02-03 14:33:11 +03:00
|
|
|
for (auto& region : process.regions()) {
|
2020-01-10 09:02:17 +03:00
|
|
|
if (!region.is_user_accessible() && !current->process().is_superuser())
|
|
|
|
continue;
|
2019-11-04 20:02:27 +03:00
|
|
|
auto region_object = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
region_object.add("readable", region.is_readable());
|
|
|
|
region_object.add("writable", region.is_writable());
|
2019-12-21 18:26:42 +03:00
|
|
|
region_object.add("executable", region.is_executable());
|
2019-11-17 14:14:13 +03:00
|
|
|
region_object.add("stack", region.is_stack());
|
|
|
|
region_object.add("shared", region.is_shared());
|
2019-12-15 22:11:57 +03:00
|
|
|
region_object.add("user_accessible", region.is_user_accessible());
|
2019-12-09 21:12:38 +03:00
|
|
|
region_object.add("purgeable", region.vmobject().is_purgeable());
|
|
|
|
if (region.vmobject().is_purgeable()) {
|
|
|
|
region_object.add("volatile", static_cast<const PurgeableVMObject&>(region.vmobject()).is_volatile());
|
|
|
|
}
|
|
|
|
region_object.add("purgeable", region.vmobject().is_purgeable());
|
2019-08-27 14:19:51 +03:00
|
|
|
region_object.add("address", region.vaddr().get());
|
2019-10-29 18:36:50 +03:00
|
|
|
region_object.add("size", (u32)region.size());
|
|
|
|
region_object.add("amount_resident", (u32)region.amount_resident());
|
2019-12-29 14:28:32 +03:00
|
|
|
region_object.add("amount_dirty", (u32)region.amount_dirty());
|
2019-12-15 18:53:00 +03:00
|
|
|
region_object.add("cow_pages", region.cow_pages());
|
2019-08-27 14:19:51 +03:00
|
|
|
region_object.add("name", region.name());
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pci(InodeIdentifier)
|
2019-02-06 12:29:35 +03:00
|
|
|
{
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
PCI::enumerate_all([&array](PCI::Address address, PCI::ID id) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto obj = array.add_object();
|
2019-12-31 14:04:30 +03:00
|
|
|
obj.add("seg", address.seg());
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("bus", address.bus());
|
|
|
|
obj.add("slot", address.slot());
|
|
|
|
obj.add("function", address.function());
|
|
|
|
obj.add("vendor_id", id.vendor_id);
|
|
|
|
obj.add("device_id", id.device_id);
|
|
|
|
obj.add("revision_id", PCI::get_revision_id(address));
|
|
|
|
obj.add("subclass", PCI::get_subclass(address));
|
|
|
|
obj.add("class", PCI::get_class(address));
|
|
|
|
obj.add("subsystem_id", PCI::get_subsystem_id(address));
|
|
|
|
obj.add("subsystem_vendor_id", PCI::get_subsystem_vendor_id(address));
|
2019-02-06 12:29:35 +03:00
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-02-06 12:29:35 +03:00
|
|
|
}
|
|
|
|
|
2019-08-18 14:58:47 +03:00
|
|
|
Optional<KBuffer> procfs$devices(InodeIdentifier)
|
|
|
|
{
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
Device::for_each([&array](auto& device) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto obj = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("major", device.major());
|
|
|
|
obj.add("minor", device.minor());
|
|
|
|
obj.add("class_name", device.class_name());
|
2019-08-18 14:58:47 +03:00
|
|
|
|
|
|
|
if (device.is_block_device())
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("type", "block");
|
2019-08-18 14:58:47 +03:00
|
|
|
else if (device.is_character_device())
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("type", "character");
|
2019-08-18 14:58:47 +03:00
|
|
|
else
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-08-18 14:58:47 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$uptime(InodeIdentifier)
|
2019-04-14 16:19:45 +03:00
|
|
|
{
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-07-03 22:17:35 +03:00
|
|
|
builder.appendf("%u\n", (u32)(g_uptime / 1000));
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-04-14 16:19:45 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$cmdline(InodeIdentifier)
|
2019-06-16 15:05:07 +03:00
|
|
|
{
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-06-16 15:05:07 +03:00
|
|
|
builder.appendf("%s\n", KParams::the().cmdline().characters());
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-06-16 15:05:07 +03:00
|
|
|
}
|
|
|
|
|
2019-11-28 23:12:02 +03:00
|
|
|
Optional<KBuffer> procfs$modules(InodeIdentifier)
|
|
|
|
{
|
|
|
|
extern HashMap<String, OwnPtr<Module>>* g_modules;
|
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
for (auto& it : *g_modules) {
|
|
|
|
auto obj = array.add_object();
|
|
|
|
obj.add("name", it.value->name);
|
|
|
|
obj.add("module_init", (u32)it.value->module_init);
|
|
|
|
obj.add("module_fini", (u32)it.value->module_fini);
|
2019-11-29 23:18:37 +03:00
|
|
|
u32 size = 0;
|
|
|
|
for (auto& section : it.value->sections) {
|
|
|
|
size += section.capacity();
|
|
|
|
}
|
|
|
|
obj.add("size", size);
|
2019-11-28 23:12:02 +03:00
|
|
|
}
|
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
|
|
|
}
|
|
|
|
|
2019-12-11 22:36:56 +03:00
|
|
|
Optional<KBuffer> procfs$profile(InodeIdentifier)
|
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array(builder);
|
2020-01-02 22:49:21 +03:00
|
|
|
bool mask_kernel_addresses = !current->process().is_superuser();
|
2019-12-11 22:36:56 +03:00
|
|
|
Profiling::for_each_sample([&](auto& sample) {
|
|
|
|
auto object = array.add_object();
|
|
|
|
object.add("pid", sample.pid);
|
|
|
|
object.add("tid", sample.tid);
|
|
|
|
object.add("timestamp", sample.timestamp);
|
2019-12-12 22:36:41 +03:00
|
|
|
auto frames_array = object.add_array("frames");
|
2019-12-11 22:36:56 +03:00
|
|
|
for (size_t i = 0; i < Profiling::max_stack_frame_count; ++i) {
|
|
|
|
if (sample.frames[i] == 0)
|
|
|
|
break;
|
2019-12-12 22:36:41 +03:00
|
|
|
auto frame_object = frames_array.add_object();
|
2020-01-02 22:49:21 +03:00
|
|
|
u32 address = (u32)sample.frames[i];
|
|
|
|
if (mask_kernel_addresses && !is_user_address(VirtualAddress(address)))
|
|
|
|
address = 0xdeadc0de;
|
|
|
|
frame_object.add("address", address);
|
2019-12-11 22:36:56 +03:00
|
|
|
frame_object.add("symbol", sample.symbolicated_frames[i]);
|
2019-12-12 23:59:47 +03:00
|
|
|
frame_object.add("offset", JsonValue((u32)sample.offsets[i]));
|
2019-12-11 22:36:56 +03:00
|
|
|
frame_object.finish();
|
|
|
|
}
|
2019-12-12 22:36:41 +03:00
|
|
|
frames_array.finish();
|
2019-12-11 22:36:56 +03:00
|
|
|
});
|
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
|
|
|
}
|
|
|
|
|
2019-08-09 13:10:26 +03:00
|
|
|
Optional<KBuffer> procfs$net_adapters(InodeIdentifier)
|
2019-06-16 08:06:49 +03:00
|
|
|
{
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
NetworkAdapter::for_each([&array](auto& adapter) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto obj = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("name", adapter.name());
|
|
|
|
obj.add("class_name", adapter.class_name());
|
|
|
|
obj.add("mac_address", adapter.mac_address().to_string());
|
2019-08-28 04:01:16 +03:00
|
|
|
if (!adapter.ipv4_address().is_zero()) {
|
|
|
|
obj.add("ipv4_address", adapter.ipv4_address().to_string());
|
|
|
|
obj.add("ipv4_netmask", adapter.ipv4_netmask().to_string());
|
|
|
|
}
|
|
|
|
if (!adapter.ipv4_gateway().is_zero())
|
|
|
|
obj.add("ipv4_gateway", adapter.ipv4_gateway().to_string());
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("packets_in", adapter.packets_in());
|
|
|
|
obj.add("bytes_in", adapter.bytes_in());
|
|
|
|
obj.add("packets_out", adapter.packets_out());
|
|
|
|
obj.add("bytes_out", adapter.bytes_out());
|
|
|
|
obj.add("link_up", adapter.link_up());
|
2019-11-28 09:12:05 +03:00
|
|
|
obj.add("mtu", adapter.mtu());
|
2019-06-16 08:06:49 +03:00
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-06-16 08:06:49 +03:00
|
|
|
}
|
|
|
|
|
2019-09-02 08:41:18 +03:00
|
|
|
Optional<KBuffer> procfs$net_arp(InodeIdentifier)
|
|
|
|
{
|
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
LOCKER(arp_table().lock());
|
|
|
|
for (auto& it : arp_table().resource()) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto obj = array.add_object();
|
2019-09-02 08:41:18 +03:00
|
|
|
obj.add("mac_address", it.value.to_string());
|
|
|
|
obj.add("ip_address", it.key.to_string());
|
|
|
|
}
|
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
|
|
|
}
|
|
|
|
|
2019-08-06 16:40:38 +03:00
|
|
|
Optional<KBuffer> procfs$net_tcp(InodeIdentifier)
|
|
|
|
{
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
TCPSocket::for_each([&array](auto& socket) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto obj = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("local_address", socket.local_address().to_string());
|
|
|
|
obj.add("local_port", socket.local_port());
|
|
|
|
obj.add("peer_address", socket.peer_address().to_string());
|
|
|
|
obj.add("peer_port", socket.peer_port());
|
|
|
|
obj.add("state", TCPSocket::to_string(socket.state()));
|
|
|
|
obj.add("ack_number", socket.ack_number());
|
|
|
|
obj.add("sequence_number", socket.sequence_number());
|
|
|
|
obj.add("packets_in", socket.packets_in());
|
|
|
|
obj.add("bytes_in", socket.bytes_in());
|
|
|
|
obj.add("packets_out", socket.packets_out());
|
|
|
|
obj.add("bytes_out", socket.bytes_out());
|
2019-08-06 16:40:38 +03:00
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-08-06 16:40:38 +03:00
|
|
|
}
|
|
|
|
|
2019-08-09 13:27:40 +03:00
|
|
|
Optional<KBuffer> procfs$net_udp(InodeIdentifier)
|
|
|
|
{
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
UDPSocket::for_each([&array](auto& socket) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto obj = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("local_address", socket.local_address().to_string());
|
|
|
|
obj.add("local_port", socket.local_port());
|
|
|
|
obj.add("peer_address", socket.peer_address().to_string());
|
|
|
|
obj.add("peer_port", socket.peer_port());
|
2019-08-09 13:27:40 +03:00
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-08-09 13:27:40 +03:00
|
|
|
}
|
|
|
|
|
2019-08-10 19:11:35 +03:00
|
|
|
Optional<KBuffer> procfs$net_local(InodeIdentifier)
|
|
|
|
{
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
LocalSocket::for_each([&array](auto& socket) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto obj = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("path", String(socket.socket_path()));
|
|
|
|
obj.add("origin_pid", socket.origin_pid());
|
2019-12-06 20:38:36 +03:00
|
|
|
obj.add("origin_uid", socket.origin_uid());
|
|
|
|
obj.add("origin_gid", socket.origin_gid());
|
2019-08-27 14:19:51 +03:00
|
|
|
obj.add("acceptor_pid", socket.acceptor_pid());
|
2019-12-07 11:40:30 +03:00
|
|
|
obj.add("acceptor_uid", socket.acceptor_uid());
|
|
|
|
obj.add("acceptor_gid", socket.acceptor_gid());
|
2019-08-10 19:11:35 +03:00
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-08-10 19:11:35 +03:00
|
|
|
}
|
|
|
|
|
2019-12-19 21:13:44 +03:00
|
|
|
Optional<KBuffer> procfs$pid_vmobjects(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-02-03 14:33:11 +03:00
|
|
|
builder.appendf("BEGIN END SIZE NAME\n");
|
|
|
|
for (auto& region : process.regions()) {
|
|
|
|
builder.appendf("%x -- %x %x %s\n",
|
2019-06-27 14:34:28 +03:00
|
|
|
region.vaddr().get(),
|
|
|
|
region.vaddr().offset(region.size() - 1).get(),
|
|
|
|
region.size(),
|
|
|
|
region.name().characters());
|
2019-08-07 17:14:08 +03:00
|
|
|
builder.appendf("VMO: %s @ %x(%u)\n",
|
2019-09-04 12:27:14 +03:00
|
|
|
region.vmobject().is_anonymous() ? "anonymous" : "file-backed",
|
|
|
|
®ion.vmobject(),
|
|
|
|
region.vmobject().ref_count());
|
|
|
|
for (size_t i = 0; i < region.vmobject().page_count(); ++i) {
|
|
|
|
auto& physical_page = region.vmobject().physical_pages()[i];
|
2019-02-03 14:33:11 +03:00
|
|
|
builder.appendf("P%x%s(%u) ",
|
|
|
|
physical_page ? physical_page->paddr().get() : 0,
|
2019-06-27 14:34:28 +03:00
|
|
|
region.should_cow(i) ? "!" : "",
|
2019-06-21 16:29:31 +03:00
|
|
|
physical_page ? physical_page->ref_count() : 0);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
builder.appendf("\n");
|
|
|
|
}
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2020-01-21 00:19:02 +03:00
|
|
|
Optional<KBuffer> procfs$pid_unveil(InodeIdentifier identifier)
|
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
|
|
|
return {};
|
|
|
|
auto& process = handle->process();
|
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
for (auto& unveiled_path : process.unveiled_paths()) {
|
|
|
|
auto obj = array.add_object();
|
|
|
|
obj.add("path", unveiled_path.path);
|
|
|
|
StringBuilder permissions_builder;
|
|
|
|
if (unveiled_path.permissions & UnveiledPath::Access::Read)
|
|
|
|
permissions_builder.append('r');
|
|
|
|
if (unveiled_path.permissions & UnveiledPath::Access::Write)
|
|
|
|
permissions_builder.append('w');
|
|
|
|
if (unveiled_path.permissions & UnveiledPath::Access::Execute)
|
|
|
|
permissions_builder.append('x');
|
|
|
|
if (unveiled_path.permissions & UnveiledPath::Access::CreateOrRemove)
|
|
|
|
permissions_builder.append('c');
|
|
|
|
obj.add("permissions", permissions_builder.to_string());
|
|
|
|
}
|
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pid_stack(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
2019-08-07 22:52:43 +03:00
|
|
|
return process.backtrace(*handle);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pid_regs(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-06-07 12:43:58 +03:00
|
|
|
process.for_each_thread([&](Thread& thread) {
|
2019-03-24 00:03:17 +03:00
|
|
|
builder.appendf("Thread %d:\n", thread.tid());
|
|
|
|
auto& tss = thread.tss();
|
|
|
|
builder.appendf("eax: %x\n", tss.eax);
|
|
|
|
builder.appendf("ebx: %x\n", tss.ebx);
|
|
|
|
builder.appendf("ecx: %x\n", tss.ecx);
|
|
|
|
builder.appendf("edx: %x\n", tss.edx);
|
|
|
|
builder.appendf("esi: %x\n", tss.esi);
|
|
|
|
builder.appendf("edi: %x\n", tss.edi);
|
|
|
|
builder.appendf("ebp: %x\n", tss.ebp);
|
|
|
|
builder.appendf("cr3: %x\n", tss.cr3);
|
|
|
|
builder.appendf("flg: %x\n", tss.eflags);
|
|
|
|
builder.appendf("sp: %w:%x\n", tss.ss, tss.esp);
|
|
|
|
builder.appendf("pc: %w:%x\n", tss.cs, tss.eip);
|
|
|
|
return IterationDecision::Continue;
|
|
|
|
});
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pid_exe(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
2019-05-30 21:23:50 +03:00
|
|
|
auto* custody = process.executable();
|
2019-05-30 19:58:59 +03:00
|
|
|
ASSERT(custody);
|
|
|
|
return custody->absolute_path().to_byte_buffer();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$pid_cwd(InodeIdentifier identifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-05-30 21:23:50 +03:00
|
|
|
return handle->process().current_directory().absolute_path().to_byte_buffer();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2020-01-11 01:48:44 +03:00
|
|
|
Optional<KBuffer> procfs$pid_root(InodeIdentifier identifier)
|
|
|
|
{
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
|
|
|
|
if (!handle)
|
|
|
|
return {};
|
2020-01-12 21:42:01 +03:00
|
|
|
return handle->process().root_directory_relative_to_global_root().absolute_path().to_byte_buffer();
|
2020-01-11 01:48:44 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$self(InodeIdentifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
char buffer[16];
|
2019-11-27 16:06:24 +03:00
|
|
|
sprintf(buffer, "%u", current->pid());
|
2019-08-05 12:35:49 +03:00
|
|
|
return KBuffer::copy((const u8*)buffer, strlen(buffer));
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$mm(InodeIdentifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-08-08 11:43:44 +03:00
|
|
|
u32 vmobject_count = 0;
|
|
|
|
MemoryManager::for_each_vmobject([&](auto& vmobject) {
|
|
|
|
++vmobject_count;
|
|
|
|
builder.appendf("VMObject: %p %s(%u): p:%4u\n",
|
|
|
|
&vmobject,
|
|
|
|
vmobject.is_anonymous() ? "anon" : "file",
|
|
|
|
vmobject.ref_count(),
|
|
|
|
vmobject.page_count());
|
|
|
|
return IterationDecision::Continue;
|
|
|
|
});
|
|
|
|
builder.appendf("VMO count: %u\n", vmobject_count);
|
2019-06-11 14:13:02 +03:00
|
|
|
builder.appendf("Free physical pages: %u\n", MM.user_physical_pages() - MM.user_physical_pages_used());
|
|
|
|
builder.appendf("Free supervisor physical pages: %u\n", MM.super_physical_pages() - MM.super_physical_pages_used());
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$dmesg(InodeIdentifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-02-03 14:33:11 +03:00
|
|
|
for (char ch : Console::the().logbuffer())
|
|
|
|
builder.append(ch);
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$mounts(InodeIdentifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
// FIXME: This is obviously racy against the VFS mounts changing.
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-06-07 12:43:58 +03:00
|
|
|
VFS::the().for_each_mount([&builder](auto& mount) {
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& fs = mount.guest_fs();
|
|
|
|
builder.appendf("%s @ ", fs.class_name());
|
|
|
|
if (!mount.host().is_valid())
|
|
|
|
builder.appendf("/");
|
|
|
|
else {
|
|
|
|
builder.appendf("%u:%u", mount.host().fsid(), mount.host().index());
|
|
|
|
builder.append(' ');
|
2019-05-30 22:29:26 +03:00
|
|
|
builder.append(mount.absolute_path());
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
builder.append('\n');
|
|
|
|
});
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$df(InodeIdentifier)
|
2019-02-21 16:48:00 +03:00
|
|
|
{
|
|
|
|
// FIXME: This is obviously racy against the VFS mounts changing.
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
|
|
|
VFS::the().for_each_mount([&array](auto& mount) {
|
2019-02-21 16:48:00 +03:00
|
|
|
auto& fs = mount.guest_fs();
|
2019-11-04 20:02:27 +03:00
|
|
|
auto fs_object = array.add_object();
|
2019-08-27 14:19:51 +03:00
|
|
|
fs_object.add("class_name", fs.class_name());
|
|
|
|
fs_object.add("total_block_count", fs.total_block_count());
|
|
|
|
fs_object.add("free_block_count", fs.free_block_count());
|
|
|
|
fs_object.add("total_inode_count", fs.total_inode_count());
|
|
|
|
fs_object.add("free_inode_count", fs.free_inode_count());
|
|
|
|
fs_object.add("mount_point", mount.absolute_path());
|
|
|
|
fs_object.add("block_size", fs.block_size());
|
|
|
|
fs_object.add("readonly", fs.is_readonly());
|
2020-01-11 18:25:26 +03:00
|
|
|
fs_object.add("mount_flags", mount.flags());
|
2019-08-17 12:17:36 +03:00
|
|
|
|
|
|
|
if (fs.is_disk_backed())
|
2019-08-27 14:19:51 +03:00
|
|
|
fs_object.add("device", static_cast<const DiskBackedFS&>(fs).device().absolute_path());
|
2019-08-17 12:17:36 +03:00
|
|
|
else
|
2019-11-03 22:58:10 +03:00
|
|
|
fs_object.add("device", fs.class_name());
|
2019-02-21 16:48:00 +03:00
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-02-21 16:48:00 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$cpuinfo(InodeIdentifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
CPUID cpuid(0);
|
|
|
|
builder.appendf("cpuid: ");
|
2019-07-03 22:17:35 +03:00
|
|
|
auto emit_u32 = [&](u32 value) {
|
2019-02-03 14:33:11 +03:00
|
|
|
builder.appendf("%c%c%c%c",
|
|
|
|
value & 0xff,
|
|
|
|
(value >> 8) & 0xff,
|
|
|
|
(value >> 16) & 0xff,
|
|
|
|
(value >> 24) & 0xff);
|
|
|
|
};
|
2019-07-03 22:17:35 +03:00
|
|
|
emit_u32(cpuid.ebx());
|
|
|
|
emit_u32(cpuid.edx());
|
|
|
|
emit_u32(cpuid.ecx());
|
2019-02-03 14:33:11 +03:00
|
|
|
builder.appendf("\n");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
CPUID cpuid(1);
|
2019-07-03 22:17:35 +03:00
|
|
|
u32 stepping = cpuid.eax() & 0xf;
|
|
|
|
u32 model = (cpuid.eax() >> 4) & 0xf;
|
|
|
|
u32 family = (cpuid.eax() >> 8) & 0xf;
|
|
|
|
u32 type = (cpuid.eax() >> 12) & 0x3;
|
|
|
|
u32 extended_model = (cpuid.eax() >> 16) & 0xf;
|
|
|
|
u32 extended_family = (cpuid.eax() >> 20) & 0xff;
|
|
|
|
u32 display_model;
|
|
|
|
u32 display_family;
|
2019-02-03 14:33:11 +03:00
|
|
|
if (family == 15) {
|
|
|
|
display_family = family + extended_family;
|
|
|
|
display_model = model + (extended_model << 4);
|
|
|
|
} else if (family == 6) {
|
|
|
|
display_family = family;
|
|
|
|
display_model = model + (extended_model << 4);
|
|
|
|
} else {
|
|
|
|
display_family = family;
|
|
|
|
display_model = model;
|
|
|
|
}
|
|
|
|
builder.appendf("family: %u\n", display_family);
|
|
|
|
builder.appendf("model: %u\n", display_model);
|
|
|
|
builder.appendf("stepping: %u\n", stepping);
|
|
|
|
builder.appendf("type: %u\n", type);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
// FIXME: Check first that this is supported by calling CPUID with eax=0x80000000
|
|
|
|
// and verifying that the returned eax>=0x80000004.
|
2019-08-01 12:38:15 +03:00
|
|
|
alignas(u32) char buffer[48];
|
2019-07-03 22:17:35 +03:00
|
|
|
u32* bufptr = reinterpret_cast<u32*>(buffer);
|
|
|
|
auto copy_brand_string_part_to_buffer = [&](u32 i) {
|
2019-02-03 14:33:11 +03:00
|
|
|
CPUID cpuid(0x80000002 + i);
|
|
|
|
*bufptr++ = cpuid.eax();
|
|
|
|
*bufptr++ = cpuid.ebx();
|
|
|
|
*bufptr++ = cpuid.ecx();
|
|
|
|
*bufptr++ = cpuid.edx();
|
|
|
|
};
|
|
|
|
copy_brand_string_part_to_buffer(0);
|
|
|
|
copy_brand_string_part_to_buffer(1);
|
|
|
|
copy_brand_string_part_to_buffer(2);
|
|
|
|
builder.appendf("brandstr: \"%s\"\n", buffer);
|
|
|
|
}
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$memstat(InodeIdentifier)
|
2019-03-10 14:13:22 +03:00
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
2019-11-04 20:02:27 +03:00
|
|
|
JsonObjectSerializer<KBufferBuilder> json { builder };
|
2019-10-29 18:36:50 +03:00
|
|
|
json.add("kmalloc_allocated", (u32)sum_alloc);
|
|
|
|
json.add("kmalloc_available", (u32)sum_free);
|
|
|
|
json.add("kmalloc_eternal_allocated", (u32)kmalloc_sum_eternal);
|
2019-08-27 14:19:51 +03:00
|
|
|
json.add("user_physical_allocated", MM.user_physical_pages_used());
|
2019-12-26 13:43:42 +03:00
|
|
|
json.add("user_physical_available", MM.user_physical_pages() - MM.user_physical_pages_used());
|
2019-08-27 14:19:51 +03:00
|
|
|
json.add("super_physical_allocated", MM.super_physical_pages_used());
|
2019-12-26 13:43:42 +03:00
|
|
|
json.add("super_physical_available", MM.super_physical_pages() - MM.super_physical_pages_used());
|
2019-08-27 14:19:51 +03:00
|
|
|
json.add("kmalloc_call_count", g_kmalloc_call_count);
|
|
|
|
json.add("kfree_call_count", g_kfree_call_count);
|
2019-09-16 11:19:44 +03:00
|
|
|
slab_alloc_stats([&json](size_t slab_size, size_t num_allocated, size_t num_free) {
|
|
|
|
auto prefix = String::format("slab_%zu", slab_size);
|
2019-10-29 18:36:50 +03:00
|
|
|
json.add(String::format("%s_num_allocated", prefix.characters()), (u32)num_allocated);
|
|
|
|
json.add(String::format("%s_num_free", prefix.characters()), (u32)num_free);
|
2019-09-16 11:19:44 +03:00
|
|
|
});
|
2019-08-27 14:19:51 +03:00
|
|
|
json.finish();
|
|
|
|
return builder.build();
|
2019-03-10 14:13:22 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$all(InodeIdentifier)
|
2019-02-03 20:53:18 +03:00
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
|
|
|
auto processes = Process::all_processes();
|
2019-08-27 14:19:51 +03:00
|
|
|
KBufferBuilder builder;
|
|
|
|
JsonArraySerializer array { builder };
|
2019-07-17 23:22:22 +03:00
|
|
|
|
|
|
|
// Keep this in sync with CProcessStatistics.
|
2019-06-29 10:04:45 +03:00
|
|
|
auto build_process = [&](const Process& process) {
|
2019-11-04 20:02:27 +03:00
|
|
|
auto process_object = array.add_object();
|
2020-01-11 23:07:00 +03:00
|
|
|
|
|
|
|
StringBuilder pledge_builder;
|
|
|
|
#define __ENUMERATE_PLEDGE_PROMISE(promise) \
|
|
|
|
if (process.has_promised(Pledge::promise)) { \
|
|
|
|
pledge_builder.append(#promise " "); \
|
|
|
|
}
|
|
|
|
ENUMERATE_PLEDGE_PROMISES
|
|
|
|
#undef __ENUMERATE_PLEDGE_PROMISE
|
|
|
|
|
|
|
|
process_object.add("pledge", pledge_builder.to_string());
|
|
|
|
|
2020-01-21 21:28:29 +03:00
|
|
|
switch (process.veil_state()) {
|
|
|
|
case VeilState::None:
|
2020-01-21 20:56:23 +03:00
|
|
|
process_object.add("veil", "None");
|
|
|
|
break;
|
2020-01-21 21:28:29 +03:00
|
|
|
case VeilState::Dropped:
|
2020-01-21 20:56:23 +03:00
|
|
|
process_object.add("veil", "Dropped");
|
|
|
|
break;
|
2020-01-21 21:28:29 +03:00
|
|
|
case VeilState::Locked:
|
2020-01-21 20:56:23 +03:00
|
|
|
process_object.add("veil", "Locked");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-08-27 14:19:51 +03:00
|
|
|
process_object.add("pid", process.pid());
|
|
|
|
process_object.add("pgid", process.tty() ? process.tty()->pgid() : 0);
|
|
|
|
process_object.add("pgp", process.pgid());
|
|
|
|
process_object.add("sid", process.sid());
|
|
|
|
process_object.add("uid", process.uid());
|
|
|
|
process_object.add("gid", process.gid());
|
|
|
|
process_object.add("ppid", process.ppid());
|
|
|
|
process_object.add("nfds", process.number_of_open_file_descriptors());
|
|
|
|
process_object.add("name", process.name());
|
|
|
|
process_object.add("tty", process.tty() ? process.tty()->tty_name() : "notty");
|
2019-10-29 18:36:50 +03:00
|
|
|
process_object.add("amount_virtual", (u32)process.amount_virtual());
|
|
|
|
process_object.add("amount_resident", (u32)process.amount_resident());
|
2019-12-29 14:28:32 +03:00
|
|
|
process_object.add("amount_dirty_private", (u32)process.amount_dirty_private());
|
2019-12-29 14:45:58 +03:00
|
|
|
process_object.add("amount_clean_inode", (u32)process.amount_clean_inode());
|
2019-10-29 18:36:50 +03:00
|
|
|
process_object.add("amount_shared", (u32)process.amount_shared());
|
2019-12-09 21:12:38 +03:00
|
|
|
process_object.add("amount_purgeable_volatile", (u32)process.amount_purgeable_volatile());
|
|
|
|
process_object.add("amount_purgeable_nonvolatile", (u32)process.amount_purgeable_nonvolatile());
|
2019-08-27 14:19:51 +03:00
|
|
|
process_object.add("icon_id", process.icon_id());
|
2019-11-26 23:25:45 +03:00
|
|
|
auto thread_array = process_object.add_array("threads");
|
|
|
|
process.for_each_thread([&](const Thread& thread) {
|
|
|
|
auto thread_object = thread_array.add_object();
|
|
|
|
thread_object.add("tid", thread.tid());
|
2019-12-07 22:45:26 +03:00
|
|
|
thread_object.add("name", thread.name());
|
2019-11-26 23:25:45 +03:00
|
|
|
thread_object.add("times_scheduled", thread.times_scheduled());
|
|
|
|
thread_object.add("ticks", thread.ticks());
|
|
|
|
thread_object.add("state", thread.state_string());
|
2019-12-30 20:46:17 +03:00
|
|
|
thread_object.add("priority", thread.priority());
|
|
|
|
thread_object.add("effective_priority", thread.effective_priority());
|
2019-11-26 23:35:24 +03:00
|
|
|
thread_object.add("syscall_count", thread.syscall_count());
|
|
|
|
thread_object.add("inode_faults", thread.inode_faults());
|
|
|
|
thread_object.add("zero_faults", thread.zero_faults());
|
|
|
|
thread_object.add("cow_faults", thread.cow_faults());
|
2019-12-01 19:36:06 +03:00
|
|
|
thread_object.add("file_read_bytes", thread.file_read_bytes());
|
|
|
|
thread_object.add("file_write_bytes", thread.file_write_bytes());
|
|
|
|
thread_object.add("unix_socket_read_bytes", thread.unix_socket_read_bytes());
|
|
|
|
thread_object.add("unix_socket_write_bytes", thread.unix_socket_write_bytes());
|
|
|
|
thread_object.add("ipv4_socket_read_bytes", thread.ipv4_socket_read_bytes());
|
|
|
|
thread_object.add("ipv4_socket_write_bytes", thread.ipv4_socket_write_bytes());
|
2019-11-26 23:25:45 +03:00
|
|
|
return IterationDecision::Continue;
|
|
|
|
});
|
2019-02-04 12:28:12 +03:00
|
|
|
};
|
2019-06-29 10:04:45 +03:00
|
|
|
build_process(*Scheduler::colonel());
|
2019-02-04 12:28:12 +03:00
|
|
|
for (auto* process : processes)
|
2019-06-29 10:04:45 +03:00
|
|
|
build_process(*process);
|
2019-08-27 14:19:51 +03:00
|
|
|
array.finish();
|
|
|
|
return builder.build();
|
2019-02-03 20:53:18 +03:00
|
|
|
}
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> procfs$inodes(InodeIdentifier)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2019-08-08 12:08:27 +03:00
|
|
|
extern InlineLinkedList<Inode>& all_inodes();
|
2019-08-07 22:52:43 +03:00
|
|
|
KBufferBuilder builder;
|
2019-08-08 12:08:27 +03:00
|
|
|
InterruptDisabler disabler;
|
2019-08-08 14:40:58 +03:00
|
|
|
for (auto& inode : all_inodes()) {
|
|
|
|
builder.appendf("Inode{K%x} %02u:%08u (%u)\n", &inode, inode.fsid(), inode.index(), inode.ref_count());
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
2019-08-07 22:52:43 +03:00
|
|
|
return builder.build();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-16 16:35:02 +03:00
|
|
|
struct SysVariable {
|
|
|
|
String name;
|
|
|
|
enum class Type : u8 {
|
2019-02-03 14:33:11 +03:00
|
|
|
Invalid,
|
|
|
|
Boolean,
|
2019-02-08 11:46:46 +03:00
|
|
|
String,
|
2019-02-03 14:33:11 +03:00
|
|
|
};
|
2019-08-16 16:35:02 +03:00
|
|
|
Type type { Type::Invalid };
|
2019-02-03 14:33:11 +03:00
|
|
|
Function<void()> notify_callback;
|
2019-08-16 16:35:02 +03:00
|
|
|
void* address { nullptr };
|
|
|
|
|
|
|
|
static SysVariable& for_inode(InodeIdentifier);
|
|
|
|
|
|
|
|
void notify()
|
|
|
|
{
|
|
|
|
if (notify_callback)
|
|
|
|
notify_callback();
|
|
|
|
}
|
2019-02-03 14:33:11 +03:00
|
|
|
};
|
|
|
|
|
2019-08-16 16:35:02 +03:00
|
|
|
static Vector<SysVariable, 16>* s_sys_variables;
|
|
|
|
|
|
|
|
static inline Vector<SysVariable, 16>& sys_variables()
|
|
|
|
{
|
|
|
|
if (s_sys_variables == nullptr) {
|
|
|
|
s_sys_variables = new Vector<SysVariable, 16>;
|
|
|
|
s_sys_variables->append({ "", SysVariable::Type::Invalid, nullptr, nullptr });
|
|
|
|
}
|
|
|
|
return *s_sys_variables;
|
|
|
|
}
|
|
|
|
|
|
|
|
SysVariable& SysVariable::for_inode(InodeIdentifier id)
|
|
|
|
{
|
|
|
|
auto index = to_sys_index(id);
|
|
|
|
if (index >= sys_variables().size())
|
|
|
|
return sys_variables()[0];
|
|
|
|
auto& variable = sys_variables()[index];
|
|
|
|
ASSERT(variable.address);
|
|
|
|
return variable;
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
static ByteBuffer read_sys_bool(InodeIdentifier inode_id)
|
|
|
|
{
|
2019-08-16 16:35:02 +03:00
|
|
|
auto& variable = SysVariable::for_inode(inode_id);
|
|
|
|
ASSERT(variable.type == SysVariable::Type::Boolean);
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
auto buffer = ByteBuffer::create_uninitialized(2);
|
2019-08-16 16:35:02 +03:00
|
|
|
auto* lockable_bool = reinterpret_cast<Lockable<bool>*>(variable.address);
|
2019-02-08 18:18:24 +03:00
|
|
|
{
|
|
|
|
LOCKER(lockable_bool->lock());
|
|
|
|
buffer[0] = lockable_bool->resource() ? '1' : '0';
|
|
|
|
}
|
2019-02-03 14:33:11 +03:00
|
|
|
buffer[1] = '\n';
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t write_sys_bool(InodeIdentifier inode_id, const ByteBuffer& data)
|
|
|
|
{
|
2019-08-16 16:35:02 +03:00
|
|
|
auto& variable = SysVariable::for_inode(inode_id);
|
|
|
|
ASSERT(variable.type == SysVariable::Type::Boolean);
|
|
|
|
|
2019-02-08 18:18:24 +03:00
|
|
|
if (data.is_empty() || !(data[0] == '0' || data[0] == '1'))
|
|
|
|
return data.size();
|
|
|
|
|
2019-08-16 16:35:02 +03:00
|
|
|
auto* lockable_bool = reinterpret_cast<Lockable<bool>*>(variable.address);
|
2019-02-08 18:18:24 +03:00
|
|
|
{
|
|
|
|
LOCKER(lockable_bool->lock());
|
|
|
|
lockable_bool->resource() = data[0] == '1';
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
2019-08-16 16:35:02 +03:00
|
|
|
variable.notify();
|
2019-02-03 14:33:11 +03:00
|
|
|
return data.size();
|
|
|
|
}
|
|
|
|
|
2019-02-08 11:46:46 +03:00
|
|
|
static ByteBuffer read_sys_string(InodeIdentifier inode_id)
|
|
|
|
{
|
2019-08-16 16:35:02 +03:00
|
|
|
auto& variable = SysVariable::for_inode(inode_id);
|
|
|
|
ASSERT(variable.type == SysVariable::Type::String);
|
|
|
|
|
|
|
|
auto* lockable_string = reinterpret_cast<Lockable<String>*>(variable.address);
|
2019-02-08 11:46:46 +03:00
|
|
|
LOCKER(lockable_string->lock());
|
|
|
|
return lockable_string->resource().to_byte_buffer();
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t write_sys_string(InodeIdentifier inode_id, const ByteBuffer& data)
|
|
|
|
{
|
2019-08-16 16:35:02 +03:00
|
|
|
auto& variable = SysVariable::for_inode(inode_id);
|
|
|
|
ASSERT(variable.type == SysVariable::Type::String);
|
|
|
|
|
2019-02-08 11:46:46 +03:00
|
|
|
{
|
2019-08-16 16:35:02 +03:00
|
|
|
auto* lockable_string = reinterpret_cast<Lockable<String>*>(variable.address);
|
2019-02-08 11:46:46 +03:00
|
|
|
LOCKER(lockable_string->lock());
|
2019-09-30 09:57:01 +03:00
|
|
|
lockable_string->resource() = String((const char*)data.data(), data.size());
|
2019-02-08 11:46:46 +03:00
|
|
|
}
|
2019-08-16 16:35:02 +03:00
|
|
|
variable.notify();
|
2019-02-08 11:46:46 +03:00
|
|
|
return data.size();
|
|
|
|
}
|
|
|
|
|
2019-02-08 18:18:24 +03:00
|
|
|
void ProcFS::add_sys_bool(String&& name, Lockable<bool>& var, Function<void()>&& notify_callback)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
|
|
|
|
2019-08-16 16:35:02 +03:00
|
|
|
SysVariable variable;
|
|
|
|
variable.name = move(name);
|
|
|
|
variable.type = SysVariable::Type::Boolean;
|
|
|
|
variable.notify_callback = move(notify_callback);
|
|
|
|
variable.address = &var;
|
|
|
|
|
|
|
|
sys_variables().append(move(variable));
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-02-08 11:46:46 +03:00
|
|
|
void ProcFS::add_sys_string(String&& name, Lockable<String>& var, Function<void()>&& notify_callback)
|
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
|
|
|
|
2019-08-16 16:35:02 +03:00
|
|
|
SysVariable variable;
|
|
|
|
variable.name = move(name);
|
|
|
|
variable.type = SysVariable::Type::String;
|
|
|
|
variable.notify_callback = move(notify_callback);
|
|
|
|
variable.address = &var;
|
|
|
|
|
|
|
|
sys_variables().append(move(variable));
|
2019-02-08 11:46:46 +03:00
|
|
|
}
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
bool ProcFS::initialize()
|
|
|
|
{
|
2019-08-16 16:35:02 +03:00
|
|
|
static Lockable<bool>* kmalloc_stack_helper;
|
|
|
|
|
|
|
|
if (kmalloc_stack_helper == nullptr) {
|
|
|
|
kmalloc_stack_helper = new Lockable<bool>();
|
|
|
|
kmalloc_stack_helper->resource() = g_dump_kmalloc_stacks;
|
|
|
|
ProcFS::add_sys_bool("kmalloc_stacks", *kmalloc_stack_helper, [] {
|
|
|
|
g_dump_kmalloc_stacks = kmalloc_stack_helper->resource();
|
|
|
|
});
|
|
|
|
}
|
2019-02-03 14:33:11 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* ProcFS::class_name() const
|
|
|
|
{
|
|
|
|
return "ProcFS";
|
|
|
|
}
|
|
|
|
|
2020-02-08 13:58:28 +03:00
|
|
|
KResultOr<NonnullRefPtr<Inode>> ProcFS::create_inode(InodeIdentifier, const String&, mode_t, off_t, dev_t, uid_t, gid_t)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2020-02-08 13:58:28 +03:00
|
|
|
return KResult(-EROFS);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2020-02-08 04:34:22 +03:00
|
|
|
KResult ProcFS::create_directory(InodeIdentifier, const String&, mode_t, uid_t, gid_t)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2020-02-08 04:34:22 +03:00
|
|
|
return KResult(-EROFS);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
InodeIdentifier ProcFS::root_inode() const
|
|
|
|
{
|
|
|
|
return { fsid(), FI_Root };
|
|
|
|
}
|
|
|
|
|
2019-06-21 19:37:47 +03:00
|
|
|
RefPtr<Inode> ProcFS::get_inode(InodeIdentifier inode_id) const
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
#ifdef PROCFS_DEBUG
|
|
|
|
dbgprintf("ProcFS::get_inode(%u)\n", inode_id.index());
|
|
|
|
#endif
|
|
|
|
if (inode_id == root_inode())
|
|
|
|
return m_root_inode;
|
|
|
|
|
|
|
|
LOCKER(m_inodes_lock);
|
|
|
|
auto it = m_inodes.find(inode_id.index());
|
|
|
|
if (it == m_inodes.end()) {
|
|
|
|
auto inode = adopt(*new ProcFSInode(const_cast<ProcFS&>(*this), inode_id.index()));
|
|
|
|
m_inodes.set(inode_id.index(), inode.ptr());
|
|
|
|
return inode;
|
|
|
|
}
|
|
|
|
return (*it).value;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcFSInode::ProcFSInode(ProcFS& fs, unsigned index)
|
|
|
|
: Inode(fs, index)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcFSInode::~ProcFSInode()
|
|
|
|
{
|
|
|
|
LOCKER(fs().m_inodes_lock);
|
|
|
|
fs().m_inodes.remove(index());
|
|
|
|
}
|
|
|
|
|
|
|
|
InodeMetadata ProcFSInode::metadata() const
|
|
|
|
{
|
|
|
|
#ifdef PROCFS_DEBUG
|
|
|
|
dbgprintf("ProcFSInode::metadata(%u)\n", index());
|
|
|
|
#endif
|
|
|
|
InodeMetadata metadata;
|
|
|
|
metadata.inode = identifier();
|
|
|
|
metadata.ctime = mepoch;
|
|
|
|
metadata.atime = mepoch;
|
|
|
|
metadata.mtime = mepoch;
|
|
|
|
auto proc_parent_directory = to_proc_parent_directory(identifier());
|
|
|
|
auto pid = to_pid(identifier());
|
|
|
|
auto proc_file_type = to_proc_file_type(identifier());
|
|
|
|
|
|
|
|
#ifdef PROCFS_DEBUG
|
|
|
|
dbgprintf(" -> pid: %d, fi: %u, pdi: %u\n", pid, proc_file_type, proc_parent_directory);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (is_process_related_file(identifier())) {
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(pid);
|
|
|
|
metadata.uid = handle->process().sys$getuid();
|
|
|
|
metadata.gid = handle->process().sys$getgid();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proc_parent_directory == PDI_PID_fd) {
|
2019-12-31 03:23:03 +03:00
|
|
|
metadata.mode = 00120700;
|
2019-02-03 14:33:11 +03:00
|
|
|
return metadata;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (proc_file_type) {
|
|
|
|
case FI_Root_self:
|
2019-12-31 03:23:03 +03:00
|
|
|
metadata.mode = 0120444;
|
|
|
|
break;
|
2019-02-03 14:33:11 +03:00
|
|
|
case FI_PID_cwd:
|
|
|
|
case FI_PID_exe:
|
2020-01-11 01:48:44 +03:00
|
|
|
case FI_PID_root:
|
2019-12-31 03:23:03 +03:00
|
|
|
metadata.mode = 0120400;
|
2019-02-03 14:33:11 +03:00
|
|
|
break;
|
|
|
|
case FI_Root:
|
|
|
|
case FI_Root_sys:
|
2019-08-09 13:10:26 +03:00
|
|
|
case FI_Root_net:
|
2019-12-31 03:23:03 +03:00
|
|
|
metadata.mode = 040555;
|
|
|
|
break;
|
2019-02-03 14:33:11 +03:00
|
|
|
case FI_PID:
|
|
|
|
case FI_PID_fd:
|
2019-12-31 03:23:03 +03:00
|
|
|
metadata.mode = 040500;
|
2019-02-03 14:33:11 +03:00
|
|
|
break;
|
|
|
|
default:
|
2019-12-31 03:23:03 +03:00
|
|
|
metadata.mode = 0100444;
|
2019-02-03 14:33:11 +03:00
|
|
|
break;
|
|
|
|
}
|
2019-12-31 03:23:03 +03:00
|
|
|
|
|
|
|
if (proc_file_type > FI_Invalid && proc_file_type < FI_MaxStaticFileIndex) {
|
2019-12-31 15:22:43 +03:00
|
|
|
if (fs().m_entries[proc_file_type].supervisor_only) {
|
|
|
|
metadata.uid = 0;
|
|
|
|
metadata.gid = 0;
|
2019-12-31 03:23:03 +03:00
|
|
|
metadata.mode &= ~077;
|
2019-12-31 15:22:43 +03:00
|
|
|
}
|
2019-12-31 03:23:03 +03:00
|
|
|
}
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
#ifdef PROCFS_DEBUG
|
|
|
|
dbgprintf("Returning mode %o\n", metadata.mode);
|
|
|
|
#endif
|
|
|
|
return metadata;
|
|
|
|
}
|
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
ssize_t ProcFSInode::read_bytes(off_t offset, ssize_t count, u8* buffer, FileDescription* description) const
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
#ifdef PROCFS_DEBUG
|
|
|
|
dbgprintf("ProcFS: read_bytes %u\n", index());
|
|
|
|
#endif
|
|
|
|
ASSERT(offset >= 0);
|
|
|
|
ASSERT(buffer);
|
|
|
|
|
|
|
|
auto* directory_entry = fs().get_directory_entry(identifier());
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Function<Optional<KBuffer>(InodeIdentifier)> callback_tmp;
|
|
|
|
Function<Optional<KBuffer>(InodeIdentifier)>* read_callback { nullptr };
|
2019-08-16 16:35:02 +03:00
|
|
|
if (directory_entry)
|
2019-02-03 14:33:11 +03:00
|
|
|
read_callback = &directory_entry->read_callback;
|
2019-08-16 16:35:02 +03:00
|
|
|
else
|
|
|
|
switch (to_proc_parent_directory(identifier())) {
|
|
|
|
case PDI_PID_fd:
|
2019-02-03 14:33:11 +03:00
|
|
|
callback_tmp = procfs$pid_fd_entry;
|
|
|
|
read_callback = &callback_tmp;
|
2019-08-16 16:35:02 +03:00
|
|
|
break;
|
|
|
|
case PDI_Root_sys:
|
|
|
|
switch (SysVariable::for_inode(identifier()).type) {
|
|
|
|
case SysVariable::Type::Invalid:
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
case SysVariable::Type::Boolean:
|
|
|
|
callback_tmp = read_sys_bool;
|
|
|
|
break;
|
|
|
|
case SysVariable::Type::String:
|
|
|
|
callback_tmp = read_sys_string;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
read_callback = &callback_tmp;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT_NOT_REACHED();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(read_callback);
|
|
|
|
|
2019-08-05 12:35:49 +03:00
|
|
|
Optional<KBuffer> generated_data;
|
2019-06-13 23:03:04 +03:00
|
|
|
if (!description) {
|
2019-02-03 14:33:11 +03:00
|
|
|
generated_data = (*read_callback)(identifier());
|
|
|
|
} else {
|
2019-06-13 23:03:04 +03:00
|
|
|
if (!description->generator_cache())
|
|
|
|
description->generator_cache() = (*read_callback)(identifier());
|
|
|
|
generated_data = description->generator_cache();
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
auto& data = generated_data;
|
2020-01-08 14:49:36 +03:00
|
|
|
if (!data.has_value())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((size_t)offset >= data.value().size())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ssize_t nread = min(static_cast<off_t>(data.value().size() - offset), static_cast<off_t>(count));
|
|
|
|
memcpy(buffer, data.value().data() + offset, nread);
|
|
|
|
if (nread == 0 && description && description->generator_cache())
|
|
|
|
description->generator_cache().clear();
|
2019-10-22 12:45:48 +03:00
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
return nread;
|
|
|
|
}
|
|
|
|
|
|
|
|
InodeIdentifier ProcFS::ProcFSDirectoryEntry::identifier(unsigned fsid) const
|
|
|
|
{
|
|
|
|
return to_identifier(fsid, PDI_Root, 0, (ProcFileType)proc_file_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProcFSInode::traverse_as_directory(Function<bool(const FS::DirectoryEntry&)> callback) const
|
|
|
|
{
|
|
|
|
#ifdef PROCFS_DEBUG
|
|
|
|
dbgprintf("ProcFS: traverse_as_directory %u\n", index());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!::is_directory(identifier()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto pid = to_pid(identifier());
|
|
|
|
auto proc_file_type = to_proc_file_type(identifier());
|
|
|
|
auto parent_id = to_parent_id(identifier());
|
|
|
|
|
|
|
|
callback({ ".", 1, identifier(), 2 });
|
|
|
|
callback({ "..", 2, parent_id, 2 });
|
|
|
|
|
|
|
|
switch (proc_file_type) {
|
|
|
|
case FI_Root:
|
|
|
|
for (auto& entry : fs().m_entries) {
|
|
|
|
// FIXME: strlen() here is sad.
|
|
|
|
if (!entry.name)
|
|
|
|
continue;
|
|
|
|
if (entry.proc_file_type > __FI_Root_Start && entry.proc_file_type < __FI_Root_End)
|
2019-12-09 19:45:40 +03:00
|
|
|
callback({ entry.name, strlen(entry.name), to_identifier(fsid(), PDI_Root, 0, (ProcFileType)entry.proc_file_type), 0 });
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
for (auto pid_child : Process::all_pids()) {
|
|
|
|
char name[16];
|
2019-12-09 19:45:40 +03:00
|
|
|
size_t name_length = (size_t)sprintf(name, "%u", pid_child);
|
2019-02-03 14:33:11 +03:00
|
|
|
callback({ name, name_length, to_identifier(fsid(), PDI_Root, pid_child, FI_PID), 0 });
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FI_Root_sys:
|
2019-08-16 16:35:02 +03:00
|
|
|
for (int i = 1; i < sys_variables().size(); ++i) {
|
|
|
|
auto& variable = sys_variables()[i];
|
|
|
|
callback({ variable.name.characters(), variable.name.length(), sys_var_to_identifier(fsid(), i), 0 });
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2019-08-09 13:10:26 +03:00
|
|
|
case FI_Root_net:
|
|
|
|
callback({ "adapters", 8, to_identifier(fsid(), PDI_Root_net, 0, FI_Root_net_adapters), 0 });
|
2019-09-02 08:41:18 +03:00
|
|
|
callback({ "arp", 3, to_identifier(fsid(), PDI_Root_net, 0, FI_Root_net_arp), 0 });
|
2019-08-09 13:10:26 +03:00
|
|
|
callback({ "tcp", 3, to_identifier(fsid(), PDI_Root_net, 0, FI_Root_net_tcp), 0 });
|
2019-08-09 13:27:40 +03:00
|
|
|
callback({ "udp", 3, to_identifier(fsid(), PDI_Root_net, 0, FI_Root_net_udp), 0 });
|
2019-08-10 19:11:35 +03:00
|
|
|
callback({ "local", 5, to_identifier(fsid(), PDI_Root_net, 0, FI_Root_net_local), 0 });
|
2019-08-09 13:10:26 +03:00
|
|
|
break;
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
case FI_PID: {
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(pid);
|
|
|
|
if (!handle)
|
|
|
|
return false;
|
|
|
|
auto& process = handle->process();
|
|
|
|
for (auto& entry : fs().m_entries) {
|
|
|
|
if (entry.proc_file_type > __FI_PID_Start && entry.proc_file_type < __FI_PID_End) {
|
2019-05-30 21:23:50 +03:00
|
|
|
if (entry.proc_file_type == FI_PID_exe && !process.executable())
|
2019-02-21 18:19:07 +03:00
|
|
|
continue;
|
2019-02-03 14:33:11 +03:00
|
|
|
// FIXME: strlen() here is sad.
|
2019-12-09 19:45:40 +03:00
|
|
|
callback({ entry.name, strlen(entry.name), to_identifier(fsid(), PDI_PID, pid, (ProcFileType)entry.proc_file_type), 0 });
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
}
|
2019-06-07 12:43:58 +03:00
|
|
|
} break;
|
2019-02-03 14:33:11 +03:00
|
|
|
|
|
|
|
case FI_PID_fd: {
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(pid);
|
|
|
|
if (!handle)
|
|
|
|
return false;
|
|
|
|
auto& process = handle->process();
|
2019-03-07 00:30:13 +03:00
|
|
|
for (int i = 0; i < process.max_open_file_descriptors(); ++i) {
|
2020-01-07 17:53:42 +03:00
|
|
|
auto description = process.file_description(i);
|
2019-06-13 23:03:04 +03:00
|
|
|
if (!description)
|
2019-02-03 14:33:11 +03:00
|
|
|
continue;
|
|
|
|
char name[16];
|
2019-12-09 19:45:40 +03:00
|
|
|
size_t name_length = (size_t)sprintf(name, "%u", i);
|
2019-02-03 14:33:11 +03:00
|
|
|
callback({ name, name_length, to_identifier_with_fd(fsid(), pid, i), 0 });
|
|
|
|
}
|
2019-06-07 12:43:58 +03:00
|
|
|
} break;
|
2019-02-03 14:33:11 +03:00
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-01 11:23:46 +03:00
|
|
|
RefPtr<Inode> ProcFSInode::lookup(StringView name)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
ASSERT(is_directory());
|
|
|
|
if (name == ".")
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(identifier());
|
2019-02-03 14:33:11 +03:00
|
|
|
if (name == "..")
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_parent_id(identifier()));
|
2019-02-03 14:33:11 +03:00
|
|
|
|
|
|
|
auto proc_file_type = to_proc_file_type(identifier());
|
|
|
|
|
|
|
|
if (proc_file_type == FI_Root) {
|
|
|
|
for (auto& entry : fs().m_entries) {
|
|
|
|
if (entry.name == nullptr)
|
|
|
|
continue;
|
|
|
|
if (entry.proc_file_type > __FI_Root_Start && entry.proc_file_type < __FI_Root_End) {
|
2019-06-12 16:25:28 +03:00
|
|
|
if (name == entry.name) {
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_Root, 0, (ProcFileType)entry.proc_file_type));
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool ok;
|
|
|
|
unsigned name_as_number = name.to_uint(ok);
|
|
|
|
if (ok) {
|
|
|
|
bool process_exists = false;
|
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
|
|
|
process_exists = Process::from_pid(name_as_number);
|
|
|
|
}
|
|
|
|
if (process_exists)
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_Root, name_as_number, FI_PID));
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (proc_file_type == FI_Root_sys) {
|
2019-08-16 16:35:02 +03:00
|
|
|
for (int i = 1; i < sys_variables().size(); ++i) {
|
|
|
|
auto& variable = sys_variables()[i];
|
|
|
|
if (name == variable.name)
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(sys_var_to_identifier(fsid(), i));
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-08-09 13:10:26 +03:00
|
|
|
if (proc_file_type == FI_Root_net) {
|
|
|
|
if (name == "adapters")
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_Root, 0, FI_Root_net_adapters));
|
2019-09-02 08:41:18 +03:00
|
|
|
if (name == "arp")
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_Root, 0, FI_Root_net_arp));
|
2019-08-09 13:10:26 +03:00
|
|
|
if (name == "tcp")
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_Root, 0, FI_Root_net_tcp));
|
2019-08-09 13:27:40 +03:00
|
|
|
if (name == "udp")
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_Root, 0, FI_Root_net_udp));
|
2019-08-10 19:11:35 +03:00
|
|
|
if (name == "local")
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_Root, 0, FI_Root_net_local));
|
2019-08-09 13:10:26 +03:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
if (proc_file_type == FI_PID) {
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier()));
|
|
|
|
if (!handle)
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
auto& process = handle->process();
|
|
|
|
for (auto& entry : fs().m_entries) {
|
|
|
|
if (entry.proc_file_type > __FI_PID_Start && entry.proc_file_type < __FI_PID_End) {
|
2019-05-30 21:23:50 +03:00
|
|
|
if (entry.proc_file_type == FI_PID_exe && !process.executable())
|
2019-02-21 18:19:07 +03:00
|
|
|
continue;
|
2019-02-03 14:33:11 +03:00
|
|
|
if (entry.name == nullptr)
|
|
|
|
continue;
|
2019-06-12 16:25:28 +03:00
|
|
|
if (name == entry.name) {
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier(fsid(), PDI_PID, to_pid(identifier()), (ProcFileType)entry.proc_file_type));
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (proc_file_type == FI_PID_fd) {
|
|
|
|
bool ok;
|
|
|
|
unsigned name_as_number = name.to_uint(ok);
|
|
|
|
if (ok) {
|
|
|
|
bool fd_exists = false;
|
|
|
|
{
|
|
|
|
InterruptDisabler disabler;
|
|
|
|
if (auto* process = Process::from_pid(to_pid(identifier())))
|
2019-06-07 10:36:51 +03:00
|
|
|
fd_exists = process->file_description(name_as_number);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
if (fd_exists)
|
2020-02-01 11:23:46 +03:00
|
|
|
return fs().get_inode(to_identifier_with_fd(fsid(), to_pid(identifier()), name_as_number));
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
}
|
2019-06-07 12:43:58 +03:00
|
|
|
return {};
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProcFSInode::flush_metadata()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
ssize_t ProcFSInode::write_bytes(off_t offset, ssize_t size, const u8* buffer, FileDescription*)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
|
|
|
auto* directory_entry = fs().get_directory_entry(identifier());
|
2019-08-16 16:35:02 +03:00
|
|
|
|
|
|
|
Function<ssize_t(InodeIdentifier, const ByteBuffer&)> callback_tmp;
|
|
|
|
Function<ssize_t(InodeIdentifier, const ByteBuffer&)>* write_callback { nullptr };
|
|
|
|
|
|
|
|
if (directory_entry == nullptr) {
|
|
|
|
if (to_proc_parent_directory(identifier()) == PDI_Root_sys) {
|
|
|
|
switch (SysVariable::for_inode(identifier()).type) {
|
|
|
|
case SysVariable::Type::Invalid:
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
case SysVariable::Type::Boolean:
|
|
|
|
callback_tmp = write_sys_bool;
|
|
|
|
break;
|
|
|
|
case SysVariable::Type::String:
|
|
|
|
callback_tmp = write_sys_string;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
write_callback = &callback_tmp;
|
|
|
|
} else
|
|
|
|
return -EPERM;
|
|
|
|
} else {
|
|
|
|
if (!directory_entry->write_callback)
|
|
|
|
return -EPERM;
|
|
|
|
write_callback = &directory_entry->write_callback;
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:33:11 +03:00
|
|
|
ASSERT(is_persistent_inode(identifier()));
|
|
|
|
// FIXME: Being able to write into ProcFS at a non-zero offset seems like something we should maybe support..
|
|
|
|
ASSERT(offset == 0);
|
2019-08-16 16:35:02 +03:00
|
|
|
bool success = (*write_callback)(identifier(), ByteBuffer::wrap(buffer, size));
|
2019-02-03 14:33:11 +03:00
|
|
|
ASSERT(success);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-01-15 14:05:02 +03:00
|
|
|
KResultOr<NonnullRefPtr<Custody>> ProcFSInode::resolve_as_link(Custody& base, RefPtr<Custody>* out_parent, int options, int symlink_recursion_level) const
|
|
|
|
{
|
|
|
|
if (!is_process_related_file(identifier()))
|
|
|
|
return Inode::resolve_as_link(base, out_parent, options, symlink_recursion_level);
|
|
|
|
|
|
|
|
// FIXME: We should return a custody for FI_PID or FI_PID_fd here
|
|
|
|
// for correctness. It's impossible to create files in ProcFS,
|
|
|
|
// so returning null shouldn't break much.
|
|
|
|
if (out_parent)
|
|
|
|
*out_parent = nullptr;
|
|
|
|
|
|
|
|
auto pid = to_pid(identifier());
|
|
|
|
auto proc_file_type = to_proc_file_type(identifier());
|
|
|
|
auto handle = ProcessInspectionHandle::from_pid(pid);
|
|
|
|
if (!handle)
|
|
|
|
return KResult(-ENOENT);
|
|
|
|
auto& process = handle->process();
|
|
|
|
|
|
|
|
if (to_proc_parent_directory(identifier()) == PDI_PID_fd) {
|
|
|
|
if (out_parent)
|
|
|
|
*out_parent = base;
|
|
|
|
int fd = to_fd(identifier());
|
|
|
|
auto description = process.file_description(fd);
|
|
|
|
if (!description)
|
|
|
|
return KResult(-ENOENT);
|
|
|
|
auto proxy_inode = ProcFSProxyInode::create(const_cast<ProcFS&>(fs()), *description);
|
|
|
|
return Custody::create(&base, "", proxy_inode, base.mount_flags());
|
|
|
|
}
|
|
|
|
|
|
|
|
Custody* res = nullptr;
|
|
|
|
|
|
|
|
switch (proc_file_type) {
|
|
|
|
case FI_PID_cwd:
|
|
|
|
res = &process.current_directory();
|
|
|
|
break;
|
|
|
|
case FI_PID_exe:
|
|
|
|
res = process.executable();
|
|
|
|
break;
|
|
|
|
case FI_PID_root:
|
|
|
|
// Note: we open root_directory() here, not
|
|
|
|
// root_directory_relative_to_global_root().
|
|
|
|
// This seems more useful.
|
|
|
|
res = &process.root_directory();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!res)
|
|
|
|
return KResult(-ENOENT);
|
|
|
|
|
|
|
|
return *res;
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcFSProxyInode::ProcFSProxyInode(ProcFS& fs, FileDescription& fd)
|
|
|
|
: Inode(fs, 0)
|
|
|
|
, m_fd(fd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcFSProxyInode::~ProcFSProxyInode()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
InodeMetadata ProcFSProxyInode::metadata() const
|
|
|
|
{
|
|
|
|
InodeMetadata metadata = m_fd->metadata();
|
|
|
|
|
|
|
|
if (m_fd->is_readable())
|
|
|
|
metadata.mode |= 0444;
|
|
|
|
else
|
|
|
|
metadata.mode &= ~0444;
|
|
|
|
|
|
|
|
if (m_fd->is_writable())
|
|
|
|
metadata.mode |= 0222;
|
|
|
|
else
|
|
|
|
metadata.mode &= ~0222;
|
|
|
|
|
|
|
|
if (!metadata.is_directory())
|
|
|
|
metadata.mode &= ~0111;
|
|
|
|
|
|
|
|
return metadata;
|
|
|
|
}
|
|
|
|
|
|
|
|
KResult ProcFSProxyInode::add_child(InodeIdentifier child_id, const StringView& name, mode_t mode)
|
|
|
|
{
|
|
|
|
if (!m_fd->inode())
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
return m_fd->inode()->add_child(child_id, name, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
KResult ProcFSProxyInode::remove_child(const StringView& name)
|
|
|
|
{
|
|
|
|
if (!m_fd->inode())
|
|
|
|
return KResult(-EINVAL);
|
|
|
|
return m_fd->inode()->remove_child(name);
|
|
|
|
}
|
|
|
|
|
2020-02-01 11:23:46 +03:00
|
|
|
RefPtr<Inode> ProcFSProxyInode::lookup(StringView name)
|
2020-01-15 14:05:02 +03:00
|
|
|
{
|
|
|
|
if (!m_fd->inode())
|
|
|
|
return {};
|
|
|
|
return m_fd->inode()->lookup(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t ProcFSProxyInode::directory_entry_count() const
|
|
|
|
{
|
|
|
|
if (!m_fd->inode())
|
|
|
|
return 0;
|
|
|
|
return m_fd->inode()->directory_entry_count();
|
|
|
|
}
|
|
|
|
|
2019-06-09 11:25:19 +03:00
|
|
|
KResult ProcFSInode::add_child(InodeIdentifier child_id, const StringView& name, mode_t)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2019-02-25 22:47:56 +03:00
|
|
|
(void)child_id;
|
|
|
|
(void)name;
|
2019-02-27 17:31:26 +03:00
|
|
|
return KResult(-EPERM);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
2019-06-09 11:25:19 +03:00
|
|
|
KResult ProcFSInode::remove_child(const StringView& name)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2019-02-25 22:47:56 +03:00
|
|
|
(void)name;
|
2019-02-27 16:11:25 +03:00
|
|
|
return KResult(-EPERM);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t ProcFSInode::directory_entry_count() const
|
|
|
|
{
|
|
|
|
ASSERT(is_directory());
|
|
|
|
size_t count = 0;
|
2019-06-07 12:43:58 +03:00
|
|
|
traverse_as_directory([&count](const FS::DirectoryEntry&) {
|
2019-02-03 14:33:11 +03:00
|
|
|
++count;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2019-02-25 22:47:56 +03:00
|
|
|
KResult ProcFSInode::chmod(mode_t)
|
2019-02-03 14:33:11 +03:00
|
|
|
{
|
2019-02-25 22:47:56 +03:00
|
|
|
return KResult(-EPERM);
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ProcFS::ProcFS()
|
|
|
|
{
|
|
|
|
m_root_inode = adopt(*new ProcFSInode(*this, 1));
|
|
|
|
m_entries.resize(FI_MaxStaticFileIndex);
|
2019-12-31 03:23:03 +03:00
|
|
|
m_entries[FI_Root_mm] = { "mm", FI_Root_mm, true, procfs$mm };
|
|
|
|
m_entries[FI_Root_mounts] = { "mounts", FI_Root_mounts, false, procfs$mounts };
|
|
|
|
m_entries[FI_Root_df] = { "df", FI_Root_df, false, procfs$df };
|
|
|
|
m_entries[FI_Root_all] = { "all", FI_Root_all, false, procfs$all };
|
|
|
|
m_entries[FI_Root_memstat] = { "memstat", FI_Root_memstat, false, procfs$memstat };
|
|
|
|
m_entries[FI_Root_cpuinfo] = { "cpuinfo", FI_Root_cpuinfo, false, procfs$cpuinfo };
|
|
|
|
m_entries[FI_Root_inodes] = { "inodes", FI_Root_inodes, true, procfs$inodes };
|
|
|
|
m_entries[FI_Root_dmesg] = { "dmesg", FI_Root_dmesg, true, procfs$dmesg };
|
|
|
|
m_entries[FI_Root_self] = { "self", FI_Root_self, false, procfs$self };
|
|
|
|
m_entries[FI_Root_pci] = { "pci", FI_Root_pci, false, procfs$pci };
|
|
|
|
m_entries[FI_Root_devices] = { "devices", FI_Root_devices, false, procfs$devices };
|
|
|
|
m_entries[FI_Root_uptime] = { "uptime", FI_Root_uptime, false, procfs$uptime };
|
|
|
|
m_entries[FI_Root_cmdline] = { "cmdline", FI_Root_cmdline, true, procfs$cmdline };
|
|
|
|
m_entries[FI_Root_modules] = { "modules", FI_Root_modules, true, procfs$modules };
|
|
|
|
m_entries[FI_Root_profile] = { "profile", FI_Root_profile, false, procfs$profile };
|
|
|
|
m_entries[FI_Root_sys] = { "sys", FI_Root_sys, true };
|
|
|
|
m_entries[FI_Root_net] = { "net", FI_Root_net, false };
|
|
|
|
|
|
|
|
m_entries[FI_Root_net_adapters] = { "adapters", FI_Root_net_adapters, false, procfs$net_adapters };
|
|
|
|
m_entries[FI_Root_net_arp] = { "arp", FI_Root_net_arp, true, procfs$net_arp };
|
|
|
|
m_entries[FI_Root_net_tcp] = { "tcp", FI_Root_net_tcp, false, procfs$net_tcp };
|
|
|
|
m_entries[FI_Root_net_udp] = { "udp", FI_Root_net_udp, false, procfs$net_udp };
|
|
|
|
m_entries[FI_Root_net_local] = { "local", FI_Root_net_local, false, procfs$net_local };
|
|
|
|
|
|
|
|
m_entries[FI_PID_vm] = { "vm", FI_PID_vm, false, procfs$pid_vm };
|
|
|
|
m_entries[FI_PID_vmobjects] = { "vmobjects", FI_PID_vmobjects, true, procfs$pid_vmobjects };
|
|
|
|
m_entries[FI_PID_stack] = { "stack", FI_PID_stack, false, procfs$pid_stack };
|
|
|
|
m_entries[FI_PID_regs] = { "regs", FI_PID_regs, true, procfs$pid_regs };
|
|
|
|
m_entries[FI_PID_fds] = { "fds", FI_PID_fds, false, procfs$pid_fds };
|
|
|
|
m_entries[FI_PID_exe] = { "exe", FI_PID_exe, false, procfs$pid_exe };
|
|
|
|
m_entries[FI_PID_cwd] = { "cwd", FI_PID_cwd, false, procfs$pid_cwd };
|
2020-01-21 00:19:02 +03:00
|
|
|
m_entries[FI_PID_unveil] = { "unveil", FI_PID_unveil, false, procfs$pid_unveil };
|
2020-01-11 01:48:44 +03:00
|
|
|
m_entries[FI_PID_root] = { "root", FI_PID_root, false, procfs$pid_root };
|
2019-12-31 03:23:03 +03:00
|
|
|
m_entries[FI_PID_fd] = { "fd", FI_PID_fd, false };
|
2019-02-03 14:33:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ProcFS::ProcFSDirectoryEntry* ProcFS::get_directory_entry(InodeIdentifier identifier) const
|
|
|
|
{
|
|
|
|
auto proc_file_type = to_proc_file_type(identifier);
|
2019-08-16 16:35:02 +03:00
|
|
|
if (proc_file_type != FI_Invalid && proc_file_type != FI_Root_sys_variable && proc_file_type < FI_MaxStaticFileIndex)
|
2019-02-03 14:33:11 +03:00
|
|
|
return const_cast<ProcFSDirectoryEntry*>(&m_entries[proc_file_type]);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2019-02-27 14:32:53 +03:00
|
|
|
|
|
|
|
KResult ProcFSInode::chown(uid_t, gid_t)
|
|
|
|
{
|
|
|
|
return KResult(-EPERM);
|
|
|
|
}
|