#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls_43.c,v 1.68 2021/09/07 11:43:02 riastradh Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
#endif
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/filedesc.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/file.h>
#include <sys/vnode.h>
#include <sys/namei.h>
#include <sys/dirent.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
#include <sys/stat.h>
#include <sys/malloc.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/syslog.h>
#include <sys/unistd.h>
#include <sys/resourcevar.h>
#include <sys/mount.h>
#include <sys/syscall.h>
#include <sys/syscallvar.h>
#include <sys/syscallargs.h>
#include <sys/vfs_syscalls.h>
#include <compat/sys/stat.h>
#include <compat/sys/mount.h>
#include <compat/sys/dirent.h>
#include <compat/common/compat_util.h>
#include <compat/common/compat_mod.h>
static struct syscall_package vfs_syscalls_43_syscalls[] = {
{ SYS_compat_43_oquota, 0, (sy_call_t *)compat_43_sys_quota },
{ SYS_compat_43_stat43, 0, (sy_call_t *)compat_43_sys_stat },
{ SYS_compat_43_lstat43, 0, (sy_call_t *)compat_43_sys_lstat },
{ SYS_compat_43_fstat43, 0, (sy_call_t *)compat_43_sys_fstat },
{ SYS_compat_43_otruncate, 0, (sy_call_t *)compat_43_sys_ftruncate },
{ SYS_compat_43_oftruncate, 0, (sy_call_t *)compat_43_sys_ftruncate },
{ SYS_compat_43_olseek, 0, (sy_call_t *)compat_43_sys_lseek },
{ SYS_compat_43_ocreat, 0, (sy_call_t *)compat_43_sys_creat },
{ SYS_compat_43_ogetdirentries, 0,
(sy_call_t *)compat_43_sys_getdirentries },
{ 0, 0, NULL }
};
static void
cvttimespec(struct timespec50 *ots, const struct timespec *ts)
{
if (ts->tv_sec > INT_MAX) {
#if defined(DEBUG) || 1
static bool first = true;
if (first) {
first = false;
printf("%s[%s:%d]: time_t does not fit\n",
__func__, curlwp->l_proc->p_comm,
curlwp->l_lid);
}
#endif
ots->tv_sec = INT_MAX;
} else
ots->tv_sec = ts->tv_sec;
ots->tv_nsec = ts->tv_nsec;
}
static void
cvtstat(struct stat43 *ost, const struct stat *st)
{
memset(ost, 0, sizeof(*ost));
ost->st_dev = st->st_dev;
ost->st_ino = st->st_ino;
ost->st_mode = st->st_mode & 0xffff;
ost->st_nlink = st->st_nlink;
ost->st_uid = st->st_uid;
ost->st_gid = st->st_gid;
ost->st_rdev = st->st_rdev;
if (st->st_size < (quad_t)1 << 32)
ost->st_size = st->st_size;
else
ost->st_size = -2;
cvttimespec(&ost->st_atimespec, &st->st_atimespec);
cvttimespec(&ost->st_mtimespec, &st->st_mtimespec);
cvttimespec(&ost->st_ctimespec, &st->st_ctimespec);
ost->st_blksize = st->st_blksize;
ost->st_blocks = st->st_blocks;
ost->st_flags = st->st_flags;
ost->st_gen = st->st_gen;
}
int
compat_43_sys_stat(struct lwp *l, const struct compat_43_sys_stat_args *uap, register_t *retval)
{
struct stat sb;
struct stat43 osb;
int error;
error = do_sys_stat(SCARG(uap, path), FOLLOW, &sb);
if (error)
return error;
cvtstat(&osb, &sb);
return copyout(&osb, SCARG(uap, ub), sizeof(osb));
}
int
compat_43_sys_lstat(struct lwp *l, const struct compat_43_sys_lstat_args *uap, register_t *retval)
{
struct stat sb;
struct stat43 osb;
int error;
error = do_sys_stat(SCARG(uap, path), NOFOLLOW, &sb);
if (error)
return error;
cvtstat(&osb, &sb);
return copyout(&osb, SCARG(uap, ub), sizeof(osb));
}
int
compat_43_sys_fstat(struct lwp *l, const struct compat_43_sys_fstat_args *uap, register_t *retval)
{
struct stat sb;
struct stat43 osb;
int error;
error = do_sys_fstat(SCARG(uap, fd), &sb);
if (error)
return error;
cvtstat(&osb, &sb);
return copyout(&osb, SCARG(uap, sb), sizeof(osb));
}
int
compat_43_sys_ftruncate(struct lwp *l, const struct compat_43_sys_ftruncate_args *uap, register_t *retval)
{
struct sys_ftruncate_args
nuap;
SCARG(&nuap, fd) = SCARG(uap, fd);
SCARG(&nuap, length) = SCARG(uap, length);
return sys_ftruncate(l, &nuap, retval);
}
int
compat_43_sys_truncate(struct lwp *l, const struct compat_43_sys_truncate_args *uap, register_t *retval)
{
struct sys_truncate_args
nuap;
SCARG(&nuap, path) = SCARG(uap, path);
SCARG(&nuap, length) = SCARG(uap, length);
return (sys_truncate(l, &nuap, retval));
}
int
compat_43_sys_lseek(struct lwp *l, const struct compat_43_sys_lseek_args *uap, register_t *retval)
{
struct sys_lseek_args
nuap;
off_t qret;
int error;
SCARG(&nuap, fd) = SCARG(uap, fd);
SCARG(&nuap, offset) = SCARG(uap, offset);
SCARG(&nuap, whence) = SCARG(uap, whence);
error = sys_lseek(l, &nuap, (register_t *)&qret);
*(long *)retval = qret;
return (error);
}
int
compat_43_sys_creat(struct lwp *l, const struct compat_43_sys_creat_args *uap, register_t *retval)
{
struct sys_open_args
nuap;
SCARG(&nuap, path) = SCARG(uap, path);
SCARG(&nuap, mode) = SCARG(uap, mode);
SCARG(&nuap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
return (sys_open(l, &nuap, retval));
}
int
compat_43_sys_quota(struct lwp *l, const void *v, register_t *retval)
{
return (ENOSYS);
}
int
compat_43_sys_getdirentries(struct lwp *l, const struct compat_43_sys_getdirentries_args *uap, register_t *retval)
{
struct dirent *bdp;
struct vnode *vp;
void *tbuf;
char *inp;
int len, reclen;
char *outp;
int resid, old_reclen = 0;
struct file *fp;
struct uio auio;
struct iovec aiov;
struct dirent43 idb;
off_t off;
int buflen, error, eofflag, nbytes;
struct vattr va;
off_t *cookiebuf = NULL, *cookie;
int ncookies;
long loff;
if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
return (error);
if ((fp->f_flag & FREAD) == 0) {
error = EBADF;
goto out1;
}
vp = fp->f_vnode;
if (vp->v_type != VDIR) {
error = ENOTDIR;
goto out1;
}
vn_lock(vp, LK_SHARED | LK_RETRY);
error = VOP_GETATTR(vp, &va, l->l_cred);
VOP_UNLOCK(vp);
if (error)
goto out1;
loff = fp->f_offset;
nbytes = SCARG(uap, count);
buflen = uimin(MAXBSIZE, nbytes);
if (buflen < va.va_blocksize)
buflen = va.va_blocksize;
tbuf = malloc(buflen, M_TEMP, M_WAITOK);
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
off = fp->f_offset;
again:
aiov.iov_base = tbuf;
aiov.iov_len = buflen;
auio.uio_iov = &aiov;
auio.uio_iovcnt = 1;
auio.uio_rw = UIO_READ;
auio.uio_resid = buflen;
auio.uio_offset = off;
UIO_SETUP_SYSSPACE(&auio);
error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
&ncookies);
if (error)
goto out;
inp = (char *)tbuf;
outp = SCARG(uap, buf);
resid = nbytes;
if ((len = buflen - auio.uio_resid) == 0)
goto eof;
for (cookie = cookiebuf; len > 0; len -= reclen) {
bdp = (struct dirent *)inp;
reclen = bdp->d_reclen;
if (reclen & 3) {
error = EIO;
goto out;
}
if (bdp->d_fileno == 0) {
inp += reclen;
if (cookie)
off = *cookie++;
else
off += reclen;
continue;
}
memset(&idb, 0, sizeof(idb));
if (bdp->d_namlen >= sizeof(idb.d_name))
idb.d_namlen = sizeof(idb.d_name) - 1;
else
idb.d_namlen = bdp->d_namlen;
old_reclen = _DIRENT_RECLEN(&idb, bdp->d_namlen);
if (reclen > len || resid < old_reclen) {
outp++;
break;
}
idb.d_fileno = (uint32_t)bdp->d_fileno;
idb.d_reclen = (uint16_t)old_reclen;
idb.d_fileno = (uint32_t)bdp->d_fileno;
(void)memcpy(idb.d_name, bdp->d_name, idb.d_namlen);
memset(idb.d_name + idb.d_namlen, 0,
idb.d_reclen - _DIRENT_NAMEOFF(&idb) - idb.d_namlen);
if ((error = copyout(&idb, outp, old_reclen)))
goto out;
inp += reclen;
if (cookie)
off = *cookie++;
else
off += reclen;
outp += old_reclen;
resid -= old_reclen;
}
if (outp == SCARG(uap, buf)) {
if (cookiebuf)
free(cookiebuf, M_TEMP);
cookiebuf = NULL;
goto again;
}
fp->f_offset = off;
eof:
*retval = nbytes - resid;
out:
VOP_UNLOCK(vp);
if (cookiebuf)
free(cookiebuf, M_TEMP);
free(tbuf, M_TEMP);
out1:
fd_putfile(SCARG(uap, fd));
if (error)
return error;
return copyout(&loff, SCARG(uap, basep), sizeof(loff));
}
int
vfs_syscalls_43_init(void)
{
return syscall_establish(NULL, vfs_syscalls_43_syscalls);
}
int
vfs_syscalls_43_fini(void)
{
return syscall_disestablish(NULL, vfs_syscalls_43_syscalls);
}