2 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
3 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
26 * Rickard E. (Rik) Faith <faith@valinux.com>
27 * Gareth Hughes <gareth@valinux.com>
32 * Implementation of the get/authmagic ioctls implementing the authentication
33 * scheme between the master and clients.
38 static int drm_hash_magic(drm_magic_t magic
)
40 return magic
& (DRM_HASH_SIZE
-1);
44 * Returns the file private associated with the given magic number.
46 static struct drm_file
*drm_find_file(struct drm_device
*dev
, drm_magic_t magic
)
48 drm_magic_entry_t
*pt
;
49 int hash
= drm_hash_magic(magic
);
51 DRM_SPINLOCK_ASSERT(&dev
->dev_lock
);
53 for (pt
= dev
->magiclist
[hash
].head
; pt
; pt
= pt
->next
) {
54 if (pt
->magic
== magic
) {
63 * Inserts the given magic number into the hash table of used magic number
66 static int drm_add_magic(struct drm_device
*dev
, struct drm_file
*priv
,
70 drm_magic_entry_t
*entry
;
72 DRM_DEBUG("%d\n", magic
);
74 DRM_SPINLOCK_ASSERT(&dev
->dev_lock
);
76 hash
= drm_hash_magic(magic
);
77 entry
= malloc(sizeof(*entry
), DRM_MEM_MAGIC
, M_ZERO
| M_NOWAIT
);
84 if (dev
->magiclist
[hash
].tail
) {
85 dev
->magiclist
[hash
].tail
->next
= entry
;
86 dev
->magiclist
[hash
].tail
= entry
;
88 dev
->magiclist
[hash
].head
= entry
;
89 dev
->magiclist
[hash
].tail
= entry
;
96 * Removes the given magic number from the hash table of used magic number
99 static int drm_remove_magic(struct drm_device
*dev
, drm_magic_t magic
)
101 drm_magic_entry_t
*prev
= NULL
;
102 drm_magic_entry_t
*pt
;
105 DRM_SPINLOCK_ASSERT(&dev
->dev_lock
);
107 DRM_DEBUG("%d\n", magic
);
108 hash
= drm_hash_magic(magic
);
110 for (pt
= dev
->magiclist
[hash
].head
; pt
; prev
= pt
, pt
= pt
->next
) {
111 if (pt
->magic
== magic
) {
112 if (dev
->magiclist
[hash
].head
== pt
) {
113 dev
->magiclist
[hash
].head
= pt
->next
;
115 if (dev
->magiclist
[hash
].tail
== pt
) {
116 dev
->magiclist
[hash
].tail
= prev
;
119 prev
->next
= pt
->next
;
121 free(pt
, DRM_MEM_MAGIC
);
130 * Called by the client, this returns a unique magic number to be authorized
133 * The master may use its own knowledge of the client (such as the X
134 * connection that the magic is passed over) to determine if the magic number
135 * should be authenticated.
137 int drm_getmagic(struct drm_device
*dev
, void *data
, struct drm_file
*file_priv
)
139 static drm_magic_t sequence
= 0;
140 struct drm_auth
*auth
= data
;
142 /* Find unique magic */
143 if (file_priv
->magic
) {
144 auth
->magic
= file_priv
->magic
;
152 if (!atomic_cmpset_int(&sequence
, old
, auth
->magic
))
154 } while (drm_find_file(dev
, auth
->magic
));
155 file_priv
->magic
= auth
->magic
;
156 drm_add_magic(dev
, file_priv
, auth
->magic
);
160 DRM_DEBUG("%u\n", auth
->magic
);
166 * Marks the client associated with the given magic number as authenticated.
168 int drm_authmagic(struct drm_device
*dev
, void *data
,
169 struct drm_file
*file_priv
)
171 struct drm_auth
*auth
= data
;
172 struct drm_file
*priv
;
174 DRM_DEBUG("%u\n", auth
->magic
);
177 priv
= drm_find_file(dev
, auth
->magic
);
179 priv
->authenticated
= 1;
180 drm_remove_magic(dev
, auth
->magic
);