IQSEEComCompatAppLoader.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* SPDX-License-Identifier: GPL-2.0-only
  2. *
  3. * Copyright (c) 2021 The Linux Foundation. All rights reserved.
  4. */
  5. #include "smcinvoke_object.h"
  6. #define IQSEEComCompatAppLoader_ERROR_INVALID_BUFFER INT32_C(10)
  7. #define IQSEEComCompatAppLoader_ERROR_PIL_ROLLBACK_FAILURE INT32_C(11)
  8. #define IQSEEComCompatAppLoader_ERROR_ELF_SIGNATURE_ERROR INT32_C(12)
  9. #define IQSEEComCompatAppLoader_ERROR_METADATA_INVALID INT32_C(13)
  10. #define IQSEEComCompatAppLoader_ERROR_MAX_NUM_APPS INT32_C(14)
  11. #define IQSEEComCompatAppLoader_ERROR_NO_NAME_IN_METADATA INT32_C(15)
  12. #define IQSEEComCompatAppLoader_ERROR_ALREADY_LOADED INT32_C(16)
  13. #define IQSEEComCompatAppLoader_ERROR_EMBEDDED_IMAGE_NOT_FOUND INT32_C(17)
  14. #define IQSEEComCompatAppLoader_ERROR_TZ_HEAP_MALLOC_FAILURE INT32_C(18)
  15. #define IQSEEComCompatAppLoader_ERROR_TA_APP_REGION_MALLOC_FAILURE INT32_C(19)
  16. #define IQSEEComCompatAppLoader_ERROR_CLIENT_CRED_PARSING_FAILURE INT32_C(20)
  17. #define IQSEEComCompatAppLoader_ERROR_APP_UNTRUSTED_CLIENT INT32_C(21)
  18. #define IQSEEComCompatAppLoader_ERROR_APP_NOT_LOADED INT32_C(22)
  19. #define IQSEEComCompatAppLoader_ERROR_NOT_QSEECOM_COMPAT_APP INT32_C(23)
  20. #define IQSEEComCompatAppLoader_ERROR_FILENAME_TOO_LONG INT32_C(24)
  21. #define IQSEEComCompatAppLoader_OP_loadFromRegion 0
  22. #define IQSEEComCompatAppLoader_OP_loadFromBuffer 1
  23. #define IQSEEComCompatAppLoader_OP_lookupTA 2
  24. static inline int32_t
  25. IQSEEComCompatAppLoader_release(struct Object self)
  26. {
  27. return Object_invoke(self, Object_OP_release, 0, 0);
  28. }
  29. static inline int32_t
  30. IQSEEComCompatAppLoader_retain(struct Object self)
  31. {
  32. return Object_invoke(self, Object_OP_retain, 0, 0);
  33. }
  34. static inline int32_t
  35. IQSEEComCompatAppLoader_loadFromRegion(struct Object self,
  36. struct Object appElf_val, const void *filename_ptr,
  37. size_t filename_len, struct Object *appCompat_ptr)
  38. {
  39. union ObjectArg a[3];
  40. int32_t result;
  41. a[1].o = appElf_val;
  42. a[0].bi = (struct ObjectBufIn) { filename_ptr, filename_len * 1 };
  43. result = Object_invoke(self, IQSEEComCompatAppLoader_OP_loadFromRegion, a,
  44. ObjectCounts_pack(1, 0, 1, 1));
  45. *appCompat_ptr = a[2].o;
  46. return result;
  47. }
  48. static inline int32_t
  49. IQSEEComCompatAppLoader_loadFromBuffer(struct Object self,
  50. const void *appElf_ptr, size_t appElf_len,
  51. const void *filename_ptr, size_t filename_len,
  52. void *distName_ptr, size_t distName_len,
  53. size_t *distName_lenout, struct Object *appCompat_ptr)
  54. {
  55. union ObjectArg a[4];
  56. int32_t result;
  57. a[0].bi = (struct ObjectBufIn) { appElf_ptr, appElf_len * 1 };
  58. a[1].bi = (struct ObjectBufIn) { filename_ptr, filename_len * 1 };
  59. a[2].b = (struct ObjectBuf) { distName_ptr, distName_len * 1 };
  60. result = Object_invoke(self, IQSEEComCompatAppLoader_OP_loadFromBuffer,
  61. a, ObjectCounts_pack(2, 1, 0, 1));
  62. *distName_lenout = a[2].b.size / 1;
  63. *appCompat_ptr = a[3].o;
  64. return result;
  65. }
  66. static inline int32_t
  67. IQSEEComCompatAppLoader_lookupTA(struct Object self, const void *appName_ptr,
  68. size_t appName_len, struct Object *appCompat_ptr)
  69. {
  70. union ObjectArg a[2];
  71. int32_t result;
  72. a[0].bi = (struct ObjectBufIn) { appName_ptr, appName_len * 1 };
  73. result = Object_invoke(self, IQSEEComCompatAppLoader_OP_lookupTA,
  74. a, ObjectCounts_pack(1, 0, 0, 1));
  75. *appCompat_ptr = a[1].o;
  76. return result;
  77. }