smcinvoke.c 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #define pr_fmt(fmt) "smcinvoke: %s: " fmt, __func__
  7. #include <linux/module.h>
  8. #include <linux/mod_devicetable.h>
  9. #include <linux/device.h>
  10. #include <linux/platform_device.h>
  11. #include <linux/slab.h>
  12. #include <linux/file.h>
  13. #include <linux/fs.h>
  14. #include <linux/anon_inodes.h>
  15. #include <linux/hashtable.h>
  16. #include <linux/cdev.h>
  17. #include <linux/uaccess.h>
  18. #include <linux/dma-buf.h>
  19. #include <linux/delay.h>
  20. #include <linux/kref.h>
  21. #include <linux/signal.h>
  22. #include <linux/msm_ion.h>
  23. #include <linux/mem-buf.h>
  24. #include <linux/of_platform.h>
  25. #include <linux/firmware.h>
  26. #include <linux/qcom_scm.h>
  27. #include <asm/cacheflush.h>
  28. #include <soc/qcom/qseecomi.h>
  29. #include <linux/qtee_shmbridge.h>
  30. #include "misc/qseecom_kernel.h"
  31. #include "smcinvoke.h"
  32. #include "smcinvoke_object.h"
  33. #define CREATE_TRACE_POINTS
  34. #include "trace_smcinvoke.h"
  35. #define SMCINVOKE_DEV "smcinvoke"
  36. #define SMCINVOKE_TZ_ROOT_OBJ 1
  37. #define SMCINVOKE_TZ_OBJ_NULL 0
  38. #define SMCINVOKE_TZ_MIN_BUF_SIZE 4096
  39. #define SMCINVOKE_ARGS_ALIGN_SIZE (sizeof(uint64_t))
  40. #define SMCINVOKE_NEXT_AVAILABLE_TXN 0
  41. #define SMCINVOKE_REQ_PLACED 1
  42. #define SMCINVOKE_REQ_PROCESSING 2
  43. #define SMCINVOKE_REQ_PROCESSED 3
  44. #define SMCINVOKE_INCREMENT 1
  45. #define SMCINVOKE_DECREMENT 0
  46. #define SMCINVOKE_OBJ_TYPE_TZ_OBJ 0
  47. #define SMCINVOKE_OBJ_TYPE_SERVER 1
  48. #define SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL 2
  49. #define SMCINVOKE_MEM_MAP_OBJ 0
  50. #define SMCINVOKE_MEM_RGN_OBJ 1
  51. #define SMCINVOKE_MEM_PERM_RW 6
  52. #define SMCINVOKE_SCM_EBUSY_WAIT_MS 30
  53. #define SMCINVOKE_SCM_EBUSY_MAX_RETRY 67
  54. /* TZ defined values - Start */
  55. #define SMCINVOKE_INVOKE_PARAM_ID 0x224
  56. #define SMCINVOKE_CB_RSP_PARAM_ID 0x22
  57. #define SMCINVOKE_INVOKE_CMD_LEGACY 0x32000600
  58. #define SMCINVOKE_INVOKE_CMD 0x32000602
  59. #define SMCINVOKE_CB_RSP_CMD 0x32000601
  60. #define SMCINVOKE_RESULT_INBOUND_REQ_NEEDED 3
  61. /* TZ defined values - End */
  62. /*
  63. * This is the state when server FD has been closed but
  64. * TZ still has refs of CBOBjs served by this server
  65. */
  66. #define SMCINVOKE_SERVER_STATE_DEFUNCT 1
  67. #define CBOBJ_MAX_RETRIES 5
  68. #define FOR_ARGS(ndxvar, counts, section) \
  69. for (ndxvar = OBJECT_COUNTS_INDEX_##section(counts); \
  70. ndxvar < (OBJECT_COUNTS_INDEX_##section(counts) \
  71. + OBJECT_COUNTS_NUM_##section(counts)); \
  72. ++ndxvar)
  73. #define TZCB_BUF_OFFSET(tzcb_req) (sizeof(tzcb_req->result) + \
  74. sizeof(struct smcinvoke_msg_hdr) + \
  75. sizeof(union smcinvoke_tz_args) * \
  76. OBJECT_COUNTS_TOTAL(tzcb_req->hdr.counts))
  77. /*
  78. * +ve uhandle : either remote obj or mem obj, decided by f_ops
  79. * -ve uhandle : either Obj NULL or CBObj
  80. * - -1: OBJ NULL
  81. * - < -1: CBObj
  82. */
  83. #define UHANDLE_IS_FD(h) ((h) >= 0)
  84. #define UHANDLE_IS_NULL(h) ((h) == SMCINVOKE_USERSPACE_OBJ_NULL)
  85. #define UHANDLE_IS_CB_OBJ(h) (h < SMCINVOKE_USERSPACE_OBJ_NULL)
  86. #define UHANDLE_NULL (SMCINVOKE_USERSPACE_OBJ_NULL)
  87. /*
  88. * MAKE => create handle for other domain i.e. TZ or userspace
  89. * GET => retrieve obj from incoming handle
  90. */
  91. #define UHANDLE_GET_CB_OBJ(h) (-2-(h))
  92. #define UHANDLE_MAKE_CB_OBJ(o) (-2-(o))
  93. #define UHANDLE_GET_FD(h) (h)
  94. /*
  95. * +ve tzhandle : remote object i.e. owned by TZ
  96. * -ve tzhandle : local object i.e. owned by linux
  97. * --------------------------------------------------
  98. *| 1 (1 bit) | Obj Id (15 bits) | srvr id (16 bits) |
  99. * ---------------------------------------------------
  100. * Server ids are defined below for various local objects
  101. * server id 0 : Kernel Obj
  102. * server id 1 : Memory region Obj
  103. * server id 2 : Memory map Obj
  104. * server id 3-15: Reserverd
  105. * server id 16 & up: Callback Objs
  106. */
  107. #define KRNL_SRVR_ID 0
  108. #define MEM_RGN_SRVR_ID 1
  109. #define MEM_MAP_SRVR_ID 2
  110. #define CBOBJ_SERVER_ID_START 0x10
  111. #define CBOBJ_SERVER_ID_END ((1<<16) - 1)
  112. /* local obj id is represented by 15 bits */
  113. #define MAX_LOCAL_OBJ_ID ((1<<15) - 1)
  114. /* CBOBJs will be served by server id 0x10 onwards */
  115. #define TZHANDLE_GET_SERVER(h) ((uint16_t)((h) & 0xFFFF))
  116. #define TZHANDLE_GET_OBJID(h) (((h) >> 16) & 0x7FFF)
  117. #define TZHANDLE_MAKE_LOCAL(s, o) (((0x8000 | (o)) << 16) | s)
  118. #define TZHANDLE_IS_NULL(h) ((h) == SMCINVOKE_TZ_OBJ_NULL)
  119. #define TZHANDLE_IS_LOCAL(h) ((h) & 0x80000000)
  120. #define TZHANDLE_IS_REMOTE(h) (!TZHANDLE_IS_NULL(h) && !TZHANDLE_IS_LOCAL(h))
  121. #define TZHANDLE_IS_KERNEL_OBJ(h) (TZHANDLE_IS_LOCAL(h) && \
  122. TZHANDLE_GET_SERVER(h) == KRNL_SRVR_ID)
  123. #define TZHANDLE_IS_MEM_RGN_OBJ(h) (TZHANDLE_IS_LOCAL(h) && \
  124. TZHANDLE_GET_SERVER(h) == MEM_RGN_SRVR_ID)
  125. #define TZHANDLE_IS_MEM_MAP_OBJ(h) (TZHANDLE_IS_LOCAL(h) && \
  126. TZHANDLE_GET_SERVER(h) == MEM_MAP_SRVR_ID)
  127. #define TZHANDLE_IS_MEM_OBJ(h) (TZHANDLE_IS_MEM_RGN_OBJ(h) || \
  128. TZHANDLE_IS_MEM_MAP_OBJ(h))
  129. #define TZHANDLE_IS_CB_OBJ(h) (TZHANDLE_IS_LOCAL(h) && \
  130. TZHANDLE_GET_SERVER(h) >= CBOBJ_SERVER_ID_START)
  131. #define FILE_IS_REMOTE_OBJ(f) ((f)->f_op && (f)->f_op == &g_smcinvoke_fops)
  132. static DEFINE_MUTEX(g_smcinvoke_lock);
  133. #define NO_LOCK 0
  134. #define TAKE_LOCK 1
  135. #define MUTEX_LOCK(x) { if (x) mutex_lock(&g_smcinvoke_lock); }
  136. #define MUTEX_UNLOCK(x) { if (x) mutex_unlock(&g_smcinvoke_lock); }
  137. static DEFINE_HASHTABLE(g_cb_servers, 8);
  138. static LIST_HEAD(g_mem_objs);
  139. static uint16_t g_last_cb_server_id = CBOBJ_SERVER_ID_START;
  140. static uint16_t g_last_mem_rgn_id, g_last_mem_map_obj_id;
  141. static size_t g_max_cb_buf_size = SMCINVOKE_TZ_MIN_BUF_SIZE;
  142. static unsigned int cb_reqs_inflight;
  143. static bool legacy_smc_call;
  144. static int invoke_cmd;
  145. static long smcinvoke_ioctl(struct file *, unsigned int, unsigned long);
  146. static int smcinvoke_open(struct inode *, struct file *);
  147. static int smcinvoke_release(struct inode *, struct file *);
  148. static int release_cb_server(uint16_t);
  149. static const struct file_operations g_smcinvoke_fops = {
  150. .owner = THIS_MODULE,
  151. .unlocked_ioctl = smcinvoke_ioctl,
  152. .compat_ioctl = smcinvoke_ioctl,
  153. .open = smcinvoke_open,
  154. .release = smcinvoke_release,
  155. };
  156. static dev_t smcinvoke_device_no;
  157. static struct cdev smcinvoke_cdev;
  158. static struct class *driver_class;
  159. static struct device *class_dev;
  160. static struct platform_device *smcinvoke_pdev;
  161. struct smcinvoke_buf_hdr {
  162. uint32_t offset;
  163. uint32_t size;
  164. };
  165. union smcinvoke_tz_args {
  166. struct smcinvoke_buf_hdr b;
  167. int32_t handle;
  168. };
  169. struct smcinvoke_msg_hdr {
  170. uint32_t tzhandle;
  171. uint32_t op;
  172. uint32_t counts;
  173. };
  174. /* Inbound reqs from TZ */
  175. struct smcinvoke_tzcb_req {
  176. int32_t result;
  177. struct smcinvoke_msg_hdr hdr;
  178. union smcinvoke_tz_args args[0];
  179. };
  180. struct smcinvoke_file_data {
  181. uint32_t context_type;
  182. union {
  183. uint32_t tzhandle;
  184. uint16_t server_id;
  185. };
  186. };
  187. struct smcinvoke_piggyback_msg {
  188. uint32_t version;
  189. uint32_t op;
  190. uint32_t counts;
  191. int32_t objs[0];
  192. };
  193. /* Data structure to hold request coming from TZ */
  194. struct smcinvoke_cb_txn {
  195. uint32_t txn_id;
  196. int32_t state;
  197. struct smcinvoke_tzcb_req *cb_req;
  198. size_t cb_req_bytes;
  199. struct file **filp_to_release;
  200. struct hlist_node hash;
  201. struct kref ref_cnt;
  202. };
  203. struct smcinvoke_server_info {
  204. uint16_t server_id;
  205. uint16_t state;
  206. uint32_t txn_id;
  207. struct kref ref_cnt;
  208. wait_queue_head_t req_wait_q;
  209. wait_queue_head_t rsp_wait_q;
  210. size_t cb_buf_size;
  211. DECLARE_HASHTABLE(reqs_table, 4);
  212. DECLARE_HASHTABLE(responses_table, 4);
  213. struct hlist_node hash;
  214. struct list_head pending_cbobjs;
  215. };
  216. struct smcinvoke_cbobj {
  217. uint16_t cbobj_id;
  218. struct kref ref_cnt;
  219. struct smcinvoke_server_info *server;
  220. struct list_head list;
  221. };
  222. /*
  223. * We require couple of objects, one for mem region & another
  224. * for mapped mem_obj once mem region has been mapped. It is
  225. * possible that TZ can release either independent of other.
  226. */
  227. struct smcinvoke_mem_obj {
  228. /* these ids are objid part of tzhandle */
  229. uint16_t mem_region_id;
  230. uint16_t mem_map_obj_id;
  231. struct dma_buf *dma_buf;
  232. struct dma_buf_attachment *buf_attach;
  233. struct sg_table *sgt;
  234. struct kref mem_regn_ref_cnt;
  235. struct kref mem_map_obj_ref_cnt;
  236. uint64_t p_addr;
  237. size_t p_addr_len;
  238. struct list_head list;
  239. bool bridge_created_by_others;
  240. uint64_t shmbridge_handle;
  241. };
  242. static void destroy_cb_server(struct kref *kref)
  243. {
  244. struct smcinvoke_server_info *server = container_of(kref,
  245. struct smcinvoke_server_info, ref_cnt);
  246. if (server) {
  247. hash_del(&server->hash);
  248. kfree(server);
  249. }
  250. }
  251. /*
  252. * A separate find func is reqd mainly for couple of cases:
  253. * next_cb_server_id_locked which checks if server id had been utilized or not.
  254. * - It would be overhead if we do ref_cnt for this case
  255. * smcinvoke_release: which is called when server is closed from userspace.
  256. * - During server creation we init ref count, now put it back
  257. */
  258. static struct smcinvoke_server_info *find_cb_server_locked(uint16_t server_id)
  259. {
  260. struct smcinvoke_server_info *data = NULL;
  261. hash_for_each_possible(g_cb_servers, data, hash, server_id) {
  262. if (data->server_id == server_id)
  263. return data;
  264. }
  265. return NULL;
  266. }
  267. static struct smcinvoke_server_info *get_cb_server_locked(uint16_t server_id)
  268. {
  269. struct smcinvoke_server_info *server = find_cb_server_locked(server_id);
  270. if (server)
  271. kref_get(&server->ref_cnt);
  272. return server;
  273. }
  274. static uint16_t next_cb_server_id_locked(void)
  275. {
  276. if (g_last_cb_server_id == CBOBJ_SERVER_ID_END)
  277. g_last_cb_server_id = CBOBJ_SERVER_ID_START;
  278. while (find_cb_server_locked(++g_last_cb_server_id))
  279. ;
  280. return g_last_cb_server_id;
  281. }
  282. static inline void release_filp(struct file **filp_to_release, size_t arr_len)
  283. {
  284. size_t i = 0;
  285. for (i = 0; i < arr_len; i++) {
  286. if (filp_to_release[i]) {
  287. fput(filp_to_release[i]);
  288. filp_to_release[i] = NULL;
  289. }
  290. }
  291. }
  292. static struct smcinvoke_mem_obj *find_mem_obj_locked(uint16_t mem_obj_id,
  293. bool is_mem_rgn_obj)
  294. {
  295. struct smcinvoke_mem_obj *mem_obj = NULL;
  296. if (list_empty(&g_mem_objs))
  297. return NULL;
  298. list_for_each_entry(mem_obj, &g_mem_objs, list) {
  299. if ((is_mem_rgn_obj &&
  300. (mem_obj->mem_region_id == mem_obj_id)) ||
  301. (!is_mem_rgn_obj &&
  302. (mem_obj->mem_map_obj_id == mem_obj_id)))
  303. return mem_obj;
  304. }
  305. return NULL;
  306. }
  307. static uint32_t next_mem_region_obj_id_locked(void)
  308. {
  309. if (g_last_mem_rgn_id == MAX_LOCAL_OBJ_ID)
  310. g_last_mem_rgn_id = 0;
  311. while (find_mem_obj_locked(++g_last_mem_rgn_id, SMCINVOKE_MEM_RGN_OBJ))
  312. ;
  313. return g_last_mem_rgn_id;
  314. }
  315. static uint32_t next_mem_map_obj_id_locked(void)
  316. {
  317. if (g_last_mem_map_obj_id == MAX_LOCAL_OBJ_ID)
  318. g_last_mem_map_obj_id = 0;
  319. while (find_mem_obj_locked(++g_last_mem_map_obj_id,
  320. SMCINVOKE_MEM_MAP_OBJ))
  321. ;
  322. return g_last_mem_map_obj_id;
  323. }
  324. static inline void free_mem_obj_locked(struct smcinvoke_mem_obj *mem_obj)
  325. {
  326. int ret = 0;
  327. bool is_bridge_created_by_others = mem_obj->bridge_created_by_others;
  328. struct dma_buf *dmabuf_to_free = mem_obj->dma_buf;
  329. uint64_t shmbridge_handle = mem_obj->shmbridge_handle;
  330. list_del(&mem_obj->list);
  331. kfree(mem_obj);
  332. mem_obj = NULL;
  333. mutex_unlock(&g_smcinvoke_lock);
  334. if (!is_bridge_created_by_others)
  335. ret = qtee_shmbridge_deregister(shmbridge_handle);
  336. if (ret)
  337. pr_err("Error:%d delete bridge failed leaking memory 0x%x\n",
  338. ret, dmabuf_to_free);
  339. else
  340. dma_buf_put(dmabuf_to_free);
  341. mutex_lock(&g_smcinvoke_lock);
  342. }
  343. static void del_mem_regn_obj_locked(struct kref *kref)
  344. {
  345. struct smcinvoke_mem_obj *mem_obj = container_of(kref,
  346. struct smcinvoke_mem_obj, mem_regn_ref_cnt);
  347. /*
  348. * mem_regn obj and mem_map obj are held into mem_obj structure which
  349. * can't be released until both kinds of objs have been released.
  350. * So check whether mem_map iobj has ref 0 and only then release mem_obj
  351. */
  352. if (kref_read(&mem_obj->mem_map_obj_ref_cnt) == 0)
  353. free_mem_obj_locked(mem_obj);
  354. }
  355. static void del_mem_map_obj_locked(struct kref *kref)
  356. {
  357. struct smcinvoke_mem_obj *mem_obj = container_of(kref,
  358. struct smcinvoke_mem_obj, mem_map_obj_ref_cnt);
  359. mem_obj->p_addr_len = 0;
  360. mem_obj->p_addr = 0;
  361. if (mem_obj->sgt)
  362. dma_buf_unmap_attachment(mem_obj->buf_attach,
  363. mem_obj->sgt, DMA_BIDIRECTIONAL);
  364. if (mem_obj->buf_attach)
  365. dma_buf_detach(mem_obj->dma_buf, mem_obj->buf_attach);
  366. /*
  367. * mem_regn obj and mem_map obj are held into mem_obj structure which
  368. * can't be released until both kinds of objs have been released.
  369. * So check if mem_regn obj has ref 0 and only then release mem_obj
  370. */
  371. if (kref_read(&mem_obj->mem_regn_ref_cnt) == 0)
  372. free_mem_obj_locked(mem_obj);
  373. }
  374. static int release_mem_obj_locked(int32_t tzhandle)
  375. {
  376. int is_mem_regn_obj = TZHANDLE_IS_MEM_RGN_OBJ(tzhandle);
  377. struct smcinvoke_mem_obj *mem_obj = find_mem_obj_locked(
  378. TZHANDLE_GET_OBJID(tzhandle), is_mem_regn_obj);
  379. if (!mem_obj) {
  380. pr_err("memory object not found\n");
  381. return OBJECT_ERROR_BADOBJ;
  382. }
  383. if (is_mem_regn_obj)
  384. kref_put(&mem_obj->mem_regn_ref_cnt, del_mem_regn_obj_locked);
  385. else
  386. kref_put(&mem_obj->mem_map_obj_ref_cnt, del_mem_map_obj_locked);
  387. return OBJECT_OK;
  388. }
  389. static void free_pending_cbobj_locked(struct kref *kref)
  390. {
  391. struct smcinvoke_server_info *server = NULL;
  392. struct smcinvoke_cbobj *obj = container_of(kref,
  393. struct smcinvoke_cbobj, ref_cnt);
  394. list_del(&obj->list);
  395. server = obj->server;
  396. kfree(obj);
  397. if (server)
  398. kref_put(&server->ref_cnt, destroy_cb_server);
  399. }
  400. static int get_pending_cbobj_locked(uint16_t srvr_id, int16_t obj_id)
  401. {
  402. int ret = 0;
  403. bool release_server = true;
  404. struct list_head *head = NULL;
  405. struct smcinvoke_cbobj *cbobj = NULL;
  406. struct smcinvoke_cbobj *obj = NULL;
  407. struct smcinvoke_server_info *server = get_cb_server_locked(srvr_id);
  408. if (!server) {
  409. pr_err("%s, server id : %u not found\n", __func__, srvr_id);
  410. return OBJECT_ERROR_BADOBJ;
  411. }
  412. head = &server->pending_cbobjs;
  413. list_for_each_entry(cbobj, head, list)
  414. if (cbobj->cbobj_id == obj_id) {
  415. kref_get(&cbobj->ref_cnt);
  416. goto out;
  417. }
  418. obj = kzalloc(sizeof(*obj), GFP_KERNEL);
  419. if (!obj) {
  420. ret = OBJECT_ERROR_KMEM;
  421. goto out;
  422. }
  423. obj->cbobj_id = obj_id;
  424. kref_init(&obj->ref_cnt);
  425. obj->server = server;
  426. /*
  427. * we are holding server ref in cbobj; we will
  428. * release server ref when cbobj is destroyed
  429. */
  430. release_server = false;
  431. list_add_tail(&obj->list, head);
  432. out:
  433. if (release_server)
  434. kref_put(&server->ref_cnt, destroy_cb_server);
  435. return ret;
  436. }
  437. static int put_pending_cbobj_locked(uint16_t srvr_id, int16_t obj_id)
  438. {
  439. int ret = -EINVAL;
  440. struct smcinvoke_server_info *srvr_info =
  441. get_cb_server_locked(srvr_id);
  442. struct list_head *head = NULL;
  443. struct smcinvoke_cbobj *cbobj = NULL;
  444. if (!srvr_info) {
  445. pr_err("%s, server id : %u not found\n", __func__, srvr_id);
  446. return ret;
  447. }
  448. trace_put_pending_cbobj_locked(srvr_id, obj_id);
  449. head = &srvr_info->pending_cbobjs;
  450. list_for_each_entry(cbobj, head, list)
  451. if (cbobj->cbobj_id == obj_id) {
  452. kref_put(&cbobj->ref_cnt, free_pending_cbobj_locked);
  453. ret = 0;
  454. break;
  455. }
  456. kref_put(&srvr_info->ref_cnt, destroy_cb_server);
  457. return ret;
  458. }
  459. static int release_tzhandle_locked(int32_t tzhandle)
  460. {
  461. if (TZHANDLE_IS_MEM_OBJ(tzhandle))
  462. return release_mem_obj_locked(tzhandle);
  463. else if (TZHANDLE_IS_CB_OBJ(tzhandle))
  464. return put_pending_cbobj_locked(TZHANDLE_GET_SERVER(tzhandle),
  465. TZHANDLE_GET_OBJID(tzhandle));
  466. return OBJECT_ERROR;
  467. }
  468. static void release_tzhandles(const int32_t *tzhandles, size_t len)
  469. {
  470. size_t i;
  471. mutex_lock(&g_smcinvoke_lock);
  472. for (i = 0; i < len; i++)
  473. release_tzhandle_locked(tzhandles[i]);
  474. mutex_unlock(&g_smcinvoke_lock);
  475. }
  476. static void delete_cb_txn(struct kref *kref)
  477. {
  478. struct smcinvoke_cb_txn *cb_txn = container_of(kref,
  479. struct smcinvoke_cb_txn, ref_cnt);
  480. if (OBJECT_OP_METHODID(cb_txn->cb_req->hdr.op) == OBJECT_OP_RELEASE)
  481. release_tzhandle_locked(cb_txn->cb_req->hdr.tzhandle);
  482. kfree(cb_txn->cb_req);
  483. hash_del(&cb_txn->hash);
  484. kfree(cb_txn);
  485. }
  486. static struct smcinvoke_cb_txn *find_cbtxn_locked(
  487. struct smcinvoke_server_info *server,
  488. uint32_t txn_id, int32_t state)
  489. {
  490. int i = 0;
  491. struct smcinvoke_cb_txn *cb_txn = NULL;
  492. /*
  493. * Since HASH_BITS() does not work on pointers, we can't select hash
  494. * table using state and loop over it.
  495. */
  496. if (state == SMCINVOKE_REQ_PLACED) {
  497. /* pick up 1st req */
  498. hash_for_each(server->reqs_table, i, cb_txn, hash) {
  499. kref_get(&cb_txn->ref_cnt);
  500. hash_del(&cb_txn->hash);
  501. return cb_txn;
  502. }
  503. } else if (state == SMCINVOKE_REQ_PROCESSING) {
  504. hash_for_each_possible(
  505. server->responses_table, cb_txn, hash, txn_id) {
  506. if (cb_txn->txn_id == txn_id) {
  507. kref_get(&cb_txn->ref_cnt);
  508. hash_del(&cb_txn->hash);
  509. return cb_txn;
  510. }
  511. }
  512. }
  513. return NULL;
  514. }
  515. /*
  516. * size_add saturates at SIZE_MAX. If integer overflow is detected,
  517. * this function would return SIZE_MAX otherwise normal a+b is returned.
  518. */
  519. static inline size_t size_add(size_t a, size_t b)
  520. {
  521. return (b > (SIZE_MAX - a)) ? SIZE_MAX : a + b;
  522. }
  523. /*
  524. * pad_size is used along with size_align to define a buffer overflow
  525. * protected version of ALIGN
  526. */
  527. static inline size_t pad_size(size_t a, size_t b)
  528. {
  529. return (~a + 1) % b;
  530. }
  531. /*
  532. * size_align saturates at SIZE_MAX. If integer overflow is detected, this
  533. * function would return SIZE_MAX otherwise next aligned size is returned.
  534. */
  535. static inline size_t size_align(size_t a, size_t b)
  536. {
  537. return size_add(a, pad_size(a, b));
  538. }
  539. static uint16_t get_server_id(int cb_server_fd)
  540. {
  541. uint16_t server_id = 0;
  542. struct smcinvoke_file_data *svr_cxt = NULL;
  543. struct file *tmp_filp = fget(cb_server_fd);
  544. if (!tmp_filp)
  545. return server_id;
  546. svr_cxt = tmp_filp->private_data;
  547. if (svr_cxt && svr_cxt->context_type == SMCINVOKE_OBJ_TYPE_SERVER)
  548. server_id = svr_cxt->server_id;
  549. if (tmp_filp)
  550. fput(tmp_filp);
  551. return server_id;
  552. }
  553. static bool is_dma_fd(int32_t uhandle, struct dma_buf **dma_buf)
  554. {
  555. *dma_buf = dma_buf_get(uhandle);
  556. return IS_ERR_OR_NULL(*dma_buf) ? false : true;
  557. }
  558. static bool is_remote_obj(int32_t uhandle, struct smcinvoke_file_data **tzobj,
  559. struct file **filp)
  560. {
  561. bool ret = false;
  562. struct file *tmp_filp = fget(uhandle);
  563. if (!tmp_filp)
  564. return ret;
  565. if (FILE_IS_REMOTE_OBJ(tmp_filp)) {
  566. *tzobj = tmp_filp->private_data;
  567. if ((*tzobj)->context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  568. *filp = tmp_filp;
  569. tmp_filp = NULL;
  570. ret = true;
  571. }
  572. }
  573. if (tmp_filp)
  574. fput(tmp_filp);
  575. return ret;
  576. }
  577. static int create_mem_obj(struct dma_buf *dma_buf, int32_t *mem_obj)
  578. {
  579. struct smcinvoke_mem_obj *t_mem_obj =
  580. kzalloc(sizeof(*t_mem_obj), GFP_KERNEL);
  581. if (!t_mem_obj) {
  582. dma_buf_put(dma_buf);
  583. return -ENOMEM;
  584. }
  585. kref_init(&t_mem_obj->mem_regn_ref_cnt);
  586. t_mem_obj->dma_buf = dma_buf;
  587. mutex_lock(&g_smcinvoke_lock);
  588. t_mem_obj->mem_region_id = next_mem_region_obj_id_locked();
  589. list_add_tail(&t_mem_obj->list, &g_mem_objs);
  590. mutex_unlock(&g_smcinvoke_lock);
  591. *mem_obj = TZHANDLE_MAKE_LOCAL(MEM_RGN_SRVR_ID,
  592. t_mem_obj->mem_region_id);
  593. return 0;
  594. }
  595. /*
  596. * This function retrieves file pointer corresponding to FD provided. It stores
  597. * retrieved file pointer until IOCTL call is concluded. Once call is completed,
  598. * all stored file pointers are released. file pointers are stored to prevent
  599. * other threads from releasing that FD while IOCTL is in progress.
  600. */
  601. static int get_tzhandle_from_uhandle(int32_t uhandle, int32_t server_fd,
  602. struct file **filp, uint32_t *tzhandle)
  603. {
  604. int ret = -EBADF;
  605. uint16_t server_id = 0;
  606. if (UHANDLE_IS_NULL(uhandle)) {
  607. *tzhandle = SMCINVOKE_TZ_OBJ_NULL;
  608. ret = 0;
  609. } else if (UHANDLE_IS_CB_OBJ(uhandle)) {
  610. server_id = get_server_id(server_fd);
  611. if (server_id < CBOBJ_SERVER_ID_START)
  612. goto out;
  613. mutex_lock(&g_smcinvoke_lock);
  614. ret = get_pending_cbobj_locked(server_id,
  615. UHANDLE_GET_CB_OBJ(uhandle));
  616. mutex_unlock(&g_smcinvoke_lock);
  617. if (ret)
  618. goto out;
  619. *tzhandle = TZHANDLE_MAKE_LOCAL(server_id,
  620. UHANDLE_GET_CB_OBJ(uhandle));
  621. ret = 0;
  622. } else if (UHANDLE_IS_FD(uhandle)) {
  623. struct dma_buf *dma_buf = NULL;
  624. struct smcinvoke_file_data *tzobj = NULL;
  625. if (is_dma_fd(UHANDLE_GET_FD(uhandle), &dma_buf)) {
  626. ret = create_mem_obj(dma_buf, tzhandle);
  627. } else if (is_remote_obj(UHANDLE_GET_FD(uhandle),
  628. &tzobj, filp)) {
  629. *tzhandle = tzobj->tzhandle;
  630. ret = 0;
  631. }
  632. }
  633. out:
  634. return ret;
  635. }
  636. static int get_fd_for_obj(uint32_t obj_type, uint32_t obj, int32_t *fd)
  637. {
  638. int unused_fd = -1, ret = -EINVAL;
  639. struct file *f = NULL;
  640. struct smcinvoke_file_data *cxt = NULL;
  641. cxt = kzalloc(sizeof(*cxt), GFP_KERNEL);
  642. if (!cxt) {
  643. ret = -ENOMEM;
  644. goto out;
  645. }
  646. if (obj_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ ||
  647. obj_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  648. cxt->context_type = obj_type;
  649. cxt->tzhandle = obj;
  650. } else if (obj_type == SMCINVOKE_OBJ_TYPE_SERVER) {
  651. cxt->context_type = SMCINVOKE_OBJ_TYPE_SERVER;
  652. cxt->server_id = obj;
  653. } else {
  654. goto out;
  655. }
  656. unused_fd = get_unused_fd_flags(O_RDWR);
  657. if (unused_fd < 0)
  658. goto out;
  659. if (fd == NULL)
  660. goto out;
  661. f = anon_inode_getfile(SMCINVOKE_DEV, &g_smcinvoke_fops, cxt, O_RDWR);
  662. if (IS_ERR(f))
  663. goto out;
  664. *fd = unused_fd;
  665. fd_install(*fd, f);
  666. return 0;
  667. out:
  668. if (unused_fd >= 0)
  669. put_unused_fd(unused_fd);
  670. kfree(cxt);
  671. return ret;
  672. }
  673. static int get_uhandle_from_tzhandle(int32_t tzhandle, int32_t srvr_id,
  674. int32_t *uhandle, bool lock, uint32_t context_type)
  675. {
  676. int ret = -1;
  677. if (TZHANDLE_IS_NULL(tzhandle)) {
  678. *uhandle = UHANDLE_NULL;
  679. ret = 0;
  680. } else if (TZHANDLE_IS_CB_OBJ(tzhandle)) {
  681. if (srvr_id != TZHANDLE_GET_SERVER(tzhandle))
  682. goto out;
  683. *uhandle = UHANDLE_MAKE_CB_OBJ(TZHANDLE_GET_OBJID(tzhandle));
  684. MUTEX_LOCK(lock)
  685. ret = get_pending_cbobj_locked(TZHANDLE_GET_SERVER(tzhandle),
  686. TZHANDLE_GET_OBJID(tzhandle));
  687. MUTEX_UNLOCK(lock)
  688. } else if (TZHANDLE_IS_MEM_RGN_OBJ(tzhandle)) {
  689. struct smcinvoke_mem_obj *mem_obj = NULL;
  690. MUTEX_LOCK(lock)
  691. mem_obj = find_mem_obj_locked(TZHANDLE_GET_OBJID(tzhandle),
  692. SMCINVOKE_MEM_RGN_OBJ);
  693. if (mem_obj != NULL) {
  694. int fd;
  695. fd = dma_buf_fd(mem_obj->dma_buf, O_CLOEXEC);
  696. if (fd < 0)
  697. goto exit_lock;
  698. *uhandle = fd;
  699. ret = 0;
  700. }
  701. exit_lock:
  702. MUTEX_UNLOCK(lock)
  703. } else if (TZHANDLE_IS_REMOTE(tzhandle)) {
  704. /* if execution comes here => tzhandle is an unsigned int */
  705. ret = get_fd_for_obj(context_type,
  706. (uint32_t)tzhandle, uhandle);
  707. }
  708. out:
  709. return ret;
  710. }
  711. static int smcinvoke_create_bridge(struct smcinvoke_mem_obj *mem_obj)
  712. {
  713. int ret = 0;
  714. int tz_perm = PERM_READ|PERM_WRITE;
  715. uint32_t *vmid_list;
  716. uint32_t *perms_list;
  717. uint32_t nelems = 0;
  718. struct dma_buf *dmabuf = mem_obj->dma_buf;
  719. phys_addr_t phys = mem_obj->p_addr;
  720. size_t size = mem_obj->p_addr_len;
  721. if (!qtee_shmbridge_is_enabled())
  722. return 0;
  723. ret = mem_buf_dma_buf_copy_vmperm(dmabuf, (int **)&vmid_list,
  724. (int **)&perms_list, (int *)&nelems);
  725. if (ret) {
  726. pr_err("mem_buf_dma_buf_copy_vmperm failure, err=%d\n", ret);
  727. return ret;
  728. }
  729. if (mem_buf_dma_buf_exclusive_owner(dmabuf))
  730. perms_list[0] = PERM_READ | PERM_WRITE;
  731. ret = qtee_shmbridge_register(phys, size, vmid_list, perms_list, nelems,
  732. tz_perm, &mem_obj->shmbridge_handle);
  733. if (ret && ret != -EEXIST) {
  734. pr_err("creation of shm bridge for mem_region_id %d failed ret %d\n",
  735. mem_obj->mem_region_id, ret);
  736. goto exit;
  737. }
  738. if (ret == -EEXIST) {
  739. mem_obj->bridge_created_by_others = true;
  740. ret = 0;
  741. }
  742. trace_smcinvoke_create_bridge(mem_obj->shmbridge_handle, mem_obj->mem_region_id);
  743. exit:
  744. kfree(perms_list);
  745. kfree(vmid_list);
  746. return ret;
  747. }
  748. static int32_t smcinvoke_release_mem_obj_locked(void *buf, size_t buf_len)
  749. {
  750. struct smcinvoke_tzcb_req *msg = buf;
  751. if (msg->hdr.counts != OBJECT_COUNTS_PACK(0, 0, 0, 0)) {
  752. pr_err("Invalid object count in %s\n", __func__);
  753. return OBJECT_ERROR_INVALID;
  754. }
  755. trace_release_mem_obj_locked(msg->hdr.tzhandle, buf_len);
  756. return release_tzhandle_locked(msg->hdr.tzhandle);
  757. }
  758. static int32_t smcinvoke_map_mem_region(void *buf, size_t buf_len)
  759. {
  760. int ret = OBJECT_OK;
  761. struct smcinvoke_tzcb_req *msg = buf;
  762. struct {
  763. uint64_t p_addr;
  764. uint64_t len;
  765. uint32_t perms;
  766. } *ob = NULL;
  767. int32_t *oo = NULL;
  768. struct smcinvoke_mem_obj *mem_obj = NULL;
  769. struct dma_buf_attachment *buf_attach = NULL;
  770. struct sg_table *sgt = NULL;
  771. if (msg->hdr.counts != OBJECT_COUNTS_PACK(0, 1, 1, 1) ||
  772. (buf_len - msg->args[0].b.offset < msg->args[0].b.size)) {
  773. pr_err("Invalid counts received for mapping mem obj\n");
  774. return OBJECT_ERROR_INVALID;
  775. }
  776. /* args[0] = BO, args[1] = OI, args[2] = OO */
  777. ob = buf + msg->args[0].b.offset;
  778. oo = &msg->args[2].handle;
  779. mutex_lock(&g_smcinvoke_lock);
  780. mem_obj = find_mem_obj_locked(TZHANDLE_GET_OBJID(msg->args[1].handle),
  781. SMCINVOKE_MEM_RGN_OBJ);
  782. if (!mem_obj) {
  783. mutex_unlock(&g_smcinvoke_lock);
  784. pr_err("Memory object not found\n");
  785. return OBJECT_ERROR_BADOBJ;
  786. }
  787. if (!mem_obj->p_addr) {
  788. kref_init(&mem_obj->mem_map_obj_ref_cnt);
  789. buf_attach = dma_buf_attach(mem_obj->dma_buf,
  790. &smcinvoke_pdev->dev);
  791. if (IS_ERR(buf_attach)) {
  792. ret = OBJECT_ERROR_KMEM;
  793. pr_err("dma buf attach failed, ret: %d\n", ret);
  794. goto out;
  795. }
  796. mem_obj->buf_attach = buf_attach;
  797. sgt = dma_buf_map_attachment(buf_attach, DMA_BIDIRECTIONAL);
  798. if (IS_ERR(sgt)) {
  799. pr_err("mapping dma buffers failed, ret: %d\n",
  800. PTR_ERR(sgt));
  801. ret = OBJECT_ERROR_KMEM;
  802. goto out;
  803. }
  804. mem_obj->sgt = sgt;
  805. /* contiguous only => nents=1 */
  806. if (sgt->nents != 1) {
  807. ret = OBJECT_ERROR_INVALID;
  808. pr_err("sg enries are not contigous, ret: %d\n", ret);
  809. goto out;
  810. }
  811. mem_obj->p_addr = sg_dma_address(sgt->sgl);
  812. mem_obj->p_addr_len = sgt->sgl->length;
  813. if (!mem_obj->p_addr) {
  814. ret = OBJECT_ERROR_INVALID;
  815. pr_err("invalid physical address, ret: %d\n", ret);
  816. goto out;
  817. }
  818. /* Increase reference count as we are feeding the memobj to
  819. * smcinvoke and unlock the mutex. No need to hold the mutex in
  820. * case of shmbridge creation.
  821. */
  822. kref_get(&mem_obj->mem_map_obj_ref_cnt);
  823. mutex_unlock(&g_smcinvoke_lock);
  824. ret = smcinvoke_create_bridge(mem_obj);
  825. /* Take lock again and decrease the reference count which we
  826. * increased for shmbridge but before proceeding further we
  827. * have to check again if the memobj is still valid or not
  828. * after decreasing the reference.
  829. */
  830. mutex_lock(&g_smcinvoke_lock);
  831. kref_put(&mem_obj->mem_map_obj_ref_cnt, del_mem_map_obj_locked);
  832. if (ret) {
  833. ret = OBJECT_ERROR_INVALID;
  834. goto out;
  835. }
  836. if (!find_mem_obj_locked(TZHANDLE_GET_OBJID(msg->args[1].handle),
  837. SMCINVOKE_MEM_RGN_OBJ)) {
  838. mutex_unlock(&g_smcinvoke_lock);
  839. pr_err("Memory object not found\n");
  840. return OBJECT_ERROR_BADOBJ;
  841. }
  842. mem_obj->mem_map_obj_id = next_mem_map_obj_id_locked();
  843. } else {
  844. kref_get(&mem_obj->mem_map_obj_ref_cnt);
  845. }
  846. ob->p_addr = mem_obj->p_addr;
  847. ob->len = mem_obj->p_addr_len;
  848. ob->perms = SMCINVOKE_MEM_PERM_RW;
  849. *oo = TZHANDLE_MAKE_LOCAL(MEM_MAP_SRVR_ID, mem_obj->mem_map_obj_id);
  850. out:
  851. if (ret != OBJECT_OK)
  852. kref_put(&mem_obj->mem_map_obj_ref_cnt, del_mem_map_obj_locked);
  853. mutex_unlock(&g_smcinvoke_lock);
  854. return ret;
  855. }
  856. static int32_t smcinvoke_sleep(void *buf, size_t buf_len)
  857. {
  858. struct smcinvoke_tzcb_req *msg = buf;
  859. uint32_t sleepTimeMs_val = 0;
  860. if (msg->hdr.counts != OBJECT_COUNTS_PACK(1, 0, 0, 0) ||
  861. (buf_len - msg->args[0].b.offset < msg->args[0].b.size)) {
  862. pr_err("Invalid counts received for sleeping in hlos\n");
  863. return OBJECT_ERROR_INVALID;
  864. }
  865. /* Time in miliseconds is expected from tz */
  866. sleepTimeMs_val = *((uint32_t *)(buf + msg->args[0].b.offset));
  867. msleep(sleepTimeMs_val);
  868. return OBJECT_OK;
  869. }
  870. static void process_kernel_obj(void *buf, size_t buf_len)
  871. {
  872. struct smcinvoke_tzcb_req *cb_req = buf;
  873. switch (cb_req->hdr.op) {
  874. case OBJECT_OP_MAP_REGION:
  875. cb_req->result = smcinvoke_map_mem_region(buf, buf_len);
  876. break;
  877. case OBJECT_OP_YIELD:
  878. cb_req->result = OBJECT_OK;
  879. break;
  880. case OBJECT_OP_SLEEP:
  881. cb_req->result = smcinvoke_sleep(buf, buf_len);
  882. break;
  883. default:
  884. pr_err(" invalid operation for tz kernel object\n");
  885. cb_req->result = OBJECT_ERROR_INVALID;
  886. break;
  887. }
  888. }
  889. static void process_mem_obj(void *buf, size_t buf_len)
  890. {
  891. struct smcinvoke_tzcb_req *cb_req = buf;
  892. mutex_lock(&g_smcinvoke_lock);
  893. cb_req->result = (cb_req->hdr.op == OBJECT_OP_RELEASE) ?
  894. smcinvoke_release_mem_obj_locked(buf, buf_len) :
  895. OBJECT_ERROR_INVALID;
  896. mutex_unlock(&g_smcinvoke_lock);
  897. }
  898. static int invoke_cmd_handler(int cmd, phys_addr_t in_paddr, size_t in_buf_len,
  899. uint8_t *out_buf, phys_addr_t out_paddr,
  900. size_t out_buf_len, int32_t *result, u64 *response_type,
  901. unsigned int *data, struct qtee_shm *in_shm,
  902. struct qtee_shm *out_shm)
  903. {
  904. int ret = 0;
  905. switch (cmd) {
  906. case SMCINVOKE_INVOKE_CMD_LEGACY:
  907. qtee_shmbridge_flush_shm_buf(in_shm);
  908. qtee_shmbridge_flush_shm_buf(out_shm);
  909. ret = qcom_scm_invoke_smc_legacy(in_paddr, in_buf_len, out_paddr, out_buf_len,
  910. result, response_type, data);
  911. qtee_shmbridge_inv_shm_buf(in_shm);
  912. qtee_shmbridge_inv_shm_buf(out_shm);
  913. break;
  914. case SMCINVOKE_INVOKE_CMD:
  915. ret = qcom_scm_invoke_smc(in_paddr, in_buf_len, out_paddr, out_buf_len,
  916. result, response_type, data);
  917. break;
  918. case SMCINVOKE_CB_RSP_CMD:
  919. ret = qcom_scm_invoke_callback_response(virt_to_phys(out_buf), out_buf_len,
  920. result, response_type, data);
  921. break;
  922. default:
  923. ret = -EINVAL;
  924. break;
  925. }
  926. trace_invoke_cmd_handler(cmd, *response_type, *result, ret);
  927. return ret;
  928. }
  929. /*
  930. * Buf should be aligned to struct smcinvoke_tzcb_req
  931. */
  932. static void process_tzcb_req(void *buf, size_t buf_len, struct file **arr_filp)
  933. {
  934. /* ret is going to TZ. Provide values from OBJECT_ERROR_<> */
  935. int ret = OBJECT_ERROR_DEFUNCT;
  936. int cbobj_retries = 0;
  937. long timeout_jiff;
  938. struct smcinvoke_cb_txn *cb_txn = NULL;
  939. struct smcinvoke_tzcb_req *cb_req = NULL, *tmp_cb_req = NULL;
  940. struct smcinvoke_server_info *srvr_info = NULL;
  941. if (buf_len < sizeof(struct smcinvoke_tzcb_req)) {
  942. pr_err("smaller buffer length : %u\n", buf_len);
  943. return;
  944. }
  945. cb_req = buf;
  946. /* check whether it is to be served by kernel or userspace */
  947. if (TZHANDLE_IS_KERNEL_OBJ(cb_req->hdr.tzhandle)) {
  948. return process_kernel_obj(buf, buf_len);
  949. } else if (TZHANDLE_IS_MEM_OBJ(cb_req->hdr.tzhandle)) {
  950. return process_mem_obj(buf, buf_len);
  951. } else if (!TZHANDLE_IS_CB_OBJ(cb_req->hdr.tzhandle)) {
  952. pr_err("Request object is not a callback object\n");
  953. cb_req->result = OBJECT_ERROR_INVALID;
  954. return;
  955. }
  956. /*
  957. * We need a copy of req that could be sent to server. Otherwise, if
  958. * someone kills invoke caller, buf would go away and server would be
  959. * working on already freed buffer, causing a device crash.
  960. */
  961. tmp_cb_req = kmemdup(buf, buf_len, GFP_KERNEL);
  962. if (!tmp_cb_req) {
  963. /* we need to return error to caller so fill up result */
  964. cb_req->result = OBJECT_ERROR_KMEM;
  965. pr_err("failed to create copy of request, set result: %d\n",
  966. cb_req->result);
  967. return;
  968. }
  969. cb_txn = kzalloc(sizeof(*cb_txn), GFP_KERNEL);
  970. if (!cb_txn) {
  971. cb_req->result = OBJECT_ERROR_KMEM;
  972. pr_err("failed to allocate memory for request, result: %d\n",
  973. cb_req->result);
  974. kfree(tmp_cb_req);
  975. return;
  976. }
  977. /* no need for memcpy as we did kmemdup() above */
  978. cb_req = tmp_cb_req;
  979. trace_process_tzcb_req_handle(cb_req->hdr.tzhandle, cb_req->hdr.op, cb_req->hdr.counts);
  980. cb_txn->state = SMCINVOKE_REQ_PLACED;
  981. cb_txn->cb_req = cb_req;
  982. cb_txn->cb_req_bytes = buf_len;
  983. cb_txn->filp_to_release = arr_filp;
  984. kref_init(&cb_txn->ref_cnt);
  985. mutex_lock(&g_smcinvoke_lock);
  986. ++cb_reqs_inflight;
  987. srvr_info = get_cb_server_locked(
  988. TZHANDLE_GET_SERVER(cb_req->hdr.tzhandle));
  989. if (!srvr_info || srvr_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT) {
  990. /* ret equals Object_ERROR_DEFUNCT, at this point go to out */
  991. if (!srvr_info)
  992. pr_err("server is invalid\n");
  993. else {
  994. pr_err("server is defunct, state= %d tzhandle = %d\n",
  995. srvr_info->state, cb_req->hdr.tzhandle);
  996. }
  997. mutex_unlock(&g_smcinvoke_lock);
  998. goto out;
  999. }
  1000. cb_txn->txn_id = ++srvr_info->txn_id;
  1001. hash_add(srvr_info->reqs_table, &cb_txn->hash, cb_txn->txn_id);
  1002. mutex_unlock(&g_smcinvoke_lock);
  1003. trace_process_tzcb_req_wait(cb_req->hdr.tzhandle, cbobj_retries, cb_txn->txn_id,
  1004. current->pid, current->tgid, srvr_info->state, srvr_info->server_id,
  1005. cb_reqs_inflight);
  1006. /*
  1007. * we need not worry that server_info will be deleted because as long
  1008. * as this CBObj is served by this server, srvr_info will be valid.
  1009. */
  1010. wake_up_interruptible_all(&srvr_info->req_wait_q);
  1011. /* timeout before 1s otherwise tzbusy would come */
  1012. timeout_jiff = msecs_to_jiffies(1000);
  1013. while (cbobj_retries < CBOBJ_MAX_RETRIES) {
  1014. ret = wait_event_interruptible_timeout(srvr_info->rsp_wait_q,
  1015. (cb_txn->state == SMCINVOKE_REQ_PROCESSED) ||
  1016. (srvr_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT),
  1017. timeout_jiff);
  1018. if (ret == 0) {
  1019. pr_err("CBobj timed out cb-tzhandle:%d, retry:%d, op:%d counts :%d\n",
  1020. cb_req->hdr.tzhandle, cbobj_retries,
  1021. cb_req->hdr.op, cb_req->hdr.counts);
  1022. pr_err("CBobj %d timedout pid %x,tid %x, srvr state=%d, srvr id:%u\n",
  1023. cb_req->hdr.tzhandle, current->pid,
  1024. current->tgid, srvr_info->state,
  1025. srvr_info->server_id);
  1026. } else {
  1027. break;
  1028. }
  1029. cbobj_retries++;
  1030. }
  1031. out:
  1032. /*
  1033. * we could be here because of either:
  1034. * a. Req is PROCESSED
  1035. * b. Server was killed
  1036. * c. Invoke thread is killed
  1037. * sometime invoke thread and server are part of same process.
  1038. */
  1039. mutex_lock(&g_smcinvoke_lock);
  1040. hash_del(&cb_txn->hash);
  1041. if (ret == 0) {
  1042. pr_err("CBObj timed out! No more retries\n");
  1043. cb_req->result = Object_ERROR_TIMEOUT;
  1044. } else if (ret == -ERESTARTSYS) {
  1045. pr_err("wait event interruped, ret: %d\n", ret);
  1046. cb_req->result = OBJECT_ERROR_ABORT;
  1047. } else {
  1048. if (cb_txn->state == SMCINVOKE_REQ_PROCESSED) {
  1049. /*
  1050. * it is possible that server was killed immediately
  1051. * after CB Req was processed but who cares now!
  1052. */
  1053. } else if (!srvr_info ||
  1054. srvr_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT) {
  1055. cb_req->result = OBJECT_ERROR_DEFUNCT;
  1056. pr_err("server invalid, res: %d\n", cb_req->result);
  1057. } else {
  1058. pr_err("%s: unexpected event happened, ret:%d\n", __func__, ret);
  1059. cb_req->result = OBJECT_ERROR_ABORT;
  1060. }
  1061. }
  1062. --cb_reqs_inflight;
  1063. trace_process_tzcb_req_result(cb_req->result, cb_req->hdr.tzhandle, cb_req->hdr.op,
  1064. cb_req->hdr.counts, cb_reqs_inflight);
  1065. memcpy(buf, cb_req, buf_len);
  1066. kref_put(&cb_txn->ref_cnt, delete_cb_txn);
  1067. if (srvr_info)
  1068. kref_put(&srvr_info->ref_cnt, destroy_cb_server);
  1069. mutex_unlock(&g_smcinvoke_lock);
  1070. }
  1071. static int marshal_out_invoke_req(const uint8_t *buf, uint32_t buf_size,
  1072. struct smcinvoke_cmd_req *req,
  1073. union smcinvoke_arg *args_buf,
  1074. uint32_t context_type)
  1075. {
  1076. int ret = -EINVAL, i = 0;
  1077. int32_t temp_fd = UHANDLE_NULL;
  1078. union smcinvoke_tz_args *tz_args = NULL;
  1079. size_t offset = sizeof(struct smcinvoke_msg_hdr) +
  1080. OBJECT_COUNTS_TOTAL(req->counts) *
  1081. sizeof(union smcinvoke_tz_args);
  1082. if (offset > buf_size)
  1083. goto out;
  1084. tz_args = (union smcinvoke_tz_args *)
  1085. (buf + sizeof(struct smcinvoke_msg_hdr));
  1086. tz_args += OBJECT_COUNTS_NUM_BI(req->counts);
  1087. if (args_buf == NULL)
  1088. return 0;
  1089. FOR_ARGS(i, req->counts, BO) {
  1090. args_buf[i].b.size = tz_args->b.size;
  1091. if ((buf_size - tz_args->b.offset < tz_args->b.size) ||
  1092. tz_args->b.offset > buf_size) {
  1093. pr_err("%s: buffer overflow detected\n", __func__);
  1094. goto out;
  1095. }
  1096. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  1097. if (copy_to_user((void __user *)
  1098. (uintptr_t)(args_buf[i].b.addr),
  1099. (uint8_t *)(buf) + tz_args->b.offset,
  1100. tz_args->b.size)) {
  1101. pr_err("Error %d copying ctxt to user\n", ret);
  1102. goto out;
  1103. }
  1104. } else {
  1105. memcpy((uint8_t *)(args_buf[i].b.addr),
  1106. (uint8_t *)(buf) + tz_args->b.offset,
  1107. tz_args->b.size);
  1108. }
  1109. tz_args++;
  1110. }
  1111. tz_args += OBJECT_COUNTS_NUM_OI(req->counts);
  1112. FOR_ARGS(i, req->counts, OO) {
  1113. /*
  1114. * create a new FD and assign to output object's context.
  1115. * We are passing cb_server_fd from output param in case OO
  1116. * is a CBObj. For CBObj, we have to ensure that it is sent
  1117. * to server who serves it and that info comes from USpace.
  1118. */
  1119. temp_fd = UHANDLE_NULL;
  1120. ret = get_uhandle_from_tzhandle(tz_args->handle,
  1121. TZHANDLE_GET_SERVER(tz_args->handle),
  1122. &temp_fd, NO_LOCK, context_type);
  1123. args_buf[i].o.fd = temp_fd;
  1124. if (ret)
  1125. goto out;
  1126. trace_marshal_out_invoke_req(i, tz_args->handle,
  1127. TZHANDLE_GET_SERVER(tz_args->handle), temp_fd);
  1128. tz_args++;
  1129. }
  1130. ret = 0;
  1131. out:
  1132. return ret;
  1133. }
  1134. static bool is_inbound_req(int val)
  1135. {
  1136. return (val == SMCINVOKE_RESULT_INBOUND_REQ_NEEDED ||
  1137. val == QSEOS_RESULT_INCOMPLETE ||
  1138. val == QSEOS_RESULT_BLOCKED_ON_LISTENER);
  1139. }
  1140. static int prepare_send_scm_msg(const uint8_t *in_buf, phys_addr_t in_paddr,
  1141. size_t in_buf_len,
  1142. uint8_t *out_buf, phys_addr_t out_paddr,
  1143. size_t out_buf_len,
  1144. struct smcinvoke_cmd_req *req,
  1145. union smcinvoke_arg *args_buf,
  1146. bool *tz_acked, uint32_t context_type,
  1147. struct qtee_shm *in_shm, struct qtee_shm *out_shm)
  1148. {
  1149. int ret = 0, cmd, retry_count = 0;
  1150. u64 response_type;
  1151. unsigned int data;
  1152. struct file *arr_filp[OBJECT_COUNTS_MAX_OO] = {NULL};
  1153. *tz_acked = false;
  1154. /* buf size should be page aligned */
  1155. if ((in_buf_len % PAGE_SIZE) != 0 || (out_buf_len % PAGE_SIZE) != 0)
  1156. return -EINVAL;
  1157. cmd = invoke_cmd;
  1158. /*
  1159. * purpose of lock here is to ensure that any CB obj that may be going
  1160. * to user as OO is not released by piggyback message on another invoke
  1161. * request. We should not move this lock to process_invoke_req() because
  1162. * that will either cause deadlock or prevent any other invoke request
  1163. * to come in. We release this lock when either
  1164. * a) TZ requires HLOS action to complete ongoing invoke operation
  1165. * b) Final response to invoke has been marshalled out
  1166. */
  1167. while (1) {
  1168. mutex_lock(&g_smcinvoke_lock);
  1169. do {
  1170. ret = invoke_cmd_handler(cmd, in_paddr, in_buf_len, out_buf,
  1171. out_paddr, out_buf_len, &req->result,
  1172. &response_type, &data, in_shm, out_shm);
  1173. if (ret == -EBUSY) {
  1174. pr_err("Secure side is busy,will retry after 30 ms\n");
  1175. mutex_unlock(&g_smcinvoke_lock);
  1176. msleep(SMCINVOKE_SCM_EBUSY_WAIT_MS);
  1177. mutex_lock(&g_smcinvoke_lock);
  1178. }
  1179. } while ((ret == -EBUSY) &&
  1180. (retry_count++ < SMCINVOKE_SCM_EBUSY_MAX_RETRY));
  1181. if (!ret && !is_inbound_req(response_type)) {
  1182. /* dont marshal if Obj returns an error */
  1183. if (!req->result) {
  1184. if (args_buf != NULL)
  1185. ret = marshal_out_invoke_req(in_buf,
  1186. in_buf_len, req, args_buf,
  1187. context_type);
  1188. }
  1189. *tz_acked = true;
  1190. }
  1191. mutex_unlock(&g_smcinvoke_lock);
  1192. if (cmd == SMCINVOKE_CB_RSP_CMD)
  1193. release_filp(arr_filp, OBJECT_COUNTS_MAX_OO);
  1194. if (ret || !is_inbound_req(response_type))
  1195. break;
  1196. /* process listener request */
  1197. if (response_type == QSEOS_RESULT_INCOMPLETE ||
  1198. response_type == QSEOS_RESULT_BLOCKED_ON_LISTENER) {
  1199. ret = qseecom_process_listener_from_smcinvoke(
  1200. &req->result, &response_type, &data);
  1201. trace_prepare_send_scm_msg(response_type, req->result);
  1202. if (!req->result &&
  1203. response_type != SMCINVOKE_RESULT_INBOUND_REQ_NEEDED) {
  1204. ret = marshal_out_invoke_req(in_buf,
  1205. in_buf_len, req, args_buf,
  1206. context_type);
  1207. }
  1208. *tz_acked = true;
  1209. }
  1210. /*
  1211. * qseecom does not understand smcinvoke's callback object &&
  1212. * erringly sets ret value as -EINVAL :( We need to handle it.
  1213. */
  1214. if (response_type != SMCINVOKE_RESULT_INBOUND_REQ_NEEDED)
  1215. break;
  1216. if (response_type == SMCINVOKE_RESULT_INBOUND_REQ_NEEDED) {
  1217. trace_status(__func__, "looks like inbnd req reqd");
  1218. process_tzcb_req(out_buf, out_buf_len, arr_filp);
  1219. cmd = SMCINVOKE_CB_RSP_CMD;
  1220. }
  1221. }
  1222. return ret;
  1223. }
  1224. /*
  1225. * SMC expects arguments in following format
  1226. * ---------------------------------------------------------------------------
  1227. * | cxt | op | counts | ptr|size |ptr|size...|ORef|ORef|...| rest of payload |
  1228. * ---------------------------------------------------------------------------
  1229. * cxt: target, op: operation, counts: total arguments
  1230. * offset: offset is from beginning of buffer i.e. cxt
  1231. * size: size is 8 bytes aligned value
  1232. */
  1233. static size_t compute_in_msg_size(const struct smcinvoke_cmd_req *req,
  1234. const union smcinvoke_arg *args_buf)
  1235. {
  1236. uint32_t i = 0;
  1237. size_t total_size = sizeof(struct smcinvoke_msg_hdr) +
  1238. OBJECT_COUNTS_TOTAL(req->counts) *
  1239. sizeof(union smcinvoke_tz_args);
  1240. /* Computed total_size should be 8 bytes aligned from start of buf */
  1241. total_size = ALIGN(total_size, SMCINVOKE_ARGS_ALIGN_SIZE);
  1242. /* each buffer has to be 8 bytes aligned */
  1243. while (i < OBJECT_COUNTS_NUM_buffers(req->counts))
  1244. total_size = size_add(total_size,
  1245. size_align(args_buf[i++].b.size,
  1246. SMCINVOKE_ARGS_ALIGN_SIZE));
  1247. return PAGE_ALIGN(total_size);
  1248. }
  1249. static int marshal_in_invoke_req(const struct smcinvoke_cmd_req *req,
  1250. const union smcinvoke_arg *args_buf, uint32_t tzhandle,
  1251. uint8_t *buf, size_t buf_size, struct file **arr_filp,
  1252. int32_t *tzhandles_to_release, uint32_t context_type)
  1253. {
  1254. int ret = -EINVAL, i = 0, j = 0, k = 0;
  1255. const struct smcinvoke_msg_hdr msg_hdr = {
  1256. tzhandle, req->op, req->counts};
  1257. uint32_t offset = sizeof(struct smcinvoke_msg_hdr) +
  1258. sizeof(union smcinvoke_tz_args) *
  1259. OBJECT_COUNTS_TOTAL(req->counts);
  1260. union smcinvoke_tz_args *tz_args = NULL;
  1261. if (buf_size < offset)
  1262. goto out;
  1263. *(struct smcinvoke_msg_hdr *)buf = msg_hdr;
  1264. tz_args = (union smcinvoke_tz_args *)(buf +
  1265. sizeof(struct smcinvoke_msg_hdr));
  1266. if (args_buf == NULL)
  1267. return 0;
  1268. FOR_ARGS(i, req->counts, BI) {
  1269. offset = size_align(offset, SMCINVOKE_ARGS_ALIGN_SIZE);
  1270. if ((offset > buf_size) ||
  1271. (args_buf[i].b.size > (buf_size - offset)))
  1272. goto out;
  1273. tz_args[i].b.offset = offset;
  1274. tz_args[i].b.size = args_buf[i].b.size;
  1275. if (context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  1276. if (copy_from_user(buf + offset,
  1277. (void __user *)(uintptr_t)(args_buf[i].b.addr),
  1278. args_buf[i].b.size))
  1279. goto out;
  1280. } else {
  1281. memcpy(buf + offset, (void *)(args_buf[i].b.addr),
  1282. args_buf[i].b.size);
  1283. }
  1284. offset += args_buf[i].b.size;
  1285. }
  1286. FOR_ARGS(i, req->counts, BO) {
  1287. offset = size_align(offset, SMCINVOKE_ARGS_ALIGN_SIZE);
  1288. if ((offset > buf_size) ||
  1289. (args_buf[i].b.size > (buf_size - offset)))
  1290. goto out;
  1291. tz_args[i].b.offset = offset;
  1292. tz_args[i].b.size = args_buf[i].b.size;
  1293. offset += args_buf[i].b.size;
  1294. }
  1295. FOR_ARGS(i, req->counts, OI) {
  1296. ret = get_tzhandle_from_uhandle(args_buf[i].o.fd,
  1297. args_buf[i].o.cb_server_fd, &arr_filp[j++],
  1298. &(tz_args[i].handle));
  1299. if (ret)
  1300. goto out;
  1301. trace_marshal_in_invoke_req(i, args_buf[i].o.fd,
  1302. args_buf[i].o.cb_server_fd, tz_args[i].handle);
  1303. tzhandles_to_release[k++] = tz_args[i].handle;
  1304. }
  1305. ret = 0;
  1306. out:
  1307. return ret;
  1308. }
  1309. static int marshal_in_tzcb_req(const struct smcinvoke_cb_txn *cb_txn,
  1310. struct smcinvoke_accept *user_req, int srvr_id)
  1311. {
  1312. int ret = 0, i = 0;
  1313. int32_t temp_fd = UHANDLE_NULL;
  1314. union smcinvoke_arg tmp_arg;
  1315. struct smcinvoke_tzcb_req *tzcb_req = cb_txn->cb_req;
  1316. union smcinvoke_tz_args *tz_args = tzcb_req->args;
  1317. size_t tzcb_req_len = cb_txn->cb_req_bytes;
  1318. size_t tz_buf_offset = TZCB_BUF_OFFSET(tzcb_req);
  1319. size_t user_req_buf_offset = sizeof(union smcinvoke_arg) *
  1320. OBJECT_COUNTS_TOTAL(tzcb_req->hdr.counts);
  1321. if (tz_buf_offset > tzcb_req_len) {
  1322. ret = -EINVAL;
  1323. goto out;
  1324. }
  1325. user_req->txn_id = cb_txn->txn_id;
  1326. if (get_uhandle_from_tzhandle(tzcb_req->hdr.tzhandle, srvr_id,
  1327. &user_req->cbobj_id, TAKE_LOCK,
  1328. SMCINVOKE_OBJ_TYPE_TZ_OBJ)) {
  1329. ret = -EINVAL;
  1330. goto out;
  1331. }
  1332. user_req->op = tzcb_req->hdr.op;
  1333. user_req->counts = tzcb_req->hdr.counts;
  1334. user_req->argsize = sizeof(union smcinvoke_arg);
  1335. trace_marshal_in_tzcb_req_handle(tzcb_req->hdr.tzhandle, srvr_id,
  1336. user_req->cbobj_id, user_req->op, user_req->counts);
  1337. FOR_ARGS(i, tzcb_req->hdr.counts, BI) {
  1338. user_req_buf_offset = size_align(user_req_buf_offset,
  1339. SMCINVOKE_ARGS_ALIGN_SIZE);
  1340. tmp_arg.b.size = tz_args[i].b.size;
  1341. if ((tz_args[i].b.offset > tzcb_req_len) ||
  1342. (tz_args[i].b.size > tzcb_req_len - tz_args[i].b.offset) ||
  1343. (user_req_buf_offset > user_req->buf_len) ||
  1344. (tmp_arg.b.size >
  1345. user_req->buf_len - user_req_buf_offset)) {
  1346. ret = -EINVAL;
  1347. pr_err("%s: buffer overflow detected\n", __func__);
  1348. goto out;
  1349. }
  1350. tmp_arg.b.addr = user_req->buf_addr + user_req_buf_offset;
  1351. if (copy_to_user(u64_to_user_ptr
  1352. (user_req->buf_addr + i * sizeof(tmp_arg)),
  1353. &tmp_arg, sizeof(tmp_arg)) ||
  1354. copy_to_user(u64_to_user_ptr(tmp_arg.b.addr),
  1355. (uint8_t *)(tzcb_req) + tz_args[i].b.offset,
  1356. tz_args[i].b.size)) {
  1357. ret = -EFAULT;
  1358. goto out;
  1359. }
  1360. user_req_buf_offset += tmp_arg.b.size;
  1361. }
  1362. FOR_ARGS(i, tzcb_req->hdr.counts, BO) {
  1363. user_req_buf_offset = size_align(user_req_buf_offset,
  1364. SMCINVOKE_ARGS_ALIGN_SIZE);
  1365. tmp_arg.b.size = tz_args[i].b.size;
  1366. if ((user_req_buf_offset > user_req->buf_len) ||
  1367. (tmp_arg.b.size >
  1368. user_req->buf_len - user_req_buf_offset)) {
  1369. ret = -EINVAL;
  1370. pr_err("%s: buffer overflow detected\n", __func__);
  1371. goto out;
  1372. }
  1373. tmp_arg.b.addr = user_req->buf_addr + user_req_buf_offset;
  1374. if (copy_to_user(u64_to_user_ptr
  1375. (user_req->buf_addr + i * sizeof(tmp_arg)),
  1376. &tmp_arg, sizeof(tmp_arg))) {
  1377. ret = -EFAULT;
  1378. goto out;
  1379. }
  1380. user_req_buf_offset += tmp_arg.b.size;
  1381. }
  1382. FOR_ARGS(i, tzcb_req->hdr.counts, OI) {
  1383. /*
  1384. * create a new FD and assign to output object's
  1385. * context
  1386. */
  1387. temp_fd = UHANDLE_NULL;
  1388. ret = get_uhandle_from_tzhandle(tz_args[i].handle, srvr_id,
  1389. &temp_fd, TAKE_LOCK, SMCINVOKE_OBJ_TYPE_TZ_OBJ);
  1390. tmp_arg.o.fd = temp_fd;
  1391. if (ret) {
  1392. ret = -EINVAL;
  1393. goto out;
  1394. }
  1395. if (copy_to_user(u64_to_user_ptr
  1396. (user_req->buf_addr + i * sizeof(tmp_arg)),
  1397. &tmp_arg, sizeof(tmp_arg))) {
  1398. ret = -EFAULT;
  1399. goto out;
  1400. }
  1401. trace_marshal_in_tzcb_req_fd(i, tz_args[i].handle, srvr_id, temp_fd);
  1402. }
  1403. out:
  1404. return ret;
  1405. }
  1406. static int marshal_out_tzcb_req(const struct smcinvoke_accept *user_req,
  1407. struct smcinvoke_cb_txn *cb_txn,
  1408. struct file **arr_filp)
  1409. {
  1410. int ret = -EINVAL, i = 0;
  1411. int32_t tzhandles_to_release[OBJECT_COUNTS_MAX_OO] = {0};
  1412. struct smcinvoke_tzcb_req *tzcb_req = cb_txn->cb_req;
  1413. union smcinvoke_tz_args *tz_args = tzcb_req->args;
  1414. release_tzhandles(&cb_txn->cb_req->hdr.tzhandle, 1);
  1415. tzcb_req->result = user_req->result;
  1416. FOR_ARGS(i, tzcb_req->hdr.counts, BO) {
  1417. union smcinvoke_arg tmp_arg;
  1418. if (copy_from_user((uint8_t *)&tmp_arg, u64_to_user_ptr(
  1419. user_req->buf_addr + i * sizeof(union smcinvoke_arg)),
  1420. sizeof(union smcinvoke_arg))) {
  1421. ret = -EFAULT;
  1422. goto out;
  1423. }
  1424. if (tmp_arg.b.size > tz_args[i].b.size)
  1425. goto out;
  1426. if (copy_from_user((uint8_t *)(tzcb_req) + tz_args[i].b.offset,
  1427. u64_to_user_ptr(tmp_arg.b.addr),
  1428. tmp_arg.b.size)) {
  1429. ret = -EFAULT;
  1430. goto out;
  1431. }
  1432. }
  1433. FOR_ARGS(i, tzcb_req->hdr.counts, OO) {
  1434. union smcinvoke_arg tmp_arg;
  1435. if (copy_from_user((uint8_t *)&tmp_arg, u64_to_user_ptr(
  1436. user_req->buf_addr + i * sizeof(union smcinvoke_arg)),
  1437. sizeof(union smcinvoke_arg))) {
  1438. ret = -EFAULT;
  1439. goto out;
  1440. }
  1441. ret = get_tzhandle_from_uhandle(tmp_arg.o.fd,
  1442. tmp_arg.o.cb_server_fd, &arr_filp[i],
  1443. &(tz_args[i].handle));
  1444. if (ret)
  1445. goto out;
  1446. tzhandles_to_release[i] = tz_args[i].handle;
  1447. trace_marshal_out_tzcb_req(i, tmp_arg.o.fd,
  1448. tmp_arg.o.cb_server_fd, tz_args[i].handle);
  1449. }
  1450. FOR_ARGS(i, tzcb_req->hdr.counts, OI) {
  1451. if (TZHANDLE_IS_CB_OBJ(tz_args[i].handle))
  1452. release_tzhandles(&tz_args[i].handle, 1);
  1453. }
  1454. ret = 0;
  1455. out:
  1456. if (ret)
  1457. release_tzhandles(tzhandles_to_release, OBJECT_COUNTS_MAX_OO);
  1458. return ret;
  1459. }
  1460. static void process_piggyback_data(void *buf, size_t buf_size)
  1461. {
  1462. int i;
  1463. struct smcinvoke_tzcb_req req = {0};
  1464. struct smcinvoke_piggyback_msg *msg = buf;
  1465. int32_t *objs = msg->objs;
  1466. for (i = 0; i < msg->counts; i++) {
  1467. req.hdr.op = msg->op;
  1468. req.hdr.counts = 0; /* release op does not require any args */
  1469. req.hdr.tzhandle = objs[i];
  1470. process_tzcb_req(&req, sizeof(struct smcinvoke_tzcb_req), NULL);
  1471. /* cbobjs_in_flight will be adjusted during CB processing */
  1472. }
  1473. }
  1474. static long process_ack_local_obj(struct file *filp, unsigned int cmd,
  1475. unsigned long arg)
  1476. {
  1477. int ret = -1;
  1478. int32_t local_obj = SMCINVOKE_USERSPACE_OBJ_NULL;
  1479. struct smcinvoke_file_data *filp_data = filp->private_data;
  1480. if (_IOC_SIZE(cmd) != sizeof(int32_t))
  1481. return -EINVAL;
  1482. ret = copy_from_user(&local_obj, (void __user *)(uintptr_t)arg,
  1483. sizeof(int32_t));
  1484. if (ret)
  1485. return -EFAULT;
  1486. mutex_lock(&g_smcinvoke_lock);
  1487. if (UHANDLE_IS_CB_OBJ(local_obj))
  1488. ret = put_pending_cbobj_locked(filp_data->server_id,
  1489. UHANDLE_GET_CB_OBJ(local_obj));
  1490. mutex_unlock(&g_smcinvoke_lock);
  1491. return ret;
  1492. }
  1493. static long process_server_req(struct file *filp, unsigned int cmd,
  1494. unsigned long arg)
  1495. {
  1496. int ret = -1;
  1497. int32_t server_fd = -1;
  1498. struct smcinvoke_server server_req = {0};
  1499. struct smcinvoke_server_info *server_info = NULL;
  1500. if (_IOC_SIZE(cmd) != sizeof(server_req)) {
  1501. pr_err("invalid command size received for server request\n");
  1502. return -EINVAL;
  1503. }
  1504. ret = copy_from_user(&server_req, (void __user *)(uintptr_t)arg,
  1505. sizeof(server_req));
  1506. if (ret) {
  1507. pr_err("copying server request from user failed\n");
  1508. return -EFAULT;
  1509. }
  1510. server_info = kzalloc(sizeof(*server_info), GFP_KERNEL);
  1511. if (!server_info)
  1512. return -ENOMEM;
  1513. kref_init(&server_info->ref_cnt);
  1514. init_waitqueue_head(&server_info->req_wait_q);
  1515. init_waitqueue_head(&server_info->rsp_wait_q);
  1516. server_info->cb_buf_size = server_req.cb_buf_size;
  1517. hash_init(server_info->reqs_table);
  1518. hash_init(server_info->responses_table);
  1519. INIT_LIST_HEAD(&server_info->pending_cbobjs);
  1520. mutex_lock(&g_smcinvoke_lock);
  1521. server_info->server_id = next_cb_server_id_locked();
  1522. hash_add(g_cb_servers, &server_info->hash,
  1523. server_info->server_id);
  1524. if (g_max_cb_buf_size < server_req.cb_buf_size)
  1525. g_max_cb_buf_size = server_req.cb_buf_size;
  1526. mutex_unlock(&g_smcinvoke_lock);
  1527. ret = get_fd_for_obj(SMCINVOKE_OBJ_TYPE_SERVER,
  1528. server_info->server_id, &server_fd);
  1529. if (ret)
  1530. release_cb_server(server_info->server_id);
  1531. return server_fd;
  1532. }
  1533. static long process_accept_req(struct file *filp, unsigned int cmd,
  1534. unsigned long arg)
  1535. {
  1536. int ret = -1;
  1537. struct smcinvoke_file_data *server_obj = filp->private_data;
  1538. struct smcinvoke_accept user_args = {0};
  1539. struct smcinvoke_cb_txn *cb_txn = NULL;
  1540. struct smcinvoke_server_info *server_info = NULL;
  1541. if (_IOC_SIZE(cmd) != sizeof(struct smcinvoke_accept)) {
  1542. pr_err("command size invalid for accept request\n");
  1543. return -EINVAL;
  1544. }
  1545. if (copy_from_user(&user_args, (void __user *)arg,
  1546. sizeof(struct smcinvoke_accept))) {
  1547. pr_err("copying accept request from user failed\n");
  1548. return -EFAULT;
  1549. }
  1550. if (user_args.argsize != sizeof(union smcinvoke_arg)) {
  1551. pr_err("arguments size is invalid for accept thread\n");
  1552. return -EINVAL;
  1553. }
  1554. /* ACCEPT is available only on server obj */
  1555. if (server_obj->context_type != SMCINVOKE_OBJ_TYPE_SERVER) {
  1556. pr_err("invalid object type received for accept req\n");
  1557. return -EPERM;
  1558. }
  1559. mutex_lock(&g_smcinvoke_lock);
  1560. server_info = get_cb_server_locked(server_obj->server_id);
  1561. if (!server_info) {
  1562. pr_err("No matching server with server id : %u found\n",
  1563. server_obj->server_id);
  1564. mutex_unlock(&g_smcinvoke_lock);
  1565. return -EINVAL;
  1566. }
  1567. if (server_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT)
  1568. server_info->state = 0;
  1569. mutex_unlock(&g_smcinvoke_lock);
  1570. /* First check if it has response otherwise wait for req */
  1571. if (user_args.has_resp) {
  1572. trace_process_accept_req_has_response(current->pid, current->tgid);
  1573. mutex_lock(&g_smcinvoke_lock);
  1574. cb_txn = find_cbtxn_locked(server_info, user_args.txn_id,
  1575. SMCINVOKE_REQ_PROCESSING);
  1576. mutex_unlock(&g_smcinvoke_lock);
  1577. /*
  1578. * cb_txn can be null if userspace provides wrong txn id OR
  1579. * invoke thread died while server was processing cb req.
  1580. * if invoke thread dies, it would remove req from Q. So
  1581. * no matching cb_txn would be on Q and hence NULL cb_txn.
  1582. * In this case, we want this thread to come back and start
  1583. * waiting for new cb requests, hence return EAGAIN here
  1584. */
  1585. if (!cb_txn) {
  1586. pr_err("%s txn %d either invalid or removed from Q\n",
  1587. __func__, user_args.txn_id);
  1588. ret = -EAGAIN;
  1589. goto out;
  1590. }
  1591. ret = marshal_out_tzcb_req(&user_args, cb_txn,
  1592. cb_txn->filp_to_release);
  1593. /*
  1594. * if client did not set error and we get error locally,
  1595. * we return local error to TA
  1596. */
  1597. if (ret && cb_txn->cb_req->result == 0)
  1598. cb_txn->cb_req->result = OBJECT_ERROR_UNAVAIL;
  1599. cb_txn->state = SMCINVOKE_REQ_PROCESSED;
  1600. kref_put(&cb_txn->ref_cnt, delete_cb_txn);
  1601. wake_up(&server_info->rsp_wait_q);
  1602. /*
  1603. * if marshal_out fails, we should let userspace release
  1604. * any ref/obj it created for CB processing
  1605. */
  1606. if (ret && OBJECT_COUNTS_NUM_OO(user_args.counts))
  1607. goto out;
  1608. }
  1609. /*
  1610. * Once response has been delivered, thread will wait for another
  1611. * callback req to process.
  1612. */
  1613. do {
  1614. ret = wait_event_interruptible(server_info->req_wait_q,
  1615. !hash_empty(server_info->reqs_table));
  1616. if (ret) {
  1617. trace_process_accept_req_ret(current->pid, current->tgid, ret);
  1618. /*
  1619. * Ideally, we should destroy server if accept threads
  1620. * are returning due to client being killed or device
  1621. * going down (Shutdown/Reboot) but that would make
  1622. * server_info invalid. Other accept/invoke threads are
  1623. * using server_info and would crash. So dont do that.
  1624. */
  1625. mutex_lock(&g_smcinvoke_lock);
  1626. server_info->state = SMCINVOKE_SERVER_STATE_DEFUNCT;
  1627. mutex_unlock(&g_smcinvoke_lock);
  1628. wake_up_interruptible(&server_info->rsp_wait_q);
  1629. goto out;
  1630. }
  1631. mutex_lock(&g_smcinvoke_lock);
  1632. cb_txn = find_cbtxn_locked(server_info,
  1633. SMCINVOKE_NEXT_AVAILABLE_TXN,
  1634. SMCINVOKE_REQ_PLACED);
  1635. mutex_unlock(&g_smcinvoke_lock);
  1636. if (cb_txn) {
  1637. cb_txn->state = SMCINVOKE_REQ_PROCESSING;
  1638. ret = marshal_in_tzcb_req(cb_txn, &user_args,
  1639. server_obj->server_id);
  1640. if (ret) {
  1641. pr_err("failed to marshal in the callback request\n");
  1642. cb_txn->cb_req->result = OBJECT_ERROR_UNAVAIL;
  1643. cb_txn->state = SMCINVOKE_REQ_PROCESSED;
  1644. kref_put(&cb_txn->ref_cnt, delete_cb_txn);
  1645. wake_up_interruptible(&server_info->rsp_wait_q);
  1646. continue;
  1647. }
  1648. mutex_lock(&g_smcinvoke_lock);
  1649. hash_add(server_info->responses_table, &cb_txn->hash,
  1650. cb_txn->txn_id);
  1651. kref_put(&cb_txn->ref_cnt, delete_cb_txn);
  1652. mutex_unlock(&g_smcinvoke_lock);
  1653. trace_process_accept_req_placed(current->pid, current->tgid);
  1654. ret = copy_to_user((void __user *)arg, &user_args,
  1655. sizeof(struct smcinvoke_accept));
  1656. }
  1657. } while (!cb_txn);
  1658. out:
  1659. if (server_info)
  1660. kref_put(&server_info->ref_cnt, destroy_cb_server);
  1661. if (ret && ret != -ERESTARTSYS)
  1662. pr_err("accept thread returning with ret: %d\n", ret);
  1663. return ret;
  1664. }
  1665. static long process_invoke_req(struct file *filp, unsigned int cmd,
  1666. unsigned long arg)
  1667. {
  1668. int ret = -1, nr_args = 0;
  1669. struct smcinvoke_cmd_req req = {0};
  1670. void *in_msg = NULL, *out_msg = NULL;
  1671. size_t inmsg_size = 0, outmsg_size = SMCINVOKE_TZ_MIN_BUF_SIZE;
  1672. union smcinvoke_arg *args_buf = NULL;
  1673. struct smcinvoke_file_data *tzobj = filp->private_data;
  1674. struct qtee_shm in_shm = {0}, out_shm = {0};
  1675. /*
  1676. * Hold reference to remote object until invoke op is not
  1677. * completed. Release once invoke is done.
  1678. */
  1679. struct file *filp_to_release[OBJECT_COUNTS_MAX_OO] = {NULL};
  1680. /*
  1681. * If anything goes wrong, release alloted tzhandles for
  1682. * local objs which could be either CBObj or MemObj.
  1683. */
  1684. int32_t tzhandles_to_release[OBJECT_COUNTS_MAX_OO] = {0};
  1685. bool tz_acked = false;
  1686. uint32_t context_type = tzobj->context_type;
  1687. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ &&
  1688. _IOC_SIZE(cmd) != sizeof(req)) {
  1689. pr_err("command size for invoke req is invalid\n");
  1690. return -EINVAL;
  1691. }
  1692. if (context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ &&
  1693. context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  1694. pr_err("invalid context_type %d\n", context_type);
  1695. return -EPERM;
  1696. }
  1697. if (context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  1698. ret = copy_from_user(&req, (void __user *)arg, sizeof(req));
  1699. if (ret) {
  1700. pr_err("copying invoke req failed\n");
  1701. return -EFAULT;
  1702. }
  1703. } else {
  1704. req = *(struct smcinvoke_cmd_req *)arg;
  1705. }
  1706. if (req.argsize != sizeof(union smcinvoke_arg)) {
  1707. pr_err("arguments size for invoke req is invalid\n");
  1708. return -EINVAL;
  1709. }
  1710. nr_args = OBJECT_COUNTS_NUM_buffers(req.counts) +
  1711. OBJECT_COUNTS_NUM_objects(req.counts);
  1712. if (nr_args) {
  1713. args_buf = kcalloc(nr_args, req.argsize, GFP_KERNEL);
  1714. if (!args_buf)
  1715. return -ENOMEM;
  1716. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  1717. ret = copy_from_user(args_buf,
  1718. u64_to_user_ptr(req.args),
  1719. nr_args * req.argsize);
  1720. if (ret) {
  1721. ret = -EFAULT;
  1722. goto out;
  1723. }
  1724. } else {
  1725. memcpy(args_buf, (void *)(req.args),
  1726. nr_args * req.argsize);
  1727. }
  1728. }
  1729. inmsg_size = compute_in_msg_size(&req, args_buf);
  1730. ret = qtee_shmbridge_allocate_shm(inmsg_size, &in_shm);
  1731. if (ret) {
  1732. ret = -ENOMEM;
  1733. pr_err("shmbridge alloc failed for in msg in invoke req\n");
  1734. goto out;
  1735. }
  1736. in_msg = in_shm.vaddr;
  1737. mutex_lock(&g_smcinvoke_lock);
  1738. outmsg_size = PAGE_ALIGN(g_max_cb_buf_size);
  1739. mutex_unlock(&g_smcinvoke_lock);
  1740. ret = qtee_shmbridge_allocate_shm(outmsg_size, &out_shm);
  1741. if (ret) {
  1742. ret = -ENOMEM;
  1743. pr_err("shmbridge alloc failed for out msg in invoke req\n");
  1744. goto out;
  1745. }
  1746. out_msg = out_shm.vaddr;
  1747. trace_process_invoke_req_tzhandle(tzobj->tzhandle, req.op, req.counts);
  1748. ret = marshal_in_invoke_req(&req, args_buf, tzobj->tzhandle, in_msg,
  1749. inmsg_size, filp_to_release, tzhandles_to_release,
  1750. context_type);
  1751. if (ret) {
  1752. pr_err("failed to marshal in invoke req, ret :%d\n", ret);
  1753. goto out;
  1754. }
  1755. ret = prepare_send_scm_msg(in_msg, in_shm.paddr, inmsg_size,
  1756. out_msg, out_shm.paddr, outmsg_size,
  1757. &req, args_buf, &tz_acked, context_type,
  1758. &in_shm, &out_shm);
  1759. /*
  1760. * If scm_call is success, TZ owns responsibility to release
  1761. * refs for local objs.
  1762. */
  1763. if (!tz_acked) {
  1764. trace_status(__func__, "scm call successful");
  1765. goto out;
  1766. }
  1767. memset(tzhandles_to_release, 0, sizeof(tzhandles_to_release));
  1768. /*
  1769. * if invoke op results in an err, no need to marshal_out and
  1770. * copy args buf to user space
  1771. */
  1772. if (!req.result) {
  1773. /*
  1774. * Dont check ret of marshal_out because there might be a
  1775. * FD for OO which userspace must release even if an error
  1776. * occurs. Releasing FD from user space is much simpler than
  1777. * doing here. ORing of ret is reqd not to miss past error
  1778. */
  1779. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ)
  1780. ret |= copy_to_user(u64_to_user_ptr(req.args),
  1781. args_buf, nr_args * req.argsize);
  1782. else
  1783. memcpy((void *)(req.args), args_buf,
  1784. nr_args * req.argsize);
  1785. }
  1786. /* copy result of invoke op */
  1787. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  1788. ret |= copy_to_user((void __user *)arg, &req, sizeof(req));
  1789. if (ret)
  1790. goto out;
  1791. } else {
  1792. memcpy((void *)arg, (void *)&req, sizeof(req));
  1793. }
  1794. /* Outbuf could be carrying local objs to be released. */
  1795. process_piggyback_data(out_msg, outmsg_size);
  1796. out:
  1797. trace_process_invoke_req_result(ret, req.result, tzobj->tzhandle,
  1798. req.op, req.counts);
  1799. release_filp(filp_to_release, OBJECT_COUNTS_MAX_OO);
  1800. if (ret)
  1801. release_tzhandles(tzhandles_to_release, OBJECT_COUNTS_MAX_OO);
  1802. qtee_shmbridge_free_shm(&in_shm);
  1803. qtee_shmbridge_free_shm(&out_shm);
  1804. kfree(args_buf);
  1805. if (ret)
  1806. pr_err("invoke thread returning with ret = %d\n", ret);
  1807. return ret;
  1808. }
  1809. static long process_log_info(struct file *filp, unsigned int cmd,
  1810. unsigned long arg)
  1811. {
  1812. int ret = 0;
  1813. char buf[SMCINVOKE_LOG_BUF_SIZE];
  1814. struct smcinvoke_file_data *tzobj = filp->private_data;
  1815. ret = copy_from_user(buf, (void __user *)arg, SMCINVOKE_LOG_BUF_SIZE);
  1816. if (ret) {
  1817. pr_err("logging HLOS info copy failed\n");
  1818. return -EFAULT;
  1819. }
  1820. buf[SMCINVOKE_LOG_BUF_SIZE - 1] = '\0';
  1821. trace_process_log_info(buf, tzobj->context_type, tzobj->tzhandle);
  1822. return ret;
  1823. }
  1824. static long smcinvoke_ioctl(struct file *filp, unsigned int cmd,
  1825. unsigned long arg)
  1826. {
  1827. long ret = 0;
  1828. switch (cmd) {
  1829. case SMCINVOKE_IOCTL_INVOKE_REQ:
  1830. ret = process_invoke_req(filp, cmd, arg);
  1831. break;
  1832. case SMCINVOKE_IOCTL_ACCEPT_REQ:
  1833. ret = process_accept_req(filp, cmd, arg);
  1834. break;
  1835. case SMCINVOKE_IOCTL_SERVER_REQ:
  1836. ret = process_server_req(filp, cmd, arg);
  1837. break;
  1838. case SMCINVOKE_IOCTL_ACK_LOCAL_OBJ:
  1839. ret = process_ack_local_obj(filp, cmd, arg);
  1840. break;
  1841. case SMCINVOKE_IOCTL_LOG:
  1842. ret = process_log_info(filp, cmd, arg);
  1843. break;
  1844. default:
  1845. ret = -ENOIOCTLCMD;
  1846. break;
  1847. }
  1848. trace_smcinvoke_ioctl(cmd, ret);
  1849. return ret;
  1850. }
  1851. int get_root_fd(int *root_fd)
  1852. {
  1853. if (!root_fd)
  1854. return -EINVAL;
  1855. else
  1856. return get_fd_for_obj(SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL,
  1857. SMCINVOKE_TZ_ROOT_OBJ, root_fd);
  1858. }
  1859. int process_invoke_request_from_kernel_client(int fd,
  1860. struct smcinvoke_cmd_req *req)
  1861. {
  1862. struct file *filp = NULL;
  1863. int ret = 0;
  1864. if (!req) {
  1865. pr_err("NULL req\n");
  1866. return -EINVAL;
  1867. }
  1868. filp = fget(fd);
  1869. if (!filp) {
  1870. pr_err("Invalid fd %d\n", fd);
  1871. return -EINVAL;
  1872. }
  1873. ret = process_invoke_req(filp, 0, (uintptr_t)req);
  1874. fput(filp);
  1875. trace_process_invoke_request_from_kernel_client(fd, filp, file_count(filp));
  1876. return ret;
  1877. }
  1878. char *firmware_request_from_smcinvoke(const char *appname, size_t *fw_size, struct qtee_shm *shm)
  1879. {
  1880. int rc = 0;
  1881. const struct firmware *fw_entry = NULL, *fw_entry00 = NULL, *fw_entrylast = NULL;
  1882. char fw_name[MAX_APP_NAME_SIZE] = "\0";
  1883. int num_images = 0, phi = 0;
  1884. unsigned char app_arch = 0;
  1885. u8 *img_data_ptr = NULL;
  1886. size_t bufferOffset = 0, phdr_table_offset = 0;
  1887. size_t *offset = NULL;
  1888. Elf32_Phdr phdr32;
  1889. Elf64_Phdr phdr64;
  1890. struct elf32_hdr *ehdr = NULL;
  1891. struct elf64_hdr *ehdr64 = NULL;
  1892. /* load b00*/
  1893. snprintf(fw_name, sizeof(fw_name), "%s.b00", appname);
  1894. rc = firmware_request_nowarn(&fw_entry00, fw_name, class_dev);
  1895. if (rc) {
  1896. pr_err("Load %s failed, ret:%d\n", fw_name, rc);
  1897. return NULL;
  1898. }
  1899. app_arch = *(unsigned char *)(fw_entry00->data + EI_CLASS);
  1900. /*Get the offsets for split images header*/
  1901. if (app_arch == ELFCLASS32) {
  1902. ehdr = (struct elf32_hdr *)fw_entry00->data;
  1903. num_images = ehdr->e_phnum;
  1904. offset = kcalloc(num_images, sizeof(size_t), GFP_KERNEL);
  1905. if (offset == NULL)
  1906. goto release_fw_entry00;
  1907. phdr_table_offset = (size_t) ehdr->e_phoff;
  1908. for (phi = 1; phi < num_images; ++phi) {
  1909. bufferOffset = phdr_table_offset + phi * sizeof(Elf32_Phdr);
  1910. phdr32 = *(Elf32_Phdr *)(fw_entry00->data + bufferOffset);
  1911. offset[phi] = (size_t)phdr32.p_offset;
  1912. }
  1913. } else if (app_arch == ELFCLASS64) {
  1914. ehdr64 = (struct elf64_hdr *)fw_entry00->data;
  1915. num_images = ehdr64->e_phnum;
  1916. offset = kcalloc(num_images, sizeof(size_t), GFP_KERNEL);
  1917. if (offset == NULL)
  1918. goto release_fw_entry00;
  1919. phdr_table_offset = (size_t) ehdr64->e_phoff;
  1920. for (phi = 1; phi < num_images; ++phi) {
  1921. bufferOffset = phdr_table_offset + phi * sizeof(Elf64_Phdr);
  1922. phdr64 = *(Elf64_Phdr *)(fw_entry00->data + bufferOffset);
  1923. offset[phi] = (size_t)phdr64.p_offset;
  1924. }
  1925. } else {
  1926. pr_err("QSEE %s app, arch %u is not supported\n", appname, app_arch);
  1927. goto release_fw_entry00;
  1928. }
  1929. /*Find the size of last split bin image*/
  1930. snprintf(fw_name, ARRAY_SIZE(fw_name), "%s.b%02d", appname, num_images-1);
  1931. rc = firmware_request_nowarn(&fw_entrylast, fw_name, class_dev);
  1932. if (rc) {
  1933. pr_err("Failed to locate blob %s\n", fw_name);
  1934. goto release_fw_entry00;
  1935. }
  1936. /*Total size of image will be the offset of last image + the size of last split image*/
  1937. *fw_size = fw_entrylast->size + offset[num_images-1];
  1938. /*Allocate memory for the buffer that will hold the split image*/
  1939. rc = qtee_shmbridge_allocate_shm((*fw_size), shm);
  1940. if (rc) {
  1941. pr_err("smbridge alloc failed for size: %zu\n", *fw_size);
  1942. goto release_fw_entrylast;
  1943. }
  1944. img_data_ptr = shm->vaddr;
  1945. /*
  1946. * Copy contents of split bins to the buffer
  1947. */
  1948. memcpy(img_data_ptr, fw_entry00->data, fw_entry00->size);
  1949. for (phi = 1; phi < num_images-1; phi++) {
  1950. snprintf(fw_name, ARRAY_SIZE(fw_name), "%s.b%02d", appname, phi);
  1951. rc = firmware_request_nowarn(&fw_entry, fw_name, class_dev);
  1952. if (rc) {
  1953. pr_err("Failed to locate blob %s\n", fw_name);
  1954. qtee_shmbridge_free_shm(shm);
  1955. img_data_ptr = NULL;
  1956. goto release_fw_entrylast;
  1957. }
  1958. memcpy(img_data_ptr + offset[phi], fw_entry->data, fw_entry->size);
  1959. release_firmware(fw_entry);
  1960. fw_entry = NULL;
  1961. }
  1962. memcpy(img_data_ptr + offset[phi], fw_entrylast->data, fw_entrylast->size);
  1963. release_fw_entrylast:
  1964. release_firmware(fw_entrylast);
  1965. release_fw_entry00:
  1966. release_firmware(fw_entry00);
  1967. kfree(offset);
  1968. return img_data_ptr;
  1969. }
  1970. EXPORT_SYMBOL(firmware_request_from_smcinvoke);
  1971. static int smcinvoke_open(struct inode *nodp, struct file *filp)
  1972. {
  1973. struct smcinvoke_file_data *tzcxt = NULL;
  1974. tzcxt = kzalloc(sizeof(*tzcxt), GFP_KERNEL);
  1975. if (!tzcxt)
  1976. return -ENOMEM;
  1977. tzcxt->tzhandle = SMCINVOKE_TZ_ROOT_OBJ;
  1978. tzcxt->context_type = SMCINVOKE_OBJ_TYPE_TZ_OBJ;
  1979. filp->private_data = tzcxt;
  1980. return 0;
  1981. }
  1982. static int release_cb_server(uint16_t server_id)
  1983. {
  1984. struct smcinvoke_server_info *server = NULL;
  1985. mutex_lock(&g_smcinvoke_lock);
  1986. server = find_cb_server_locked(server_id);
  1987. if (server)
  1988. kref_put(&server->ref_cnt, destroy_cb_server);
  1989. mutex_unlock(&g_smcinvoke_lock);
  1990. return 0;
  1991. }
  1992. int smcinvoke_release_filp(struct file *filp)
  1993. {
  1994. int ret = 0;
  1995. bool release_handles;
  1996. uint8_t *in_buf = NULL;
  1997. uint8_t *out_buf = NULL;
  1998. struct smcinvoke_msg_hdr hdr = {0};
  1999. struct smcinvoke_file_data *file_data = filp->private_data;
  2000. struct smcinvoke_cmd_req req = {0};
  2001. uint32_t tzhandle = 0;
  2002. struct qtee_shm in_shm = {0}, out_shm = {0};
  2003. trace_smcinvoke_release_filp(current->files, filp,
  2004. file_count(filp), file_data->context_type);
  2005. if (file_data->context_type == SMCINVOKE_OBJ_TYPE_SERVER) {
  2006. ret = release_cb_server(file_data->server_id);
  2007. goto out;
  2008. }
  2009. tzhandle = file_data->tzhandle;
  2010. /* Root object is special in sense it is indestructible */
  2011. if (!tzhandle || tzhandle == SMCINVOKE_TZ_ROOT_OBJ)
  2012. goto out;
  2013. ret = qtee_shmbridge_allocate_shm(SMCINVOKE_TZ_MIN_BUF_SIZE, &in_shm);
  2014. if (ret) {
  2015. ret = -ENOMEM;
  2016. pr_err("shmbridge alloc failed for in msg in release\n");
  2017. goto out;
  2018. }
  2019. ret = qtee_shmbridge_allocate_shm(SMCINVOKE_TZ_MIN_BUF_SIZE, &out_shm);
  2020. if (ret) {
  2021. ret = -ENOMEM;
  2022. pr_err("shmbridge alloc failed for out msg in release\n");
  2023. goto out;
  2024. }
  2025. in_buf = in_shm.vaddr;
  2026. out_buf = out_shm.vaddr;
  2027. hdr.tzhandle = tzhandle;
  2028. hdr.op = OBJECT_OP_RELEASE;
  2029. hdr.counts = 0;
  2030. *(struct smcinvoke_msg_hdr *)in_buf = hdr;
  2031. ret = prepare_send_scm_msg(in_buf, in_shm.paddr,
  2032. SMCINVOKE_TZ_MIN_BUF_SIZE, out_buf, out_shm.paddr,
  2033. SMCINVOKE_TZ_MIN_BUF_SIZE, &req, NULL, &release_handles,
  2034. file_data->context_type, &in_shm, &out_shm);
  2035. process_piggyback_data(out_buf, SMCINVOKE_TZ_MIN_BUF_SIZE);
  2036. out:
  2037. kfree(filp->private_data);
  2038. filp->private_data = NULL;
  2039. qtee_shmbridge_free_shm(&in_shm);
  2040. qtee_shmbridge_free_shm(&out_shm);
  2041. return ret;
  2042. }
  2043. int smcinvoke_release_from_kernel_client(int fd)
  2044. {
  2045. struct file *filp = NULL;
  2046. /* use fget() to get filp, but this will increase file ref_cnt to 1,
  2047. * then decrease file ref_cnt to 0 with fput().
  2048. */
  2049. filp = fget(fd);
  2050. if (!filp) {
  2051. pr_err("invalid fd %d to release\n", fd);
  2052. return -EINVAL;
  2053. }
  2054. trace_smcinvoke_release_from_kernel_client(current->files, filp,
  2055. file_count(filp));
  2056. /* free filp, notify TZ to release object */
  2057. smcinvoke_release_filp(filp);
  2058. fput(filp);
  2059. return 0;
  2060. }
  2061. static int smcinvoke_release(struct inode *nodp, struct file *filp)
  2062. {
  2063. trace_smcinvoke_release(current->files, filp, file_count(filp),
  2064. filp->private_data);
  2065. if (filp->private_data)
  2066. return smcinvoke_release_filp(filp);
  2067. else
  2068. return 0;
  2069. }
  2070. static int smcinvoke_probe(struct platform_device *pdev)
  2071. {
  2072. unsigned int baseminor = 0;
  2073. unsigned int count = 1;
  2074. int rc = 0;
  2075. rc = alloc_chrdev_region(&smcinvoke_device_no, baseminor, count,
  2076. SMCINVOKE_DEV);
  2077. if (rc < 0) {
  2078. pr_err("chrdev_region failed %d for %s\n", rc, SMCINVOKE_DEV);
  2079. return rc;
  2080. }
  2081. driver_class = class_create(THIS_MODULE, SMCINVOKE_DEV);
  2082. if (IS_ERR(driver_class)) {
  2083. rc = -ENOMEM;
  2084. pr_err("class_create failed %d\n", rc);
  2085. goto exit_unreg_chrdev_region;
  2086. }
  2087. class_dev = device_create(driver_class, NULL, smcinvoke_device_no,
  2088. NULL, SMCINVOKE_DEV);
  2089. if (!class_dev) {
  2090. pr_err("class_device_create failed %d\n", rc);
  2091. rc = -ENOMEM;
  2092. goto exit_destroy_class;
  2093. }
  2094. cdev_init(&smcinvoke_cdev, &g_smcinvoke_fops);
  2095. smcinvoke_cdev.owner = THIS_MODULE;
  2096. rc = cdev_add(&smcinvoke_cdev, MKDEV(MAJOR(smcinvoke_device_no), 0),
  2097. count);
  2098. if (rc < 0) {
  2099. pr_err("cdev_add failed %d for %s\n", rc, SMCINVOKE_DEV);
  2100. goto exit_destroy_device;
  2101. }
  2102. smcinvoke_pdev = pdev;
  2103. rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
  2104. if (rc) {
  2105. pr_err("dma_set_mask_and_coherent failed %d\n", rc);
  2106. goto exit_destroy_device;
  2107. }
  2108. legacy_smc_call = of_property_read_bool((&pdev->dev)->of_node,
  2109. "qcom,support-legacy_smc");
  2110. invoke_cmd = legacy_smc_call ? SMCINVOKE_INVOKE_CMD_LEGACY : SMCINVOKE_INVOKE_CMD;
  2111. return 0;
  2112. exit_destroy_device:
  2113. device_destroy(driver_class, smcinvoke_device_no);
  2114. exit_destroy_class:
  2115. class_destroy(driver_class);
  2116. exit_unreg_chrdev_region:
  2117. unregister_chrdev_region(smcinvoke_device_no, count);
  2118. return rc;
  2119. }
  2120. static int smcinvoke_remove(struct platform_device *pdev)
  2121. {
  2122. int count = 1;
  2123. cdev_del(&smcinvoke_cdev);
  2124. device_destroy(driver_class, smcinvoke_device_no);
  2125. class_destroy(driver_class);
  2126. unregister_chrdev_region(smcinvoke_device_no, count);
  2127. return 0;
  2128. }
  2129. static int __maybe_unused smcinvoke_suspend(struct platform_device *pdev,
  2130. pm_message_t state)
  2131. {
  2132. int ret = 0;
  2133. mutex_lock(&g_smcinvoke_lock);
  2134. if (cb_reqs_inflight) {
  2135. pr_err("Failed to suspend smcinvoke driver\n");
  2136. ret = -EIO;
  2137. }
  2138. mutex_unlock(&g_smcinvoke_lock);
  2139. return ret;
  2140. }
  2141. static int __maybe_unused smcinvoke_resume(struct platform_device *pdev)
  2142. {
  2143. return 0;
  2144. }
  2145. static const struct of_device_id smcinvoke_match[] = {
  2146. {
  2147. .compatible = "qcom,smcinvoke",
  2148. },
  2149. {},
  2150. };
  2151. static struct platform_driver smcinvoke_plat_driver = {
  2152. .probe = smcinvoke_probe,
  2153. .remove = smcinvoke_remove,
  2154. .suspend = smcinvoke_suspend,
  2155. .resume = smcinvoke_resume,
  2156. .driver = {
  2157. .name = "smcinvoke",
  2158. .of_match_table = smcinvoke_match,
  2159. },
  2160. };
  2161. static int smcinvoke_init(void)
  2162. {
  2163. return platform_driver_register(&smcinvoke_plat_driver);
  2164. }
  2165. static void smcinvoke_exit(void)
  2166. {
  2167. platform_driver_unregister(&smcinvoke_plat_driver);
  2168. }
  2169. module_init(smcinvoke_init);
  2170. module_exit(smcinvoke_exit);
  2171. MODULE_LICENSE("GPL v2");
  2172. MODULE_DESCRIPTION("SMC Invoke driver");
  2173. MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver);