smcinvoke.c 92 KB

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