mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
Implement 32bit versions of the cap_ioctls_limit(2) and cap_ioctls_get(2)
system calls as unsigned longs have different size on i386 and amd64. Reported by: jilles Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
417ffc66fa
commit
0dac22d8ea
5 changed files with 192 additions and 25 deletions
153
sys/compat/freebsd32/freebsd32_capability.c
Normal file
153
sys/compat/freebsd32/freebsd32_capability.c
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
/*-
|
||||
* Copyright (c) 2013 The FreeBSD Foundation
|
||||
* All rights reserved.
|
||||
*
|
||||
* This software was developed by Pawel Jakub Dawidek under sponsorship from
|
||||
* the FreeBSD Foundation.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include "opt_capsicum.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/capability.h>
|
||||
#include <sys/filedesc.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/syscallsubr.h>
|
||||
|
||||
#include <security/audit/audit.h>
|
||||
|
||||
#include <compat/freebsd32/freebsd32_proto.h>
|
||||
|
||||
#ifdef CAPABILITIES
|
||||
|
||||
MALLOC_DECLARE(M_FILECAPS);
|
||||
|
||||
int
|
||||
freebsd32_cap_ioctls_limit(struct thread *td,
|
||||
struct freebsd32_cap_ioctls_limit_args *uap)
|
||||
{
|
||||
u_long *cmds;
|
||||
uint32_t *cmds32;
|
||||
size_t ncmds;
|
||||
u_int i;
|
||||
int error;
|
||||
|
||||
ncmds = uap->ncmds;
|
||||
|
||||
if (ncmds > 256) /* XXX: Is 256 sane? */
|
||||
return (EINVAL);
|
||||
|
||||
if (ncmds == 0) {
|
||||
cmds = NULL;
|
||||
} else {
|
||||
cmds32 = malloc(sizeof(cmds32[0]) * ncmds, M_FILECAPS, M_WAITOK);
|
||||
error = copyin(uap->cmds, cmds32, sizeof(cmds32[0]) * ncmds);
|
||||
if (error != 0) {
|
||||
free(cmds32, M_FILECAPS);
|
||||
return (error);
|
||||
}
|
||||
cmds = malloc(sizeof(cmds[0]) * ncmds, M_FILECAPS, M_WAITOK);
|
||||
for (i = 0; i < ncmds; i++)
|
||||
cmds[i] = cmds32[i];
|
||||
free(cmds32, M_FILECAPS);
|
||||
}
|
||||
|
||||
return (kern_cap_ioctls_limit(td, uap->fd, cmds, ncmds));
|
||||
}
|
||||
|
||||
int
|
||||
freebsd32_cap_ioctls_get(struct thread *td,
|
||||
struct freebsd32_cap_ioctls_get_args *uap)
|
||||
{
|
||||
struct filedesc *fdp;
|
||||
struct filedescent *fdep;
|
||||
uint32_t *cmds32;
|
||||
u_long *cmds;
|
||||
size_t maxcmds;
|
||||
int error, fd;
|
||||
u_int i;
|
||||
|
||||
fd = uap->fd;
|
||||
cmds32 = uap->cmds;
|
||||
maxcmds = uap->maxcmds;
|
||||
|
||||
AUDIT_ARG_FD(fd);
|
||||
|
||||
fdp = td->td_proc->p_fd;
|
||||
FILEDESC_SLOCK(fdp);
|
||||
|
||||
if (fget_locked(fdp, fd) == NULL) {
|
||||
error = EBADF;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/*
|
||||
* If all ioctls are allowed (fde_nioctls == -1 && fde_ioctls == NULL)
|
||||
* the only sane thing we can do is to not populate the given array and
|
||||
* return CAP_IOCTLS_ALL (actually, INT_MAX).
|
||||
*/
|
||||
|
||||
fdep = &fdp->fd_ofiles[fd];
|
||||
cmds = fdep->fde_ioctls;
|
||||
if (cmds32 != NULL && cmds != NULL) {
|
||||
for (i = 0; i < MIN(fdep->fde_nioctls, maxcmds); i++) {
|
||||
error = suword32(&cmds32[i], cmds[i]);
|
||||
if (error != 0)
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
if (fdep->fde_nioctls == -1)
|
||||
td->td_retval[0] = INT_MAX;
|
||||
else
|
||||
td->td_retval[0] = fdep->fde_nioctls;
|
||||
|
||||
error = 0;
|
||||
out:
|
||||
FILEDESC_SUNLOCK(fdp);
|
||||
return (error);
|
||||
}
|
||||
|
||||
#else /* !CAPABILITIES */
|
||||
|
||||
int
|
||||
freebsd32_cap_ioctls_limit(struct thread *td,
|
||||
struct freebsd32_cap_ioctls_limit_args *uap)
|
||||
{
|
||||
|
||||
return (ENOSYS);
|
||||
}
|
||||
|
||||
int
|
||||
freebsd32_cap_ioctls_get(struct thread *td,
|
||||
struct freebsd32_cap_ioctls_get_args *uap)
|
||||
{
|
||||
|
||||
return (ENOSYS);
|
||||
}
|
||||
|
||||
#endif /* CAPABILITIES */
|
||||
|
|
@ -1032,10 +1032,12 @@
|
|||
#endif
|
||||
533 AUE_CAP_RIGHTS_LIMIT NOPROTO { int cap_rights_limit(int fd, \
|
||||
uint64_t rights); }
|
||||
534 AUE_CAP_IOCTLS_LIMIT NOPROTO { int cap_ioctls_limit(int fd, \
|
||||
const u_long *cmds, size_t ncmds); }
|
||||
535 AUE_CAP_IOCTLS_GET NOPROTO { ssize_t cap_ioctls_get(int fd, \
|
||||
u_long *cmds, size_t maxcmds); }
|
||||
534 AUE_CAP_IOCTLS_LIMIT STD { \
|
||||
int freebsd32_cap_ioctls_limit(int fd, \
|
||||
const uint32_t *cmds, size_t ncmds); }
|
||||
535 AUE_CAP_IOCTLS_GET STD { \
|
||||
ssize_t freebsd32_cap_ioctls_get(int fd, \
|
||||
uint32_t *cmds, size_t maxcmds); }
|
||||
536 AUE_CAP_FCNTLS_LIMIT NOPROTO { int cap_fcntls_limit(int fd, \
|
||||
uint32_t fcntlrights); }
|
||||
537 AUE_CAP_FCNTLS_GET NOPROTO { int cap_fcntls_get(int fd, \
|
||||
|
|
|
|||
|
|
@ -275,6 +275,7 @@ cddl/contrib/opensolaris/uts/common/zmod/trees.c optional zfs compile-with "${
|
|||
cddl/contrib/opensolaris/uts/common/zmod/zmod.c optional zfs compile-with "${ZFS_C}"
|
||||
cddl/contrib/opensolaris/uts/common/zmod/zmod_subr.c optional zfs compile-with "${ZFS_C}"
|
||||
cddl/contrib/opensolaris/uts/common/zmod/zutil.c optional zfs compile-with "${ZFS_C}"
|
||||
compat/freebsd32/freebsd32_capability.c optional compat_freebsd32
|
||||
compat/freebsd32/freebsd32_ioctl.c optional compat_freebsd32
|
||||
compat/freebsd32/freebsd32_misc.c optional compat_freebsd32
|
||||
compat/freebsd32/freebsd32_syscalls.c optional compat_freebsd32
|
||||
|
|
|
|||
|
|
@ -70,6 +70,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include <sys/lock.h>
|
||||
#include <sys/mutex.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/syscallsubr.h>
|
||||
#include <sys/sysproto.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/systm.h>
|
||||
|
|
@ -328,32 +329,14 @@ cap_ioctl_limit_check(struct filedesc *fdp, int fd, const u_long *cmds,
|
|||
}
|
||||
|
||||
int
|
||||
sys_cap_ioctls_limit(struct thread *td, struct cap_ioctls_limit_args *uap)
|
||||
kern_cap_ioctls_limit(struct thread *td, int fd, u_long *cmds, size_t ncmds)
|
||||
{
|
||||
struct filedesc *fdp;
|
||||
u_long *cmds, *ocmds;
|
||||
size_t ncmds;
|
||||
int error, fd;
|
||||
|
||||
fd = uap->fd;
|
||||
ncmds = uap->ncmds;
|
||||
u_long *ocmds;
|
||||
int error;
|
||||
|
||||
AUDIT_ARG_FD(fd);
|
||||
|
||||
if (ncmds > 256) /* XXX: Is 256 sane? */
|
||||
return (EINVAL);
|
||||
|
||||
if (ncmds == 0) {
|
||||
cmds = NULL;
|
||||
} else {
|
||||
cmds = malloc(sizeof(cmds[0]) * ncmds, M_FILECAPS, M_WAITOK);
|
||||
error = copyin(uap->cmds, cmds, sizeof(cmds[0]) * ncmds);
|
||||
if (error != 0) {
|
||||
free(cmds, M_FILECAPS);
|
||||
return (error);
|
||||
}
|
||||
}
|
||||
|
||||
fdp = td->td_proc->p_fd;
|
||||
FILEDESC_XLOCK(fdp);
|
||||
|
||||
|
|
@ -378,6 +361,32 @@ out:
|
|||
return (error);
|
||||
}
|
||||
|
||||
int
|
||||
sys_cap_ioctls_limit(struct thread *td, struct cap_ioctls_limit_args *uap)
|
||||
{
|
||||
u_long *cmds;
|
||||
size_t ncmds;
|
||||
int error;
|
||||
|
||||
ncmds = uap->ncmds;
|
||||
|
||||
if (ncmds > 256) /* XXX: Is 256 sane? */
|
||||
return (EINVAL);
|
||||
|
||||
if (ncmds == 0) {
|
||||
cmds = NULL;
|
||||
} else {
|
||||
cmds = malloc(sizeof(cmds[0]) * ncmds, M_FILECAPS, M_WAITOK);
|
||||
error = copyin(uap->cmds, cmds, sizeof(cmds[0]) * ncmds);
|
||||
if (error != 0) {
|
||||
free(cmds, M_FILECAPS);
|
||||
return (error);
|
||||
}
|
||||
}
|
||||
|
||||
return (kern_cap_ioctls_limit(td, uap->fd, cmds, ncmds));
|
||||
}
|
||||
|
||||
int
|
||||
sys_cap_ioctls_get(struct thread *td, struct cap_ioctls_get_args *uap)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -71,6 +71,8 @@ int kern_adjtime(struct thread *td, struct timeval *delta,
|
|||
int kern_alternate_path(struct thread *td, const char *prefix, const char *path,
|
||||
enum uio_seg pathseg, char **pathbuf, int create, int dirfd);
|
||||
int kern_bind(struct thread *td, int fd, struct sockaddr *sa);
|
||||
int kern_cap_ioctls_limit(struct thread *td, int fd, u_long *cmds,
|
||||
size_t ncmds);
|
||||
int kern_chdir(struct thread *td, char *path, enum uio_seg pathseg);
|
||||
int kern_chmod(struct thread *td, char *path, enum uio_seg pathseg,
|
||||
int mode);
|
||||
|
|
|
|||
Loading…
Reference in a new issue