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-04-02 23:21:35 +03:00
|
|
|
#include <Kernel/Devices/HID/HIDManagement.h>
|
2020-07-31 00:38:15 +03:00
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-01-30 23:35:54 +03:00
|
|
|
constexpr size_t map_name_max_size = 50;
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$setkeymap(Userspace<const Syscall::SC_setkeymap_params*> user_params)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(setkeymap);
|
|
|
|
|
|
|
|
if (!is_superuser())
|
2021-03-01 15:49:16 +03:00
|
|
|
return EPERM;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-09-05 18:51:37 +03:00
|
|
|
auto params = TRY(copy_typed_from_user(user_params));
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
Keyboard::CharacterMapData character_map_data;
|
|
|
|
|
2021-09-05 18:38:37 +03:00
|
|
|
TRY(copy_n_from_user(character_map_data.map, params.map, CHAR_MAP_SIZE));
|
|
|
|
TRY(copy_n_from_user(character_map_data.shift_map, params.shift_map, CHAR_MAP_SIZE));
|
|
|
|
TRY(copy_n_from_user(character_map_data.alt_map, params.alt_map, CHAR_MAP_SIZE));
|
|
|
|
TRY(copy_n_from_user(character_map_data.altgr_map, params.altgr_map, CHAR_MAP_SIZE));
|
|
|
|
TRY(copy_n_from_user(character_map_data.shift_altgr_map, params.shift_altgr_map, CHAR_MAP_SIZE));
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2020-08-06 02:03:32 +03:00
|
|
|
auto map_name = get_syscall_path_argument(params.map_name);
|
2021-05-29 17:59:40 +03:00
|
|
|
if (map_name.is_error())
|
2020-08-06 02:03:32 +03:00
|
|
|
return map_name.error();
|
2021-05-29 17:59:40 +03:00
|
|
|
if (map_name.value()->length() > map_name_max_size)
|
2021-03-01 15:49:16 +03:00
|
|
|
return ENAMETOOLONG;
|
2021-05-29 17:59:40 +03:00
|
|
|
|
|
|
|
HIDManagement::the().set_maps(character_map_data, map_name.value()->view());
|
2020-07-31 00:38:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$getkeymap(Userspace<const Syscall::SC_getkeymap_params*> user_params)
|
2021-01-30 23:35:54 +03:00
|
|
|
{
|
2021-08-06 14:47:26 +03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-02-01 00:50:17 +03:00
|
|
|
REQUIRE_PROMISE(getkeymap);
|
2021-09-05 18:51:37 +03:00
|
|
|
auto params = TRY(copy_typed_from_user(user_params));
|
2021-01-30 23:35:54 +03:00
|
|
|
|
2021-04-02 23:21:35 +03:00
|
|
|
String keymap_name = HIDManagement::the().keymap_name();
|
|
|
|
const Keyboard::CharacterMapData& character_maps = HIDManagement::the().character_maps();
|
2021-01-30 23:35:54 +03:00
|
|
|
|
2021-09-05 18:38:37 +03:00
|
|
|
TRY(copy_to_user(params.map, character_maps.map, CHAR_MAP_SIZE * sizeof(u32)));
|
|
|
|
TRY(copy_to_user(params.shift_map, character_maps.shift_map, CHAR_MAP_SIZE * sizeof(u32)));
|
|
|
|
TRY(copy_to_user(params.alt_map, character_maps.alt_map, CHAR_MAP_SIZE * sizeof(u32)));
|
|
|
|
TRY(copy_to_user(params.altgr_map, character_maps.altgr_map, CHAR_MAP_SIZE * sizeof(u32)));
|
|
|
|
TRY(copy_to_user(params.shift_altgr_map, character_maps.shift_altgr_map, CHAR_MAP_SIZE * sizeof(u32)));
|
2021-01-30 23:35:54 +03:00
|
|
|
|
|
|
|
if (params.map_name.size < keymap_name.length())
|
2021-03-01 15:49:16 +03:00
|
|
|
return ENAMETOOLONG;
|
2021-09-05 18:38:37 +03:00
|
|
|
TRY(copy_to_user(params.map_name.data, keymap_name.characters(), keymap_name.length()));
|
|
|
|
return KSuccess;
|
2021-01-30 23:35:54 +03:00
|
|
|
}
|
|
|
|
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|