IClientEnv.h 2.7 KB

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