Files

68 lines
1.7 KiB
C
Raw Permalink Normal View History

/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
2022-05-06 11:04:23 +02:00
#include <zephyr/kernel.h>
#include <zephyr/syscall_handler.h>
#include <zephyr/kernel_structs.h>
static struct z_object *validate_any_object(const void *obj)
2017-10-10 09:31:32 -07:00
{
2020-03-11 07:13:07 -07:00
struct z_object *ko;
2017-10-10 09:31:32 -07:00
int ret;
2019-03-08 14:19:05 -07:00
ko = z_object_find(obj);
2017-10-10 09:31:32 -07:00
/* This can be any kernel object and it doesn't have to be
* initialized
*/
2019-03-08 14:19:05 -07:00
ret = z_object_validate(ko, K_OBJ_ANY, _OBJ_INIT_ANY);
if (ret != 0) {
2019-10-01 10:28:32 -07:00
#ifdef CONFIG_LOG
2019-03-08 14:19:05 -07:00
z_dump_object_error(ret, obj, ko, K_OBJ_ANY);
2017-10-10 09:31:32 -07:00
#endif
return NULL;
}
return ko;
}
/* Normally these would be included in userspace.c, but the way
* syscall_dispatch.c declares weak handlers results in build errors if these
* are located in userspace.c. Just put in a separate file.
2017-10-10 09:31:32 -07:00
*
2019-03-08 14:19:05 -07:00
* To avoid double z_object_find() lookups, we don't call the implementation
2017-10-10 09:31:32 -07:00
* function, but call a level deeper.
*/
static inline void z_vrfy_k_object_access_grant(const void *object,
2019-08-13 12:58:38 -07:00
struct k_thread *thread)
{
2020-03-11 07:13:07 -07:00
struct z_object *ko;
2018-05-04 15:57:57 -07:00
Z_OOPS(Z_SYSCALL_OBJ_INIT(thread, K_OBJ_THREAD));
ko = validate_any_object(object);
Z_OOPS(Z_SYSCALL_VERIFY_MSG(ko != NULL, "object %p access denied",
object));
z_thread_perms_set(ko, thread);
}
#include <syscalls/k_object_access_grant_mrsh.c>
static inline void z_vrfy_k_object_release(const void *object)
{
2020-03-11 07:13:07 -07:00
struct z_object *ko;
ko = validate_any_object((void *)object);
Z_OOPS(Z_SYSCALL_VERIFY_MSG(ko != NULL, "object %p access denied",
2018-05-04 15:57:57 -07:00
(void *)object));
2019-03-08 14:19:05 -07:00
z_thread_perms_clear(ko, _current);
}
#include <syscalls/k_object_release_mrsh.c>
static inline void *z_vrfy_k_object_alloc(enum k_objects otype)
{
return z_impl_k_object_alloc(otype);
}
#include <syscalls/k_object_alloc_mrsh.c>