2020-07-30 17:38:15 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 04:24:48 -04:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 17:38:15 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
2023-02-24 12:45:37 -05:00
|
|
|
#include <Kernel/Tasks/Process.h>
|
2020-07-30 17:38:15 -04:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2022-04-01 13:58:27 -04:00
|
|
|
ErrorOr<FlatPtr> Process::sys$utime(Userspace<char const*> user_path, size_t path_length, Userspace<const struct utimbuf*> user_buf)
|
2020-07-30 17:38:15 -04:00
|
|
|
{
|
2022-08-22 07:37:07 -04:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 04:11:45 -05:00
|
|
|
TRY(require_promise(Pledge::fattr));
|
2021-09-05 11:53:28 -04:00
|
|
|
auto path = TRY(get_syscall_path_argument(user_path, path_length));
|
2020-07-30 17:38:15 -04:00
|
|
|
utimbuf buf;
|
|
|
|
if (user_buf) {
|
2021-09-05 11:38:37 -04:00
|
|
|
TRY(copy_from_user(&buf, user_buf));
|
2020-07-30 17:38:15 -04:00
|
|
|
} else {
|
2023-03-13 17:11:13 -04:00
|
|
|
auto now = kgettimeofday().truncated_seconds_since_epoch();
|
2021-02-27 20:18:48 -05:00
|
|
|
// Not a bug!
|
|
|
|
buf = { now, now };
|
2020-07-30 17:38:15 -04:00
|
|
|
}
|
2024-07-12 02:21:07 -04:00
|
|
|
TRY(VirtualFileSystem::utime(vfs_root_context(), credentials(), path->view(), current_directory(), buf.actime, buf.modtime));
|
2021-11-07 18:51:39 -05:00
|
|
|
return 0;
|
2020-07-30 17:38:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|