smcinvoke.c 88 KB

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