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/compat/freebsd32/freebsd32_capability.c

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 /*-
    2  * Copyright (c) 2013 The FreeBSD Foundation
    3  * All rights reserved.
    4  *
    5  * This software was developed by Pawel Jakub Dawidek under sponsorship from
    6  * the FreeBSD Foundation.
    7  *
    8  * Redistribution and use in source and binary forms, with or without
    9  * modification, are permitted provided that the following conditions
   10  * are met:
   11  * 1. Redistributions of source code must retain the above copyright
   12  *    notice, this list of conditions and the following disclaimer.
   13  * 2. Redistributions in binary form must reproduce the above copyright
   14  *    notice, this list of conditions and the following disclaimer in the
   15  *    documentation and/or other materials provided with the distribution.
   16  *
   17  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
   18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
   21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   27  * SUCH DAMAGE.
   28  */
   29 
   30 #include <sys/cdefs.h>
   31 __FBSDID("$FreeBSD: releng/11.2/sys/compat/freebsd32/freebsd32_capability.c 306586 2016-10-02 16:13:18Z kib $");
   32 
   33 #include "opt_capsicum.h"
   34 
   35 #include <sys/param.h>
   36 #include <sys/capsicum.h>
   37 #include <sys/filedesc.h>
   38 #include <sys/malloc.h>
   39 #include <sys/proc.h>
   40 #include <sys/syscallsubr.h>
   41 #include <sys/sysproto.h>
   42 
   43 #include <security/audit/audit.h>
   44 
   45 #include <compat/freebsd32/freebsd32_proto.h>
   46 
   47 #ifdef CAPABILITIES
   48 
   49 MALLOC_DECLARE(M_FILECAPS);
   50 
   51 int
   52 freebsd32_cap_ioctls_limit(struct thread *td,
   53     struct freebsd32_cap_ioctls_limit_args *uap)
   54 {
   55         u_long *cmds;
   56         uint32_t *cmds32;
   57         size_t ncmds;
   58         u_int i;
   59         int error;
   60 
   61         ncmds = uap->ncmds;
   62 
   63         if (ncmds > 256)        /* XXX: Is 256 sane? */
   64                 return (EINVAL);
   65 
   66         if (ncmds == 0) {
   67                 cmds = NULL;
   68         } else {
   69                 cmds32 = malloc(sizeof(cmds32[0]) * ncmds, M_FILECAPS, M_WAITOK);
   70                 error = copyin(uap->cmds, cmds32, sizeof(cmds32[0]) * ncmds);
   71                 if (error != 0) {
   72                         free(cmds32, M_FILECAPS);
   73                         return (error);
   74                 }
   75                 cmds = malloc(sizeof(cmds[0]) * ncmds, M_FILECAPS, M_WAITOK);
   76                 for (i = 0; i < ncmds; i++)
   77                         cmds[i] = cmds32[i];
   78                 free(cmds32, M_FILECAPS);
   79         }
   80 
   81         return (kern_cap_ioctls_limit(td, uap->fd, cmds, ncmds));
   82 }
   83 
   84 int
   85 freebsd32_cap_ioctls_get(struct thread *td,
   86     struct freebsd32_cap_ioctls_get_args *uap)
   87 {
   88         struct filedesc *fdp;
   89         struct filedescent *fdep;
   90         uint32_t *cmds32;
   91         u_long *cmds;
   92         size_t maxcmds;
   93         int error, fd;
   94         u_int i;
   95 
   96         fd = uap->fd;
   97         cmds32 = uap->cmds;
   98         maxcmds = uap->maxcmds;
   99 
  100         AUDIT_ARG_FD(fd);
  101 
  102         fdp = td->td_proc->p_fd;
  103         FILEDESC_SLOCK(fdp);
  104 
  105         if (fget_locked(fdp, fd) == NULL) {
  106                 error = EBADF;
  107                 goto out;
  108         }
  109 
  110         /*
  111          * If all ioctls are allowed (fde_nioctls == -1 && fde_ioctls == NULL)
  112          * the only sane thing we can do is to not populate the given array and
  113          * return CAP_IOCTLS_ALL (actually, INT_MAX).
  114          */
  115 
  116         fdep = &fdp->fd_ofiles[fd];
  117         cmds = fdep->fde_ioctls;
  118         if (cmds32 != NULL && cmds != NULL) {
  119                 for (i = 0; i < MIN(fdep->fde_nioctls, maxcmds); i++) {
  120                         error = suword32(&cmds32[i], cmds[i]);
  121                         if (error != 0)
  122                                 goto out;
  123                 }
  124         }
  125         if (fdep->fde_nioctls == -1)
  126                 td->td_retval[0] = INT_MAX;
  127         else
  128                 td->td_retval[0] = fdep->fde_nioctls;
  129 
  130         error = 0;
  131 out:
  132         FILEDESC_SUNLOCK(fdp);
  133         return (error);
  134 }
  135 
  136 #else /* !CAPABILITIES */
  137 
  138 int
  139 freebsd32_cap_ioctls_limit(struct thread *td,
  140     struct freebsd32_cap_ioctls_limit_args *uap)
  141 {
  142 
  143         return (ENOSYS);
  144 }
  145 
  146 int
  147 freebsd32_cap_ioctls_get(struct thread *td,
  148     struct freebsd32_cap_ioctls_get_args *uap)
  149 {
  150 
  151         return (ENOSYS);
  152 }
  153 
  154 #endif /* CAPABILITIES */

Cache object: 15d29cc98be1f9dd22018a7f0df05d82


[ 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.