2020-07-30 21:38:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 21:38:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-06-28 18:59:35 +00:00
|
|
|
KResultOr<FlatPtr> Process::sys$lseek(int fd, Userspace<off_t*> userspace_offset, int whence)
|
2020-07-30 21:38:15 +00:00
|
|
|
{
|
2021-07-18 18:20:12 +00:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-30 21:38:15 +00:00
|
|
|
REQUIRE_PROMISE(stdio);
|
2021-06-22 18:22:17 +00:00
|
|
|
auto description = fds().file_description(fd);
|
2020-07-30 21:38:15 +00:00
|
|
|
if (!description)
|
2021-03-01 12:49:16 +00:00
|
|
|
return EBADF;
|
2021-03-13 21:02:54 +00:00
|
|
|
off_t offset;
|
|
|
|
if (!copy_from_user(&offset, userspace_offset))
|
|
|
|
return EFAULT;
|
2021-09-05 14:17:24 +00:00
|
|
|
auto seek_result = TRY(description->seek(offset, whence));
|
|
|
|
if (!copy_to_user(userspace_offset, &seek_result))
|
2021-03-13 21:02:54 +00:00
|
|
|
return EFAULT;
|
2021-03-19 09:43:58 +00:00
|
|
|
return KSuccess;
|
2020-07-30 21:38:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|