2020-07-30 18:38:15 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 18:38:15 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
ErrorOr<FlatPtr> Process::sys$mknod(Userspace<Syscall::SC_mknod_params const*> user_params)
|
2020-07-30 18:38:15 -03:00
|
|
|
{
|
2022-08-22 08:16:00 -03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 06:11:45 -03:00
|
|
|
TRY(require_promise(Pledge::dpath));
|
2021-09-05 12:51:37 -03:00
|
|
|
auto params = TRY(copy_typed_from_user(user_params));
|
|
|
|
|
|
2022-08-20 19:21:01 -03:00
|
|
|
auto credentials = this->credentials();
|
|
|
|
|
if (!credentials->is_superuser() && !is_regular_file(params.mode) && !is_fifo(params.mode) && !is_socket(params.mode))
|
2021-03-01 09:49:16 -03:00
|
|
|
return EPERM;
|
2021-09-05 11:18:24 -03:00
|
|
|
auto path = TRY(get_syscall_path_argument(params.path));
|
2022-08-20 19:21:01 -03:00
|
|
|
TRY(VirtualFileSystem::the().mknod(credentials, path->view(), params.mode & ~umask(), params.dev, current_directory()));
|
2021-11-07 20:51:39 -03:00
|
|
|
return 0;
|
2020-07-30 18:38:15 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|