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
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
|
|
|
#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-03-01 12:49:16 +00:00
|
|
|
KResultOr<int> Process::sys$ioctl(int fd, unsigned request, FlatPtr arg)
|
2020-07-30 21:38:15 +00:00
|
|
|
{
|
|
|
|
auto description = file_description(fd);
|
|
|
|
if (!description)
|
2021-03-01 12:49:16 +00:00
|
|
|
return EBADF;
|
2021-03-29 06:57:11 +00:00
|
|
|
if (request == FIONBIO) {
|
2021-03-29 06:59:22 +00:00
|
|
|
description->set_blocking(arg == 0);
|
2021-03-28 15:50:08 +00:00
|
|
|
return KSuccess;
|
|
|
|
}
|
2020-07-30 21:38:15 +00:00
|
|
|
return description->file().ioctl(*description, request, arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|