First pass of mesa-4-0 branch merge into trunk.
[profile/ivi/libdrm.git] / linux-core / drm_auth.c
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  */
31
32 #define __NO_VERSION__
33 #include "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         down(&dev->struct_sem);
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         up(&dev->struct_sem);
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(alloc)(sizeof(*entry), DRM_MEM_MAGIC);
66         if (!entry) return -ENOMEM;
67         memset(entry, 0, sizeof(*entry));
68         entry->magic = magic;
69         entry->priv  = priv;
70         entry->next  = NULL;
71
72         down(&dev->struct_sem);
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         up(&dev->struct_sem);
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         down(&dev->struct_sem);
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                         up(&dev->struct_sem);
107                         return 0;
108                 }
109         }
110         up(&dev->struct_sem);
111
112         DRM(free)(pt, sizeof(*pt), DRM_MEM_MAGIC);
113
114         return -EINVAL;
115 }
116
117 int DRM(getmagic)(struct inode *inode, struct file *filp,
118                   unsigned int cmd, unsigned long arg)
119 {
120         static drm_magic_t sequence = 0;
121         static spinlock_t  lock     = SPIN_LOCK_UNLOCKED;
122         drm_file_t         *priv    = filp->private_data;
123         drm_device_t       *dev     = priv->dev;
124         drm_auth_t         auth;
125
126                                 /* Find unique magic */
127         if (priv->magic) {
128                 auth.magic = priv->magic;
129         } else {
130                 do {
131                         spin_lock(&lock);
132                         if (!sequence) ++sequence; /* reserve 0 */
133                         auth.magic = sequence++;
134                         spin_unlock(&lock);
135                 } while (DRM(find_file)(dev, auth.magic));
136                 priv->magic = auth.magic;
137                 DRM(add_magic)(dev, priv, auth.magic);
138         }
139
140         DRM_DEBUG("%u\n", auth.magic);
141         if (copy_to_user((drm_auth_t *)arg, &auth, sizeof(auth)))
142                 return -EFAULT;
143         return 0;
144 }
145
146 int DRM(authmagic)(struct inode *inode, struct file *filp,
147                    unsigned int cmd, unsigned long arg)
148 {
149         drm_file_t         *priv    = filp->private_data;
150         drm_device_t       *dev     = priv->dev;
151         drm_auth_t         auth;
152         drm_file_t         *file;
153
154         if (copy_from_user(&auth, (drm_auth_t *)arg, sizeof(auth)))
155                 return -EFAULT;
156         DRM_DEBUG("%u\n", auth.magic);
157         if ((file = DRM(find_file)(dev, auth.magic))) {
158                 file->authenticated = 1;
159                 DRM(remove_magic)(dev, auth.magic);
160                 return 0;
161         }
162         return -EINVAL;
163 }