2005-01-06 01:43:34 +00:00
|
|
|
/*-
|
2002-04-27 20:47:57 +00:00
|
|
|
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
|
|
|
|
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
|
|
|
* 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:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Rickard E. (Rik) Faith <faith@valinux.com>
|
|
|
|
* Gareth Hughes <gareth@valinux.com>
|
2003-08-19 02:57:31 +00:00
|
|
|
*
|
2002-04-27 20:47:57 +00:00
|
|
|
*/
|
|
|
|
|
2005-11-28 23:13:57 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/** @file drm_auth.c
|
|
|
|
* Implementation of the get/authmagic ioctls implementing the authentication
|
|
|
|
* scheme between the master and clients.
|
|
|
|
*/
|
|
|
|
|
2002-04-27 20:47:57 +00:00
|
|
|
#include "dev/drm/drmP.h"
|
|
|
|
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
static int drm_hash_magic(drm_magic_t magic)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
|
|
|
return magic & (DRM_HASH_SIZE-1);
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/**
|
|
|
|
* Returns the file private associated with the given magic number.
|
|
|
|
*/
|
2008-10-03 16:59:11 +00:00
|
|
|
static struct drm_file *drm_find_file(struct drm_device *dev, drm_magic_t magic)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
|
|
|
drm_magic_entry_t *pt;
|
2008-08-23 20:59:12 +00:00
|
|
|
int hash = drm_hash_magic(magic);
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_SPINLOCK_ASSERT(&dev->dev_lock);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
|
|
|
for (pt = dev->magiclist[hash].head; pt; pt = pt->next) {
|
|
|
|
if (pt->magic == magic) {
|
2008-08-23 20:59:12 +00:00
|
|
|
return pt->priv;
|
2002-04-27 20:47:57 +00:00
|
|
|
}
|
|
|
|
}
|
2008-08-23 20:59:12 +00:00
|
|
|
|
|
|
|
return NULL;
|
2002-04-27 20:47:57 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/**
|
|
|
|
* Inserts the given magic number into the hash table of used magic number
|
|
|
|
* lists.
|
|
|
|
*/
|
2008-10-03 16:59:11 +00:00
|
|
|
static int drm_add_magic(struct drm_device *dev, struct drm_file *priv,
|
2008-08-23 20:59:12 +00:00
|
|
|
drm_magic_t magic)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
|
|
|
int hash;
|
|
|
|
drm_magic_entry_t *entry;
|
|
|
|
|
|
|
|
DRM_DEBUG("%d\n", magic);
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_SPINLOCK_ASSERT(&dev->dev_lock);
|
|
|
|
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
hash = drm_hash_magic(magic);
|
2008-10-13 18:03:27 +00:00
|
|
|
entry = malloc(sizeof(*entry), DRM_MEM_MAGIC, M_ZERO | M_NOWAIT);
|
2008-10-03 16:59:11 +00:00
|
|
|
if (!entry)
|
|
|
|
return ENOMEM;
|
2002-04-27 20:47:57 +00:00
|
|
|
entry->magic = magic;
|
|
|
|
entry->priv = priv;
|
|
|
|
entry->next = NULL;
|
|
|
|
|
|
|
|
if (dev->magiclist[hash].tail) {
|
|
|
|
dev->magiclist[hash].tail->next = entry;
|
|
|
|
dev->magiclist[hash].tail = entry;
|
|
|
|
} else {
|
|
|
|
dev->magiclist[hash].head = entry;
|
|
|
|
dev->magiclist[hash].tail = entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/**
|
|
|
|
* Removes the given magic number from the hash table of used magic number
|
|
|
|
* lists.
|
|
|
|
*/
|
|
|
|
static int drm_remove_magic(struct drm_device *dev, drm_magic_t magic)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
|
|
|
drm_magic_entry_t *prev = NULL;
|
|
|
|
drm_magic_entry_t *pt;
|
|
|
|
int hash;
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_SPINLOCK_ASSERT(&dev->dev_lock);
|
|
|
|
|
2002-04-27 20:47:57 +00:00
|
|
|
DRM_DEBUG("%d\n", magic);
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
hash = drm_hash_magic(magic);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
|
|
|
for (pt = dev->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
|
|
|
|
if (pt->magic == magic) {
|
|
|
|
if (dev->magiclist[hash].head == pt) {
|
|
|
|
dev->magiclist[hash].head = pt->next;
|
|
|
|
}
|
|
|
|
if (dev->magiclist[hash].tail == pt) {
|
|
|
|
dev->magiclist[hash].tail = prev;
|
|
|
|
}
|
|
|
|
if (prev) {
|
|
|
|
prev->next = pt->next;
|
|
|
|
}
|
2008-10-13 18:03:27 +00:00
|
|
|
free(pt, DRM_MEM_MAGIC);
|
2002-04-27 20:47:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
return EINVAL;
|
2002-04-27 20:47:57 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/**
|
|
|
|
* Called by the client, this returns a unique magic number to be authorized
|
|
|
|
* by the master.
|
|
|
|
*
|
|
|
|
* The master may use its own knowledge of the client (such as the X
|
|
|
|
* connection that the magic is passed over) to determine if the magic number
|
|
|
|
* should be authenticated.
|
|
|
|
*/
|
|
|
|
int drm_getmagic(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
|
|
|
static drm_magic_t sequence = 0;
|
2008-10-03 16:59:11 +00:00
|
|
|
struct drm_auth *auth = data;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
/* Find unique magic */
|
2008-08-23 20:59:12 +00:00
|
|
|
if (file_priv->magic) {
|
|
|
|
auth->magic = file_priv->magic;
|
2002-04-27 20:47:57 +00:00
|
|
|
} else {
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_LOCK();
|
2002-04-27 20:47:57 +00:00
|
|
|
do {
|
2003-03-09 02:08:30 +00:00
|
|
|
int old = sequence;
|
2008-08-23 20:59:12 +00:00
|
|
|
|
|
|
|
auth->magic = old+1;
|
|
|
|
|
|
|
|
if (!atomic_cmpset_int(&sequence, old, auth->magic))
|
2003-03-09 02:08:30 +00:00
|
|
|
continue;
|
2008-08-23 20:59:12 +00:00
|
|
|
} while (drm_find_file(dev, auth->magic));
|
|
|
|
file_priv->magic = auth->magic;
|
|
|
|
drm_add_magic(dev, file_priv, auth->magic);
|
|
|
|
DRM_UNLOCK();
|
2002-04-27 20:47:57 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_DEBUG("%u\n", auth->magic);
|
2002-04-27 20:47:57 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/**
|
|
|
|
* Marks the client associated with the given magic number as authenticated.
|
|
|
|
*/
|
|
|
|
int drm_authmagic(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv)
|
2002-04-27 20:47:57 +00:00
|
|
|
{
|
2008-10-03 16:59:11 +00:00
|
|
|
struct drm_auth *auth = data;
|
|
|
|
struct drm_file *priv;
|
2002-04-27 20:47:57 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_DEBUG("%u\n", auth->magic);
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_LOCK();
|
|
|
|
priv = drm_find_file(dev, auth->magic);
|
|
|
|
if (priv != NULL) {
|
|
|
|
priv->authenticated = 1;
|
|
|
|
drm_remove_magic(dev, auth->magic);
|
|
|
|
DRM_UNLOCK();
|
2002-04-27 20:47:57 +00:00
|
|
|
return 0;
|
2008-08-23 20:59:12 +00:00
|
|
|
} else {
|
|
|
|
DRM_UNLOCK();
|
|
|
|
return EINVAL;
|
2002-04-27 20:47:57 +00:00
|
|
|
}
|
|
|
|
}
|