mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
Kernel: Expose blocking and cloexec fd flags in ProcFS
This commit is contained in:
parent
eb18825fce
commit
9a41dda029
Notes:
sideshowbarker
2024-07-19 11:54:41 +09:00
Author: https://github.com/bugaevc Commit: https://github.com/SerenityOS/serenity/commit/9a41dda0292 Pull-request: https://github.com/SerenityOS/serenity/pull/611
3 changed files with 14 additions and 0 deletions
|
@ -211,12 +211,16 @@ Optional<KBuffer> procfs$pid_fds(InodeIdentifier identifier)
|
|||
auto* description = process.file_description(i);
|
||||
if (!description)
|
||||
continue;
|
||||
bool cloexec = process.fd_flags(i) & FD_CLOEXEC;
|
||||
|
||||
JsonObjectSerializer description_object = array.add_object();
|
||||
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());
|
||||
description_object.add("cloexec", cloexec);
|
||||
description_object.add("blocking", description->is_blocking());
|
||||
}
|
||||
array.finish();
|
||||
return builder.build();
|
||||
|
|
|
@ -917,6 +917,15 @@ const FileDescription* Process::file_description(int fd) const
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
int Process::fd_flags(int fd) const
|
||||
{
|
||||
if (fd < 0)
|
||||
return -1;
|
||||
if (fd < m_fds.size())
|
||||
return m_fds[fd].flags;
|
||||
return -1;
|
||||
}
|
||||
|
||||
ssize_t Process::sys$get_dir_entries(int fd, void* buffer, ssize_t size)
|
||||
{
|
||||
if (size < 0)
|
||||
|
|
|
@ -95,6 +95,7 @@ public:
|
|||
|
||||
FileDescription* file_description(int fd);
|
||||
const FileDescription* file_description(int fd) const;
|
||||
int fd_flags(int fd) const;
|
||||
|
||||
template<typename Callback>
|
||||
static void for_each(Callback);
|
||||
|
|
Loading…
Reference in a new issue