1995-06-25 17:32:43 +00:00
|
|
|
|
/*-
|
|
|
|
|
* Copyright (c) 1994-1995 S<EFBFBD>ren Schmidt
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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
|
2003-03-03 09:17:12 +00:00
|
|
|
|
* notice, this list of conditions and the following disclaimer
|
1995-06-25 17:32:43 +00:00
|
|
|
|
* in this position and unchanged.
|
|
|
|
|
* 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.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
2002-06-02 20:05:59 +00:00
|
|
|
|
* derived from this software without specific prior written permission
|
1995-06-25 17:32:43 +00:00
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2003-06-10 21:29:12 +00:00
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
2002-08-01 22:23:02 +00:00
|
|
|
|
#include "opt_mac.h"
|
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <sys/param.h>
|
1999-11-27 16:55:14 +00:00
|
|
|
|
#include <sys/conf.h>
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <sys/dirent.h>
|
|
|
|
|
#include <sys/file.h>
|
|
|
|
|
#include <sys/filedesc.h>
|
|
|
|
|
#include <sys/proc.h>
|
2002-08-01 22:23:02 +00:00
|
|
|
|
#include <sys/mac.h>
|
2002-09-05 08:13:20 +00:00
|
|
|
|
#include <sys/malloc.h>
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <sys/mount.h>
|
|
|
|
|
#include <sys/namei.h>
|
|
|
|
|
#include <sys/stat.h>
|
1999-11-27 16:55:14 +00:00
|
|
|
|
#include <sys/systm.h>
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
|
|
2000-08-22 01:51:54 +00:00
|
|
|
|
#include <machine/../linux/linux.h>
|
2000-11-10 21:30:19 +00:00
|
|
|
|
#include <machine/../linux/linux_proto.h>
|
2002-09-05 08:13:20 +00:00
|
|
|
|
|
2000-08-22 01:51:54 +00:00
|
|
|
|
#include <compat/linux/linux_util.h>
|
1999-12-15 23:02:35 +00:00
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
static int
|
|
|
|
|
newstat_copyout(struct stat *buf, void *ubuf)
|
|
|
|
|
{
|
2001-09-08 19:07:04 +00:00
|
|
|
|
struct l_newstat tbuf;
|
2001-01-14 23:33:50 +00:00
|
|
|
|
struct cdevsw *cdevsw;
|
2004-06-16 09:47:26 +00:00
|
|
|
|
struct cdev *dev;
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
2003-04-29 17:03:22 +00:00
|
|
|
|
bzero(&tbuf, sizeof(tbuf));
|
2001-09-08 19:07:04 +00:00
|
|
|
|
tbuf.st_dev = uminor(buf->st_dev) | (umajor(buf->st_dev) << 8);
|
|
|
|
|
tbuf.st_ino = buf->st_ino;
|
|
|
|
|
tbuf.st_mode = buf->st_mode;
|
|
|
|
|
tbuf.st_nlink = buf->st_nlink;
|
|
|
|
|
tbuf.st_uid = buf->st_uid;
|
|
|
|
|
tbuf.st_gid = buf->st_gid;
|
|
|
|
|
tbuf.st_rdev = buf->st_rdev;
|
|
|
|
|
tbuf.st_size = buf->st_size;
|
|
|
|
|
tbuf.st_atime = buf->st_atime;
|
|
|
|
|
tbuf.st_mtime = buf->st_mtime;
|
|
|
|
|
tbuf.st_ctime = buf->st_ctime;
|
|
|
|
|
tbuf.st_blksize = buf->st_blksize;
|
|
|
|
|
tbuf.st_blocks = buf->st_blocks;
|
2000-12-29 00:44:42 +00:00
|
|
|
|
|
2001-01-14 23:33:50 +00:00
|
|
|
|
/* Lie about disk drives which are character devices
|
|
|
|
|
* in FreeBSD but block devices under Linux.
|
|
|
|
|
*/
|
2001-09-08 19:07:04 +00:00
|
|
|
|
if (S_ISCHR(tbuf.st_mode) &&
|
2004-06-17 17:16:53 +00:00
|
|
|
|
(dev = findcdev(buf->st_rdev)) != NULL) {
|
2001-01-14 23:33:50 +00:00
|
|
|
|
cdevsw = devsw(dev);
|
|
|
|
|
if (cdevsw != NULL && (cdevsw->d_flags & D_DISK)) {
|
2001-09-08 19:07:04 +00:00
|
|
|
|
tbuf.st_mode &= ~S_IFMT;
|
|
|
|
|
tbuf.st_mode |= S_IFBLK;
|
2001-01-14 23:33:50 +00:00
|
|
|
|
|
|
|
|
|
/* XXX this may not be quite right */
|
|
|
|
|
/* Map major number to 0 */
|
2001-09-08 19:07:04 +00:00
|
|
|
|
tbuf.st_dev = uminor(buf->st_dev) & 0xf;
|
|
|
|
|
tbuf.st_rdev = buf->st_rdev & 0xff;
|
2001-01-14 23:33:50 +00:00
|
|
|
|
}
|
2000-12-29 00:44:42 +00:00
|
|
|
|
}
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
|
|
|
|
return (copyout(&tbuf, ubuf, sizeof(tbuf)));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_newstat(struct thread *td, struct linux_newstat_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
1999-08-25 15:23:54 +00:00
|
|
|
|
struct stat buf;
|
|
|
|
|
struct nameidata nd;
|
2002-09-01 22:30:27 +00:00
|
|
|
|
char *path;
|
1999-08-25 15:23:54 +00:00
|
|
|
|
int error;
|
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LCONVPATHEXIST(td, args->path, &path);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#ifdef DEBUG
|
2001-02-16 16:40:43 +00:00
|
|
|
|
if (ldebug(newstat))
|
2002-09-01 22:30:27 +00:00
|
|
|
|
printf(ARGS(newstat, "%s, *"), path);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#endif
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | NOOBJ, UIO_SYSSPACE, path, td);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
error = namei(&nd);
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LFREEPATH(path);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
1999-12-15 23:02:35 +00:00
|
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
|
error = vn_stat(nd.ni_vp, &buf, td->td_ucred, NOCRED, td);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
vput(nd.ni_vp);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
return (newstat_copyout(&buf, args->buf));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_newlstat(struct thread *td, struct linux_newlstat_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
|
int error;
|
1999-08-25 15:23:54 +00:00
|
|
|
|
struct stat sb;
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
|
struct nameidata nd;
|
2002-09-01 22:30:27 +00:00
|
|
|
|
char *path;
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LCONVPATHEXIST(td, args->path, &path);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#ifdef DEBUG
|
2001-02-16 16:40:43 +00:00
|
|
|
|
if (ldebug(newlstat))
|
2002-09-01 22:30:27 +00:00
|
|
|
|
printf(ARGS(newlstat, "%s, *"), path);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#endif
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF | NOOBJ, UIO_SYSSPACE, path,
|
|
|
|
|
td);
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
|
error = namei(&nd);
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LFREEPATH(path);
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
2003-03-03 09:17:12 +00:00
|
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
|
error = vn_stat(nd.ni_vp, &sb, td->td_ucred, NOCRED, td);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
vput(nd.ni_vp);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
|
2001-09-08 19:07:04 +00:00
|
|
|
|
return (newstat_copyout(&sb, args->buf));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_newfstat(struct thread *td, struct linux_newfstat_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
1999-08-25 15:23:54 +00:00
|
|
|
|
struct file *fp;
|
|
|
|
|
struct stat buf;
|
|
|
|
|
int error;
|
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#ifdef DEBUG
|
2001-02-16 16:40:43 +00:00
|
|
|
|
if (ldebug(newfstat))
|
|
|
|
|
printf(ARGS(newfstat, "%d, *"), args->fd);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#endif
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
2002-01-14 00:13:45 +00:00
|
|
|
|
if ((error = fget(td, args->fd, &fp)) != 0)
|
|
|
|
|
return (error);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
|
error = fo_stat(fp, &buf, td->td_ucred, td);
|
2002-01-13 11:58:06 +00:00
|
|
|
|
fdrop(fp, td);
|
1999-08-25 15:23:54 +00:00
|
|
|
|
if (!error)
|
|
|
|
|
error = newstat_copyout(&buf, args->buf);
|
|
|
|
|
|
|
|
|
|
return (error);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-09-08 19:07:04 +00:00
|
|
|
|
/* XXX - All fields of type l_int are defined as l_long on i386 */
|
|
|
|
|
struct l_statfs {
|
|
|
|
|
l_int f_type;
|
|
|
|
|
l_int f_bsize;
|
|
|
|
|
l_int f_blocks;
|
|
|
|
|
l_int f_bfree;
|
|
|
|
|
l_int f_bavail;
|
|
|
|
|
l_int f_files;
|
|
|
|
|
l_int f_ffree;
|
|
|
|
|
l_fsid_t f_fsid;
|
|
|
|
|
l_int f_namelen;
|
|
|
|
|
l_int f_spare[6];
|
1995-06-25 17:32:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
2000-01-08 21:09:41 +00:00
|
|
|
|
#define LINUX_CODA_SUPER_MAGIC 0x73757245L
|
|
|
|
|
#define LINUX_EXT2_SUPER_MAGIC 0xEF53L
|
|
|
|
|
#define LINUX_HPFS_SUPER_MAGIC 0xf995e849L
|
|
|
|
|
#define LINUX_ISOFS_SUPER_MAGIC 0x9660L
|
|
|
|
|
#define LINUX_MSDOS_SUPER_MAGIC 0x4d44L
|
|
|
|
|
#define LINUX_NCP_SUPER_MAGIC 0x564cL
|
|
|
|
|
#define LINUX_NFS_SUPER_MAGIC 0x6969L
|
|
|
|
|
#define LINUX_NTFS_SUPER_MAGIC 0x5346544EL
|
|
|
|
|
#define LINUX_PROC_SUPER_MAGIC 0x9fa0L
|
|
|
|
|
#define LINUX_UFS_SUPER_MAGIC 0x00011954L /* XXX - UFS_MAGIC in Linux */
|
|
|
|
|
|
|
|
|
|
static long
|
2001-09-19 12:35:51 +00:00
|
|
|
|
bsd_to_linux_ftype(const char *fstypename)
|
2000-01-08 21:09:41 +00:00
|
|
|
|
{
|
2001-09-19 12:35:51 +00:00
|
|
|
|
int i;
|
|
|
|
|
static struct {const char *bsd_name; long linux_type;} b2l_tbl[] = {
|
|
|
|
|
{"ufs", LINUX_UFS_SUPER_MAGIC},
|
|
|
|
|
{"cd9660", LINUX_ISOFS_SUPER_MAGIC},
|
|
|
|
|
{"nfs", LINUX_NFS_SUPER_MAGIC},
|
|
|
|
|
{"ext2fs", LINUX_EXT2_SUPER_MAGIC},
|
|
|
|
|
{"procfs", LINUX_PROC_SUPER_MAGIC},
|
|
|
|
|
{"msdosfs", LINUX_MSDOS_SUPER_MAGIC},
|
|
|
|
|
{"ntfs", LINUX_NTFS_SUPER_MAGIC},
|
|
|
|
|
{"nwfs", LINUX_NCP_SUPER_MAGIC},
|
|
|
|
|
{"hpfs", LINUX_HPFS_SUPER_MAGIC},
|
|
|
|
|
{"coda", LINUX_CODA_SUPER_MAGIC},
|
|
|
|
|
{NULL, 0L}};
|
|
|
|
|
|
|
|
|
|
for (i = 0; b2l_tbl[i].bsd_name != NULL; i++)
|
|
|
|
|
if (strcmp(b2l_tbl[i].bsd_name, fstypename) == 0)
|
|
|
|
|
return (b2l_tbl[i].linux_type);
|
2000-01-08 21:09:41 +00:00
|
|
|
|
|
|
|
|
|
return (0L);
|
|
|
|
|
}
|
|
|
|
|
|
1995-06-25 17:32:43 +00:00
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_statfs(struct thread *td, struct linux_statfs_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
|
|
|
|
struct mount *mp;
|
|
|
|
|
struct nameidata *ndp;
|
|
|
|
|
struct statfs *bsd_statfs;
|
|
|
|
|
struct nameidata nd;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
struct l_statfs linux_statfs;
|
2002-09-01 22:30:27 +00:00
|
|
|
|
char *path;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
int error;
|
Mega-commit for Linux emulator update.. This has been stress tested under
netscape-2.0 for Linux running all the Java stuff. The scrollbars are now
working, at least on my machine. (whew! :-)
I'm uncomfortable with the size of this commit, but it's too
inter-dependant to easily seperate out.
The main changes:
COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386
machine dependent section into the linux emulator itself. The int 0x80
syscall code was almost identical to the lcall 7,0 code and a minor tweak
allows them to both be used with the same C code. All kernels can now
just modload the lkm and it'll DTRT without having to rebuild the kernel
first. Like IBCS2, you can statically compile it in with "options LINUX".
A pile of new syscalls implemented, including getdents(), llseek(),
readv(), writev(), msync(), personality(). The Linux-ELF libraries want
to use some of these.
linux_select() now obeys Linux semantics, ie: returns the time remaining
of the timeout value rather than leaving it the original value.
Quite a few bugs removed, including incorrect arguments being used in
syscalls.. eg: mixups between passing the sigset as an int, vs passing
it as a pointer and doing a copyin(), missing return values, unhandled
cases, SIOC* ioctls, etc.
The build for the code has changed. i386/conf/files now knows how
to build linux_genassym and generate linux_assym.h on the fly.
Supporting changes elsewhere in the kernel:
The user-mode signal trampoline has moved from the U area to immediately
below the top of the stack (below PS_STRINGS). This allows the different
binary emulations to have their own signal trampoline code (which gets rid
of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so
that the emulator can provide the exact "struct sigcontext *" argument to
the program's signal handlers.
The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which
have the same values as the re-used SA_DISABLE and SA_ONSTACK which are
intended for sigaction only. This enables the support of a SA_RESETHAND
flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal
semantics where the signal handler is reset when it's triggered.
makesyscalls.sh no longer appends the struct sysentvec on the end of the
generated init_sysent.c code. It's a lot saner to have it in a seperate
file rather than trying to update the structure inside the awk script. :-)
At exec time, the dozen bytes or so of signal trampoline code are copied
to the top of the user's stack, rather than obtaining the trampoline code
the old way by getting a clone of the parent's user area. This allows
Linux and native binaries to freely exec each other without getting
trampolines mixed up.
1996-03-02 19:38:20 +00:00
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LCONVPATHEXIST(td, args->path, &path);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2001-02-16 16:40:43 +00:00
|
|
|
|
if (ldebug(statfs))
|
2002-09-01 22:30:27 +00:00
|
|
|
|
printf(ARGS(statfs, "%s, *"), path);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#endif
|
|
|
|
|
ndp = &nd;
|
2002-09-01 22:30:27 +00:00
|
|
|
|
NDINIT(ndp, LOOKUP, FOLLOW, UIO_SYSSPACE, path, td);
|
1999-05-06 18:44:42 +00:00
|
|
|
|
error = namei(ndp);
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LFREEPATH(path);
|
1999-05-06 18:44:42 +00:00
|
|
|
|
if (error)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
return error;
|
1999-12-15 23:02:35 +00:00
|
|
|
|
NDFREE(ndp, NDF_ONLY_PNBUF);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
mp = ndp->ni_vp->v_mount;
|
|
|
|
|
bsd_statfs = &mp->mnt_stat;
|
|
|
|
|
vrele(ndp->ni_vp);
|
2002-08-01 22:23:02 +00:00
|
|
|
|
#ifdef MAC
|
2003-03-20 21:17:40 +00:00
|
|
|
|
error = mac_check_mount_stat(td->td_ucred, mp);
|
2002-08-01 22:23:02 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
#endif
|
2001-09-12 08:38:13 +00:00
|
|
|
|
error = VFS_STATFS(mp, bsd_statfs, td);
|
1999-05-06 18:44:42 +00:00
|
|
|
|
if (error)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
return error;
|
|
|
|
|
bsd_statfs->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
|
2001-09-19 12:35:51 +00:00
|
|
|
|
linux_statfs.f_type = bsd_to_linux_ftype(bsd_statfs->f_fstypename);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
linux_statfs.f_bsize = bsd_statfs->f_bsize;
|
|
|
|
|
linux_statfs.f_blocks = bsd_statfs->f_blocks;
|
|
|
|
|
linux_statfs.f_bfree = bsd_statfs->f_bfree;
|
|
|
|
|
linux_statfs.f_bavail = bsd_statfs->f_bavail;
|
2003-03-03 09:17:12 +00:00
|
|
|
|
linux_statfs.f_ffree = bsd_statfs->f_ffree;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
linux_statfs.f_files = bsd_statfs->f_files;
|
2003-11-05 23:52:54 +00:00
|
|
|
|
if (suser(td)) {
|
|
|
|
|
linux_statfs.f_fsid.val[0] = 0;
|
|
|
|
|
linux_statfs.f_fsid.val[1] = 0;
|
|
|
|
|
} else {
|
|
|
|
|
linux_statfs.f_fsid.val[0] = bsd_statfs->f_fsid.val[0];
|
|
|
|
|
linux_statfs.f_fsid.val[1] = bsd_statfs->f_fsid.val[1];
|
|
|
|
|
}
|
2001-09-08 19:07:04 +00:00
|
|
|
|
linux_statfs.f_namelen = MAXNAMLEN;
|
2003-03-03 09:14:26 +00:00
|
|
|
|
return copyout(&linux_statfs, args->buf, sizeof(linux_statfs));
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_fstatfs(struct thread *td, struct linux_fstatfs_args *args)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
{
|
|
|
|
|
struct file *fp;
|
|
|
|
|
struct mount *mp;
|
|
|
|
|
struct statfs *bsd_statfs;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
struct l_statfs linux_statfs;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2001-02-16 16:40:43 +00:00
|
|
|
|
if (ldebug(fstatfs))
|
|
|
|
|
printf(ARGS(fstatfs, "%d, *"), args->fd);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
#endif
|
2001-09-12 08:38:13 +00:00
|
|
|
|
error = getvnode(td->td_proc->p_fd, args->fd, &fp);
|
1999-05-06 18:44:42 +00:00
|
|
|
|
if (error)
|
1995-06-25 17:32:43 +00:00
|
|
|
|
return error;
|
2003-06-22 08:41:43 +00:00
|
|
|
|
mp = fp->f_vnode->v_mount;
|
2002-08-01 22:23:02 +00:00
|
|
|
|
#ifdef MAC
|
2003-03-20 21:17:40 +00:00
|
|
|
|
error = mac_check_mount_stat(td->td_ucred, mp);
|
2002-08-01 22:23:02 +00:00
|
|
|
|
if (error) {
|
|
|
|
|
fdrop(fp, td);
|
|
|
|
|
return (error);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
1995-06-25 17:32:43 +00:00
|
|
|
|
bsd_statfs = &mp->mnt_stat;
|
2001-09-12 08:38:13 +00:00
|
|
|
|
error = VFS_STATFS(mp, bsd_statfs, td);
|
2002-01-13 11:58:06 +00:00
|
|
|
|
if (error) {
|
|
|
|
|
fdrop(fp, td);
|
1995-06-25 17:32:43 +00:00
|
|
|
|
return error;
|
2002-01-13 11:58:06 +00:00
|
|
|
|
}
|
1995-06-25 17:32:43 +00:00
|
|
|
|
bsd_statfs->f_flags = mp->mnt_flag & MNT_VISFLAGMASK;
|
2001-09-19 12:35:51 +00:00
|
|
|
|
linux_statfs.f_type = bsd_to_linux_ftype(bsd_statfs->f_fstypename);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
linux_statfs.f_bsize = bsd_statfs->f_bsize;
|
|
|
|
|
linux_statfs.f_blocks = bsd_statfs->f_blocks;
|
|
|
|
|
linux_statfs.f_bfree = bsd_statfs->f_bfree;
|
|
|
|
|
linux_statfs.f_bavail = bsd_statfs->f_bavail;
|
2003-03-03 09:17:12 +00:00
|
|
|
|
linux_statfs.f_ffree = bsd_statfs->f_ffree;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
linux_statfs.f_files = bsd_statfs->f_files;
|
2003-11-05 23:52:54 +00:00
|
|
|
|
if (suser(td)) {
|
|
|
|
|
linux_statfs.f_fsid.val[0] = 0;
|
|
|
|
|
linux_statfs.f_fsid.val[1] = 0;
|
|
|
|
|
} else {
|
|
|
|
|
linux_statfs.f_fsid.val[0] = bsd_statfs->f_fsid.val[0];
|
|
|
|
|
linux_statfs.f_fsid.val[1] = bsd_statfs->f_fsid.val[1];
|
|
|
|
|
}
|
2001-09-08 19:07:04 +00:00
|
|
|
|
linux_statfs.f_namelen = MAXNAMLEN;
|
2003-03-03 09:14:26 +00:00
|
|
|
|
error = copyout(&linux_statfs, args->buf, sizeof(linux_statfs));
|
2002-01-13 11:58:06 +00:00
|
|
|
|
fdrop(fp, td);
|
|
|
|
|
return error;
|
1995-06-25 17:32:43 +00:00
|
|
|
|
}
|
1999-11-27 16:55:14 +00:00
|
|
|
|
|
2003-03-03 09:17:12 +00:00
|
|
|
|
struct l_ustat
|
2001-09-08 19:07:04 +00:00
|
|
|
|
{
|
|
|
|
|
l_daddr_t f_tfree;
|
|
|
|
|
l_ino_t f_tinode;
|
|
|
|
|
char f_fname[6];
|
|
|
|
|
char f_fpack[6];
|
|
|
|
|
};
|
|
|
|
|
|
1999-11-27 16:55:14 +00:00
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_ustat(struct thread *td, struct linux_ustat_args *args)
|
1999-11-27 16:55:14 +00:00
|
|
|
|
{
|
2001-09-08 19:07:04 +00:00
|
|
|
|
struct l_ustat lu;
|
2004-06-16 09:47:26 +00:00
|
|
|
|
struct cdev *dev;
|
1999-11-27 16:55:14 +00:00
|
|
|
|
struct vnode *vp;
|
|
|
|
|
struct statfs *stat;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2001-02-16 16:40:43 +00:00
|
|
|
|
if (ldebug(ustat))
|
2001-09-08 19:07:04 +00:00
|
|
|
|
printf(ARGS(ustat, "%d, *"), args->dev);
|
1999-11-27 16:55:14 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* lu.f_fname and lu.f_fpack are not used. They are always zeroed.
|
|
|
|
|
* lu.f_tinode and lu.f_tfree are set from the device's super block.
|
|
|
|
|
*/
|
|
|
|
|
bzero(&lu, sizeof(lu));
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* XXX - Don't return an error if we can't find a vnode for the
|
2004-06-16 09:47:26 +00:00
|
|
|
|
* device. Our struct cdev *is 32-bits whereas Linux only has a 16-bits
|
|
|
|
|
* struct cdev *. The struct cdev *that is used now may as well be a truncated
|
|
|
|
|
* struct cdev *returned from previous syscalls. Just return a bzeroed
|
1999-11-27 16:55:14 +00:00
|
|
|
|
* ustat in that case.
|
|
|
|
|
*/
|
2004-06-17 17:16:53 +00:00
|
|
|
|
dev = findcdev(makedev(args->dev >> 8, args->dev & 0xFF));
|
|
|
|
|
if (dev != NULL && vfinddev(dev, &vp)) {
|
1999-11-27 16:55:14 +00:00
|
|
|
|
if (vp->v_mount == NULL)
|
|
|
|
|
return (EINVAL);
|
2002-08-01 22:23:02 +00:00
|
|
|
|
#ifdef MAC
|
2003-03-20 21:17:40 +00:00
|
|
|
|
error = mac_check_mount_stat(td->td_ucred, vp->v_mount);
|
2002-08-01 22:23:02 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
#endif
|
1999-11-27 16:55:14 +00:00
|
|
|
|
stat = &(vp->v_mount->mnt_stat);
|
2001-09-12 08:38:13 +00:00
|
|
|
|
error = VFS_STATFS(vp->v_mount, stat, td);
|
1999-11-27 16:55:14 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
lu.f_tfree = stat->f_bfree;
|
|
|
|
|
lu.f_tinode = stat->f_ffree;
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-08 19:07:04 +00:00
|
|
|
|
return (copyout(&lu, args->ubuf, sizeof(lu)));
|
1999-11-27 16:55:14 +00:00
|
|
|
|
}
|
2001-09-08 19:07:04 +00:00
|
|
|
|
|
|
|
|
|
#if defined(__i386__)
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
stat64_copyout(struct stat *buf, void *ubuf)
|
|
|
|
|
{
|
|
|
|
|
struct l_stat64 lbuf;
|
2003-04-29 12:36:03 +00:00
|
|
|
|
struct cdevsw *cdevsw;
|
2004-06-16 09:47:26 +00:00
|
|
|
|
struct cdev *dev;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
|
|
|
|
|
bzero(&lbuf, sizeof(lbuf));
|
|
|
|
|
lbuf.st_dev = uminor(buf->st_dev) | (umajor(buf->st_dev) << 8);
|
|
|
|
|
lbuf.st_ino = buf->st_ino;
|
|
|
|
|
lbuf.st_mode = buf->st_mode;
|
|
|
|
|
lbuf.st_nlink = buf->st_nlink;
|
|
|
|
|
lbuf.st_uid = buf->st_uid;
|
|
|
|
|
lbuf.st_gid = buf->st_gid;
|
|
|
|
|
lbuf.st_rdev = buf->st_rdev;
|
|
|
|
|
lbuf.st_size = buf->st_size;
|
|
|
|
|
lbuf.st_atime = buf->st_atime;
|
|
|
|
|
lbuf.st_mtime = buf->st_mtime;
|
|
|
|
|
lbuf.st_ctime = buf->st_ctime;
|
|
|
|
|
lbuf.st_blksize = buf->st_blksize;
|
|
|
|
|
lbuf.st_blocks = buf->st_blocks;
|
|
|
|
|
|
2003-04-29 12:36:03 +00:00
|
|
|
|
/* Lie about disk drives which are character devices
|
|
|
|
|
* in FreeBSD but block devices under Linux.
|
|
|
|
|
*/
|
|
|
|
|
if (S_ISCHR(lbuf.st_mode) &&
|
2004-06-17 17:16:53 +00:00
|
|
|
|
(dev = findcdev(buf->st_rdev)) != NULL) {
|
2003-04-29 12:36:03 +00:00
|
|
|
|
cdevsw = devsw(dev);
|
|
|
|
|
if (cdevsw != NULL && (cdevsw->d_flags & D_DISK)) {
|
|
|
|
|
lbuf.st_mode &= ~S_IFMT;
|
|
|
|
|
lbuf.st_mode |= S_IFBLK;
|
|
|
|
|
|
|
|
|
|
/* XXX this may not be quite right */
|
|
|
|
|
/* Map major number to 0 */
|
|
|
|
|
lbuf.st_dev = uminor(buf->st_dev) & 0xf;
|
|
|
|
|
lbuf.st_rdev = buf->st_rdev & 0xff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-09-08 19:07:04 +00:00
|
|
|
|
/*
|
|
|
|
|
* The __st_ino field makes all the difference. In the Linux kernel
|
|
|
|
|
* it is conditionally compiled based on STAT64_HAS_BROKEN_ST_INO,
|
|
|
|
|
* but without the assignment to __st_ino the runtime linker refuses
|
|
|
|
|
* to mmap(2) any shared libraries. I guess it's broken alright :-)
|
|
|
|
|
*/
|
|
|
|
|
lbuf.__st_ino = buf->st_ino;
|
|
|
|
|
|
|
|
|
|
return (copyout(&lbuf, ubuf, sizeof(lbuf)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_stat64(struct thread *td, struct linux_stat64_args *args)
|
2001-09-08 19:07:04 +00:00
|
|
|
|
{
|
|
|
|
|
struct stat buf;
|
|
|
|
|
struct nameidata nd;
|
|
|
|
|
int error;
|
2002-09-01 22:30:27 +00:00
|
|
|
|
char *filename;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LCONVPATHEXIST(td, args->filename, &filename);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
if (ldebug(stat64))
|
2002-09-01 22:30:27 +00:00
|
|
|
|
printf(ARGS(stat64, "%s, *"), filename);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | NOOBJ, UIO_SYSSPACE, filename,
|
|
|
|
|
td);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
error = namei(&nd);
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LFREEPATH(filename);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
|
|
|
|
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
|
error = vn_stat(nd.ni_vp, &buf, td->td_ucred, NOCRED, td);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
vput(nd.ni_vp);
|
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
return (stat64_copyout(&buf, args->statbuf));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_lstat64(struct thread *td, struct linux_lstat64_args *args)
|
2001-09-08 19:07:04 +00:00
|
|
|
|
{
|
|
|
|
|
int error;
|
|
|
|
|
struct stat sb;
|
|
|
|
|
struct nameidata nd;
|
2002-09-01 22:30:27 +00:00
|
|
|
|
char *filename;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LCONVPATHEXIST(td, args->filename, &filename);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
if (ldebug(lstat64))
|
|
|
|
|
printf(ARGS(lstat64, "%s, *"), args->filename);
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-09-01 22:30:27 +00:00
|
|
|
|
NDINIT(&nd, LOOKUP, NOFOLLOW | LOCKLEAF | NOOBJ, UIO_SYSSPACE, filename,
|
|
|
|
|
td);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
error = namei(&nd);
|
2002-09-01 22:30:27 +00:00
|
|
|
|
LFREEPATH(filename);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
2003-03-03 09:17:12 +00:00
|
|
|
|
NDFREE(&nd, NDF_ONLY_PNBUF);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
|
error = vn_stat(nd.ni_vp, &sb, td->td_ucred, NOCRED, td);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
vput(nd.ni_vp);
|
|
|
|
|
if (error)
|
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
|
|
return (stat64_copyout(&sb, args->statbuf));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2001-09-12 08:38:13 +00:00
|
|
|
|
linux_fstat64(struct thread *td, struct linux_fstat64_args *args)
|
2001-09-08 19:07:04 +00:00
|
|
|
|
{
|
|
|
|
|
struct filedesc *fdp;
|
|
|
|
|
struct file *fp;
|
|
|
|
|
struct stat buf;
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
if (ldebug(fstat64))
|
|
|
|
|
printf(ARGS(fstat64, "%d, *"), args->fd);
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-09-12 08:38:13 +00:00
|
|
|
|
fdp = td->td_proc->p_fd;
|
2001-09-08 19:07:04 +00:00
|
|
|
|
if ((unsigned)args->fd >= fdp->fd_nfiles ||
|
|
|
|
|
(fp = fdp->fd_ofiles[args->fd]) == NULL)
|
|
|
|
|
return (EBADF);
|
|
|
|
|
|
Make similar changes to fo_stat() and fo_poll() as made earlier to
fo_read() and fo_write(): explicitly use the cred argument to fo_poll()
as "active_cred" using the passed file descriptor's f_cred reference
to provide access to the file credential. Add an active_cred
argument to fo_stat() so that implementers have access to the active
credential as well as the file credential. Generally modify callers
of fo_stat() to pass in td->td_ucred rather than fp->f_cred, which
was redundantly provided via the fp argument. This set of modifications
also permits threads to perform these operations on behalf of another
thread without modifying their credential.
Trickle this change down into fo_stat/poll() implementations:
- badfo_poll(), badfo_stat(): modify/add arguments.
- kqueue_poll(), kqueue_stat(): modify arguments.
- pipe_poll(), pipe_stat(): modify/add arguments, pass active_cred to
MAC checks rather than td->td_ucred.
- soo_poll(), soo_stat(): modify/add arguments, pass fp->f_cred rather
than cred to pru_sopoll() to maintain current semantics.
- sopoll(): moidfy arguments.
- vn_poll(), vn_statfile(): modify/add arguments, pass new arguments
to vn_stat(). Pass active_cred to MAC and fp->f_cred to VOP_POLL()
to maintian current semantics.
- vn_close(): rename cred to file_cred to reflect reality while I'm here.
- vn_stat(): Add active_cred and file_cred arguments to vn_stat()
and consumers so that this distinction is maintained at the VFS
as well as 'struct file' layer. Pass active_cred instead of
td->td_ucred to MAC and to VOP_GETATTR() to maintain current semantics.
- fifofs: modify the creation of a "filetemp" so that the file
credential is properly initialized and can be used in the socket
code if desired. Pass ap->a_td->td_ucred as the active
credential to soo_poll(). If we teach the vnop interface about
the distinction between file and active credentials, we would use
the active credential here.
Note that current inconsistent passing of active_cred vs. file_cred to
VOP's is maintained. It's not clear why GETATTR would be authorized
using active_cred while POLL would be authorized using file_cred at
the file system level.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-16 12:52:03 +00:00
|
|
|
|
error = fo_stat(fp, &buf, td->td_ucred, td);
|
2001-09-08 19:07:04 +00:00
|
|
|
|
if (!error)
|
|
|
|
|
error = stat64_copyout(&buf, args->statbuf);
|
|
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* __i386__ */
|