userspace_handler.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <kernel.h>
  7. #include <syscall_handler.h>
  8. #include <kernel_structs.h>
  9. static struct z_object *validate_any_object(const void *obj)
  10. {
  11. struct z_object *ko;
  12. int ret;
  13. ko = z_object_find(obj);
  14. /* This can be any kernel object and it doesn't have to be
  15. * initialized
  16. */
  17. ret = z_object_validate(ko, K_OBJ_ANY, _OBJ_INIT_ANY);
  18. if (ret != 0) {
  19. #ifdef CONFIG_LOG
  20. z_dump_object_error(ret, obj, ko, K_OBJ_ANY);
  21. #endif
  22. return NULL;
  23. }
  24. return ko;
  25. }
  26. /* Normally these would be included in userspace.c, but the way
  27. * syscall_dispatch.c declares weak handlers results in build errors if these
  28. * are located in userspace.c. Just put in a separate file.
  29. *
  30. * To avoid double z_object_find() lookups, we don't call the implementation
  31. * function, but call a level deeper.
  32. */
  33. static inline void z_vrfy_k_object_access_grant(const void *object,
  34. struct k_thread *thread)
  35. {
  36. struct z_object *ko;
  37. Z_OOPS(Z_SYSCALL_OBJ_INIT(thread, K_OBJ_THREAD));
  38. ko = validate_any_object(object);
  39. Z_OOPS(Z_SYSCALL_VERIFY_MSG(ko != NULL, "object %p access denied",
  40. object));
  41. z_thread_perms_set(ko, thread);
  42. }
  43. #include <syscalls/k_object_access_grant_mrsh.c>
  44. static inline void z_vrfy_k_object_release(const void *object)
  45. {
  46. struct z_object *ko;
  47. ko = validate_any_object((void *)object);
  48. Z_OOPS(Z_SYSCALL_VERIFY_MSG(ko != NULL, "object %p access denied",
  49. (void *)object));
  50. z_thread_perms_clear(ko, _current);
  51. }
  52. #include <syscalls/k_object_release_mrsh.c>
  53. static inline void *z_vrfy_k_object_alloc(enum k_objects otype)
  54. {
  55. return z_impl_k_object_alloc(otype);
  56. }
  57. #include <syscalls/k_object_alloc_mrsh.c>