Home | History | Annotate | Line # | Download | only in common
linux_file64.c revision 1.25.2.1
      1  1.25.2.1      tron /*	$NetBSD: linux_file64.c,v 1.25.2.1 2005/10/01 10:39:27 tron Exp $	*/
      2       1.1  jdolecek 
      3       1.1  jdolecek /*-
      4       1.1  jdolecek  * Copyright (c) 1995, 1998, 2000 The NetBSD Foundation, Inc.
      5       1.1  jdolecek  * All rights reserved.
      6       1.1  jdolecek  *
      7       1.1  jdolecek  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  jdolecek  * by Frank van der Linden and Eric Haszlakiewicz.
      9       1.1  jdolecek  *
     10       1.1  jdolecek  * Redistribution and use in source and binary forms, with or without
     11       1.1  jdolecek  * modification, are permitted provided that the following conditions
     12       1.1  jdolecek  * are met:
     13       1.1  jdolecek  * 1. Redistributions of source code must retain the above copyright
     14       1.1  jdolecek  *    notice, this list of conditions and the following disclaimer.
     15       1.1  jdolecek  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  jdolecek  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  jdolecek  *    documentation and/or other materials provided with the distribution.
     18       1.1  jdolecek  * 3. All advertising materials mentioning features or use of this software
     19       1.1  jdolecek  *    must display the following acknowledgement:
     20       1.1  jdolecek  *	This product includes software developed by the NetBSD
     21       1.1  jdolecek  *	Foundation, Inc. and its contributors.
     22       1.1  jdolecek  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1  jdolecek  *    contributors may be used to endorse or promote products derived
     24       1.1  jdolecek  *    from this software without specific prior written permission.
     25       1.1  jdolecek  *
     26       1.1  jdolecek  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1  jdolecek  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1  jdolecek  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1  jdolecek  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1  jdolecek  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1  jdolecek  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1  jdolecek  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1  jdolecek  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1  jdolecek  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1  jdolecek  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1  jdolecek  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1  jdolecek  */
     38       1.1  jdolecek 
     39       1.1  jdolecek /*
     40       1.1  jdolecek  * Linux 64bit filesystem calls. Used on 32bit archs, not used on 64bit ones.
     41       1.1  jdolecek  */
     42       1.6     lukem 
     43       1.6     lukem #include <sys/cdefs.h>
     44  1.25.2.1      tron __KERNEL_RCSID(0, "$NetBSD: linux_file64.c,v 1.25.2.1 2005/10/01 10:39:27 tron Exp $");
     45       1.1  jdolecek 
     46       1.1  jdolecek #include <sys/param.h>
     47       1.1  jdolecek #include <sys/systm.h>
     48       1.1  jdolecek #include <sys/namei.h>
     49       1.1  jdolecek #include <sys/proc.h>
     50      1.11      tron #include <sys/dirent.h>
     51       1.1  jdolecek #include <sys/file.h>
     52       1.1  jdolecek #include <sys/stat.h>
     53       1.1  jdolecek #include <sys/filedesc.h>
     54       1.1  jdolecek #include <sys/ioctl.h>
     55       1.1  jdolecek #include <sys/kernel.h>
     56       1.1  jdolecek #include <sys/mount.h>
     57       1.1  jdolecek #include <sys/malloc.h>
     58       1.1  jdolecek #include <sys/vnode.h>
     59       1.1  jdolecek #include <sys/tty.h>
     60       1.1  jdolecek #include <sys/conf.h>
     61       1.1  jdolecek 
     62      1.19   thorpej #include <sys/sa.h>
     63       1.1  jdolecek #include <sys/syscallargs.h>
     64       1.1  jdolecek 
     65       1.1  jdolecek #include <compat/linux/common/linux_types.h>
     66       1.1  jdolecek #include <compat/linux/common/linux_signal.h>
     67       1.1  jdolecek #include <compat/linux/common/linux_fcntl.h>
     68       1.1  jdolecek #include <compat/linux/common/linux_util.h>
     69       1.1  jdolecek #include <compat/linux/common/linux_machdep.h>
     70      1.11      tron #include <compat/linux/common/linux_dirent.h>
     71       1.1  jdolecek 
     72       1.1  jdolecek #include <compat/linux/linux_syscallargs.h>
     73       1.1  jdolecek 
     74      1.15      matt #ifndef alpha
     75      1.15      matt 
     76       1.1  jdolecek static void bsd_to_linux_stat __P((struct stat *, struct linux_stat64 *));
     77      1.19   thorpej static int linux_do_stat64 __P((struct lwp *, void *, register_t *, int));
     78       1.1  jdolecek 
     79       1.1  jdolecek /*
     80       1.1  jdolecek  * Convert a NetBSD stat structure to a Linux stat structure.
     81       1.1  jdolecek  * Only the order of the fields and the padding in the structure
     82       1.1  jdolecek  * is different. linux_fakedev is a machine-dependent function
     83       1.1  jdolecek  * which optionally converts device driver major/minor numbers
     84       1.1  jdolecek  * (XXX horrible, but what can you do against code that compares
     85       1.1  jdolecek  * things against constant major device numbers? sigh)
     86       1.1  jdolecek  */
     87       1.1  jdolecek static void
     88       1.1  jdolecek bsd_to_linux_stat(bsp, lsp)
     89       1.1  jdolecek 	struct stat *bsp;
     90       1.1  jdolecek 	struct linux_stat64 *lsp;
     91       1.1  jdolecek {
     92       1.7  christos 	lsp->lst_dev     = linux_fakedev(bsp->st_dev, 0);
     93       1.1  jdolecek 	lsp->lst_ino     = bsp->st_ino;
     94       1.1  jdolecek 	lsp->lst_mode    = (linux_mode_t)bsp->st_mode;
     95       1.1  jdolecek 	if (bsp->st_nlink >= (1 << 15))
     96       1.1  jdolecek 		lsp->lst_nlink = (1 << 15) - 1;
     97       1.1  jdolecek 	else
     98       1.1  jdolecek 		lsp->lst_nlink = (linux_nlink_t)bsp->st_nlink;
     99       1.1  jdolecek 	lsp->lst_uid     = bsp->st_uid;
    100       1.1  jdolecek 	lsp->lst_gid     = bsp->st_gid;
    101       1.7  christos 	lsp->lst_rdev    = linux_fakedev(bsp->st_rdev, 1);
    102       1.1  jdolecek 	lsp->lst_size    = bsp->st_size;
    103       1.1  jdolecek 	lsp->lst_blksize = bsp->st_blksize;
    104       1.1  jdolecek 	lsp->lst_blocks  = bsp->st_blocks;
    105       1.1  jdolecek 	lsp->lst_atime   = bsp->st_atime;
    106       1.1  jdolecek 	lsp->lst_mtime   = bsp->st_mtime;
    107       1.1  jdolecek 	lsp->lst_ctime   = bsp->st_ctime;
    108      1.25  christos #ifdef LINUX_STAT64_HAS_NSEC
    109      1.25  christos 	lsp->lst_atime_nsec   = bsp->st_atimensec;
    110      1.25  christos 	lsp->lst_mtime_nsec   = bsp->st_mtimensec;
    111      1.25  christos 	lsp->lst_ctime_nsec   = bsp->st_ctimensec;
    112      1.25  christos #endif
    113      1.16  jdolecek #if LINUX_STAT64_HAS_BROKEN_ST_INO
    114      1.16  jdolecek 	lsp->__lst_ino   = (linux_ino_t) bsp->st_ino;
    115      1.16  jdolecek #endif
    116       1.1  jdolecek }
    117       1.1  jdolecek 
    118       1.1  jdolecek /*
    119       1.1  jdolecek  * The stat functions below are plain sailing. stat and lstat are handled
    120       1.1  jdolecek  * by one function to avoid code duplication.
    121       1.1  jdolecek  */
    122       1.1  jdolecek int
    123      1.19   thorpej linux_sys_fstat64(l, v, retval)
    124      1.19   thorpej 	struct lwp *l;
    125       1.1  jdolecek 	void *v;
    126       1.1  jdolecek 	register_t *retval;
    127       1.1  jdolecek {
    128       1.1  jdolecek 	struct linux_sys_fstat64_args /* {
    129       1.1  jdolecek 		syscallarg(int) fd;
    130       1.5      manu 		syscallarg(struct linux_stat64 *) sp;
    131       1.1  jdolecek 	} */ *uap = v;
    132      1.19   thorpej 	struct proc *p = l->l_proc;
    133       1.1  jdolecek 	struct sys___fstat13_args fsa;
    134       1.1  jdolecek 	struct linux_stat64 tmplst;
    135       1.1  jdolecek 	struct stat *st,tmpst;
    136       1.1  jdolecek 	caddr_t sg;
    137       1.1  jdolecek 	int error;
    138       1.1  jdolecek 
    139       1.8  christos 	sg = stackgap_init(p, 0);
    140       1.1  jdolecek 
    141       1.8  christos 	st = stackgap_alloc(p, &sg, sizeof (struct stat));
    142       1.1  jdolecek 
    143       1.1  jdolecek 	SCARG(&fsa, fd) = SCARG(uap, fd);
    144       1.1  jdolecek 	SCARG(&fsa, sb) = st;
    145       1.1  jdolecek 
    146      1.19   thorpej 	if ((error = sys___fstat13(l, &fsa, retval)))
    147       1.1  jdolecek 		return error;
    148       1.1  jdolecek 
    149       1.1  jdolecek 	if ((error = copyin(st, &tmpst, sizeof tmpst)))
    150       1.1  jdolecek 		return error;
    151       1.1  jdolecek 
    152       1.1  jdolecek 	bsd_to_linux_stat(&tmpst, &tmplst);
    153       1.1  jdolecek 
    154       1.1  jdolecek 	if ((error = copyout(&tmplst, SCARG(uap, sp), sizeof tmplst)))
    155       1.1  jdolecek 		return error;
    156       1.1  jdolecek 
    157       1.1  jdolecek 	return 0;
    158       1.1  jdolecek }
    159       1.1  jdolecek 
    160       1.1  jdolecek static int
    161      1.19   thorpej linux_do_stat64(l, v, retval, dolstat)
    162      1.19   thorpej 	struct lwp *l;
    163       1.1  jdolecek 	void *v;
    164       1.1  jdolecek 	register_t *retval;
    165       1.1  jdolecek 	int dolstat;
    166       1.1  jdolecek {
    167      1.19   thorpej 	struct proc *p = l->l_proc;
    168       1.1  jdolecek 	struct sys___stat13_args sa;
    169       1.1  jdolecek 	struct linux_stat64 tmplst;
    170       1.1  jdolecek 	struct stat *st, tmpst;
    171       1.1  jdolecek 	caddr_t sg;
    172       1.1  jdolecek 	int error;
    173       1.1  jdolecek 	struct linux_sys_stat64_args *uap = v;
    174       1.1  jdolecek 
    175       1.8  christos 	sg = stackgap_init(p, 0);
    176       1.8  christos 	st = stackgap_alloc(p, &sg, sizeof (struct stat));
    177      1.21      fvdl 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    178       1.1  jdolecek 
    179       1.1  jdolecek 	SCARG(&sa, ub) = st;
    180       1.1  jdolecek 	SCARG(&sa, path) = SCARG(uap, path);
    181       1.1  jdolecek 
    182      1.19   thorpej 	if ((error = (dolstat ? sys___lstat13(l, &sa, retval) :
    183      1.19   thorpej 				sys___stat13(l, &sa, retval))))
    184       1.1  jdolecek 		return error;
    185       1.1  jdolecek 
    186       1.1  jdolecek 	if ((error = copyin(st, &tmpst, sizeof tmpst)))
    187       1.1  jdolecek 		return error;
    188       1.1  jdolecek 
    189       1.1  jdolecek 	bsd_to_linux_stat(&tmpst, &tmplst);
    190       1.1  jdolecek 
    191       1.1  jdolecek 	if ((error = copyout(&tmplst, SCARG(uap, sp), sizeof tmplst)))
    192       1.1  jdolecek 		return error;
    193       1.1  jdolecek 
    194       1.1  jdolecek 	return 0;
    195       1.1  jdolecek }
    196       1.1  jdolecek 
    197       1.1  jdolecek int
    198      1.19   thorpej linux_sys_stat64(l, v, retval)
    199      1.19   thorpej 	struct lwp *l;
    200       1.1  jdolecek 	void *v;
    201       1.1  jdolecek 	register_t *retval;
    202       1.1  jdolecek {
    203       1.1  jdolecek 	struct linux_sys_stat64_args /* {
    204       1.1  jdolecek 		syscallarg(const char *) path;
    205       1.1  jdolecek 		syscallarg(struct linux_stat64 *) sp;
    206       1.1  jdolecek 	} */ *uap = v;
    207       1.1  jdolecek 
    208      1.19   thorpej 	return linux_do_stat64(l, uap, retval, 0);
    209       1.1  jdolecek }
    210       1.1  jdolecek 
    211       1.1  jdolecek int
    212      1.19   thorpej linux_sys_lstat64(l, v, retval)
    213      1.19   thorpej 	struct lwp *l;
    214       1.1  jdolecek 	void *v;
    215       1.1  jdolecek 	register_t *retval;
    216       1.1  jdolecek {
    217       1.1  jdolecek 	struct linux_sys_lstat64_args /* {
    218       1.1  jdolecek 		syscallarg(const char *) path;
    219       1.1  jdolecek 		syscallarg(struct linux_stat64 *) sp;
    220       1.1  jdolecek 	} */ *uap = v;
    221       1.1  jdolecek 
    222      1.19   thorpej 	return linux_do_stat64(l, uap, retval, 1);
    223       1.2  jdolecek }
    224       1.2  jdolecek 
    225       1.2  jdolecek int
    226      1.19   thorpej linux_sys_truncate64(l, v, retval)
    227      1.19   thorpej 	struct lwp *l;
    228       1.2  jdolecek 	void *v;
    229       1.2  jdolecek 	register_t *retval;
    230       1.2  jdolecek {
    231       1.2  jdolecek 	struct linux_sys_truncate64_args /* {
    232       1.2  jdolecek 		syscallarg(const char *) path;
    233       1.2  jdolecek 		syscallarg(off_t) length;
    234       1.2  jdolecek 	} */ *uap = v;
    235      1.22  jdolecek 	struct sys_truncate_args ta;
    236      1.19   thorpej 	struct proc *p = l->l_proc;
    237       1.8  christos 	caddr_t sg = stackgap_init(p, 0);
    238       1.2  jdolecek 
    239      1.21      fvdl 	CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    240       1.2  jdolecek 
    241      1.22  jdolecek 	/* Linux doesn't have the 'pad' pseudo-parameter */
    242      1.22  jdolecek 	SCARG(&ta, path) = SCARG(uap, path);
    243      1.22  jdolecek 	SCARG(&ta, pad) = 0;
    244      1.22  jdolecek 	SCARG(&ta, length) = SCARG(uap, length);
    245      1.22  jdolecek 
    246      1.22  jdolecek 	return sys_truncate(l, &ta, retval);
    247      1.22  jdolecek }
    248      1.22  jdolecek 
    249      1.22  jdolecek int
    250      1.22  jdolecek linux_sys_ftruncate64(l, v, retval)
    251      1.22  jdolecek 	struct lwp *l;
    252      1.22  jdolecek 	void *v;
    253      1.22  jdolecek 	register_t *retval;
    254      1.22  jdolecek {
    255      1.22  jdolecek 	struct linux_sys_ftruncate64_args /* {
    256      1.22  jdolecek 		syscallarg(unsigned int) fd;
    257      1.22  jdolecek 		syscallarg(off_t) length;
    258      1.22  jdolecek 	} */ *uap = v;
    259      1.22  jdolecek 	struct sys_ftruncate_args ta;
    260      1.22  jdolecek 
    261      1.22  jdolecek 	/* Linux doesn't have the 'pad' pseudo-parameter */
    262      1.22  jdolecek 	SCARG(&ta, fd) = SCARG(uap, fd);
    263      1.22  jdolecek 	SCARG(&ta, pad) = 0;
    264      1.22  jdolecek 	SCARG(&ta, length) = SCARG(uap, length);
    265      1.22  jdolecek 
    266      1.22  jdolecek 	return sys_ftruncate(l, &ta, retval);
    267       1.1  jdolecek }
    268       1.3      manu 
    269      1.13  jdolecek #if !defined(__m68k__)
    270       1.9  christos static void bsd_to_linux_flock64 __P((struct linux_flock64 *,
    271       1.9  christos     const struct flock *));
    272      1.24     perry static void linux_to_bsd_flock64 __P((struct flock *,
    273       1.9  christos     const struct linux_flock64 *));
    274       1.9  christos 
    275       1.9  christos static void
    276       1.9  christos bsd_to_linux_flock64(lfp, bfp)
    277       1.9  christos 	struct linux_flock64 *lfp;
    278       1.9  christos 	const struct flock *bfp;
    279       1.9  christos {
    280       1.9  christos 
    281       1.9  christos 	lfp->l_start = bfp->l_start;
    282       1.9  christos 	lfp->l_len = bfp->l_len;
    283       1.9  christos 	lfp->l_pid = bfp->l_pid;
    284       1.9  christos 	lfp->l_whence = bfp->l_whence;
    285       1.9  christos 	switch (bfp->l_type) {
    286       1.9  christos 	case F_RDLCK:
    287       1.9  christos 		lfp->l_type = LINUX_F_RDLCK;
    288       1.9  christos 		break;
    289       1.9  christos 	case F_UNLCK:
    290       1.9  christos 		lfp->l_type = LINUX_F_UNLCK;
    291       1.9  christos 		break;
    292       1.9  christos 	case F_WRLCK:
    293       1.9  christos 		lfp->l_type = LINUX_F_WRLCK;
    294       1.9  christos 		break;
    295       1.9  christos 	}
    296       1.9  christos }
    297       1.9  christos 
    298       1.9  christos static void
    299       1.9  christos linux_to_bsd_flock64(bfp, lfp)
    300       1.9  christos 	struct flock *bfp;
    301       1.9  christos 	const struct linux_flock64 *lfp;
    302       1.9  christos {
    303       1.9  christos 
    304       1.9  christos 	bfp->l_start = lfp->l_start;
    305       1.9  christos 	bfp->l_len = lfp->l_len;
    306       1.9  christos 	bfp->l_pid = lfp->l_pid;
    307       1.9  christos 	bfp->l_whence = lfp->l_whence;
    308       1.9  christos 	switch (lfp->l_type) {
    309       1.9  christos 	case LINUX_F_RDLCK:
    310       1.9  christos 		bfp->l_type = F_RDLCK;
    311       1.9  christos 		break;
    312       1.9  christos 	case LINUX_F_UNLCK:
    313       1.9  christos 		bfp->l_type = F_UNLCK;
    314       1.9  christos 		break;
    315       1.9  christos 	case LINUX_F_WRLCK:
    316       1.9  christos 		bfp->l_type = F_WRLCK;
    317       1.9  christos 		break;
    318       1.9  christos 	}
    319       1.9  christos }
    320      1.13  jdolecek 
    321       1.3      manu int
    322      1.19   thorpej linux_sys_fcntl64(l, v, retval)
    323      1.19   thorpej 	struct lwp *l;
    324       1.3      manu 	void *v;
    325       1.3      manu 	register_t *retval;
    326       1.3      manu {
    327       1.3      manu 	struct linux_sys_fcntl64_args /* {
    328       1.9  christos 		syscallarg(int) fd;
    329       1.9  christos 		syscallarg(int) cmd;
    330       1.9  christos 		syscallarg(void *) arg;
    331       1.3      manu 	} */ *uap = v;
    332      1.19   thorpej 	struct proc *p = l->l_proc;
    333       1.9  christos 	struct sys_fcntl_args fca;
    334       1.9  christos 	struct linux_flock64 lfl;
    335       1.9  christos 	struct flock bfl, *bfp;
    336       1.3      manu 	int error;
    337       1.9  christos 	caddr_t sg;
    338       1.9  christos 	void *arg = SCARG(uap, arg);
    339       1.9  christos 	int cmd = SCARG(uap, cmd);
    340       1.9  christos 	int fd = SCARG(uap, fd);
    341       1.3      manu 
    342       1.3      manu 	switch (cmd) {
    343       1.9  christos 	case LINUX_F_GETLK64:
    344       1.9  christos 		sg = stackgap_init(p, 0);
    345       1.9  christos 		bfp = (struct flock *) stackgap_alloc(p, &sg, sizeof *bfp);
    346       1.9  christos 		if ((error = copyin(arg, &lfl, sizeof lfl)) != 0)
    347       1.9  christos 			return error;
    348       1.9  christos 		linux_to_bsd_flock64(&bfl, &lfl);
    349       1.9  christos 		if ((error = copyout(&bfl, bfp, sizeof bfl)) != 0)
    350       1.9  christos 			return error;
    351       1.9  christos 		SCARG(&fca, fd) = fd;
    352       1.9  christos 		SCARG(&fca, cmd) = F_GETLK;
    353       1.9  christos 		SCARG(&fca, arg) = bfp;
    354      1.19   thorpej 		if ((error = sys_fcntl(l, &fca, retval)) != 0)
    355       1.9  christos 			return error;
    356       1.9  christos 		if ((error = copyin(bfp, &bfl, sizeof bfl)) != 0)
    357       1.9  christos 			return error;
    358       1.9  christos 		bsd_to_linux_flock64(&lfl, &bfl);
    359       1.9  christos 		return copyout(&lfl, arg, sizeof lfl);
    360       1.9  christos 	case LINUX_F_SETLK64:
    361       1.9  christos 	case LINUX_F_SETLKW64:
    362       1.9  christos 		cmd = (cmd == LINUX_F_SETLK64 ? F_SETLK : F_SETLKW);
    363       1.9  christos 		if ((error = copyin(arg, &lfl, sizeof lfl)) != 0)
    364       1.9  christos 			return error;
    365       1.9  christos 		linux_to_bsd_flock64(&bfl, &lfl);
    366       1.9  christos 		sg = stackgap_init(p, 0);
    367       1.9  christos 		bfp = (struct flock *) stackgap_alloc(p, &sg, sizeof *bfp);
    368       1.9  christos 		if ((error = copyout(&bfl, bfp, sizeof bfl)) != 0)
    369       1.9  christos 			return error;
    370       1.9  christos 		SCARG(&fca, fd) = fd;
    371       1.9  christos 		SCARG(&fca, cmd) = cmd;
    372       1.9  christos 		SCARG(&fca, arg) = bfp;
    373      1.19   thorpej 		return sys_fcntl(l, &fca, retval);
    374       1.9  christos 	default:
    375      1.19   thorpej 		return linux_sys_fcntl(l, v, retval);
    376       1.3      manu 	}
    377      1.11      tron }
    378      1.13  jdolecek #endif /* !m68k */
    379      1.15      matt 
    380      1.15      matt #endif /* !alpha */
    381      1.11      tron 
    382      1.11      tron /*
    383      1.11      tron  * Linux 'readdir' call. This code is mostly taken from the
    384      1.11      tron  * SunOS getdents call (see compat/sunos/sunos_misc.c), though
    385      1.18  jdolecek  * an attempt has been made to keep it a little cleaner.
    386      1.11      tron  *
    387      1.18  jdolecek  * The d_off field contains the offset of the next valid entry,
    388      1.18  jdolecek  * unless the older Linux getdents(2), which used to have it set
    389      1.18  jdolecek  * to the offset of the entry itself. This function also doesn't
    390      1.18  jdolecek  * need to deal with the old count == 1 glibc problem.
    391      1.11      tron  *
    392      1.11      tron  * Read in BSD-style entries, convert them, and copy them out.
    393      1.11      tron  *
    394      1.11      tron  * Note that this doesn't handle union-mounted filesystems.
    395      1.11      tron  */
    396      1.11      tron int
    397      1.19   thorpej linux_sys_getdents64(l, v, retval)
    398      1.19   thorpej 	struct lwp *l;
    399      1.11      tron 	void *v;
    400      1.11      tron 	register_t *retval;
    401      1.11      tron {
    402      1.11      tron 	struct linux_sys_getdents_args /* {
    403      1.11      tron 		syscallarg(int) fd;
    404      1.11      tron 		syscallarg(struct linux_dirent64 *) dent;
    405      1.11      tron 		syscallarg(unsigned int) count;
    406      1.11      tron 	} */ *uap = v;
    407      1.19   thorpej 	struct proc *p = l->l_proc;
    408      1.11      tron 	struct dirent *bdp;
    409      1.11      tron 	struct vnode *vp;
    410      1.11      tron 	caddr_t	inp, buf;		/* BSD-format */
    411      1.11      tron 	int len, reclen;		/* BSD-format */
    412      1.11      tron 	caddr_t outp;			/* Linux-format */
    413      1.11      tron 	int resid, linux_reclen = 0;	/* Linux-format */
    414      1.11      tron 	struct file *fp;
    415      1.11      tron 	struct uio auio;
    416      1.11      tron 	struct iovec aiov;
    417      1.11      tron 	struct linux_dirent64 idb;
    418      1.11      tron 	off_t off;		/* true file offset */
    419      1.18  jdolecek 	int buflen, error, eofflag, nbytes;
    420      1.11      tron 	struct vattr va;
    421      1.11      tron 	off_t *cookiebuf = NULL, *cookie;
    422      1.11      tron 	int ncookies;
    423      1.11      tron 
    424      1.11      tron 	/* getvnode() will use the descriptor for us */
    425      1.11      tron 	if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0)
    426      1.11      tron 		return (error);
    427      1.11      tron 
    428      1.11      tron 	if ((fp->f_flag & FREAD) == 0) {
    429      1.11      tron 		error = EBADF;
    430      1.11      tron 		goto out1;
    431      1.11      tron 	}
    432      1.11      tron 
    433      1.11      tron 	vp = (struct vnode *)fp->f_data;
    434      1.11      tron 	if (vp->v_type != VDIR) {
    435      1.11      tron 		error = EINVAL;
    436      1.11      tron 		goto out1;
    437      1.11      tron 	}
    438      1.11      tron 
    439      1.21      fvdl 	if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
    440      1.11      tron 		goto out1;
    441      1.11      tron 
    442      1.11      tron 	nbytes = SCARG(uap, count);
    443      1.18  jdolecek 	buflen = min(MAXBSIZE, nbytes);
    444      1.18  jdolecek 	if (buflen < va.va_blocksize)
    445      1.18  jdolecek 		buflen = va.va_blocksize;
    446      1.11      tron 	buf = malloc(buflen, M_TEMP, M_WAITOK);
    447      1.11      tron 
    448      1.11      tron 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    449      1.11      tron 	off = fp->f_offset;
    450      1.11      tron again:
    451      1.11      tron 	aiov.iov_base = buf;
    452      1.11      tron 	aiov.iov_len = buflen;
    453      1.11      tron 	auio.uio_iov = &aiov;
    454      1.11      tron 	auio.uio_iovcnt = 1;
    455      1.11      tron 	auio.uio_rw = UIO_READ;
    456      1.11      tron 	auio.uio_segflg = UIO_SYSSPACE;
    457      1.23     skrll 	auio.uio_procp = NULL;
    458      1.11      tron 	auio.uio_resid = buflen;
    459      1.11      tron 	auio.uio_offset = off;
    460      1.11      tron 	/*
    461      1.11      tron          * First we read into the malloc'ed buffer, then
    462      1.11      tron          * we massage it into user space, one record at a time.
    463      1.11      tron          */
    464      1.11      tron 	error = VOP_READDIR(vp, &auio, fp->f_cred, &eofflag, &cookiebuf,
    465      1.11      tron 	    &ncookies);
    466      1.11      tron 	if (error)
    467      1.11      tron 		goto out;
    468      1.11      tron 
    469      1.11      tron 	inp = buf;
    470      1.11      tron 	outp = (caddr_t)SCARG(uap, dent);
    471      1.11      tron 	resid = nbytes;
    472      1.11      tron 	if ((len = buflen - auio.uio_resid) == 0)
    473      1.11      tron 		goto eof;
    474      1.11      tron 
    475      1.11      tron 	for (cookie = cookiebuf; len > 0; len -= reclen) {
    476      1.11      tron 		bdp = (struct dirent *)inp;
    477      1.11      tron 		reclen = bdp->d_reclen;
    478      1.11      tron 		if (reclen & 3)
    479      1.11      tron 			panic("linux_readdir");
    480      1.11      tron 		if (bdp->d_fileno == 0) {
    481      1.11      tron 			inp += reclen;	/* it is a hole; squish it out */
    482  1.25.2.1      tron 			if (cookie)
    483  1.25.2.1      tron 				off = *cookie++;
    484  1.25.2.1      tron 			else
    485  1.25.2.1      tron 				off += reclen;
    486      1.11      tron 			continue;
    487      1.11      tron 		}
    488      1.11      tron 		linux_reclen = LINUX_RECLEN(&idb, bdp->d_namlen);
    489      1.11      tron 		if (reclen > len || resid < linux_reclen) {
    490      1.11      tron 			/* entry too big for buffer, so just stop */
    491      1.11      tron 			outp++;
    492      1.11      tron 			break;
    493      1.11      tron 		}
    494  1.25.2.1      tron 		if (cookie)
    495  1.25.2.1      tron 			off = *cookie++;	/* each entry points to next */
    496  1.25.2.1      tron 		else
    497  1.25.2.1      tron 			off += reclen;
    498      1.11      tron 		/*
    499      1.11      tron 		 * Massage in place to make a Linux-shaped dirent (otherwise
    500      1.11      tron 		 * we have to worry about touching user memory outside of
    501      1.11      tron 		 * the copyout() call).
    502      1.11      tron 		 */
    503      1.11      tron 		idb.d_ino = bdp->d_fileno;
    504      1.11      tron 		idb.d_type = bdp->d_type;
    505      1.18  jdolecek 		idb.d_off = off;
    506      1.18  jdolecek 		idb.d_reclen = (u_short)linux_reclen;
    507      1.11      tron 		strcpy(idb.d_name, bdp->d_name);
    508      1.11      tron 		if ((error = copyout((caddr_t)&idb, outp, linux_reclen)))
    509      1.11      tron 			goto out;
    510      1.11      tron 		/* advance past this real entry */
    511      1.11      tron 		inp += reclen;
    512      1.11      tron 		/* advance output past Linux-shaped entry */
    513      1.11      tron 		outp += linux_reclen;
    514      1.11      tron 		resid -= linux_reclen;
    515      1.11      tron 	}
    516      1.11      tron 
    517      1.11      tron 	/* if we squished out the whole block, try again */
    518      1.11      tron 	if (outp == (caddr_t)SCARG(uap, dent))
    519      1.11      tron 		goto again;
    520      1.11      tron 	fp->f_offset = off;	/* update the vnode offset */
    521      1.11      tron 
    522      1.11      tron eof:
    523      1.11      tron 	*retval = nbytes - resid;
    524      1.11      tron out:
    525      1.11      tron 	VOP_UNLOCK(vp, 0);
    526      1.11      tron 	if (cookiebuf)
    527      1.11      tron 		free(cookiebuf, M_TEMP);
    528      1.11      tron 	free(buf, M_TEMP);
    529      1.11      tron out1:
    530      1.21      fvdl 	FILE_UNUSE(fp, p);
    531       1.3      manu 	return error;
    532       1.3      manu }
    533