2020-07-30 23:38:15 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 23:38:15 +02:00
|
|
|
*/
|
|
|
|
|
2021-09-07 13:39:11 +02:00
|
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
2020-07-30 23:38:15 +02:00
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<FlatPtr> Process::sys$ftruncate(int fd, Userspace<off_t*> userspace_length)
|
2020-07-30 23:38:15 +02:00
|
|
|
{
|
2021-07-18 11:20:12 -07:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-30 23:38:15 +02:00
|
|
|
REQUIRE_PROMISE(stdio);
|
2021-03-13 22:02:54 +01:00
|
|
|
off_t length;
|
2021-09-05 17:38:37 +02:00
|
|
|
TRY(copy_from_user(&length, userspace_length));
|
2020-07-30 23:38:15 +02:00
|
|
|
if (length < 0)
|
2021-03-01 13:49:16 +01:00
|
|
|
return EINVAL;
|
2021-09-07 13:41:27 +02:00
|
|
|
auto description = TRY(fds().open_file_description(fd));
|
2020-07-30 23:38:15 +02:00
|
|
|
if (!description->is_writable())
|
2021-03-01 13:49:16 +01:00
|
|
|
return EBADF;
|
2021-11-08 00:51:39 +01:00
|
|
|
TRY(description->truncate(static_cast<u64>(length)));
|
|
|
|
return 0;
|
2020-07-30 23:38:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|