Keep hashed user tokens, with the following changes:
[platform/upstream/libdrm.git] / linux-core / drm_hashtab.c
1 /**************************************************************************
2  * 
3  * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND. USA.
4  * All Rights Reserved.
5  * 
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the
8  * "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sub license, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  * 
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial portions
16  * of the Software.
17  * 
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 
22  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
23  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 
24  * USE OR OTHER DEALINGS IN THE SOFTWARE.
25  *
26  * 
27  **************************************************************************/
28 /*
29  * Simple open hash tab implementation.
30  *
31  * Authors:
32  * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
33  */
34
35 #include "drmP.h"
36 #include "drm_hashtab.h"
37 #include <linux/hash.h>
38
39 int
40 drm_ht_create(drm_open_hash_t *ht, unsigned int order)
41 {
42         unsigned int i;
43
44         ht->size = 1 << order;
45         ht->order = order;
46         ht->fill = 0;
47         ht->table = vmalloc(ht->size*sizeof(*ht->table));
48         if (!ht->table) {
49                 DRM_ERROR("Out of memory for hash table\n");
50                 return -ENOMEM;
51         }
52         for (i=0; i< ht->size; ++i) {
53                 INIT_HLIST_HEAD(&ht->table[i]);
54         }
55         return 0;
56 }
57
58 void
59 drm_ht_verbose_list(drm_open_hash_t *ht, unsigned long key)
60 {
61         drm_hash_item_t *entry;
62         struct hlist_head *h_list;
63         struct hlist_node *list;
64         unsigned int hashed_key;
65         int count = 0;
66
67         hashed_key = hash_long(key, ht->order);
68         DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key);
69         h_list = &ht->table[hashed_key];
70         hlist_for_each(list, h_list) {
71                 entry = hlist_entry(list, drm_hash_item_t, head);
72                 DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key);
73         }
74 }
75
76 static struct hlist_node
77 *drm_ht_find_key(drm_open_hash_t *ht, unsigned long key)
78 {
79         drm_hash_item_t *entry;
80         struct hlist_head *h_list;
81         struct hlist_node *list;
82         unsigned int hashed_key;
83
84         hashed_key = hash_long(key, ht->order);
85         h_list = &ht->table[hashed_key];
86         hlist_for_each(list, h_list) {
87                 entry = hlist_entry(list, drm_hash_item_t, head);
88                 if (entry->key == key)
89                         return list;
90                 if (entry->key > key)
91                         break;
92         }
93         return NULL;
94 }
95         
96
97 int
98 drm_ht_insert_item(drm_open_hash_t *ht, drm_hash_item_t *item)
99 {
100         drm_hash_item_t *entry;
101         struct hlist_head *h_list;
102         struct hlist_node *list, *parent;
103         unsigned int hashed_key;
104         unsigned long key = item->key;
105
106         hashed_key = hash_long(key, ht->order);
107         h_list = &ht->table[hashed_key];
108         parent = NULL;
109         hlist_for_each(list, h_list) {
110                 entry = hlist_entry(list, drm_hash_item_t, head);
111                 if (entry->key == key) 
112                         return -1;
113                 if (entry->key > key)
114                         break;
115                 parent = list;
116         }
117         if (parent) {
118                 hlist_add_after(parent, &item->head);
119         } else {
120                 hlist_add_head(&item->head, h_list);
121         }
122         return 0;
123 }
124
125 /*
126  * Just insert an item and return any "bits" bit key that hasn't been used before.
127  */
128
129 int
130 drm_ht_just_insert_please(drm_open_hash_t *ht, drm_hash_item_t *item,
131                           unsigned long seed, int bits, int shift, 
132                           unsigned long add)
133 {
134         int ret;
135         unsigned long mask = (1 << bits) - 1;
136         unsigned long first, unshifted_key;
137
138         unshifted_key = hash_long(seed, bits);
139         first = unshifted_key;
140         do{
141                 item->key = (unshifted_key << shift) + add;
142                 ret = drm_ht_insert_item(ht, item);
143                 if (ret)
144                         unshifted_key = (unshifted_key + 1) & mask; 
145         } while(ret && (unshifted_key != first));
146
147         if (ret) {
148                 DRM_ERROR("Available key bit space exhausted\n");
149                 return -EINVAL;
150         }
151         return 0;
152 }
153         
154 int
155 drm_ht_find_item(drm_open_hash_t *ht, unsigned long key, drm_hash_item_t **item) 
156 {
157         struct hlist_node *list;
158
159         list = drm_ht_find_key(ht, key);
160         if (!list) 
161                 return -1;
162
163         *item = hlist_entry(list, drm_hash_item_t, head);
164         return 0;
165 }
166              
167 int 
168 drm_ht_remove_key(drm_open_hash_t *ht, unsigned long key)
169 {
170         struct hlist_node *list;
171         
172         list = drm_ht_find_key(ht, key);
173         if (list) {
174                 hlist_del_init(list);
175                 ht->fill--;
176                 return 0;
177         }
178         return -1;
179 }
180
181 int 
182 drm_ht_remove_item(drm_open_hash_t *ht, drm_hash_item_t *item)
183 {
184         hlist_del_init(&item->head);
185         ht->fill--;
186         return 0;
187 }
188
189 void drm_ht_remove(drm_open_hash_t *ht)
190 {
191         if (ht->table) {
192                 vfree(ht->table);
193                 ht->table = NULL;
194         }
195
196