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>
|
2023-02-24 19:45:37 +02:00
|
|
|
#include <Kernel/Tasks/Process.h>
|
2020-07-30 23:38:15 +02:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-12-29 03:33:22 -08:00
|
|
|
// NOTE: The length is passed by pointer because off_t is 64bit,
|
|
|
|
// hence it can't be passed by register on 32bit platforms.
|
2021-12-17 08:34:27 +01:00
|
|
|
ErrorOr<FlatPtr> Process::sys$ftruncate(int fd, Userspace<off_t const*> userspace_length)
|
2020-07-30 23:38:15 +02:00
|
|
|
{
|
2022-03-08 16:30:56 +01:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 01:11:45 -08:00
|
|
|
TRY(require_promise(Pledge::stdio));
|
2021-12-17 08:34:27 +01:00
|
|
|
auto length = TRY(copy_typed_from_user(userspace_length));
|
2020-07-30 23:38:15 +02:00
|
|
|
if (length < 0)
|
2021-03-01 13:49:16 +01:00
|
|
|
return EINVAL;
|
2022-01-29 01:22:28 +01:00
|
|
|
auto description = TRY(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
|
|
|
}
|
|
|
|
|
|
|
|
}
|