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
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
ErrorOr<FlatPtr> Process::sys$utime(Userspace<char const*> user_path, size_t path_length, Userspace<const struct utimbuf*> user_buf)
|
2020-07-30 23:38:15 +02:00
|
|
|
{
|
2022-08-22 13:37:07 +02:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 01:11:45 -08:00
|
|
|
TRY(require_promise(Pledge::fattr));
|
2021-09-05 17:53:28 +02:00
|
|
|
auto path = TRY(get_syscall_path_argument(user_path, path_length));
|
2020-07-30 23:38:15 +02:00
|
|
|
utimbuf buf;
|
|
|
|
if (user_buf) {
|
2021-09-05 17:38:37 +02:00
|
|
|
TRY(copy_from_user(&buf, user_buf));
|
2020-07-30 23:38:15 +02:00
|
|
|
} else {
|
2021-02-28 02:18:48 +01:00
|
|
|
auto now = kgettimeofday().to_truncated_seconds();
|
|
|
|
// Not a bug!
|
|
|
|
buf = { now, now };
|
2020-07-30 23:38:15 +02:00
|
|
|
}
|
2022-08-21 16:02:24 +02:00
|
|
|
TRY(VirtualFileSystem::the().utime(credentials(), path->view(), current_directory(), buf.actime, buf.modtime));
|
2021-11-08 00:51:39 +01:00
|
|
|
return 0;
|
2020-07-30 23:38:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|