mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 03:11:58 +00:00
System call arguments, at the arch layer, are single words. So passing wider values requires splitting them into two registers at call time. This gets even more complicated for values (e.g k_timeout_t) that may have different sizes depending on configuration. This patch adds a feature to gen_syscalls.py to detect functions with wide arguments and automatically generates code to split/unsplit them. Unfortunately the current scheme of Z_SYSCALL_DECLARE_* macros won't work with functions like this, because for N arguments (our current maximum N is 10) there are 2^N possible configurations of argument widths. So this generates the complete functions for each handler and wrapper, effectively doing in python what was originally done in the preprocessor. Another complexity is that traditional the z_hdlr_*() function for a system call has taken the raw list of word arguments, which does not work when some of those arguments must be 64 bit types. So instead of using a single Z_SYSCALL_HANDLER macro, this splits the job of z_hdlr_*() into two steps: An automatically-generated unmarshalling function, z_mrsh_*(), which then calls a user-supplied verification function z_vrfy_*(). The verification function is typesafe, and is a simple C function with exactly the same argument and return signature as the syscall impl function. It is also not responsible for validating the pointers to the extra parameter array or a wide return value, that code gets automatically generated. This commit includes new vrfy/msrh handling for all syscalls invoked during CI runs. Future commits will port the less testable code. Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
48 lines
936 B
C
48 lines
936 B
C
/*
|
|
* Copyright (c) 2015 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/** @file
|
|
*
|
|
* @brief Per-thread errno accessor function
|
|
*
|
|
* Allow accessing the errno for the current thread without involving the
|
|
* context switching.
|
|
*/
|
|
|
|
#include <kernel_structs.h>
|
|
#include <syscall_handler.h>
|
|
|
|
/*
|
|
* Define _k_neg_eagain for use in assembly files as errno.h is
|
|
* not assembly language safe.
|
|
* FIXME: wastes 4 bytes
|
|
*/
|
|
const int _k_neg_eagain = -EAGAIN;
|
|
|
|
#ifdef CONFIG_ERRNO
|
|
#ifdef CONFIG_USERSPACE
|
|
int *z_impl_z_errno(void)
|
|
{
|
|
/* Initialized to the lowest address in the stack so the thread can
|
|
* directly read/write it
|
|
*/
|
|
return &_current->userspace_local_data->errno_var;
|
|
}
|
|
|
|
static inline int *z_vrfy_z_errno(void)
|
|
{
|
|
return z_impl_z_errno();
|
|
}
|
|
#include <syscalls/z_errno_mrsh.c>
|
|
|
|
#else
|
|
int *z_impl_z_errno(void)
|
|
{
|
|
return &_current->errno_var;
|
|
}
|
|
#endif /* CONFIG_USERSPACE */
|
|
#endif /* CONFIG_ERRNO */
|