2007-03-14 15:13:58 +03:00
|
|
|
/* $NetBSD: puffs_sys.h,v 1.26 2007/03/14 12:13:58 pooka Exp $ */
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2005, 2006 Antti Kantee. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Development of this software was supported by the
|
|
|
|
* Google Summer of Code program and the Ulla Tuominen Foundation.
|
|
|
|
* The Google SoC project was mentored by Bill Studenmund.
|
|
|
|
*
|
|
|
|
* 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 company nor the name of the author may 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 OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PUFFS_SYS_H_
|
|
|
|
#define _PUFFS_SYS_H_
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/kauth.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/queue.h>
|
2006-11-06 14:44:54 +03:00
|
|
|
#include <sys/pool.h>
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
#include <fs/puffs/puffs_msgif.h>
|
|
|
|
|
2006-11-08 01:10:18 +03:00
|
|
|
#include <miscfs/genfs/genfs_node.h>
|
|
|
|
|
2006-10-27 02:52:47 +04:00
|
|
|
extern int (**puffs_vnodeop_p)(void *);
|
|
|
|
extern int (**puffs_specop_p)(void *);
|
2006-10-27 16:25:16 +04:00
|
|
|
extern int (**puffs_fifoop_p)(void *);
|
2006-10-27 02:52:47 +04:00
|
|
|
|
|
|
|
extern const struct vnodeopv_desc puffs_vnodeop_opv_desc;
|
|
|
|
extern const struct vnodeopv_desc puffs_specop_opv_desc;
|
2006-10-27 16:25:16 +04:00
|
|
|
extern const struct vnodeopv_desc puffs_fifoop_opv_desc;
|
2006-12-01 15:37:41 +03:00
|
|
|
extern const struct vnodeopv_desc puffs_msgop_opv_desc;
|
2006-10-27 02:52:47 +04:00
|
|
|
|
2006-11-06 14:44:54 +03:00
|
|
|
extern struct pool puffs_pnpool;
|
|
|
|
|
2007-01-02 18:51:21 +03:00
|
|
|
#define PUFFS_NAMEPREFIX "puffs:"
|
|
|
|
|
2006-10-23 02:43:23 +04:00
|
|
|
/*
|
|
|
|
* While a request is going to userspace, park the caller within the
|
|
|
|
* kernel. This is the kernel counterpart of "struct puffs_req".
|
|
|
|
*/
|
|
|
|
struct puffs_park {
|
2006-12-06 02:03:28 +03:00
|
|
|
struct puffs_req *park_preq; /* req followed by buf */
|
2007-02-28 02:43:23 +03:00
|
|
|
uint64_t park_id; /* duplicate of preq_id */
|
2006-10-23 02:43:23 +04:00
|
|
|
|
2007-02-28 02:43:23 +03:00
|
|
|
size_t park_copylen; /* userspace copylength */
|
2007-03-14 15:13:58 +03:00
|
|
|
size_t park_maxlen; /* max size, ADJUSTABLE */
|
|
|
|
struct buf *park_bp; /* bp, ASYNCBIOREAD */
|
2007-02-28 02:43:23 +03:00
|
|
|
|
|
|
|
int park_flags;
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
TAILQ_ENTRY(puffs_park) park_entries;
|
|
|
|
};
|
2007-03-14 15:13:58 +03:00
|
|
|
|
2007-02-28 02:43:23 +03:00
|
|
|
#define PUFFS_PARKFLAG_PROCESSING 0x01
|
|
|
|
#define PUFFS_PARKFLAG_RQUEUE 0x02
|
|
|
|
#define PUFFS_PARKFLAG_RECVREPLY 0x04
|
|
|
|
#define PUFFS_PARKFLAG_DONE 0x08
|
|
|
|
#define PUFFS_PARKFLAG_WAITERGONE 0x10
|
|
|
|
#define PUFFS_PARKFLAG_ADJUSTABLE 0x20
|
2007-03-14 15:13:58 +03:00
|
|
|
#define PUFFS_PARKFLAG_ASYNCBIOREAD 0x40
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
#define PUFFS_SIZEOPREQ_UIO_IN 1
|
|
|
|
#define PUFFS_SIZEOPREQ_UIO_OUT 2
|
|
|
|
#define PUFFS_SIZEOPREQ_BUF_IN 3
|
|
|
|
#define PUFFS_SIZEOPREQ_BUF_OUT 4
|
|
|
|
|
|
|
|
#define PUFFS_SIZEOP_UIO(a) \
|
|
|
|
(((a)==PUFFS_SIZEOPREQ_UIO_IN)||(a)==PUFFS_SIZEOPREQ_UIO_OUT)
|
|
|
|
#define PUFFS_SIZEOP_BUF(a) \
|
|
|
|
(((a)==PUFFS_SIZEOPREQ_BUF_IN)||(a)==PUFFS_SIZEOPREQ_BUF_OUT)
|
|
|
|
|
|
|
|
/* XXX: alignment-optimization */
|
|
|
|
struct puffs_sizepark {
|
|
|
|
uint64_t pkso_reqid;
|
|
|
|
uint8_t pkso_reqtype;
|
|
|
|
|
|
|
|
struct uio *pkso_uio;
|
|
|
|
void *pkso_copybuf;
|
|
|
|
size_t pkso_bufsize;
|
|
|
|
|
|
|
|
TAILQ_ENTRY(puffs_sizepark) pkso_entries;
|
|
|
|
};
|
|
|
|
|
2006-12-06 02:03:28 +03:00
|
|
|
#ifdef DEBUG
|
2007-02-15 15:14:34 +03:00
|
|
|
#ifndef PUFFSDEBUG
|
|
|
|
#define PUFFSDEBUG
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PUFFSDEBUG
|
2006-12-06 02:03:28 +03:00
|
|
|
extern int puffsdebug; /* puffs_subr.c */
|
|
|
|
#define DPRINTF(x) if (puffsdebug > 0) printf x
|
|
|
|
#define DPRINTF_VERBOSE(x) if (puffsdebug > 1) printf x
|
|
|
|
#else
|
2006-10-23 02:43:23 +04:00
|
|
|
#define DPRINTF(x)
|
2006-12-01 15:37:41 +03:00
|
|
|
#define DPRINTF_VERBOSE(x)
|
2006-12-06 02:03:28 +03:00
|
|
|
#endif
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
#define MPTOPUFFSMP(mp) ((struct puffs_mount *)((mp)->mnt_data))
|
|
|
|
#define PMPTOMP(pmp) (pmp->pmp_mp)
|
|
|
|
#define VPTOPP(vp) ((struct puffs_node *)(vp)->v_data)
|
|
|
|
#define VPTOPNC(vp) (((struct puffs_node *)(vp)->v_data)->pn_cookie)
|
|
|
|
#define VPTOPUFFSMP(vp) ((struct puffs_mount*)((struct puffs_node*)vp->v_data))
|
|
|
|
#define FPTOPMP(fp) (((struct puffs_instance *)fp->f_data)->pi_pmp)
|
|
|
|
#define FPTOPI(fp) ((struct puffs_instance *)fp->f_data)
|
|
|
|
|
2006-12-01 15:37:41 +03:00
|
|
|
#define EXISTSOP(pmp, op) \
|
2006-12-01 15:48:31 +03:00
|
|
|
(((pmp)->pmp_flags&PUFFS_KFLAG_ALLOPS) || ((pmp)->pmp_vnopmask[PUFFS_VN_##op]))
|
2006-12-01 15:37:41 +03:00
|
|
|
|
2006-12-30 04:29:03 +03:00
|
|
|
#define PUFFS_DOCACHE(pmp) (((pmp)->pmp_flags & PUFFS_KFLAG_NOCACHE) == 0)
|
|
|
|
|
2006-10-23 02:43:23 +04:00
|
|
|
TAILQ_HEAD(puffs_wq, puffs_park);
|
2007-01-16 02:29:08 +03:00
|
|
|
LIST_HEAD(puffs_node_hashlist, puffs_node);
|
2006-10-23 02:43:23 +04:00
|
|
|
struct puffs_mount {
|
|
|
|
struct simplelock pmp_lock;
|
|
|
|
|
|
|
|
struct puffs_args pmp_args;
|
2006-12-01 15:37:41 +03:00
|
|
|
#define pmp_flags pmp_args.pa_flags
|
|
|
|
#define pmp_vnopmask pmp_args.pa_vnopmask
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
struct puffs_wq pmp_req_touser;
|
|
|
|
size_t pmp_req_touser_waiters;
|
|
|
|
size_t pmp_req_maxsize;
|
|
|
|
|
|
|
|
struct puffs_wq pmp_req_replywait;
|
|
|
|
TAILQ_HEAD(, puffs_sizepark) pmp_req_sizepark;
|
|
|
|
|
2007-01-16 02:29:08 +03:00
|
|
|
struct puffs_node_hashlist *pmp_pnodehash;
|
|
|
|
size_t pmp_npnodehash;
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
struct mount *pmp_mp;
|
|
|
|
struct vnode *pmp_root;
|
|
|
|
void *pmp_rootcookie;
|
|
|
|
struct selinfo *pmp_sel; /* in puffs_instance */
|
|
|
|
|
2007-01-16 02:29:08 +03:00
|
|
|
uint64_t pmp_nextreq;
|
2006-10-23 02:43:23 +04:00
|
|
|
uint8_t pmp_status;
|
2006-12-11 01:33:31 +03:00
|
|
|
uint8_t pmp_unmounting;
|
2007-01-27 01:59:49 +03:00
|
|
|
uint8_t pmp_suspend;
|
2006-10-23 02:43:23 +04:00
|
|
|
};
|
2006-11-17 20:48:02 +03:00
|
|
|
|
2006-10-23 02:43:23 +04:00
|
|
|
#define PUFFSTAT_BEFOREINIT 0
|
|
|
|
#define PUFFSTAT_MOUNTING 1
|
|
|
|
#define PUFFSTAT_RUNNING 2
|
2006-12-11 01:33:31 +03:00
|
|
|
#define PUFFSTAT_DYING 3 /* Do you want your possessions identified? */
|
2006-10-23 02:43:23 +04:00
|
|
|
|
2007-01-27 01:59:49 +03:00
|
|
|
#define PNODE_NOREFS 0x01 /* vnode inactive, no backend reference */
|
|
|
|
#define PNODE_SUSPEND 0x02 /* issue all operations as FAF */
|
2007-01-21 19:29:31 +03:00
|
|
|
#if 0
|
|
|
|
#define PNODE_LOCKED 0x0
|
|
|
|
#define PNODE_WANTED 0x0
|
|
|
|
#endif
|
2006-10-23 02:43:23 +04:00
|
|
|
struct puffs_node {
|
2006-11-08 01:10:18 +03:00
|
|
|
struct genfs_node pn_gnode; /* genfs glue */
|
|
|
|
|
2006-10-23 02:43:23 +04:00
|
|
|
void *pn_cookie; /* userspace pnode cookie */
|
|
|
|
struct vnode *pn_vp; /* backpointer to vnode */
|
|
|
|
uint32_t pn_stat; /* node status */
|
|
|
|
|
2007-01-16 02:29:08 +03:00
|
|
|
LIST_ENTRY(puffs_node) pn_hashent;
|
2006-10-23 02:43:23 +04:00
|
|
|
};
|
|
|
|
|
2006-11-09 16:09:34 +03:00
|
|
|
int puffs_start2(struct puffs_mount *, struct puffs_startreq *);
|
2006-10-23 02:43:23 +04:00
|
|
|
|
|
|
|
int puffs_vfstouser(struct puffs_mount *, int, void *, size_t);
|
2007-01-27 01:59:49 +03:00
|
|
|
void puffs_suspendtouser(struct puffs_mount *, int);
|
2006-10-23 02:43:23 +04:00
|
|
|
int puffs_vntouser(struct puffs_mount *, int, void *, size_t, void *,
|
|
|
|
struct vnode *, struct vnode *);
|
2006-11-08 01:10:18 +03:00
|
|
|
void puffs_vntouser_faf(struct puffs_mount *, int, void *, size_t, void *);
|
2007-03-14 15:13:58 +03:00
|
|
|
void puffs_vntouser_bioread_async(struct puffs_mount *, void *,
|
|
|
|
size_t, off_t, struct buf *,
|
|
|
|
struct vnode *, struct vnode *);
|
2006-10-23 02:43:23 +04:00
|
|
|
int puffs_vntouser_req(struct puffs_mount *, int, void *, size_t,
|
2006-11-08 01:10:18 +03:00
|
|
|
void *, uint64_t, struct vnode *, struct vnode *);
|
2006-10-23 02:43:23 +04:00
|
|
|
int puffs_vntouser_adjbuf(struct puffs_mount *, int, void **, size_t *,
|
|
|
|
size_t, void *, struct vnode *, struct vnode *);
|
|
|
|
|
2006-11-08 01:10:18 +03:00
|
|
|
int puffs_getvnode(struct mount *, void *, enum vtype, voff_t, dev_t,
|
2006-10-27 02:52:47 +04:00
|
|
|
struct vnode **);
|
2006-10-23 02:43:23 +04:00
|
|
|
int puffs_newnode(struct mount *, struct vnode *, struct vnode **,
|
2006-10-27 02:52:47 +04:00
|
|
|
void *, struct componentname *, enum vtype, dev_t);
|
2006-10-23 02:43:23 +04:00
|
|
|
void puffs_putvnode(struct vnode *);
|
2007-01-09 21:14:31 +03:00
|
|
|
struct vnode *puffs_pnode2vnode(struct puffs_mount *, void *, int);
|
2006-12-29 18:38:37 +03:00
|
|
|
void puffs_makecn(struct puffs_kcn *, const struct componentname *);
|
2006-10-23 02:43:23 +04:00
|
|
|
void puffs_credcvt(struct puffs_cred *, kauth_cred_t);
|
|
|
|
pid_t puffs_lwp2pid(struct lwp *);
|
|
|
|
|
2006-11-08 01:10:18 +03:00
|
|
|
void puffs_updatenode(struct vnode *, int);
|
|
|
|
#define PUFFS_UPDATEATIME 0x01
|
|
|
|
#define PUFFS_UPDATECTIME 0x02
|
|
|
|
#define PUFFS_UPDATEMTIME 0x04
|
|
|
|
#define PUFFS_UPDATESIZE 0x08
|
2006-11-18 11:18:24 +03:00
|
|
|
void puffs_updatevpsize(struct vnode *);
|
2006-11-08 01:10:18 +03:00
|
|
|
|
2006-10-23 02:43:23 +04:00
|
|
|
int puffs_setpmp(pid_t, int, struct puffs_mount *);
|
|
|
|
void puffs_nukebypmp(struct puffs_mount *);
|
|
|
|
|
2007-02-28 02:43:23 +03:00
|
|
|
uint64_t puffs_getreqid(struct puffs_mount *);
|
|
|
|
void puffs_userdead(struct puffs_mount *);
|
|
|
|
struct puffs_park * puffs_reqtofaf(struct puffs_park *);
|
2006-10-23 02:43:23 +04:00
|
|
|
|
2006-12-06 02:41:24 +03:00
|
|
|
/* get/put called by ioctl handler */
|
|
|
|
int puffs_getop(struct puffs_mount *, struct puffs_reqh_get *, int);
|
|
|
|
int puffs_putop(struct puffs_mount *, struct puffs_reqh_put *);
|
|
|
|
|
2006-10-23 02:43:23 +04:00
|
|
|
extern int (**puffs_vnodeop_p)(void *);
|
|
|
|
|
|
|
|
MALLOC_DECLARE(M_PUFFS);
|
|
|
|
|
|
|
|
#endif /* _PUFFS_SYS_H_ */
|