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/hash.h>
18 #include <linux/types.h>
19 #include <linux/rculist.h>
20 #include <linux/completion.h>
22 #include "vmci_resource.h"
23 #include "vmci_driver.h"
26 #define VMCI_RESOURCE_HASH_BITS 7
27 #define VMCI_RESOURCE_HASH_BUCKETS (1 << VMCI_RESOURCE_HASH_BITS)
29 struct vmci_hash_table
{
31 struct hlist_head entries
[VMCI_RESOURCE_HASH_BUCKETS
];
34 static struct vmci_hash_table vmci_resource_table
= {
35 .lock
= __SPIN_LOCK_UNLOCKED(vmci_resource_table
.lock
),
38 static unsigned int vmci_resource_hash(struct vmci_handle handle
)
40 return hash_32(handle
.resource
, VMCI_RESOURCE_HASH_BITS
);
44 * Gets a resource (if one exists) matching given handle from the hash table.
46 static struct vmci_resource
*vmci_resource_lookup(struct vmci_handle handle
,
47 enum vmci_resource_type type
)
49 struct vmci_resource
*r
, *resource
= NULL
;
50 unsigned int idx
= vmci_resource_hash(handle
);
53 hlist_for_each_entry_rcu(r
,
54 &vmci_resource_table
.entries
[idx
], node
) {
55 u32 cid
= r
->handle
.context
;
56 u32 rid
= r
->handle
.resource
;
58 if (r
->type
== type
&&
59 rid
== handle
.resource
&&
60 (cid
== handle
.context
|| cid
== VMCI_INVALID_ID
||
61 handle
.context
== VMCI_INVALID_ID
)) {
72 * Find an unused resource ID and return it. The first
73 * VMCI_RESERVED_RESOURCE_ID_MAX are reserved so we start from
75 * Returns VMCI resource id on success, VMCI_INVALID_ID on failure.
77 static u32
vmci_resource_find_id(u32 context_id
,
78 enum vmci_resource_type resource_type
)
80 static u32 resource_id
= VMCI_RESERVED_RESOURCE_ID_MAX
+ 1;
81 u32 old_rid
= resource_id
;
85 * Generate a unique resource ID. Keep on trying until we wrap around
89 struct vmci_handle handle
;
91 current_rid
= resource_id
;
93 if (unlikely(resource_id
== VMCI_INVALID_ID
)) {
94 /* Skip the reserved rids. */
95 resource_id
= VMCI_RESERVED_RESOURCE_ID_MAX
+ 1;
98 handle
= vmci_make_handle(context_id
, current_rid
);
99 if (!vmci_resource_lookup(handle
, resource_type
))
101 } while (resource_id
!= old_rid
);
103 return VMCI_INVALID_ID
;
107 int vmci_resource_add(struct vmci_resource
*resource
,
108 enum vmci_resource_type resource_type
,
109 struct vmci_handle handle
)
115 spin_lock(&vmci_resource_table
.lock
);
117 if (handle
.resource
== VMCI_INVALID_ID
) {
118 handle
.resource
= vmci_resource_find_id(handle
.context
,
120 if (handle
.resource
== VMCI_INVALID_ID
) {
121 result
= VMCI_ERROR_NO_HANDLE
;
124 } else if (vmci_resource_lookup(handle
, resource_type
)) {
125 result
= VMCI_ERROR_ALREADY_EXISTS
;
129 resource
->handle
= handle
;
130 resource
->type
= resource_type
;
131 INIT_HLIST_NODE(&resource
->node
);
132 kref_init(&resource
->kref
);
133 init_completion(&resource
->done
);
135 idx
= vmci_resource_hash(resource
->handle
);
136 hlist_add_head_rcu(&resource
->node
, &vmci_resource_table
.entries
[idx
]);
138 result
= VMCI_SUCCESS
;
141 spin_unlock(&vmci_resource_table
.lock
);
145 void vmci_resource_remove(struct vmci_resource
*resource
)
147 struct vmci_handle handle
= resource
->handle
;
148 unsigned int idx
= vmci_resource_hash(handle
);
149 struct vmci_resource
*r
;
151 /* Remove resource from hash table. */
152 spin_lock(&vmci_resource_table
.lock
);
154 hlist_for_each_entry(r
, &vmci_resource_table
.entries
[idx
], node
) {
155 if (vmci_handle_is_equal(r
->handle
, resource
->handle
)) {
156 hlist_del_init_rcu(&r
->node
);
161 spin_unlock(&vmci_resource_table
.lock
);
164 vmci_resource_put(resource
);
165 wait_for_completion(&resource
->done
);
168 struct vmci_resource
*
169 vmci_resource_by_handle(struct vmci_handle resource_handle
,
170 enum vmci_resource_type resource_type
)
172 struct vmci_resource
*r
, *resource
= NULL
;
176 r
= vmci_resource_lookup(resource_handle
, resource_type
);
178 (resource_type
== r
->type
||
179 resource_type
== VMCI_RESOURCE_TYPE_ANY
)) {
180 resource
= vmci_resource_get(r
);
189 * Get a reference to given resource.
191 struct vmci_resource
*vmci_resource_get(struct vmci_resource
*resource
)
193 kref_get(&resource
->kref
);
198 static void vmci_release_resource(struct kref
*kref
)
200 struct vmci_resource
*resource
=
201 container_of(kref
, struct vmci_resource
, kref
);
203 /* Verify the resource has been unlinked from hash table */
204 WARN_ON(!hlist_unhashed(&resource
->node
));
206 /* Signal that container of this resource can now be destroyed */
207 complete(&resource
->done
);
211 * Resource's release function will get called if last reference.
212 * If it is the last reference, then we are sure that nobody else
213 * can increment the count again (it's gone from the resource hash
214 * table), so there's no need for locking here.
216 int vmci_resource_put(struct vmci_resource
*resource
)
219 * We propagate the information back to caller in case it wants to know
220 * whether entry was freed.
222 return kref_put(&resource
->kref
, vmci_release_resource
) ?
223 VMCI_SUCCESS_ENTRY_DEAD
: VMCI_SUCCESS
;
226 struct vmci_handle
vmci_resource_handle(struct vmci_resource
*resource
)
228 return resource
->handle
;