2007-10-31 19:09:09 +03:00
|
|
|
/* $NetBSD: puffs_priv.h,v 1.31 2007/10/31 16:09:09 pooka Exp $ */
|
2006-12-08 02:15:20 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2006 Antti Kantee. 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.
|
|
|
|
*
|
|
|
|
* 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_PRIVATE_H_
|
|
|
|
#define _PUFFS_PRIVATE_H_
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fs/puffs/puffs_msgif.h>
|
|
|
|
|
|
|
|
#include <puffs.h>
|
2006-12-29 18:28:11 +03:00
|
|
|
#include <ucontext.h>
|
|
|
|
|
2007-10-29 18:52:44 +03:00
|
|
|
#ifdef PUFFS_WITH_THREADS
|
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
extern pthread_mutex_t pu_lock;
|
2007-10-31 19:09:09 +03:00
|
|
|
#define PU_LOCK() pthread_mutex_lock(&pu_lock)
|
|
|
|
#define PU_UNLOCK() pthread_mutex_unlock(&pu_lock)
|
2007-10-29 18:52:44 +03:00
|
|
|
#else
|
|
|
|
#define PU_LOCK()
|
|
|
|
#define PU_UNLOCK()
|
|
|
|
#endif
|
|
|
|
|
2007-01-15 03:39:02 +03:00
|
|
|
#define PU_CMAP(pu, c) (pu->pu_cmap ? pu->pu_cmap(c) : (struct puffs_node *)c)
|
|
|
|
|
2007-05-12 01:27:13 +04:00
|
|
|
struct puffs_framectrl {
|
2007-05-15 17:44:46 +04:00
|
|
|
puffs_framev_readframe_fn rfb;
|
|
|
|
puffs_framev_writeframe_fn wfb;
|
2007-05-20 20:24:37 +04:00
|
|
|
puffs_framev_cmpframe_fn cmpfb;
|
2007-09-01 20:42:42 +04:00
|
|
|
puffs_framev_gotframe_fn gotfb;
|
2007-05-15 17:44:46 +04:00
|
|
|
puffs_framev_fdnotify_fn fdnotfn;
|
2007-05-12 01:27:13 +04:00
|
|
|
|
|
|
|
struct kevent *evs;
|
|
|
|
size_t nfds;
|
|
|
|
|
2007-05-15 17:44:46 +04:00
|
|
|
struct timespec timeout;
|
|
|
|
struct timespec *timp;
|
|
|
|
|
2007-05-12 01:27:13 +04:00
|
|
|
LIST_HEAD(, puffs_fctrl_io) fb_ios;
|
2007-05-15 17:44:46 +04:00
|
|
|
LIST_HEAD(, puffs_fctrl_io) fb_ios_rmlist;
|
2007-05-12 01:27:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct puffs_fctrl_io {
|
|
|
|
int io_fd;
|
2007-05-15 17:44:46 +04:00
|
|
|
int stat;
|
2007-05-12 01:27:13 +04:00
|
|
|
|
2007-07-20 17:14:55 +04:00
|
|
|
int rwait;
|
|
|
|
int wwait;
|
|
|
|
|
2007-05-12 01:27:13 +04:00
|
|
|
struct puffs_framebuf *cur_in;
|
|
|
|
|
|
|
|
TAILQ_HEAD(, puffs_framebuf) snd_qing; /* queueing to be sent */
|
|
|
|
TAILQ_HEAD(, puffs_framebuf) res_qing; /* q'ing for rescue */
|
2007-07-20 17:14:55 +04:00
|
|
|
LIST_HEAD(, puffs_fbevent) ev_qing; /* q'ing for events */
|
2007-05-12 01:27:13 +04:00
|
|
|
|
|
|
|
LIST_ENTRY(puffs_fctrl_io) fio_entries;
|
|
|
|
};
|
2007-05-15 17:44:46 +04:00
|
|
|
#define FIO_WR 0x01
|
|
|
|
#define FIO_WRGONE 0x02
|
|
|
|
#define FIO_RDGONE 0x04
|
|
|
|
#define FIO_DEAD 0x08
|
2007-07-08 01:13:41 +04:00
|
|
|
#define FIO_ENABLE_R 0x10
|
|
|
|
#define FIO_ENABLE_W 0x20
|
2007-05-15 17:44:46 +04:00
|
|
|
|
2007-07-20 17:14:55 +04:00
|
|
|
#define FIO_EN_WRITE(fio) \
|
|
|
|
(!(fio->stat & FIO_WR) \
|
|
|
|
&& ((!TAILQ_EMPTY(&fio->snd_qing) \
|
|
|
|
&& (fio->stat & FIO_ENABLE_W)) \
|
|
|
|
|| fio->wwait))
|
2007-07-08 01:13:41 +04:00
|
|
|
|
|
|
|
#define FIO_RM_WRITE(fio) \
|
|
|
|
((fio->stat & FIO_WR) \
|
2007-07-20 17:14:55 +04:00
|
|
|
&& (((TAILQ_EMPTY(&fio->snd_qing) \
|
|
|
|
|| (fio->stat & FIO_ENABLE_W) == 0)) \
|
|
|
|
&& (fio->wwait == 0)))
|
2007-05-05 19:48:18 +04:00
|
|
|
|
2007-10-26 21:35:01 +04:00
|
|
|
struct puffs_executor {
|
|
|
|
struct puffs_req *pex_preq;
|
|
|
|
TAILQ_ENTRY(puffs_executor) pex_entries;
|
|
|
|
};
|
|
|
|
|
2007-04-12 19:09:00 +04:00
|
|
|
/*
|
|
|
|
* usermount: describes one file system instance
|
|
|
|
*/
|
|
|
|
struct puffs_usermount {
|
|
|
|
struct puffs_ops pu_ops;
|
2007-07-19 16:52:28 +04:00
|
|
|
|
|
|
|
int pu_fd;
|
|
|
|
size_t pu_maxreqlen;
|
2007-04-12 19:09:00 +04:00
|
|
|
|
|
|
|
uint32_t pu_flags;
|
2007-10-26 17:51:14 +04:00
|
|
|
int pu_cc_stackshift;
|
2007-04-12 19:09:00 +04:00
|
|
|
|
2007-05-12 01:27:13 +04:00
|
|
|
int pu_kq;
|
2007-04-12 19:09:00 +04:00
|
|
|
int pu_state;
|
2007-05-12 01:27:13 +04:00
|
|
|
#define PU_STATEMASK 0xff
|
|
|
|
#define PU_INLOOP 0x100
|
2007-05-15 17:44:46 +04:00
|
|
|
#define PU_ASYNCFD 0x200
|
2007-10-25 14:59:45 +04:00
|
|
|
#define PU_HASKQ 0x400
|
2007-05-12 01:27:13 +04:00
|
|
|
#define PU_SETSTATE(pu, s) (pu->pu_state = (s) | (pu->pu_state & ~PU_STATEMASK))
|
2007-04-12 19:09:00 +04:00
|
|
|
|
|
|
|
struct puffs_node *pu_pn_root;
|
|
|
|
|
|
|
|
LIST_HEAD(, puffs_node) pu_pnodelst;
|
2007-05-15 17:44:46 +04:00
|
|
|
LIST_HEAD(, puffs_cc) pu_ccnukelst;
|
2007-10-21 23:25:58 +04:00
|
|
|
TAILQ_HEAD(, puffs_cc) pu_sched;
|
2007-04-12 19:09:00 +04:00
|
|
|
|
2007-10-26 21:35:01 +04:00
|
|
|
TAILQ_HEAD(, puffs_executor) pu_exq;
|
|
|
|
|
2007-04-12 19:09:00 +04:00
|
|
|
struct puffs_node *(*pu_cmap)(void *);
|
|
|
|
|
|
|
|
pu_pathbuild_fn pu_pathbuild;
|
|
|
|
pu_pathtransform_fn pu_pathtransform;
|
|
|
|
pu_pathcmp_fn pu_pathcmp;
|
|
|
|
pu_pathfree_fn pu_pathfree;
|
|
|
|
pu_namemod_fn pu_namemod;
|
|
|
|
|
2007-09-28 01:14:49 +04:00
|
|
|
pu_errnotify_fn pu_errnotify;
|
|
|
|
|
2007-10-28 21:40:30 +03:00
|
|
|
pu_prepost_fn pu_oppre;
|
|
|
|
pu_prepost_fn pu_oppost;
|
|
|
|
|
2007-05-12 01:27:13 +04:00
|
|
|
struct puffs_framectrl pu_framectrl;
|
2007-05-05 19:48:18 +04:00
|
|
|
|
2007-05-15 17:44:46 +04:00
|
|
|
puffs_ml_loop_fn pu_ml_lfn;
|
|
|
|
struct timespec pu_ml_timeout;
|
|
|
|
struct timespec *pu_ml_timep;
|
|
|
|
|
2007-07-19 16:52:28 +04:00
|
|
|
struct puffs_kargs *pu_kargp;
|
|
|
|
|
2007-05-15 17:44:46 +04:00
|
|
|
void *pu_privdata;
|
2007-04-12 19:09:00 +04:00
|
|
|
};
|
|
|
|
|
2006-12-29 18:28:11 +03:00
|
|
|
/* call context */
|
|
|
|
|
|
|
|
struct puffs_cc {
|
|
|
|
struct puffs_usermount *pcc_pu;
|
|
|
|
struct puffs_req *pcc_preq;
|
|
|
|
|
|
|
|
ucontext_t pcc_uc; /* "continue" */
|
|
|
|
ucontext_t pcc_uc_ret; /* "yield" */
|
|
|
|
void *pcc_stack;
|
|
|
|
|
2007-10-21 18:28:05 +04:00
|
|
|
pid_t pcc_pid;
|
|
|
|
lwpid_t pcc_lid;
|
|
|
|
|
2006-12-29 18:28:11 +03:00
|
|
|
int pcc_flags;
|
2007-05-15 17:44:46 +04:00
|
|
|
struct puffs_putreq *pcc_ppr;
|
2006-12-29 18:28:11 +03:00
|
|
|
|
|
|
|
TAILQ_ENTRY(puffs_cc) entries;
|
2007-05-15 17:44:46 +04:00
|
|
|
LIST_ENTRY(puffs_cc) nlst_entries;
|
2006-12-29 18:28:11 +03:00
|
|
|
};
|
2007-05-10 16:26:28 +04:00
|
|
|
#define PCC_FAKECC 0x01
|
2006-12-29 18:28:11 +03:00
|
|
|
#define PCC_REALCC 0x02
|
2007-05-15 17:44:46 +04:00
|
|
|
#define PCC_DONE 0x04
|
|
|
|
#define PCC_BORROWED 0x08
|
2007-10-21 18:28:05 +04:00
|
|
|
#define PCC_HASCALLER 0x10
|
2007-10-26 21:35:01 +04:00
|
|
|
#define PCC_THREADED 0x20
|
2006-12-29 18:28:11 +03:00
|
|
|
|
|
|
|
#define pcc_callstat(a) (a->pcc_flags & PCC_CALL_MASK)
|
|
|
|
#define pcc_callset(a, b) (a->pcc_flags = (a->pcc_flags & ~PCC_CALL_MASK) | b)
|
|
|
|
|
2007-10-26 21:35:01 +04:00
|
|
|
#define pcc_init_unreal(ap, type) \
|
2006-12-29 18:28:11 +03:00
|
|
|
do { \
|
|
|
|
memset(ap, 0, sizeof(*ap)); \
|
2007-10-26 21:35:01 +04:00
|
|
|
(ap)->pcc_flags = type; \
|
2006-12-29 18:28:11 +03:00
|
|
|
} while (/*CONSTCOND*/0)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reqs
|
|
|
|
*/
|
2006-12-08 02:15:20 +03:00
|
|
|
|
|
|
|
struct puffs_getreq {
|
|
|
|
struct puffs_usermount *pgr_pu;
|
|
|
|
|
2007-10-11 23:41:13 +04:00
|
|
|
void *pgr_buf;
|
2006-12-08 02:15:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct puffs_putreq {
|
|
|
|
struct puffs_usermount *ppr_pu;
|
|
|
|
|
2006-12-29 18:28:11 +03:00
|
|
|
TAILQ_HEAD(, puffs_cc) ppr_pccq;
|
2006-12-08 02:15:20 +03:00
|
|
|
};
|
|
|
|
|
2007-07-01 22:39:39 +04:00
|
|
|
struct puffs_newinfo {
|
|
|
|
void **pni_cookie;
|
|
|
|
enum vtype *pni_vtype;
|
|
|
|
voff_t *pni_size;
|
|
|
|
dev_t *pni_rdev;
|
|
|
|
};
|
|
|
|
|
2007-07-01 19:30:15 +04:00
|
|
|
#define PUFFS_MAKEKCRED(to, from) \
|
|
|
|
/*LINTED: tnilxnaht, the cast is ok */ \
|
2007-07-01 21:42:19 +04:00
|
|
|
const struct puffs_kcred *to = (const void *)from
|
2007-07-01 19:30:15 +04:00
|
|
|
#define PUFFS_MAKECRED(to, from) \
|
|
|
|
/*LINTED: tnilxnaht, the cast is ok */ \
|
2007-07-01 21:42:19 +04:00
|
|
|
const struct puffs_cred *to = (const void *)from
|
2007-07-01 19:30:15 +04:00
|
|
|
#define PUFFS_KCREDTOCRED(to, from) \
|
|
|
|
/*LINTED: tnilxnaht, the cast is ok */ \
|
2007-07-01 21:42:19 +04:00
|
|
|
to = (void *)from
|
2007-05-12 01:27:13 +04:00
|
|
|
|
2007-07-01 21:22:13 +04:00
|
|
|
#define PUFFS_MAKEKCID(to, from) \
|
|
|
|
/*LINTED: tnilxnaht, the cast is ok */ \
|
2007-07-01 21:42:19 +04:00
|
|
|
const struct puffs_kcid *to = (const void *)from
|
2007-07-01 21:22:13 +04:00
|
|
|
#define PUFFS_MAKECID(to, from) \
|
|
|
|
/*LINTED: tnilxnaht, the cast is ok */ \
|
2007-07-01 21:42:19 +04:00
|
|
|
const struct puffs_cid *to = (const void *)from
|
2007-07-01 21:22:13 +04:00
|
|
|
#define PUFFS_KCIDTOCID(to, from) \
|
|
|
|
/*LINTED: tnilxnaht, the cast is ok */ \
|
2007-07-01 21:42:19 +04:00
|
|
|
to = (void *)from
|
2007-07-01 21:22:13 +04:00
|
|
|
|
2006-12-29 18:28:11 +03:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2007-01-06 21:22:09 +03:00
|
|
|
void puffs_calldispatcher(struct puffs_cc *);
|
|
|
|
|
2007-05-15 17:44:46 +04:00
|
|
|
void puffs_framev_input(struct puffs_usermount *, struct puffs_framectrl *,
|
|
|
|
struct puffs_fctrl_io *, struct puffs_putreq *);
|
|
|
|
int puffs_framev_output(struct puffs_usermount *, struct puffs_framectrl*,
|
2007-07-08 01:13:41 +04:00
|
|
|
struct puffs_fctrl_io *, struct puffs_putreq *);
|
2007-05-15 17:44:46 +04:00
|
|
|
void puffs_framev_exit(struct puffs_usermount *);
|
|
|
|
void puffs_framev_readclose(struct puffs_usermount *,
|
|
|
|
struct puffs_fctrl_io *, int);
|
|
|
|
void puffs_framev_writeclose(struct puffs_usermount *,
|
|
|
|
struct puffs_fctrl_io *, int);
|
2007-07-20 17:14:55 +04:00
|
|
|
void puffs_framev_notify(struct puffs_fctrl_io *, int);
|
2007-05-15 17:44:46 +04:00
|
|
|
|
2007-10-26 21:35:01 +04:00
|
|
|
int puffs_cc_create(struct puffs_usermount *, struct puffs_req *,
|
|
|
|
int, struct puffs_cc **);
|
|
|
|
void puffs_cc_destroy(struct puffs_cc *);
|
|
|
|
void puffs_cc_setcaller(struct puffs_cc *, pid_t, lwpid_t);
|
|
|
|
void puffs_goto(struct puffs_cc *);
|
2007-05-12 01:27:13 +04:00
|
|
|
|
2006-12-29 18:28:11 +03:00
|
|
|
__END_DECLS
|
|
|
|
|
2006-12-08 02:15:20 +03:00
|
|
|
#endif /* _PUFFS_PRIVATE_H_ */
|