mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 20:28:09 +00:00
These calls are buildable on common sanitycheck platforms, but are not invoked at runtime in any tests accessible to CI. The changes are mostly mechanical, so the risk is low, but this commit is separated from the main API change to allow for more careful review. Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
76 lines
2.2 KiB
C
76 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <drivers/i2c.h>
|
|
#include <string.h>
|
|
#include <syscall_handler.h>
|
|
|
|
static inline int z_vrfy_i2c_configure(struct device *dev, u32_t dev_config)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_DRIVER_I2C(dev, configure));
|
|
return z_impl_i2c_configure((struct device *)dev, dev_config);
|
|
}
|
|
#include <syscalls/i2c_configure_mrsh.c>
|
|
|
|
static u32_t copy_msgs_and_transfer(struct device *dev,
|
|
const struct i2c_msg *msgs,
|
|
u8_t num_msgs,
|
|
u16_t addr)
|
|
{
|
|
struct i2c_msg copy[num_msgs];
|
|
u8_t i;
|
|
|
|
/* Use a local copy to avoid switcheroo attacks. */
|
|
memcpy(copy, msgs, num_msgs * sizeof(*msgs));
|
|
|
|
/* Validate the buffers in each message struct. Read options require
|
|
* that the target buffer be writable
|
|
*/
|
|
for (i = 0U; i < num_msgs; i++) {
|
|
Z_OOPS(Z_SYSCALL_MEMORY(copy[i].buf, copy[i].len,
|
|
copy[i].flags & I2C_MSG_READ));
|
|
}
|
|
|
|
return z_impl_i2c_transfer(dev, copy, num_msgs, addr);
|
|
}
|
|
|
|
static inline int z_vrfy_i2c_transfer(struct device *dev,
|
|
struct i2c_msg *msgs, u8_t num_msgs,
|
|
u16_t addr)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_OBJ(dev, K_OBJ_DRIVER_I2C));
|
|
|
|
/* copy_msgs_and_transfer() will allocate a copy on the stack using
|
|
* VLA, so ensure this won't blow the stack. Most functions defined
|
|
* in i2c.h use only a handful of messages, so up to 32 messages
|
|
* should be more than sufficient.
|
|
*/
|
|
Z_OOPS(Z_SYSCALL_VERIFY(num_msgs >= 1 && num_msgs < 32));
|
|
|
|
/* We need to be able to read the overall array of messages */
|
|
Z_OOPS(Z_SYSCALL_MEMORY_ARRAY_READ(msgs, num_msgs,
|
|
sizeof(struct i2c_msg)));
|
|
|
|
return copy_msgs_and_transfer((struct device *)dev,
|
|
(struct i2c_msg *)msgs,
|
|
(u8_t)num_msgs, (u16_t)addr);
|
|
}
|
|
#include <syscalls/i2c_transfer_mrsh.c>
|
|
|
|
static inline int z_vrfy_i2c_slave_driver_register(struct device *dev)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_OBJ(dev, K_OBJ_DRIVER_I2C));
|
|
return z_impl_i2c_slave_driver_register(dev);
|
|
}
|
|
#include <syscalls/i2c_slave_driver_register_mrsh.c>
|
|
|
|
static inline int z_vrfy_i2c_slave_driver_unregister(struct device *dev)
|
|
{
|
|
Z_OOPS(Z_SYSCALL_OBJ(dev, K_OBJ_DRIVER_I2C));
|
|
return z_vrfy_i2c_slave_driver_unregister(dev);
|
|
}
|
|
#include <syscalls/i2c_slave_driver_unregister_mrsh.c>
|