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/list.h>
19 #include <linux/module.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
23 #include "vmci_driver.h"
24 #include "vmci_event.h"
26 #define EVENT_MAGIC 0xEABE0000
27 #define VMCI_EVENT_MAX_ATTEMPTS 10
29 struct vmci_subscription
{
32 vmci_event_cb callback
;
34 struct list_head node
; /* on one of subscriber lists */
37 static struct list_head subscriber_array
[VMCI_EVENT_MAX
];
38 static DEFINE_MUTEX(subscriber_mutex
);
40 int __init
vmci_event_init(void)
44 for (i
= 0; i
< VMCI_EVENT_MAX
; i
++)
45 INIT_LIST_HEAD(&subscriber_array
[i
]);
50 void vmci_event_exit(void)
54 /* We free all memory at exit. */
55 for (e
= 0; e
< VMCI_EVENT_MAX
; e
++) {
56 struct vmci_subscription
*cur
, *p2
;
57 list_for_each_entry_safe(cur
, p2
, &subscriber_array
[e
], node
) {
60 * We should never get here because all events
61 * should have been unregistered before we try
62 * to unload the driver module.
64 pr_warn("Unexpected free events occurring\n");
72 * Find entry. Assumes subscriber_mutex is held.
74 static struct vmci_subscription
*event_find(u32 sub_id
)
78 for (e
= 0; e
< VMCI_EVENT_MAX
; e
++) {
79 struct vmci_subscription
*cur
;
80 list_for_each_entry(cur
, &subscriber_array
[e
], node
) {
81 if (cur
->id
== sub_id
)
89 * Actually delivers the events to the subscribers.
90 * The callback function for each subscriber is invoked.
92 static void event_deliver(struct vmci_event_msg
*event_msg
)
94 struct vmci_subscription
*cur
;
95 struct list_head
*subscriber_list
;
98 subscriber_list
= &subscriber_array
[event_msg
->event_data
.event
];
99 list_for_each_entry_rcu(cur
, subscriber_list
, node
) {
100 cur
->callback(cur
->id
, &event_msg
->event_data
,
107 * Dispatcher for the VMCI_EVENT_RECEIVE datagrams. Calls all
108 * subscribers for given event.
110 int vmci_event_dispatch(struct vmci_datagram
*msg
)
112 struct vmci_event_msg
*event_msg
= (struct vmci_event_msg
*)msg
;
114 if (msg
->payload_size
< sizeof(u32
) ||
115 msg
->payload_size
> sizeof(struct vmci_event_data_max
))
116 return VMCI_ERROR_INVALID_ARGS
;
118 if (!VMCI_EVENT_VALID(event_msg
->event_data
.event
))
119 return VMCI_ERROR_EVENT_UNKNOWN
;
121 event_deliver(event_msg
);
126 * vmci_event_subscribe() - Subscribe to a given event.
127 * @event: The event to subscribe to.
128 * @callback: The callback to invoke upon the event.
129 * @callback_data: Data to pass to the callback.
130 * @subscription_id: ID used to track subscription. Used with
131 * vmci_event_unsubscribe()
133 * Subscribes to the provided event. The callback specified will be
134 * fired from RCU critical section and therefore must not sleep.
136 int vmci_event_subscribe(u32 event
,
137 vmci_event_cb callback
,
139 u32
*new_subscription_id
)
141 struct vmci_subscription
*sub
;
144 bool have_new_id
= false;
146 if (!new_subscription_id
) {
147 pr_devel("%s: Invalid subscription (NULL)\n", __func__
);
148 return VMCI_ERROR_INVALID_ARGS
;
151 if (!VMCI_EVENT_VALID(event
) || !callback
) {
152 pr_devel("%s: Failed to subscribe to event (type=%d) (callback=%p) (data=%p)\n",
153 __func__
, event
, callback
, callback_data
);
154 return VMCI_ERROR_INVALID_ARGS
;
157 sub
= kzalloc(sizeof(*sub
), GFP_KERNEL
);
159 return VMCI_ERROR_NO_MEM
;
161 sub
->id
= VMCI_EVENT_MAX
;
163 sub
->callback
= callback
;
164 sub
->callback_data
= callback_data
;
165 INIT_LIST_HEAD(&sub
->node
);
167 mutex_lock(&subscriber_mutex
);
169 /* Creation of a new event is always allowed. */
170 for (attempts
= 0; attempts
< VMCI_EVENT_MAX_ATTEMPTS
; attempts
++) {
171 static u32 subscription_id
;
173 * We try to get an id a couple of time before
174 * claiming we are out of resources.
177 /* Test for duplicate id. */
178 if (!event_find(++subscription_id
)) {
179 sub
->id
= subscription_id
;
186 list_add_rcu(&sub
->node
, &subscriber_array
[event
]);
187 retval
= VMCI_SUCCESS
;
189 retval
= VMCI_ERROR_NO_RESOURCES
;
192 mutex_unlock(&subscriber_mutex
);
194 *new_subscription_id
= sub
->id
;
197 EXPORT_SYMBOL_GPL(vmci_event_subscribe
);
200 * vmci_event_unsubscribe() - unsubscribe from an event.
201 * @sub_id: A subscription ID as provided by vmci_event_subscribe()
203 * Unsubscribe from given event. Removes it from list and frees it.
204 * Will return callback_data if requested by caller.
206 int vmci_event_unsubscribe(u32 sub_id
)
208 struct vmci_subscription
*s
;
210 mutex_lock(&subscriber_mutex
);
211 s
= event_find(sub_id
);
213 list_del_rcu(&s
->node
);
214 mutex_unlock(&subscriber_mutex
);
217 return VMCI_ERROR_NOT_FOUND
;
224 EXPORT_SYMBOL_GPL(vmci_event_unsubscribe
);