The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/drm/drm_auth.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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  * $FreeBSD$
   32  */
   33 
   34 #include "dev/drm/drmP.h"
   35 
   36 static int DRM(hash_magic)(drm_magic_t magic)
   37 {
   38         return magic & (DRM_HASH_SIZE-1);
   39 }
   40 
   41 static drm_file_t *DRM(find_file)(drm_device_t *dev, drm_magic_t magic)
   42 {
   43         drm_file_t        *retval = NULL;
   44         drm_magic_entry_t *pt;
   45         int               hash    = DRM(hash_magic)(magic);
   46 
   47         DRM_LOCK();
   48         for (pt = dev->magiclist[hash].head; pt; pt = pt->next) {
   49                 if (pt->magic == magic) {
   50                         retval = pt->priv;
   51                         break;
   52                 }
   53         }
   54         DRM_UNLOCK();
   55         return retval;
   56 }
   57 
   58 static int DRM(add_magic)(drm_device_t *dev, drm_file_t *priv, drm_magic_t magic)
   59 {
   60         int               hash;
   61         drm_magic_entry_t *entry;
   62 
   63         DRM_DEBUG("%d\n", magic);
   64 
   65         hash         = DRM(hash_magic)(magic);
   66         entry        = (drm_magic_entry_t*) DRM(alloc)(sizeof(*entry), DRM_MEM_MAGIC);
   67         if (!entry) return DRM_ERR(ENOMEM);
   68         memset(entry, 0, sizeof(*entry));
   69         entry->magic = magic;
   70         entry->priv  = priv;
   71         entry->next  = NULL;
   72 
   73         DRM_LOCK();
   74         if (dev->magiclist[hash].tail) {
   75                 dev->magiclist[hash].tail->next = entry;
   76                 dev->magiclist[hash].tail       = entry;
   77         } else {
   78                 dev->magiclist[hash].head       = entry;
   79                 dev->magiclist[hash].tail       = entry;
   80         }
   81         DRM_UNLOCK();
   82 
   83         return 0;
   84 }
   85 
   86 static int DRM(remove_magic)(drm_device_t *dev, drm_magic_t magic)
   87 {
   88         drm_magic_entry_t *prev = NULL;
   89         drm_magic_entry_t *pt;
   90         int               hash;
   91 
   92         DRM_DEBUG("%d\n", magic);
   93         hash = DRM(hash_magic)(magic);
   94 
   95         DRM_LOCK();
   96         for (pt = dev->magiclist[hash].head; pt; prev = pt, pt = pt->next) {
   97                 if (pt->magic == magic) {
   98                         if (dev->magiclist[hash].head == pt) {
   99                                 dev->magiclist[hash].head = pt->next;
  100                         }
  101                         if (dev->magiclist[hash].tail == pt) {
  102                                 dev->magiclist[hash].tail = prev;
  103                         }
  104                         if (prev) {
  105                                 prev->next = pt->next;
  106                         }
  107                         DRM_UNLOCK();
  108                         return 0;
  109                 }
  110         }
  111         DRM_UNLOCK();
  112 
  113         DRM(free)(pt, sizeof(*pt), DRM_MEM_MAGIC);
  114         return DRM_ERR(EINVAL);
  115 }
  116 
  117 int DRM(getmagic)(DRM_IOCTL_ARGS)
  118 {
  119         static drm_magic_t sequence = 0;
  120         drm_auth_t auth;
  121         drm_file_t *priv;
  122         DRM_DEVICE;
  123 
  124         DRM_GET_PRIV_WITH_RETURN(priv, filp);
  125 
  126                                 /* Find unique magic */
  127         if (priv->magic) {
  128                 auth.magic = priv->magic;
  129         } else {
  130                 do {
  131                         int old = sequence;
  132                         
  133                         auth.magic = old+1;
  134                         
  135                         if (!atomic_cmpset_int(&sequence, old, auth.magic))
  136                                 continue;
  137                 } while (DRM(find_file)(dev, auth.magic));
  138                 priv->magic = auth.magic;
  139                 DRM(add_magic)(dev, priv, auth.magic);
  140         }
  141 
  142         DRM_DEBUG("%u\n", auth.magic);
  143 
  144         DRM_COPY_TO_USER_IOCTL((drm_auth_t *)data, auth, sizeof(auth));
  145 
  146         return 0;
  147 }
  148 
  149 int DRM(authmagic)(DRM_IOCTL_ARGS)
  150 {
  151         drm_auth_t         auth;
  152         drm_file_t         *file;
  153         DRM_DEVICE;
  154 
  155         DRM_COPY_FROM_USER_IOCTL(auth, (drm_auth_t *)data, sizeof(auth));
  156 
  157         DRM_DEBUG("%u\n", auth.magic);
  158 
  159         if ((file = DRM(find_file)(dev, auth.magic))) {
  160                 file->authenticated = 1;
  161                 DRM(remove_magic)(dev, auth.magic);
  162                 return 0;
  163         }
  164         return DRM_ERR(EINVAL);
  165 }

Cache object: 2dd2b82a1896d82331d9e916e9370edd


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.