Home | History | Annotate | Line # | Download | only in ultrix
ultrix_pathname.c revision 1.34.6.1
      1  1.34.6.1  wrstuden /*	$NetBSD: ultrix_pathname.c,v 1.34.6.1 2008/05/10 23:49:02 wrstuden Exp $	*/
      2       1.1  jonathan 
      3       1.1  jonathan /*
      4       1.1  jonathan  * Copyright (c) 1992, 1993
      5       1.1  jonathan  *	The Regents of the University of California.  All rights reserved.
      6       1.1  jonathan  *
      7       1.1  jonathan  * This software was developed by the Computer Systems Engineering group
      8       1.1  jonathan  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9       1.1  jonathan  * contributed to Berkeley.
     10       1.1  jonathan  *
     11       1.1  jonathan  * All advertising materials mentioning features or use of this software
     12       1.1  jonathan  * must display the following acknowledgement:
     13       1.1  jonathan  *	This product includes software developed by the University of
     14       1.1  jonathan  *	California, Lawrence Berkeley Laboratory.
     15       1.1  jonathan  *
     16       1.1  jonathan  * Redistribution and use in source and binary forms, with or without
     17       1.1  jonathan  * modification, are permitted provided that the following conditions
     18       1.1  jonathan  * are met:
     19       1.1  jonathan  * 1. Redistributions of source code must retain the above copyright
     20       1.1  jonathan  *    notice, this list of conditions and the following disclaimer.
     21       1.1  jonathan  * 2. Redistributions in binary form must reproduce the above copyright
     22       1.1  jonathan  *    notice, this list of conditions and the following disclaimer in the
     23       1.1  jonathan  *    documentation and/or other materials provided with the distribution.
     24      1.19       agc  * 3. Neither the name of the University nor the names of its contributors
     25       1.1  jonathan  *    may be used to endorse or promote products derived from this software
     26       1.1  jonathan  *    without specific prior written permission.
     27       1.1  jonathan  *
     28       1.1  jonathan  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29       1.1  jonathan  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30       1.1  jonathan  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31       1.1  jonathan  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32       1.1  jonathan  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33       1.1  jonathan  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34       1.1  jonathan  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35       1.1  jonathan  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36       1.1  jonathan  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37       1.1  jonathan  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38       1.1  jonathan  * SUCH DAMAGE.
     39       1.1  jonathan  *
     40       1.1  jonathan  *
     41       1.1  jonathan  *	@(#)sun_misc.c	8.1 (Berkeley) 6/18/93
     42       1.1  jonathan  *
     43      1.23     perry  * from: Header: sun_misc.c,v 1.16 93/04/07 02:46:27 torek Exp
     44       1.1  jonathan  */
     45       1.1  jonathan 
     46       1.1  jonathan 
     47       1.1  jonathan /*
     48       1.1  jonathan  * Ultrix emulation filesystem-namespace compatibility module.
     49       1.1  jonathan  *
     50       1.1  jonathan  * Ultrix system calls that examine the filesysten namespace
     51       1.1  jonathan  * are implemented here.  Each system call has a wrapper that
     52       1.1  jonathan  * first checks if the given file exists at a special `emulation'
     53       1.1  jonathan  * pathname: the given path, prefixex with '/emul/ultrix', and
     54       1.1  jonathan  * if that pathname exists, it is used instead of the providd pathname.
     55       1.1  jonathan  *
     56       1.1  jonathan  * Used to locate OS-specific files (shared libraries, config files,
     57       1.1  jonathan  * etc) used by emul processes at their `normal' pathnames, without
     58       1.1  jonathan  * polluting, or conflicting with, the native filesysten namespace.
     59       1.1  jonathan  */
     60      1.13     lukem 
     61      1.13     lukem #include <sys/cdefs.h>
     62  1.34.6.1  wrstuden __KERNEL_RCSID(0, "$NetBSD: ultrix_pathname.c,v 1.34.6.1 2008/05/10 23:49:02 wrstuden Exp $");
     63       1.1  jonathan 
     64       1.1  jonathan #include <sys/param.h>
     65       1.1  jonathan #include <sys/systm.h>
     66       1.1  jonathan #include <sys/namei.h>
     67       1.1  jonathan #include <sys/file.h>
     68       1.1  jonathan #include <sys/filedesc.h>
     69       1.1  jonathan #include <sys/ioctl.h>
     70       1.1  jonathan #include <sys/mount.h>
     71       1.1  jonathan #include <sys/stat.h>
     72       1.1  jonathan #include <sys/vnode.h>
     73  1.34.6.1  wrstuden #include <sys/sa.h>
     74       1.1  jonathan #include <sys/syscallargs.h>
     75       1.5    mhitch #include <sys/proc.h>
     76       1.1  jonathan 
     77       1.1  jonathan #include <compat/ultrix/ultrix_syscallargs.h>
     78      1.11  jdolecek #include <compat/common/compat_util.h>
     79       1.1  jonathan 
     80      1.26  christos static int ultrixstatfs(struct statvfs *, void *);
     81       1.1  jonathan 
     82       1.1  jonathan int
     83      1.31       dsl ultrix_sys_creat(struct lwp *l, const struct ultrix_sys_creat_args *uap, register_t *retval)
     84       1.1  jonathan {
     85       1.4  jonathan 	struct sys_open_args ap;
     86       1.1  jonathan 
     87       1.4  jonathan 	SCARG(&ap, path) = SCARG(uap, path);
     88       1.4  jonathan 	SCARG(&ap, flags) = O_WRONLY | O_CREAT | O_TRUNC;
     89       1.4  jonathan 	SCARG(&ap, mode) = SCARG(uap, mode);
     90       1.1  jonathan 
     91      1.32  christos 	return sys_open(l, &ap, retval);
     92       1.1  jonathan }
     93       1.1  jonathan 
     94       1.1  jonathan 
     95       1.1  jonathan int
     96      1.31       dsl ultrix_sys_access(struct lwp *l, const struct ultrix_sys_access_args *uap, register_t *retval)
     97       1.1  jonathan {
     98       1.1  jonathan 
     99      1.32  christos 	return sys_access(l, (const struct sys_access_args *)uap, retval);
    100       1.1  jonathan }
    101       1.1  jonathan 
    102       1.1  jonathan int
    103      1.31       dsl ultrix_sys_stat(struct lwp *l, const struct ultrix_sys_stat_args *uap, register_t *retval)
    104       1.1  jonathan {
    105       1.1  jonathan 
    106      1.32  christos 	return compat_43_sys_stat(l,
    107      1.32  christos 	    (const struct compat_43_sys_stat_args *)uap, retval);
    108       1.1  jonathan }
    109       1.1  jonathan 
    110       1.1  jonathan int
    111      1.31       dsl ultrix_sys_lstat(struct lwp *l, const struct ultrix_sys_lstat_args *uap, register_t *retval)
    112       1.1  jonathan {
    113       1.1  jonathan 
    114      1.32  christos 	return compat_43_sys_lstat(l,
    115      1.32  christos 	    (const struct compat_43_sys_lstat_args *)uap, retval);
    116       1.1  jonathan }
    117       1.1  jonathan 
    118       1.1  jonathan int
    119      1.31       dsl ultrix_sys_execv(struct lwp *l, const struct ultrix_sys_execv_args *uap, register_t *retval)
    120       1.1  jonathan {
    121      1.31       dsl 	/* {
    122       1.8  christos 		syscallarg(const char *) path;
    123       1.3   mycroft 		syscallarg(char **) argv;
    124      1.31       dsl 	} */
    125       1.3   mycroft 	struct sys_execve_args ap;
    126       1.1  jonathan 
    127       1.4  jonathan 	SCARG(&ap, path) = SCARG(uap, path);
    128       1.4  jonathan 	SCARG(&ap, argp) = SCARG(uap, argp);
    129       1.4  jonathan 	SCARG(&ap, envp) = NULL;
    130       1.1  jonathan 
    131      1.32  christos 	return sys_execve(l, &ap, retval);
    132       1.3   mycroft }
    133       1.3   mycroft 
    134       1.3   mycroft int
    135      1.31       dsl ultrix_sys_execve(struct lwp *l, const struct ultrix_sys_execve_args *uap, register_t *retval)
    136       1.3   mycroft {
    137      1.31       dsl 	/* {
    138       1.8  christos 		syscallarg(const char *) path;
    139       1.3   mycroft 		syscallarg(char **) argv;
    140       1.3   mycroft 		syscallarg(char **) envp;
    141      1.31       dsl 	} */
    142       1.3   mycroft 	struct sys_execve_args ap;
    143       1.3   mycroft 
    144       1.4  jonathan 	SCARG(&ap, path) = SCARG(uap, path);
    145       1.4  jonathan 	SCARG(&ap, argp) = SCARG(uap, argp);
    146       1.4  jonathan 	SCARG(&ap, envp) = SCARG(uap, envp);
    147       1.3   mycroft 
    148      1.32  christos 	return sys_execve(l, &ap, retval);
    149       1.1  jonathan }
    150       1.1  jonathan 
    151       1.1  jonathan int
    152      1.31       dsl ultrix_sys_open(struct lwp *l, const struct ultrix_sys_open_args *uap, register_t *retval)
    153       1.1  jonathan {
    154      1.15   thorpej 	struct proc *p = l->l_proc;
    155      1.15   thorpej 	int q, r;
    156       1.1  jonathan 	int noctty;
    157       1.1  jonathan 	int ret;
    158      1.32  christos 	struct sys_open_args ap;
    159      1.23     perry 
    160       1.1  jonathan 	/* convert open flags into NetBSD flags */
    161      1.32  christos 
    162      1.15   thorpej 	q = SCARG(uap, flags);
    163      1.15   thorpej 	noctty = q & 0x8000;
    164      1.15   thorpej 	r =	(q & (0x0001 | 0x0002 | 0x0008 | 0x0040 | 0x0200 | 0x0400 | 0x0800));
    165      1.15   thorpej 	r |=	((q & (0x0004 | 0x1000 | 0x4000)) ? O_NONBLOCK : 0);
    166      1.15   thorpej 	r |=	((q & 0x0080) ? O_SHLOCK : 0);
    167      1.15   thorpej 	r |=	((q & 0x0100) ? O_EXLOCK : 0);
    168      1.15   thorpej 	r |=	((q & 0x2000) ? O_FSYNC : 0);
    169       1.1  jonathan 
    170      1.32  christos 	SCARG(&ap, path) = SCARG(uap, path);
    171      1.32  christos 	SCARG(&ap, flags) = r;
    172      1.32  christos 	SCARG(&ap, mode) = SCARG(uap, mode);
    173      1.32  christos 	ret = sys_open(l, &ap, retval);
    174       1.1  jonathan 
    175      1.25        ad 	/* XXXSMP */
    176      1.25        ad 	if (!ret && !noctty && SESS_LEADER(p) && !(p->p_lflag & PL_CONTROLT)) {
    177      1.34        ad 		file_t *fp;
    178      1.34        ad 		int fd;
    179      1.12   thorpej 
    180      1.34        ad 		fd = (int)*retval;
    181      1.34        ad 		fp = fd_getfile(fd);
    182       1.1  jonathan 
    183       1.1  jonathan 		/* ignore any error, just give it a try */
    184      1.33       dsl 		if (fp != NULL) {
    185      1.33       dsl 			if (fp->f_type == DTYPE_VNODE)
    186      1.34        ad 				(fp->f_ops->fo_ioctl)(fp, TIOCSCTTY, NULL);
    187      1.34        ad 			fd_putfile(fd);
    188      1.33       dsl 		}
    189       1.1  jonathan 	}
    190       1.1  jonathan 	return ret;
    191       1.1  jonathan }
    192       1.1  jonathan 
    193       1.1  jonathan 
    194       1.1  jonathan struct ultrix_statfs {
    195       1.1  jonathan 	long	f_type;		/* type of info, zero for now */
    196       1.1  jonathan 	long	f_bsize;	/* fundamental file system block size */
    197       1.1  jonathan 	long	f_blocks;	/* total blocks in file system */
    198       1.1  jonathan 	long	f_bfree;	/* free blocks */
    199       1.1  jonathan 	long	f_bavail;	/* free blocks available to non-super-user */
    200       1.1  jonathan 	long	f_files;	/* total file nodes in file system */
    201       1.1  jonathan 	long	f_ffree;	/* free file nodes in fs */
    202       1.1  jonathan 	fsid_t	f_fsid;		/* file system id */
    203       1.1  jonathan 	long	f_spare[7];	/* spare for later */
    204       1.1  jonathan };
    205       1.1  jonathan 
    206       1.1  jonathan /*
    207      1.23     perry  * Custruct ultrix statfs result from native.
    208       1.1  jonathan  * XXX should this be the same as returned by Ultrix getmnt(2)?
    209       1.1  jonathan  * XXX Ultrix predates DEV_BSIZE.  Is  conversion of disk space from 1k
    210      1.23     perry  *  block units to DEV_BSIZE necessary?
    211       1.1  jonathan  */
    212       1.1  jonathan static int
    213      1.26  christos ultrixstatfs(struct statvfs *sp, void *buf)
    214       1.1  jonathan {
    215       1.1  jonathan 	struct ultrix_statfs ssfs;
    216       1.1  jonathan 
    217       1.7     perry 	memset(&ssfs, 0, sizeof ssfs);
    218       1.1  jonathan 	ssfs.f_type = 0;
    219       1.1  jonathan 	ssfs.f_bsize = sp->f_bsize;
    220       1.1  jonathan 	ssfs.f_blocks = sp->f_blocks;
    221       1.1  jonathan 	ssfs.f_bfree = sp->f_bfree;
    222       1.1  jonathan 	ssfs.f_bavail = sp->f_bavail;
    223       1.1  jonathan 	ssfs.f_files = sp->f_files;
    224       1.1  jonathan 	ssfs.f_ffree = sp->f_ffree;
    225      1.21    simonb 	ssfs.f_fsid = sp->f_fsidx;
    226      1.26  christos 	return copyout((void *)&ssfs, buf, sizeof ssfs);
    227       1.1  jonathan }
    228       1.1  jonathan 
    229       1.1  jonathan 
    230       1.1  jonathan int
    231      1.31       dsl ultrix_sys_statfs(struct lwp *l, const struct ultrix_sys_statfs_args *uap, register_t *retval)
    232       1.1  jonathan {
    233      1.10  augustss 	struct mount *mp;
    234      1.20  christos 	struct statvfs *sp;
    235       1.1  jonathan 	int error;
    236       1.1  jonathan 	struct nameidata nd;
    237       1.1  jonathan 
    238      1.30     pooka 	NDINIT(&nd, LOOKUP, FOLLOW | TRYEMULROOT, UIO_USERSPACE,
    239      1.30     pooka 	    SCARG(uap, path));
    240       1.2  jonathan 	if ((error = namei(&nd)) != 0)
    241      1.32  christos 		return error;
    242       1.2  jonathan 
    243       1.1  jonathan 	mp = nd.ni_vp->v_mount;
    244       1.1  jonathan 	sp = &mp->mnt_stat;
    245       1.1  jonathan 	vrele(nd.ni_vp);
    246      1.29    dogcow 	if ((error = VFS_STATVFS(mp, sp)) != 0)
    247      1.32  christos 		return error;
    248      1.21    simonb 	sp->f_flag = mp->mnt_flag & MNT_VISFLAGMASK;
    249      1.26  christos 	return ultrixstatfs(sp, (void *)SCARG(uap, buf));
    250       1.1  jonathan }
    251       1.1  jonathan 
    252       1.1  jonathan /*
    253       1.1  jonathan  * sys_fstatfs() takes an fd, not a path, and so needs no emul
    254      1.20  christos  * pathname processing;  but it's similar enough to sys_statvfs() that
    255       1.1  jonathan  * it goes here anyway.
    256       1.1  jonathan  */
    257       1.1  jonathan int
    258      1.31       dsl ultrix_sys_fstatfs(struct lwp *l, const struct ultrix_sys_fstatfs_args *uap, register_t *retval)
    259       1.1  jonathan {
    260      1.34        ad 	file_t *fp;
    261       1.1  jonathan 	struct mount *mp;
    262      1.20  christos 	struct statvfs *sp;
    263       1.1  jonathan 	int error;
    264       1.1  jonathan 
    265       1.9   thorpej 	/* getvnode() will use the descriptor for us */
    266      1.34        ad 	if ((error = fd_getvnode(SCARG(uap, fd), &fp)) != 0)
    267      1.32  christos 		return error;
    268       1.1  jonathan 	mp = ((struct vnode *)fp->f_data)->v_mount;
    269       1.1  jonathan 	sp = &mp->mnt_stat;
    270      1.29    dogcow 	if ((error = VFS_STATVFS(mp, sp)) != 0)
    271       1.9   thorpej 		goto out;
    272      1.21    simonb 	sp->f_flag = mp->mnt_flag & MNT_VISFLAGMASK;
    273      1.26  christos 	error = ultrixstatfs(sp, (void *)SCARG(uap, buf));
    274       1.9   thorpej  out:
    275      1.34        ad  	fd_putfile(SCARG(uap, fd));
    276      1.32  christos 	return error;
    277       1.1  jonathan }
    278       1.1  jonathan 
    279       1.1  jonathan int
    280      1.31       dsl ultrix_sys_mknod(struct lwp *l, const struct ultrix_sys_mknod_args *uap, register_t *retval)
    281       1.1  jonathan {
    282       1.1  jonathan 
    283       1.1  jonathan 	if (S_ISFIFO(SCARG(uap, mode)))
    284      1.32  christos 		return sys_mkfifo(l, (const struct sys_mkfifo_args *)uap,
    285      1.32  christos 		    retval);
    286       1.1  jonathan 
    287      1.32  christos 	return sys_mknod(l, (const struct sys_mknod_args *)uap, retval);
    288       1.1  jonathan }
    289