IClientEnv.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* SPDX-License-Identifier: GPL-2.0-only
  2. *
  3. * Copyright (c) 2021 The Linux Foundation. All rights reserved.
  4. */
  5. #define IClientEnv_OP_open 0
  6. #define IClientEnv_OP_registerLegacy 1
  7. #define IClientEnv_OP_register 2
  8. #define IClientEnv_OP_registerWithWhitelist 3
  9. static inline int32_t
  10. IClientEnv_release(struct Object self)
  11. {
  12. return Object_invoke(self, Object_OP_release, 0, 0);
  13. }
  14. static inline int32_t
  15. IClientEnv_retain(struct Object self)
  16. {
  17. return Object_invoke(self, Object_OP_retain, 0, 0);
  18. }
  19. static inline int32_t
  20. IClientEnv_open(struct Object self, uint32_t uid_val, struct Object *obj_ptr)
  21. {
  22. union ObjectArg a[2];
  23. int32_t result;
  24. a[0].b = (struct ObjectBuf) { &uid_val, sizeof(uint32_t) };
  25. result = Object_invoke(self, IClientEnv_OP_open, a, ObjectCounts_pack(1, 0, 0, 1));
  26. *obj_ptr = a[1].o;
  27. return result;
  28. }
  29. static inline int32_t
  30. IClientEnv_registerLegacy(struct Object self, const void *credentials_ptr, size_t credentials_len,
  31. struct Object *clientEnv_ptr)
  32. {
  33. union ObjectArg a[2];
  34. int32_t result;
  35. a[0].bi = (struct ObjectBufIn) { credentials_ptr, credentials_len * 1 };
  36. result = Object_invoke(self, IClientEnv_OP_registerLegacy, a,
  37. ObjectCounts_pack(1, 0, 0, 1));
  38. *clientEnv_ptr = a[1].o;
  39. return result;
  40. }
  41. static inline int32_t
  42. IClientEnv_register(struct Object self, struct Object credentials_val,
  43. struct Object *clientEnv_ptr)
  44. {
  45. union ObjectArg a[2];
  46. int32_t result;
  47. a[0].o = credentials_val;
  48. result = Object_invoke(self, IClientEnv_OP_register, a,
  49. ObjectCounts_pack(0, 0, 1, 1));
  50. *clientEnv_ptr = a[1].o;
  51. return result;
  52. }
  53. static inline int32_t
  54. IClientEnv_registerWithWhitelist(struct Object self,
  55. struct Object credentials_val, const uint32_t *uids_ptr,
  56. size_t uids_len, struct Object *clientEnv_ptr)
  57. {
  58. union ObjectArg a[3];
  59. int32_t result;
  60. a[1].o = credentials_val;
  61. a[0].bi = (struct ObjectBufIn) { uids_ptr, uids_len *
  62. sizeof(uint32_t) };
  63. result = Object_invoke(self, IClientEnv_OP_registerWithWhitelist, a,
  64. ObjectCounts_pack(1, 0, 1, 1));
  65. *clientEnv_ptr = a[2].o;
  66. return result;
  67. }