2020-07-30 21:38:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 21:38:15 +00:00
|
|
|
*/
|
|
|
|
|
2021-10-11 13:47:21 +00:00
|
|
|
#include <AK/Userspace.h>
|
2021-09-07 11:39:11 +00:00
|
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
2020-07-30 21:38:15 +00:00
|
|
|
#include <Kernel/Process.h>
|
2021-03-28 15:50:08 +00:00
|
|
|
#include <LibC/sys/ioctl_numbers.h>
|
2020-07-30 21:38:15 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-11-07 23:51:39 +00:00
|
|
|
ErrorOr<FlatPtr> Process::sys$ioctl(int fd, unsigned request, FlatPtr arg)
|
2020-07-30 21:38:15 +00:00
|
|
|
{
|
2021-07-18 18:20:12 +00:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2021-09-07 11:41:27 +00:00
|
|
|
auto description = TRY(fds().open_file_description(fd));
|
2021-03-29 06:57:11 +00:00
|
|
|
if (request == FIONBIO) {
|
2021-10-11 13:47:21 +00:00
|
|
|
int non_blocking;
|
|
|
|
TRY(copy_from_user(&non_blocking, Userspace<const int*>(arg)));
|
|
|
|
description->set_blocking(non_blocking == 0);
|
2021-11-07 23:51:39 +00:00
|
|
|
return 0;
|
2021-03-28 15:50:08 +00:00
|
|
|
}
|
2021-11-07 23:51:39 +00:00
|
|
|
TRY(description->file().ioctl(*description, request, arg));
|
|
|
|
return 0;
|
2020-07-30 21:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|