vmci_queue_pair.c 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * VMware VMCI Driver
  4. *
  5. * Copyright (C) 2012 VMware, Inc. All rights reserved.
  6. */
  7. #include <linux/vmw_vmci_defs.h>
  8. #include <linux/vmw_vmci_api.h>
  9. #include <linux/highmem.h>
  10. #include <linux/kernel.h>
  11. #include <linux/mm.h>
  12. #include <linux/module.h>
  13. #include <linux/mutex.h>
  14. #include <linux/pagemap.h>
  15. #include <linux/pci.h>
  16. #include <linux/sched.h>
  17. #include <linux/slab.h>
  18. #include <linux/uio.h>
  19. #include <linux/wait.h>
  20. #include <linux/vmalloc.h>
  21. #include <linux/skbuff.h>
  22. #include "vmci_handle_array.h"
  23. #include "vmci_queue_pair.h"
  24. #include "vmci_datagram.h"
  25. #include "vmci_resource.h"
  26. #include "vmci_context.h"
  27. #include "vmci_driver.h"
  28. #include "vmci_event.h"
  29. #include "vmci_route.h"
  30. /*
  31. * In the following, we will distinguish between two kinds of VMX processes -
  32. * the ones with versions lower than VMCI_VERSION_NOVMVM that use specialized
  33. * VMCI page files in the VMX and supporting VM to VM communication and the
  34. * newer ones that use the guest memory directly. We will in the following
  35. * refer to the older VMX versions as old-style VMX'en, and the newer ones as
  36. * new-style VMX'en.
  37. *
  38. * The state transition datagram is as follows (the VMCIQPB_ prefix has been
  39. * removed for readability) - see below for more details on the transtions:
  40. *
  41. * -------------- NEW -------------
  42. * | |
  43. * \_/ \_/
  44. * CREATED_NO_MEM <-----------------> CREATED_MEM
  45. * | | |
  46. * | o-----------------------o |
  47. * | | |
  48. * \_/ \_/ \_/
  49. * ATTACHED_NO_MEM <----------------> ATTACHED_MEM
  50. * | | |
  51. * | o----------------------o |
  52. * | | |
  53. * \_/ \_/ \_/
  54. * SHUTDOWN_NO_MEM <----------------> SHUTDOWN_MEM
  55. * | |
  56. * | |
  57. * -------------> gone <-------------
  58. *
  59. * In more detail. When a VMCI queue pair is first created, it will be in the
  60. * VMCIQPB_NEW state. It will then move into one of the following states:
  61. *
  62. * - VMCIQPB_CREATED_NO_MEM: this state indicates that either:
  63. *
  64. * - the created was performed by a host endpoint, in which case there is
  65. * no backing memory yet.
  66. *
  67. * - the create was initiated by an old-style VMX, that uses
  68. * vmci_qp_broker_set_page_store to specify the UVAs of the queue pair at
  69. * a later point in time. This state can be distinguished from the one
  70. * above by the context ID of the creator. A host side is not allowed to
  71. * attach until the page store has been set.
  72. *
  73. * - VMCIQPB_CREATED_MEM: this state is the result when the queue pair
  74. * is created by a VMX using the queue pair device backend that
  75. * sets the UVAs of the queue pair immediately and stores the
  76. * information for later attachers. At this point, it is ready for
  77. * the host side to attach to it.
  78. *
  79. * Once the queue pair is in one of the created states (with the exception of
  80. * the case mentioned for older VMX'en above), it is possible to attach to the
  81. * queue pair. Again we have two new states possible:
  82. *
  83. * - VMCIQPB_ATTACHED_MEM: this state can be reached through the following
  84. * paths:
  85. *
  86. * - from VMCIQPB_CREATED_NO_MEM when a new-style VMX allocates a queue
  87. * pair, and attaches to a queue pair previously created by the host side.
  88. *
  89. * - from VMCIQPB_CREATED_MEM when the host side attaches to a queue pair
  90. * already created by a guest.
  91. *
  92. * - from VMCIQPB_ATTACHED_NO_MEM, when an old-style VMX calls
  93. * vmci_qp_broker_set_page_store (see below).
  94. *
  95. * - VMCIQPB_ATTACHED_NO_MEM: If the queue pair already was in the
  96. * VMCIQPB_CREATED_NO_MEM due to a host side create, an old-style VMX will
  97. * bring the queue pair into this state. Once vmci_qp_broker_set_page_store
  98. * is called to register the user memory, the VMCIQPB_ATTACH_MEM state
  99. * will be entered.
  100. *
  101. * From the attached queue pair, the queue pair can enter the shutdown states
  102. * when either side of the queue pair detaches. If the guest side detaches
  103. * first, the queue pair will enter the VMCIQPB_SHUTDOWN_NO_MEM state, where
  104. * the content of the queue pair will no longer be available. If the host
  105. * side detaches first, the queue pair will either enter the
  106. * VMCIQPB_SHUTDOWN_MEM, if the guest memory is currently mapped, or
  107. * VMCIQPB_SHUTDOWN_NO_MEM, if the guest memory is not mapped
  108. * (e.g., the host detaches while a guest is stunned).
  109. *
  110. * New-style VMX'en will also unmap guest memory, if the guest is
  111. * quiesced, e.g., during a snapshot operation. In that case, the guest
  112. * memory will no longer be available, and the queue pair will transition from
  113. * *_MEM state to a *_NO_MEM state. The VMX may later map the memory once more,
  114. * in which case the queue pair will transition from the *_NO_MEM state at that
  115. * point back to the *_MEM state. Note that the *_NO_MEM state may have changed,
  116. * since the peer may have either attached or detached in the meantime. The
  117. * values are laid out such that ++ on a state will move from a *_NO_MEM to a
  118. * *_MEM state, and vice versa.
  119. */
  120. /* The Kernel specific component of the struct vmci_queue structure. */
  121. struct vmci_queue_kern_if {
  122. struct mutex __mutex; /* Protects the queue. */
  123. struct mutex *mutex; /* Shared by producer and consumer queues. */
  124. size_t num_pages; /* Number of pages incl. header. */
  125. bool host; /* Host or guest? */
  126. union {
  127. struct {
  128. dma_addr_t *pas;
  129. void **vas;
  130. } g; /* Used by the guest. */
  131. struct {
  132. struct page **page;
  133. struct page **header_page;
  134. } h; /* Used by the host. */
  135. } u;
  136. };
  137. /*
  138. * This structure is opaque to the clients.
  139. */
  140. struct vmci_qp {
  141. struct vmci_handle handle;
  142. struct vmci_queue *produce_q;
  143. struct vmci_queue *consume_q;
  144. u64 produce_q_size;
  145. u64 consume_q_size;
  146. u32 peer;
  147. u32 flags;
  148. u32 priv_flags;
  149. bool guest_endpoint;
  150. unsigned int blocked;
  151. unsigned int generation;
  152. wait_queue_head_t event;
  153. };
  154. enum qp_broker_state {
  155. VMCIQPB_NEW,
  156. VMCIQPB_CREATED_NO_MEM,
  157. VMCIQPB_CREATED_MEM,
  158. VMCIQPB_ATTACHED_NO_MEM,
  159. VMCIQPB_ATTACHED_MEM,
  160. VMCIQPB_SHUTDOWN_NO_MEM,
  161. VMCIQPB_SHUTDOWN_MEM,
  162. VMCIQPB_GONE
  163. };
  164. #define QPBROKERSTATE_HAS_MEM(_qpb) (_qpb->state == VMCIQPB_CREATED_MEM || \
  165. _qpb->state == VMCIQPB_ATTACHED_MEM || \
  166. _qpb->state == VMCIQPB_SHUTDOWN_MEM)
  167. /*
  168. * In the queue pair broker, we always use the guest point of view for
  169. * the produce and consume queue values and references, e.g., the
  170. * produce queue size stored is the guests produce queue size. The
  171. * host endpoint will need to swap these around. The only exception is
  172. * the local queue pairs on the host, in which case the host endpoint
  173. * that creates the queue pair will have the right orientation, and
  174. * the attaching host endpoint will need to swap.
  175. */
  176. struct qp_entry {
  177. struct list_head list_item;
  178. struct vmci_handle handle;
  179. u32 peer;
  180. u32 flags;
  181. u64 produce_size;
  182. u64 consume_size;
  183. u32 ref_count;
  184. };
  185. struct qp_broker_entry {
  186. struct vmci_resource resource;
  187. struct qp_entry qp;
  188. u32 create_id;
  189. u32 attach_id;
  190. enum qp_broker_state state;
  191. bool require_trusted_attach;
  192. bool created_by_trusted;
  193. bool vmci_page_files; /* Created by VMX using VMCI page files */
  194. struct vmci_queue *produce_q;
  195. struct vmci_queue *consume_q;
  196. struct vmci_queue_header saved_produce_q;
  197. struct vmci_queue_header saved_consume_q;
  198. vmci_event_release_cb wakeup_cb;
  199. void *client_data;
  200. void *local_mem; /* Kernel memory for local queue pair */
  201. };
  202. struct qp_guest_endpoint {
  203. struct vmci_resource resource;
  204. struct qp_entry qp;
  205. u64 num_ppns;
  206. void *produce_q;
  207. void *consume_q;
  208. struct ppn_set ppn_set;
  209. };
  210. struct qp_list {
  211. struct list_head head;
  212. struct mutex mutex; /* Protect queue list. */
  213. };
  214. static struct qp_list qp_broker_list = {
  215. .head = LIST_HEAD_INIT(qp_broker_list.head),
  216. .mutex = __MUTEX_INITIALIZER(qp_broker_list.mutex),
  217. };
  218. static struct qp_list qp_guest_endpoints = {
  219. .head = LIST_HEAD_INIT(qp_guest_endpoints.head),
  220. .mutex = __MUTEX_INITIALIZER(qp_guest_endpoints.mutex),
  221. };
  222. #define INVALID_VMCI_GUEST_MEM_ID 0
  223. #define QPE_NUM_PAGES(_QPE) ((u32) \
  224. (DIV_ROUND_UP(_QPE.produce_size, PAGE_SIZE) + \
  225. DIV_ROUND_UP(_QPE.consume_size, PAGE_SIZE) + 2))
  226. #define QP_SIZES_ARE_VALID(_prod_qsize, _cons_qsize) \
  227. ((_prod_qsize) + (_cons_qsize) >= max(_prod_qsize, _cons_qsize) && \
  228. (_prod_qsize) + (_cons_qsize) <= VMCI_MAX_GUEST_QP_MEMORY)
  229. /*
  230. * Frees kernel VA space for a given queue and its queue header, and
  231. * frees physical data pages.
  232. */
  233. static void qp_free_queue(void *q, u64 size)
  234. {
  235. struct vmci_queue *queue = q;
  236. if (queue) {
  237. u64 i;
  238. /* Given size does not include header, so add in a page here. */
  239. for (i = 0; i < DIV_ROUND_UP(size, PAGE_SIZE) + 1; i++) {
  240. dma_free_coherent(&vmci_pdev->dev, PAGE_SIZE,
  241. queue->kernel_if->u.g.vas[i],
  242. queue->kernel_if->u.g.pas[i]);
  243. }
  244. vfree(queue);
  245. }
  246. }
  247. /*
  248. * Allocates kernel queue pages of specified size with IOMMU mappings,
  249. * plus space for the queue structure/kernel interface and the queue
  250. * header.
  251. */
  252. static void *qp_alloc_queue(u64 size, u32 flags)
  253. {
  254. u64 i;
  255. struct vmci_queue *queue;
  256. size_t pas_size;
  257. size_t vas_size;
  258. size_t queue_size = sizeof(*queue) + sizeof(*queue->kernel_if);
  259. u64 num_pages;
  260. if (size > SIZE_MAX - PAGE_SIZE)
  261. return NULL;
  262. num_pages = DIV_ROUND_UP(size, PAGE_SIZE) + 1;
  263. if (num_pages >
  264. (SIZE_MAX - queue_size) /
  265. (sizeof(*queue->kernel_if->u.g.pas) +
  266. sizeof(*queue->kernel_if->u.g.vas)))
  267. return NULL;
  268. pas_size = num_pages * sizeof(*queue->kernel_if->u.g.pas);
  269. vas_size = num_pages * sizeof(*queue->kernel_if->u.g.vas);
  270. queue_size += pas_size + vas_size;
  271. queue = vmalloc(queue_size);
  272. if (!queue)
  273. return NULL;
  274. queue->q_header = NULL;
  275. queue->saved_header = NULL;
  276. queue->kernel_if = (struct vmci_queue_kern_if *)(queue + 1);
  277. queue->kernel_if->mutex = NULL;
  278. queue->kernel_if->num_pages = num_pages;
  279. queue->kernel_if->u.g.pas = (dma_addr_t *)(queue->kernel_if + 1);
  280. queue->kernel_if->u.g.vas =
  281. (void **)((u8 *)queue->kernel_if->u.g.pas + pas_size);
  282. queue->kernel_if->host = false;
  283. for (i = 0; i < num_pages; i++) {
  284. queue->kernel_if->u.g.vas[i] =
  285. dma_alloc_coherent(&vmci_pdev->dev, PAGE_SIZE,
  286. &queue->kernel_if->u.g.pas[i],
  287. GFP_KERNEL);
  288. if (!queue->kernel_if->u.g.vas[i]) {
  289. /* Size excl. the header. */
  290. qp_free_queue(queue, i * PAGE_SIZE);
  291. return NULL;
  292. }
  293. }
  294. /* Queue header is the first page. */
  295. queue->q_header = queue->kernel_if->u.g.vas[0];
  296. return queue;
  297. }
  298. /*
  299. * Copies from a given buffer or iovector to a VMCI Queue. Uses
  300. * kmap_local_page() to dynamically map required portions of the queue
  301. * by traversing the offset -> page translation structure for the queue.
  302. * Assumes that offset + size does not wrap around in the queue.
  303. */
  304. static int qp_memcpy_to_queue_iter(struct vmci_queue *queue,
  305. u64 queue_offset,
  306. struct iov_iter *from,
  307. size_t size)
  308. {
  309. struct vmci_queue_kern_if *kernel_if = queue->kernel_if;
  310. size_t bytes_copied = 0;
  311. while (bytes_copied < size) {
  312. const u64 page_index =
  313. (queue_offset + bytes_copied) / PAGE_SIZE;
  314. const size_t page_offset =
  315. (queue_offset + bytes_copied) & (PAGE_SIZE - 1);
  316. void *va;
  317. size_t to_copy;
  318. if (kernel_if->host)
  319. va = kmap_local_page(kernel_if->u.h.page[page_index]);
  320. else
  321. va = kernel_if->u.g.vas[page_index + 1];
  322. /* Skip header. */
  323. if (size - bytes_copied > PAGE_SIZE - page_offset)
  324. /* Enough payload to fill up from this page. */
  325. to_copy = PAGE_SIZE - page_offset;
  326. else
  327. to_copy = size - bytes_copied;
  328. if (!copy_from_iter_full((u8 *)va + page_offset, to_copy,
  329. from)) {
  330. if (kernel_if->host)
  331. kunmap_local(va);
  332. return VMCI_ERROR_INVALID_ARGS;
  333. }
  334. bytes_copied += to_copy;
  335. if (kernel_if->host)
  336. kunmap_local(va);
  337. }
  338. return VMCI_SUCCESS;
  339. }
  340. /*
  341. * Copies to a given buffer or iovector from a VMCI Queue. Uses
  342. * kmap_local_page() to dynamically map required portions of the queue
  343. * by traversing the offset -> page translation structure for the queue.
  344. * Assumes that offset + size does not wrap around in the queue.
  345. */
  346. static int qp_memcpy_from_queue_iter(struct iov_iter *to,
  347. const struct vmci_queue *queue,
  348. u64 queue_offset, size_t size)
  349. {
  350. struct vmci_queue_kern_if *kernel_if = queue->kernel_if;
  351. size_t bytes_copied = 0;
  352. while (bytes_copied < size) {
  353. const u64 page_index =
  354. (queue_offset + bytes_copied) / PAGE_SIZE;
  355. const size_t page_offset =
  356. (queue_offset + bytes_copied) & (PAGE_SIZE - 1);
  357. void *va;
  358. size_t to_copy;
  359. int err;
  360. if (kernel_if->host)
  361. va = kmap_local_page(kernel_if->u.h.page[page_index]);
  362. else
  363. va = kernel_if->u.g.vas[page_index + 1];
  364. /* Skip header. */
  365. if (size - bytes_copied > PAGE_SIZE - page_offset)
  366. /* Enough payload to fill up this page. */
  367. to_copy = PAGE_SIZE - page_offset;
  368. else
  369. to_copy = size - bytes_copied;
  370. err = copy_to_iter((u8 *)va + page_offset, to_copy, to);
  371. if (err != to_copy) {
  372. if (kernel_if->host)
  373. kunmap_local(va);
  374. return VMCI_ERROR_INVALID_ARGS;
  375. }
  376. bytes_copied += to_copy;
  377. if (kernel_if->host)
  378. kunmap_local(va);
  379. }
  380. return VMCI_SUCCESS;
  381. }
  382. /*
  383. * Allocates two list of PPNs --- one for the pages in the produce queue,
  384. * and the other for the pages in the consume queue. Intializes the list
  385. * of PPNs with the page frame numbers of the KVA for the two queues (and
  386. * the queue headers).
  387. */
  388. static int qp_alloc_ppn_set(void *prod_q,
  389. u64 num_produce_pages,
  390. void *cons_q,
  391. u64 num_consume_pages, struct ppn_set *ppn_set)
  392. {
  393. u64 *produce_ppns;
  394. u64 *consume_ppns;
  395. struct vmci_queue *produce_q = prod_q;
  396. struct vmci_queue *consume_q = cons_q;
  397. u64 i;
  398. if (!produce_q || !num_produce_pages || !consume_q ||
  399. !num_consume_pages || !ppn_set)
  400. return VMCI_ERROR_INVALID_ARGS;
  401. if (ppn_set->initialized)
  402. return VMCI_ERROR_ALREADY_EXISTS;
  403. produce_ppns =
  404. kmalloc_array(num_produce_pages, sizeof(*produce_ppns),
  405. GFP_KERNEL);
  406. if (!produce_ppns)
  407. return VMCI_ERROR_NO_MEM;
  408. consume_ppns =
  409. kmalloc_array(num_consume_pages, sizeof(*consume_ppns),
  410. GFP_KERNEL);
  411. if (!consume_ppns) {
  412. kfree(produce_ppns);
  413. return VMCI_ERROR_NO_MEM;
  414. }
  415. for (i = 0; i < num_produce_pages; i++)
  416. produce_ppns[i] =
  417. produce_q->kernel_if->u.g.pas[i] >> PAGE_SHIFT;
  418. for (i = 0; i < num_consume_pages; i++)
  419. consume_ppns[i] =
  420. consume_q->kernel_if->u.g.pas[i] >> PAGE_SHIFT;
  421. ppn_set->num_produce_pages = num_produce_pages;
  422. ppn_set->num_consume_pages = num_consume_pages;
  423. ppn_set->produce_ppns = produce_ppns;
  424. ppn_set->consume_ppns = consume_ppns;
  425. ppn_set->initialized = true;
  426. return VMCI_SUCCESS;
  427. }
  428. /*
  429. * Frees the two list of PPNs for a queue pair.
  430. */
  431. static void qp_free_ppn_set(struct ppn_set *ppn_set)
  432. {
  433. if (ppn_set->initialized) {
  434. /* Do not call these functions on NULL inputs. */
  435. kfree(ppn_set->produce_ppns);
  436. kfree(ppn_set->consume_ppns);
  437. }
  438. memset(ppn_set, 0, sizeof(*ppn_set));
  439. }
  440. /*
  441. * Populates the list of PPNs in the hypercall structure with the PPNS
  442. * of the produce queue and the consume queue.
  443. */
  444. static int qp_populate_ppn_set(u8 *call_buf, const struct ppn_set *ppn_set)
  445. {
  446. if (vmci_use_ppn64()) {
  447. memcpy(call_buf, ppn_set->produce_ppns,
  448. ppn_set->num_produce_pages *
  449. sizeof(*ppn_set->produce_ppns));
  450. memcpy(call_buf +
  451. ppn_set->num_produce_pages *
  452. sizeof(*ppn_set->produce_ppns),
  453. ppn_set->consume_ppns,
  454. ppn_set->num_consume_pages *
  455. sizeof(*ppn_set->consume_ppns));
  456. } else {
  457. int i;
  458. u32 *ppns = (u32 *) call_buf;
  459. for (i = 0; i < ppn_set->num_produce_pages; i++)
  460. ppns[i] = (u32) ppn_set->produce_ppns[i];
  461. ppns = &ppns[ppn_set->num_produce_pages];
  462. for (i = 0; i < ppn_set->num_consume_pages; i++)
  463. ppns[i] = (u32) ppn_set->consume_ppns[i];
  464. }
  465. return VMCI_SUCCESS;
  466. }
  467. /*
  468. * Allocates kernel VA space of specified size plus space for the queue
  469. * and kernel interface. This is different from the guest queue allocator,
  470. * because we do not allocate our own queue header/data pages here but
  471. * share those of the guest.
  472. */
  473. static struct vmci_queue *qp_host_alloc_queue(u64 size)
  474. {
  475. struct vmci_queue *queue;
  476. size_t queue_page_size;
  477. u64 num_pages;
  478. const size_t queue_size = sizeof(*queue) + sizeof(*(queue->kernel_if));
  479. if (size > min_t(size_t, VMCI_MAX_GUEST_QP_MEMORY, SIZE_MAX - PAGE_SIZE))
  480. return NULL;
  481. num_pages = DIV_ROUND_UP(size, PAGE_SIZE) + 1;
  482. if (num_pages > (SIZE_MAX - queue_size) /
  483. sizeof(*queue->kernel_if->u.h.page))
  484. return NULL;
  485. queue_page_size = num_pages * sizeof(*queue->kernel_if->u.h.page);
  486. if (queue_size + queue_page_size > KMALLOC_MAX_SIZE)
  487. return NULL;
  488. queue = kzalloc(queue_size + queue_page_size, GFP_KERNEL);
  489. if (queue) {
  490. queue->q_header = NULL;
  491. queue->saved_header = NULL;
  492. queue->kernel_if = (struct vmci_queue_kern_if *)(queue + 1);
  493. queue->kernel_if->host = true;
  494. queue->kernel_if->mutex = NULL;
  495. queue->kernel_if->num_pages = num_pages;
  496. queue->kernel_if->u.h.header_page =
  497. (struct page **)((u8 *)queue + queue_size);
  498. queue->kernel_if->u.h.page =
  499. &queue->kernel_if->u.h.header_page[1];
  500. }
  501. return queue;
  502. }
  503. /*
  504. * Frees kernel memory for a given queue (header plus translation
  505. * structure).
  506. */
  507. static void qp_host_free_queue(struct vmci_queue *queue, u64 queue_size)
  508. {
  509. kfree(queue);
  510. }
  511. /*
  512. * Initialize the mutex for the pair of queues. This mutex is used to
  513. * protect the q_header and the buffer from changing out from under any
  514. * users of either queue. Of course, it's only any good if the mutexes
  515. * are actually acquired. Queue structure must lie on non-paged memory
  516. * or we cannot guarantee access to the mutex.
  517. */
  518. static void qp_init_queue_mutex(struct vmci_queue *produce_q,
  519. struct vmci_queue *consume_q)
  520. {
  521. /*
  522. * Only the host queue has shared state - the guest queues do not
  523. * need to synchronize access using a queue mutex.
  524. */
  525. if (produce_q->kernel_if->host) {
  526. produce_q->kernel_if->mutex = &produce_q->kernel_if->__mutex;
  527. consume_q->kernel_if->mutex = &produce_q->kernel_if->__mutex;
  528. mutex_init(produce_q->kernel_if->mutex);
  529. }
  530. }
  531. /*
  532. * Cleans up the mutex for the pair of queues.
  533. */
  534. static void qp_cleanup_queue_mutex(struct vmci_queue *produce_q,
  535. struct vmci_queue *consume_q)
  536. {
  537. if (produce_q->kernel_if->host) {
  538. produce_q->kernel_if->mutex = NULL;
  539. consume_q->kernel_if->mutex = NULL;
  540. }
  541. }
  542. /*
  543. * Acquire the mutex for the queue. Note that the produce_q and
  544. * the consume_q share a mutex. So, only one of the two need to
  545. * be passed in to this routine. Either will work just fine.
  546. */
  547. static void qp_acquire_queue_mutex(struct vmci_queue *queue)
  548. {
  549. if (queue->kernel_if->host)
  550. mutex_lock(queue->kernel_if->mutex);
  551. }
  552. /*
  553. * Release the mutex for the queue. Note that the produce_q and
  554. * the consume_q share a mutex. So, only one of the two need to
  555. * be passed in to this routine. Either will work just fine.
  556. */
  557. static void qp_release_queue_mutex(struct vmci_queue *queue)
  558. {
  559. if (queue->kernel_if->host)
  560. mutex_unlock(queue->kernel_if->mutex);
  561. }
  562. /*
  563. * Helper function to release pages in the PageStoreAttachInfo
  564. * previously obtained using get_user_pages.
  565. */
  566. static void qp_release_pages(struct page **pages,
  567. u64 num_pages, bool dirty)
  568. {
  569. int i;
  570. for (i = 0; i < num_pages; i++) {
  571. if (dirty)
  572. set_page_dirty_lock(pages[i]);
  573. put_page(pages[i]);
  574. pages[i] = NULL;
  575. }
  576. }
  577. /*
  578. * Lock the user pages referenced by the {produce,consume}Buffer
  579. * struct into memory and populate the {produce,consume}Pages
  580. * arrays in the attach structure with them.
  581. */
  582. static int qp_host_get_user_memory(u64 produce_uva,
  583. u64 consume_uva,
  584. struct vmci_queue *produce_q,
  585. struct vmci_queue *consume_q)
  586. {
  587. int retval;
  588. int err = VMCI_SUCCESS;
  589. retval = get_user_pages_fast((uintptr_t) produce_uva,
  590. produce_q->kernel_if->num_pages,
  591. FOLL_WRITE,
  592. produce_q->kernel_if->u.h.header_page);
  593. if (retval < (int)produce_q->kernel_if->num_pages) {
  594. pr_debug("get_user_pages_fast(produce) failed (retval=%d)",
  595. retval);
  596. if (retval > 0)
  597. qp_release_pages(produce_q->kernel_if->u.h.header_page,
  598. retval, false);
  599. err = VMCI_ERROR_NO_MEM;
  600. goto out;
  601. }
  602. retval = get_user_pages_fast((uintptr_t) consume_uva,
  603. consume_q->kernel_if->num_pages,
  604. FOLL_WRITE,
  605. consume_q->kernel_if->u.h.header_page);
  606. if (retval < (int)consume_q->kernel_if->num_pages) {
  607. pr_debug("get_user_pages_fast(consume) failed (retval=%d)",
  608. retval);
  609. if (retval > 0)
  610. qp_release_pages(consume_q->kernel_if->u.h.header_page,
  611. retval, false);
  612. qp_release_pages(produce_q->kernel_if->u.h.header_page,
  613. produce_q->kernel_if->num_pages, false);
  614. err = VMCI_ERROR_NO_MEM;
  615. }
  616. out:
  617. return err;
  618. }
  619. /*
  620. * Registers the specification of the user pages used for backing a queue
  621. * pair. Enough information to map in pages is stored in the OS specific
  622. * part of the struct vmci_queue structure.
  623. */
  624. static int qp_host_register_user_memory(struct vmci_qp_page_store *page_store,
  625. struct vmci_queue *produce_q,
  626. struct vmci_queue *consume_q)
  627. {
  628. u64 produce_uva;
  629. u64 consume_uva;
  630. /*
  631. * The new style and the old style mapping only differs in
  632. * that we either get a single or two UVAs, so we split the
  633. * single UVA range at the appropriate spot.
  634. */
  635. produce_uva = page_store->pages;
  636. consume_uva = page_store->pages +
  637. produce_q->kernel_if->num_pages * PAGE_SIZE;
  638. return qp_host_get_user_memory(produce_uva, consume_uva, produce_q,
  639. consume_q);
  640. }
  641. /*
  642. * Releases and removes the references to user pages stored in the attach
  643. * struct. Pages are released from the page cache and may become
  644. * swappable again.
  645. */
  646. static void qp_host_unregister_user_memory(struct vmci_queue *produce_q,
  647. struct vmci_queue *consume_q)
  648. {
  649. qp_release_pages(produce_q->kernel_if->u.h.header_page,
  650. produce_q->kernel_if->num_pages, true);
  651. memset(produce_q->kernel_if->u.h.header_page, 0,
  652. sizeof(*produce_q->kernel_if->u.h.header_page) *
  653. produce_q->kernel_if->num_pages);
  654. qp_release_pages(consume_q->kernel_if->u.h.header_page,
  655. consume_q->kernel_if->num_pages, true);
  656. memset(consume_q->kernel_if->u.h.header_page, 0,
  657. sizeof(*consume_q->kernel_if->u.h.header_page) *
  658. consume_q->kernel_if->num_pages);
  659. }
  660. /*
  661. * Once qp_host_register_user_memory has been performed on a
  662. * queue, the queue pair headers can be mapped into the
  663. * kernel. Once mapped, they must be unmapped with
  664. * qp_host_unmap_queues prior to calling
  665. * qp_host_unregister_user_memory.
  666. * Pages are pinned.
  667. */
  668. static int qp_host_map_queues(struct vmci_queue *produce_q,
  669. struct vmci_queue *consume_q)
  670. {
  671. int result;
  672. if (!produce_q->q_header || !consume_q->q_header) {
  673. struct page *headers[2];
  674. if (produce_q->q_header != consume_q->q_header)
  675. return VMCI_ERROR_QUEUEPAIR_MISMATCH;
  676. if (produce_q->kernel_if->u.h.header_page == NULL ||
  677. *produce_q->kernel_if->u.h.header_page == NULL)
  678. return VMCI_ERROR_UNAVAILABLE;
  679. headers[0] = *produce_q->kernel_if->u.h.header_page;
  680. headers[1] = *consume_q->kernel_if->u.h.header_page;
  681. produce_q->q_header = vmap(headers, 2, VM_MAP, PAGE_KERNEL);
  682. if (produce_q->q_header != NULL) {
  683. consume_q->q_header =
  684. (struct vmci_queue_header *)((u8 *)
  685. produce_q->q_header +
  686. PAGE_SIZE);
  687. result = VMCI_SUCCESS;
  688. } else {
  689. pr_warn("vmap failed\n");
  690. result = VMCI_ERROR_NO_MEM;
  691. }
  692. } else {
  693. result = VMCI_SUCCESS;
  694. }
  695. return result;
  696. }
  697. /*
  698. * Unmaps previously mapped queue pair headers from the kernel.
  699. * Pages are unpinned.
  700. */
  701. static int qp_host_unmap_queues(u32 gid,
  702. struct vmci_queue *produce_q,
  703. struct vmci_queue *consume_q)
  704. {
  705. if (produce_q->q_header) {
  706. if (produce_q->q_header < consume_q->q_header)
  707. vunmap(produce_q->q_header);
  708. else
  709. vunmap(consume_q->q_header);
  710. produce_q->q_header = NULL;
  711. consume_q->q_header = NULL;
  712. }
  713. return VMCI_SUCCESS;
  714. }
  715. /*
  716. * Finds the entry in the list corresponding to a given handle. Assumes
  717. * that the list is locked.
  718. */
  719. static struct qp_entry *qp_list_find(struct qp_list *qp_list,
  720. struct vmci_handle handle)
  721. {
  722. struct qp_entry *entry;
  723. if (vmci_handle_is_invalid(handle))
  724. return NULL;
  725. list_for_each_entry(entry, &qp_list->head, list_item) {
  726. if (vmci_handle_is_equal(entry->handle, handle))
  727. return entry;
  728. }
  729. return NULL;
  730. }
  731. /*
  732. * Finds the entry in the list corresponding to a given handle.
  733. */
  734. static struct qp_guest_endpoint *
  735. qp_guest_handle_to_entry(struct vmci_handle handle)
  736. {
  737. struct qp_guest_endpoint *entry;
  738. struct qp_entry *qp = qp_list_find(&qp_guest_endpoints, handle);
  739. entry = qp ? container_of(
  740. qp, struct qp_guest_endpoint, qp) : NULL;
  741. return entry;
  742. }
  743. /*
  744. * Finds the entry in the list corresponding to a given handle.
  745. */
  746. static struct qp_broker_entry *
  747. qp_broker_handle_to_entry(struct vmci_handle handle)
  748. {
  749. struct qp_broker_entry *entry;
  750. struct qp_entry *qp = qp_list_find(&qp_broker_list, handle);
  751. entry = qp ? container_of(
  752. qp, struct qp_broker_entry, qp) : NULL;
  753. return entry;
  754. }
  755. /*
  756. * Dispatches a queue pair event message directly into the local event
  757. * queue.
  758. */
  759. static int qp_notify_peer_local(bool attach, struct vmci_handle handle)
  760. {
  761. u32 context_id = vmci_get_context_id();
  762. struct vmci_event_qp ev;
  763. memset(&ev, 0, sizeof(ev));
  764. ev.msg.hdr.dst = vmci_make_handle(context_id, VMCI_EVENT_HANDLER);
  765. ev.msg.hdr.src = vmci_make_handle(VMCI_HYPERVISOR_CONTEXT_ID,
  766. VMCI_CONTEXT_RESOURCE_ID);
  767. ev.msg.hdr.payload_size = sizeof(ev) - sizeof(ev.msg.hdr);
  768. ev.msg.event_data.event =
  769. attach ? VMCI_EVENT_QP_PEER_ATTACH : VMCI_EVENT_QP_PEER_DETACH;
  770. ev.payload.peer_id = context_id;
  771. ev.payload.handle = handle;
  772. return vmci_event_dispatch(&ev.msg.hdr);
  773. }
  774. /*
  775. * Allocates and initializes a qp_guest_endpoint structure.
  776. * Allocates a queue_pair rid (and handle) iff the given entry has
  777. * an invalid handle. 0 through VMCI_RESERVED_RESOURCE_ID_MAX
  778. * are reserved handles. Assumes that the QP list mutex is held
  779. * by the caller.
  780. */
  781. static struct qp_guest_endpoint *
  782. qp_guest_endpoint_create(struct vmci_handle handle,
  783. u32 peer,
  784. u32 flags,
  785. u64 produce_size,
  786. u64 consume_size,
  787. void *produce_q,
  788. void *consume_q)
  789. {
  790. int result;
  791. struct qp_guest_endpoint *entry;
  792. /* One page each for the queue headers. */
  793. const u64 num_ppns = DIV_ROUND_UP(produce_size, PAGE_SIZE) +
  794. DIV_ROUND_UP(consume_size, PAGE_SIZE) + 2;
  795. if (vmci_handle_is_invalid(handle)) {
  796. u32 context_id = vmci_get_context_id();
  797. handle = vmci_make_handle(context_id, VMCI_INVALID_ID);
  798. }
  799. entry = kzalloc(sizeof(*entry), GFP_KERNEL);
  800. if (entry) {
  801. entry->qp.peer = peer;
  802. entry->qp.flags = flags;
  803. entry->qp.produce_size = produce_size;
  804. entry->qp.consume_size = consume_size;
  805. entry->qp.ref_count = 0;
  806. entry->num_ppns = num_ppns;
  807. entry->produce_q = produce_q;
  808. entry->consume_q = consume_q;
  809. INIT_LIST_HEAD(&entry->qp.list_item);
  810. /* Add resource obj */
  811. result = vmci_resource_add(&entry->resource,
  812. VMCI_RESOURCE_TYPE_QPAIR_GUEST,
  813. handle);
  814. entry->qp.handle = vmci_resource_handle(&entry->resource);
  815. if ((result != VMCI_SUCCESS) ||
  816. qp_list_find(&qp_guest_endpoints, entry->qp.handle)) {
  817. pr_warn("Failed to add new resource (handle=0x%x:0x%x), error: %d",
  818. handle.context, handle.resource, result);
  819. kfree(entry);
  820. entry = NULL;
  821. }
  822. }
  823. return entry;
  824. }
  825. /*
  826. * Frees a qp_guest_endpoint structure.
  827. */
  828. static void qp_guest_endpoint_destroy(struct qp_guest_endpoint *entry)
  829. {
  830. qp_free_ppn_set(&entry->ppn_set);
  831. qp_cleanup_queue_mutex(entry->produce_q, entry->consume_q);
  832. qp_free_queue(entry->produce_q, entry->qp.produce_size);
  833. qp_free_queue(entry->consume_q, entry->qp.consume_size);
  834. /* Unlink from resource hash table and free callback */
  835. vmci_resource_remove(&entry->resource);
  836. kfree(entry);
  837. }
  838. /*
  839. * Helper to make a queue_pairAlloc hypercall when the driver is
  840. * supporting a guest device.
  841. */
  842. static int qp_alloc_hypercall(const struct qp_guest_endpoint *entry)
  843. {
  844. struct vmci_qp_alloc_msg *alloc_msg;
  845. size_t msg_size;
  846. size_t ppn_size;
  847. int result;
  848. if (!entry || entry->num_ppns <= 2)
  849. return VMCI_ERROR_INVALID_ARGS;
  850. ppn_size = vmci_use_ppn64() ? sizeof(u64) : sizeof(u32);
  851. msg_size = sizeof(*alloc_msg) +
  852. (size_t) entry->num_ppns * ppn_size;
  853. alloc_msg = kmalloc(msg_size, GFP_KERNEL);
  854. if (!alloc_msg)
  855. return VMCI_ERROR_NO_MEM;
  856. alloc_msg->hdr.dst = vmci_make_handle(VMCI_HYPERVISOR_CONTEXT_ID,
  857. VMCI_QUEUEPAIR_ALLOC);
  858. alloc_msg->hdr.src = VMCI_ANON_SRC_HANDLE;
  859. alloc_msg->hdr.payload_size = msg_size - VMCI_DG_HEADERSIZE;
  860. alloc_msg->handle = entry->qp.handle;
  861. alloc_msg->peer = entry->qp.peer;
  862. alloc_msg->flags = entry->qp.flags;
  863. alloc_msg->produce_size = entry->qp.produce_size;
  864. alloc_msg->consume_size = entry->qp.consume_size;
  865. alloc_msg->num_ppns = entry->num_ppns;
  866. result = qp_populate_ppn_set((u8 *)alloc_msg + sizeof(*alloc_msg),
  867. &entry->ppn_set);
  868. if (result == VMCI_SUCCESS)
  869. result = vmci_send_datagram(&alloc_msg->hdr);
  870. kfree(alloc_msg);
  871. return result;
  872. }
  873. /*
  874. * Helper to make a queue_pairDetach hypercall when the driver is
  875. * supporting a guest device.
  876. */
  877. static int qp_detatch_hypercall(struct vmci_handle handle)
  878. {
  879. struct vmci_qp_detach_msg detach_msg;
  880. detach_msg.hdr.dst = vmci_make_handle(VMCI_HYPERVISOR_CONTEXT_ID,
  881. VMCI_QUEUEPAIR_DETACH);
  882. detach_msg.hdr.src = VMCI_ANON_SRC_HANDLE;
  883. detach_msg.hdr.payload_size = sizeof(handle);
  884. detach_msg.handle = handle;
  885. return vmci_send_datagram(&detach_msg.hdr);
  886. }
  887. /*
  888. * Adds the given entry to the list. Assumes that the list is locked.
  889. */
  890. static void qp_list_add_entry(struct qp_list *qp_list, struct qp_entry *entry)
  891. {
  892. if (entry)
  893. list_add(&entry->list_item, &qp_list->head);
  894. }
  895. /*
  896. * Removes the given entry from the list. Assumes that the list is locked.
  897. */
  898. static void qp_list_remove_entry(struct qp_list *qp_list,
  899. struct qp_entry *entry)
  900. {
  901. if (entry)
  902. list_del(&entry->list_item);
  903. }
  904. /*
  905. * Helper for VMCI queue_pair detach interface. Frees the physical
  906. * pages for the queue pair.
  907. */
  908. static int qp_detatch_guest_work(struct vmci_handle handle)
  909. {
  910. int result;
  911. struct qp_guest_endpoint *entry;
  912. u32 ref_count = ~0; /* To avoid compiler warning below */
  913. mutex_lock(&qp_guest_endpoints.mutex);
  914. entry = qp_guest_handle_to_entry(handle);
  915. if (!entry) {
  916. mutex_unlock(&qp_guest_endpoints.mutex);
  917. return VMCI_ERROR_NOT_FOUND;
  918. }
  919. if (entry->qp.flags & VMCI_QPFLAG_LOCAL) {
  920. result = VMCI_SUCCESS;
  921. if (entry->qp.ref_count > 1) {
  922. result = qp_notify_peer_local(false, handle);
  923. /*
  924. * We can fail to notify a local queuepair
  925. * because we can't allocate. We still want
  926. * to release the entry if that happens, so
  927. * don't bail out yet.
  928. */
  929. }
  930. } else {
  931. result = qp_detatch_hypercall(handle);
  932. if (result < VMCI_SUCCESS) {
  933. /*
  934. * We failed to notify a non-local queuepair.
  935. * That other queuepair might still be
  936. * accessing the shared memory, so don't
  937. * release the entry yet. It will get cleaned
  938. * up by VMCIqueue_pair_Exit() if necessary
  939. * (assuming we are going away, otherwise why
  940. * did this fail?).
  941. */
  942. mutex_unlock(&qp_guest_endpoints.mutex);
  943. return result;
  944. }
  945. }
  946. /*
  947. * If we get here then we either failed to notify a local queuepair, or
  948. * we succeeded in all cases. Release the entry if required.
  949. */
  950. entry->qp.ref_count--;
  951. if (entry->qp.ref_count == 0)
  952. qp_list_remove_entry(&qp_guest_endpoints, &entry->qp);
  953. /* If we didn't remove the entry, this could change once we unlock. */
  954. if (entry)
  955. ref_count = entry->qp.ref_count;
  956. mutex_unlock(&qp_guest_endpoints.mutex);
  957. if (ref_count == 0)
  958. qp_guest_endpoint_destroy(entry);
  959. return result;
  960. }
  961. /*
  962. * This functions handles the actual allocation of a VMCI queue
  963. * pair guest endpoint. Allocates physical pages for the queue
  964. * pair. It makes OS dependent calls through generic wrappers.
  965. */
  966. static int qp_alloc_guest_work(struct vmci_handle *handle,
  967. struct vmci_queue **produce_q,
  968. u64 produce_size,
  969. struct vmci_queue **consume_q,
  970. u64 consume_size,
  971. u32 peer,
  972. u32 flags,
  973. u32 priv_flags)
  974. {
  975. const u64 num_produce_pages =
  976. DIV_ROUND_UP(produce_size, PAGE_SIZE) + 1;
  977. const u64 num_consume_pages =
  978. DIV_ROUND_UP(consume_size, PAGE_SIZE) + 1;
  979. void *my_produce_q = NULL;
  980. void *my_consume_q = NULL;
  981. int result;
  982. struct qp_guest_endpoint *queue_pair_entry = NULL;
  983. if (priv_flags != VMCI_NO_PRIVILEGE_FLAGS)
  984. return VMCI_ERROR_NO_ACCESS;
  985. mutex_lock(&qp_guest_endpoints.mutex);
  986. queue_pair_entry = qp_guest_handle_to_entry(*handle);
  987. if (queue_pair_entry) {
  988. if (queue_pair_entry->qp.flags & VMCI_QPFLAG_LOCAL) {
  989. /* Local attach case. */
  990. if (queue_pair_entry->qp.ref_count > 1) {
  991. pr_devel("Error attempting to attach more than once\n");
  992. result = VMCI_ERROR_UNAVAILABLE;
  993. goto error_keep_entry;
  994. }
  995. if (queue_pair_entry->qp.produce_size != consume_size ||
  996. queue_pair_entry->qp.consume_size !=
  997. produce_size ||
  998. queue_pair_entry->qp.flags !=
  999. (flags & ~VMCI_QPFLAG_ATTACH_ONLY)) {
  1000. pr_devel("Error mismatched queue pair in local attach\n");
  1001. result = VMCI_ERROR_QUEUEPAIR_MISMATCH;
  1002. goto error_keep_entry;
  1003. }
  1004. /*
  1005. * Do a local attach. We swap the consume and
  1006. * produce queues for the attacher and deliver
  1007. * an attach event.
  1008. */
  1009. result = qp_notify_peer_local(true, *handle);
  1010. if (result < VMCI_SUCCESS)
  1011. goto error_keep_entry;
  1012. my_produce_q = queue_pair_entry->consume_q;
  1013. my_consume_q = queue_pair_entry->produce_q;
  1014. goto out;
  1015. }
  1016. result = VMCI_ERROR_ALREADY_EXISTS;
  1017. goto error_keep_entry;
  1018. }
  1019. my_produce_q = qp_alloc_queue(produce_size, flags);
  1020. if (!my_produce_q) {
  1021. pr_warn("Error allocating pages for produce queue\n");
  1022. result = VMCI_ERROR_NO_MEM;
  1023. goto error;
  1024. }
  1025. my_consume_q = qp_alloc_queue(consume_size, flags);
  1026. if (!my_consume_q) {
  1027. pr_warn("Error allocating pages for consume queue\n");
  1028. result = VMCI_ERROR_NO_MEM;
  1029. goto error;
  1030. }
  1031. queue_pair_entry = qp_guest_endpoint_create(*handle, peer, flags,
  1032. produce_size, consume_size,
  1033. my_produce_q, my_consume_q);
  1034. if (!queue_pair_entry) {
  1035. pr_warn("Error allocating memory in %s\n", __func__);
  1036. result = VMCI_ERROR_NO_MEM;
  1037. goto error;
  1038. }
  1039. result = qp_alloc_ppn_set(my_produce_q, num_produce_pages, my_consume_q,
  1040. num_consume_pages,
  1041. &queue_pair_entry->ppn_set);
  1042. if (result < VMCI_SUCCESS) {
  1043. pr_warn("qp_alloc_ppn_set failed\n");
  1044. goto error;
  1045. }
  1046. /*
  1047. * It's only necessary to notify the host if this queue pair will be
  1048. * attached to from another context.
  1049. */
  1050. if (queue_pair_entry->qp.flags & VMCI_QPFLAG_LOCAL) {
  1051. /* Local create case. */
  1052. u32 context_id = vmci_get_context_id();
  1053. /*
  1054. * Enforce similar checks on local queue pairs as we
  1055. * do for regular ones. The handle's context must
  1056. * match the creator or attacher context id (here they
  1057. * are both the current context id) and the
  1058. * attach-only flag cannot exist during create. We
  1059. * also ensure specified peer is this context or an
  1060. * invalid one.
  1061. */
  1062. if (queue_pair_entry->qp.handle.context != context_id ||
  1063. (queue_pair_entry->qp.peer != VMCI_INVALID_ID &&
  1064. queue_pair_entry->qp.peer != context_id)) {
  1065. result = VMCI_ERROR_NO_ACCESS;
  1066. goto error;
  1067. }
  1068. if (queue_pair_entry->qp.flags & VMCI_QPFLAG_ATTACH_ONLY) {
  1069. result = VMCI_ERROR_NOT_FOUND;
  1070. goto error;
  1071. }
  1072. } else {
  1073. result = qp_alloc_hypercall(queue_pair_entry);
  1074. if (result < VMCI_SUCCESS) {
  1075. pr_devel("qp_alloc_hypercall result = %d\n", result);
  1076. goto error;
  1077. }
  1078. }
  1079. qp_init_queue_mutex((struct vmci_queue *)my_produce_q,
  1080. (struct vmci_queue *)my_consume_q);
  1081. qp_list_add_entry(&qp_guest_endpoints, &queue_pair_entry->qp);
  1082. out:
  1083. queue_pair_entry->qp.ref_count++;
  1084. *handle = queue_pair_entry->qp.handle;
  1085. *produce_q = (struct vmci_queue *)my_produce_q;
  1086. *consume_q = (struct vmci_queue *)my_consume_q;
  1087. /*
  1088. * We should initialize the queue pair header pages on a local
  1089. * queue pair create. For non-local queue pairs, the
  1090. * hypervisor initializes the header pages in the create step.
  1091. */
  1092. if ((queue_pair_entry->qp.flags & VMCI_QPFLAG_LOCAL) &&
  1093. queue_pair_entry->qp.ref_count == 1) {
  1094. vmci_q_header_init((*produce_q)->q_header, *handle);
  1095. vmci_q_header_init((*consume_q)->q_header, *handle);
  1096. }
  1097. mutex_unlock(&qp_guest_endpoints.mutex);
  1098. return VMCI_SUCCESS;
  1099. error:
  1100. mutex_unlock(&qp_guest_endpoints.mutex);
  1101. if (queue_pair_entry) {
  1102. /* The queues will be freed inside the destroy routine. */
  1103. qp_guest_endpoint_destroy(queue_pair_entry);
  1104. } else {
  1105. qp_free_queue(my_produce_q, produce_size);
  1106. qp_free_queue(my_consume_q, consume_size);
  1107. }
  1108. return result;
  1109. error_keep_entry:
  1110. /* This path should only be used when an existing entry was found. */
  1111. mutex_unlock(&qp_guest_endpoints.mutex);
  1112. return result;
  1113. }
  1114. /*
  1115. * The first endpoint issuing a queue pair allocation will create the state
  1116. * of the queue pair in the queue pair broker.
  1117. *
  1118. * If the creator is a guest, it will associate a VMX virtual address range
  1119. * with the queue pair as specified by the page_store. For compatibility with
  1120. * older VMX'en, that would use a separate step to set the VMX virtual
  1121. * address range, the virtual address range can be registered later using
  1122. * vmci_qp_broker_set_page_store. In that case, a page_store of NULL should be
  1123. * used.
  1124. *
  1125. * If the creator is the host, a page_store of NULL should be used as well,
  1126. * since the host is not able to supply a page store for the queue pair.
  1127. *
  1128. * For older VMX and host callers, the queue pair will be created in the
  1129. * VMCIQPB_CREATED_NO_MEM state, and for current VMX callers, it will be
  1130. * created in VMCOQPB_CREATED_MEM state.
  1131. */
  1132. static int qp_broker_create(struct vmci_handle handle,
  1133. u32 peer,
  1134. u32 flags,
  1135. u32 priv_flags,
  1136. u64 produce_size,
  1137. u64 consume_size,
  1138. struct vmci_qp_page_store *page_store,
  1139. struct vmci_ctx *context,
  1140. vmci_event_release_cb wakeup_cb,
  1141. void *client_data, struct qp_broker_entry **ent)
  1142. {
  1143. struct qp_broker_entry *entry = NULL;
  1144. const u32 context_id = vmci_ctx_get_id(context);
  1145. bool is_local = flags & VMCI_QPFLAG_LOCAL;
  1146. int result;
  1147. u64 guest_produce_size;
  1148. u64 guest_consume_size;
  1149. /* Do not create if the caller asked not to. */
  1150. if (flags & VMCI_QPFLAG_ATTACH_ONLY)
  1151. return VMCI_ERROR_NOT_FOUND;
  1152. /*
  1153. * Creator's context ID should match handle's context ID or the creator
  1154. * must allow the context in handle's context ID as the "peer".
  1155. */
  1156. if (handle.context != context_id && handle.context != peer)
  1157. return VMCI_ERROR_NO_ACCESS;
  1158. if (VMCI_CONTEXT_IS_VM(context_id) && VMCI_CONTEXT_IS_VM(peer))
  1159. return VMCI_ERROR_DST_UNREACHABLE;
  1160. /*
  1161. * Creator's context ID for local queue pairs should match the
  1162. * peer, if a peer is specified.
  1163. */
  1164. if (is_local && peer != VMCI_INVALID_ID && context_id != peer)
  1165. return VMCI_ERROR_NO_ACCESS;
  1166. entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
  1167. if (!entry)
  1168. return VMCI_ERROR_NO_MEM;
  1169. if (vmci_ctx_get_id(context) == VMCI_HOST_CONTEXT_ID && !is_local) {
  1170. /*
  1171. * The queue pair broker entry stores values from the guest
  1172. * point of view, so a creating host side endpoint should swap
  1173. * produce and consume values -- unless it is a local queue
  1174. * pair, in which case no swapping is necessary, since the local
  1175. * attacher will swap queues.
  1176. */
  1177. guest_produce_size = consume_size;
  1178. guest_consume_size = produce_size;
  1179. } else {
  1180. guest_produce_size = produce_size;
  1181. guest_consume_size = consume_size;
  1182. }
  1183. entry->qp.handle = handle;
  1184. entry->qp.peer = peer;
  1185. entry->qp.flags = flags;
  1186. entry->qp.produce_size = guest_produce_size;
  1187. entry->qp.consume_size = guest_consume_size;
  1188. entry->qp.ref_count = 1;
  1189. entry->create_id = context_id;
  1190. entry->attach_id = VMCI_INVALID_ID;
  1191. entry->state = VMCIQPB_NEW;
  1192. entry->require_trusted_attach =
  1193. !!(context->priv_flags & VMCI_PRIVILEGE_FLAG_RESTRICTED);
  1194. entry->created_by_trusted =
  1195. !!(priv_flags & VMCI_PRIVILEGE_FLAG_TRUSTED);
  1196. entry->vmci_page_files = false;
  1197. entry->wakeup_cb = wakeup_cb;
  1198. entry->client_data = client_data;
  1199. entry->produce_q = qp_host_alloc_queue(guest_produce_size);
  1200. if (entry->produce_q == NULL) {
  1201. result = VMCI_ERROR_NO_MEM;
  1202. goto error;
  1203. }
  1204. entry->consume_q = qp_host_alloc_queue(guest_consume_size);
  1205. if (entry->consume_q == NULL) {
  1206. result = VMCI_ERROR_NO_MEM;
  1207. goto error;
  1208. }
  1209. qp_init_queue_mutex(entry->produce_q, entry->consume_q);
  1210. INIT_LIST_HEAD(&entry->qp.list_item);
  1211. if (is_local) {
  1212. u8 *tmp;
  1213. entry->local_mem = kcalloc(QPE_NUM_PAGES(entry->qp),
  1214. PAGE_SIZE, GFP_KERNEL);
  1215. if (entry->local_mem == NULL) {
  1216. result = VMCI_ERROR_NO_MEM;
  1217. goto error;
  1218. }
  1219. entry->state = VMCIQPB_CREATED_MEM;
  1220. entry->produce_q->q_header = entry->local_mem;
  1221. tmp = (u8 *)entry->local_mem + PAGE_SIZE *
  1222. (DIV_ROUND_UP(entry->qp.produce_size, PAGE_SIZE) + 1);
  1223. entry->consume_q->q_header = (struct vmci_queue_header *)tmp;
  1224. } else if (page_store) {
  1225. /*
  1226. * The VMX already initialized the queue pair headers, so no
  1227. * need for the kernel side to do that.
  1228. */
  1229. result = qp_host_register_user_memory(page_store,
  1230. entry->produce_q,
  1231. entry->consume_q);
  1232. if (result < VMCI_SUCCESS)
  1233. goto error;
  1234. entry->state = VMCIQPB_CREATED_MEM;
  1235. } else {
  1236. /*
  1237. * A create without a page_store may be either a host
  1238. * side create (in which case we are waiting for the
  1239. * guest side to supply the memory) or an old style
  1240. * queue pair create (in which case we will expect a
  1241. * set page store call as the next step).
  1242. */
  1243. entry->state = VMCIQPB_CREATED_NO_MEM;
  1244. }
  1245. qp_list_add_entry(&qp_broker_list, &entry->qp);
  1246. if (ent != NULL)
  1247. *ent = entry;
  1248. /* Add to resource obj */
  1249. result = vmci_resource_add(&entry->resource,
  1250. VMCI_RESOURCE_TYPE_QPAIR_HOST,
  1251. handle);
  1252. if (result != VMCI_SUCCESS) {
  1253. pr_warn("Failed to add new resource (handle=0x%x:0x%x), error: %d",
  1254. handle.context, handle.resource, result);
  1255. goto error;
  1256. }
  1257. entry->qp.handle = vmci_resource_handle(&entry->resource);
  1258. if (is_local) {
  1259. vmci_q_header_init(entry->produce_q->q_header,
  1260. entry->qp.handle);
  1261. vmci_q_header_init(entry->consume_q->q_header,
  1262. entry->qp.handle);
  1263. }
  1264. vmci_ctx_qp_create(context, entry->qp.handle);
  1265. return VMCI_SUCCESS;
  1266. error:
  1267. if (entry != NULL) {
  1268. qp_host_free_queue(entry->produce_q, guest_produce_size);
  1269. qp_host_free_queue(entry->consume_q, guest_consume_size);
  1270. kfree(entry);
  1271. }
  1272. return result;
  1273. }
  1274. /*
  1275. * Enqueues an event datagram to notify the peer VM attached to
  1276. * the given queue pair handle about attach/detach event by the
  1277. * given VM. Returns Payload size of datagram enqueued on
  1278. * success, error code otherwise.
  1279. */
  1280. static int qp_notify_peer(bool attach,
  1281. struct vmci_handle handle,
  1282. u32 my_id,
  1283. u32 peer_id)
  1284. {
  1285. int rv;
  1286. struct vmci_event_qp ev;
  1287. if (vmci_handle_is_invalid(handle) || my_id == VMCI_INVALID_ID ||
  1288. peer_id == VMCI_INVALID_ID)
  1289. return VMCI_ERROR_INVALID_ARGS;
  1290. /*
  1291. * In vmci_ctx_enqueue_datagram() we enforce the upper limit on
  1292. * number of pending events from the hypervisor to a given VM
  1293. * otherwise a rogue VM could do an arbitrary number of attach
  1294. * and detach operations causing memory pressure in the host
  1295. * kernel.
  1296. */
  1297. memset(&ev, 0, sizeof(ev));
  1298. ev.msg.hdr.dst = vmci_make_handle(peer_id, VMCI_EVENT_HANDLER);
  1299. ev.msg.hdr.src = vmci_make_handle(VMCI_HYPERVISOR_CONTEXT_ID,
  1300. VMCI_CONTEXT_RESOURCE_ID);
  1301. ev.msg.hdr.payload_size = sizeof(ev) - sizeof(ev.msg.hdr);
  1302. ev.msg.event_data.event = attach ?
  1303. VMCI_EVENT_QP_PEER_ATTACH : VMCI_EVENT_QP_PEER_DETACH;
  1304. ev.payload.handle = handle;
  1305. ev.payload.peer_id = my_id;
  1306. rv = vmci_datagram_dispatch(VMCI_HYPERVISOR_CONTEXT_ID,
  1307. &ev.msg.hdr, false);
  1308. if (rv < VMCI_SUCCESS)
  1309. pr_warn("Failed to enqueue queue_pair %s event datagram for context (ID=0x%x)\n",
  1310. attach ? "ATTACH" : "DETACH", peer_id);
  1311. return rv;
  1312. }
  1313. /*
  1314. * The second endpoint issuing a queue pair allocation will attach to
  1315. * the queue pair registered with the queue pair broker.
  1316. *
  1317. * If the attacher is a guest, it will associate a VMX virtual address
  1318. * range with the queue pair as specified by the page_store. At this
  1319. * point, the already attach host endpoint may start using the queue
  1320. * pair, and an attach event is sent to it. For compatibility with
  1321. * older VMX'en, that used a separate step to set the VMX virtual
  1322. * address range, the virtual address range can be registered later
  1323. * using vmci_qp_broker_set_page_store. In that case, a page_store of
  1324. * NULL should be used, and the attach event will be generated once
  1325. * the actual page store has been set.
  1326. *
  1327. * If the attacher is the host, a page_store of NULL should be used as
  1328. * well, since the page store information is already set by the guest.
  1329. *
  1330. * For new VMX and host callers, the queue pair will be moved to the
  1331. * VMCIQPB_ATTACHED_MEM state, and for older VMX callers, it will be
  1332. * moved to the VMCOQPB_ATTACHED_NO_MEM state.
  1333. */
  1334. static int qp_broker_attach(struct qp_broker_entry *entry,
  1335. u32 peer,
  1336. u32 flags,
  1337. u32 priv_flags,
  1338. u64 produce_size,
  1339. u64 consume_size,
  1340. struct vmci_qp_page_store *page_store,
  1341. struct vmci_ctx *context,
  1342. vmci_event_release_cb wakeup_cb,
  1343. void *client_data,
  1344. struct qp_broker_entry **ent)
  1345. {
  1346. const u32 context_id = vmci_ctx_get_id(context);
  1347. bool is_local = flags & VMCI_QPFLAG_LOCAL;
  1348. int result;
  1349. if (entry->state != VMCIQPB_CREATED_NO_MEM &&
  1350. entry->state != VMCIQPB_CREATED_MEM)
  1351. return VMCI_ERROR_UNAVAILABLE;
  1352. if (is_local) {
  1353. if (!(entry->qp.flags & VMCI_QPFLAG_LOCAL) ||
  1354. context_id != entry->create_id) {
  1355. return VMCI_ERROR_INVALID_ARGS;
  1356. }
  1357. } else if (context_id == entry->create_id ||
  1358. context_id == entry->attach_id) {
  1359. return VMCI_ERROR_ALREADY_EXISTS;
  1360. }
  1361. if (VMCI_CONTEXT_IS_VM(context_id) &&
  1362. VMCI_CONTEXT_IS_VM(entry->create_id))
  1363. return VMCI_ERROR_DST_UNREACHABLE;
  1364. /*
  1365. * If we are attaching from a restricted context then the queuepair
  1366. * must have been created by a trusted endpoint.
  1367. */
  1368. if ((context->priv_flags & VMCI_PRIVILEGE_FLAG_RESTRICTED) &&
  1369. !entry->created_by_trusted)
  1370. return VMCI_ERROR_NO_ACCESS;
  1371. /*
  1372. * If we are attaching to a queuepair that was created by a restricted
  1373. * context then we must be trusted.
  1374. */
  1375. if (entry->require_trusted_attach &&
  1376. (!(priv_flags & VMCI_PRIVILEGE_FLAG_TRUSTED)))
  1377. return VMCI_ERROR_NO_ACCESS;
  1378. /*
  1379. * If the creator specifies VMCI_INVALID_ID in "peer" field, access
  1380. * control check is not performed.
  1381. */
  1382. if (entry->qp.peer != VMCI_INVALID_ID && entry->qp.peer != context_id)
  1383. return VMCI_ERROR_NO_ACCESS;
  1384. if (entry->create_id == VMCI_HOST_CONTEXT_ID) {
  1385. /*
  1386. * Do not attach if the caller doesn't support Host Queue Pairs
  1387. * and a host created this queue pair.
  1388. */
  1389. if (!vmci_ctx_supports_host_qp(context))
  1390. return VMCI_ERROR_INVALID_RESOURCE;
  1391. } else if (context_id == VMCI_HOST_CONTEXT_ID) {
  1392. struct vmci_ctx *create_context;
  1393. bool supports_host_qp;
  1394. /*
  1395. * Do not attach a host to a user created queue pair if that
  1396. * user doesn't support host queue pair end points.
  1397. */
  1398. create_context = vmci_ctx_get(entry->create_id);
  1399. supports_host_qp = vmci_ctx_supports_host_qp(create_context);
  1400. vmci_ctx_put(create_context);
  1401. if (!supports_host_qp)
  1402. return VMCI_ERROR_INVALID_RESOURCE;
  1403. }
  1404. if ((entry->qp.flags & ~VMCI_QP_ASYMM) != (flags & ~VMCI_QP_ASYMM_PEER))
  1405. return VMCI_ERROR_QUEUEPAIR_MISMATCH;
  1406. if (context_id != VMCI_HOST_CONTEXT_ID) {
  1407. /*
  1408. * The queue pair broker entry stores values from the guest
  1409. * point of view, so an attaching guest should match the values
  1410. * stored in the entry.
  1411. */
  1412. if (entry->qp.produce_size != produce_size ||
  1413. entry->qp.consume_size != consume_size) {
  1414. return VMCI_ERROR_QUEUEPAIR_MISMATCH;
  1415. }
  1416. } else if (entry->qp.produce_size != consume_size ||
  1417. entry->qp.consume_size != produce_size) {
  1418. return VMCI_ERROR_QUEUEPAIR_MISMATCH;
  1419. }
  1420. if (context_id != VMCI_HOST_CONTEXT_ID) {
  1421. /*
  1422. * If a guest attached to a queue pair, it will supply
  1423. * the backing memory. If this is a pre NOVMVM vmx,
  1424. * the backing memory will be supplied by calling
  1425. * vmci_qp_broker_set_page_store() following the
  1426. * return of the vmci_qp_broker_alloc() call. If it is
  1427. * a vmx of version NOVMVM or later, the page store
  1428. * must be supplied as part of the
  1429. * vmci_qp_broker_alloc call. Under all circumstances
  1430. * must the initially created queue pair not have any
  1431. * memory associated with it already.
  1432. */
  1433. if (entry->state != VMCIQPB_CREATED_NO_MEM)
  1434. return VMCI_ERROR_INVALID_ARGS;
  1435. if (page_store != NULL) {
  1436. /*
  1437. * Patch up host state to point to guest
  1438. * supplied memory. The VMX already
  1439. * initialized the queue pair headers, so no
  1440. * need for the kernel side to do that.
  1441. */
  1442. result = qp_host_register_user_memory(page_store,
  1443. entry->produce_q,
  1444. entry->consume_q);
  1445. if (result < VMCI_SUCCESS)
  1446. return result;
  1447. entry->state = VMCIQPB_ATTACHED_MEM;
  1448. } else {
  1449. entry->state = VMCIQPB_ATTACHED_NO_MEM;
  1450. }
  1451. } else if (entry->state == VMCIQPB_CREATED_NO_MEM) {
  1452. /*
  1453. * The host side is attempting to attach to a queue
  1454. * pair that doesn't have any memory associated with
  1455. * it. This must be a pre NOVMVM vmx that hasn't set
  1456. * the page store information yet, or a quiesced VM.
  1457. */
  1458. return VMCI_ERROR_UNAVAILABLE;
  1459. } else {
  1460. /* The host side has successfully attached to a queue pair. */
  1461. entry->state = VMCIQPB_ATTACHED_MEM;
  1462. }
  1463. if (entry->state == VMCIQPB_ATTACHED_MEM) {
  1464. result =
  1465. qp_notify_peer(true, entry->qp.handle, context_id,
  1466. entry->create_id);
  1467. if (result < VMCI_SUCCESS)
  1468. pr_warn("Failed to notify peer (ID=0x%x) of attach to queue pair (handle=0x%x:0x%x)\n",
  1469. entry->create_id, entry->qp.handle.context,
  1470. entry->qp.handle.resource);
  1471. }
  1472. entry->attach_id = context_id;
  1473. entry->qp.ref_count++;
  1474. if (wakeup_cb) {
  1475. entry->wakeup_cb = wakeup_cb;
  1476. entry->client_data = client_data;
  1477. }
  1478. /*
  1479. * When attaching to local queue pairs, the context already has
  1480. * an entry tracking the queue pair, so don't add another one.
  1481. */
  1482. if (!is_local)
  1483. vmci_ctx_qp_create(context, entry->qp.handle);
  1484. if (ent != NULL)
  1485. *ent = entry;
  1486. return VMCI_SUCCESS;
  1487. }
  1488. /*
  1489. * queue_pair_Alloc for use when setting up queue pair endpoints
  1490. * on the host.
  1491. */
  1492. static int qp_broker_alloc(struct vmci_handle handle,
  1493. u32 peer,
  1494. u32 flags,
  1495. u32 priv_flags,
  1496. u64 produce_size,
  1497. u64 consume_size,
  1498. struct vmci_qp_page_store *page_store,
  1499. struct vmci_ctx *context,
  1500. vmci_event_release_cb wakeup_cb,
  1501. void *client_data,
  1502. struct qp_broker_entry **ent,
  1503. bool *swap)
  1504. {
  1505. const u32 context_id = vmci_ctx_get_id(context);
  1506. bool create;
  1507. struct qp_broker_entry *entry = NULL;
  1508. bool is_local = flags & VMCI_QPFLAG_LOCAL;
  1509. int result;
  1510. if (vmci_handle_is_invalid(handle) ||
  1511. (flags & ~VMCI_QP_ALL_FLAGS) || is_local ||
  1512. !(produce_size || consume_size) ||
  1513. !context || context_id == VMCI_INVALID_ID ||
  1514. handle.context == VMCI_INVALID_ID) {
  1515. return VMCI_ERROR_INVALID_ARGS;
  1516. }
  1517. if (page_store && !VMCI_QP_PAGESTORE_IS_WELLFORMED(page_store))
  1518. return VMCI_ERROR_INVALID_ARGS;
  1519. /*
  1520. * In the initial argument check, we ensure that non-vmkernel hosts
  1521. * are not allowed to create local queue pairs.
  1522. */
  1523. mutex_lock(&qp_broker_list.mutex);
  1524. if (!is_local && vmci_ctx_qp_exists(context, handle)) {
  1525. pr_devel("Context (ID=0x%x) already attached to queue pair (handle=0x%x:0x%x)\n",
  1526. context_id, handle.context, handle.resource);
  1527. mutex_unlock(&qp_broker_list.mutex);
  1528. return VMCI_ERROR_ALREADY_EXISTS;
  1529. }
  1530. if (handle.resource != VMCI_INVALID_ID)
  1531. entry = qp_broker_handle_to_entry(handle);
  1532. if (!entry) {
  1533. create = true;
  1534. result =
  1535. qp_broker_create(handle, peer, flags, priv_flags,
  1536. produce_size, consume_size, page_store,
  1537. context, wakeup_cb, client_data, ent);
  1538. } else {
  1539. create = false;
  1540. result =
  1541. qp_broker_attach(entry, peer, flags, priv_flags,
  1542. produce_size, consume_size, page_store,
  1543. context, wakeup_cb, client_data, ent);
  1544. }
  1545. mutex_unlock(&qp_broker_list.mutex);
  1546. if (swap)
  1547. *swap = (context_id == VMCI_HOST_CONTEXT_ID) &&
  1548. !(create && is_local);
  1549. return result;
  1550. }
  1551. /*
  1552. * This function implements the kernel API for allocating a queue
  1553. * pair.
  1554. */
  1555. static int qp_alloc_host_work(struct vmci_handle *handle,
  1556. struct vmci_queue **produce_q,
  1557. u64 produce_size,
  1558. struct vmci_queue **consume_q,
  1559. u64 consume_size,
  1560. u32 peer,
  1561. u32 flags,
  1562. u32 priv_flags,
  1563. vmci_event_release_cb wakeup_cb,
  1564. void *client_data)
  1565. {
  1566. struct vmci_handle new_handle;
  1567. struct vmci_ctx *context;
  1568. struct qp_broker_entry *entry;
  1569. int result;
  1570. bool swap;
  1571. if (vmci_handle_is_invalid(*handle)) {
  1572. new_handle = vmci_make_handle(
  1573. VMCI_HOST_CONTEXT_ID, VMCI_INVALID_ID);
  1574. } else
  1575. new_handle = *handle;
  1576. context = vmci_ctx_get(VMCI_HOST_CONTEXT_ID);
  1577. entry = NULL;
  1578. result =
  1579. qp_broker_alloc(new_handle, peer, flags, priv_flags,
  1580. produce_size, consume_size, NULL, context,
  1581. wakeup_cb, client_data, &entry, &swap);
  1582. if (result == VMCI_SUCCESS) {
  1583. if (swap) {
  1584. /*
  1585. * If this is a local queue pair, the attacher
  1586. * will swap around produce and consume
  1587. * queues.
  1588. */
  1589. *produce_q = entry->consume_q;
  1590. *consume_q = entry->produce_q;
  1591. } else {
  1592. *produce_q = entry->produce_q;
  1593. *consume_q = entry->consume_q;
  1594. }
  1595. *handle = vmci_resource_handle(&entry->resource);
  1596. } else {
  1597. *handle = VMCI_INVALID_HANDLE;
  1598. pr_devel("queue pair broker failed to alloc (result=%d)\n",
  1599. result);
  1600. }
  1601. vmci_ctx_put(context);
  1602. return result;
  1603. }
  1604. /*
  1605. * Allocates a VMCI queue_pair. Only checks validity of input
  1606. * arguments. The real work is done in the host or guest
  1607. * specific function.
  1608. */
  1609. int vmci_qp_alloc(struct vmci_handle *handle,
  1610. struct vmci_queue **produce_q,
  1611. u64 produce_size,
  1612. struct vmci_queue **consume_q,
  1613. u64 consume_size,
  1614. u32 peer,
  1615. u32 flags,
  1616. u32 priv_flags,
  1617. bool guest_endpoint,
  1618. vmci_event_release_cb wakeup_cb,
  1619. void *client_data)
  1620. {
  1621. if (!handle || !produce_q || !consume_q ||
  1622. (!produce_size && !consume_size) || (flags & ~VMCI_QP_ALL_FLAGS))
  1623. return VMCI_ERROR_INVALID_ARGS;
  1624. if (guest_endpoint) {
  1625. return qp_alloc_guest_work(handle, produce_q,
  1626. produce_size, consume_q,
  1627. consume_size, peer,
  1628. flags, priv_flags);
  1629. } else {
  1630. return qp_alloc_host_work(handle, produce_q,
  1631. produce_size, consume_q,
  1632. consume_size, peer, flags,
  1633. priv_flags, wakeup_cb, client_data);
  1634. }
  1635. }
  1636. /*
  1637. * This function implements the host kernel API for detaching from
  1638. * a queue pair.
  1639. */
  1640. static int qp_detatch_host_work(struct vmci_handle handle)
  1641. {
  1642. int result;
  1643. struct vmci_ctx *context;
  1644. context = vmci_ctx_get(VMCI_HOST_CONTEXT_ID);
  1645. result = vmci_qp_broker_detach(handle, context);
  1646. vmci_ctx_put(context);
  1647. return result;
  1648. }
  1649. /*
  1650. * Detaches from a VMCI queue_pair. Only checks validity of input argument.
  1651. * Real work is done in the host or guest specific function.
  1652. */
  1653. static int qp_detatch(struct vmci_handle handle, bool guest_endpoint)
  1654. {
  1655. if (vmci_handle_is_invalid(handle))
  1656. return VMCI_ERROR_INVALID_ARGS;
  1657. if (guest_endpoint)
  1658. return qp_detatch_guest_work(handle);
  1659. else
  1660. return qp_detatch_host_work(handle);
  1661. }
  1662. /*
  1663. * Returns the entry from the head of the list. Assumes that the list is
  1664. * locked.
  1665. */
  1666. static struct qp_entry *qp_list_get_head(struct qp_list *qp_list)
  1667. {
  1668. if (!list_empty(&qp_list->head)) {
  1669. struct qp_entry *entry =
  1670. list_first_entry(&qp_list->head, struct qp_entry,
  1671. list_item);
  1672. return entry;
  1673. }
  1674. return NULL;
  1675. }
  1676. void vmci_qp_broker_exit(void)
  1677. {
  1678. struct qp_entry *entry;
  1679. struct qp_broker_entry *be;
  1680. mutex_lock(&qp_broker_list.mutex);
  1681. while ((entry = qp_list_get_head(&qp_broker_list))) {
  1682. be = (struct qp_broker_entry *)entry;
  1683. qp_list_remove_entry(&qp_broker_list, entry);
  1684. kfree(be);
  1685. }
  1686. mutex_unlock(&qp_broker_list.mutex);
  1687. }
  1688. /*
  1689. * Requests that a queue pair be allocated with the VMCI queue
  1690. * pair broker. Allocates a queue pair entry if one does not
  1691. * exist. Attaches to one if it exists, and retrieves the page
  1692. * files backing that queue_pair. Assumes that the queue pair
  1693. * broker lock is held.
  1694. */
  1695. int vmci_qp_broker_alloc(struct vmci_handle handle,
  1696. u32 peer,
  1697. u32 flags,
  1698. u32 priv_flags,
  1699. u64 produce_size,
  1700. u64 consume_size,
  1701. struct vmci_qp_page_store *page_store,
  1702. struct vmci_ctx *context)
  1703. {
  1704. if (!QP_SIZES_ARE_VALID(produce_size, consume_size))
  1705. return VMCI_ERROR_NO_RESOURCES;
  1706. return qp_broker_alloc(handle, peer, flags, priv_flags,
  1707. produce_size, consume_size,
  1708. page_store, context, NULL, NULL, NULL, NULL);
  1709. }
  1710. /*
  1711. * VMX'en with versions lower than VMCI_VERSION_NOVMVM use a separate
  1712. * step to add the UVAs of the VMX mapping of the queue pair. This function
  1713. * provides backwards compatibility with such VMX'en, and takes care of
  1714. * registering the page store for a queue pair previously allocated by the
  1715. * VMX during create or attach. This function will move the queue pair state
  1716. * to either from VMCIQBP_CREATED_NO_MEM to VMCIQBP_CREATED_MEM or
  1717. * VMCIQBP_ATTACHED_NO_MEM to VMCIQBP_ATTACHED_MEM. If moving to the
  1718. * attached state with memory, the queue pair is ready to be used by the
  1719. * host peer, and an attached event will be generated.
  1720. *
  1721. * Assumes that the queue pair broker lock is held.
  1722. *
  1723. * This function is only used by the hosted platform, since there is no
  1724. * issue with backwards compatibility for vmkernel.
  1725. */
  1726. int vmci_qp_broker_set_page_store(struct vmci_handle handle,
  1727. u64 produce_uva,
  1728. u64 consume_uva,
  1729. struct vmci_ctx *context)
  1730. {
  1731. struct qp_broker_entry *entry;
  1732. int result;
  1733. const u32 context_id = vmci_ctx_get_id(context);
  1734. if (vmci_handle_is_invalid(handle) || !context ||
  1735. context_id == VMCI_INVALID_ID)
  1736. return VMCI_ERROR_INVALID_ARGS;
  1737. /*
  1738. * We only support guest to host queue pairs, so the VMX must
  1739. * supply UVAs for the mapped page files.
  1740. */
  1741. if (produce_uva == 0 || consume_uva == 0)
  1742. return VMCI_ERROR_INVALID_ARGS;
  1743. mutex_lock(&qp_broker_list.mutex);
  1744. if (!vmci_ctx_qp_exists(context, handle)) {
  1745. pr_warn("Context (ID=0x%x) not attached to queue pair (handle=0x%x:0x%x)\n",
  1746. context_id, handle.context, handle.resource);
  1747. result = VMCI_ERROR_NOT_FOUND;
  1748. goto out;
  1749. }
  1750. entry = qp_broker_handle_to_entry(handle);
  1751. if (!entry) {
  1752. result = VMCI_ERROR_NOT_FOUND;
  1753. goto out;
  1754. }
  1755. /*
  1756. * If I'm the owner then I can set the page store.
  1757. *
  1758. * Or, if a host created the queue_pair and I'm the attached peer
  1759. * then I can set the page store.
  1760. */
  1761. if (entry->create_id != context_id &&
  1762. (entry->create_id != VMCI_HOST_CONTEXT_ID ||
  1763. entry->attach_id != context_id)) {
  1764. result = VMCI_ERROR_QUEUEPAIR_NOTOWNER;
  1765. goto out;
  1766. }
  1767. if (entry->state != VMCIQPB_CREATED_NO_MEM &&
  1768. entry->state != VMCIQPB_ATTACHED_NO_MEM) {
  1769. result = VMCI_ERROR_UNAVAILABLE;
  1770. goto out;
  1771. }
  1772. result = qp_host_get_user_memory(produce_uva, consume_uva,
  1773. entry->produce_q, entry->consume_q);
  1774. if (result < VMCI_SUCCESS)
  1775. goto out;
  1776. result = qp_host_map_queues(entry->produce_q, entry->consume_q);
  1777. if (result < VMCI_SUCCESS) {
  1778. qp_host_unregister_user_memory(entry->produce_q,
  1779. entry->consume_q);
  1780. goto out;
  1781. }
  1782. if (entry->state == VMCIQPB_CREATED_NO_MEM)
  1783. entry->state = VMCIQPB_CREATED_MEM;
  1784. else
  1785. entry->state = VMCIQPB_ATTACHED_MEM;
  1786. entry->vmci_page_files = true;
  1787. if (entry->state == VMCIQPB_ATTACHED_MEM) {
  1788. result =
  1789. qp_notify_peer(true, handle, context_id, entry->create_id);
  1790. if (result < VMCI_SUCCESS) {
  1791. pr_warn("Failed to notify peer (ID=0x%x) of attach to queue pair (handle=0x%x:0x%x)\n",
  1792. entry->create_id, entry->qp.handle.context,
  1793. entry->qp.handle.resource);
  1794. }
  1795. }
  1796. result = VMCI_SUCCESS;
  1797. out:
  1798. mutex_unlock(&qp_broker_list.mutex);
  1799. return result;
  1800. }
  1801. /*
  1802. * Resets saved queue headers for the given QP broker
  1803. * entry. Should be used when guest memory becomes available
  1804. * again, or the guest detaches.
  1805. */
  1806. static void qp_reset_saved_headers(struct qp_broker_entry *entry)
  1807. {
  1808. entry->produce_q->saved_header = NULL;
  1809. entry->consume_q->saved_header = NULL;
  1810. }
  1811. /*
  1812. * The main entry point for detaching from a queue pair registered with the
  1813. * queue pair broker. If more than one endpoint is attached to the queue
  1814. * pair, the first endpoint will mainly decrement a reference count and
  1815. * generate a notification to its peer. The last endpoint will clean up
  1816. * the queue pair state registered with the broker.
  1817. *
  1818. * When a guest endpoint detaches, it will unmap and unregister the guest
  1819. * memory backing the queue pair. If the host is still attached, it will
  1820. * no longer be able to access the queue pair content.
  1821. *
  1822. * If the queue pair is already in a state where there is no memory
  1823. * registered for the queue pair (any *_NO_MEM state), it will transition to
  1824. * the VMCIQPB_SHUTDOWN_NO_MEM state. This will also happen, if a guest
  1825. * endpoint is the first of two endpoints to detach. If the host endpoint is
  1826. * the first out of two to detach, the queue pair will move to the
  1827. * VMCIQPB_SHUTDOWN_MEM state.
  1828. */
  1829. int vmci_qp_broker_detach(struct vmci_handle handle, struct vmci_ctx *context)
  1830. {
  1831. struct qp_broker_entry *entry;
  1832. const u32 context_id = vmci_ctx_get_id(context);
  1833. u32 peer_id;
  1834. bool is_local = false;
  1835. int result;
  1836. if (vmci_handle_is_invalid(handle) || !context ||
  1837. context_id == VMCI_INVALID_ID) {
  1838. return VMCI_ERROR_INVALID_ARGS;
  1839. }
  1840. mutex_lock(&qp_broker_list.mutex);
  1841. if (!vmci_ctx_qp_exists(context, handle)) {
  1842. pr_devel("Context (ID=0x%x) not attached to queue pair (handle=0x%x:0x%x)\n",
  1843. context_id, handle.context, handle.resource);
  1844. result = VMCI_ERROR_NOT_FOUND;
  1845. goto out;
  1846. }
  1847. entry = qp_broker_handle_to_entry(handle);
  1848. if (!entry) {
  1849. pr_devel("Context (ID=0x%x) reports being attached to queue pair(handle=0x%x:0x%x) that isn't present in broker\n",
  1850. context_id, handle.context, handle.resource);
  1851. result = VMCI_ERROR_NOT_FOUND;
  1852. goto out;
  1853. }
  1854. if (context_id != entry->create_id && context_id != entry->attach_id) {
  1855. result = VMCI_ERROR_QUEUEPAIR_NOTATTACHED;
  1856. goto out;
  1857. }
  1858. if (context_id == entry->create_id) {
  1859. peer_id = entry->attach_id;
  1860. entry->create_id = VMCI_INVALID_ID;
  1861. } else {
  1862. peer_id = entry->create_id;
  1863. entry->attach_id = VMCI_INVALID_ID;
  1864. }
  1865. entry->qp.ref_count--;
  1866. is_local = entry->qp.flags & VMCI_QPFLAG_LOCAL;
  1867. if (context_id != VMCI_HOST_CONTEXT_ID) {
  1868. bool headers_mapped;
  1869. /*
  1870. * Pre NOVMVM vmx'en may detach from a queue pair
  1871. * before setting the page store, and in that case
  1872. * there is no user memory to detach from. Also, more
  1873. * recent VMX'en may detach from a queue pair in the
  1874. * quiesced state.
  1875. */
  1876. qp_acquire_queue_mutex(entry->produce_q);
  1877. headers_mapped = entry->produce_q->q_header ||
  1878. entry->consume_q->q_header;
  1879. if (QPBROKERSTATE_HAS_MEM(entry)) {
  1880. result =
  1881. qp_host_unmap_queues(INVALID_VMCI_GUEST_MEM_ID,
  1882. entry->produce_q,
  1883. entry->consume_q);
  1884. if (result < VMCI_SUCCESS)
  1885. pr_warn("Failed to unmap queue headers for queue pair (handle=0x%x:0x%x,result=%d)\n",
  1886. handle.context, handle.resource,
  1887. result);
  1888. qp_host_unregister_user_memory(entry->produce_q,
  1889. entry->consume_q);
  1890. }
  1891. if (!headers_mapped)
  1892. qp_reset_saved_headers(entry);
  1893. qp_release_queue_mutex(entry->produce_q);
  1894. if (!headers_mapped && entry->wakeup_cb)
  1895. entry->wakeup_cb(entry->client_data);
  1896. } else {
  1897. if (entry->wakeup_cb) {
  1898. entry->wakeup_cb = NULL;
  1899. entry->client_data = NULL;
  1900. }
  1901. }
  1902. if (entry->qp.ref_count == 0) {
  1903. qp_list_remove_entry(&qp_broker_list, &entry->qp);
  1904. if (is_local)
  1905. kfree(entry->local_mem);
  1906. qp_cleanup_queue_mutex(entry->produce_q, entry->consume_q);
  1907. qp_host_free_queue(entry->produce_q, entry->qp.produce_size);
  1908. qp_host_free_queue(entry->consume_q, entry->qp.consume_size);
  1909. /* Unlink from resource hash table and free callback */
  1910. vmci_resource_remove(&entry->resource);
  1911. kfree(entry);
  1912. vmci_ctx_qp_destroy(context, handle);
  1913. } else {
  1914. qp_notify_peer(false, handle, context_id, peer_id);
  1915. if (context_id == VMCI_HOST_CONTEXT_ID &&
  1916. QPBROKERSTATE_HAS_MEM(entry)) {
  1917. entry->state = VMCIQPB_SHUTDOWN_MEM;
  1918. } else {
  1919. entry->state = VMCIQPB_SHUTDOWN_NO_MEM;
  1920. }
  1921. if (!is_local)
  1922. vmci_ctx_qp_destroy(context, handle);
  1923. }
  1924. result = VMCI_SUCCESS;
  1925. out:
  1926. mutex_unlock(&qp_broker_list.mutex);
  1927. return result;
  1928. }
  1929. /*
  1930. * Establishes the necessary mappings for a queue pair given a
  1931. * reference to the queue pair guest memory. This is usually
  1932. * called when a guest is unquiesced and the VMX is allowed to
  1933. * map guest memory once again.
  1934. */
  1935. int vmci_qp_broker_map(struct vmci_handle handle,
  1936. struct vmci_ctx *context,
  1937. u64 guest_mem)
  1938. {
  1939. struct qp_broker_entry *entry;
  1940. const u32 context_id = vmci_ctx_get_id(context);
  1941. int result;
  1942. if (vmci_handle_is_invalid(handle) || !context ||
  1943. context_id == VMCI_INVALID_ID)
  1944. return VMCI_ERROR_INVALID_ARGS;
  1945. mutex_lock(&qp_broker_list.mutex);
  1946. if (!vmci_ctx_qp_exists(context, handle)) {
  1947. pr_devel("Context (ID=0x%x) not attached to queue pair (handle=0x%x:0x%x)\n",
  1948. context_id, handle.context, handle.resource);
  1949. result = VMCI_ERROR_NOT_FOUND;
  1950. goto out;
  1951. }
  1952. entry = qp_broker_handle_to_entry(handle);
  1953. if (!entry) {
  1954. pr_devel("Context (ID=0x%x) reports being attached to queue pair (handle=0x%x:0x%x) that isn't present in broker\n",
  1955. context_id, handle.context, handle.resource);
  1956. result = VMCI_ERROR_NOT_FOUND;
  1957. goto out;
  1958. }
  1959. if (context_id != entry->create_id && context_id != entry->attach_id) {
  1960. result = VMCI_ERROR_QUEUEPAIR_NOTATTACHED;
  1961. goto out;
  1962. }
  1963. result = VMCI_SUCCESS;
  1964. if (context_id != VMCI_HOST_CONTEXT_ID &&
  1965. !QPBROKERSTATE_HAS_MEM(entry)) {
  1966. struct vmci_qp_page_store page_store;
  1967. page_store.pages = guest_mem;
  1968. page_store.len = QPE_NUM_PAGES(entry->qp);
  1969. qp_acquire_queue_mutex(entry->produce_q);
  1970. qp_reset_saved_headers(entry);
  1971. result =
  1972. qp_host_register_user_memory(&page_store,
  1973. entry->produce_q,
  1974. entry->consume_q);
  1975. qp_release_queue_mutex(entry->produce_q);
  1976. if (result == VMCI_SUCCESS) {
  1977. /* Move state from *_NO_MEM to *_MEM */
  1978. entry->state++;
  1979. if (entry->wakeup_cb)
  1980. entry->wakeup_cb(entry->client_data);
  1981. }
  1982. }
  1983. out:
  1984. mutex_unlock(&qp_broker_list.mutex);
  1985. return result;
  1986. }
  1987. /*
  1988. * Saves a snapshot of the queue headers for the given QP broker
  1989. * entry. Should be used when guest memory is unmapped.
  1990. * Results:
  1991. * VMCI_SUCCESS on success, appropriate error code if guest memory
  1992. * can't be accessed..
  1993. */
  1994. static int qp_save_headers(struct qp_broker_entry *entry)
  1995. {
  1996. int result;
  1997. if (entry->produce_q->saved_header != NULL &&
  1998. entry->consume_q->saved_header != NULL) {
  1999. /*
  2000. * If the headers have already been saved, we don't need to do
  2001. * it again, and we don't want to map in the headers
  2002. * unnecessarily.
  2003. */
  2004. return VMCI_SUCCESS;
  2005. }
  2006. if (NULL == entry->produce_q->q_header ||
  2007. NULL == entry->consume_q->q_header) {
  2008. result = qp_host_map_queues(entry->produce_q, entry->consume_q);
  2009. if (result < VMCI_SUCCESS)
  2010. return result;
  2011. }
  2012. memcpy(&entry->saved_produce_q, entry->produce_q->q_header,
  2013. sizeof(entry->saved_produce_q));
  2014. entry->produce_q->saved_header = &entry->saved_produce_q;
  2015. memcpy(&entry->saved_consume_q, entry->consume_q->q_header,
  2016. sizeof(entry->saved_consume_q));
  2017. entry->consume_q->saved_header = &entry->saved_consume_q;
  2018. return VMCI_SUCCESS;
  2019. }
  2020. /*
  2021. * Removes all references to the guest memory of a given queue pair, and
  2022. * will move the queue pair from state *_MEM to *_NO_MEM. It is usually
  2023. * called when a VM is being quiesced where access to guest memory should
  2024. * avoided.
  2025. */
  2026. int vmci_qp_broker_unmap(struct vmci_handle handle,
  2027. struct vmci_ctx *context,
  2028. u32 gid)
  2029. {
  2030. struct qp_broker_entry *entry;
  2031. const u32 context_id = vmci_ctx_get_id(context);
  2032. int result;
  2033. if (vmci_handle_is_invalid(handle) || !context ||
  2034. context_id == VMCI_INVALID_ID)
  2035. return VMCI_ERROR_INVALID_ARGS;
  2036. mutex_lock(&qp_broker_list.mutex);
  2037. if (!vmci_ctx_qp_exists(context, handle)) {
  2038. pr_devel("Context (ID=0x%x) not attached to queue pair (handle=0x%x:0x%x)\n",
  2039. context_id, handle.context, handle.resource);
  2040. result = VMCI_ERROR_NOT_FOUND;
  2041. goto out;
  2042. }
  2043. entry = qp_broker_handle_to_entry(handle);
  2044. if (!entry) {
  2045. pr_devel("Context (ID=0x%x) reports being attached to queue pair (handle=0x%x:0x%x) that isn't present in broker\n",
  2046. context_id, handle.context, handle.resource);
  2047. result = VMCI_ERROR_NOT_FOUND;
  2048. goto out;
  2049. }
  2050. if (context_id != entry->create_id && context_id != entry->attach_id) {
  2051. result = VMCI_ERROR_QUEUEPAIR_NOTATTACHED;
  2052. goto out;
  2053. }
  2054. if (context_id != VMCI_HOST_CONTEXT_ID &&
  2055. QPBROKERSTATE_HAS_MEM(entry)) {
  2056. qp_acquire_queue_mutex(entry->produce_q);
  2057. result = qp_save_headers(entry);
  2058. if (result < VMCI_SUCCESS)
  2059. pr_warn("Failed to save queue headers for queue pair (handle=0x%x:0x%x,result=%d)\n",
  2060. handle.context, handle.resource, result);
  2061. qp_host_unmap_queues(gid, entry->produce_q, entry->consume_q);
  2062. /*
  2063. * On hosted, when we unmap queue pairs, the VMX will also
  2064. * unmap the guest memory, so we invalidate the previously
  2065. * registered memory. If the queue pair is mapped again at a
  2066. * later point in time, we will need to reregister the user
  2067. * memory with a possibly new user VA.
  2068. */
  2069. qp_host_unregister_user_memory(entry->produce_q,
  2070. entry->consume_q);
  2071. /*
  2072. * Move state from *_MEM to *_NO_MEM.
  2073. */
  2074. entry->state--;
  2075. qp_release_queue_mutex(entry->produce_q);
  2076. }
  2077. result = VMCI_SUCCESS;
  2078. out:
  2079. mutex_unlock(&qp_broker_list.mutex);
  2080. return result;
  2081. }
  2082. /*
  2083. * Destroys all guest queue pair endpoints. If active guest queue
  2084. * pairs still exist, hypercalls to attempt detach from these
  2085. * queue pairs will be made. Any failure to detach is silently
  2086. * ignored.
  2087. */
  2088. void vmci_qp_guest_endpoints_exit(void)
  2089. {
  2090. struct qp_entry *entry;
  2091. struct qp_guest_endpoint *ep;
  2092. mutex_lock(&qp_guest_endpoints.mutex);
  2093. while ((entry = qp_list_get_head(&qp_guest_endpoints))) {
  2094. ep = (struct qp_guest_endpoint *)entry;
  2095. /* Don't make a hypercall for local queue_pairs. */
  2096. if (!(entry->flags & VMCI_QPFLAG_LOCAL))
  2097. qp_detatch_hypercall(entry->handle);
  2098. /* We cannot fail the exit, so let's reset ref_count. */
  2099. entry->ref_count = 0;
  2100. qp_list_remove_entry(&qp_guest_endpoints, entry);
  2101. qp_guest_endpoint_destroy(ep);
  2102. }
  2103. mutex_unlock(&qp_guest_endpoints.mutex);
  2104. }
  2105. /*
  2106. * Helper routine that will lock the queue pair before subsequent
  2107. * operations.
  2108. * Note: Non-blocking on the host side is currently only implemented in ESX.
  2109. * Since non-blocking isn't yet implemented on the host personality we
  2110. * have no reason to acquire a spin lock. So to avoid the use of an
  2111. * unnecessary lock only acquire the mutex if we can block.
  2112. */
  2113. static void qp_lock(const struct vmci_qp *qpair)
  2114. {
  2115. qp_acquire_queue_mutex(qpair->produce_q);
  2116. }
  2117. /*
  2118. * Helper routine that unlocks the queue pair after calling
  2119. * qp_lock.
  2120. */
  2121. static void qp_unlock(const struct vmci_qp *qpair)
  2122. {
  2123. qp_release_queue_mutex(qpair->produce_q);
  2124. }
  2125. /*
  2126. * The queue headers may not be mapped at all times. If a queue is
  2127. * currently not mapped, it will be attempted to do so.
  2128. */
  2129. static int qp_map_queue_headers(struct vmci_queue *produce_q,
  2130. struct vmci_queue *consume_q)
  2131. {
  2132. int result;
  2133. if (NULL == produce_q->q_header || NULL == consume_q->q_header) {
  2134. result = qp_host_map_queues(produce_q, consume_q);
  2135. if (result < VMCI_SUCCESS)
  2136. return (produce_q->saved_header &&
  2137. consume_q->saved_header) ?
  2138. VMCI_ERROR_QUEUEPAIR_NOT_READY :
  2139. VMCI_ERROR_QUEUEPAIR_NOTATTACHED;
  2140. }
  2141. return VMCI_SUCCESS;
  2142. }
  2143. /*
  2144. * Helper routine that will retrieve the produce and consume
  2145. * headers of a given queue pair. If the guest memory of the
  2146. * queue pair is currently not available, the saved queue headers
  2147. * will be returned, if these are available.
  2148. */
  2149. static int qp_get_queue_headers(const struct vmci_qp *qpair,
  2150. struct vmci_queue_header **produce_q_header,
  2151. struct vmci_queue_header **consume_q_header)
  2152. {
  2153. int result;
  2154. result = qp_map_queue_headers(qpair->produce_q, qpair->consume_q);
  2155. if (result == VMCI_SUCCESS) {
  2156. *produce_q_header = qpair->produce_q->q_header;
  2157. *consume_q_header = qpair->consume_q->q_header;
  2158. } else if (qpair->produce_q->saved_header &&
  2159. qpair->consume_q->saved_header) {
  2160. *produce_q_header = qpair->produce_q->saved_header;
  2161. *consume_q_header = qpair->consume_q->saved_header;
  2162. result = VMCI_SUCCESS;
  2163. }
  2164. return result;
  2165. }
  2166. /*
  2167. * Callback from VMCI queue pair broker indicating that a queue
  2168. * pair that was previously not ready, now either is ready or
  2169. * gone forever.
  2170. */
  2171. static int qp_wakeup_cb(void *client_data)
  2172. {
  2173. struct vmci_qp *qpair = (struct vmci_qp *)client_data;
  2174. qp_lock(qpair);
  2175. while (qpair->blocked > 0) {
  2176. qpair->blocked--;
  2177. qpair->generation++;
  2178. wake_up(&qpair->event);
  2179. }
  2180. qp_unlock(qpair);
  2181. return VMCI_SUCCESS;
  2182. }
  2183. /*
  2184. * Makes the calling thread wait for the queue pair to become
  2185. * ready for host side access. Returns true when thread is
  2186. * woken up after queue pair state change, false otherwise.
  2187. */
  2188. static bool qp_wait_for_ready_queue(struct vmci_qp *qpair)
  2189. {
  2190. unsigned int generation;
  2191. qpair->blocked++;
  2192. generation = qpair->generation;
  2193. qp_unlock(qpair);
  2194. wait_event(qpair->event, generation != qpair->generation);
  2195. qp_lock(qpair);
  2196. return true;
  2197. }
  2198. /*
  2199. * Enqueues a given buffer to the produce queue using the provided
  2200. * function. As many bytes as possible (space available in the queue)
  2201. * are enqueued. Assumes the queue->mutex has been acquired. Returns
  2202. * VMCI_ERROR_QUEUEPAIR_NOSPACE if no space was available to enqueue
  2203. * data, VMCI_ERROR_INVALID_SIZE, if any queue pointer is outside the
  2204. * queue (as defined by the queue size), VMCI_ERROR_INVALID_ARGS, if
  2205. * an error occured when accessing the buffer,
  2206. * VMCI_ERROR_QUEUEPAIR_NOTATTACHED, if the queue pair pages aren't
  2207. * available. Otherwise, the number of bytes written to the queue is
  2208. * returned. Updates the tail pointer of the produce queue.
  2209. */
  2210. static ssize_t qp_enqueue_locked(struct vmci_queue *produce_q,
  2211. struct vmci_queue *consume_q,
  2212. const u64 produce_q_size,
  2213. struct iov_iter *from)
  2214. {
  2215. s64 free_space;
  2216. u64 tail;
  2217. size_t buf_size = iov_iter_count(from);
  2218. size_t written;
  2219. ssize_t result;
  2220. result = qp_map_queue_headers(produce_q, consume_q);
  2221. if (unlikely(result != VMCI_SUCCESS))
  2222. return result;
  2223. free_space = vmci_q_header_free_space(produce_q->q_header,
  2224. consume_q->q_header,
  2225. produce_q_size);
  2226. if (free_space == 0)
  2227. return VMCI_ERROR_QUEUEPAIR_NOSPACE;
  2228. if (free_space < VMCI_SUCCESS)
  2229. return (ssize_t) free_space;
  2230. written = (size_t) (free_space > buf_size ? buf_size : free_space);
  2231. tail = vmci_q_header_producer_tail(produce_q->q_header);
  2232. if (likely(tail + written < produce_q_size)) {
  2233. result = qp_memcpy_to_queue_iter(produce_q, tail, from, written);
  2234. } else {
  2235. /* Tail pointer wraps around. */
  2236. const size_t tmp = (size_t) (produce_q_size - tail);
  2237. result = qp_memcpy_to_queue_iter(produce_q, tail, from, tmp);
  2238. if (result >= VMCI_SUCCESS)
  2239. result = qp_memcpy_to_queue_iter(produce_q, 0, from,
  2240. written - tmp);
  2241. }
  2242. if (result < VMCI_SUCCESS)
  2243. return result;
  2244. /*
  2245. * This virt_wmb() ensures that data written to the queue
  2246. * is observable before the new producer_tail is.
  2247. */
  2248. virt_wmb();
  2249. vmci_q_header_add_producer_tail(produce_q->q_header, written,
  2250. produce_q_size);
  2251. return written;
  2252. }
  2253. /*
  2254. * Dequeues data (if available) from the given consume queue. Writes data
  2255. * to the user provided buffer using the provided function.
  2256. * Assumes the queue->mutex has been acquired.
  2257. * Results:
  2258. * VMCI_ERROR_QUEUEPAIR_NODATA if no data was available to dequeue.
  2259. * VMCI_ERROR_INVALID_SIZE, if any queue pointer is outside the queue
  2260. * (as defined by the queue size).
  2261. * VMCI_ERROR_INVALID_ARGS, if an error occured when accessing the buffer.
  2262. * Otherwise the number of bytes dequeued is returned.
  2263. * Side effects:
  2264. * Updates the head pointer of the consume queue.
  2265. */
  2266. static ssize_t qp_dequeue_locked(struct vmci_queue *produce_q,
  2267. struct vmci_queue *consume_q,
  2268. const u64 consume_q_size,
  2269. struct iov_iter *to,
  2270. bool update_consumer)
  2271. {
  2272. size_t buf_size = iov_iter_count(to);
  2273. s64 buf_ready;
  2274. u64 head;
  2275. size_t read;
  2276. ssize_t result;
  2277. result = qp_map_queue_headers(produce_q, consume_q);
  2278. if (unlikely(result != VMCI_SUCCESS))
  2279. return result;
  2280. buf_ready = vmci_q_header_buf_ready(consume_q->q_header,
  2281. produce_q->q_header,
  2282. consume_q_size);
  2283. if (buf_ready == 0)
  2284. return VMCI_ERROR_QUEUEPAIR_NODATA;
  2285. if (buf_ready < VMCI_SUCCESS)
  2286. return (ssize_t) buf_ready;
  2287. /*
  2288. * This virt_rmb() ensures that data from the queue will be read
  2289. * after we have determined how much is ready to be consumed.
  2290. */
  2291. virt_rmb();
  2292. read = (size_t) (buf_ready > buf_size ? buf_size : buf_ready);
  2293. head = vmci_q_header_consumer_head(produce_q->q_header);
  2294. if (likely(head + read < consume_q_size)) {
  2295. result = qp_memcpy_from_queue_iter(to, consume_q, head, read);
  2296. } else {
  2297. /* Head pointer wraps around. */
  2298. const size_t tmp = (size_t) (consume_q_size - head);
  2299. result = qp_memcpy_from_queue_iter(to, consume_q, head, tmp);
  2300. if (result >= VMCI_SUCCESS)
  2301. result = qp_memcpy_from_queue_iter(to, consume_q, 0,
  2302. read - tmp);
  2303. }
  2304. if (result < VMCI_SUCCESS)
  2305. return result;
  2306. if (update_consumer)
  2307. vmci_q_header_add_consumer_head(produce_q->q_header,
  2308. read, consume_q_size);
  2309. return read;
  2310. }
  2311. /*
  2312. * vmci_qpair_alloc() - Allocates a queue pair.
  2313. * @qpair: Pointer for the new vmci_qp struct.
  2314. * @handle: Handle to track the resource.
  2315. * @produce_qsize: Desired size of the producer queue.
  2316. * @consume_qsize: Desired size of the consumer queue.
  2317. * @peer: ContextID of the peer.
  2318. * @flags: VMCI flags.
  2319. * @priv_flags: VMCI priviledge flags.
  2320. *
  2321. * This is the client interface for allocating the memory for a
  2322. * vmci_qp structure and then attaching to the underlying
  2323. * queue. If an error occurs allocating the memory for the
  2324. * vmci_qp structure no attempt is made to attach. If an
  2325. * error occurs attaching, then the structure is freed.
  2326. */
  2327. int vmci_qpair_alloc(struct vmci_qp **qpair,
  2328. struct vmci_handle *handle,
  2329. u64 produce_qsize,
  2330. u64 consume_qsize,
  2331. u32 peer,
  2332. u32 flags,
  2333. u32 priv_flags)
  2334. {
  2335. struct vmci_qp *my_qpair;
  2336. int retval;
  2337. struct vmci_handle src = VMCI_INVALID_HANDLE;
  2338. struct vmci_handle dst = vmci_make_handle(peer, VMCI_INVALID_ID);
  2339. enum vmci_route route;
  2340. vmci_event_release_cb wakeup_cb;
  2341. void *client_data;
  2342. /*
  2343. * Restrict the size of a queuepair. The device already
  2344. * enforces a limit on the total amount of memory that can be
  2345. * allocated to queuepairs for a guest. However, we try to
  2346. * allocate this memory before we make the queuepair
  2347. * allocation hypercall. On Linux, we allocate each page
  2348. * separately, which means rather than fail, the guest will
  2349. * thrash while it tries to allocate, and will become
  2350. * increasingly unresponsive to the point where it appears to
  2351. * be hung. So we place a limit on the size of an individual
  2352. * queuepair here, and leave the device to enforce the
  2353. * restriction on total queuepair memory. (Note that this
  2354. * doesn't prevent all cases; a user with only this much
  2355. * physical memory could still get into trouble.) The error
  2356. * used by the device is NO_RESOURCES, so use that here too.
  2357. */
  2358. if (!QP_SIZES_ARE_VALID(produce_qsize, consume_qsize))
  2359. return VMCI_ERROR_NO_RESOURCES;
  2360. retval = vmci_route(&src, &dst, false, &route);
  2361. if (retval < VMCI_SUCCESS)
  2362. route = vmci_guest_code_active() ?
  2363. VMCI_ROUTE_AS_GUEST : VMCI_ROUTE_AS_HOST;
  2364. if (flags & (VMCI_QPFLAG_NONBLOCK | VMCI_QPFLAG_PINNED)) {
  2365. pr_devel("NONBLOCK OR PINNED set");
  2366. return VMCI_ERROR_INVALID_ARGS;
  2367. }
  2368. my_qpair = kzalloc(sizeof(*my_qpair), GFP_KERNEL);
  2369. if (!my_qpair)
  2370. return VMCI_ERROR_NO_MEM;
  2371. my_qpair->produce_q_size = produce_qsize;
  2372. my_qpair->consume_q_size = consume_qsize;
  2373. my_qpair->peer = peer;
  2374. my_qpair->flags = flags;
  2375. my_qpair->priv_flags = priv_flags;
  2376. wakeup_cb = NULL;
  2377. client_data = NULL;
  2378. if (VMCI_ROUTE_AS_HOST == route) {
  2379. my_qpair->guest_endpoint = false;
  2380. if (!(flags & VMCI_QPFLAG_LOCAL)) {
  2381. my_qpair->blocked = 0;
  2382. my_qpair->generation = 0;
  2383. init_waitqueue_head(&my_qpair->event);
  2384. wakeup_cb = qp_wakeup_cb;
  2385. client_data = (void *)my_qpair;
  2386. }
  2387. } else {
  2388. my_qpair->guest_endpoint = true;
  2389. }
  2390. retval = vmci_qp_alloc(handle,
  2391. &my_qpair->produce_q,
  2392. my_qpair->produce_q_size,
  2393. &my_qpair->consume_q,
  2394. my_qpair->consume_q_size,
  2395. my_qpair->peer,
  2396. my_qpair->flags,
  2397. my_qpair->priv_flags,
  2398. my_qpair->guest_endpoint,
  2399. wakeup_cb, client_data);
  2400. if (retval < VMCI_SUCCESS) {
  2401. kfree(my_qpair);
  2402. return retval;
  2403. }
  2404. *qpair = my_qpair;
  2405. my_qpair->handle = *handle;
  2406. return retval;
  2407. }
  2408. EXPORT_SYMBOL_GPL(vmci_qpair_alloc);
  2409. /*
  2410. * vmci_qpair_detach() - Detatches the client from a queue pair.
  2411. * @qpair: Reference of a pointer to the qpair struct.
  2412. *
  2413. * This is the client interface for detaching from a VMCIQPair.
  2414. * Note that this routine will free the memory allocated for the
  2415. * vmci_qp structure too.
  2416. */
  2417. int vmci_qpair_detach(struct vmci_qp **qpair)
  2418. {
  2419. int result;
  2420. struct vmci_qp *old_qpair;
  2421. if (!qpair || !(*qpair))
  2422. return VMCI_ERROR_INVALID_ARGS;
  2423. old_qpair = *qpair;
  2424. result = qp_detatch(old_qpair->handle, old_qpair->guest_endpoint);
  2425. /*
  2426. * The guest can fail to detach for a number of reasons, and
  2427. * if it does so, it will cleanup the entry (if there is one).
  2428. * The host can fail too, but it won't cleanup the entry
  2429. * immediately, it will do that later when the context is
  2430. * freed. Either way, we need to release the qpair struct
  2431. * here; there isn't much the caller can do, and we don't want
  2432. * to leak.
  2433. */
  2434. memset(old_qpair, 0, sizeof(*old_qpair));
  2435. old_qpair->handle = VMCI_INVALID_HANDLE;
  2436. old_qpair->peer = VMCI_INVALID_ID;
  2437. kfree(old_qpair);
  2438. *qpair = NULL;
  2439. return result;
  2440. }
  2441. EXPORT_SYMBOL_GPL(vmci_qpair_detach);
  2442. /*
  2443. * vmci_qpair_get_produce_indexes() - Retrieves the indexes of the producer.
  2444. * @qpair: Pointer to the queue pair struct.
  2445. * @producer_tail: Reference used for storing producer tail index.
  2446. * @consumer_head: Reference used for storing the consumer head index.
  2447. *
  2448. * This is the client interface for getting the current indexes of the
  2449. * QPair from the point of the view of the caller as the producer.
  2450. */
  2451. int vmci_qpair_get_produce_indexes(const struct vmci_qp *qpair,
  2452. u64 *producer_tail,
  2453. u64 *consumer_head)
  2454. {
  2455. struct vmci_queue_header *produce_q_header;
  2456. struct vmci_queue_header *consume_q_header;
  2457. int result;
  2458. if (!qpair)
  2459. return VMCI_ERROR_INVALID_ARGS;
  2460. qp_lock(qpair);
  2461. result =
  2462. qp_get_queue_headers(qpair, &produce_q_header, &consume_q_header);
  2463. if (result == VMCI_SUCCESS)
  2464. vmci_q_header_get_pointers(produce_q_header, consume_q_header,
  2465. producer_tail, consumer_head);
  2466. qp_unlock(qpair);
  2467. if (result == VMCI_SUCCESS &&
  2468. ((producer_tail && *producer_tail >= qpair->produce_q_size) ||
  2469. (consumer_head && *consumer_head >= qpair->produce_q_size)))
  2470. return VMCI_ERROR_INVALID_SIZE;
  2471. return result;
  2472. }
  2473. EXPORT_SYMBOL_GPL(vmci_qpair_get_produce_indexes);
  2474. /*
  2475. * vmci_qpair_get_consume_indexes() - Retrieves the indexes of the consumer.
  2476. * @qpair: Pointer to the queue pair struct.
  2477. * @consumer_tail: Reference used for storing consumer tail index.
  2478. * @producer_head: Reference used for storing the producer head index.
  2479. *
  2480. * This is the client interface for getting the current indexes of the
  2481. * QPair from the point of the view of the caller as the consumer.
  2482. */
  2483. int vmci_qpair_get_consume_indexes(const struct vmci_qp *qpair,
  2484. u64 *consumer_tail,
  2485. u64 *producer_head)
  2486. {
  2487. struct vmci_queue_header *produce_q_header;
  2488. struct vmci_queue_header *consume_q_header;
  2489. int result;
  2490. if (!qpair)
  2491. return VMCI_ERROR_INVALID_ARGS;
  2492. qp_lock(qpair);
  2493. result =
  2494. qp_get_queue_headers(qpair, &produce_q_header, &consume_q_header);
  2495. if (result == VMCI_SUCCESS)
  2496. vmci_q_header_get_pointers(consume_q_header, produce_q_header,
  2497. consumer_tail, producer_head);
  2498. qp_unlock(qpair);
  2499. if (result == VMCI_SUCCESS &&
  2500. ((consumer_tail && *consumer_tail >= qpair->consume_q_size) ||
  2501. (producer_head && *producer_head >= qpair->consume_q_size)))
  2502. return VMCI_ERROR_INVALID_SIZE;
  2503. return result;
  2504. }
  2505. EXPORT_SYMBOL_GPL(vmci_qpair_get_consume_indexes);
  2506. /*
  2507. * vmci_qpair_produce_free_space() - Retrieves free space in producer queue.
  2508. * @qpair: Pointer to the queue pair struct.
  2509. *
  2510. * This is the client interface for getting the amount of free
  2511. * space in the QPair from the point of the view of the caller as
  2512. * the producer which is the common case. Returns < 0 if err, else
  2513. * available bytes into which data can be enqueued if > 0.
  2514. */
  2515. s64 vmci_qpair_produce_free_space(const struct vmci_qp *qpair)
  2516. {
  2517. struct vmci_queue_header *produce_q_header;
  2518. struct vmci_queue_header *consume_q_header;
  2519. s64 result;
  2520. if (!qpair)
  2521. return VMCI_ERROR_INVALID_ARGS;
  2522. qp_lock(qpair);
  2523. result =
  2524. qp_get_queue_headers(qpair, &produce_q_header, &consume_q_header);
  2525. if (result == VMCI_SUCCESS)
  2526. result = vmci_q_header_free_space(produce_q_header,
  2527. consume_q_header,
  2528. qpair->produce_q_size);
  2529. else
  2530. result = 0;
  2531. qp_unlock(qpair);
  2532. return result;
  2533. }
  2534. EXPORT_SYMBOL_GPL(vmci_qpair_produce_free_space);
  2535. /*
  2536. * vmci_qpair_consume_free_space() - Retrieves free space in consumer queue.
  2537. * @qpair: Pointer to the queue pair struct.
  2538. *
  2539. * This is the client interface for getting the amount of free
  2540. * space in the QPair from the point of the view of the caller as
  2541. * the consumer which is not the common case. Returns < 0 if err, else
  2542. * available bytes into which data can be enqueued if > 0.
  2543. */
  2544. s64 vmci_qpair_consume_free_space(const struct vmci_qp *qpair)
  2545. {
  2546. struct vmci_queue_header *produce_q_header;
  2547. struct vmci_queue_header *consume_q_header;
  2548. s64 result;
  2549. if (!qpair)
  2550. return VMCI_ERROR_INVALID_ARGS;
  2551. qp_lock(qpair);
  2552. result =
  2553. qp_get_queue_headers(qpair, &produce_q_header, &consume_q_header);
  2554. if (result == VMCI_SUCCESS)
  2555. result = vmci_q_header_free_space(consume_q_header,
  2556. produce_q_header,
  2557. qpair->consume_q_size);
  2558. else
  2559. result = 0;
  2560. qp_unlock(qpair);
  2561. return result;
  2562. }
  2563. EXPORT_SYMBOL_GPL(vmci_qpair_consume_free_space);
  2564. /*
  2565. * vmci_qpair_produce_buf_ready() - Gets bytes ready to read from
  2566. * producer queue.
  2567. * @qpair: Pointer to the queue pair struct.
  2568. *
  2569. * This is the client interface for getting the amount of
  2570. * enqueued data in the QPair from the point of the view of the
  2571. * caller as the producer which is not the common case. Returns < 0 if err,
  2572. * else available bytes that may be read.
  2573. */
  2574. s64 vmci_qpair_produce_buf_ready(const struct vmci_qp *qpair)
  2575. {
  2576. struct vmci_queue_header *produce_q_header;
  2577. struct vmci_queue_header *consume_q_header;
  2578. s64 result;
  2579. if (!qpair)
  2580. return VMCI_ERROR_INVALID_ARGS;
  2581. qp_lock(qpair);
  2582. result =
  2583. qp_get_queue_headers(qpair, &produce_q_header, &consume_q_header);
  2584. if (result == VMCI_SUCCESS)
  2585. result = vmci_q_header_buf_ready(produce_q_header,
  2586. consume_q_header,
  2587. qpair->produce_q_size);
  2588. else
  2589. result = 0;
  2590. qp_unlock(qpair);
  2591. return result;
  2592. }
  2593. EXPORT_SYMBOL_GPL(vmci_qpair_produce_buf_ready);
  2594. /*
  2595. * vmci_qpair_consume_buf_ready() - Gets bytes ready to read from
  2596. * consumer queue.
  2597. * @qpair: Pointer to the queue pair struct.
  2598. *
  2599. * This is the client interface for getting the amount of
  2600. * enqueued data in the QPair from the point of the view of the
  2601. * caller as the consumer which is the normal case. Returns < 0 if err,
  2602. * else available bytes that may be read.
  2603. */
  2604. s64 vmci_qpair_consume_buf_ready(const struct vmci_qp *qpair)
  2605. {
  2606. struct vmci_queue_header *produce_q_header;
  2607. struct vmci_queue_header *consume_q_header;
  2608. s64 result;
  2609. if (!qpair)
  2610. return VMCI_ERROR_INVALID_ARGS;
  2611. qp_lock(qpair);
  2612. result =
  2613. qp_get_queue_headers(qpair, &produce_q_header, &consume_q_header);
  2614. if (result == VMCI_SUCCESS)
  2615. result = vmci_q_header_buf_ready(consume_q_header,
  2616. produce_q_header,
  2617. qpair->consume_q_size);
  2618. else
  2619. result = 0;
  2620. qp_unlock(qpair);
  2621. return result;
  2622. }
  2623. EXPORT_SYMBOL_GPL(vmci_qpair_consume_buf_ready);
  2624. /*
  2625. * vmci_qpair_enqueue() - Throw data on the queue.
  2626. * @qpair: Pointer to the queue pair struct.
  2627. * @buf: Pointer to buffer containing data
  2628. * @buf_size: Length of buffer.
  2629. * @buf_type: Buffer type (Unused).
  2630. *
  2631. * This is the client interface for enqueueing data into the queue.
  2632. * Returns number of bytes enqueued or < 0 on error.
  2633. */
  2634. ssize_t vmci_qpair_enqueue(struct vmci_qp *qpair,
  2635. const void *buf,
  2636. size_t buf_size,
  2637. int buf_type)
  2638. {
  2639. ssize_t result;
  2640. struct iov_iter from;
  2641. struct kvec v = {.iov_base = (void *)buf, .iov_len = buf_size};
  2642. if (!qpair || !buf)
  2643. return VMCI_ERROR_INVALID_ARGS;
  2644. iov_iter_kvec(&from, ITER_SOURCE, &v, 1, buf_size);
  2645. qp_lock(qpair);
  2646. do {
  2647. result = qp_enqueue_locked(qpair->produce_q,
  2648. qpair->consume_q,
  2649. qpair->produce_q_size,
  2650. &from);
  2651. if (result == VMCI_ERROR_QUEUEPAIR_NOT_READY &&
  2652. !qp_wait_for_ready_queue(qpair))
  2653. result = VMCI_ERROR_WOULD_BLOCK;
  2654. } while (result == VMCI_ERROR_QUEUEPAIR_NOT_READY);
  2655. qp_unlock(qpair);
  2656. return result;
  2657. }
  2658. EXPORT_SYMBOL_GPL(vmci_qpair_enqueue);
  2659. /*
  2660. * vmci_qpair_dequeue() - Get data from the queue.
  2661. * @qpair: Pointer to the queue pair struct.
  2662. * @buf: Pointer to buffer for the data
  2663. * @buf_size: Length of buffer.
  2664. * @buf_type: Buffer type (Unused).
  2665. *
  2666. * This is the client interface for dequeueing data from the queue.
  2667. * Returns number of bytes dequeued or < 0 on error.
  2668. */
  2669. ssize_t vmci_qpair_dequeue(struct vmci_qp *qpair,
  2670. void *buf,
  2671. size_t buf_size,
  2672. int buf_type)
  2673. {
  2674. ssize_t result;
  2675. struct iov_iter to;
  2676. struct kvec v = {.iov_base = buf, .iov_len = buf_size};
  2677. if (!qpair || !buf)
  2678. return VMCI_ERROR_INVALID_ARGS;
  2679. iov_iter_kvec(&to, ITER_DEST, &v, 1, buf_size);
  2680. qp_lock(qpair);
  2681. do {
  2682. result = qp_dequeue_locked(qpair->produce_q,
  2683. qpair->consume_q,
  2684. qpair->consume_q_size,
  2685. &to, true);
  2686. if (result == VMCI_ERROR_QUEUEPAIR_NOT_READY &&
  2687. !qp_wait_for_ready_queue(qpair))
  2688. result = VMCI_ERROR_WOULD_BLOCK;
  2689. } while (result == VMCI_ERROR_QUEUEPAIR_NOT_READY);
  2690. qp_unlock(qpair);
  2691. return result;
  2692. }
  2693. EXPORT_SYMBOL_GPL(vmci_qpair_dequeue);
  2694. /*
  2695. * vmci_qpair_peek() - Peek at the data in the queue.
  2696. * @qpair: Pointer to the queue pair struct.
  2697. * @buf: Pointer to buffer for the data
  2698. * @buf_size: Length of buffer.
  2699. * @buf_type: Buffer type (Unused on Linux).
  2700. *
  2701. * This is the client interface for peeking into a queue. (I.e.,
  2702. * copy data from the queue without updating the head pointer.)
  2703. * Returns number of bytes dequeued or < 0 on error.
  2704. */
  2705. ssize_t vmci_qpair_peek(struct vmci_qp *qpair,
  2706. void *buf,
  2707. size_t buf_size,
  2708. int buf_type)
  2709. {
  2710. struct iov_iter to;
  2711. struct kvec v = {.iov_base = buf, .iov_len = buf_size};
  2712. ssize_t result;
  2713. if (!qpair || !buf)
  2714. return VMCI_ERROR_INVALID_ARGS;
  2715. iov_iter_kvec(&to, ITER_DEST, &v, 1, buf_size);
  2716. qp_lock(qpair);
  2717. do {
  2718. result = qp_dequeue_locked(qpair->produce_q,
  2719. qpair->consume_q,
  2720. qpair->consume_q_size,
  2721. &to, false);
  2722. if (result == VMCI_ERROR_QUEUEPAIR_NOT_READY &&
  2723. !qp_wait_for_ready_queue(qpair))
  2724. result = VMCI_ERROR_WOULD_BLOCK;
  2725. } while (result == VMCI_ERROR_QUEUEPAIR_NOT_READY);
  2726. qp_unlock(qpair);
  2727. return result;
  2728. }
  2729. EXPORT_SYMBOL_GPL(vmci_qpair_peek);
  2730. /*
  2731. * vmci_qpair_enquev() - Throw data on the queue using iov.
  2732. * @qpair: Pointer to the queue pair struct.
  2733. * @iov: Pointer to buffer containing data
  2734. * @iov_size: Length of buffer.
  2735. * @buf_type: Buffer type (Unused).
  2736. *
  2737. * This is the client interface for enqueueing data into the queue.
  2738. * This function uses IO vectors to handle the work. Returns number
  2739. * of bytes enqueued or < 0 on error.
  2740. */
  2741. ssize_t vmci_qpair_enquev(struct vmci_qp *qpair,
  2742. struct msghdr *msg,
  2743. size_t iov_size,
  2744. int buf_type)
  2745. {
  2746. ssize_t result;
  2747. if (!qpair)
  2748. return VMCI_ERROR_INVALID_ARGS;
  2749. qp_lock(qpair);
  2750. do {
  2751. result = qp_enqueue_locked(qpair->produce_q,
  2752. qpair->consume_q,
  2753. qpair->produce_q_size,
  2754. &msg->msg_iter);
  2755. if (result == VMCI_ERROR_QUEUEPAIR_NOT_READY &&
  2756. !qp_wait_for_ready_queue(qpair))
  2757. result = VMCI_ERROR_WOULD_BLOCK;
  2758. } while (result == VMCI_ERROR_QUEUEPAIR_NOT_READY);
  2759. qp_unlock(qpair);
  2760. return result;
  2761. }
  2762. EXPORT_SYMBOL_GPL(vmci_qpair_enquev);
  2763. /*
  2764. * vmci_qpair_dequev() - Get data from the queue using iov.
  2765. * @qpair: Pointer to the queue pair struct.
  2766. * @iov: Pointer to buffer for the data
  2767. * @iov_size: Length of buffer.
  2768. * @buf_type: Buffer type (Unused).
  2769. *
  2770. * This is the client interface for dequeueing data from the queue.
  2771. * This function uses IO vectors to handle the work. Returns number
  2772. * of bytes dequeued or < 0 on error.
  2773. */
  2774. ssize_t vmci_qpair_dequev(struct vmci_qp *qpair,
  2775. struct msghdr *msg,
  2776. size_t iov_size,
  2777. int buf_type)
  2778. {
  2779. ssize_t result;
  2780. if (!qpair)
  2781. return VMCI_ERROR_INVALID_ARGS;
  2782. qp_lock(qpair);
  2783. do {
  2784. result = qp_dequeue_locked(qpair->produce_q,
  2785. qpair->consume_q,
  2786. qpair->consume_q_size,
  2787. &msg->msg_iter, true);
  2788. if (result == VMCI_ERROR_QUEUEPAIR_NOT_READY &&
  2789. !qp_wait_for_ready_queue(qpair))
  2790. result = VMCI_ERROR_WOULD_BLOCK;
  2791. } while (result == VMCI_ERROR_QUEUEPAIR_NOT_READY);
  2792. qp_unlock(qpair);
  2793. return result;
  2794. }
  2795. EXPORT_SYMBOL_GPL(vmci_qpair_dequev);
  2796. /*
  2797. * vmci_qpair_peekv() - Peek at the data in the queue using iov.
  2798. * @qpair: Pointer to the queue pair struct.
  2799. * @iov: Pointer to buffer for the data
  2800. * @iov_size: Length of buffer.
  2801. * @buf_type: Buffer type (Unused on Linux).
  2802. *
  2803. * This is the client interface for peeking into a queue. (I.e.,
  2804. * copy data from the queue without updating the head pointer.)
  2805. * This function uses IO vectors to handle the work. Returns number
  2806. * of bytes peeked or < 0 on error.
  2807. */
  2808. ssize_t vmci_qpair_peekv(struct vmci_qp *qpair,
  2809. struct msghdr *msg,
  2810. size_t iov_size,
  2811. int buf_type)
  2812. {
  2813. ssize_t result;
  2814. if (!qpair)
  2815. return VMCI_ERROR_INVALID_ARGS;
  2816. qp_lock(qpair);
  2817. do {
  2818. result = qp_dequeue_locked(qpair->produce_q,
  2819. qpair->consume_q,
  2820. qpair->consume_q_size,
  2821. &msg->msg_iter, false);
  2822. if (result == VMCI_ERROR_QUEUEPAIR_NOT_READY &&
  2823. !qp_wait_for_ready_queue(qpair))
  2824. result = VMCI_ERROR_WOULD_BLOCK;
  2825. } while (result == VMCI_ERROR_QUEUEPAIR_NOT_READY);
  2826. qp_unlock(qpair);
  2827. return result;
  2828. }
  2829. EXPORT_SYMBOL_GPL(vmci_qpair_peekv);