smcinvoke_kernel.c 11 KB

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