smcinvoke.c 81 KB

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