Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / dev / drm / drm_auth.h
1 /* drm_auth.h -- IOCTLs for authentication -*- linux-c -*-
2  * Created: Tue Feb  2 08:37:54 1999 by faith@valinux.com
3  *
4  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6  * All Rights Reserved.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice (including the next
16  * paragraph) shall be included in all copies or substantial portions of the
17  * Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
22  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25  * OTHER DEALINGS IN THE SOFTWARE.
26  *
27  * Authors:
28  *    Rickard E. (Rik) Faith <faith@valinux.com>
29  *    Gareth Hughes <gareth@valinux.com>
30  * $FreeBSD: src/sys/dev/drm/drm_auth.h,v 1.3.2.1 2003/04/26 07:05:28 anholt Exp $
31  */
32
33 #include "dev/drm/drmP.h"
34
35 static int DRM(hash_magic)(drm_magic_t magic)
36 {
37         return magic & (DRM_HASH_SIZE-1);
38 }
39
40 static drm_file_t *DRM(find_file)(drm_device_t *dev, drm_magic_t magic)
41 {
42         drm_file_t        *retval = NULL;
43         drm_magic_entry_t *pt;
44         int               hash    = DRM(hash_magic)(magic);
45
46         DRM_LOCK;
47         for (pt = dev->magiclist[hash].head; pt; pt = pt->next) {
48                 if (pt->magic == magic) {
49                         retval = pt->priv;
50                         break;
51                 }
52         }
53         DRM_UNLOCK;
54         return retval;
55 }
56
57 int DRM(add_magic)(drm_device_t *dev, drm_file_t *priv, drm_magic_t magic)
58 {
59         int               hash;
60         drm_magic_entry_t *entry;
61
62         DRM_DEBUG("%d\n", magic);
63
64         hash         = DRM(hash_magic)(magic);
65         entry        = (drm_magic_entry_t*) DRM(alloc)(sizeof(*entry), DRM_MEM_MAGIC);
66         if (!entry) return DRM_ERR(ENOMEM);
67         memset(entry, 0, sizeof(*entry));
68         entry->magic = magic;
69         entry->priv  = priv;
70         entry->next  = NULL;
71
72         DRM_LOCK;
73         if (dev->magiclist[hash].tail) {
74                 dev->magiclist[hash].tail->next = entry;
75                 dev->magiclist[hash].tail       = entry;
76         } else {
77                 dev->magiclist[hash].head       = entry;
78                 dev->magiclist[hash].tail       = entry;
79         }
80         DRM_UNLOCK;
81
82         return 0;
83 }
84
85 int DRM(remove_magic)(drm_device_t *dev, drm_magic_t magic)
86 {
87         drm_magic_entry_t *prev = NULL;
88         drm_magic_entry_t *pt;
89         int               hash;
90
91         DRM_DEBUG("%d\n", magic);
92         hash = DRM(hash_magic)(magic);
93
94         DRM_LOCK;
95         for (pt = dev->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
96                 if (pt->magic == magic) {
97                         if (dev->magiclist[hash].head == pt) {
98                                 dev->magiclist[hash].head = pt->next;
99                         }
100                         if (dev->magiclist[hash].tail == pt) {
101                                 dev->magiclist[hash].tail = prev;
102                         }
103                         if (prev) {
104                                 prev->next = pt->next;
105                         }
106                         DRM_UNLOCK;
107                         return 0;
108                 }
109         }
110         DRM_UNLOCK;
111
112         DRM(free)(pt, sizeof(*pt), DRM_MEM_MAGIC);
113         return DRM_ERR(EINVAL);
114 }
115
116 int DRM(getmagic)(DRM_IOCTL_ARGS)
117 {
118         static drm_magic_t sequence = 0;
119         drm_auth_t         auth;
120         DRM_DEVICE;
121         DRM_PRIV;
122
123                                 /* Find unique magic */
124         if (priv->magic) {
125                 auth.magic = priv->magic;
126         } else {
127                 do {
128                         int old = sequence;
129                         
130                         auth.magic = old+1;
131                         
132                         if (!atomic_cmpset_int(&sequence, old, auth.magic))
133                                 continue;
134                 } while (DRM(find_file)(dev, auth.magic));
135                 priv->magic = auth.magic;
136                 DRM(add_magic)(dev, priv, auth.magic);
137         }
138
139         DRM_DEBUG("%u\n", auth.magic);
140
141         DRM_COPY_TO_USER_IOCTL((drm_auth_t *)data, auth, sizeof(auth));
142
143         return 0;
144 }
145
146 int DRM(authmagic)(DRM_IOCTL_ARGS)
147 {
148         drm_auth_t         auth;
149         drm_file_t         *file;
150         DRM_DEVICE;
151
152         DRM_COPY_FROM_USER_IOCTL(auth, (drm_auth_t *)data, sizeof(auth));
153
154         DRM_DEBUG("%u\n", auth.magic);
155         if ((file = DRM(find_file)(dev, auth.magic))) {
156                 file->authenticated = 1;
157                 DRM(remove_magic)(dev, auth.magic);
158                 return 0;
159         }
160         return DRM_ERR(EINVAL);
161 }