smcinvoke.c 91 KB

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