mutex.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <sys/mutex.h>
  8. #include <syscall_handler.h>
  9. #include <kernel_structs.h>
  10. static struct k_mutex *get_k_mutex(struct sys_mutex *mutex)
  11. {
  12. struct z_object *obj;
  13. obj = z_object_find(mutex);
  14. if (obj == NULL || obj->type != K_OBJ_SYS_MUTEX) {
  15. return NULL;
  16. }
  17. return obj->data.mutex;
  18. }
  19. static bool check_sys_mutex_addr(struct sys_mutex *addr)
  20. {
  21. /* sys_mutex memory is never touched, just used to lookup the
  22. * underlying k_mutex, but we don't want threads using mutexes
  23. * that are outside their memory domain
  24. */
  25. return Z_SYSCALL_MEMORY_WRITE(addr, sizeof(struct sys_mutex));
  26. }
  27. int z_impl_z_sys_mutex_kernel_lock(struct sys_mutex *mutex, k_timeout_t timeout)
  28. {
  29. struct k_mutex *kernel_mutex = get_k_mutex(mutex);
  30. if (kernel_mutex == NULL) {
  31. return -EINVAL;
  32. }
  33. return k_mutex_lock(kernel_mutex, timeout);
  34. }
  35. static inline int z_vrfy_z_sys_mutex_kernel_lock(struct sys_mutex *mutex,
  36. k_timeout_t timeout)
  37. {
  38. if (check_sys_mutex_addr(mutex)) {
  39. return -EACCES;
  40. }
  41. return z_impl_z_sys_mutex_kernel_lock(mutex, timeout);
  42. }
  43. #include <syscalls/z_sys_mutex_kernel_lock_mrsh.c>
  44. int z_impl_z_sys_mutex_kernel_unlock(struct sys_mutex *mutex)
  45. {
  46. struct k_mutex *kernel_mutex = get_k_mutex(mutex);
  47. if (kernel_mutex == NULL || kernel_mutex->lock_count == 0) {
  48. return -EINVAL;
  49. }
  50. return k_mutex_unlock(kernel_mutex);
  51. }
  52. static inline int z_vrfy_z_sys_mutex_kernel_unlock(struct sys_mutex *mutex)
  53. {
  54. if (check_sys_mutex_addr(mutex)) {
  55. return -EACCES;
  56. }
  57. return z_impl_z_sys_mutex_kernel_unlock(mutex);
  58. }
  59. #include <syscalls/z_sys_mutex_kernel_unlock_mrsh.c>