smcinvoke_object.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __SMCINVOKE_OBJECT_H
  6. #define __SMCINVOKE_OBJECT_H
  7. #include <linux/types.h>
  8. #include <linux/firmware.h>
  9. #include <linux/qtee_shmbridge.h>
  10. /*
  11. * Method bits are not modified by transport layers. These describe the
  12. * method (member function) being requested by the client.
  13. */
  14. #define OBJECT_OP_METHOD_MASK (0x0000FFFFu)
  15. #define OBJECT_OP_METHODID(op) ((op) & OBJECT_OP_METHOD_MASK)
  16. #define OBJECT_OP_RELEASE (OBJECT_OP_METHOD_MASK - 0)
  17. #define OBJECT_OP_RETAIN (OBJECT_OP_METHOD_MASK - 1)
  18. #define OBJECT_OP_MAP_REGION 0
  19. #define OBJECT_OP_YIELD 1
  20. #define OBJECT_COUNTS_MAX_BI 0xF
  21. #define OBJECT_COUNTS_MAX_BO 0xF
  22. #define OBJECT_COUNTS_MAX_OI 0xF
  23. #define OBJECT_COUNTS_MAX_OO 0xF
  24. /* unpack counts */
  25. #define OBJECT_COUNTS_NUM_BI(k) ((size_t) (((k) >> 0) & OBJECT_COUNTS_MAX_BI))
  26. #define OBJECT_COUNTS_NUM_BO(k) ((size_t) (((k) >> 4) & OBJECT_COUNTS_MAX_BO))
  27. #define OBJECT_COUNTS_NUM_OI(k) ((size_t) (((k) >> 8) & OBJECT_COUNTS_MAX_OI))
  28. #define OBJECT_COUNTS_NUM_OO(k) ((size_t) (((k) >> 12) & OBJECT_COUNTS_MAX_OO))
  29. #define OBJECT_COUNTS_NUM_buffers(k) \
  30. (OBJECT_COUNTS_NUM_BI(k) + OBJECT_COUNTS_NUM_BO(k))
  31. #define OBJECT_COUNTS_NUM_objects(k) \
  32. (OBJECT_COUNTS_NUM_OI(k) + OBJECT_COUNTS_NUM_OO(k))
  33. /* Indices into args[] */
  34. #define OBJECT_COUNTS_INDEX_BI(k) 0
  35. #define OBJECT_COUNTS_INDEX_BO(k) \
  36. (OBJECT_COUNTS_INDEX_BI(k) + OBJECT_COUNTS_NUM_BI(k))
  37. #define OBJECT_COUNTS_INDEX_OI(k) \
  38. (OBJECT_COUNTS_INDEX_BO(k) + OBJECT_COUNTS_NUM_BO(k))
  39. #define OBJECT_COUNTS_INDEX_OO(k) \
  40. (OBJECT_COUNTS_INDEX_OI(k) + OBJECT_COUNTS_NUM_OI(k))
  41. #define OBJECT_COUNTS_TOTAL(k) \
  42. (OBJECT_COUNTS_INDEX_OO(k) + OBJECT_COUNTS_NUM_OO(k))
  43. #define OBJECT_COUNTS_PACK(in_bufs, out_bufs, in_objs, out_objs) \
  44. ((uint32_t) ((in_bufs) | ((out_bufs) << 4) | \
  45. ((in_objs) << 8) | ((out_objs) << 12)))
  46. #define OBJECT_COUNTS_INDEX_buffers(k) OBJECT_COUNTS_INDEX_BI(k)
  47. /* Object_invoke return codes */
  48. #define OBJECT_isOK(err) ((err) == 0)
  49. #define OBJECT_isERROR(err) ((err) != 0)
  50. /* Generic error codes */
  51. #define OBJECT_OK 0 /* non-specific success code */
  52. #define OBJECT_ERROR 1 /* non-specific error */
  53. #define OBJECT_ERROR_INVALID 2 /* unsupported/unrecognized request */
  54. #define OBJECT_ERROR_SIZE_IN 3 /* supplied buffer/string too large */
  55. #define OBJECT_ERROR_SIZE_OUT 4 /* supplied output buffer too small */
  56. #define OBJECT_ERROR_USERBASE 10 /* start of user-defined error range */
  57. /* Transport layer error codes */
  58. #define OBJECT_ERROR_DEFUNCT -90 /* object no longer exists */
  59. #define OBJECT_ERROR_ABORT -91 /* calling thread must exit */
  60. #define OBJECT_ERROR_BADOBJ -92 /* invalid object context */
  61. #define OBJECT_ERROR_NOSLOTS -93 /* caller's object table full */
  62. #define OBJECT_ERROR_MAXARGS -94 /* too many args */
  63. #define OBJECT_ERROR_MAXDATA -95 /* buffers too large */
  64. #define OBJECT_ERROR_UNAVAIL -96 /* the request could not be processed */
  65. #define OBJECT_ERROR_KMEM -97 /* kernel out of memory */
  66. #define OBJECT_ERROR_REMOTE -98 /* local method sent to remote object */
  67. #define OBJECT_ERROR_BUSY -99 /* Object is busy */
  68. #define Object_ERROR_TIMEOUT -103 /* Call Back Object invocation timed out. */
  69. #define FOR_ARGS(ndxvar, counts, section) \
  70. for (ndxvar = OBJECT_COUNTS_INDEX_##section(counts); \
  71. ndxvar < (OBJECT_COUNTS_INDEX_##section(counts) \
  72. + OBJECT_COUNTS_NUM_##section(counts)); \
  73. ++ndxvar)
  74. /* ObjectOp */
  75. #define ObjectOp_METHOD_MASK ((uint32_t) 0x0000FFFFu)
  76. #define ObjectOp_methodID(op) ((op) & ObjectOp_METHOD_MASK)
  77. #define ObjectOp_LOCAL ((uint32_t) 0x00008000U)
  78. #define ObjectOp_isLocal(op) (((op) & ObjectOp_LOCAL) != 0)
  79. #define Object_OP_release (ObjectOp_METHOD_MASK - 0)
  80. #define Object_OP_retain (ObjectOp_METHOD_MASK - 1)
  81. /* Object */
  82. #define ObjectCounts_pack(nBuffersIn, nBuffersOut, nObjectsIn, nObjectsOut) \
  83. ((uint32_t) ((nBuffersIn) | \
  84. ((nBuffersOut) << 4) | \
  85. ((nObjectsIn) << 8) | \
  86. ((nObjectsOut) << 12)))
  87. union ObjectArg;
  88. typedef int32_t (*ObjectInvoke)(void *h,
  89. uint32_t op,
  90. union ObjectArg *args,
  91. uint32_t counts);
  92. struct Object {
  93. ObjectInvoke invoke;
  94. void *context;
  95. };
  96. struct ObjectBuf {
  97. void *ptr;
  98. size_t size;
  99. };
  100. struct ObjectBufIn {
  101. const void *ptr;
  102. size_t size;
  103. };
  104. union ObjectArg {
  105. struct ObjectBuf b;
  106. struct ObjectBufIn bi;
  107. struct Object o;
  108. };
  109. static inline int32_t Object_invoke(struct Object o, uint32_t op,
  110. union ObjectArg *args, uint32_t k)
  111. {
  112. return o.invoke(o.context, op, args, k);
  113. }
  114. #define Object_NULL ((struct Object){NULL, NULL})
  115. #define OBJECT_NOT_RETAINED
  116. #define OBJECT_CONSUMED
  117. static inline int32_t Object_release(OBJECT_CONSUMED struct Object o)
  118. {
  119. return Object_invoke((o), Object_OP_release, 0, 0);
  120. }
  121. static inline int32_t Object_retain(struct Object o)
  122. {
  123. return Object_invoke((o), Object_OP_retain, 0, 0);
  124. }
  125. #define Object_isNull(o) ((o).invoke == NULL)
  126. #define Object_RELEASE_IF(o) \
  127. do { \
  128. struct Object o_ = (o); \
  129. if (!Object_isNull(o_)) \
  130. (void) Object_release(o_); \
  131. } while (0)
  132. static inline void Object_replace(struct Object *loc, struct Object objNew)
  133. {
  134. if (!Object_isNull(*loc))
  135. Object_release(*loc);
  136. if (!Object_isNull(objNew))
  137. Object_retain(objNew);
  138. *loc = objNew;
  139. }
  140. #define Object_ASSIGN_NULL(loc) Object_replace(&(loc), Object_NULL)
  141. int smcinvoke_release_from_kernel_client(int fd);
  142. int get_root_fd(int *root_fd);
  143. int process_invoke_request_from_kernel_client(
  144. int fd, struct smcinvoke_cmd_req *req);
  145. char *firmware_request_from_smcinvoke(const char *appname, size_t *fw_size, struct qtee_shm *shm);
  146. #endif /* __SMCINVOKE_OBJECT_H */