smcinvoke.c 79 KB

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