2020-07-31 00:38:15 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-31 00:38:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
|
|
|
#include <Kernel/Process.h>
|
2021-03-28 18:50:08 +03:00
|
|
|
#include <LibC/sys/ioctl_numbers.h>
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-03-01 15:49:16 +03:00
|
|
|
KResultOr<int> Process::sys$ioctl(int fd, unsigned request, FlatPtr arg)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
|
|
|
auto description = file_description(fd);
|
|
|
|
if (!description)
|
2021-03-01 15:49:16 +03:00
|
|
|
return EBADF;
|
2021-03-29 09:57:11 +03:00
|
|
|
if (request == FIONBIO) {
|
2021-03-29 09:59:22 +03:00
|
|
|
description->set_blocking(arg == 0);
|
2021-03-28 18:50:08 +03:00
|
|
|
return KSuccess;
|
|
|
|
}
|
2020-07-31 00:38:15 +03:00
|
|
|
return description->file().ioctl(*description, request, arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|