smcinvoke.c 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787
  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. static struct smcinvoke_worker_thread smcinvoke[MAX_THREAD_NUMBER];
  277. static 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. int ret = 0;
  558. bool is_bridge_created = mem_obj->is_smcinvoke_created_shmbridge;
  559. struct dma_buf *dmabuf_to_free = mem_obj->dma_buf;
  560. uint64_t shmbridge_handle = mem_obj->shmbridge_handle;
  561. struct smcinvoke_shmbridge_deregister_pending_list *entry = NULL;
  562. list_del(&mem_obj->list);
  563. kfree(mem_obj);
  564. mem_obj = NULL;
  565. mutex_unlock(&g_smcinvoke_lock);
  566. if (is_bridge_created)
  567. ret = qtee_shmbridge_deregister(shmbridge_handle);
  568. if (ret) {
  569. pr_err("Error:%d delete bridge failed leaking memory 0x%x\n",
  570. ret, dmabuf_to_free);
  571. if (ret == -EBUSY) {
  572. pr_err("EBUSY: we postpone it 0x%x\n",
  573. dmabuf_to_free);
  574. entry = kzalloc(sizeof(*entry), GFP_KERNEL);
  575. if (entry) {
  576. entry->data.shmbridge_handle = shmbridge_handle;
  577. entry->data.dmabuf_to_free = dmabuf_to_free;
  578. mutex_lock(&bridge_postprocess_lock);
  579. list_add_tail(&entry->list, &g_bridge_postprocess);
  580. mutex_unlock(&bridge_postprocess_lock);
  581. pr_debug("SHMBridge list: added a Handle:%#llx\n",
  582. shmbridge_handle);
  583. __wakeup_postprocess_kthread(
  584. &smcinvoke[SHMB_WORKER_THREAD]);
  585. }
  586. }
  587. } else {
  588. dma_buf_put(dmabuf_to_free);
  589. }
  590. mutex_lock(&g_smcinvoke_lock);
  591. }
  592. static void del_mem_regn_obj_locked(struct kref *kref)
  593. {
  594. struct smcinvoke_mem_obj *mem_obj = container_of(kref,
  595. struct smcinvoke_mem_obj, mem_regn_ref_cnt);
  596. /*
  597. * mem_regn obj and mem_map obj are held into mem_obj structure which
  598. * can't be released until both kinds of objs have been released.
  599. * So check whether mem_map iobj has ref 0 and only then release mem_obj
  600. */
  601. if (kref_read(&mem_obj->mem_map_obj_ref_cnt) == 0)
  602. free_mem_obj_locked(mem_obj);
  603. }
  604. static void del_mem_map_obj_locked(struct kref *kref)
  605. {
  606. struct smcinvoke_mem_obj *mem_obj = container_of(kref,
  607. struct smcinvoke_mem_obj, mem_map_obj_ref_cnt);
  608. mem_obj->p_addr_len = 0;
  609. mem_obj->p_addr = 0;
  610. if (mem_obj->sgt)
  611. dma_buf_unmap_attachment(mem_obj->buf_attach,
  612. mem_obj->sgt, DMA_BIDIRECTIONAL);
  613. if (mem_obj->buf_attach)
  614. dma_buf_detach(mem_obj->dma_buf, mem_obj->buf_attach);
  615. /*
  616. * mem_regn obj and mem_map obj are held into mem_obj structure which
  617. * can't be released until both kinds of objs have been released.
  618. * So check if mem_regn obj has ref 0 and only then release mem_obj
  619. */
  620. if (kref_read(&mem_obj->mem_regn_ref_cnt) == 0)
  621. free_mem_obj_locked(mem_obj);
  622. }
  623. static int release_mem_obj_locked(int32_t tzhandle)
  624. {
  625. int is_mem_regn_obj = TZHANDLE_IS_MEM_RGN_OBJ(tzhandle);
  626. struct smcinvoke_mem_obj *mem_obj = find_mem_obj_locked(
  627. TZHANDLE_GET_OBJID(tzhandle), is_mem_regn_obj);
  628. if (!mem_obj) {
  629. pr_err("memory object not found\n");
  630. return OBJECT_ERROR_BADOBJ;
  631. }
  632. if (is_mem_regn_obj)
  633. kref_put(&mem_obj->mem_regn_ref_cnt, del_mem_regn_obj_locked);
  634. else
  635. kref_put(&mem_obj->mem_map_obj_ref_cnt, del_mem_map_obj_locked);
  636. return OBJECT_OK;
  637. }
  638. static void free_pending_cbobj_locked(struct kref *kref)
  639. {
  640. struct smcinvoke_server_info *server = NULL;
  641. struct smcinvoke_cbobj *obj = container_of(kref,
  642. struct smcinvoke_cbobj, ref_cnt);
  643. list_del(&obj->list);
  644. server = obj->server;
  645. kfree(obj);
  646. if (server)
  647. kref_put(&server->ref_cnt, destroy_cb_server);
  648. }
  649. static int get_pending_cbobj_locked(uint16_t srvr_id, int16_t obj_id)
  650. {
  651. int ret = 0;
  652. bool release_server = true;
  653. struct list_head *head = NULL;
  654. struct smcinvoke_cbobj *cbobj = NULL;
  655. struct smcinvoke_cbobj *obj = NULL;
  656. struct smcinvoke_server_info *server = get_cb_server_locked(srvr_id);
  657. if (!server) {
  658. pr_err("%s, server id : %u not found\n", __func__, srvr_id);
  659. return OBJECT_ERROR_BADOBJ;
  660. }
  661. head = &server->pending_cbobjs;
  662. list_for_each_entry(cbobj, head, list)
  663. if (cbobj->cbobj_id == obj_id) {
  664. kref_get(&cbobj->ref_cnt);
  665. goto out;
  666. }
  667. obj = kzalloc(sizeof(*obj), GFP_KERNEL);
  668. if (!obj) {
  669. ret = OBJECT_ERROR_KMEM;
  670. goto out;
  671. }
  672. obj->cbobj_id = obj_id;
  673. kref_init(&obj->ref_cnt);
  674. obj->server = server;
  675. /*
  676. * we are holding server ref in cbobj; we will
  677. * release server ref when cbobj is destroyed
  678. */
  679. release_server = false;
  680. list_add_tail(&obj->list, head);
  681. out:
  682. if (release_server)
  683. kref_put(&server->ref_cnt, destroy_cb_server);
  684. return ret;
  685. }
  686. static int put_pending_cbobj_locked(uint16_t srvr_id, int16_t obj_id)
  687. {
  688. int ret = -EINVAL;
  689. struct smcinvoke_server_info *srvr_info =
  690. get_cb_server_locked(srvr_id);
  691. struct list_head *head = NULL;
  692. struct smcinvoke_cbobj *cbobj = NULL;
  693. if (!srvr_info) {
  694. pr_err("%s, server id : %u not found\n", __func__, srvr_id);
  695. return ret;
  696. }
  697. trace_put_pending_cbobj_locked(srvr_id, obj_id);
  698. head = &srvr_info->pending_cbobjs;
  699. list_for_each_entry(cbobj, head, list)
  700. if (cbobj->cbobj_id == obj_id) {
  701. kref_put(&cbobj->ref_cnt, free_pending_cbobj_locked);
  702. ret = 0;
  703. break;
  704. }
  705. kref_put(&srvr_info->ref_cnt, destroy_cb_server);
  706. return ret;
  707. }
  708. static int release_tzhandle_locked(int32_t tzhandle)
  709. {
  710. if (TZHANDLE_IS_MEM_OBJ(tzhandle))
  711. return release_mem_obj_locked(tzhandle);
  712. else if (TZHANDLE_IS_CB_OBJ(tzhandle))
  713. return put_pending_cbobj_locked(TZHANDLE_GET_SERVER(tzhandle),
  714. TZHANDLE_GET_OBJID(tzhandle));
  715. return OBJECT_ERROR;
  716. }
  717. static void release_tzhandles(const int32_t *tzhandles, size_t len)
  718. {
  719. size_t i;
  720. mutex_lock(&g_smcinvoke_lock);
  721. for (i = 0; i < len; i++)
  722. release_tzhandle_locked(tzhandles[i]);
  723. mutex_unlock(&g_smcinvoke_lock);
  724. }
  725. static void delete_cb_txn_locked(struct kref *kref)
  726. {
  727. struct smcinvoke_cb_txn *cb_txn = container_of(kref,
  728. struct smcinvoke_cb_txn, ref_cnt);
  729. if (OBJECT_OP_METHODID(cb_txn->cb_req->hdr.op) == OBJECT_OP_RELEASE)
  730. release_tzhandle_locked(cb_txn->cb_req->hdr.tzhandle);
  731. kfree(cb_txn->cb_req);
  732. hash_del(&cb_txn->hash);
  733. kfree(cb_txn);
  734. }
  735. static struct smcinvoke_cb_txn *find_cbtxn_locked(
  736. struct smcinvoke_server_info *server,
  737. uint32_t txn_id, int32_t state)
  738. {
  739. int i = 0;
  740. struct smcinvoke_cb_txn *cb_txn = NULL;
  741. /*
  742. * Since HASH_BITS() does not work on pointers, we can't select hash
  743. * table using state and loop over it.
  744. */
  745. if (state == SMCINVOKE_REQ_PLACED) {
  746. /* pick up 1st req */
  747. hash_for_each(server->reqs_table, i, cb_txn, hash) {
  748. kref_get(&cb_txn->ref_cnt);
  749. hash_del(&cb_txn->hash);
  750. return cb_txn;
  751. }
  752. } else if (state == SMCINVOKE_REQ_PROCESSING) {
  753. hash_for_each_possible(
  754. server->responses_table, cb_txn, hash, txn_id) {
  755. if (cb_txn->txn_id == txn_id) {
  756. kref_get(&cb_txn->ref_cnt);
  757. hash_del(&cb_txn->hash);
  758. return cb_txn;
  759. }
  760. }
  761. }
  762. return NULL;
  763. }
  764. /*
  765. * size_add saturates at SIZE_MAX. If integer overflow is detected,
  766. * this function would return SIZE_MAX otherwise normal a+b is returned.
  767. */
  768. static inline size_t size_add(size_t a, size_t b)
  769. {
  770. return (b > (SIZE_MAX - a)) ? SIZE_MAX : a + b;
  771. }
  772. /*
  773. * pad_size is used along with size_align to define a buffer overflow
  774. * protected version of ALIGN
  775. */
  776. static inline size_t pad_size(size_t a, size_t b)
  777. {
  778. return (~a + 1) % b;
  779. }
  780. /*
  781. * size_align saturates at SIZE_MAX. If integer overflow is detected, this
  782. * function would return SIZE_MAX otherwise next aligned size is returned.
  783. */
  784. static inline size_t size_align(size_t a, size_t b)
  785. {
  786. return size_add(a, pad_size(a, b));
  787. }
  788. static uint16_t get_server_id(int cb_server_fd)
  789. {
  790. uint16_t server_id = 0;
  791. struct smcinvoke_file_data *svr_cxt = NULL;
  792. struct file *tmp_filp = fget(cb_server_fd);
  793. if (!tmp_filp || !FILE_IS_REMOTE_OBJ(tmp_filp))
  794. return server_id;
  795. svr_cxt = tmp_filp->private_data;
  796. if (svr_cxt && svr_cxt->context_type == SMCINVOKE_OBJ_TYPE_SERVER)
  797. server_id = svr_cxt->server_id;
  798. fput(tmp_filp);
  799. return server_id;
  800. }
  801. static bool is_dma_fd(int32_t uhandle, struct dma_buf **dma_buf)
  802. {
  803. *dma_buf = dma_buf_get(uhandle);
  804. return IS_ERR_OR_NULL(*dma_buf) ? false : true;
  805. }
  806. static bool is_remote_obj(int32_t uhandle, struct smcinvoke_file_data **tzobj,
  807. struct file **filp)
  808. {
  809. bool ret = false;
  810. struct file *tmp_filp = fget(uhandle);
  811. if (!tmp_filp)
  812. return ret;
  813. if (FILE_IS_REMOTE_OBJ(tmp_filp)) {
  814. *tzobj = tmp_filp->private_data;
  815. if ((*tzobj)->context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  816. *filp = tmp_filp;
  817. tmp_filp = NULL;
  818. ret = true;
  819. }
  820. }
  821. if (tmp_filp)
  822. fput(tmp_filp);
  823. return ret;
  824. }
  825. static int create_mem_obj(struct dma_buf *dma_buf, int32_t *mem_obj)
  826. {
  827. struct smcinvoke_mem_obj *t_mem_obj =
  828. kzalloc(sizeof(*t_mem_obj), GFP_KERNEL);
  829. if (!t_mem_obj) {
  830. dma_buf_put(dma_buf);
  831. return -ENOMEM;
  832. }
  833. kref_init(&t_mem_obj->mem_regn_ref_cnt);
  834. t_mem_obj->dma_buf = dma_buf;
  835. mutex_lock(&g_smcinvoke_lock);
  836. t_mem_obj->mem_region_id = next_mem_region_obj_id_locked();
  837. list_add_tail(&t_mem_obj->list, &g_mem_objs);
  838. mutex_unlock(&g_smcinvoke_lock);
  839. *mem_obj = TZHANDLE_MAKE_LOCAL(MEM_RGN_SRVR_ID,
  840. t_mem_obj->mem_region_id);
  841. return 0;
  842. }
  843. /*
  844. * This function retrieves file pointer corresponding to FD provided. It stores
  845. * retrieved file pointer until IOCTL call is concluded. Once call is completed,
  846. * all stored file pointers are released. file pointers are stored to prevent
  847. * other threads from releasing that FD while IOCTL is in progress.
  848. */
  849. static int get_tzhandle_from_uhandle(int32_t uhandle, int32_t server_fd,
  850. struct file **filp, uint32_t *tzhandle)
  851. {
  852. int ret = -EBADF;
  853. uint16_t server_id = 0;
  854. if (UHANDLE_IS_NULL(uhandle)) {
  855. *tzhandle = SMCINVOKE_TZ_OBJ_NULL;
  856. ret = 0;
  857. } else if (UHANDLE_IS_CB_OBJ(uhandle)) {
  858. server_id = get_server_id(server_fd);
  859. if (server_id < CBOBJ_SERVER_ID_START)
  860. goto out;
  861. mutex_lock(&g_smcinvoke_lock);
  862. ret = get_pending_cbobj_locked(server_id,
  863. UHANDLE_GET_CB_OBJ(uhandle));
  864. mutex_unlock(&g_smcinvoke_lock);
  865. if (ret)
  866. goto out;
  867. *tzhandle = TZHANDLE_MAKE_LOCAL(server_id,
  868. UHANDLE_GET_CB_OBJ(uhandle));
  869. ret = 0;
  870. } else if (UHANDLE_IS_FD(uhandle)) {
  871. struct dma_buf *dma_buf = NULL;
  872. struct smcinvoke_file_data *tzobj = NULL;
  873. if (is_dma_fd(UHANDLE_GET_FD(uhandle), &dma_buf)) {
  874. ret = create_mem_obj(dma_buf, tzhandle);
  875. } else if (is_remote_obj(UHANDLE_GET_FD(uhandle),
  876. &tzobj, filp)) {
  877. *tzhandle = tzobj->tzhandle;
  878. ret = 0;
  879. }
  880. }
  881. out:
  882. return ret;
  883. }
  884. static int get_fd_for_obj(uint32_t obj_type, uint32_t obj, int32_t *fd)
  885. {
  886. int unused_fd = -1, ret = -EINVAL;
  887. struct file *f = NULL;
  888. struct smcinvoke_file_data *cxt = NULL;
  889. cxt = kzalloc(sizeof(*cxt), GFP_KERNEL);
  890. if (!cxt) {
  891. ret = -ENOMEM;
  892. goto out;
  893. }
  894. if (obj_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ ||
  895. obj_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  896. cxt->context_type = obj_type;
  897. cxt->tzhandle = obj;
  898. } else if (obj_type == SMCINVOKE_OBJ_TYPE_SERVER) {
  899. cxt->context_type = SMCINVOKE_OBJ_TYPE_SERVER;
  900. cxt->server_id = obj;
  901. } else {
  902. goto out;
  903. }
  904. unused_fd = get_unused_fd_flags(O_RDWR);
  905. if (unused_fd < 0)
  906. goto out;
  907. if (fd == NULL)
  908. goto out;
  909. f = anon_inode_getfile(SMCINVOKE_DEV, &g_smcinvoke_fops, cxt, O_RDWR);
  910. if (IS_ERR(f))
  911. goto out;
  912. *fd = unused_fd;
  913. fd_install(*fd, f);
  914. return 0;
  915. out:
  916. if (unused_fd >= 0)
  917. put_unused_fd(unused_fd);
  918. kfree(cxt);
  919. return ret;
  920. }
  921. static int get_uhandle_from_tzhandle(int32_t tzhandle, int32_t srvr_id,
  922. int32_t *uhandle, bool lock, uint32_t context_type)
  923. {
  924. int ret = -1;
  925. if (TZHANDLE_IS_NULL(tzhandle)) {
  926. *uhandle = UHANDLE_NULL;
  927. ret = 0;
  928. } else if (TZHANDLE_IS_CB_OBJ(tzhandle)) {
  929. if (srvr_id != TZHANDLE_GET_SERVER(tzhandle))
  930. goto out;
  931. *uhandle = UHANDLE_MAKE_CB_OBJ(TZHANDLE_GET_OBJID(tzhandle));
  932. MUTEX_LOCK(lock)
  933. ret = get_pending_cbobj_locked(TZHANDLE_GET_SERVER(tzhandle),
  934. TZHANDLE_GET_OBJID(tzhandle));
  935. MUTEX_UNLOCK(lock)
  936. } else if (TZHANDLE_IS_MEM_RGN_OBJ(tzhandle)) {
  937. struct smcinvoke_mem_obj *mem_obj = NULL;
  938. MUTEX_LOCK(lock)
  939. mem_obj = find_mem_obj_locked(TZHANDLE_GET_OBJID(tzhandle),
  940. SMCINVOKE_MEM_RGN_OBJ);
  941. if (mem_obj != NULL) {
  942. int fd;
  943. fd = dma_buf_fd(mem_obj->dma_buf, O_CLOEXEC);
  944. if (fd < 0)
  945. goto exit_lock;
  946. *uhandle = fd;
  947. ret = 0;
  948. }
  949. exit_lock:
  950. MUTEX_UNLOCK(lock)
  951. } else if (TZHANDLE_IS_REMOTE(tzhandle)) {
  952. /* if execution comes here => tzhandle is an unsigned int */
  953. ret = get_fd_for_obj(context_type,
  954. (uint32_t)tzhandle, uhandle);
  955. }
  956. out:
  957. return ret;
  958. }
  959. static int smcinvoke_create_bridge(struct smcinvoke_mem_obj *mem_obj)
  960. {
  961. int ret = 0;
  962. int tz_perm = PERM_READ|PERM_WRITE;
  963. uint32_t *vmid_list;
  964. uint32_t *perms_list;
  965. uint32_t nelems = 0;
  966. struct dma_buf *dmabuf = mem_obj->dma_buf;
  967. phys_addr_t phys = mem_obj->p_addr;
  968. size_t size = mem_obj->p_addr_len;
  969. if (!qtee_shmbridge_is_enabled())
  970. return 0;
  971. ret = mem_buf_dma_buf_copy_vmperm(dmabuf, (int **)&vmid_list,
  972. (int **)&perms_list, (int *)&nelems);
  973. if (ret) {
  974. pr_err("mem_buf_dma_buf_copy_vmperm failure, err=%d\n", ret);
  975. return ret;
  976. }
  977. if (mem_buf_dma_buf_exclusive_owner(dmabuf))
  978. perms_list[0] = PERM_READ | PERM_WRITE;
  979. ret = qtee_shmbridge_register(phys, size, vmid_list, perms_list, nelems,
  980. tz_perm, &mem_obj->shmbridge_handle);
  981. if (ret == 0) {
  982. /* In case of ret=0/success handle has to be freed in memobj release */
  983. mem_obj->is_smcinvoke_created_shmbridge = true;
  984. } else if (ret == -EEXIST) {
  985. ret = 0;
  986. goto exit;
  987. } else {
  988. pr_err("creation of shm bridge for mem_region_id %d failed ret %d\n",
  989. mem_obj->mem_region_id, ret);
  990. goto exit;
  991. }
  992. trace_smcinvoke_create_bridge(mem_obj->shmbridge_handle, mem_obj->mem_region_id);
  993. exit:
  994. kfree(perms_list);
  995. kfree(vmid_list);
  996. return ret;
  997. }
  998. static int32_t smcinvoke_release_mem_obj_locked(void *buf, size_t buf_len)
  999. {
  1000. struct smcinvoke_tzcb_req *msg = buf;
  1001. if (msg->hdr.counts != OBJECT_COUNTS_PACK(0, 0, 0, 0)) {
  1002. pr_err("Invalid object count in %s\n", __func__);
  1003. return OBJECT_ERROR_INVALID;
  1004. }
  1005. trace_release_mem_obj_locked(msg->hdr.tzhandle, buf_len);
  1006. return release_tzhandle_locked(msg->hdr.tzhandle);
  1007. }
  1008. static int32_t smcinvoke_map_mem_region(void *buf, size_t buf_len)
  1009. {
  1010. int ret = OBJECT_OK;
  1011. struct smcinvoke_tzcb_req *msg = buf;
  1012. struct {
  1013. uint64_t p_addr;
  1014. uint64_t len;
  1015. uint32_t perms;
  1016. } *ob = NULL;
  1017. int32_t *oo = NULL;
  1018. struct smcinvoke_mem_obj *mem_obj = NULL;
  1019. struct dma_buf_attachment *buf_attach = NULL;
  1020. struct sg_table *sgt = NULL;
  1021. if (msg->hdr.counts != OBJECT_COUNTS_PACK(0, 1, 1, 1) ||
  1022. (buf_len - msg->args[0].b.offset < msg->args[0].b.size)) {
  1023. pr_err("Invalid counts received for mapping mem obj\n");
  1024. return OBJECT_ERROR_INVALID;
  1025. }
  1026. /* args[0] = BO, args[1] = OI, args[2] = OO */
  1027. ob = buf + msg->args[0].b.offset;
  1028. oo = &msg->args[2].handle;
  1029. mutex_lock(&g_smcinvoke_lock);
  1030. mem_obj = find_mem_obj_locked(TZHANDLE_GET_OBJID(msg->args[1].handle),
  1031. SMCINVOKE_MEM_RGN_OBJ);
  1032. if (!mem_obj) {
  1033. mutex_unlock(&g_smcinvoke_lock);
  1034. pr_err("Memory object not found\n");
  1035. return OBJECT_ERROR_BADOBJ;
  1036. }
  1037. if (!mem_obj->p_addr) {
  1038. kref_init(&mem_obj->mem_map_obj_ref_cnt);
  1039. buf_attach = dma_buf_attach(mem_obj->dma_buf,
  1040. &smcinvoke_pdev->dev);
  1041. if (IS_ERR(buf_attach)) {
  1042. ret = OBJECT_ERROR_KMEM;
  1043. pr_err("dma buf attach failed, ret: %d\n", ret);
  1044. goto out;
  1045. }
  1046. mem_obj->buf_attach = buf_attach;
  1047. sgt = dma_buf_map_attachment(buf_attach, DMA_BIDIRECTIONAL);
  1048. if (IS_ERR(sgt)) {
  1049. pr_err("mapping dma buffers failed, ret: %d\n",
  1050. PTR_ERR(sgt));
  1051. ret = OBJECT_ERROR_KMEM;
  1052. goto out;
  1053. }
  1054. mem_obj->sgt = sgt;
  1055. /* contiguous only => nents=1 */
  1056. if (sgt->nents != 1) {
  1057. ret = OBJECT_ERROR_INVALID;
  1058. pr_err("sg enries are not contigous, ret: %d\n", ret);
  1059. goto out;
  1060. }
  1061. mem_obj->p_addr = sg_dma_address(sgt->sgl);
  1062. mem_obj->p_addr_len = sgt->sgl->length;
  1063. if (!mem_obj->p_addr) {
  1064. ret = OBJECT_ERROR_INVALID;
  1065. pr_err("invalid physical address, ret: %d\n", ret);
  1066. goto out;
  1067. }
  1068. /* Increase reference count as we are feeding the memobj to
  1069. * smcinvoke and unlock the mutex. No need to hold the mutex in
  1070. * case of shmbridge creation.
  1071. */
  1072. kref_get(&mem_obj->mem_map_obj_ref_cnt);
  1073. mutex_unlock(&g_smcinvoke_lock);
  1074. ret = smcinvoke_create_bridge(mem_obj);
  1075. /* Take lock again and decrease the reference count which we
  1076. * increased for shmbridge but before proceeding further we
  1077. * have to check again if the memobj is still valid or not
  1078. * after decreasing the reference.
  1079. */
  1080. mutex_lock(&g_smcinvoke_lock);
  1081. kref_put(&mem_obj->mem_map_obj_ref_cnt, del_mem_map_obj_locked);
  1082. if (ret) {
  1083. ret = OBJECT_ERROR_INVALID;
  1084. goto out;
  1085. }
  1086. if (!find_mem_obj_locked(TZHANDLE_GET_OBJID(msg->args[1].handle),
  1087. SMCINVOKE_MEM_RGN_OBJ)) {
  1088. mutex_unlock(&g_smcinvoke_lock);
  1089. pr_err("Memory object not found\n");
  1090. return OBJECT_ERROR_BADOBJ;
  1091. }
  1092. mem_obj->mem_map_obj_id = next_mem_map_obj_id_locked();
  1093. } else {
  1094. kref_get(&mem_obj->mem_map_obj_ref_cnt);
  1095. }
  1096. ob->p_addr = mem_obj->p_addr;
  1097. ob->len = mem_obj->p_addr_len;
  1098. ob->perms = SMCINVOKE_MEM_PERM_RW;
  1099. *oo = TZHANDLE_MAKE_LOCAL(MEM_MAP_SRVR_ID, mem_obj->mem_map_obj_id);
  1100. out:
  1101. if (ret != OBJECT_OK)
  1102. kref_put(&mem_obj->mem_map_obj_ref_cnt, del_mem_map_obj_locked);
  1103. mutex_unlock(&g_smcinvoke_lock);
  1104. return ret;
  1105. }
  1106. static int32_t smcinvoke_sleep(void *buf, size_t buf_len)
  1107. {
  1108. struct smcinvoke_tzcb_req *msg = buf;
  1109. uint32_t sleepTimeMs_val = 0;
  1110. if (msg->hdr.counts != OBJECT_COUNTS_PACK(1, 0, 0, 0) ||
  1111. (buf_len - msg->args[0].b.offset < msg->args[0].b.size)) {
  1112. pr_err("Invalid counts received for sleeping in hlos\n");
  1113. return OBJECT_ERROR_INVALID;
  1114. }
  1115. /* Time in miliseconds is expected from tz */
  1116. sleepTimeMs_val = *((uint32_t *)(buf + msg->args[0].b.offset));
  1117. msleep(sleepTimeMs_val);
  1118. return OBJECT_OK;
  1119. }
  1120. static void process_kernel_obj(void *buf, size_t buf_len)
  1121. {
  1122. struct smcinvoke_tzcb_req *cb_req = buf;
  1123. switch (cb_req->hdr.op) {
  1124. case OBJECT_OP_MAP_REGION:
  1125. cb_req->result = smcinvoke_map_mem_region(buf, buf_len);
  1126. break;
  1127. case OBJECT_OP_YIELD:
  1128. cb_req->result = OBJECT_OK;
  1129. break;
  1130. case OBJECT_OP_SLEEP:
  1131. cb_req->result = smcinvoke_sleep(buf, buf_len);
  1132. break;
  1133. default:
  1134. pr_err(" invalid operation for tz kernel object\n");
  1135. cb_req->result = OBJECT_ERROR_INVALID;
  1136. break;
  1137. }
  1138. }
  1139. static void process_mem_obj(void *buf, size_t buf_len)
  1140. {
  1141. struct smcinvoke_tzcb_req *cb_req = buf;
  1142. mutex_lock(&g_smcinvoke_lock);
  1143. cb_req->result = (cb_req->hdr.op == OBJECT_OP_RELEASE) ?
  1144. smcinvoke_release_mem_obj_locked(buf, buf_len) :
  1145. OBJECT_ERROR_INVALID;
  1146. mutex_unlock(&g_smcinvoke_lock);
  1147. }
  1148. static int invoke_cmd_handler(int cmd, phys_addr_t in_paddr, size_t in_buf_len,
  1149. uint8_t *out_buf, phys_addr_t out_paddr,
  1150. size_t out_buf_len, int32_t *result, u64 *response_type,
  1151. unsigned int *data, struct qtee_shm *in_shm,
  1152. struct qtee_shm *out_shm)
  1153. {
  1154. int ret = 0;
  1155. switch (cmd) {
  1156. case SMCINVOKE_INVOKE_CMD_LEGACY:
  1157. qtee_shmbridge_flush_shm_buf(in_shm);
  1158. qtee_shmbridge_flush_shm_buf(out_shm);
  1159. ret = qcom_scm_invoke_smc_legacy(in_paddr, in_buf_len, out_paddr, out_buf_len,
  1160. result, response_type, data);
  1161. qtee_shmbridge_inv_shm_buf(in_shm);
  1162. qtee_shmbridge_inv_shm_buf(out_shm);
  1163. break;
  1164. case SMCINVOKE_INVOKE_CMD:
  1165. ret = qcom_scm_invoke_smc(in_paddr, in_buf_len, out_paddr, out_buf_len,
  1166. result, response_type, data);
  1167. break;
  1168. case SMCINVOKE_CB_RSP_CMD:
  1169. ret = qcom_scm_invoke_callback_response(virt_to_phys(out_buf), out_buf_len,
  1170. result, response_type, data);
  1171. break;
  1172. default:
  1173. ret = -EINVAL;
  1174. break;
  1175. }
  1176. trace_invoke_cmd_handler(cmd, *response_type, *result, ret);
  1177. return ret;
  1178. }
  1179. /*
  1180. * Buf should be aligned to struct smcinvoke_tzcb_req
  1181. */
  1182. static void process_tzcb_req(void *buf, size_t buf_len, struct file **arr_filp)
  1183. {
  1184. /* ret is going to TZ. Provide values from OBJECT_ERROR_<> */
  1185. int ret = OBJECT_ERROR_DEFUNCT;
  1186. int cbobj_retries = 0;
  1187. long timeout_jiff;
  1188. struct smcinvoke_cb_txn *cb_txn = NULL;
  1189. struct smcinvoke_tzcb_req *cb_req = NULL, *tmp_cb_req = NULL;
  1190. struct smcinvoke_server_info *srvr_info = NULL;
  1191. if (buf_len < sizeof(struct smcinvoke_tzcb_req)) {
  1192. pr_err("smaller buffer length : %u\n", buf_len);
  1193. return;
  1194. }
  1195. cb_req = buf;
  1196. /* check whether it is to be served by kernel or userspace */
  1197. if (TZHANDLE_IS_KERNEL_OBJ(cb_req->hdr.tzhandle)) {
  1198. return process_kernel_obj(buf, buf_len);
  1199. } else if (TZHANDLE_IS_MEM_OBJ(cb_req->hdr.tzhandle)) {
  1200. return process_mem_obj(buf, buf_len);
  1201. } else if (!TZHANDLE_IS_CB_OBJ(cb_req->hdr.tzhandle)) {
  1202. pr_err("Request object is not a callback object\n");
  1203. cb_req->result = OBJECT_ERROR_INVALID;
  1204. return;
  1205. }
  1206. /*
  1207. * We need a copy of req that could be sent to server. Otherwise, if
  1208. * someone kills invoke caller, buf would go away and server would be
  1209. * working on already freed buffer, causing a device crash.
  1210. */
  1211. tmp_cb_req = kmemdup(buf, buf_len, GFP_KERNEL);
  1212. if (!tmp_cb_req) {
  1213. /* we need to return error to caller so fill up result */
  1214. cb_req->result = OBJECT_ERROR_KMEM;
  1215. pr_err("failed to create copy of request, set result: %d\n",
  1216. cb_req->result);
  1217. return;
  1218. }
  1219. cb_txn = kzalloc(sizeof(*cb_txn), GFP_KERNEL);
  1220. if (!cb_txn) {
  1221. cb_req->result = OBJECT_ERROR_KMEM;
  1222. pr_err("failed to allocate memory for request, result: %d\n",
  1223. cb_req->result);
  1224. kfree(tmp_cb_req);
  1225. return;
  1226. }
  1227. /* no need for memcpy as we did kmemdup() above */
  1228. cb_req = tmp_cb_req;
  1229. trace_process_tzcb_req_handle(cb_req->hdr.tzhandle, cb_req->hdr.op, cb_req->hdr.counts);
  1230. cb_txn->state = SMCINVOKE_REQ_PLACED;
  1231. cb_txn->cb_req = cb_req;
  1232. cb_txn->cb_req_bytes = buf_len;
  1233. cb_txn->filp_to_release = arr_filp;
  1234. kref_init(&cb_txn->ref_cnt);
  1235. mutex_lock(&g_smcinvoke_lock);
  1236. ++cb_reqs_inflight;
  1237. srvr_info = get_cb_server_locked(
  1238. TZHANDLE_GET_SERVER(cb_req->hdr.tzhandle));
  1239. if (!srvr_info || srvr_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT) {
  1240. /* ret equals Object_ERROR_DEFUNCT, at this point go to out */
  1241. if (!srvr_info)
  1242. pr_err("server is invalid\n");
  1243. else {
  1244. pr_err("server is defunct, state= %d tzhandle = %d\n",
  1245. srvr_info->state, cb_req->hdr.tzhandle);
  1246. }
  1247. mutex_unlock(&g_smcinvoke_lock);
  1248. goto out;
  1249. }
  1250. cb_txn->txn_id = ++srvr_info->txn_id;
  1251. hash_add(srvr_info->reqs_table, &cb_txn->hash, cb_txn->txn_id);
  1252. mutex_unlock(&g_smcinvoke_lock);
  1253. trace_process_tzcb_req_wait(cb_req->hdr.tzhandle, cbobj_retries, cb_txn->txn_id,
  1254. current->pid, current->tgid, srvr_info->state, srvr_info->server_id,
  1255. cb_reqs_inflight);
  1256. /*
  1257. * we need not worry that server_info will be deleted because as long
  1258. * as this CBObj is served by this server, srvr_info will be valid.
  1259. */
  1260. wake_up_interruptible_all(&srvr_info->req_wait_q);
  1261. /* timeout before 1s otherwise tzbusy would come */
  1262. timeout_jiff = msecs_to_jiffies(1000);
  1263. while (cbobj_retries < CBOBJ_MAX_RETRIES) {
  1264. ret = wait_event_interruptible_timeout(srvr_info->rsp_wait_q,
  1265. (cb_txn->state == SMCINVOKE_REQ_PROCESSED) ||
  1266. (srvr_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT),
  1267. timeout_jiff);
  1268. if (ret == 0) {
  1269. pr_err("CBobj timed out cb-tzhandle:%d, retry:%d, op:%d counts :%d\n",
  1270. cb_req->hdr.tzhandle, cbobj_retries,
  1271. cb_req->hdr.op, cb_req->hdr.counts);
  1272. pr_err("CBobj %d timedout pid %x,tid %x, srvr state=%d, srvr id:%u\n",
  1273. cb_req->hdr.tzhandle, current->pid,
  1274. current->tgid, srvr_info->state,
  1275. srvr_info->server_id);
  1276. } else {
  1277. break;
  1278. }
  1279. cbobj_retries++;
  1280. }
  1281. out:
  1282. /*
  1283. * we could be here because of either:
  1284. * a. Req is PROCESSED
  1285. * b. Server was killed
  1286. * c. Invoke thread is killed
  1287. * sometime invoke thread and server are part of same process.
  1288. */
  1289. mutex_lock(&g_smcinvoke_lock);
  1290. hash_del(&cb_txn->hash);
  1291. if (ret == 0) {
  1292. pr_err("CBObj timed out! No more retries\n");
  1293. cb_req->result = Object_ERROR_TIMEOUT;
  1294. } else if (ret == -ERESTARTSYS) {
  1295. pr_err("wait event interruped, ret: %d\n", ret);
  1296. cb_req->result = OBJECT_ERROR_ABORT;
  1297. } else {
  1298. if (cb_txn->state == SMCINVOKE_REQ_PROCESSED) {
  1299. /*
  1300. * it is possible that server was killed immediately
  1301. * after CB Req was processed but who cares now!
  1302. */
  1303. } else if (!srvr_info ||
  1304. srvr_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT) {
  1305. cb_req->result = OBJECT_ERROR_DEFUNCT;
  1306. pr_err("server invalid, res: %d\n", cb_req->result);
  1307. } else {
  1308. pr_err("%s: unexpected event happened, ret:%d\n", __func__, ret);
  1309. cb_req->result = OBJECT_ERROR_ABORT;
  1310. }
  1311. }
  1312. --cb_reqs_inflight;
  1313. trace_process_tzcb_req_result(cb_req->result, cb_req->hdr.tzhandle, cb_req->hdr.op,
  1314. cb_req->hdr.counts, cb_reqs_inflight);
  1315. memcpy(buf, cb_req, buf_len);
  1316. kref_put(&cb_txn->ref_cnt, delete_cb_txn_locked);
  1317. if (srvr_info)
  1318. kref_put(&srvr_info->ref_cnt, destroy_cb_server);
  1319. mutex_unlock(&g_smcinvoke_lock);
  1320. }
  1321. static int marshal_out_invoke_req(const uint8_t *buf, uint32_t buf_size,
  1322. struct smcinvoke_cmd_req *req,
  1323. union smcinvoke_arg *args_buf,
  1324. uint32_t context_type)
  1325. {
  1326. int ret = -EINVAL, i = 0;
  1327. int32_t temp_fd = UHANDLE_NULL;
  1328. union smcinvoke_tz_args *tz_args = NULL;
  1329. size_t offset = sizeof(struct smcinvoke_msg_hdr) +
  1330. OBJECT_COUNTS_TOTAL(req->counts) *
  1331. sizeof(union smcinvoke_tz_args);
  1332. if (offset > buf_size)
  1333. goto out;
  1334. tz_args = (union smcinvoke_tz_args *)
  1335. (buf + sizeof(struct smcinvoke_msg_hdr));
  1336. tz_args += OBJECT_COUNTS_NUM_BI(req->counts);
  1337. if (args_buf == NULL)
  1338. return 0;
  1339. FOR_ARGS(i, req->counts, BO) {
  1340. args_buf[i].b.size = tz_args->b.size;
  1341. if ((buf_size - tz_args->b.offset < tz_args->b.size) ||
  1342. tz_args->b.offset > buf_size) {
  1343. pr_err("%s: buffer overflow detected\n", __func__);
  1344. goto out;
  1345. }
  1346. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  1347. if (copy_to_user((void __user *)
  1348. (uintptr_t)(args_buf[i].b.addr),
  1349. (uint8_t *)(buf) + tz_args->b.offset,
  1350. tz_args->b.size)) {
  1351. pr_err("Error %d copying ctxt to user\n", ret);
  1352. goto out;
  1353. }
  1354. } else {
  1355. memcpy((uint8_t *)(args_buf[i].b.addr),
  1356. (uint8_t *)(buf) + tz_args->b.offset,
  1357. tz_args->b.size);
  1358. }
  1359. tz_args++;
  1360. }
  1361. tz_args += OBJECT_COUNTS_NUM_OI(req->counts);
  1362. FOR_ARGS(i, req->counts, OO) {
  1363. /*
  1364. * create a new FD and assign to output object's context.
  1365. * We are passing cb_server_fd from output param in case OO
  1366. * is a CBObj. For CBObj, we have to ensure that it is sent
  1367. * to server who serves it and that info comes from USpace.
  1368. */
  1369. temp_fd = UHANDLE_NULL;
  1370. ret = get_uhandle_from_tzhandle(tz_args->handle,
  1371. TZHANDLE_GET_SERVER(tz_args->handle),
  1372. &temp_fd, NO_LOCK, context_type);
  1373. args_buf[i].o.fd = temp_fd;
  1374. if (ret)
  1375. goto out;
  1376. trace_marshal_out_invoke_req(i, tz_args->handle,
  1377. TZHANDLE_GET_SERVER(tz_args->handle), temp_fd);
  1378. tz_args++;
  1379. }
  1380. ret = 0;
  1381. out:
  1382. return ret;
  1383. }
  1384. static bool is_inbound_req(int val)
  1385. {
  1386. return (val == SMCINVOKE_RESULT_INBOUND_REQ_NEEDED ||
  1387. val == QSEOS_RESULT_INCOMPLETE ||
  1388. val == QSEOS_RESULT_BLOCKED_ON_LISTENER);
  1389. }
  1390. static int prepare_send_scm_msg(const uint8_t *in_buf, phys_addr_t in_paddr,
  1391. size_t in_buf_len,
  1392. uint8_t *out_buf, phys_addr_t out_paddr,
  1393. size_t out_buf_len,
  1394. struct smcinvoke_cmd_req *req,
  1395. union smcinvoke_arg *args_buf,
  1396. bool *tz_acked, uint32_t context_type,
  1397. struct qtee_shm *in_shm, struct qtee_shm *out_shm)
  1398. {
  1399. int ret = 0, cmd, retry_count = 0;
  1400. u64 response_type;
  1401. unsigned int data;
  1402. struct file *arr_filp[OBJECT_COUNTS_MAX_OO] = {NULL};
  1403. *tz_acked = false;
  1404. /* buf size should be page aligned */
  1405. if ((in_buf_len % PAGE_SIZE) != 0 || (out_buf_len % PAGE_SIZE) != 0)
  1406. return -EINVAL;
  1407. cmd = invoke_cmd;
  1408. /*
  1409. * purpose of lock here is to ensure that any CB obj that may be going
  1410. * to user as OO is not released by piggyback message on another invoke
  1411. * request. We should not move this lock to process_invoke_req() because
  1412. * that will either cause deadlock or prevent any other invoke request
  1413. * to come in. We release this lock when either
  1414. * a) TZ requires HLOS action to complete ongoing invoke operation
  1415. * b) Final response to invoke has been marshalled out
  1416. */
  1417. while (1) {
  1418. mutex_lock(&g_smcinvoke_lock);
  1419. do {
  1420. ret = invoke_cmd_handler(cmd, in_paddr, in_buf_len, out_buf,
  1421. out_paddr, out_buf_len, &req->result,
  1422. &response_type, &data, in_shm, out_shm);
  1423. if (ret == -EBUSY) {
  1424. pr_err("Secure side is busy,will retry after 30 ms\n");
  1425. mutex_unlock(&g_smcinvoke_lock);
  1426. msleep(SMCINVOKE_SCM_EBUSY_WAIT_MS);
  1427. mutex_lock(&g_smcinvoke_lock);
  1428. }
  1429. } while ((ret == -EBUSY) &&
  1430. (retry_count++ < SMCINVOKE_SCM_EBUSY_MAX_RETRY));
  1431. if (!ret && !is_inbound_req(response_type)) {
  1432. /* dont marshal if Obj returns an error */
  1433. if (!req->result) {
  1434. if (args_buf != NULL)
  1435. ret = marshal_out_invoke_req(in_buf,
  1436. in_buf_len, req, args_buf,
  1437. context_type);
  1438. }
  1439. *tz_acked = true;
  1440. }
  1441. mutex_unlock(&g_smcinvoke_lock);
  1442. if (cmd == SMCINVOKE_CB_RSP_CMD)
  1443. release_filp(arr_filp, OBJECT_COUNTS_MAX_OO);
  1444. if (ret || !is_inbound_req(response_type))
  1445. break;
  1446. /* process listener request */
  1447. if (response_type == QSEOS_RESULT_INCOMPLETE ||
  1448. response_type == QSEOS_RESULT_BLOCKED_ON_LISTENER) {
  1449. ret = qseecom_process_listener_from_smcinvoke(
  1450. &req->result, &response_type, &data);
  1451. trace_prepare_send_scm_msg(response_type, req->result);
  1452. if (!req->result &&
  1453. response_type != SMCINVOKE_RESULT_INBOUND_REQ_NEEDED) {
  1454. ret = marshal_out_invoke_req(in_buf,
  1455. in_buf_len, req, args_buf,
  1456. context_type);
  1457. }
  1458. *tz_acked = true;
  1459. }
  1460. /*
  1461. * qseecom does not understand smcinvoke's callback object &&
  1462. * erringly sets ret value as -EINVAL :( We need to handle it.
  1463. */
  1464. if (response_type != SMCINVOKE_RESULT_INBOUND_REQ_NEEDED)
  1465. break;
  1466. if (response_type == SMCINVOKE_RESULT_INBOUND_REQ_NEEDED) {
  1467. trace_status(__func__, "looks like inbnd req reqd");
  1468. process_tzcb_req(out_buf, out_buf_len, arr_filp);
  1469. cmd = SMCINVOKE_CB_RSP_CMD;
  1470. }
  1471. }
  1472. return ret;
  1473. }
  1474. /*
  1475. * SMC expects arguments in following format
  1476. * ---------------------------------------------------------------------------
  1477. * | cxt | op | counts | ptr|size |ptr|size...|ORef|ORef|...| rest of payload |
  1478. * ---------------------------------------------------------------------------
  1479. * cxt: target, op: operation, counts: total arguments
  1480. * offset: offset is from beginning of buffer i.e. cxt
  1481. * size: size is 8 bytes aligned value
  1482. */
  1483. static size_t compute_in_msg_size(const struct smcinvoke_cmd_req *req,
  1484. const union smcinvoke_arg *args_buf)
  1485. {
  1486. uint32_t i = 0;
  1487. size_t total_size = sizeof(struct smcinvoke_msg_hdr) +
  1488. OBJECT_COUNTS_TOTAL(req->counts) *
  1489. sizeof(union smcinvoke_tz_args);
  1490. /* Computed total_size should be 8 bytes aligned from start of buf */
  1491. total_size = ALIGN(total_size, SMCINVOKE_ARGS_ALIGN_SIZE);
  1492. /* each buffer has to be 8 bytes aligned */
  1493. while (i < OBJECT_COUNTS_NUM_buffers(req->counts))
  1494. total_size = size_add(total_size,
  1495. size_align(args_buf[i++].b.size,
  1496. SMCINVOKE_ARGS_ALIGN_SIZE));
  1497. return PAGE_ALIGN(total_size);
  1498. }
  1499. static int marshal_in_invoke_req(const struct smcinvoke_cmd_req *req,
  1500. const union smcinvoke_arg *args_buf, uint32_t tzhandle,
  1501. uint8_t *buf, size_t buf_size, struct file **arr_filp,
  1502. int32_t *tzhandles_to_release, uint32_t context_type)
  1503. {
  1504. int ret = -EINVAL, i = 0, j = 0, k = 0;
  1505. const struct smcinvoke_msg_hdr msg_hdr = {
  1506. tzhandle, req->op, req->counts};
  1507. uint32_t offset = sizeof(struct smcinvoke_msg_hdr) +
  1508. sizeof(union smcinvoke_tz_args) *
  1509. OBJECT_COUNTS_TOTAL(req->counts);
  1510. union smcinvoke_tz_args *tz_args = NULL;
  1511. if (buf_size < offset)
  1512. goto out;
  1513. *(struct smcinvoke_msg_hdr *)buf = msg_hdr;
  1514. tz_args = (union smcinvoke_tz_args *)(buf +
  1515. sizeof(struct smcinvoke_msg_hdr));
  1516. if (args_buf == NULL)
  1517. return 0;
  1518. FOR_ARGS(i, req->counts, BI) {
  1519. offset = size_align(offset, SMCINVOKE_ARGS_ALIGN_SIZE);
  1520. if ((offset > buf_size) ||
  1521. (args_buf[i].b.size > (buf_size - offset)))
  1522. goto out;
  1523. tz_args[i].b.offset = offset;
  1524. tz_args[i].b.size = args_buf[i].b.size;
  1525. if (context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  1526. if (copy_from_user(buf + offset,
  1527. (void __user *)(uintptr_t)(args_buf[i].b.addr),
  1528. args_buf[i].b.size))
  1529. goto out;
  1530. } else {
  1531. memcpy(buf + offset, (void *)(args_buf[i].b.addr),
  1532. args_buf[i].b.size);
  1533. }
  1534. offset += args_buf[i].b.size;
  1535. }
  1536. FOR_ARGS(i, req->counts, BO) {
  1537. offset = size_align(offset, SMCINVOKE_ARGS_ALIGN_SIZE);
  1538. if ((offset > buf_size) ||
  1539. (args_buf[i].b.size > (buf_size - offset)))
  1540. goto out;
  1541. tz_args[i].b.offset = offset;
  1542. tz_args[i].b.size = args_buf[i].b.size;
  1543. offset += args_buf[i].b.size;
  1544. }
  1545. FOR_ARGS(i, req->counts, OI) {
  1546. ret = get_tzhandle_from_uhandle(args_buf[i].o.fd,
  1547. args_buf[i].o.cb_server_fd, &arr_filp[j++],
  1548. &(tz_args[i].handle));
  1549. if (ret)
  1550. goto out;
  1551. trace_marshal_in_invoke_req(i, args_buf[i].o.fd,
  1552. args_buf[i].o.cb_server_fd, tz_args[i].handle);
  1553. tzhandles_to_release[k++] = tz_args[i].handle;
  1554. }
  1555. ret = 0;
  1556. out:
  1557. return ret;
  1558. }
  1559. static int marshal_in_tzcb_req(const struct smcinvoke_cb_txn *cb_txn,
  1560. struct smcinvoke_accept *user_req, int srvr_id)
  1561. {
  1562. int ret = 0, i = 0;
  1563. int32_t temp_fd = UHANDLE_NULL;
  1564. union smcinvoke_arg tmp_arg;
  1565. struct smcinvoke_tzcb_req *tzcb_req = cb_txn->cb_req;
  1566. union smcinvoke_tz_args *tz_args = tzcb_req->args;
  1567. size_t tzcb_req_len = cb_txn->cb_req_bytes;
  1568. size_t tz_buf_offset = TZCB_BUF_OFFSET(tzcb_req);
  1569. size_t user_req_buf_offset = sizeof(union smcinvoke_arg) *
  1570. OBJECT_COUNTS_TOTAL(tzcb_req->hdr.counts);
  1571. if (tz_buf_offset > tzcb_req_len) {
  1572. ret = -EINVAL;
  1573. goto out;
  1574. }
  1575. user_req->txn_id = cb_txn->txn_id;
  1576. if (get_uhandle_from_tzhandle(tzcb_req->hdr.tzhandle, srvr_id,
  1577. &user_req->cbobj_id, TAKE_LOCK,
  1578. SMCINVOKE_OBJ_TYPE_TZ_OBJ)) {
  1579. ret = -EINVAL;
  1580. goto out;
  1581. }
  1582. user_req->op = tzcb_req->hdr.op;
  1583. user_req->counts = tzcb_req->hdr.counts;
  1584. user_req->argsize = sizeof(union smcinvoke_arg);
  1585. trace_marshal_in_tzcb_req_handle(tzcb_req->hdr.tzhandle, srvr_id,
  1586. user_req->cbobj_id, user_req->op, user_req->counts);
  1587. FOR_ARGS(i, tzcb_req->hdr.counts, BI) {
  1588. user_req_buf_offset = size_align(user_req_buf_offset,
  1589. SMCINVOKE_ARGS_ALIGN_SIZE);
  1590. tmp_arg.b.size = tz_args[i].b.size;
  1591. if ((tz_args[i].b.offset > tzcb_req_len) ||
  1592. (tz_args[i].b.size > tzcb_req_len - tz_args[i].b.offset) ||
  1593. (user_req_buf_offset > user_req->buf_len) ||
  1594. (tmp_arg.b.size >
  1595. user_req->buf_len - user_req_buf_offset)) {
  1596. ret = -EINVAL;
  1597. pr_err("%s: buffer overflow detected\n", __func__);
  1598. goto out;
  1599. }
  1600. tmp_arg.b.addr = user_req->buf_addr + user_req_buf_offset;
  1601. if (copy_to_user(u64_to_user_ptr
  1602. (user_req->buf_addr + i * sizeof(tmp_arg)),
  1603. &tmp_arg, sizeof(tmp_arg)) ||
  1604. copy_to_user(u64_to_user_ptr(tmp_arg.b.addr),
  1605. (uint8_t *)(tzcb_req) + tz_args[i].b.offset,
  1606. tz_args[i].b.size)) {
  1607. ret = -EFAULT;
  1608. goto out;
  1609. }
  1610. user_req_buf_offset += tmp_arg.b.size;
  1611. }
  1612. FOR_ARGS(i, tzcb_req->hdr.counts, BO) {
  1613. user_req_buf_offset = size_align(user_req_buf_offset,
  1614. SMCINVOKE_ARGS_ALIGN_SIZE);
  1615. tmp_arg.b.size = tz_args[i].b.size;
  1616. if ((user_req_buf_offset > user_req->buf_len) ||
  1617. (tmp_arg.b.size >
  1618. user_req->buf_len - user_req_buf_offset)) {
  1619. ret = -EINVAL;
  1620. pr_err("%s: buffer overflow detected\n", __func__);
  1621. goto out;
  1622. }
  1623. tmp_arg.b.addr = user_req->buf_addr + user_req_buf_offset;
  1624. if (copy_to_user(u64_to_user_ptr
  1625. (user_req->buf_addr + i * sizeof(tmp_arg)),
  1626. &tmp_arg, sizeof(tmp_arg))) {
  1627. ret = -EFAULT;
  1628. goto out;
  1629. }
  1630. user_req_buf_offset += tmp_arg.b.size;
  1631. }
  1632. FOR_ARGS(i, tzcb_req->hdr.counts, OI) {
  1633. /*
  1634. * create a new FD and assign to output object's
  1635. * context
  1636. */
  1637. temp_fd = UHANDLE_NULL;
  1638. ret = get_uhandle_from_tzhandle(tz_args[i].handle, srvr_id,
  1639. &temp_fd, TAKE_LOCK, SMCINVOKE_OBJ_TYPE_TZ_OBJ);
  1640. tmp_arg.o.fd = temp_fd;
  1641. if (ret) {
  1642. ret = -EINVAL;
  1643. goto out;
  1644. }
  1645. if (copy_to_user(u64_to_user_ptr
  1646. (user_req->buf_addr + i * sizeof(tmp_arg)),
  1647. &tmp_arg, sizeof(tmp_arg))) {
  1648. ret = -EFAULT;
  1649. goto out;
  1650. }
  1651. trace_marshal_in_tzcb_req_fd(i, tz_args[i].handle, srvr_id, temp_fd);
  1652. }
  1653. out:
  1654. return ret;
  1655. }
  1656. static int marshal_out_tzcb_req(const struct smcinvoke_accept *user_req,
  1657. struct smcinvoke_cb_txn *cb_txn,
  1658. struct file **arr_filp)
  1659. {
  1660. int ret = -EINVAL, i = 0;
  1661. int32_t tzhandles_to_release[OBJECT_COUNTS_MAX_OO] = {0};
  1662. struct smcinvoke_tzcb_req *tzcb_req = cb_txn->cb_req;
  1663. union smcinvoke_tz_args *tz_args = tzcb_req->args;
  1664. release_tzhandles(&cb_txn->cb_req->hdr.tzhandle, 1);
  1665. tzcb_req->result = user_req->result;
  1666. FOR_ARGS(i, tzcb_req->hdr.counts, BO) {
  1667. union smcinvoke_arg tmp_arg;
  1668. if (copy_from_user((uint8_t *)&tmp_arg, u64_to_user_ptr(
  1669. user_req->buf_addr + i * sizeof(union smcinvoke_arg)),
  1670. sizeof(union smcinvoke_arg))) {
  1671. ret = -EFAULT;
  1672. goto out;
  1673. }
  1674. if (tmp_arg.b.size > tz_args[i].b.size)
  1675. goto out;
  1676. if (copy_from_user((uint8_t *)(tzcb_req) + tz_args[i].b.offset,
  1677. u64_to_user_ptr(tmp_arg.b.addr),
  1678. tmp_arg.b.size)) {
  1679. ret = -EFAULT;
  1680. goto out;
  1681. }
  1682. }
  1683. FOR_ARGS(i, tzcb_req->hdr.counts, OO) {
  1684. union smcinvoke_arg tmp_arg;
  1685. if (copy_from_user((uint8_t *)&tmp_arg, u64_to_user_ptr(
  1686. user_req->buf_addr + i * sizeof(union smcinvoke_arg)),
  1687. sizeof(union smcinvoke_arg))) {
  1688. ret = -EFAULT;
  1689. goto out;
  1690. }
  1691. ret = get_tzhandle_from_uhandle(tmp_arg.o.fd,
  1692. tmp_arg.o.cb_server_fd, &arr_filp[i],
  1693. &(tz_args[i].handle));
  1694. if (ret)
  1695. goto out;
  1696. tzhandles_to_release[i] = tz_args[i].handle;
  1697. trace_marshal_out_tzcb_req(i, tmp_arg.o.fd,
  1698. tmp_arg.o.cb_server_fd, tz_args[i].handle);
  1699. }
  1700. FOR_ARGS(i, tzcb_req->hdr.counts, OI) {
  1701. if (TZHANDLE_IS_CB_OBJ(tz_args[i].handle))
  1702. release_tzhandles(&tz_args[i].handle, 1);
  1703. }
  1704. ret = 0;
  1705. out:
  1706. if (ret)
  1707. release_tzhandles(tzhandles_to_release, OBJECT_COUNTS_MAX_OO);
  1708. return ret;
  1709. }
  1710. static void process_piggyback_data(void *buf, size_t buf_size)
  1711. {
  1712. int i;
  1713. struct smcinvoke_tzcb_req req = {0};
  1714. struct smcinvoke_piggyback_msg *msg = buf;
  1715. int32_t *objs = msg->objs;
  1716. for (i = 0; i < msg->counts; i++) {
  1717. req.hdr.op = msg->op;
  1718. req.hdr.counts = 0; /* release op does not require any args */
  1719. req.hdr.tzhandle = objs[i];
  1720. process_tzcb_req(&req, sizeof(struct smcinvoke_tzcb_req), NULL);
  1721. /* cbobjs_in_flight will be adjusted during CB processing */
  1722. }
  1723. }
  1724. static long process_ack_local_obj(struct file *filp, unsigned int cmd,
  1725. unsigned long arg)
  1726. {
  1727. int ret = -1;
  1728. int32_t local_obj = SMCINVOKE_USERSPACE_OBJ_NULL;
  1729. struct smcinvoke_file_data *filp_data = filp->private_data;
  1730. if (_IOC_SIZE(cmd) != sizeof(int32_t))
  1731. return -EINVAL;
  1732. ret = copy_from_user(&local_obj, (void __user *)(uintptr_t)arg,
  1733. sizeof(int32_t));
  1734. if (ret)
  1735. return -EFAULT;
  1736. mutex_lock(&g_smcinvoke_lock);
  1737. if (UHANDLE_IS_CB_OBJ(local_obj))
  1738. ret = put_pending_cbobj_locked(filp_data->server_id,
  1739. UHANDLE_GET_CB_OBJ(local_obj));
  1740. mutex_unlock(&g_smcinvoke_lock);
  1741. return ret;
  1742. }
  1743. static long process_server_req(struct file *filp, unsigned int cmd,
  1744. unsigned long arg)
  1745. {
  1746. int ret = -1;
  1747. int32_t server_fd = -1;
  1748. struct smcinvoke_server server_req = {0};
  1749. struct smcinvoke_server_info *server_info = NULL;
  1750. if (_IOC_SIZE(cmd) != sizeof(server_req)) {
  1751. pr_err("invalid command size received for server request\n");
  1752. return -EINVAL;
  1753. }
  1754. ret = copy_from_user(&server_req, (void __user *)(uintptr_t)arg,
  1755. sizeof(server_req));
  1756. if (ret) {
  1757. pr_err("copying server request from user failed\n");
  1758. return -EFAULT;
  1759. }
  1760. server_info = kzalloc(sizeof(*server_info), GFP_KERNEL);
  1761. if (!server_info)
  1762. return -ENOMEM;
  1763. kref_init(&server_info->ref_cnt);
  1764. init_waitqueue_head(&server_info->req_wait_q);
  1765. init_waitqueue_head(&server_info->rsp_wait_q);
  1766. server_info->cb_buf_size = server_req.cb_buf_size;
  1767. hash_init(server_info->reqs_table);
  1768. hash_init(server_info->responses_table);
  1769. INIT_LIST_HEAD(&server_info->pending_cbobjs);
  1770. mutex_lock(&g_smcinvoke_lock);
  1771. server_info->server_id = next_cb_server_id_locked();
  1772. hash_add(g_cb_servers, &server_info->hash,
  1773. server_info->server_id);
  1774. if (g_max_cb_buf_size < server_req.cb_buf_size)
  1775. g_max_cb_buf_size = server_req.cb_buf_size;
  1776. mutex_unlock(&g_smcinvoke_lock);
  1777. ret = get_fd_for_obj(SMCINVOKE_OBJ_TYPE_SERVER,
  1778. server_info->server_id, &server_fd);
  1779. if (ret)
  1780. release_cb_server(server_info->server_id);
  1781. return server_fd;
  1782. }
  1783. static long process_accept_req(struct file *filp, unsigned int cmd,
  1784. unsigned long arg)
  1785. {
  1786. int ret = -1;
  1787. struct smcinvoke_file_data *server_obj = filp->private_data;
  1788. struct smcinvoke_accept user_args = {0};
  1789. struct smcinvoke_cb_txn *cb_txn = NULL;
  1790. struct smcinvoke_server_info *server_info = NULL;
  1791. if (_IOC_SIZE(cmd) != sizeof(struct smcinvoke_accept)) {
  1792. pr_err("command size invalid for accept request\n");
  1793. return -EINVAL;
  1794. }
  1795. if (copy_from_user(&user_args, (void __user *)arg,
  1796. sizeof(struct smcinvoke_accept))) {
  1797. pr_err("copying accept request from user failed\n");
  1798. return -EFAULT;
  1799. }
  1800. if (user_args.argsize != sizeof(union smcinvoke_arg)) {
  1801. pr_err("arguments size is invalid for accept thread\n");
  1802. return -EINVAL;
  1803. }
  1804. /* ACCEPT is available only on server obj */
  1805. if (server_obj->context_type != SMCINVOKE_OBJ_TYPE_SERVER) {
  1806. pr_err("invalid object type received for accept req\n");
  1807. return -EPERM;
  1808. }
  1809. mutex_lock(&g_smcinvoke_lock);
  1810. server_info = get_cb_server_locked(server_obj->server_id);
  1811. if (!server_info) {
  1812. pr_err("No matching server with server id : %u found\n",
  1813. server_obj->server_id);
  1814. mutex_unlock(&g_smcinvoke_lock);
  1815. return -EINVAL;
  1816. }
  1817. if (server_info->state == SMCINVOKE_SERVER_STATE_DEFUNCT)
  1818. server_info->state = 0;
  1819. mutex_unlock(&g_smcinvoke_lock);
  1820. /* First check if it has response otherwise wait for req */
  1821. if (user_args.has_resp) {
  1822. trace_process_accept_req_has_response(current->pid, current->tgid);
  1823. mutex_lock(&g_smcinvoke_lock);
  1824. cb_txn = find_cbtxn_locked(server_info, user_args.txn_id,
  1825. SMCINVOKE_REQ_PROCESSING);
  1826. mutex_unlock(&g_smcinvoke_lock);
  1827. /*
  1828. * cb_txn can be null if userspace provides wrong txn id OR
  1829. * invoke thread died while server was processing cb req.
  1830. * if invoke thread dies, it would remove req from Q. So
  1831. * no matching cb_txn would be on Q and hence NULL cb_txn.
  1832. * In this case, we want this thread to come back and start
  1833. * waiting for new cb requests, hence return EAGAIN here
  1834. */
  1835. if (!cb_txn) {
  1836. pr_err("%s txn %d either invalid or removed from Q\n",
  1837. __func__, user_args.txn_id);
  1838. ret = -EAGAIN;
  1839. goto out;
  1840. }
  1841. ret = marshal_out_tzcb_req(&user_args, cb_txn,
  1842. cb_txn->filp_to_release);
  1843. /*
  1844. * if client did not set error and we get error locally,
  1845. * we return local error to TA
  1846. */
  1847. if (ret && cb_txn->cb_req->result == 0)
  1848. cb_txn->cb_req->result = OBJECT_ERROR_UNAVAIL;
  1849. cb_txn->state = SMCINVOKE_REQ_PROCESSED;
  1850. mutex_lock(&g_smcinvoke_lock);
  1851. kref_put(&cb_txn->ref_cnt, delete_cb_txn_locked);
  1852. mutex_unlock(&g_smcinvoke_lock);
  1853. wake_up(&server_info->rsp_wait_q);
  1854. /*
  1855. * if marshal_out fails, we should let userspace release
  1856. * any ref/obj it created for CB processing
  1857. */
  1858. if (ret && OBJECT_COUNTS_NUM_OO(user_args.counts))
  1859. goto out;
  1860. }
  1861. /*
  1862. * Once response has been delivered, thread will wait for another
  1863. * callback req to process.
  1864. */
  1865. do {
  1866. ret = wait_event_interruptible(server_info->req_wait_q,
  1867. !hash_empty(server_info->reqs_table));
  1868. if (ret) {
  1869. trace_process_accept_req_ret(current->pid, current->tgid, ret);
  1870. /*
  1871. * Ideally, we should destroy server if accept threads
  1872. * are returning due to client being killed or device
  1873. * going down (Shutdown/Reboot) but that would make
  1874. * server_info invalid. Other accept/invoke threads are
  1875. * using server_info and would crash. So dont do that.
  1876. */
  1877. mutex_lock(&g_smcinvoke_lock);
  1878. server_info->state = SMCINVOKE_SERVER_STATE_DEFUNCT;
  1879. mutex_unlock(&g_smcinvoke_lock);
  1880. wake_up_interruptible(&server_info->rsp_wait_q);
  1881. goto out;
  1882. }
  1883. mutex_lock(&g_smcinvoke_lock);
  1884. cb_txn = find_cbtxn_locked(server_info,
  1885. SMCINVOKE_NEXT_AVAILABLE_TXN,
  1886. SMCINVOKE_REQ_PLACED);
  1887. mutex_unlock(&g_smcinvoke_lock);
  1888. if (cb_txn) {
  1889. cb_txn->state = SMCINVOKE_REQ_PROCESSING;
  1890. ret = marshal_in_tzcb_req(cb_txn, &user_args,
  1891. server_obj->server_id);
  1892. if (ret) {
  1893. pr_err("failed to marshal in the callback request\n");
  1894. cb_txn->cb_req->result = OBJECT_ERROR_UNAVAIL;
  1895. cb_txn->state = SMCINVOKE_REQ_PROCESSED;
  1896. mutex_lock(&g_smcinvoke_lock);
  1897. kref_put(&cb_txn->ref_cnt, delete_cb_txn_locked);
  1898. mutex_unlock(&g_smcinvoke_lock);
  1899. wake_up_interruptible(&server_info->rsp_wait_q);
  1900. continue;
  1901. }
  1902. mutex_lock(&g_smcinvoke_lock);
  1903. hash_add(server_info->responses_table, &cb_txn->hash,
  1904. cb_txn->txn_id);
  1905. kref_put(&cb_txn->ref_cnt, delete_cb_txn_locked);
  1906. mutex_unlock(&g_smcinvoke_lock);
  1907. trace_process_accept_req_placed(current->pid, current->tgid);
  1908. ret = copy_to_user((void __user *)arg, &user_args,
  1909. sizeof(struct smcinvoke_accept));
  1910. }
  1911. } while (!cb_txn);
  1912. out:
  1913. if (server_info)
  1914. kref_put(&server_info->ref_cnt, destroy_cb_server);
  1915. if (ret && ret != -ERESTARTSYS)
  1916. pr_err("accept thread returning with ret: %d\n", ret);
  1917. return ret;
  1918. }
  1919. static long process_invoke_req(struct file *filp, unsigned int cmd,
  1920. unsigned long arg)
  1921. {
  1922. int ret = -1, nr_args = 0;
  1923. struct smcinvoke_cmd_req req = {0};
  1924. void *in_msg = NULL, *out_msg = NULL;
  1925. size_t inmsg_size = 0, outmsg_size = SMCINVOKE_TZ_MIN_BUF_SIZE;
  1926. union smcinvoke_arg *args_buf = NULL;
  1927. struct smcinvoke_file_data *tzobj = filp->private_data;
  1928. struct qtee_shm in_shm = {0}, out_shm = {0};
  1929. /*
  1930. * Hold reference to remote object until invoke op is not
  1931. * completed. Release once invoke is done.
  1932. */
  1933. struct file *filp_to_release[OBJECT_COUNTS_MAX_OO] = {NULL};
  1934. /*
  1935. * If anything goes wrong, release alloted tzhandles for
  1936. * local objs which could be either CBObj or MemObj.
  1937. */
  1938. int32_t tzhandles_to_release[OBJECT_COUNTS_MAX_OO] = {0};
  1939. bool tz_acked = false;
  1940. uint32_t context_type = tzobj->context_type;
  1941. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ &&
  1942. _IOC_SIZE(cmd) != sizeof(req)) {
  1943. pr_err("command size for invoke req is invalid\n");
  1944. return -EINVAL;
  1945. }
  1946. if (context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ &&
  1947. context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  1948. pr_err("invalid context_type %d\n", context_type);
  1949. return -EPERM;
  1950. }
  1951. if (context_type != SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL) {
  1952. ret = copy_from_user(&req, (void __user *)arg, sizeof(req));
  1953. if (ret) {
  1954. pr_err("copying invoke req failed\n");
  1955. return -EFAULT;
  1956. }
  1957. } else {
  1958. req = *(struct smcinvoke_cmd_req *)arg;
  1959. }
  1960. if (req.argsize != sizeof(union smcinvoke_arg)) {
  1961. pr_err("arguments size for invoke req is invalid\n");
  1962. return -EINVAL;
  1963. }
  1964. nr_args = OBJECT_COUNTS_NUM_buffers(req.counts) +
  1965. OBJECT_COUNTS_NUM_objects(req.counts);
  1966. if (nr_args) {
  1967. args_buf = kcalloc(nr_args, req.argsize, GFP_KERNEL);
  1968. if (!args_buf)
  1969. return -ENOMEM;
  1970. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  1971. ret = copy_from_user(args_buf,
  1972. u64_to_user_ptr(req.args),
  1973. nr_args * req.argsize);
  1974. if (ret) {
  1975. ret = -EFAULT;
  1976. goto out;
  1977. }
  1978. } else {
  1979. memcpy(args_buf, (void *)(req.args),
  1980. nr_args * req.argsize);
  1981. }
  1982. }
  1983. inmsg_size = compute_in_msg_size(&req, args_buf);
  1984. ret = qtee_shmbridge_allocate_shm(inmsg_size, &in_shm);
  1985. if (ret) {
  1986. ret = -ENOMEM;
  1987. pr_err("shmbridge alloc failed for in msg in invoke req\n");
  1988. goto out;
  1989. }
  1990. in_msg = in_shm.vaddr;
  1991. mutex_lock(&g_smcinvoke_lock);
  1992. outmsg_size = PAGE_ALIGN(g_max_cb_buf_size);
  1993. mutex_unlock(&g_smcinvoke_lock);
  1994. ret = qtee_shmbridge_allocate_shm(outmsg_size, &out_shm);
  1995. if (ret) {
  1996. ret = -ENOMEM;
  1997. pr_err("shmbridge alloc failed for out msg in invoke req\n");
  1998. goto out;
  1999. }
  2000. out_msg = out_shm.vaddr;
  2001. trace_process_invoke_req_tzhandle(tzobj->tzhandle, req.op, req.counts);
  2002. ret = marshal_in_invoke_req(&req, args_buf, tzobj->tzhandle, in_msg,
  2003. inmsg_size, filp_to_release, tzhandles_to_release,
  2004. context_type);
  2005. if (ret) {
  2006. pr_err("failed to marshal in invoke req, ret :%d\n", ret);
  2007. goto out;
  2008. }
  2009. ret = prepare_send_scm_msg(in_msg, in_shm.paddr, inmsg_size,
  2010. out_msg, out_shm.paddr, outmsg_size,
  2011. &req, args_buf, &tz_acked, context_type,
  2012. &in_shm, &out_shm);
  2013. /*
  2014. * If scm_call is success, TZ owns responsibility to release
  2015. * refs for local objs.
  2016. */
  2017. if (!tz_acked) {
  2018. trace_status(__func__, "scm call successful");
  2019. goto out;
  2020. }
  2021. memset(tzhandles_to_release, 0, sizeof(tzhandles_to_release));
  2022. /*
  2023. * if invoke op results in an err, no need to marshal_out and
  2024. * copy args buf to user space
  2025. */
  2026. if (!req.result) {
  2027. /*
  2028. * Dont check ret of marshal_out because there might be a
  2029. * FD for OO which userspace must release even if an error
  2030. * occurs. Releasing FD from user space is much simpler than
  2031. * doing here. ORing of ret is reqd not to miss past error
  2032. */
  2033. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ)
  2034. ret |= copy_to_user(u64_to_user_ptr(req.args),
  2035. args_buf, nr_args * req.argsize);
  2036. else
  2037. memcpy((void *)(req.args), args_buf,
  2038. nr_args * req.argsize);
  2039. }
  2040. /* copy result of invoke op */
  2041. if (context_type == SMCINVOKE_OBJ_TYPE_TZ_OBJ) {
  2042. ret |= copy_to_user((void __user *)arg, &req, sizeof(req));
  2043. if (ret)
  2044. goto out;
  2045. } else {
  2046. memcpy((void *)arg, (void *)&req, sizeof(req));
  2047. }
  2048. /* Outbuf could be carrying local objs to be released. */
  2049. process_piggyback_data(out_msg, outmsg_size);
  2050. out:
  2051. trace_process_invoke_req_result(ret, req.result, tzobj->tzhandle,
  2052. req.op, req.counts);
  2053. release_filp(filp_to_release, OBJECT_COUNTS_MAX_OO);
  2054. if (ret)
  2055. release_tzhandles(tzhandles_to_release, OBJECT_COUNTS_MAX_OO);
  2056. qtee_shmbridge_free_shm(&in_shm);
  2057. qtee_shmbridge_free_shm(&out_shm);
  2058. kfree(args_buf);
  2059. if (ret)
  2060. pr_err("invoke thread returning with ret = %d\n", ret);
  2061. return ret;
  2062. }
  2063. static long process_log_info(struct file *filp, unsigned int cmd,
  2064. unsigned long arg)
  2065. {
  2066. int ret = 0;
  2067. char buf[SMCINVOKE_LOG_BUF_SIZE];
  2068. struct smcinvoke_file_data *tzobj = filp->private_data;
  2069. ret = copy_from_user(buf, (void __user *)arg, SMCINVOKE_LOG_BUF_SIZE);
  2070. if (ret) {
  2071. pr_err("logging HLOS info copy failed\n");
  2072. return -EFAULT;
  2073. }
  2074. buf[SMCINVOKE_LOG_BUF_SIZE - 1] = '\0';
  2075. trace_process_log_info(buf, tzobj->context_type, tzobj->tzhandle);
  2076. return ret;
  2077. }
  2078. static long smcinvoke_ioctl(struct file *filp, unsigned int cmd,
  2079. unsigned long arg)
  2080. {
  2081. long ret = 0;
  2082. switch (cmd) {
  2083. case SMCINVOKE_IOCTL_INVOKE_REQ:
  2084. ret = process_invoke_req(filp, cmd, arg);
  2085. break;
  2086. case SMCINVOKE_IOCTL_ACCEPT_REQ:
  2087. ret = process_accept_req(filp, cmd, arg);
  2088. break;
  2089. case SMCINVOKE_IOCTL_SERVER_REQ:
  2090. ret = process_server_req(filp, cmd, arg);
  2091. break;
  2092. case SMCINVOKE_IOCTL_ACK_LOCAL_OBJ:
  2093. ret = process_ack_local_obj(filp, cmd, arg);
  2094. break;
  2095. case SMCINVOKE_IOCTL_LOG:
  2096. ret = process_log_info(filp, cmd, arg);
  2097. break;
  2098. default:
  2099. ret = -ENOIOCTLCMD;
  2100. break;
  2101. }
  2102. trace_smcinvoke_ioctl(cmd, ret);
  2103. return ret;
  2104. }
  2105. int get_root_fd(int *root_fd)
  2106. {
  2107. if (!root_fd)
  2108. return -EINVAL;
  2109. else
  2110. return get_fd_for_obj(SMCINVOKE_OBJ_TYPE_TZ_OBJ_FOR_KERNEL,
  2111. SMCINVOKE_TZ_ROOT_OBJ, root_fd);
  2112. }
  2113. int process_invoke_request_from_kernel_client(int fd,
  2114. struct smcinvoke_cmd_req *req)
  2115. {
  2116. struct file *filp = NULL;
  2117. int ret = 0;
  2118. if (!req) {
  2119. pr_err("NULL req\n");
  2120. return -EINVAL;
  2121. }
  2122. filp = fget(fd);
  2123. if (!filp) {
  2124. pr_err("Invalid fd %d\n", fd);
  2125. return -EINVAL;
  2126. }
  2127. ret = process_invoke_req(filp, 0, (uintptr_t)req);
  2128. fput(filp);
  2129. trace_process_invoke_request_from_kernel_client(fd, filp, file_count(filp));
  2130. return ret;
  2131. }
  2132. char *firmware_request_from_smcinvoke(const char *appname, size_t *fw_size, struct qtee_shm *shm)
  2133. {
  2134. int rc = 0;
  2135. const struct firmware *fw_entry = NULL, *fw_entry00 = NULL, *fw_entrylast = NULL;
  2136. char fw_name[MAX_APP_NAME_SIZE] = "\0";
  2137. int num_images = 0, phi = 0;
  2138. unsigned char app_arch = 0;
  2139. u8 *img_data_ptr = NULL;
  2140. size_t bufferOffset = 0, phdr_table_offset = 0;
  2141. size_t *offset = NULL;
  2142. Elf32_Phdr phdr32;
  2143. Elf64_Phdr phdr64;
  2144. struct elf32_hdr *ehdr = NULL;
  2145. struct elf64_hdr *ehdr64 = NULL;
  2146. /* load b00*/
  2147. snprintf(fw_name, sizeof(fw_name), "%s.b00", appname);
  2148. rc = firmware_request_nowarn(&fw_entry00, fw_name, class_dev);
  2149. if (rc) {
  2150. pr_err("Load %s failed, ret:%d\n", fw_name, rc);
  2151. return NULL;
  2152. }
  2153. app_arch = *(unsigned char *)(fw_entry00->data + EI_CLASS);
  2154. /*Get the offsets for split images header*/
  2155. if (app_arch == ELFCLASS32) {
  2156. ehdr = (struct elf32_hdr *)fw_entry00->data;
  2157. num_images = ehdr->e_phnum;
  2158. offset = kcalloc(num_images, sizeof(size_t), GFP_KERNEL);
  2159. if (offset == NULL)
  2160. goto release_fw_entry00;
  2161. phdr_table_offset = (size_t) ehdr->e_phoff;
  2162. for (phi = 1; phi < num_images; ++phi) {
  2163. bufferOffset = phdr_table_offset + phi * sizeof(Elf32_Phdr);
  2164. phdr32 = *(Elf32_Phdr *)(fw_entry00->data + bufferOffset);
  2165. offset[phi] = (size_t)phdr32.p_offset;
  2166. }
  2167. } else if (app_arch == ELFCLASS64) {
  2168. ehdr64 = (struct elf64_hdr *)fw_entry00->data;
  2169. num_images = ehdr64->e_phnum;
  2170. offset = kcalloc(num_images, sizeof(size_t), GFP_KERNEL);
  2171. if (offset == NULL)
  2172. goto release_fw_entry00;
  2173. phdr_table_offset = (size_t) ehdr64->e_phoff;
  2174. for (phi = 1; phi < num_images; ++phi) {
  2175. bufferOffset = phdr_table_offset + phi * sizeof(Elf64_Phdr);
  2176. phdr64 = *(Elf64_Phdr *)(fw_entry00->data + bufferOffset);
  2177. offset[phi] = (size_t)phdr64.p_offset;
  2178. }
  2179. } else {
  2180. pr_err("QSEE %s app, arch %u is not supported\n", appname, app_arch);
  2181. goto release_fw_entry00;
  2182. }
  2183. /*Find the size of last split bin image*/
  2184. snprintf(fw_name, ARRAY_SIZE(fw_name), "%s.b%02d", appname, num_images-1);
  2185. rc = firmware_request_nowarn(&fw_entrylast, fw_name, class_dev);
  2186. if (rc) {
  2187. pr_err("Failed to locate blob %s\n", fw_name);
  2188. goto release_fw_entry00;
  2189. }
  2190. /*Total size of image will be the offset of last image + the size of last split image*/
  2191. *fw_size = fw_entrylast->size + offset[num_images-1];
  2192. /*Allocate memory for the buffer that will hold the split image*/
  2193. rc = qtee_shmbridge_allocate_shm((*fw_size), shm);
  2194. if (rc) {
  2195. pr_err("smbridge alloc failed for size: %zu\n", *fw_size);
  2196. goto release_fw_entrylast;
  2197. }
  2198. img_data_ptr = shm->vaddr;
  2199. /*
  2200. * Copy contents of split bins to the buffer
  2201. */
  2202. memcpy(img_data_ptr, fw_entry00->data, fw_entry00->size);
  2203. for (phi = 1; phi < num_images-1; phi++) {
  2204. snprintf(fw_name, ARRAY_SIZE(fw_name), "%s.b%02d", appname, phi);
  2205. rc = firmware_request_nowarn(&fw_entry, fw_name, class_dev);
  2206. if (rc) {
  2207. pr_err("Failed to locate blob %s\n", fw_name);
  2208. qtee_shmbridge_free_shm(shm);
  2209. img_data_ptr = NULL;
  2210. goto release_fw_entrylast;
  2211. }
  2212. memcpy(img_data_ptr + offset[phi], fw_entry->data, fw_entry->size);
  2213. release_firmware(fw_entry);
  2214. fw_entry = NULL;
  2215. }
  2216. memcpy(img_data_ptr + offset[phi], fw_entrylast->data, fw_entrylast->size);
  2217. release_fw_entrylast:
  2218. release_firmware(fw_entrylast);
  2219. release_fw_entry00:
  2220. release_firmware(fw_entry00);
  2221. kfree(offset);
  2222. return img_data_ptr;
  2223. }
  2224. EXPORT_SYMBOL(firmware_request_from_smcinvoke);
  2225. static int smcinvoke_open(struct inode *nodp, struct file *filp)
  2226. {
  2227. struct smcinvoke_file_data *tzcxt = NULL;
  2228. tzcxt = kzalloc(sizeof(*tzcxt), GFP_KERNEL);
  2229. if (!tzcxt)
  2230. return -ENOMEM;
  2231. tzcxt->tzhandle = SMCINVOKE_TZ_ROOT_OBJ;
  2232. tzcxt->context_type = SMCINVOKE_OBJ_TYPE_TZ_OBJ;
  2233. filp->private_data = tzcxt;
  2234. return 0;
  2235. }
  2236. static int release_cb_server(uint16_t server_id)
  2237. {
  2238. struct smcinvoke_server_info *server = NULL;
  2239. mutex_lock(&g_smcinvoke_lock);
  2240. server = find_cb_server_locked(server_id);
  2241. if (server)
  2242. kref_put(&server->ref_cnt, destroy_cb_server);
  2243. mutex_unlock(&g_smcinvoke_lock);
  2244. return 0;
  2245. }
  2246. int smcinvoke_release_filp(struct file *filp)
  2247. {
  2248. int ret = 0;
  2249. struct smcinvoke_file_data *file_data = filp->private_data;
  2250. uint32_t tzhandle = 0;
  2251. struct smcinvoke_object_release_pending_list *entry = NULL;
  2252. trace_smcinvoke_release_filp(current->files, filp,
  2253. file_count(filp), file_data->context_type);
  2254. if (file_data->context_type == SMCINVOKE_OBJ_TYPE_SERVER) {
  2255. ret = release_cb_server(file_data->server_id);
  2256. goto out;
  2257. }
  2258. tzhandle = file_data->tzhandle;
  2259. /* Root object is special in sense it is indestructible */
  2260. if (!tzhandle || tzhandle == SMCINVOKE_TZ_ROOT_OBJ)
  2261. goto out;
  2262. entry = kzalloc(sizeof(*entry), GFP_KERNEL);
  2263. if (!entry) {
  2264. ret = -ENOMEM;
  2265. goto out;
  2266. }
  2267. entry->data.tzhandle = tzhandle;
  2268. entry->data.context_type = file_data->context_type;
  2269. mutex_lock(&object_postprocess_lock);
  2270. list_add_tail(&entry->list, &g_object_postprocess);
  2271. mutex_unlock(&object_postprocess_lock);
  2272. pr_debug("Object release list: added a handle:0x%lx\n", tzhandle);
  2273. __wakeup_postprocess_kthread(&smcinvoke[OBJECT_WORKER_THREAD]);
  2274. out:
  2275. kfree(filp->private_data);
  2276. filp->private_data = NULL;
  2277. return ret;
  2278. }
  2279. int smcinvoke_release_from_kernel_client(int fd)
  2280. {
  2281. struct file *filp = NULL;
  2282. /* use fget() to get filp, but this will increase file ref_cnt to 1,
  2283. * then decrease file ref_cnt to 0 with fput().
  2284. */
  2285. filp = fget(fd);
  2286. if (!filp) {
  2287. pr_err("invalid fd %d to release\n", fd);
  2288. return -EINVAL;
  2289. }
  2290. trace_smcinvoke_release_from_kernel_client(current->files, filp,
  2291. file_count(filp));
  2292. /* free filp, notify TZ to release object */
  2293. smcinvoke_release_filp(filp);
  2294. fput(filp);
  2295. return 0;
  2296. }
  2297. static int smcinvoke_release(struct inode *nodp, struct file *filp)
  2298. {
  2299. trace_smcinvoke_release(current->files, filp, file_count(filp),
  2300. filp->private_data);
  2301. if (filp->private_data)
  2302. return smcinvoke_release_filp(filp);
  2303. else
  2304. return 0;
  2305. }
  2306. static int smcinvoke_probe(struct platform_device *pdev)
  2307. {
  2308. unsigned int baseminor = 0;
  2309. unsigned int count = 1;
  2310. int rc = 0;
  2311. rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
  2312. if (rc) {
  2313. pr_err("dma_set_mask_and_coherent failed %d\n", rc);
  2314. return rc;
  2315. }
  2316. legacy_smc_call = of_property_read_bool((&pdev->dev)->of_node,
  2317. "qcom,support-legacy_smc");
  2318. invoke_cmd = legacy_smc_call ? SMCINVOKE_INVOKE_CMD_LEGACY : SMCINVOKE_INVOKE_CMD;
  2319. rc = smcinvoke_create_kthreads();
  2320. if (rc) {
  2321. pr_err("smcinvoke_create_kthreads failed %d\n", rc);
  2322. return rc;
  2323. }
  2324. rc = alloc_chrdev_region(&smcinvoke_device_no, baseminor, count,
  2325. SMCINVOKE_DEV);
  2326. if (rc < 0) {
  2327. pr_err("chrdev_region failed %d for %s\n", rc, SMCINVOKE_DEV);
  2328. goto exit_destroy_wkthread;
  2329. }
  2330. driver_class = class_create(THIS_MODULE, SMCINVOKE_DEV);
  2331. if (IS_ERR(driver_class)) {
  2332. rc = -ENOMEM;
  2333. pr_err("class_create failed %d\n", rc);
  2334. goto exit_unreg_chrdev_region;
  2335. }
  2336. class_dev = device_create(driver_class, NULL, smcinvoke_device_no,
  2337. NULL, SMCINVOKE_DEV);
  2338. if (!class_dev) {
  2339. pr_err("class_device_create failed %d\n", rc);
  2340. rc = -ENOMEM;
  2341. goto exit_destroy_class;
  2342. }
  2343. cdev_init(&smcinvoke_cdev, &g_smcinvoke_fops);
  2344. smcinvoke_cdev.owner = THIS_MODULE;
  2345. rc = cdev_add(&smcinvoke_cdev, MKDEV(MAJOR(smcinvoke_device_no), 0),
  2346. count);
  2347. if (rc < 0) {
  2348. pr_err("cdev_add failed %d for %s\n", rc, SMCINVOKE_DEV);
  2349. goto exit_destroy_device;
  2350. }
  2351. smcinvoke_pdev = pdev;
  2352. return 0;
  2353. exit_destroy_device:
  2354. device_destroy(driver_class, smcinvoke_device_no);
  2355. exit_destroy_class:
  2356. class_destroy(driver_class);
  2357. exit_unreg_chrdev_region:
  2358. unregister_chrdev_region(smcinvoke_device_no, count);
  2359. exit_destroy_wkthread:
  2360. smcinvoke_destroy_kthreads();
  2361. return rc;
  2362. }
  2363. static int smcinvoke_remove(struct platform_device *pdev)
  2364. {
  2365. int count = 1;
  2366. smcinvoke_destroy_kthreads();
  2367. cdev_del(&smcinvoke_cdev);
  2368. device_destroy(driver_class, smcinvoke_device_no);
  2369. class_destroy(driver_class);
  2370. unregister_chrdev_region(smcinvoke_device_no, count);
  2371. return 0;
  2372. }
  2373. static int __maybe_unused smcinvoke_suspend(struct platform_device *pdev,
  2374. pm_message_t state)
  2375. {
  2376. int ret = 0;
  2377. mutex_lock(&g_smcinvoke_lock);
  2378. if (cb_reqs_inflight) {
  2379. pr_err("Failed to suspend smcinvoke driver\n");
  2380. ret = -EIO;
  2381. }
  2382. mutex_unlock(&g_smcinvoke_lock);
  2383. return ret;
  2384. }
  2385. static int __maybe_unused smcinvoke_resume(struct platform_device *pdev)
  2386. {
  2387. return 0;
  2388. }
  2389. static const struct of_device_id smcinvoke_match[] = {
  2390. {
  2391. .compatible = "qcom,smcinvoke",
  2392. },
  2393. {},
  2394. };
  2395. static struct platform_driver smcinvoke_plat_driver = {
  2396. .probe = smcinvoke_probe,
  2397. .remove = smcinvoke_remove,
  2398. .suspend = smcinvoke_suspend,
  2399. .resume = smcinvoke_resume,
  2400. .driver = {
  2401. .name = "smcinvoke",
  2402. .of_match_table = smcinvoke_match,
  2403. },
  2404. };
  2405. static int smcinvoke_init(void)
  2406. {
  2407. return platform_driver_register(&smcinvoke_plat_driver);
  2408. }
  2409. static void smcinvoke_exit(void)
  2410. {
  2411. platform_driver_unregister(&smcinvoke_plat_driver);
  2412. }
  2413. module_init(smcinvoke_init);
  2414. module_exit(smcinvoke_exit);
  2415. MODULE_LICENSE("GPL v2");
  2416. MODULE_DESCRIPTION("SMC Invoke driver");
  2417. MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver);