4 * Copyright (C) 2012 VMware, Inc. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation version 2 and no later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include <linux/vmw_vmci_defs.h>
17 #include <linux/vmw_vmci_api.h>
18 #include <linux/highmem.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/sched.h>
22 #include <linux/cred.h>
23 #include <linux/slab.h>
25 #include "vmci_queue_pair.h"
26 #include "vmci_datagram.h"
27 #include "vmci_doorbell.h"
28 #include "vmci_context.h"
29 #include "vmci_driver.h"
30 #include "vmci_event.h"
33 * List of current VMCI contexts. Contexts can be added by
34 * vmci_ctx_create() and removed via vmci_ctx_destroy().
35 * These, along with context lookup, are protected by the
36 * list structure's lock.
39 struct list_head head
;
40 spinlock_t lock
; /* Spinlock for context list operations */
42 .head
= LIST_HEAD_INIT(ctx_list
.head
),
43 .lock
= __SPIN_LOCK_UNLOCKED(ctx_list
.lock
),
46 /* Used by contexts that did not set up notify flag pointers */
47 static bool ctx_dummy_notify
;
49 static void ctx_signal_notify(struct vmci_ctx
*context
)
51 *context
->notify
= true;
54 static void ctx_clear_notify(struct vmci_ctx
*context
)
56 *context
->notify
= false;
60 * If nothing requires the attention of the guest, clears both
61 * notify flag and call.
63 static void ctx_clear_notify_call(struct vmci_ctx
*context
)
65 if (context
->pending_datagrams
== 0 &&
66 vmci_handle_arr_get_size(context
->pending_doorbell_array
) == 0)
67 ctx_clear_notify(context
);
71 * Sets the context's notify flag iff datagrams are pending for this
72 * context. Called from vmci_setup_notify().
74 void vmci_ctx_check_signal_notify(struct vmci_ctx
*context
)
76 spin_lock(&context
->lock
);
77 if (context
->pending_datagrams
)
78 ctx_signal_notify(context
);
79 spin_unlock(&context
->lock
);
83 * Allocates and initializes a VMCI context.
85 struct vmci_ctx
*vmci_ctx_create(u32 cid
, u32 priv_flags
,
88 const struct cred
*cred
)
90 struct vmci_ctx
*context
;
93 if (cid
== VMCI_INVALID_ID
) {
94 pr_devel("Invalid context ID for VMCI context\n");
99 if (priv_flags
& ~VMCI_PRIVILEGE_ALL_FLAGS
) {
100 pr_devel("Invalid flag (flags=0x%x) for VMCI context\n",
106 if (user_version
== 0) {
107 pr_devel("Invalid suer_version %d\n", user_version
);
112 context
= kzalloc(sizeof(*context
), GFP_KERNEL
);
114 pr_warn("Failed to allocate memory for VMCI context\n");
119 kref_init(&context
->kref
);
120 spin_lock_init(&context
->lock
);
121 INIT_LIST_HEAD(&context
->list_item
);
122 INIT_LIST_HEAD(&context
->datagram_queue
);
123 INIT_LIST_HEAD(&context
->notifier_list
);
125 /* Initialize host-specific VMCI context. */
126 init_waitqueue_head(&context
->host_context
.wait_queue
);
128 context
->queue_pair_array
= vmci_handle_arr_create(0);
129 if (!context
->queue_pair_array
) {
134 context
->doorbell_array
= vmci_handle_arr_create(0);
135 if (!context
->doorbell_array
) {
137 goto err_free_qp_array
;
140 context
->pending_doorbell_array
= vmci_handle_arr_create(0);
141 if (!context
->pending_doorbell_array
) {
143 goto err_free_db_array
;
146 context
->user_version
= user_version
;
148 context
->priv_flags
= priv_flags
;
151 context
->cred
= get_cred(cred
);
153 context
->notify
= &ctx_dummy_notify
;
154 context
->notify_page
= NULL
;
157 * If we collide with an existing context we generate a new
158 * and use it instead. The VMX will determine if regeneration
159 * is okay. Since there isn't 4B - 16 VMs running on a given
160 * host, the below loop will terminate.
162 spin_lock(&ctx_list
.lock
);
164 while (vmci_ctx_exists(cid
)) {
165 /* We reserve the lowest 16 ids for fixed contexts. */
166 cid
= max(cid
, VMCI_RESERVED_CID_LIMIT
- 1) + 1;
167 if (cid
== VMCI_INVALID_ID
)
168 cid
= VMCI_RESERVED_CID_LIMIT
;
172 list_add_tail_rcu(&context
->list_item
, &ctx_list
.head
);
173 spin_unlock(&ctx_list
.lock
);
178 vmci_handle_arr_destroy(context
->doorbell_array
);
180 vmci_handle_arr_destroy(context
->queue_pair_array
);
184 return ERR_PTR(error
);
188 * Destroy VMCI context.
190 void vmci_ctx_destroy(struct vmci_ctx
*context
)
192 spin_lock(&ctx_list
.lock
);
193 list_del_rcu(&context
->list_item
);
194 spin_unlock(&ctx_list
.lock
);
197 vmci_ctx_put(context
);
201 * Fire notification for all contexts interested in given cid.
203 static int ctx_fire_notification(u32 context_id
, u32 priv_flags
)
206 struct vmci_ctx
*sub_ctx
;
207 struct vmci_handle_arr
*subscriber_array
;
208 struct vmci_handle context_handle
=
209 vmci_make_handle(context_id
, VMCI_EVENT_HANDLER
);
212 * We create an array to hold the subscribers we find when
213 * scanning through all contexts.
215 subscriber_array
= vmci_handle_arr_create(0);
216 if (subscriber_array
== NULL
)
217 return VMCI_ERROR_NO_MEM
;
220 * Scan all contexts to find who is interested in being
221 * notified about given contextID.
224 list_for_each_entry_rcu(sub_ctx
, &ctx_list
.head
, list_item
) {
225 struct vmci_handle_list
*node
;
228 * We only deliver notifications of the removal of
229 * contexts, if the two contexts are allowed to
232 if (vmci_deny_interaction(priv_flags
, sub_ctx
->priv_flags
))
235 list_for_each_entry_rcu(node
, &sub_ctx
->notifier_list
, node
) {
236 if (!vmci_handle_is_equal(node
->handle
, context_handle
))
239 vmci_handle_arr_append_entry(&subscriber_array
,
240 vmci_make_handle(sub_ctx
->cid
,
241 VMCI_EVENT_HANDLER
));
246 /* Fire event to all subscribers. */
247 array_size
= vmci_handle_arr_get_size(subscriber_array
);
248 for (i
= 0; i
< array_size
; i
++) {
250 struct vmci_event_ctx ev
;
252 ev
.msg
.hdr
.dst
= vmci_handle_arr_get_entry(subscriber_array
, i
);
253 ev
.msg
.hdr
.src
= vmci_make_handle(VMCI_HYPERVISOR_CONTEXT_ID
,
254 VMCI_CONTEXT_RESOURCE_ID
);
255 ev
.msg
.hdr
.payload_size
= sizeof(ev
) - sizeof(ev
.msg
.hdr
);
256 ev
.msg
.event_data
.event
= VMCI_EVENT_CTX_REMOVED
;
257 ev
.payload
.context_id
= context_id
;
259 result
= vmci_datagram_dispatch(VMCI_HYPERVISOR_CONTEXT_ID
,
261 if (result
< VMCI_SUCCESS
) {
262 pr_devel("Failed to enqueue event datagram (type=%d) for context (ID=0x%x)\n",
263 ev
.msg
.event_data
.event
,
264 ev
.msg
.hdr
.dst
.context
);
265 /* We continue to enqueue on next subscriber. */
268 vmci_handle_arr_destroy(subscriber_array
);
274 * Returns the current number of pending datagrams. The call may
275 * also serve as a synchronization point for the datagram queue,
276 * as no enqueue operations can occur concurrently.
278 int vmci_ctx_pending_datagrams(u32 cid
, u32
*pending
)
280 struct vmci_ctx
*context
;
282 context
= vmci_ctx_get(cid
);
284 return VMCI_ERROR_INVALID_ARGS
;
286 spin_lock(&context
->lock
);
288 *pending
= context
->pending_datagrams
;
289 spin_unlock(&context
->lock
);
290 vmci_ctx_put(context
);
296 * Queues a VMCI datagram for the appropriate target VM context.
298 int vmci_ctx_enqueue_datagram(u32 cid
, struct vmci_datagram
*dg
)
300 struct vmci_datagram_queue_entry
*dq_entry
;
301 struct vmci_ctx
*context
;
302 struct vmci_handle dg_src
;
305 vmci_dg_size
= VMCI_DG_SIZE(dg
);
306 if (vmci_dg_size
> VMCI_MAX_DG_SIZE
) {
307 pr_devel("Datagram too large (bytes=%zu)\n", vmci_dg_size
);
308 return VMCI_ERROR_INVALID_ARGS
;
311 /* Get the target VM's VMCI context. */
312 context
= vmci_ctx_get(cid
);
314 pr_devel("Invalid context (ID=0x%x)\n", cid
);
315 return VMCI_ERROR_INVALID_ARGS
;
318 /* Allocate guest call entry and add it to the target VM's queue. */
319 dq_entry
= kmalloc(sizeof(*dq_entry
), GFP_KERNEL
);
320 if (dq_entry
== NULL
) {
321 pr_warn("Failed to allocate memory for datagram\n");
322 vmci_ctx_put(context
);
323 return VMCI_ERROR_NO_MEM
;
326 dq_entry
->dg_size
= vmci_dg_size
;
328 INIT_LIST_HEAD(&dq_entry
->list_item
);
330 spin_lock(&context
->lock
);
333 * We put a higher limit on datagrams from the hypervisor. If
334 * the pending datagram is not from hypervisor, then we check
335 * if enqueueing it would exceed the
336 * VMCI_MAX_DATAGRAM_QUEUE_SIZE limit on the destination. If
337 * the pending datagram is from hypervisor, we allow it to be
338 * queued at the destination side provided we don't reach the
339 * VMCI_MAX_DATAGRAM_AND_EVENT_QUEUE_SIZE limit.
341 if (context
->datagram_queue_size
+ vmci_dg_size
>=
342 VMCI_MAX_DATAGRAM_QUEUE_SIZE
&&
343 (!vmci_handle_is_equal(dg_src
,
345 (VMCI_HYPERVISOR_CONTEXT_ID
,
346 VMCI_CONTEXT_RESOURCE_ID
)) ||
347 context
->datagram_queue_size
+ vmci_dg_size
>=
348 VMCI_MAX_DATAGRAM_AND_EVENT_QUEUE_SIZE
)) {
349 spin_unlock(&context
->lock
);
350 vmci_ctx_put(context
);
352 pr_devel("Context (ID=0x%x) receive queue is full\n", cid
);
353 return VMCI_ERROR_NO_RESOURCES
;
356 list_add(&dq_entry
->list_item
, &context
->datagram_queue
);
357 context
->pending_datagrams
++;
358 context
->datagram_queue_size
+= vmci_dg_size
;
359 ctx_signal_notify(context
);
360 wake_up(&context
->host_context
.wait_queue
);
361 spin_unlock(&context
->lock
);
362 vmci_ctx_put(context
);
368 * Verifies whether a context with the specified context ID exists.
369 * FIXME: utility is dubious as no decisions can be reliably made
370 * using this data as context can appear and disappear at any time.
372 bool vmci_ctx_exists(u32 cid
)
374 struct vmci_ctx
*context
;
379 list_for_each_entry_rcu(context
, &ctx_list
.head
, list_item
) {
380 if (context
->cid
== cid
) {
391 * Retrieves VMCI context corresponding to the given cid.
393 struct vmci_ctx
*vmci_ctx_get(u32 cid
)
395 struct vmci_ctx
*c
, *context
= NULL
;
397 if (cid
== VMCI_INVALID_ID
)
401 list_for_each_entry_rcu(c
, &ctx_list
.head
, list_item
) {
404 * The context owner drops its own reference to the
405 * context only after removing it from the list and
406 * waiting for RCU grace period to expire. This
407 * means that we are not about to increase the
408 * reference count of something that is in the
409 * process of being destroyed.
412 kref_get(&context
->kref
);
422 * Deallocates all parts of a context data structure. This
423 * function doesn't lock the context, because it assumes that
424 * the caller was holding the last reference to context.
426 static void ctx_free_ctx(struct kref
*kref
)
428 struct vmci_ctx
*context
= container_of(kref
, struct vmci_ctx
, kref
);
429 struct vmci_datagram_queue_entry
*dq_entry
, *dq_entry_tmp
;
430 struct vmci_handle temp_handle
;
431 struct vmci_handle_list
*notifier
, *tmp
;
434 * Fire event to all contexts interested in knowing this
437 ctx_fire_notification(context
->cid
, context
->priv_flags
);
440 * Cleanup all queue pair resources attached to context. If
441 * the VM dies without cleaning up, this code will make sure
442 * that no resources are leaked.
444 temp_handle
= vmci_handle_arr_get_entry(context
->queue_pair_array
, 0);
445 while (!vmci_handle_is_equal(temp_handle
, VMCI_INVALID_HANDLE
)) {
446 if (vmci_qp_broker_detach(temp_handle
,
447 context
) < VMCI_SUCCESS
) {
449 * When vmci_qp_broker_detach() succeeds it
450 * removes the handle from the array. If
451 * detach fails, we must remove the handle
454 vmci_handle_arr_remove_entry(context
->queue_pair_array
,
458 vmci_handle_arr_get_entry(context
->queue_pair_array
, 0);
462 * It is fine to destroy this without locking the callQueue, as
463 * this is the only thread having a reference to the context.
465 list_for_each_entry_safe(dq_entry
, dq_entry_tmp
,
466 &context
->datagram_queue
, list_item
) {
467 WARN_ON(dq_entry
->dg_size
!= VMCI_DG_SIZE(dq_entry
->dg
));
468 list_del(&dq_entry
->list_item
);
473 list_for_each_entry_safe(notifier
, tmp
,
474 &context
->notifier_list
, node
) {
475 list_del(¬ifier
->node
);
479 vmci_handle_arr_destroy(context
->queue_pair_array
);
480 vmci_handle_arr_destroy(context
->doorbell_array
);
481 vmci_handle_arr_destroy(context
->pending_doorbell_array
);
482 vmci_ctx_unset_notify(context
);
484 put_cred(context
->cred
);
489 * Drops reference to VMCI context. If this is the last reference to
490 * the context it will be deallocated. A context is created with
491 * a reference count of one, and on destroy, it is removed from
492 * the context list before its reference count is decremented. Thus,
493 * if we reach zero, we are sure that nobody else are about to increment
494 * it (they need the entry in the context list for that), and so there
495 * is no need for locking.
497 void vmci_ctx_put(struct vmci_ctx
*context
)
499 kref_put(&context
->kref
, ctx_free_ctx
);
503 * Dequeues the next datagram and returns it to caller.
504 * The caller passes in a pointer to the max size datagram
505 * it can handle and the datagram is only unqueued if the
506 * size is less than max_size. If larger max_size is set to
507 * the size of the datagram to give the caller a chance to
508 * set up a larger buffer for the guestcall.
510 int vmci_ctx_dequeue_datagram(struct vmci_ctx
*context
,
512 struct vmci_datagram
**dg
)
514 struct vmci_datagram_queue_entry
*dq_entry
;
515 struct list_head
*list_item
;
518 /* Dequeue the next datagram entry. */
519 spin_lock(&context
->lock
);
520 if (context
->pending_datagrams
== 0) {
521 ctx_clear_notify_call(context
);
522 spin_unlock(&context
->lock
);
523 pr_devel("No datagrams pending\n");
524 return VMCI_ERROR_NO_MORE_DATAGRAMS
;
527 list_item
= context
->datagram_queue
.next
;
530 list_entry(list_item
, struct vmci_datagram_queue_entry
, list_item
);
532 /* Check size of caller's buffer. */
533 if (*max_size
< dq_entry
->dg_size
) {
534 *max_size
= dq_entry
->dg_size
;
535 spin_unlock(&context
->lock
);
536 pr_devel("Caller's buffer should be at least (size=%u bytes)\n",
538 return VMCI_ERROR_NO_MEM
;
542 context
->pending_datagrams
--;
543 context
->datagram_queue_size
-= dq_entry
->dg_size
;
544 if (context
->pending_datagrams
== 0) {
545 ctx_clear_notify_call(context
);
549 * Return the size of the next datagram.
551 struct vmci_datagram_queue_entry
*next_entry
;
553 list_item
= context
->datagram_queue
.next
;
555 list_entry(list_item
, struct vmci_datagram_queue_entry
,
559 * The following size_t -> int truncation is fine as
560 * the maximum size of a (routable) datagram is 68KB.
562 rv
= (int)next_entry
->dg_size
;
564 spin_unlock(&context
->lock
);
566 /* Caller must free datagram. */
575 * Reverts actions set up by vmci_setup_notify(). Unmaps and unlocks the
576 * page mapped/locked by vmci_setup_notify().
578 void vmci_ctx_unset_notify(struct vmci_ctx
*context
)
580 struct page
*notify_page
;
582 spin_lock(&context
->lock
);
584 notify_page
= context
->notify_page
;
585 context
->notify
= &ctx_dummy_notify
;
586 context
->notify_page
= NULL
;
588 spin_unlock(&context
->lock
);
592 put_page(notify_page
);
597 * Add remote_cid to list of contexts current contexts wants
598 * notifications from/about.
600 int vmci_ctx_add_notification(u32 context_id
, u32 remote_cid
)
602 struct vmci_ctx
*context
;
603 struct vmci_handle_list
*notifier
, *n
;
607 context
= vmci_ctx_get(context_id
);
609 return VMCI_ERROR_NOT_FOUND
;
611 if (VMCI_CONTEXT_IS_VM(context_id
) && VMCI_CONTEXT_IS_VM(remote_cid
)) {
612 pr_devel("Context removed notifications for other VMs not supported (src=0x%x, remote=0x%x)\n",
613 context_id
, remote_cid
);
614 result
= VMCI_ERROR_DST_UNREACHABLE
;
618 if (context
->priv_flags
& VMCI_PRIVILEGE_FLAG_RESTRICTED
) {
619 result
= VMCI_ERROR_NO_ACCESS
;
623 notifier
= kmalloc(sizeof(struct vmci_handle_list
), GFP_KERNEL
);
625 result
= VMCI_ERROR_NO_MEM
;
629 INIT_LIST_HEAD(¬ifier
->node
);
630 notifier
->handle
= vmci_make_handle(remote_cid
, VMCI_EVENT_HANDLER
);
632 spin_lock(&context
->lock
);
634 list_for_each_entry(n
, &context
->notifier_list
, node
) {
635 if (vmci_handle_is_equal(n
->handle
, notifier
->handle
)) {
643 result
= VMCI_ERROR_ALREADY_EXISTS
;
645 list_add_tail_rcu(¬ifier
->node
, &context
->notifier_list
);
646 context
->n_notifiers
++;
647 result
= VMCI_SUCCESS
;
650 spin_unlock(&context
->lock
);
653 vmci_ctx_put(context
);
658 * Remove remote_cid from current context's list of contexts it is
659 * interested in getting notifications from/about.
661 int vmci_ctx_remove_notification(u32 context_id
, u32 remote_cid
)
663 struct vmci_ctx
*context
;
664 struct vmci_handle_list
*notifier
, *tmp
;
665 struct vmci_handle handle
;
668 context
= vmci_ctx_get(context_id
);
670 return VMCI_ERROR_NOT_FOUND
;
672 handle
= vmci_make_handle(remote_cid
, VMCI_EVENT_HANDLER
);
674 spin_lock(&context
->lock
);
675 list_for_each_entry_safe(notifier
, tmp
,
676 &context
->notifier_list
, node
) {
677 if (vmci_handle_is_equal(notifier
->handle
, handle
)) {
678 list_del_rcu(¬ifier
->node
);
679 context
->n_notifiers
--;
684 spin_unlock(&context
->lock
);
691 vmci_ctx_put(context
);
693 return found
? VMCI_SUCCESS
: VMCI_ERROR_NOT_FOUND
;
696 static int vmci_ctx_get_chkpt_notifiers(struct vmci_ctx
*context
,
697 u32
*buf_size
, void **pbuf
)
701 struct vmci_handle_list
*entry
;
704 if (context
->n_notifiers
== 0) {
710 data_size
= context
->n_notifiers
* sizeof(*notifiers
);
711 if (*buf_size
< data_size
) {
712 *buf_size
= data_size
;
713 return VMCI_ERROR_MORE_DATA
;
716 notifiers
= kmalloc(data_size
, GFP_ATOMIC
); /* FIXME: want GFP_KERNEL */
718 return VMCI_ERROR_NO_MEM
;
720 list_for_each_entry(entry
, &context
->notifier_list
, node
)
721 notifiers
[i
++] = entry
->handle
.context
;
723 *buf_size
= data_size
;
728 static int vmci_ctx_get_chkpt_doorbells(struct vmci_ctx
*context
,
729 u32
*buf_size
, void **pbuf
)
731 struct dbell_cpt_state
*dbells
;
735 n_doorbells
= vmci_handle_arr_get_size(context
->doorbell_array
);
736 if (n_doorbells
> 0) {
737 size_t data_size
= n_doorbells
* sizeof(*dbells
);
738 if (*buf_size
< data_size
) {
739 *buf_size
= data_size
;
740 return VMCI_ERROR_MORE_DATA
;
743 dbells
= kmalloc(data_size
, GFP_ATOMIC
);
745 return VMCI_ERROR_NO_MEM
;
747 for (i
= 0; i
< n_doorbells
; i
++)
748 dbells
[i
].handle
= vmci_handle_arr_get_entry(
749 context
->doorbell_array
, i
);
751 *buf_size
= data_size
;
762 * Get current context's checkpoint state of given type.
764 int vmci_ctx_get_chkpt_state(u32 context_id
,
769 struct vmci_ctx
*context
;
772 context
= vmci_ctx_get(context_id
);
774 return VMCI_ERROR_NOT_FOUND
;
776 spin_lock(&context
->lock
);
779 case VMCI_NOTIFICATION_CPT_STATE
:
780 result
= vmci_ctx_get_chkpt_notifiers(context
, buf_size
, pbuf
);
783 case VMCI_WELLKNOWN_CPT_STATE
:
785 * For compatibility with VMX'en with VM to VM communication, we
786 * always return zero wellknown handles.
791 result
= VMCI_SUCCESS
;
794 case VMCI_DOORBELL_CPT_STATE
:
795 result
= vmci_ctx_get_chkpt_doorbells(context
, buf_size
, pbuf
);
799 pr_devel("Invalid cpt state (type=%d)\n", cpt_type
);
800 result
= VMCI_ERROR_INVALID_ARGS
;
804 spin_unlock(&context
->lock
);
805 vmci_ctx_put(context
);
811 * Set current context's checkpoint state of given type.
813 int vmci_ctx_set_chkpt_state(u32 context_id
,
820 int result
= VMCI_SUCCESS
;
821 u32 num_ids
= buf_size
/ sizeof(u32
);
823 if (cpt_type
== VMCI_WELLKNOWN_CPT_STATE
&& num_ids
> 0) {
825 * We would end up here if VMX with VM to VM communication
826 * attempts to restore a checkpoint with wellknown handles.
828 pr_warn("Attempt to restore checkpoint with obsolete wellknown handles\n");
829 return VMCI_ERROR_OBSOLETE
;
832 if (cpt_type
!= VMCI_NOTIFICATION_CPT_STATE
) {
833 pr_devel("Invalid cpt state (type=%d)\n", cpt_type
);
834 return VMCI_ERROR_INVALID_ARGS
;
837 for (i
= 0; i
< num_ids
&& result
== VMCI_SUCCESS
; i
++) {
838 current_id
= ((u32
*)cpt_buf
)[i
];
839 result
= vmci_ctx_add_notification(context_id
, current_id
);
840 if (result
!= VMCI_SUCCESS
)
843 if (result
!= VMCI_SUCCESS
)
844 pr_devel("Failed to set cpt state (type=%d) (error=%d)\n",
851 * Retrieves the specified context's pending notifications in the
852 * form of a handle array. The handle arrays returned are the
853 * actual data - not a copy and should not be modified by the
854 * caller. They must be released using
855 * vmci_ctx_rcv_notifications_release.
857 int vmci_ctx_rcv_notifications_get(u32 context_id
,
858 struct vmci_handle_arr
**db_handle_array
,
859 struct vmci_handle_arr
**qp_handle_array
)
861 struct vmci_ctx
*context
;
862 int result
= VMCI_SUCCESS
;
864 context
= vmci_ctx_get(context_id
);
866 return VMCI_ERROR_NOT_FOUND
;
868 spin_lock(&context
->lock
);
870 *db_handle_array
= context
->pending_doorbell_array
;
871 context
->pending_doorbell_array
= vmci_handle_arr_create(0);
872 if (!context
->pending_doorbell_array
) {
873 context
->pending_doorbell_array
= *db_handle_array
;
874 *db_handle_array
= NULL
;
875 result
= VMCI_ERROR_NO_MEM
;
877 *qp_handle_array
= NULL
;
879 spin_unlock(&context
->lock
);
880 vmci_ctx_put(context
);
886 * Releases handle arrays with pending notifications previously
887 * retrieved using vmci_ctx_rcv_notifications_get. If the
888 * notifications were not successfully handed over to the guest,
889 * success must be false.
891 void vmci_ctx_rcv_notifications_release(u32 context_id
,
892 struct vmci_handle_arr
*db_handle_array
,
893 struct vmci_handle_arr
*qp_handle_array
,
896 struct vmci_ctx
*context
= vmci_ctx_get(context_id
);
898 spin_lock(&context
->lock
);
900 struct vmci_handle handle
;
903 * New notifications may have been added while we were not
904 * holding the context lock, so we transfer any new pending
905 * doorbell notifications to the old array, and reinstate the
909 handle
= vmci_handle_arr_remove_tail(
910 context
->pending_doorbell_array
);
911 while (!vmci_handle_is_invalid(handle
)) {
912 if (!vmci_handle_arr_has_entry(db_handle_array
,
914 vmci_handle_arr_append_entry(
915 &db_handle_array
, handle
);
917 handle
= vmci_handle_arr_remove_tail(
918 context
->pending_doorbell_array
);
920 vmci_handle_arr_destroy(context
->pending_doorbell_array
);
921 context
->pending_doorbell_array
= db_handle_array
;
922 db_handle_array
= NULL
;
924 ctx_clear_notify_call(context
);
926 spin_unlock(&context
->lock
);
927 vmci_ctx_put(context
);
930 vmci_handle_arr_destroy(db_handle_array
);
933 vmci_handle_arr_destroy(qp_handle_array
);
937 * Registers that a new doorbell handle has been allocated by the
938 * context. Only doorbell handles registered can be notified.
940 int vmci_ctx_dbell_create(u32 context_id
, struct vmci_handle handle
)
942 struct vmci_ctx
*context
;
945 if (context_id
== VMCI_INVALID_ID
|| vmci_handle_is_invalid(handle
))
946 return VMCI_ERROR_INVALID_ARGS
;
948 context
= vmci_ctx_get(context_id
);
950 return VMCI_ERROR_NOT_FOUND
;
952 spin_lock(&context
->lock
);
953 if (!vmci_handle_arr_has_entry(context
->doorbell_array
, handle
)) {
954 vmci_handle_arr_append_entry(&context
->doorbell_array
, handle
);
955 result
= VMCI_SUCCESS
;
957 result
= VMCI_ERROR_DUPLICATE_ENTRY
;
960 spin_unlock(&context
->lock
);
961 vmci_ctx_put(context
);
967 * Unregisters a doorbell handle that was previously registered
968 * with vmci_ctx_dbell_create.
970 int vmci_ctx_dbell_destroy(u32 context_id
, struct vmci_handle handle
)
972 struct vmci_ctx
*context
;
973 struct vmci_handle removed_handle
;
975 if (context_id
== VMCI_INVALID_ID
|| vmci_handle_is_invalid(handle
))
976 return VMCI_ERROR_INVALID_ARGS
;
978 context
= vmci_ctx_get(context_id
);
980 return VMCI_ERROR_NOT_FOUND
;
982 spin_lock(&context
->lock
);
984 vmci_handle_arr_remove_entry(context
->doorbell_array
, handle
);
985 vmci_handle_arr_remove_entry(context
->pending_doorbell_array
, handle
);
986 spin_unlock(&context
->lock
);
988 vmci_ctx_put(context
);
990 return vmci_handle_is_invalid(removed_handle
) ?
991 VMCI_ERROR_NOT_FOUND
: VMCI_SUCCESS
;
995 * Unregisters all doorbell handles that were previously
996 * registered with vmci_ctx_dbell_create.
998 int vmci_ctx_dbell_destroy_all(u32 context_id
)
1000 struct vmci_ctx
*context
;
1001 struct vmci_handle handle
;
1003 if (context_id
== VMCI_INVALID_ID
)
1004 return VMCI_ERROR_INVALID_ARGS
;
1006 context
= vmci_ctx_get(context_id
);
1007 if (context
== NULL
)
1008 return VMCI_ERROR_NOT_FOUND
;
1010 spin_lock(&context
->lock
);
1012 struct vmci_handle_arr
*arr
= context
->doorbell_array
;
1013 handle
= vmci_handle_arr_remove_tail(arr
);
1014 } while (!vmci_handle_is_invalid(handle
));
1016 struct vmci_handle_arr
*arr
= context
->pending_doorbell_array
;
1017 handle
= vmci_handle_arr_remove_tail(arr
);
1018 } while (!vmci_handle_is_invalid(handle
));
1019 spin_unlock(&context
->lock
);
1021 vmci_ctx_put(context
);
1023 return VMCI_SUCCESS
;
1027 * Registers a notification of a doorbell handle initiated by the
1028 * specified source context. The notification of doorbells are
1029 * subject to the same isolation rules as datagram delivery. To
1030 * allow host side senders of notifications a finer granularity
1031 * of sender rights than those assigned to the sending context
1032 * itself, the host context is required to specify a different
1033 * set of privilege flags that will override the privileges of
1034 * the source context.
1036 int vmci_ctx_notify_dbell(u32 src_cid
,
1037 struct vmci_handle handle
,
1040 struct vmci_ctx
*dst_context
;
1043 if (vmci_handle_is_invalid(handle
))
1044 return VMCI_ERROR_INVALID_ARGS
;
1046 /* Get the target VM's VMCI context. */
1047 dst_context
= vmci_ctx_get(handle
.context
);
1049 pr_devel("Invalid context (ID=0x%x)\n", handle
.context
);
1050 return VMCI_ERROR_NOT_FOUND
;
1053 if (src_cid
!= handle
.context
) {
1056 if (VMCI_CONTEXT_IS_VM(src_cid
) &&
1057 VMCI_CONTEXT_IS_VM(handle
.context
)) {
1058 pr_devel("Doorbell notification from VM to VM not supported (src=0x%x, dst=0x%x)\n",
1059 src_cid
, handle
.context
);
1060 result
= VMCI_ERROR_DST_UNREACHABLE
;
1064 result
= vmci_dbell_get_priv_flags(handle
, &dst_priv_flags
);
1065 if (result
< VMCI_SUCCESS
) {
1066 pr_warn("Failed to get privilege flags for destination (handle=0x%x:0x%x)\n",
1067 handle
.context
, handle
.resource
);
1071 if (src_cid
!= VMCI_HOST_CONTEXT_ID
||
1072 src_priv_flags
== VMCI_NO_PRIVILEGE_FLAGS
) {
1073 src_priv_flags
= vmci_context_get_priv_flags(src_cid
);
1076 if (vmci_deny_interaction(src_priv_flags
, dst_priv_flags
)) {
1077 result
= VMCI_ERROR_NO_ACCESS
;
1082 if (handle
.context
== VMCI_HOST_CONTEXT_ID
) {
1083 result
= vmci_dbell_host_context_notify(src_cid
, handle
);
1085 spin_lock(&dst_context
->lock
);
1087 if (!vmci_handle_arr_has_entry(dst_context
->doorbell_array
,
1089 result
= VMCI_ERROR_NOT_FOUND
;
1091 if (!vmci_handle_arr_has_entry(
1092 dst_context
->pending_doorbell_array
,
1094 vmci_handle_arr_append_entry(
1095 &dst_context
->pending_doorbell_array
,
1098 ctx_signal_notify(dst_context
);
1099 wake_up(&dst_context
->host_context
.wait_queue
);
1102 result
= VMCI_SUCCESS
;
1104 spin_unlock(&dst_context
->lock
);
1108 vmci_ctx_put(dst_context
);
1113 bool vmci_ctx_supports_host_qp(struct vmci_ctx
*context
)
1115 return context
&& context
->user_version
>= VMCI_VERSION_HOSTQP
;
1119 * Registers that a new queue pair handle has been allocated by
1122 int vmci_ctx_qp_create(struct vmci_ctx
*context
, struct vmci_handle handle
)
1126 if (context
== NULL
|| vmci_handle_is_invalid(handle
))
1127 return VMCI_ERROR_INVALID_ARGS
;
1129 if (!vmci_handle_arr_has_entry(context
->queue_pair_array
, handle
)) {
1130 vmci_handle_arr_append_entry(&context
->queue_pair_array
,
1132 result
= VMCI_SUCCESS
;
1134 result
= VMCI_ERROR_DUPLICATE_ENTRY
;
1141 * Unregisters a queue pair handle that was previously registered
1142 * with vmci_ctx_qp_create.
1144 int vmci_ctx_qp_destroy(struct vmci_ctx
*context
, struct vmci_handle handle
)
1146 struct vmci_handle hndl
;
1148 if (context
== NULL
|| vmci_handle_is_invalid(handle
))
1149 return VMCI_ERROR_INVALID_ARGS
;
1151 hndl
= vmci_handle_arr_remove_entry(context
->queue_pair_array
, handle
);
1153 return vmci_handle_is_invalid(hndl
) ?
1154 VMCI_ERROR_NOT_FOUND
: VMCI_SUCCESS
;
1158 * Determines whether a given queue pair handle is registered
1159 * with the given context.
1161 bool vmci_ctx_qp_exists(struct vmci_ctx
*context
, struct vmci_handle handle
)
1163 if (context
== NULL
|| vmci_handle_is_invalid(handle
))
1166 return vmci_handle_arr_has_entry(context
->queue_pair_array
, handle
);
1170 * vmci_context_get_priv_flags() - Retrieve privilege flags.
1171 * @context_id: The context ID of the VMCI context.
1173 * Retrieves privilege flags of the given VMCI context ID.
1175 u32
vmci_context_get_priv_flags(u32 context_id
)
1177 if (vmci_host_code_active()) {
1179 struct vmci_ctx
*context
;
1181 context
= vmci_ctx_get(context_id
);
1183 return VMCI_LEAST_PRIVILEGE_FLAGS
;
1185 flags
= context
->priv_flags
;
1186 vmci_ctx_put(context
);
1189 return VMCI_NO_PRIVILEGE_FLAGS
;
1191 EXPORT_SYMBOL_GPL(vmci_context_get_priv_flags
);
1194 * vmci_is_context_owner() - Determimnes if user is the context owner
1195 * @context_id: The context ID of the VMCI context.
1196 * @uid: The host user id (real kernel value).
1198 * Determines whether a given UID is the owner of given VMCI context.
1200 bool vmci_is_context_owner(u32 context_id
, kuid_t uid
)
1202 bool is_owner
= false;
1204 if (vmci_host_code_active()) {
1205 struct vmci_ctx
*context
= vmci_ctx_get(context_id
);
1208 is_owner
= uid_eq(context
->cred
->uid
, uid
);
1209 vmci_ctx_put(context
);
1215 EXPORT_SYMBOL_GPL(vmci_is_context_owner
);