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
|
|
|
*/
|
|
|
|
|
2021-09-07 14:39:11 +03:00
|
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
2023-02-24 20:45:37 +03:00
|
|
|
#include <Kernel/Tasks/Process.h>
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2023-08-11 11:47:31 +03:00
|
|
|
ErrorOr<FlatPtr> Process::sys$ftruncate(int fd, off_t length)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2022-03-08 18:30:56 +03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 12:11:45 +03:00
|
|
|
TRY(require_promise(Pledge::stdio));
|
2020-07-31 00:38:15 +03:00
|
|
|
if (length < 0)
|
2021-03-01 15:49:16 +03:00
|
|
|
return EINVAL;
|
2022-01-29 03:22:28 +03:00
|
|
|
auto description = TRY(open_file_description(fd));
|
2020-07-31 00:38:15 +03:00
|
|
|
if (!description->is_writable())
|
2021-03-01 15:49:16 +03:00
|
|
|
return EBADF;
|
2021-11-08 02:51:39 +03:00
|
|
|
TRY(description->truncate(static_cast<u64>(length)));
|
|
|
|
return 0;
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|