Home | History | Annotate | Line # | Download | only in libukfs
ukfs.c revision 1.3
      1  1.3  pooka /*	$NetBSD: ukfs.c,v 1.3 2008/08/01 14:47:28 pooka Exp $	*/
      2  1.1  pooka 
      3  1.1  pooka /*
      4  1.3  pooka  * Copyright (c) 2007, 2008  Antti Kantee.  All Rights Reserved.
      5  1.1  pooka  *
      6  1.1  pooka  * Development of this software was supported by the
      7  1.1  pooka  * Finnish Cultural Foundation.
      8  1.1  pooka  *
      9  1.1  pooka  * Redistribution and use in source and binary forms, with or without
     10  1.1  pooka  * modification, are permitted provided that the following conditions
     11  1.1  pooka  * are met:
     12  1.1  pooka  * 1. Redistributions of source code must retain the above copyright
     13  1.1  pooka  *    notice, this list of conditions and the following disclaimer.
     14  1.1  pooka  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  pooka  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  pooka  *    documentation and/or other materials provided with the distribution.
     17  1.1  pooka  *
     18  1.1  pooka  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
     19  1.1  pooka  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     20  1.1  pooka  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     21  1.1  pooka  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     22  1.1  pooka  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     23  1.1  pooka  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     24  1.1  pooka  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     25  1.1  pooka  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     26  1.1  pooka  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27  1.1  pooka  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28  1.1  pooka  * SUCH DAMAGE.
     29  1.1  pooka  */
     30  1.1  pooka 
     31  1.1  pooka /*
     32  1.1  pooka  * This library enables access to files systems directly without
     33  1.1  pooka  * involving system calls.
     34  1.1  pooka  */
     35  1.1  pooka 
     36  1.1  pooka #ifdef __linux__
     37  1.1  pooka #define _XOPEN_SOURCE 500
     38  1.1  pooka #define _BSD_SOURCE
     39  1.1  pooka #define _FILE_OFFSET_BITS 64
     40  1.1  pooka #endif
     41  1.1  pooka 
     42  1.3  pooka #include <sys/param.h>
     43  1.3  pooka #include <sys/queue.h>
     44  1.1  pooka #include <sys/stat.h>
     45  1.1  pooka 
     46  1.1  pooka #include <assert.h>
     47  1.3  pooka #include <dirent.h>
     48  1.3  pooka #include <dlfcn.h>
     49  1.1  pooka #include <err.h>
     50  1.1  pooka #include <errno.h>
     51  1.1  pooka #include <pthread.h>
     52  1.1  pooka #include <stdio.h>
     53  1.1  pooka #include <stdlib.h>
     54  1.1  pooka #include <string.h>
     55  1.1  pooka #include <unistd.h>
     56  1.1  pooka #include <stdint.h>
     57  1.1  pooka 
     58  1.1  pooka #include <rump/ukfs.h>
     59  1.1  pooka 
     60  1.1  pooka #include <rump/rump.h>
     61  1.1  pooka #include <rump/rump_syscalls.h>
     62  1.1  pooka 
     63  1.1  pooka #define UKFS_MODE_DEFAULT 0555
     64  1.1  pooka 
     65  1.1  pooka struct ukfs {
     66  1.1  pooka 	struct mount *ukfs_mp;
     67  1.1  pooka 	struct vnode *ukfs_rvp;
     68  1.1  pooka 
     69  1.1  pooka 	pthread_spinlock_t ukfs_spin;
     70  1.1  pooka 	pid_t ukfs_nextpid;
     71  1.1  pooka 	struct vnode *ukfs_cdir;
     72  1.1  pooka };
     73  1.1  pooka 
     74  1.1  pooka struct mount *
     75  1.1  pooka ukfs_getmp(struct ukfs *ukfs)
     76  1.1  pooka {
     77  1.1  pooka 
     78  1.1  pooka 	return ukfs->ukfs_mp;
     79  1.1  pooka }
     80  1.1  pooka 
     81  1.1  pooka struct vnode *
     82  1.1  pooka ukfs_getrvp(struct ukfs *ukfs)
     83  1.1  pooka {
     84  1.1  pooka 	struct vnode *rvp;
     85  1.1  pooka 
     86  1.1  pooka 	rvp = ukfs->ukfs_rvp;
     87  1.1  pooka 	rump_vp_incref(rvp);
     88  1.1  pooka 
     89  1.1  pooka 	return rvp;
     90  1.1  pooka }
     91  1.1  pooka 
     92  1.1  pooka static pid_t
     93  1.1  pooka nextpid(struct ukfs *ukfs)
     94  1.1  pooka {
     95  1.1  pooka 	pid_t npid;
     96  1.1  pooka 
     97  1.1  pooka 	pthread_spin_lock(&ukfs->ukfs_spin);
     98  1.1  pooka 	npid = ukfs->ukfs_nextpid++;
     99  1.1  pooka 	pthread_spin_unlock(&ukfs->ukfs_spin);
    100  1.1  pooka 
    101  1.1  pooka 	return npid;
    102  1.1  pooka }
    103  1.1  pooka 
    104  1.1  pooka static void
    105  1.1  pooka precall(struct ukfs *ukfs)
    106  1.1  pooka {
    107  1.1  pooka 	struct vnode *rvp, *cvp;
    108  1.1  pooka 
    109  1.1  pooka 	rump_setup_curlwp(nextpid(ukfs), 1, 1);
    110  1.1  pooka 	rvp = ukfs_getrvp(ukfs);
    111  1.1  pooka 	pthread_spin_lock(&ukfs->ukfs_spin);
    112  1.1  pooka 	cvp = ukfs->ukfs_cdir;
    113  1.1  pooka 	pthread_spin_unlock(&ukfs->ukfs_spin);
    114  1.1  pooka 	rump_rcvp_set(rvp, cvp); /* takes refs */
    115  1.1  pooka 	rump_vp_rele(rvp);
    116  1.1  pooka }
    117  1.1  pooka 
    118  1.1  pooka static void
    119  1.1  pooka postcall(struct ukfs *ukfs)
    120  1.1  pooka {
    121  1.1  pooka 	struct vnode *rvp;
    122  1.1  pooka 
    123  1.1  pooka 	rvp = ukfs_getrvp(ukfs);
    124  1.1  pooka 	rump_rcvp_set(NULL, rvp);
    125  1.1  pooka 	rump_vp_rele(rvp);
    126  1.1  pooka 	rump_clear_curlwp();
    127  1.1  pooka }
    128  1.1  pooka 
    129  1.1  pooka int
    130  1.1  pooka ukfs_init()
    131  1.1  pooka {
    132  1.1  pooka 
    133  1.1  pooka 	rump_init();
    134  1.1  pooka 
    135  1.1  pooka 	return 0;
    136  1.1  pooka }
    137  1.1  pooka 
    138  1.1  pooka struct ukfs *
    139  1.1  pooka ukfs_mount(const char *vfsname, const char *devpath, const char *mountpath,
    140  1.1  pooka 	int mntflags, void *arg, size_t alen)
    141  1.1  pooka {
    142  1.1  pooka 	struct ukfs *fs = NULL;
    143  1.1  pooka 	struct vfsops *vfsops;
    144  1.1  pooka 	struct mount *mp;
    145  1.1  pooka 	int rv = 0;
    146  1.1  pooka 
    147  1.1  pooka 	vfsops = rump_vfs_getopsbyname(vfsname);
    148  1.1  pooka 	if (vfsops == NULL) {
    149  1.1  pooka 		rv = ENOENT;
    150  1.1  pooka 		goto out;
    151  1.1  pooka 	}
    152  1.1  pooka 
    153  1.1  pooka 	mp = rump_mnt_init(vfsops, mntflags);
    154  1.1  pooka 
    155  1.1  pooka 	fs = malloc(sizeof(struct ukfs));
    156  1.1  pooka 	if (fs == NULL) {
    157  1.1  pooka 		rv = ENOMEM;
    158  1.1  pooka 		goto out;
    159  1.1  pooka 	}
    160  1.1  pooka 	memset(fs, 0, sizeof(struct ukfs));
    161  1.1  pooka 	pthread_spin_init(&fs->ukfs_spin, PTHREAD_PROCESS_SHARED);
    162  1.1  pooka 
    163  1.1  pooka 	rump_fakeblk_register(devpath);
    164  1.1  pooka 	rv = rump_mnt_mount(mp, mountpath, arg, &alen);
    165  1.1  pooka 	rump_fakeblk_deregister(devpath);
    166  1.1  pooka 	if (rv) {
    167  1.1  pooka 		warnx("VFS_MOUNT %d", rv);
    168  1.1  pooka 		goto out;
    169  1.1  pooka 	}
    170  1.1  pooka 	fs->ukfs_mp = mp;
    171  1.1  pooka 
    172  1.1  pooka 	rv = rump_vfs_root(fs->ukfs_mp, &fs->ukfs_rvp, 0);
    173  1.1  pooka 	fs->ukfs_cdir = ukfs_getrvp(fs);
    174  1.1  pooka 
    175  1.1  pooka  out:
    176  1.1  pooka 	if (rv) {
    177  1.1  pooka 		if (fs && fs->ukfs_mp)
    178  1.1  pooka 			rump_mnt_destroy(fs->ukfs_mp);
    179  1.1  pooka 		if (fs)
    180  1.1  pooka 			free(fs);
    181  1.1  pooka 		errno = rv;
    182  1.1  pooka 		fs = NULL;
    183  1.1  pooka 	}
    184  1.1  pooka 
    185  1.1  pooka 	return fs;
    186  1.1  pooka }
    187  1.1  pooka 
    188  1.1  pooka void
    189  1.1  pooka ukfs_release(struct ukfs *fs, int flags)
    190  1.1  pooka {
    191  1.1  pooka 	int rv;
    192  1.1  pooka 
    193  1.1  pooka 	if ((flags & UKFS_RELFLAG_NOUNMOUNT) == 0) {
    194  1.1  pooka 		rump_vp_rele(fs->ukfs_cdir);
    195  1.1  pooka 		rv = rump_vfs_sync(fs->ukfs_mp, 1, NULL);
    196  1.1  pooka 		rump_vp_recycle_nokidding(ukfs_getrvp(fs));
    197  1.1  pooka 		rv |= rump_vfs_unmount(fs->ukfs_mp, 0);
    198  1.1  pooka 		assert(rv == 0);
    199  1.1  pooka 	}
    200  1.1  pooka 
    201  1.1  pooka 	rump_vfs_syncwait(fs->ukfs_mp);
    202  1.1  pooka 	rump_mnt_destroy(fs->ukfs_mp);
    203  1.1  pooka 
    204  1.1  pooka 	pthread_spin_destroy(&fs->ukfs_spin);
    205  1.1  pooka 	free(fs);
    206  1.1  pooka }
    207  1.1  pooka 
    208  1.1  pooka /* don't need vn_lock(), since we don't have VXLOCK */
    209  1.1  pooka #define VLE(a) rump_vp_lock_exclusive(a)
    210  1.1  pooka #define VLS(a) rump_vp_lock_shared(a)
    211  1.1  pooka #define VUL(a) rump_vp_unlock(a)
    212  1.1  pooka #define AUL(a) assert(rump_vp_islocked(a) == 0)
    213  1.1  pooka 
    214  1.1  pooka #define STDCALL(ukfs, thecall)						\
    215  1.1  pooka 	int rv = 0;							\
    216  1.1  pooka 									\
    217  1.1  pooka 	precall(ukfs);							\
    218  1.1  pooka 	thecall;							\
    219  1.1  pooka 	postcall(ukfs);							\
    220  1.1  pooka 	if (rv) {							\
    221  1.1  pooka 		errno = rv;						\
    222  1.1  pooka 		return -1;						\
    223  1.1  pooka 	}								\
    224  1.1  pooka 	return 0;
    225  1.1  pooka 
    226  1.1  pooka int
    227  1.1  pooka ukfs_getdents(struct ukfs *ukfs, const char *dirname, off_t *off,
    228  1.1  pooka 	uint8_t *buf, size_t bufsize)
    229  1.1  pooka {
    230  1.1  pooka 	struct uio *uio;
    231  1.1  pooka 	struct vnode *vp;
    232  1.1  pooka 	size_t resid;
    233  1.1  pooka 	int rv, eofflag;
    234  1.1  pooka 
    235  1.1  pooka 	precall(ukfs);
    236  1.1  pooka 	rv = rump_namei(RUMP_NAMEI_LOOKUP, RUMP_NAMEI_LOCKLEAF, dirname,
    237  1.1  pooka 	    NULL, &vp, NULL);
    238  1.1  pooka 	postcall(ukfs);
    239  1.1  pooka 	if (rv)
    240  1.1  pooka 		goto out;
    241  1.1  pooka 
    242  1.1  pooka 	uio = rump_uio_setup(buf, bufsize, *off, RUMPUIO_READ);
    243  1.1  pooka 	rv = RUMP_VOP_READDIR(vp, uio, NULL, &eofflag, NULL, NULL);
    244  1.1  pooka 	VUL(vp);
    245  1.1  pooka 	*off = rump_uio_getoff(uio);
    246  1.1  pooka 	resid = rump_uio_free(uio);
    247  1.1  pooka 	rump_vp_rele(vp);
    248  1.1  pooka 
    249  1.1  pooka  out:
    250  1.1  pooka 	if (rv) {
    251  1.1  pooka 		errno = rv;
    252  1.1  pooka 		return -1;
    253  1.1  pooka 	}
    254  1.1  pooka 
    255  1.1  pooka 	/* LINTED: not totally correct return type, but follows syscall */
    256  1.1  pooka 	return bufsize - resid;
    257  1.1  pooka }
    258  1.1  pooka 
    259  1.1  pooka ssize_t
    260  1.1  pooka ukfs_read(struct ukfs *ukfs, const char *filename, off_t off,
    261  1.1  pooka 	uint8_t *buf, size_t bufsize)
    262  1.1  pooka {
    263  1.1  pooka 	int fd, rv = 0, dummy;
    264  1.1  pooka 	ssize_t xfer = -1; /* XXXgcc */
    265  1.1  pooka 
    266  1.1  pooka 	precall(ukfs);
    267  1.1  pooka 	fd = rump_sys_open(filename, RUMP_O_RDONLY, 0, &rv);
    268  1.1  pooka 	if (rv)
    269  1.1  pooka 		goto out;
    270  1.1  pooka 
    271  1.1  pooka 	xfer = rump_sys_pread(fd, buf, bufsize, 0, off, &rv);
    272  1.1  pooka 	rump_sys_close(fd, &dummy);
    273  1.1  pooka 
    274  1.1  pooka  out:
    275  1.1  pooka 	postcall(ukfs);
    276  1.1  pooka 	if (rv) {
    277  1.1  pooka 		errno = rv;
    278  1.1  pooka 		return -1;
    279  1.1  pooka 	}
    280  1.1  pooka 	return xfer;
    281  1.1  pooka }
    282  1.1  pooka 
    283  1.1  pooka ssize_t
    284  1.1  pooka ukfs_write(struct ukfs *ukfs, const char *filename, off_t off,
    285  1.1  pooka 	uint8_t *buf, size_t bufsize)
    286  1.1  pooka {
    287  1.1  pooka 	int fd, rv = 0, dummy;
    288  1.1  pooka 	ssize_t xfer = -1; /* XXXgcc */
    289  1.1  pooka 
    290  1.1  pooka 	precall(ukfs);
    291  1.1  pooka 	fd = rump_sys_open(filename, RUMP_O_WRONLY, 0, &rv);
    292  1.1  pooka 	if (rv)
    293  1.1  pooka 		goto out;
    294  1.1  pooka 
    295  1.1  pooka 	/* write and commit */
    296  1.1  pooka 	xfer = rump_sys_pwrite(fd, buf, bufsize, 0, off, &rv);
    297  1.1  pooka 	if (rv == 0)
    298  1.1  pooka 		rump_sys_fsync(fd, &dummy);
    299  1.1  pooka 
    300  1.1  pooka 	rump_sys_close(fd, &dummy);
    301  1.1  pooka 
    302  1.1  pooka  out:
    303  1.1  pooka 	postcall(ukfs);
    304  1.1  pooka 	if (rv) {
    305  1.1  pooka 		errno = rv;
    306  1.1  pooka 		return -1;
    307  1.1  pooka 	}
    308  1.1  pooka 	return xfer;
    309  1.1  pooka }
    310  1.1  pooka 
    311  1.1  pooka int
    312  1.1  pooka ukfs_create(struct ukfs *ukfs, const char *filename, mode_t mode)
    313  1.1  pooka {
    314  1.1  pooka 	int rv, fd, dummy;
    315  1.1  pooka 
    316  1.1  pooka 	precall(ukfs);
    317  1.1  pooka 	fd = rump_sys_open(filename, RUMP_O_WRONLY | RUMP_O_CREAT, mode, &rv);
    318  1.1  pooka 	rump_sys_close(fd, &dummy);
    319  1.1  pooka 
    320  1.1  pooka 	postcall(ukfs);
    321  1.1  pooka 	if (rv) {
    322  1.1  pooka 		errno = rv;
    323  1.1  pooka 		return -1;
    324  1.1  pooka 	}
    325  1.1  pooka 	return 0;
    326  1.1  pooka }
    327  1.1  pooka 
    328  1.1  pooka int
    329  1.1  pooka ukfs_mknod(struct ukfs *ukfs, const char *path, mode_t mode, dev_t dev)
    330  1.1  pooka {
    331  1.1  pooka 
    332  1.1  pooka 	STDCALL(ukfs, rump_sys_mknod(path, mode, dev, &rv));
    333  1.1  pooka }
    334  1.1  pooka 
    335  1.1  pooka int
    336  1.1  pooka ukfs_mkfifo(struct ukfs *ukfs, const char *path, mode_t mode)
    337  1.1  pooka {
    338  1.1  pooka 
    339  1.1  pooka 	STDCALL(ukfs, rump_sys_mkfifo(path, mode, &rv));
    340  1.1  pooka }
    341  1.1  pooka 
    342  1.1  pooka int
    343  1.1  pooka ukfs_mkdir(struct ukfs *ukfs, const char *filename, mode_t mode)
    344  1.1  pooka {
    345  1.1  pooka 
    346  1.1  pooka 	STDCALL(ukfs, rump_sys_mkdir(filename, mode, &rv));
    347  1.1  pooka }
    348  1.1  pooka 
    349  1.1  pooka int
    350  1.1  pooka ukfs_remove(struct ukfs *ukfs, const char *filename)
    351  1.1  pooka {
    352  1.1  pooka 
    353  1.1  pooka 	STDCALL(ukfs, rump_sys_unlink(filename, &rv));
    354  1.1  pooka }
    355  1.1  pooka 
    356  1.1  pooka int
    357  1.1  pooka ukfs_rmdir(struct ukfs *ukfs, const char *filename)
    358  1.1  pooka {
    359  1.1  pooka 
    360  1.1  pooka 	STDCALL(ukfs, rump_sys_rmdir(filename, &rv));
    361  1.1  pooka }
    362  1.1  pooka 
    363  1.1  pooka int
    364  1.1  pooka ukfs_link(struct ukfs *ukfs, const char *filename, const char *f_create)
    365  1.1  pooka {
    366  1.1  pooka 
    367  1.1  pooka 	STDCALL(ukfs, rump_sys_link(filename, f_create, &rv));
    368  1.1  pooka }
    369  1.1  pooka 
    370  1.1  pooka int
    371  1.1  pooka ukfs_symlink(struct ukfs *ukfs, const char *filename, const char *linkname)
    372  1.1  pooka {
    373  1.1  pooka 
    374  1.1  pooka 	STDCALL(ukfs, rump_sys_symlink(filename, linkname, &rv));
    375  1.1  pooka }
    376  1.1  pooka 
    377  1.1  pooka ssize_t
    378  1.1  pooka ukfs_readlink(struct ukfs *ukfs, const char *filename,
    379  1.1  pooka 	char *linkbuf, size_t buflen)
    380  1.1  pooka {
    381  1.1  pooka 	ssize_t rv;
    382  1.1  pooka 	int myerr = 0;
    383  1.1  pooka 
    384  1.1  pooka 	precall(ukfs);
    385  1.1  pooka 	rv = rump_sys_readlink(filename, linkbuf, buflen, &myerr);
    386  1.1  pooka 	postcall(ukfs);
    387  1.1  pooka 	if (myerr) {
    388  1.2  pooka 		errno = myerr;
    389  1.1  pooka 		return -1;
    390  1.1  pooka 	}
    391  1.1  pooka 	return rv;
    392  1.1  pooka }
    393  1.1  pooka 
    394  1.1  pooka int
    395  1.1  pooka ukfs_rename(struct ukfs *ukfs, const char *from, const char *to)
    396  1.1  pooka {
    397  1.1  pooka 
    398  1.1  pooka 	STDCALL(ukfs, rump_sys_rename(from, to, &rv));
    399  1.1  pooka }
    400  1.1  pooka 
    401  1.1  pooka int
    402  1.1  pooka ukfs_chdir(struct ukfs *ukfs, const char *path)
    403  1.1  pooka {
    404  1.1  pooka 	struct vnode *newvp, *oldvp;
    405  1.1  pooka 	int rv;
    406  1.1  pooka 
    407  1.1  pooka 	precall(ukfs);
    408  1.1  pooka 	rump_sys_chdir(path, &rv);
    409  1.1  pooka 	if (rv)
    410  1.1  pooka 		goto out;
    411  1.1  pooka 
    412  1.1  pooka 	newvp = rump_cdir_get();
    413  1.1  pooka 	pthread_spin_lock(&ukfs->ukfs_spin);
    414  1.1  pooka 	oldvp = ukfs->ukfs_cdir;
    415  1.1  pooka 	ukfs->ukfs_cdir = newvp;
    416  1.1  pooka 	pthread_spin_unlock(&ukfs->ukfs_spin);
    417  1.1  pooka 	if (oldvp)
    418  1.1  pooka 		rump_vp_rele(oldvp);
    419  1.1  pooka 
    420  1.1  pooka  out:
    421  1.1  pooka 	postcall(ukfs);
    422  1.1  pooka 	if (rv) {
    423  1.1  pooka 		errno = rv;
    424  1.1  pooka 		return -1;
    425  1.1  pooka 	}
    426  1.1  pooka 	return 0;
    427  1.1  pooka }
    428  1.1  pooka 
    429  1.1  pooka int
    430  1.1  pooka ukfs_stat(struct ukfs *ukfs, const char *filename, struct stat *file_stat)
    431  1.1  pooka {
    432  1.1  pooka 
    433  1.1  pooka 	STDCALL(ukfs, rump_sys___stat30(filename, file_stat, &rv));
    434  1.1  pooka }
    435  1.1  pooka 
    436  1.1  pooka int
    437  1.1  pooka ukfs_lstat(struct ukfs *ukfs, const char *filename, struct stat *file_stat)
    438  1.1  pooka {
    439  1.1  pooka 
    440  1.1  pooka 	STDCALL(ukfs, rump_sys___lstat30(filename, file_stat, &rv));
    441  1.1  pooka }
    442  1.1  pooka 
    443  1.1  pooka int
    444  1.1  pooka ukfs_chmod(struct ukfs *ukfs, const char *filename, mode_t mode)
    445  1.1  pooka {
    446  1.1  pooka 
    447  1.1  pooka 	STDCALL(ukfs, rump_sys_chmod(filename, mode, &rv));
    448  1.1  pooka }
    449  1.1  pooka 
    450  1.1  pooka int
    451  1.1  pooka ukfs_lchmod(struct ukfs *ukfs, const char *filename, mode_t mode)
    452  1.1  pooka {
    453  1.1  pooka 
    454  1.1  pooka 	STDCALL(ukfs, rump_sys_lchmod(filename, mode, &rv));
    455  1.1  pooka }
    456  1.1  pooka 
    457  1.1  pooka int
    458  1.1  pooka ukfs_chown(struct ukfs *ukfs, const char *filename, uid_t uid, gid_t gid)
    459  1.1  pooka {
    460  1.1  pooka 
    461  1.1  pooka 	STDCALL(ukfs, rump_sys_chown(filename, uid, gid, &rv));
    462  1.1  pooka }
    463  1.1  pooka 
    464  1.1  pooka int
    465  1.1  pooka ukfs_lchown(struct ukfs *ukfs, const char *filename, uid_t uid, gid_t gid)
    466  1.1  pooka {
    467  1.1  pooka 
    468  1.1  pooka 	STDCALL(ukfs, rump_sys_lchown(filename, uid, gid, &rv));
    469  1.1  pooka }
    470  1.1  pooka 
    471  1.1  pooka int
    472  1.1  pooka ukfs_chflags(struct ukfs *ukfs, const char *filename, u_long flags)
    473  1.1  pooka {
    474  1.1  pooka 
    475  1.1  pooka 	STDCALL(ukfs, rump_sys_chflags(filename, flags, &rv));
    476  1.1  pooka }
    477  1.1  pooka 
    478  1.1  pooka int
    479  1.1  pooka ukfs_lchflags(struct ukfs *ukfs, const char *filename, u_long flags)
    480  1.1  pooka {
    481  1.1  pooka 
    482  1.1  pooka 	STDCALL(ukfs, rump_sys_lchflags(filename, flags, &rv));
    483  1.1  pooka }
    484  1.1  pooka 
    485  1.1  pooka int
    486  1.1  pooka ukfs_utimes(struct ukfs *ukfs, const char *filename, const struct timeval *tptr)
    487  1.1  pooka {
    488  1.1  pooka 
    489  1.1  pooka 	STDCALL(ukfs, rump_sys_utimes(filename, tptr, &rv));
    490  1.1  pooka }
    491  1.1  pooka 
    492  1.1  pooka int
    493  1.1  pooka ukfs_lutimes(struct ukfs *ukfs, const char *filename,
    494  1.1  pooka 	      const struct timeval *tptr)
    495  1.1  pooka {
    496  1.1  pooka 
    497  1.1  pooka 	STDCALL(ukfs, rump_sys_lutimes(filename, tptr, &rv));
    498  1.1  pooka }
    499  1.1  pooka 
    500  1.3  pooka /*
    501  1.3  pooka  * Dynamic module support
    502  1.3  pooka  */
    503  1.3  pooka 
    504  1.3  pooka /* load one library */
    505  1.3  pooka 
    506  1.3  pooka /*
    507  1.3  pooka  * XXX: the dlerror stuff isn't really threadsafe, but then again I
    508  1.3  pooka  * can't protect against other threads calling dl*() outside of ukfs,
    509  1.3  pooka  * so just live with it being flimsy
    510  1.3  pooka  */
    511  1.3  pooka #define UFSLIB "librumpfs_ufs.so"
    512  1.3  pooka int
    513  1.3  pooka ukfs_modload(const char *fname)
    514  1.3  pooka {
    515  1.3  pooka 	void *handle, *thesym;
    516  1.3  pooka 	struct stat sb;
    517  1.3  pooka 	const char *p;
    518  1.3  pooka 	int error;
    519  1.3  pooka 
    520  1.3  pooka 	if (stat(fname, &sb) == -1)
    521  1.3  pooka 		return -1;
    522  1.3  pooka 
    523  1.3  pooka 	handle = dlopen(fname, RTLD_GLOBAL);
    524  1.3  pooka 	if (handle == NULL) {
    525  1.3  pooka 		if (strstr(dlerror(), "Undefined symbol"))
    526  1.3  pooka 			return 0;
    527  1.3  pooka 		warnx("dlopen %s failed: %s\n", fname, dlerror());
    528  1.3  pooka 		/* XXXerrno */
    529  1.3  pooka 		return -1;
    530  1.3  pooka 	}
    531  1.3  pooka 
    532  1.3  pooka 	/*
    533  1.3  pooka 	 * XXX: the ufs module is not loaded in the same fashion as the
    534  1.3  pooka 	 * others.  But we can't do dlclose() for it, since that would
    535  1.3  pooka 	 * lead to not being able to load ffs/ext2fs/lfs.  Hence hardcode
    536  1.3  pooka 	 * and kludge around the issue for now.  But this should really
    537  1.3  pooka 	 * be fixed by fixing sys/ufs/ufs to be a kernel module.
    538  1.3  pooka 	 */
    539  1.3  pooka 	if ((p = strrchr(fname, '/')) != NULL)
    540  1.3  pooka 		p++;
    541  1.3  pooka 	else
    542  1.3  pooka 		p = fname;
    543  1.3  pooka 	if (strcmp(p, UFSLIB) == 0)
    544  1.3  pooka 		return 1;
    545  1.3  pooka 
    546  1.3  pooka 	thesym = dlsym(handle, "__start_link_set_modules");
    547  1.3  pooka 	if (thesym) {
    548  1.3  pooka 		error = rump_vfs_load(thesym);
    549  1.3  pooka 		if (error)
    550  1.3  pooka 			goto errclose;
    551  1.3  pooka 		return 1;
    552  1.3  pooka 	}
    553  1.3  pooka 	error = EINVAL;
    554  1.3  pooka 
    555  1.3  pooka  errclose:
    556  1.3  pooka 	dlclose(handle);
    557  1.3  pooka 	errno = error;
    558  1.3  pooka 	return -1;
    559  1.3  pooka }
    560  1.3  pooka 
    561  1.3  pooka struct loadfail {
    562  1.3  pooka 	char *pname;
    563  1.3  pooka 
    564  1.3  pooka 	LIST_ENTRY(loadfail) entries;
    565  1.3  pooka };
    566  1.3  pooka 
    567  1.3  pooka #define RUMPFSMOD_PREFIX "librumpfs_"
    568  1.3  pooka #define RUMPFSMOD_SUFFIX ".so"
    569  1.3  pooka 
    570  1.3  pooka int
    571  1.3  pooka ukfs_modload_dir(const char *dir)
    572  1.3  pooka {
    573  1.3  pooka 	char nbuf[MAXPATHLEN+1], *p;
    574  1.3  pooka 	struct dirent entry, *result;
    575  1.3  pooka 	DIR *libdir;
    576  1.3  pooka 	struct loadfail *lf, *nlf;
    577  1.3  pooka 	int error, nloaded = 0, redo;
    578  1.3  pooka 	LIST_HEAD(, loadfail) lfs;
    579  1.3  pooka 
    580  1.3  pooka 	libdir = opendir(dir);
    581  1.3  pooka 	if (libdir == NULL)
    582  1.3  pooka 		return -1;
    583  1.3  pooka 
    584  1.3  pooka 	LIST_INIT(&lfs);
    585  1.3  pooka 	for (;;) {
    586  1.3  pooka 		if ((error = readdir_r(libdir, &entry, &result)) != 0)
    587  1.3  pooka 			break;
    588  1.3  pooka 		if (!result)
    589  1.3  pooka 			break;
    590  1.3  pooka 		if (strncmp(result->d_name, RUMPFSMOD_PREFIX,
    591  1.3  pooka 		    strlen(RUMPFSMOD_PREFIX)) != 0)
    592  1.3  pooka 			continue;
    593  1.3  pooka 		if (((p = strstr(result->d_name, RUMPFSMOD_SUFFIX)) == NULL)
    594  1.3  pooka 		    || strlen(p) != strlen(RUMPFSMOD_SUFFIX))
    595  1.3  pooka 			continue;
    596  1.3  pooka 		strlcpy(nbuf, dir, sizeof(nbuf));
    597  1.3  pooka 		strlcat(nbuf, "/", sizeof(nbuf));
    598  1.3  pooka 		strlcat(nbuf, result->d_name, sizeof(nbuf));
    599  1.3  pooka 		switch (ukfs_modload(nbuf)) {
    600  1.3  pooka 		case 0:
    601  1.3  pooka 			lf = malloc(sizeof(*lf));
    602  1.3  pooka 			if (lf == NULL) {
    603  1.3  pooka 				error = ENOMEM;
    604  1.3  pooka 				break;
    605  1.3  pooka 			}
    606  1.3  pooka 			lf->pname = strdup(nbuf);
    607  1.3  pooka 			if (lf->pname == NULL) {
    608  1.3  pooka 				free(lf);
    609  1.3  pooka 				error = ENOMEM;
    610  1.3  pooka 				break;
    611  1.3  pooka 			}
    612  1.3  pooka 			LIST_INSERT_HEAD(&lfs, lf, entries);
    613  1.3  pooka 			break;
    614  1.3  pooka 		case 1:
    615  1.3  pooka 			nloaded++;
    616  1.3  pooka 			break;
    617  1.3  pooka 		default:
    618  1.3  pooka 			/* ignore errors */
    619  1.3  pooka 			break;
    620  1.3  pooka 		}
    621  1.3  pooka 	}
    622  1.3  pooka 	closedir(libdir);
    623  1.3  pooka 	if (error && nloaded != 0)
    624  1.3  pooka 		error = 0;
    625  1.3  pooka 
    626  1.3  pooka 	/*
    627  1.3  pooka 	 * El-cheapo dependency calculator.  Just try to load the
    628  1.3  pooka 	 * modules n times in a loop
    629  1.3  pooka 	 */
    630  1.3  pooka 	for (redo = 1; redo;) {
    631  1.3  pooka 		redo = 0;
    632  1.3  pooka 		nlf = LIST_FIRST(&lfs);
    633  1.3  pooka 		while ((lf = nlf) != NULL) {
    634  1.3  pooka 			nlf = LIST_NEXT(lf, entries);
    635  1.3  pooka 			if (ukfs_modload(lf->pname) == 1) {
    636  1.3  pooka 				nloaded++;
    637  1.3  pooka 				redo = 1;
    638  1.3  pooka 				LIST_REMOVE(lf, entries);
    639  1.3  pooka 				free(lf->pname);
    640  1.3  pooka 				free(lf);
    641  1.3  pooka 			}
    642  1.3  pooka 		}
    643  1.3  pooka 	}
    644  1.3  pooka 
    645  1.3  pooka 	while ((lf = LIST_FIRST(&lfs)) != NULL) {
    646  1.3  pooka 		LIST_REMOVE(lf, entries);
    647  1.3  pooka 		free(lf->pname);
    648  1.3  pooka 		free(lf);
    649  1.3  pooka 	}
    650  1.3  pooka 
    651  1.3  pooka 	if (error && nloaded == 0) {
    652  1.3  pooka 		errno = error;
    653  1.3  pooka 		return -1;
    654  1.3  pooka 	}
    655  1.3  pooka 
    656  1.3  pooka 	return nloaded;
    657  1.3  pooka }
    658  1.3  pooka 
    659  1.3  pooka 
    660  1.3  pooka /*
    661  1.3  pooka  * Utilities
    662  1.3  pooka  */
    663  1.1  pooka int
    664  1.1  pooka ukfs_util_builddirs(struct ukfs *ukfs, const char *pathname, mode_t mode)
    665  1.1  pooka {
    666  1.1  pooka 	char *f1, *f2;
    667  1.1  pooka 	int rv;
    668  1.1  pooka 	mode_t mask;
    669  1.1  pooka 	bool end;
    670  1.1  pooka 
    671  1.1  pooka 	/*ukfs_umask((mask = ukfs_umask(0)));*/
    672  1.1  pooka 	umask((mask = umask(0)));
    673  1.1  pooka 
    674  1.1  pooka 	f1 = f2 = strdup(pathname);
    675  1.1  pooka 	if (f1 == NULL) {
    676  1.1  pooka 		errno = ENOMEM;
    677  1.1  pooka 		return -1;
    678  1.1  pooka 	}
    679  1.1  pooka 
    680  1.1  pooka 	end = false;
    681  1.1  pooka 	for (;;) {
    682  1.1  pooka 		/* find next component */
    683  1.1  pooka 		f2 += strspn(f2, "/");
    684  1.1  pooka 		f2 += strcspn(f2, "/");
    685  1.1  pooka 		if (*f2 == '\0')
    686  1.1  pooka 			end = true;
    687  1.1  pooka 		else
    688  1.1  pooka 			*f2 = '\0';
    689  1.1  pooka 
    690  1.1  pooka 		rv = ukfs_mkdir(ukfs, f1, mode & ~mask);
    691  1.1  pooka 		if (errno == EEXIST)
    692  1.1  pooka 			rv = 0;
    693  1.1  pooka 
    694  1.1  pooka 		if (rv == -1 || *f2 != '\0' || end)
    695  1.1  pooka 			break;
    696  1.1  pooka 
    697  1.1  pooka 		*f2 = '/';
    698  1.1  pooka 	}
    699  1.1  pooka 
    700  1.1  pooka 	free(f1);
    701  1.1  pooka 
    702  1.1  pooka 	return rv;
    703  1.1  pooka }
    704