2007-02-18 20:44:57 +03:00
|
|
|
|
/* $NetBSD: refuse.c,v 1.20 2007/02/18 17:44:57 agc Exp $ */
|
2007-02-11 19:02:24 +03:00
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
/*
|
|
|
|
|
* Copyright <EFBFBD> 2007 Alistair Crooks. 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
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* 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 derived from this software without specific prior written
|
|
|
|
|
* permission.
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2007-02-11 19:02:24 +03:00
|
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
#if !defined(lint)
|
2007-02-18 20:44:57 +03:00
|
|
|
|
__RCSID("$NetBSD: refuse.c,v 1.20 2007/02/18 17:44:57 agc Exp $");
|
2007-02-11 19:02:24 +03:00
|
|
|
|
#endif /* !lint */
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
#include <err.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <fuse.h>
|
|
|
|
|
#include <ucontext.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
|
|
typedef uint64_t fuse_ino_t;
|
|
|
|
|
|
|
|
|
|
struct fuse_config {
|
|
|
|
|
uid_t uid;
|
|
|
|
|
gid_t gid;
|
|
|
|
|
mode_t umask;
|
|
|
|
|
double entry_timeout;
|
|
|
|
|
double negative_timeout;
|
|
|
|
|
double attr_timeout;
|
|
|
|
|
double ac_attr_timeout;
|
|
|
|
|
int ac_attr_timeout_set;
|
|
|
|
|
int debug;
|
|
|
|
|
int hard_remove;
|
|
|
|
|
int use_ino;
|
|
|
|
|
int readdir_ino;
|
|
|
|
|
int set_mode;
|
|
|
|
|
int set_uid;
|
|
|
|
|
int set_gid;
|
|
|
|
|
int direct_io;
|
|
|
|
|
int kernel_cache;
|
|
|
|
|
int auto_cache;
|
|
|
|
|
int intr;
|
|
|
|
|
int intr_signal;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* this is the private fuse structure */
|
|
|
|
|
struct fuse {
|
|
|
|
|
struct fuse_session *se; /* fuse session pointer */
|
|
|
|
|
struct fuse_operations op; /* switch table of operations */
|
2007-02-11 19:02:24 +03:00
|
|
|
|
int compat; /* compat level -
|
|
|
|
|
* not used in puffs_fuse */
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct node **name_table;
|
|
|
|
|
size_t name_table_size;
|
|
|
|
|
struct node **id_table;
|
|
|
|
|
size_t id_table_size;
|
|
|
|
|
fuse_ino_t ctr;
|
|
|
|
|
unsigned int generation;
|
|
|
|
|
unsigned int hidectr;
|
|
|
|
|
pthread_mutex_t lock;
|
|
|
|
|
pthread_rwlock_t tree_lock;
|
|
|
|
|
void *user_data;
|
|
|
|
|
struct fuse_config conf;
|
|
|
|
|
int intr_installed;
|
|
|
|
|
struct puffs_usermount *pu;
|
|
|
|
|
};
|
|
|
|
|
|
2007-02-11 15:12:39 +03:00
|
|
|
|
struct refusenode {
|
|
|
|
|
struct fuse_file_info file_info;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct puffs_node *
|
|
|
|
|
newrn(struct puffs_usermount *pu)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_node *pn;
|
|
|
|
|
struct refusenode *rn;
|
|
|
|
|
|
|
|
|
|
rn = malloc(sizeof(struct refusenode));
|
|
|
|
|
if (!rn)
|
|
|
|
|
abort(); /*XXX*/
|
|
|
|
|
|
|
|
|
|
memset(rn, 0, sizeof(struct refusenode));
|
|
|
|
|
pn = puffs_pn_new(pu, rn);
|
|
|
|
|
|
|
|
|
|
return pn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
nukern(struct puffs_node *pn)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
free(pn->pn_data);
|
|
|
|
|
puffs_pn_put(pn);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
static ino_t fakeino = 3;
|
|
|
|
|
|
2007-02-11 14:57:41 +03:00
|
|
|
|
/* XXX: rethinkme */
|
|
|
|
|
struct fuse_dirh {
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct dirent *dent;
|
|
|
|
|
size_t reslen;
|
2007-02-11 14:57:41 +03:00
|
|
|
|
off_t readoff;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED2 */
|
|
|
|
|
static int
|
2007-02-11 14:57:41 +03:00
|
|
|
|
puffs_fuse_fill_dir(void *buf, const char *name,
|
2007-02-11 13:31:37 +03:00
|
|
|
|
const struct stat *stbuf, off_t off)
|
|
|
|
|
{
|
2007-02-11 14:57:41 +03:00
|
|
|
|
struct fuse_dirh *deh = buf;
|
2007-02-15 21:35:16 +03:00
|
|
|
|
ino_t dino;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
uint8_t dtype;
|
|
|
|
|
|
2007-02-15 21:35:16 +03:00
|
|
|
|
if (stbuf == NULL) {
|
|
|
|
|
dtype = DT_UNKNOWN;
|
|
|
|
|
dino = fakeino++;
|
|
|
|
|
} else {
|
|
|
|
|
dtype = puffs_vtype2dt(puffs_mode2vt(stbuf->st_mode));
|
|
|
|
|
dino = stbuf->st_ino;
|
|
|
|
|
}
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
2007-02-15 21:35:16 +03:00
|
|
|
|
return !puffs_nextdent(&deh->dent, name, dino, dtype, &deh->reslen);
|
2007-02-11 14:57:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_dirfil(fuse_dirh_t h, const char *name, int type, ino_t ino)
|
|
|
|
|
{
|
|
|
|
|
ino_t dino;
|
|
|
|
|
int dtype;
|
|
|
|
|
|
2007-02-15 21:35:16 +03:00
|
|
|
|
if (type == 0)
|
|
|
|
|
dtype = DT_UNKNOWN;
|
|
|
|
|
else
|
2007-02-11 14:57:41 +03:00
|
|
|
|
dtype = type;
|
|
|
|
|
|
|
|
|
|
if (ino)
|
|
|
|
|
dino = ino;
|
|
|
|
|
else
|
|
|
|
|
dino = fakeino++;
|
|
|
|
|
|
2007-02-11 17:38:00 +03:00
|
|
|
|
return !puffs_nextdent(&h->dent, name, dino, dtype, &h->reslen);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
fuse_opt_add_arg(struct fuse_args *args, const char *arg)
|
|
|
|
|
{
|
|
|
|
|
char **oldargv;
|
|
|
|
|
int oldargc;
|
|
|
|
|
|
|
|
|
|
if (args->allocated) {
|
2007-02-11 19:02:24 +03:00
|
|
|
|
RENEW(char *, args->argv, args->argc + 1,
|
|
|
|
|
"fuse_opt_add_arg1", return 0);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
} else {
|
|
|
|
|
oldargv = args->argv;
|
|
|
|
|
oldargc = args->argc;
|
2007-02-11 19:02:24 +03:00
|
|
|
|
NEWARRAY(char *, args->argv, oldargc + 1,
|
|
|
|
|
"fuse_opt_add_arg2", return 0);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
(void) memcpy(args->argv, oldargv, oldargc * sizeof(char *));
|
|
|
|
|
args->allocated = 1;
|
|
|
|
|
}
|
|
|
|
|
args->argv[args->argc++] = strdup(arg);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-18 20:44:57 +03:00
|
|
|
|
void
|
|
|
|
|
fuse_opt_free_args(struct fuse_args *args)
|
|
|
|
|
{
|
|
|
|
|
if (args && args->argv) {
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < args->argc; i++)
|
|
|
|
|
FREE(args->argv[i]);
|
|
|
|
|
FREE(args->argv);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
#define FUSE_ERR_UNLINK(fuse, file) if (fuse->op.unlink) fuse->op.unlink(file)
|
|
|
|
|
#define FUSE_ERR_RMDIR(fuse, dir) if (fuse->op.rmdir) fuse->op.rmdir(dir)
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
/* operation wrappers start here */
|
|
|
|
|
|
|
|
|
|
/* lookup the path */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_lookup(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
|
|
|
enum vtype *newtype, voff_t *newsize, dev_t *newrdev,
|
|
|
|
|
const struct puffs_cn *pcn)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
2007-02-15 20:06:24 +03:00
|
|
|
|
struct puffs_node *pn_res;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct stat st;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PCNPATH(pcn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
ret = fuse->op.getattr(path, &st);
|
2007-02-15 20:06:24 +03:00
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if (ret != 0) {
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-15 20:06:24 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* XXX: fiXXXme unconst */
|
|
|
|
|
pn_res = puffs_pn_nodewalk(pu, puffs_path_walkcmp,
|
|
|
|
|
__UNCONST(&pcn->pcn_po_full));
|
|
|
|
|
if (pn_res == NULL) {
|
|
|
|
|
pn_res = newrn(pu);
|
|
|
|
|
if (pn_res == NULL)
|
|
|
|
|
return errno;
|
|
|
|
|
puffs_stat2vattr(&pn_res->pn_va, &st);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
2007-02-15 20:06:24 +03:00
|
|
|
|
|
|
|
|
|
*newnode = pn_res;
|
|
|
|
|
*newtype = pn_res->pn_va.va_type;
|
|
|
|
|
*newsize = pn_res->pn_va.va_size;
|
|
|
|
|
*newrdev = pn_res->pn_va.va_rdev;
|
|
|
|
|
|
|
|
|
|
return 0;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* get attributes for the path name */
|
|
|
|
|
/* ARGSUSED3 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_getattr(struct puffs_cc *pcc, void *opc, struct vattr *va,
|
|
|
|
|
const struct puffs_cred *pcr, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
|
|
|
|
struct stat st;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PNPATH(pn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.getattr == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.getattr)(path, &st);
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
/* fill in va from st */
|
|
|
|
|
va->va_mode = st.st_mode;
|
|
|
|
|
va->va_nlink = st.st_nlink;
|
|
|
|
|
va->va_uid = st.st_uid;
|
|
|
|
|
va->va_gid = st.st_gid;
|
|
|
|
|
va->va_fsid = st.st_rdev;
|
|
|
|
|
va->va_fileid = st.st_ino;
|
|
|
|
|
va->va_size = st.st_size;
|
|
|
|
|
va->va_blocksize = st.st_blksize;
|
|
|
|
|
va->va_atime = st.st_atimespec;
|
|
|
|
|
va->va_mtime = st.st_mtimespec;
|
|
|
|
|
va->va_ctime = st.st_ctimespec;
|
|
|
|
|
va->va_birthtime = st.st_birthtimespec;
|
|
|
|
|
va->va_gen = st.st_gen;
|
|
|
|
|
va->va_flags = st.st_flags;
|
|
|
|
|
va->va_rdev = st.st_rdev;
|
|
|
|
|
va->va_bytes = st.st_size;
|
|
|
|
|
va->va_filerev = st.st_gen;
|
|
|
|
|
va->va_vaflags = st.st_flags;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* read the contents of the symbolic link */
|
|
|
|
|
/* ARGSUSED2 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_readlink(struct puffs_cc *pcc, void *opc,
|
|
|
|
|
const struct puffs_cred *cred, char *linkname, size_t *linklen)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
|
|
|
|
struct fuse *fuse;
|
2007-02-15 21:35:16 +03:00
|
|
|
|
const char *path = PNPATH(pn), *p;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.readlink == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.readlink)(path, linkname, *linklen);
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
2007-02-15 21:35:16 +03:00
|
|
|
|
p = memchr(linkname, '\0', *linklen);
|
|
|
|
|
if (!p)
|
|
|
|
|
return EINVAL;
|
|
|
|
|
|
2007-02-15 22:33:51 +03:00
|
|
|
|
*linklen = p - linkname;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-15 21:35:16 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* make the special node */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_mknod(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
|
|
|
const struct puffs_cn *pcn, const struct vattr *va)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
mode_t mode = va->va_mode;
|
|
|
|
|
const char *path = PCNPATH(pcn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.mknod == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.mknod)(path, mode, va->va_rdev);
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
/* fix up nodes */
|
2007-02-11 15:12:39 +03:00
|
|
|
|
pn = newrn(pu);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if (pn == NULL) {
|
2007-02-16 03:35:06 +03:00
|
|
|
|
FUSE_ERR_UNLINK(fuse, path);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
return ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
puffs_setvattr(&pn->pn_va, va);
|
|
|
|
|
|
|
|
|
|
*newnode = pn;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* make a directory */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_mkdir(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
|
|
|
const struct puffs_cn *pcn, const struct vattr *va)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
mode_t mode = va->va_mode;
|
|
|
|
|
const char *path = PCNPATH(pcn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.mkdir == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.mkdir)(path, mode);
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
/* fix up nodes */
|
2007-02-11 15:12:39 +03:00
|
|
|
|
pn = newrn(pu);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if (pn == NULL) {
|
2007-02-16 03:35:06 +03:00
|
|
|
|
FUSE_ERR_RMDIR(fuse, path);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
return ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
puffs_setvattr(&pn->pn_va, va);
|
|
|
|
|
|
|
|
|
|
*newnode = pn;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:13:02 +03:00
|
|
|
|
/* create a regular file */
|
|
|
|
|
/*ARGSUSED1*/
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_create(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
|
|
|
const struct puffs_cn *pcn, const struct vattr *va)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn;
|
|
|
|
|
struct refusenode *rn;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
struct fuse_file_info fi;
|
|
|
|
|
mode_t mode = va->va_mode;
|
|
|
|
|
const char *path = PCNPATH(pcn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.create == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.create)(path, mode, &fi);
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
/* fix up nodes */
|
|
|
|
|
pn = newrn(pu);
|
|
|
|
|
if (pn == NULL) {
|
2007-02-16 03:35:06 +03:00
|
|
|
|
FUSE_ERR_UNLINK(fuse, path);
|
2007-02-16 03:13:02 +03:00
|
|
|
|
return ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
puffs_setvattr(&pn->pn_va, va);
|
|
|
|
|
|
|
|
|
|
rn = pn->pn_data;
|
|
|
|
|
memcpy(&rn->file_info, &fi, sizeof(struct fuse_file_info));
|
|
|
|
|
|
|
|
|
|
*newnode = pn;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-16 03:13:02 +03:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
/* remove the directory entry */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_remove(struct puffs_cc *pcc, void *opc, void *targ,
|
|
|
|
|
const struct puffs_cn *pcn)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PCNPATH(pcn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.unlink == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.unlink)(path);
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* remove the directory */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_rmdir(struct puffs_cc *pcc, void *opc, void *targ,
|
|
|
|
|
const struct puffs_cn *pcn)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PCNPATH(pcn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.rmdir == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.rmdir)(path);
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* create a symbolic link */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_symlink(struct puffs_cc *pcc, void *opc, void **newnode,
|
|
|
|
|
const struct puffs_cn *pcn_src, const struct vattr *va,
|
|
|
|
|
const char *link_target)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PCNPATH(pcn_src);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.symlink == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.symlink)(path, link_target);
|
|
|
|
|
/* XXX - check I haven't transposed these args */
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
/* fix up nodes */
|
2007-02-11 15:12:39 +03:00
|
|
|
|
pn = newrn(pu);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if (pn == NULL) {
|
2007-02-16 03:35:06 +03:00
|
|
|
|
FUSE_ERR_UNLINK(fuse, path);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
return ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
puffs_setvattr(&pn->pn_va, va);
|
|
|
|
|
|
|
|
|
|
*newnode = pn;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* rename a directory entry */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_rename(struct puffs_cc *pcc, void *opc, void *src,
|
|
|
|
|
const struct puffs_cn *pcn_src, void *targ_dir, void *targ,
|
|
|
|
|
const struct puffs_cn *pcn_targ)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
|
|
|
|
struct vattr va;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PCNPATH(pcn_src);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.rename == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.rename)(path, PCNPATH(pcn_targ));
|
|
|
|
|
|
2007-02-11 15:12:39 +03:00
|
|
|
|
/* XXX: what's this guy doing??? */
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if (ret == 0) {
|
|
|
|
|
(void) memcpy(&va, &pn->pn_va, sizeof(va));
|
|
|
|
|
|
|
|
|
|
puffs_pn_put(pn);
|
|
|
|
|
|
|
|
|
|
pn = puffs_pn_new(pu, NULL);
|
|
|
|
|
if (pn == NULL) {
|
|
|
|
|
return ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
puffs_setvattr(&pn->pn_va, &va);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* create a link in the file system */
|
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_link(struct puffs_cc *pcc, void *opc, void *targ,
|
|
|
|
|
const struct puffs_cn *pcn)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = targ;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.link == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* wrap up return code */
|
|
|
|
|
ret = (*fuse->op.link)(PNPATH(pn), PCNPATH(pcn));
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2007-02-18 03:01:18 +03:00
|
|
|
|
* fuse's regular interface provides chmod(), chown(), utimes()
|
|
|
|
|
* and truncate() + some variations, so try to fit the square block
|
|
|
|
|
* in the circle hole and the circle block .... something like that
|
2007-02-11 19:02:24 +03:00
|
|
|
|
*/
|
2007-02-11 13:31:37 +03:00
|
|
|
|
/* ARGSUSED3 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_setattr(struct puffs_cc *pcc, void *opc,
|
|
|
|
|
const struct vattr *va, const struct puffs_cred *pcr, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
2007-02-18 03:01:18 +03:00
|
|
|
|
struct refusenode *rn = pn->pn_data;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PNPATH(pn);
|
|
|
|
|
mode_t mode;
|
|
|
|
|
uid_t uid;
|
|
|
|
|
gid_t gid;
|
2007-02-18 03:01:18 +03:00
|
|
|
|
int error, ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
|
2007-02-18 03:01:18 +03:00
|
|
|
|
error = 0;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
|
|
|
|
mode = va->va_mode;
|
|
|
|
|
uid = va->va_uid;
|
|
|
|
|
gid = va->va_gid;
|
|
|
|
|
|
2007-02-11 21:30:55 +03:00
|
|
|
|
if (mode != (mode_t)PUFFS_VNOVAL) {
|
2007-02-18 03:01:18 +03:00
|
|
|
|
ret = 0;
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if (fuse->op.chmod == NULL) {
|
2007-02-18 03:01:18 +03:00
|
|
|
|
error = -ENOSYS;
|
|
|
|
|
} else {
|
|
|
|
|
ret = fuse->op.chmod(path, mode);
|
|
|
|
|
if (ret)
|
|
|
|
|
error = ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-02-11 21:30:55 +03:00
|
|
|
|
if (uid != (uid_t)PUFFS_VNOVAL || gid != (gid_t)PUFFS_VNOVAL) {
|
2007-02-18 03:01:18 +03:00
|
|
|
|
ret = 0;
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if (fuse->op.chown == NULL) {
|
2007-02-18 03:01:18 +03:00
|
|
|
|
error = -ENOSYS;
|
|
|
|
|
} else {
|
|
|
|
|
ret = fuse->op.chown(path, uid, gid);
|
|
|
|
|
if (ret)
|
|
|
|
|
error = ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-02-18 03:01:18 +03:00
|
|
|
|
if (va->va_atime.tv_sec != (time_t)PUFFS_VNOVAL
|
|
|
|
|
|| va->va_mtime.tv_sec != (long)PUFFS_VNOVAL) {
|
|
|
|
|
ret = 0;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
2007-02-18 03:01:18 +03:00
|
|
|
|
if (fuse->op.utimens) {
|
|
|
|
|
struct timespec tv[2];
|
|
|
|
|
|
|
|
|
|
tv[0].tv_sec = va->va_atime.tv_sec;
|
|
|
|
|
tv[0].tv_nsec = va->va_atime.tv_nsec;
|
|
|
|
|
tv[1].tv_sec = va->va_mtime.tv_sec;
|
|
|
|
|
tv[1].tv_nsec = va->va_mtime.tv_nsec;
|
|
|
|
|
|
|
|
|
|
ret = fuse->op.utimens(path, tv);
|
|
|
|
|
} else if (fuse->op.utime) {
|
|
|
|
|
struct utimbuf timbuf;
|
|
|
|
|
|
|
|
|
|
timbuf.actime = va->va_atime.tv_sec;
|
|
|
|
|
timbuf.modtime = va->va_mtime.tv_sec;
|
|
|
|
|
|
|
|
|
|
ret = fuse->op.utime(path, &timbuf);
|
|
|
|
|
} else {
|
|
|
|
|
error = -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
|
error = ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
2007-02-18 03:01:18 +03:00
|
|
|
|
if (va->va_size != (u_quad_t)PUFFS_VNOVAL) {
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
|
|
if (fuse->op.truncate) {
|
|
|
|
|
ret = fuse->op.truncate(path, (off_t)va->va_size);
|
|
|
|
|
} else if (fuse->op.ftruncate) {
|
|
|
|
|
ret = fuse->op.ftruncate(path, (off_t)va->va_size,
|
|
|
|
|
&rn->file_info);
|
|
|
|
|
} else {
|
|
|
|
|
error = -ENOSYS;
|
|
|
|
|
}
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
2007-02-18 03:01:18 +03:00
|
|
|
|
if (ret)
|
|
|
|
|
error = ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -error;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED2 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_open(struct puffs_cc *pcc, void *opc, int flags,
|
|
|
|
|
const struct puffs_cred *cred, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
2007-02-11 15:12:39 +03:00
|
|
|
|
struct refusenode *rn = pn->pn_data;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
struct stat st;
|
|
|
|
|
const char *path = PNPATH(pn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.open == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* examine type - if directory, return 0 rather than open */
|
|
|
|
|
ret = (fuse->op.getattr == NULL) ?
|
|
|
|
|
stat(path, &st) :
|
|
|
|
|
(*fuse->op.getattr)(path, &st);
|
|
|
|
|
if (ret == 0 && (st.st_mode & S_IFMT) == S_IFDIR) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(path, "/") == 0) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-11 15:12:39 +03:00
|
|
|
|
ret = (*fuse->op.open)(path, &rn->file_info);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* read some more from the file */
|
|
|
|
|
/* ARGSUSED5 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_read(struct puffs_cc *pcc, void *opc, uint8_t *buf,
|
|
|
|
|
off_t offset, size_t *resid, const struct puffs_cred *pcr,
|
|
|
|
|
int ioflag)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
2007-02-11 15:12:39 +03:00
|
|
|
|
struct refusenode *rn = pn->pn_data;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PNPATH(pn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.read == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-11 19:02:24 +03:00
|
|
|
|
ret = (*fuse->op.read)(path, (char *)buf, *resid, offset,
|
|
|
|
|
&rn->file_info);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
|
|
|
|
if (ret > 0) {
|
|
|
|
|
*resid -= ret;
|
2007-02-16 03:13:02 +03:00
|
|
|
|
ret = 0;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:13:02 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* write to the file */
|
|
|
|
|
/* ARGSUSED0 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_write(struct puffs_cc *pcc, void *opc, uint8_t *buf,
|
|
|
|
|
off_t offset, size_t *resid, const struct puffs_cred *pcr,
|
|
|
|
|
int ioflag)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
2007-02-11 19:06:52 +03:00
|
|
|
|
struct refusenode *rn = pn->pn_data;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PNPATH(pn);
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.write == NULL) {
|
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:16:39 +03:00
|
|
|
|
if (ioflag & PUFFS_IO_APPEND)
|
|
|
|
|
offset = pn->pn_va.va_size;
|
|
|
|
|
|
2007-02-11 19:06:52 +03:00
|
|
|
|
ret = (*fuse->op.write)(path, (char *)buf, *resid, offset,
|
|
|
|
|
&rn->file_info);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
|
|
|
|
if (ret > 0) {
|
|
|
|
|
*resid -= ret;
|
2007-02-16 03:13:02 +03:00
|
|
|
|
ret = 0;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:13:02 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED3 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_readdir(struct puffs_cc *pcc, void *opc,
|
|
|
|
|
struct dirent *dent, const struct puffs_cred *pcr, off_t *readoff,
|
|
|
|
|
size_t *reslen)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct puffs_node *pn = opc;
|
2007-02-11 19:06:52 +03:00
|
|
|
|
struct refusenode *rn = pn->pn_data;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
const char *path = PNPATH(pn);
|
2007-02-11 14:57:41 +03:00
|
|
|
|
struct fuse_dirh deh;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
2007-02-11 14:57:41 +03:00
|
|
|
|
if (fuse->op.readdir == NULL && fuse->op.getdir == NULL) {
|
2007-02-11 13:31:37 +03:00
|
|
|
|
return ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* XXX: how to handle this??? */
|
|
|
|
|
if (*readoff != 0) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-11 14:57:41 +03:00
|
|
|
|
deh.dent = dent;
|
|
|
|
|
deh.reslen = *reslen;
|
|
|
|
|
deh.readoff = *readoff;
|
|
|
|
|
|
|
|
|
|
if (fuse->op.readdir)
|
2007-02-11 19:02:24 +03:00
|
|
|
|
ret = fuse->op.readdir(path, &deh, puffs_fuse_fill_dir,
|
2007-02-11 19:06:52 +03:00
|
|
|
|
*readoff, &rn->file_info);
|
2007-02-11 14:57:41 +03:00
|
|
|
|
else
|
|
|
|
|
ret = fuse->op.getdir(path, &deh, puffs_fuse_dirfil);
|
|
|
|
|
*reslen = deh.reslen;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
*readoff = 1;
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-16 03:35:06 +03:00
|
|
|
|
return -ret;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-11 13:58:43 +03:00
|
|
|
|
/* ARGSUSED */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_node_reclaim(struct puffs_cc *pcc, void *opc, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_node *pn = opc;
|
|
|
|
|
|
2007-02-11 15:12:39 +03:00
|
|
|
|
nukern(pn);
|
2007-02-11 13:58:43 +03:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
/* ARGSUSED1 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_fs_unmount(struct puffs_cc *pcc, int flags, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.destroy == NULL) {
|
2007-02-11 13:51:53 +03:00
|
|
|
|
return 0;
|
2007-02-11 13:31:37 +03:00
|
|
|
|
}
|
|
|
|
|
(*fuse->op.destroy)(fuse);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED0 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_fs_sync(struct puffs_cc *pcc, int flags,
|
|
|
|
|
const struct puffs_cred *cr, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED2 */
|
|
|
|
|
static int
|
|
|
|
|
puffs_fuse_fs_statvfs(struct puffs_cc *pcc, struct statvfs *svfsb, pid_t pid)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu = puffs_cc_getusermount(pcc);
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
fuse = (struct fuse *)pu->pu_privdata;
|
|
|
|
|
if (fuse->op.statfs == NULL) {
|
|
|
|
|
if ((ret = statvfs(PNPATH(pu->pu_pn_root), svfsb)) == -1) {
|
|
|
|
|
return errno;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
ret = (*fuse->op.statfs)(PNPATH(pu->pu_pn_root), svfsb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* End of puffs_fuse operations */
|
|
|
|
|
|
2007-02-15 13:54:40 +03:00
|
|
|
|
/*
|
|
|
|
|
* XXX: do this otherwise if/when we grow thread support
|
|
|
|
|
*
|
|
|
|
|
* XXX2: does not supply uid, gid or pid currently
|
|
|
|
|
*/
|
|
|
|
|
static struct fuse_context fcon;
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
/* ARGSUSED3 */
|
|
|
|
|
int
|
|
|
|
|
fuse_main_real(int argc, char **argv, const struct fuse_operations *ops,
|
|
|
|
|
size_t size, void *userdata)
|
|
|
|
|
{
|
|
|
|
|
struct puffs_usermount *pu;
|
|
|
|
|
struct puffs_pathobj *po_root;
|
|
|
|
|
struct puffs_ops *pops;
|
|
|
|
|
struct statvfs svfsb;
|
|
|
|
|
struct fuse *fuse;
|
|
|
|
|
char name[64];
|
|
|
|
|
char *slash;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
/* initialise the puffs operations structure */
|
|
|
|
|
PUFFSOP_INIT(pops);
|
|
|
|
|
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, fs, sync);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, fs, statvfs);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, fs, unmount);
|
|
|
|
|
|
2007-02-11 13:51:53 +03:00
|
|
|
|
/*
|
|
|
|
|
* XXX: all of these don't possibly need to be
|
|
|
|
|
* unconditionally set
|
|
|
|
|
*/
|
2007-02-11 13:31:37 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, lookup);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, getattr);
|
2007-02-16 00:57:09 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, setattr);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, readdir);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, readlink);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, mknod);
|
2007-02-16 03:13:02 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, create);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, remove);
|
2007-02-16 00:57:09 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, mkdir);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, rmdir);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, symlink);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, rename);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, link);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, open);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, read);
|
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, write);
|
2007-02-11 13:58:43 +03:00
|
|
|
|
PUFFSOP_SET(pops, puffs_fuse, node, reclaim);
|
2007-02-11 13:31:37 +03:00
|
|
|
|
|
|
|
|
|
NEW(struct fuse, fuse, "fuse_main_real", exit(EXIT_FAILURE));
|
|
|
|
|
|
|
|
|
|
/* copy fuse ops to their own stucture */
|
|
|
|
|
(void) memcpy(&fuse->op, ops, sizeof(fuse->op));
|
|
|
|
|
|
2007-02-15 13:54:40 +03:00
|
|
|
|
fcon.fuse = fuse;
|
|
|
|
|
fcon.private_data = userdata;
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
/* whilst this (assigning the pu_privdata in the puffs
|
|
|
|
|
* usermount struct to be the fuse struct) might seem like
|
|
|
|
|
* we are chasing our tail here, the logic is as follows:
|
|
|
|
|
+ the operation wrapper gets called with the puffs
|
|
|
|
|
calling conventions
|
|
|
|
|
+ we need to fix up args first
|
|
|
|
|
+ then call the fuse user-supplied operation
|
|
|
|
|
+ then we fix up any values on return that we need to
|
|
|
|
|
+ and fix up any nodes, etc
|
2007-02-11 19:02:24 +03:00
|
|
|
|
* so we need to be able to get at the fuse ops from within the
|
|
|
|
|
* puffs_usermount struct
|
|
|
|
|
*/
|
2007-02-11 13:31:37 +03:00
|
|
|
|
if ((slash = strrchr(*argv, '/')) == NULL) {
|
|
|
|
|
slash = *argv;
|
|
|
|
|
} else {
|
|
|
|
|
slash += 1;
|
|
|
|
|
}
|
|
|
|
|
(void) snprintf(name, sizeof(name), "refuse:%s", slash);
|
|
|
|
|
pu = puffs_mount(pops, argv[argc - 1], MNT_NODEV | MNT_NOSUID,
|
|
|
|
|
name, fuse,
|
|
|
|
|
PUFFS_FLAG_BUILDPATH | PUFFS_FLAG_OPDUMP, 0);
|
|
|
|
|
if (pu == NULL) {
|
|
|
|
|
err(EXIT_FAILURE, "puffs_mount");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fuse->pu = pu;
|
|
|
|
|
pu->pu_pn_root = puffs_pn_new(pu, NULL);
|
|
|
|
|
po_root = puffs_getrootpathobj(pu);
|
|
|
|
|
po_root->po_path = strdup("/");
|
|
|
|
|
po_root->po_len = 1;
|
|
|
|
|
|
2007-02-15 13:54:40 +03:00
|
|
|
|
if (fuse->op.init)
|
|
|
|
|
fcon.private_data = fuse->op.init(NULL); /* XXX */
|
|
|
|
|
|
2007-02-11 13:31:37 +03:00
|
|
|
|
statvfs(argv[argc - 1], &svfsb); /* XXX - not really the correct dir */
|
|
|
|
|
if (puffs_start(pu, pu->pu_pn_root, &svfsb) == -1) {
|
|
|
|
|
err(EXIT_FAILURE, "puffs_start");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = puffs_mainloop(fuse->pu, PUFFSLOOP_NODAEMON);
|
|
|
|
|
|
|
|
|
|
(void) free(po_root->po_path);
|
|
|
|
|
FREE(fuse);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ARGSUSED0 */
|
|
|
|
|
int
|
|
|
|
|
fuse_opt_parse(struct fuse_args *args, void *data,
|
|
|
|
|
const struct fuse_opt *opts, fuse_opt_proc_t proc)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-02-15 13:54:40 +03:00
|
|
|
|
|
|
|
|
|
/* XXX: threads */
|
|
|
|
|
struct fuse_context *
|
|
|
|
|
fuse_get_context()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return &fcon;
|
|
|
|
|
}
|
2007-02-18 20:44:57 +03:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fuse_exit(struct fuse *f)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
puffs_exit(f->pu, 1);
|
|
|
|
|
}
|