drm/linux-core/drm_auth.c

201 lines
5.8 KiB
C
Raw Normal View History

2003-05-26 18:37:33 -06:00
/**
* \file drm_auth.c
2003-05-26 18:37:33 -06:00
* IOCTLs for authentication
*
* \author Rickard E. (Rik) Faith <faith@valinux.com>
* \author Gareth Hughes <gareth@valinux.com>
*/
/*
2001-02-15 01:12:14 -07:00
* Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
1999-12-05 16:10:37 -07:00
*
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
2000-06-08 08:38:22 -06:00
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
1999-12-05 16:10:37 -07:00
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
2001-02-15 01:12:14 -07:00
*
1999-12-05 16:10:37 -07:00
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
2001-02-15 01:12:14 -07:00
*
1999-12-05 16:10:37 -07:00
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
2001-02-15 01:12:14 -07:00
* VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
1999-12-05 16:10:37 -07:00
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2001-02-15 01:12:14 -07:00
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
1999-12-05 16:10:37 -07:00
*/
#include "drmP.h"
2003-05-26 18:37:33 -06:00
/**
* Find the file with the given magic number.
*
* \param dev DRM device.
* \param magic magic number.
*
* Searches in drm_device::magiclist within all files with the same hash key
* the one with matching magic number, while holding the drm_device::struct_sem
* lock.
*/
static drm_file_t *drm_find_file(drm_device_t * dev, drm_magic_t magic)
1999-12-05 16:10:37 -07:00
{
drm_file_t *retval = NULL;
1999-12-05 16:10:37 -07:00
drm_magic_entry_t *pt;
drm_hash_item_t *hash;
1999-12-05 16:10:37 -07:00
down(&dev->struct_sem);
if (!drm_ht_find_item(&dev->magiclist, (unsigned long) magic, &hash)) {
pt = drm_hash_entry(hash, drm_magic_entry_t, hash_item);
retval = pt->priv;
}
1999-12-05 16:10:37 -07:00
up(&dev->struct_sem);
return retval;
}
2003-05-26 18:37:33 -06:00
/**
* Adds a magic number.
*
2003-05-26 18:37:33 -06:00
* \param dev DRM device.
* \param priv file private data.
* \param magic magic number.
*
* Creates a drm_magic_entry structure and appends to the linked list
* associated the magic number hash key in drm_device::magiclist, while holding
* the drm_device::struct_sem lock.
*/
static int drm_add_magic(drm_device_t *dev, drm_file_t *priv,
drm_magic_t magic)
1999-12-05 16:10:37 -07:00
{
drm_magic_entry_t *entry;
2001-02-15 01:12:14 -07:00
1999-12-05 16:10:37 -07:00
DRM_DEBUG("%d\n", magic);
2001-02-15 01:12:14 -07:00
entry = drm_alloc(sizeof(*entry), DRM_MEM_MAGIC);
if (!entry)
return -ENOMEM;
memset(entry, 0, sizeof(*entry));
entry->priv = priv;
entry->hash_item.key = (unsigned long) magic;
down(&dev->struct_sem);
drm_ht_insert_item(&dev->magiclist, &entry->hash_item);
list_add_tail(&entry->head, &dev->magicfree);
1999-12-05 16:10:37 -07:00
up(&dev->struct_sem);
2001-02-15 01:12:14 -07:00
1999-12-05 16:10:37 -07:00
return 0;
}
2003-05-26 18:37:33 -06:00
/**
* Remove a magic number.
*
2003-05-26 18:37:33 -06:00
* \param dev DRM device.
* \param magic magic number.
*
* Searches and unlinks the entry in drm_device::magiclist with the magic
* number hash key, while holding the drm_device::struct_sem lock.
*/
2005-06-04 00:18:11 -06:00
static int drm_remove_magic(drm_device_t * dev, drm_magic_t magic)
1999-12-05 16:10:37 -07:00
{
drm_magic_entry_t *pt;
drm_hash_item_t *hash;
2003-05-26 18:37:33 -06:00
1999-12-05 16:10:37 -07:00
DRM_DEBUG("%d\n", magic);
2001-02-15 01:12:14 -07:00
1999-12-05 16:10:37 -07:00
down(&dev->struct_sem);
if (drm_ht_find_item(&dev->magiclist, (unsigned long) magic, &hash)) {
up(&dev->struct_sem);
return -EINVAL;
}
pt = drm_hash_entry(hash, drm_magic_entry_t, hash_item);
drm_ht_remove_item(&dev->magiclist, hash);
list_del(&pt->head);
up(&dev->struct_sem);
1999-12-05 16:10:37 -07:00
drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
2001-02-15 01:12:14 -07:00
return 0;
1999-12-05 16:10:37 -07:00
}
2003-05-26 18:37:33 -06:00
/**
* Get a unique magic number (ioctl).
*
* \param inode device inode.
* \param filp file pointer.
* \param cmd command.
* \param arg pointer to a resulting drm_auth structure.
* \return zero on success, or a negative number on failure.
*
* If there is a magic number in drm_file::magic then use it, otherwise
* searches an unique non-zero magic number and add it associating it with \p
* filp.
*/
int drm_getmagic(struct inode *inode, struct file *filp,
unsigned int cmd, unsigned long arg)
1999-12-05 16:10:37 -07:00
{
static drm_magic_t sequence = 0;
#ifndef DEFINE_SPINLOCK
#define DEFINE_SPINLOCK(x) spinlock_t x = SPIN_LOCK_UNLOCKED
#endif
static DEFINE_SPINLOCK(lock);
drm_file_t *priv = filp->private_data;
drm_device_t *dev = priv->head->dev;
drm_auth_t auth;
1999-12-05 16:10:37 -07:00
/* Find unique magic */
1999-12-05 16:10:37 -07:00
if (priv->magic) {
auth.magic = priv->magic;
} else {
do {
spin_lock(&lock);
if (!sequence)
++sequence; /* reserve 0 */
1999-12-05 16:10:37 -07:00
auth.magic = sequence++;
spin_unlock(&lock);
} while (drm_find_file(dev, auth.magic));
1999-12-05 16:10:37 -07:00
priv->magic = auth.magic;
drm_add_magic(dev, priv, auth.magic);
1999-12-05 16:10:37 -07:00
}
2001-02-15 01:12:14 -07:00
1999-12-05 16:10:37 -07:00
DRM_DEBUG("%u\n", auth.magic);
if (copy_to_user((drm_auth_t __user *) arg, &auth, sizeof(auth)))
2000-09-06 14:56:34 -06:00
return -EFAULT;
1999-12-05 16:10:37 -07:00
return 0;
}
2003-05-26 18:37:33 -06:00
/**
* Authenticate with a magic.
*
* \param inode device inode.
* \param filp file pointer.
* \param cmd command.
* \param arg pointer to a drm_auth structure.
* \return zero if authentication successed, or a negative number otherwise.
*
* Checks if \p filp is associated with the magic number passed in \arg.
*/
int drm_authmagic(struct inode *inode, struct file *filp,
unsigned int cmd, unsigned long arg)
1999-12-05 16:10:37 -07:00
{
drm_file_t *priv = filp->private_data;
drm_device_t *dev = priv->head->dev;
drm_auth_t auth;
drm_file_t *file;
1999-12-05 16:10:37 -07:00
if (copy_from_user(&auth, (drm_auth_t __user *) arg, sizeof(auth)))
2000-09-06 14:56:34 -06:00
return -EFAULT;
1999-12-05 16:10:37 -07:00
DRM_DEBUG("%u\n", auth.magic);
if ((file = drm_find_file(dev, auth.magic))) {
1999-12-05 16:10:37 -07:00
file->authenticated = 1;
drm_remove_magic(dev, auth.magic);
1999-12-05 16:10:37 -07:00
return 0;
}
return -EINVAL;
}