2020-07-30 18:38:15 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 18:38:15 -03:00
|
|
|
*/
|
|
|
|
|
|
2021-10-11 10:47:21 -03:00
|
|
|
#include <AK/Userspace.h>
|
2021-09-07 08:39:11 -03:00
|
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
2020-07-30 18:38:15 -03:00
|
|
|
#include <Kernel/Process.h>
|
2021-03-28 12:50:08 -03:00
|
|
|
#include <LibC/sys/ioctl_numbers.h>
|
2020-07-30 18:38:15 -03:00
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-11-07 20:51:39 -03:00
|
|
|
ErrorOr<FlatPtr> Process::sys$ioctl(int fd, unsigned request, FlatPtr arg)
|
2020-07-30 18:38:15 -03:00
|
|
|
{
|
2022-08-17 17:03:04 -03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
2022-01-28 21:22:28 -03:00
|
|
|
auto description = TRY(open_file_description(fd));
|
2021-03-29 03:57:11 -03:00
|
|
|
if (request == FIONBIO) {
|
2021-12-17 05:12:20 -03:00
|
|
|
description->set_blocking(TRY(copy_typed_from_user(Userspace<int const*>(arg))) == 0);
|
2021-11-07 20:51:39 -03:00
|
|
|
return 0;
|
2021-03-28 12:50:08 -03:00
|
|
|
}
|
2022-04-26 09:32:12 -03:00
|
|
|
if (request == FIOCLEX) {
|
|
|
|
|
m_fds.with_exclusive([&](auto& fds) {
|
|
|
|
|
fds[fd].set_flags(fds[fd].flags() | FD_CLOEXEC);
|
|
|
|
|
});
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (request == FIONCLEX) {
|
|
|
|
|
m_fds.with_exclusive([&](auto& fds) {
|
|
|
|
|
fds[fd].set_flags(fds[fd].flags() & ~FD_CLOEXEC);
|
|
|
|
|
});
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2021-11-07 20:51:39 -03:00
|
|
|
TRY(description->file().ioctl(*description, request, arg));
|
|
|
|
|
return 0;
|
2020-07-30 18:38:15 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|