smcinvoke_kernel.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #if !IS_ENABLED(CONFIG_QSEECOM)
  7. #include <linux/file.h>
  8. #include <linux/fs.h>
  9. #include <linux/fdtable.h>
  10. #include <linux/anon_inodes.h>
  11. #include <linux/kref.h>
  12. #include <linux/types.h>
  13. #include <linux/slab.h>
  14. #include <linux/firmware.h>
  15. #include <linux/elf.h>
  16. #include "smcinvoke.h"
  17. #include "linux/qseecom.h"
  18. #include "smcinvoke_object.h"
  19. #include "misc/qseecom_kernel.h"
  20. #include "IQSEEComCompat.h"
  21. #include "IQSEEComCompatAppLoader.h"
  22. #include "IClientEnv.h"
  23. const uint32_t CQSEEComCompatAppLoader_UID = 122;
  24. struct qseecom_compat_context {
  25. void *dev; /* in/out */
  26. unsigned char *sbuf; /* in/out */
  27. uint32_t sbuf_len; /* in/out */
  28. struct qtee_shm shm;
  29. uint8_t app_arch;
  30. struct Object client_env;
  31. struct Object app_loader;
  32. struct Object app_controller;
  33. };
  34. struct tzobject_context {
  35. int fd;
  36. struct kref refs;
  37. };
  38. static int invoke_over_smcinvoke(void *cxt,
  39. uint32_t op,
  40. union ObjectArg *args,
  41. uint32_t counts);
  42. static struct Object tzobject_new(int fd)
  43. {
  44. struct tzobject_context *me =
  45. kzalloc(sizeof(struct tzobject_context), GFP_KERNEL);
  46. if (!me)
  47. return Object_NULL;
  48. kref_init(&me->refs);
  49. me->fd = fd;
  50. pr_debug("%s: me->fd = %d, me->refs = %u\n", __func__,
  51. me->fd, kref_read(&me->refs));
  52. return (struct Object) { invoke_over_smcinvoke, me };
  53. }
  54. static void tzobject_delete(struct kref *refs)
  55. {
  56. struct tzobject_context *me = container_of(refs,
  57. struct tzobject_context, refs);
  58. pr_info("%s: me->fd = %d, me->refs = %d, files = %p\n",
  59. __func__, me->fd, kref_read(&me->refs), current->files);
  60. /*
  61. * after _close_fd(), ref_cnt will be 0,
  62. * but smcinvoke_release() was still not called,
  63. * so we first call smcinvoke_release_from_kernel_client() to
  64. * free filp and ask TZ to release object, then call _close_fd()
  65. */
  66. smcinvoke_release_from_kernel_client(me->fd);
  67. close_fd(me->fd);
  68. kfree(me);
  69. }
  70. int getObjectFromHandle(int handle, struct Object *obj)
  71. {
  72. int ret = 0;
  73. if (handle == SMCINVOKE_USERSPACE_OBJ_NULL) {
  74. /* NULL object*/
  75. Object_ASSIGN_NULL(*obj);
  76. } else if (handle > SMCINVOKE_USERSPACE_OBJ_NULL) {
  77. *obj = tzobject_new(handle);
  78. if (Object_isNull(*obj))
  79. ret = OBJECT_ERROR_BADOBJ;
  80. } else {
  81. pr_err("CBobj not supported for handle %d\n", handle);
  82. ret = OBJECT_ERROR_BADOBJ;
  83. }
  84. return ret;
  85. }
  86. int getHandleFromObject(struct Object obj, int *handle)
  87. {
  88. int ret = 0;
  89. if (Object_isNull(obj)) {
  90. /* set NULL Object's fd to be -1 */
  91. *handle = SMCINVOKE_USERSPACE_OBJ_NULL;
  92. return ret;
  93. }
  94. if (obj.invoke == invoke_over_smcinvoke) {
  95. struct tzobject_context *ctx = (struct tzobject_context *)(obj.context);
  96. if (ctx != NULL) {
  97. *handle = ctx->fd;
  98. } else {
  99. pr_err("Failed to get tzobject_context obj handle, ret = %d\n", ret);
  100. ret = OBJECT_ERROR_BADOBJ;
  101. }
  102. } else {
  103. pr_err("CBobj not supported\n");
  104. ret = OBJECT_ERROR_BADOBJ;
  105. }
  106. return ret;
  107. }
  108. static int marshalIn(struct smcinvoke_cmd_req *req,
  109. union smcinvoke_arg *argptr,
  110. uint32_t op, union ObjectArg *args,
  111. uint32_t counts)
  112. {
  113. size_t i = 0;
  114. req->op = op;
  115. req->counts = counts;
  116. req->argsize = sizeof(union smcinvoke_arg);
  117. req->args = (uintptr_t)argptr;
  118. FOR_ARGS(i, counts, buffers) {
  119. argptr[i].b.addr = (uintptr_t) args[i].b.ptr;
  120. argptr[i].b.size = args[i].b.size;
  121. }
  122. FOR_ARGS(i, counts, OI) {
  123. int handle = -1, ret;
  124. ret = getHandleFromObject(args[i].o, &handle);
  125. if (ret) {
  126. pr_err("invalid OI[%zu]\n", i);
  127. return OBJECT_ERROR_BADOBJ;
  128. }
  129. argptr[i].o.fd = handle;
  130. }
  131. FOR_ARGS(i, counts, OO) {
  132. argptr[i].o.fd = SMCINVOKE_USERSPACE_OBJ_NULL;
  133. }
  134. return OBJECT_OK;
  135. }
  136. static int marshalOut(struct smcinvoke_cmd_req *req,
  137. union smcinvoke_arg *argptr,
  138. union ObjectArg *args, uint32_t counts,
  139. struct tzobject_context *me)
  140. {
  141. int ret = req->result;
  142. bool failed = false;
  143. size_t i = 0;
  144. argptr = (union smcinvoke_arg *)(uintptr_t)(req->args);
  145. FOR_ARGS(i, counts, BO) {
  146. args[i].b.size = argptr[i].b.size;
  147. }
  148. FOR_ARGS(i, counts, OO) {
  149. ret = getObjectFromHandle(argptr[i].o.fd, &(args[i].o));
  150. if (ret) {
  151. pr_err("Failed to get OO[%zu] from handle = %d\n",
  152. i, (int)argptr[i].o.fd);
  153. failed = true;
  154. break;
  155. }
  156. pr_debug("Succeed to create OO for args[%zu].o, fd = %d\n",
  157. i, (int)argptr[i].o.fd);
  158. }
  159. if (failed) {
  160. FOR_ARGS(i, counts, OO) {
  161. Object_ASSIGN_NULL(args[i].o);
  162. }
  163. /* Only overwrite ret value if invoke result is 0 */
  164. if (ret == 0)
  165. ret = OBJECT_ERROR_BADOBJ;
  166. }
  167. return ret;
  168. }
  169. static int invoke_over_smcinvoke(void *cxt,
  170. uint32_t op,
  171. union ObjectArg *args,
  172. uint32_t counts)
  173. {
  174. int ret = OBJECT_OK;
  175. struct smcinvoke_cmd_req req = {0, 0, 0, 0, 0};
  176. size_t i = 0;
  177. struct tzobject_context *me = NULL;
  178. uint32_t method;
  179. union smcinvoke_arg *argptr = NULL;
  180. FOR_ARGS(i, counts, OO) {
  181. args[i].o = Object_NULL;
  182. }
  183. me = (struct tzobject_context *)cxt;
  184. method = ObjectOp_methodID(op);
  185. pr_debug("%s: cxt = %p, fd = %d, op = %u, cnt = %x, refs = %u\n",
  186. __func__, me, me->fd, op, counts, kref_read(&me->refs));
  187. if (ObjectOp_isLocal(op)) {
  188. switch (method) {
  189. case Object_OP_retain:
  190. kref_get(&me->refs);
  191. return OBJECT_OK;
  192. case Object_OP_release:
  193. kref_put(&me->refs, tzobject_delete);
  194. return OBJECT_OK;
  195. }
  196. return OBJECT_ERROR_REMOTE;
  197. }
  198. argptr = kcalloc(OBJECT_COUNTS_TOTAL(counts),
  199. sizeof(union smcinvoke_arg), GFP_KERNEL);
  200. if (argptr == NULL)
  201. return OBJECT_ERROR_KMEM;
  202. ret = marshalIn(&req, argptr, op, args, counts);
  203. if (ret)
  204. goto exit;
  205. ret = process_invoke_request_from_kernel_client(me->fd, &req);
  206. if (ret) {
  207. pr_err("INVOKE failed with ret = %d, result = %d\n"
  208. "obj.context = %p, fd = %d, op = %d, counts = 0x%x\n",
  209. ret, req.result, me, me->fd, op, counts);
  210. FOR_ARGS(i, counts, OO) {
  211. struct smcinvoke_obj obj = argptr[i].o;
  212. if (obj.fd >= 0) {
  213. pr_err("Close OO[%zu].fd = %d\n", i, obj.fd);
  214. close_fd(obj.fd);
  215. }
  216. }
  217. ret = OBJECT_ERROR_KMEM;
  218. goto exit;
  219. }
  220. if (!req.result)
  221. ret = marshalOut(&req, argptr, args, counts, me);
  222. exit:
  223. kfree(argptr);
  224. return ret | req.result;
  225. }
  226. static int get_root_obj(struct Object *rootObj)
  227. {
  228. int ret = 0;
  229. int root_fd = -1;
  230. ret = get_root_fd(&root_fd);
  231. if (ret) {
  232. pr_err("Failed to get root fd, ret = %d\n");
  233. return ret;
  234. }
  235. *rootObj = tzobject_new(root_fd);
  236. if (Object_isNull(*rootObj)) {
  237. close_fd(root_fd);
  238. ret = -ENOMEM;
  239. }
  240. return ret;
  241. }
  242. /*
  243. * Get a client environment using a NULL credentials Object
  244. */
  245. int32_t get_client_env_object(struct Object *clientEnvObj)
  246. {
  247. int32_t ret = OBJECT_ERROR;
  248. struct Object rootObj = Object_NULL;
  249. /* get rootObj */
  250. ret = get_root_obj(&rootObj);
  251. if (ret) {
  252. pr_err("Failed to create rootobj\n");
  253. return ret;
  254. }
  255. /* get client env */
  256. ret = IClientEnv_registerWithCredentials(rootObj,
  257. Object_NULL, clientEnvObj);
  258. if (ret)
  259. pr_err("Failed to get ClientEnvObject, ret = %d\n", ret);
  260. Object_release(rootObj);
  261. return ret;
  262. }
  263. EXPORT_SYMBOL(get_client_env_object);
  264. static int load_app(struct qseecom_compat_context *cxt, const char *app_name)
  265. {
  266. size_t fw_size = 0;
  267. u8 *imgbuf_va = NULL;
  268. int ret = 0;
  269. char dist_name[MAX_APP_NAME_SIZE] = {0};
  270. size_t dist_name_len = 0;
  271. struct qtee_shm shm = {0};
  272. if (strnlen(app_name, MAX_APP_NAME_SIZE) == MAX_APP_NAME_SIZE) {
  273. pr_err("The app_name (%s) with length %zu is not valid\n",
  274. app_name, strnlen(app_name, MAX_APP_NAME_SIZE));
  275. return -EINVAL;
  276. }
  277. ret = IQSEEComCompatAppLoader_lookupTA(cxt->app_loader,
  278. app_name, strlen(app_name), &cxt->app_controller);
  279. if (!ret) {
  280. pr_info("app %s exists\n", app_name);
  281. return ret;
  282. }
  283. imgbuf_va = firmware_request_from_smcinvoke(app_name, &fw_size, &shm);
  284. if (imgbuf_va == NULL) {
  285. pr_err("Failed on firmware_request_from_smcinvoke\n");
  286. return -EINVAL;
  287. }
  288. ret = IQSEEComCompatAppLoader_loadFromBuffer(
  289. cxt->app_loader, imgbuf_va, fw_size,
  290. app_name, strlen(app_name),
  291. dist_name, MAX_APP_NAME_SIZE, &dist_name_len,
  292. &cxt->app_controller);
  293. if (ret) {
  294. pr_err("loadFromBuffer failed for app %s, ret = %d\n",
  295. app_name, ret);
  296. goto exit_release_shm;
  297. }
  298. cxt->app_arch = *(uint8_t *)(imgbuf_va + EI_CLASS);
  299. pr_info("%s %d, loaded app %s, dist_name %s, dist_name_len %zu\n",
  300. __func__, __LINE__, app_name, dist_name, dist_name_len);
  301. exit_release_shm:
  302. qtee_shmbridge_free_shm(&shm);
  303. return ret;
  304. }
  305. int qseecom_start_app(struct qseecom_handle **handle,
  306. char *app_name, uint32_t size)
  307. {
  308. int ret = 0;
  309. struct qseecom_compat_context *cxt = NULL;
  310. pr_warn("%s, start app %s, size %zu\n",
  311. __func__, app_name, size);
  312. if (app_name == NULL || handle == NULL) {
  313. pr_err("app_name is null or invalid handle\n");
  314. return -EINVAL;
  315. }
  316. /* allocate qseecom_compat_context */
  317. cxt = kzalloc(sizeof(struct qseecom_compat_context), GFP_KERNEL);
  318. if (!cxt)
  319. return -ENOMEM;
  320. /* get client env */
  321. ret = get_client_env_object(&cxt->client_env);
  322. if (ret) {
  323. pr_err("failed to get clientEnv when loading app %s, ret %d\n",
  324. app_name, ret);
  325. ret = -EINVAL;
  326. goto exit_free_cxt;
  327. }
  328. /* get apploader with CQSEEComCompatAppLoader_UID */
  329. ret = IClientEnv_open(cxt->client_env, CQSEEComCompatAppLoader_UID,
  330. &cxt->app_loader);
  331. if (ret) {
  332. pr_err("failed to get apploader when loading app %s, ret %d\n",
  333. app_name, ret);
  334. ret = -EINVAL;
  335. goto exit_release_clientenv;
  336. }
  337. /* load app*/
  338. ret = load_app(cxt, app_name);
  339. if (ret) {
  340. pr_err("failed to load app %s, ret = %d\n",
  341. app_name, ret);
  342. ret = -EINVAL;
  343. goto exit_release_apploader;
  344. }
  345. /* Get the physical address of the req/resp buffer */
  346. ret = qtee_shmbridge_allocate_shm(size, &cxt->shm);
  347. if (ret) {
  348. pr_err("qtee_shmbridge_allocate_shm failed, ret :%d\n", ret);
  349. ret = -EINVAL;
  350. goto exit_release_appcontroller;
  351. }
  352. cxt->sbuf = cxt->shm.vaddr;
  353. cxt->sbuf_len = size;
  354. *handle = (struct qseecom_handle *)cxt;
  355. return ret;
  356. exit_release_appcontroller:
  357. Object_release(cxt->app_controller);
  358. exit_release_apploader:
  359. Object_release(cxt->app_loader);
  360. exit_release_clientenv:
  361. Object_release(cxt->client_env);
  362. exit_free_cxt:
  363. kfree(cxt);
  364. return ret;
  365. }
  366. EXPORT_SYMBOL(qseecom_start_app);
  367. int qseecom_shutdown_app(struct qseecom_handle **handle)
  368. {
  369. struct qseecom_compat_context *cxt =
  370. (struct qseecom_compat_context *)(*handle);
  371. if ((handle == NULL) || (*handle == NULL)) {
  372. pr_err("Handle is NULL\n");
  373. return -EINVAL;
  374. }
  375. qtee_shmbridge_free_shm(&cxt->shm);
  376. Object_release(cxt->app_controller);
  377. Object_release(cxt->app_loader);
  378. Object_release(cxt->client_env);
  379. kfree(cxt);
  380. *handle = NULL;
  381. return 0;
  382. }
  383. EXPORT_SYMBOL(qseecom_shutdown_app);
  384. int qseecom_send_command(struct qseecom_handle *handle, void *send_buf,
  385. uint32_t sbuf_len, void *resp_buf, uint32_t rbuf_len)
  386. {
  387. struct qseecom_compat_context *cxt =
  388. (struct qseecom_compat_context *)handle;
  389. size_t out_len = 0;
  390. pr_debug("%s, sbuf_len %u, rbuf_len %u\n",
  391. __func__, sbuf_len, rbuf_len);
  392. if (!handle || !send_buf || !resp_buf || !sbuf_len || !rbuf_len) {
  393. pr_err("One of params is invalid. %s, handle %x, send_buf %x,resp_buf %x,sbuf_len %u, rbuf_len %u\n",
  394. __func__, handle, send_buf, resp_buf, sbuf_len, rbuf_len);
  395. return -EINVAL;
  396. }
  397. return IQSEEComCompat_sendRequest(cxt->app_controller,
  398. send_buf, sbuf_len,
  399. resp_buf, rbuf_len,
  400. send_buf, sbuf_len, &out_len,
  401. resp_buf, rbuf_len, &out_len,
  402. NULL, 0, /* embedded offset array */
  403. (cxt->app_arch == ELFCLASS64),
  404. Object_NULL, Object_NULL,
  405. Object_NULL, Object_NULL);
  406. }
  407. EXPORT_SYMBOL(qseecom_send_command);
  408. #endif