smcinvoke.c 75 KB

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