mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 19:34:34 +00:00
The various macros to do checks in system call handlers all implictly would generate a kernel oops if a check failed. This is undesirable for a few reasons: * System call handlers that acquire resources in the handler have no good recourse for cleanup if a check fails. * In some cases we may want to propagate a return value back to the caller instead of just killing the calling thread, even though the base API doesn't do these checks. These macros now all return a value, if nonzero is returned the check failed. K_OOPS() now wraps these calls to generate a kernel oops. At the moment, the policy for all APIs has not changed. They still all oops upon a failed check/ The macros now use the Z_ notation for private APIs. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
35 lines
849 B
C
35 lines
849 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <syscall_handler.h>
|
|
#include <ipm.h>
|
|
|
|
Z_SYSCALL_HANDLER(ipm_send, dev, wait, id, data, size)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_DRIVER_IPM(dev, send));
|
|
Z_OOPS(Z_SYSCALL_MEMORY_READ(data, size));
|
|
return _impl_ipm_send((struct device *)dev, wait, id,
|
|
(const void *)data, size);
|
|
}
|
|
|
|
Z_SYSCALL_HANDLER(ipm_max_data_size_get, dev)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_DRIVER_IPM(dev, max_data_size_get));
|
|
return _impl_max_data_size_get((struct device *)dev);
|
|
}
|
|
|
|
Z_SYSCALL_HANDLER(ipm_max_id_val_get, dev)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_DRIVER_IPM(dev, max_id_val_get));
|
|
return _impl_max_id_val_get((struct device *)dev);
|
|
}
|
|
|
|
Z_SYSCALL_HANDLER(ipm_set_enabled, dev, enable)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_DRIVER_IPM(dev, set_enabled));
|
|
return _impl_ipm_set_enabled((struct device *)dev, enable);
|
|
}
|