puffs.h revision 1.18 1 1.18 pooka /* $NetBSD: puffs.h,v 1.18 2007/01/02 15:53:05 pooka Exp $ */
2 1.1 pooka
3 1.1 pooka /*
4 1.1 pooka * Copyright (c) 2005, 2006 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 * Google Summer of Code program and the Ulla Tuominen Foundation.
8 1.1 pooka * The Google SoC project was mentored by Bill Studenmund.
9 1.1 pooka *
10 1.1 pooka * Redistribution and use in source and binary forms, with or without
11 1.1 pooka * modification, are permitted provided that the following conditions
12 1.1 pooka * are met:
13 1.1 pooka * 1. Redistributions of source code must retain the above copyright
14 1.1 pooka * notice, this list of conditions and the following disclaimer.
15 1.1 pooka * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 pooka * notice, this list of conditions and the following disclaimer in the
17 1.1 pooka * documentation and/or other materials provided with the distribution.
18 1.1 pooka * 3. The name of the company nor the name of the author may be used to
19 1.1 pooka * endorse or promote products derived from this software without specific
20 1.1 pooka * prior written permission.
21 1.1 pooka *
22 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
23 1.1 pooka * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 1.1 pooka * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 1.1 pooka * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
26 1.1 pooka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 pooka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 1.1 pooka * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 pooka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 pooka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 pooka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 pooka * SUCH DAMAGE.
33 1.1 pooka */
34 1.1 pooka
35 1.14 pooka #ifndef _PUFFS_H_
36 1.14 pooka #define _PUFFS_H_
37 1.1 pooka
38 1.1 pooka #include <sys/param.h>
39 1.1 pooka #include <sys/mount.h>
40 1.1 pooka #include <sys/statvfs.h>
41 1.1 pooka #include <sys/vnode.h>
42 1.1 pooka
43 1.1 pooka #include <fs/puffs/puffs_msgif.h>
44 1.1 pooka
45 1.17 pooka #include <string.h>
46 1.17 pooka
47 1.17 pooka /* forwards */
48 1.17 pooka struct puffs_cc;
49 1.17 pooka
50 1.17 pooka struct puffs_getreq;
51 1.17 pooka struct puffs_putreq;
52 1.17 pooka
53 1.17 pooka /* XXX: might disappear from here */
54 1.17 pooka struct puffs_node {
55 1.17 pooka off_t pn_size;
56 1.17 pooka int pn_flag;
57 1.17 pooka struct vattr pn_va;
58 1.17 pooka
59 1.17 pooka void *pn_data; /* private data */
60 1.17 pooka
61 1.17 pooka char *pn_path; /* PUFFS_FLAG_BUILDPATH */
62 1.17 pooka size_t pn_plen;
63 1.17 pooka
64 1.17 pooka struct puffs_usermount *pn_mnt;
65 1.17 pooka
66 1.17 pooka LIST_ENTRY(puffs_node) pn_entries;
67 1.17 pooka };
68 1.17 pooka
69 1.17 pooka
70 1.17 pooka struct puffs_usermount;
71 1.17 pooka
72 1.1 pooka /*
73 1.1 pooka * megaXXX: these are values from inside _KERNEL
74 1.1 pooka * need to work on the translation for ALL the necessary values.
75 1.1 pooka */
76 1.1 pooka #define PUFFS_VNOVAL (-1)
77 1.1 pooka #define PUFFS_ISDOTDOT 0x2000
78 1.1 pooka #define PUFFS_IO_APPEND 0x20
79 1.1 pooka
80 1.1 pooka /*
81 1.17 pooka * Magic constants
82 1.1 pooka */
83 1.17 pooka #define PUFFS_CC_STACKSIZE_DEFAULT (16*1024)
84 1.1 pooka
85 1.17 pooka struct puffs_cn {
86 1.17 pooka struct puffs_kcn *pcn_pkcnp; /* kernel input */
87 1.1 pooka
88 1.17 pooka /* XXX: this will be a more complex object some day */
89 1.17 pooka char *pcn_fullpath; /* if PUFFS_FLAG_BUILDPATH */
90 1.17 pooka size_t pcn_fullplen;
91 1.1 pooka };
92 1.17 pooka #define pcn_nameiop pcn_pkcnp->pkcn_nameiop
93 1.17 pooka #define pcn_flags pcn_pkcnp->pkcn_flags
94 1.17 pooka #define pcn_pid pcn_pkcnp->pkcn_pid
95 1.17 pooka #define pcn_cred pcn_pkcnp->pkcn_cred
96 1.17 pooka #define pcn_name pcn_pkcnp->pkcn_name
97 1.17 pooka #define pcn_namelen pcn_pkcnp->pkcn_namelen
98 1.1 pooka
99 1.1 pooka /* callbacks for operations */
100 1.14 pooka struct puffs_ops {
101 1.17 pooka /*
102 1.17 pooka * XXX: mount does not currently allow for sleeping and therefore
103 1.17 pooka * cannot call any of the other backends with need cc context.
104 1.17 pooka * I hope to change this in the future after some restructuring.
105 1.17 pooka */
106 1.17 pooka int (*puffs_fs_mount)(struct puffs_usermount *, void **,
107 1.17 pooka struct statvfs *);
108 1.17 pooka
109 1.17 pooka int (*puffs_fs_unmount)(struct puffs_cc *, int, pid_t);
110 1.17 pooka int (*puffs_fs_statvfs)(struct puffs_cc *,
111 1.1 pooka struct statvfs *, pid_t);
112 1.17 pooka int (*puffs_fs_sync)(struct puffs_cc *, int,
113 1.1 pooka const struct puffs_cred *, pid_t);
114 1.1 pooka
115 1.17 pooka int (*puffs_node_lookup)(struct puffs_cc *,
116 1.4 pooka void *, void **, enum vtype *, voff_t *, dev_t *,
117 1.3 pooka const struct puffs_cn *);
118 1.17 pooka int (*puffs_node_create)(struct puffs_cc *,
119 1.1 pooka void *, void **, const struct puffs_cn *, const struct vattr *);
120 1.17 pooka int (*puffs_node_mknod)(struct puffs_cc *,
121 1.1 pooka void *, void **, const struct puffs_cn *, const struct vattr *);
122 1.17 pooka int (*puffs_node_open)(struct puffs_cc *,
123 1.1 pooka void *, int, const struct puffs_cred *, pid_t);
124 1.17 pooka int (*puffs_node_close)(struct puffs_cc *,
125 1.1 pooka void *, int, const struct puffs_cred *, pid_t);
126 1.17 pooka int (*puffs_node_access)(struct puffs_cc *,
127 1.1 pooka void *, int, const struct puffs_cred *, pid_t);
128 1.17 pooka int (*puffs_node_getattr)(struct puffs_cc *,
129 1.1 pooka void *, struct vattr *, const struct puffs_cred *, pid_t);
130 1.17 pooka int (*puffs_node_setattr)(struct puffs_cc *,
131 1.1 pooka void *, const struct vattr *, const struct puffs_cred *, pid_t);
132 1.17 pooka int (*puffs_node_poll)(struct puffs_cc *,
133 1.1 pooka void *, struct puffs_vnreq_poll *);
134 1.17 pooka int (*puffs_node_revoke)(struct puffs_cc *, void *, int);
135 1.17 pooka int (*puffs_node_mmap)(struct puffs_cc *,
136 1.15 pooka void *, int, const struct puffs_cred *, pid_t);
137 1.17 pooka int (*puffs_node_fsync)(struct puffs_cc *,
138 1.1 pooka void *, const struct puffs_cred *, int, off_t, off_t, pid_t);
139 1.17 pooka int (*puffs_node_seek)(struct puffs_cc *,
140 1.1 pooka void *, off_t, off_t, const struct puffs_cred *);
141 1.17 pooka int (*puffs_node_remove)(struct puffs_cc *,
142 1.1 pooka void *, void *, const struct puffs_cn *);
143 1.17 pooka int (*puffs_node_link)(struct puffs_cc *,
144 1.1 pooka void *, void *, const struct puffs_cn *);
145 1.17 pooka int (*puffs_node_rename)(struct puffs_cc *,
146 1.1 pooka void *, void *, const struct puffs_cn *, void *, void *,
147 1.1 pooka const struct puffs_cn *);
148 1.17 pooka int (*puffs_node_mkdir)(struct puffs_cc *,
149 1.1 pooka void *, void **, const struct puffs_cn *, const struct vattr *);
150 1.17 pooka int (*puffs_node_rmdir)(struct puffs_cc *,
151 1.1 pooka void *, void *, const struct puffs_cn *);
152 1.17 pooka int (*puffs_node_symlink)(struct puffs_cc *,
153 1.1 pooka void *, void **, const struct puffs_cn *, const struct vattr *,
154 1.1 pooka const char *);
155 1.17 pooka int (*puffs_node_readdir)(struct puffs_cc *,
156 1.1 pooka void *, struct dirent *, const struct puffs_cred *,
157 1.1 pooka off_t *, size_t *);
158 1.17 pooka int (*puffs_node_readlink)(struct puffs_cc *,
159 1.1 pooka void *, const struct puffs_cred *, char *, size_t *);
160 1.17 pooka int (*puffs_node_reclaim)(struct puffs_cc *,
161 1.1 pooka void *, pid_t);
162 1.17 pooka int (*puffs_node_inactive)(struct puffs_cc *,
163 1.2 pooka void *, pid_t, int *);
164 1.17 pooka int (*puffs_node_print)(struct puffs_cc *,
165 1.1 pooka void *);
166 1.17 pooka int (*puffs_node_pathconf)(struct puffs_cc *,
167 1.1 pooka void *, int, int *);
168 1.17 pooka int (*puffs_node_advlock)(struct puffs_cc *,
169 1.1 pooka void *, void *, int, struct flock *, int);
170 1.17 pooka int (*puffs_node_getextattr)(struct puffs_cc *,
171 1.1 pooka void *, struct puffs_vnreq_getextattr *);
172 1.17 pooka int (*puffs_node_setextattr)(struct puffs_cc *,
173 1.1 pooka void *, struct puffs_vnreq_setextattr *);
174 1.17 pooka int (*puffs_node_listextattr)(struct puffs_cc *,
175 1.1 pooka void *, struct puffs_vnreq_listextattr *);
176 1.17 pooka int (*puffs_node_read)(struct puffs_cc *, void *,
177 1.1 pooka uint8_t *, off_t, size_t *, const struct puffs_cred *, int);
178 1.17 pooka int (*puffs_node_write)(struct puffs_cc *, void *,
179 1.1 pooka uint8_t *, off_t, size_t *, const struct puffs_cred *, int);
180 1.1 pooka };
181 1.1 pooka
182 1.1 pooka struct puffs_usermount {
183 1.14 pooka struct puffs_ops pu_ops;
184 1.1 pooka
185 1.1 pooka int pu_fd;
186 1.1 pooka uint32_t pu_flags;
187 1.1 pooka size_t pu_maxreqlen;
188 1.17 pooka size_t pu_cc_stacksize;
189 1.17 pooka
190 1.17 pooka int pu_state;
191 1.17 pooka
192 1.17 pooka struct puffs_node *pu_pn_root;
193 1.1 pooka
194 1.5 pooka fsid_t pu_fsidx;
195 1.1 pooka LIST_HEAD(, puffs_node) pu_pnodelst;
196 1.1 pooka
197 1.1 pooka int pu_wcnt;
198 1.1 pooka void *pu_privdata;
199 1.1 pooka };
200 1.1 pooka
201 1.17 pooka enum {
202 1.17 pooka PUFFS_STATE_MOUNTING, PUFFS_STATE_RUNNING,
203 1.17 pooka PUFFS_STATE_UNMOUNTING, PUFFS_STATE_UNMOUNTED
204 1.17 pooka };
205 1.17 pooka
206 1.13 pooka #define PUFFS_FLAG_KERN(a) ((a) & 0x0000ffff)
207 1.13 pooka #define PUFFS_FLAG_LIB(a) ((a) & 0xffff0000)
208 1.12 pooka
209 1.13 pooka #define PUFFS_FLAG_OPDUMP 0x80000000 /* dump all operations */
210 1.17 pooka #define PUFFS_FLAG_BUILDPATH 0x40000000 /* node paths in pnode */
211 1.1 pooka
212 1.12 pooka /* blocking mode argument */
213 1.5 pooka #define PUFFSDEV_BLOCK 0
214 1.5 pooka #define PUFFSDEV_NONBLOCK 1
215 1.5 pooka
216 1.12 pooka /* mainloop flags */
217 1.12 pooka #define PUFFSLOOP_NODAEMON 0x01
218 1.12 pooka
219 1.17 pooka int puffs_fsnop_unmount(struct puffs_cc *, int, pid_t);
220 1.17 pooka int puffs_fsnop_statvfs(struct puffs_cc *, struct statvfs *, pid_t);
221 1.17 pooka int puffs_fsnop_sync(struct puffs_cc *, int waitfor,
222 1.7 pooka const struct puffs_cred *, pid_t);
223 1.6 pooka
224 1.1 pooka #define DENT_DOT 0
225 1.1 pooka #define DENT_DOTDOT 1
226 1.1 pooka #define DENT_ADJ(a) ((a)-2) /* nth request means dir's n-2th */
227 1.1 pooka int puffs_gendotdent(struct dirent **, ino_t, int, size_t *);
228 1.1 pooka int puffs_nextdent(struct dirent **, const char *, ino_t,
229 1.1 pooka uint8_t, size_t *);
230 1.1 pooka int puffs_vtype2dt(enum vtype);
231 1.10 pooka enum vtype puffs_mode2vt(mode_t);
232 1.1 pooka
233 1.1 pooka
234 1.1 pooka /*
235 1.1 pooka * Operation credentials
236 1.1 pooka */
237 1.1 pooka
238 1.1 pooka /* Credential fetch */
239 1.1 pooka int puffs_cred_getuid(const struct puffs_cred *pcr, uid_t *);
240 1.1 pooka int puffs_cred_getgid(const struct puffs_cred *pcr, gid_t *);
241 1.1 pooka int puffs_cred_getgroups(const struct puffs_cred *pcr, gid_t *, short *);
242 1.1 pooka
243 1.1 pooka /* Credential check */
244 1.1 pooka int puffs_cred_isuid(const struct puffs_cred *pcr, uid_t);
245 1.1 pooka int puffs_cred_hasgroup(const struct puffs_cred *pcr, gid_t);
246 1.1 pooka /* kernel internal NOCRED */
247 1.1 pooka int puffs_cred_iskernel(const struct puffs_cred *pcr);
248 1.1 pooka /* kernel internal FSCRED */
249 1.1 pooka int puffs_cred_isfs(const struct puffs_cred *pcr);
250 1.1 pooka /* root || NOCRED || FSCRED */
251 1.1 pooka int puffs_cred_isjuggernaut(const struct puffs_cred *pcr);
252 1.1 pooka
253 1.1 pooka
254 1.16 pooka /*
255 1.17 pooka * protos
256 1.16 pooka */
257 1.16 pooka
258 1.14 pooka #define PUFFSOP_PROTOS(fsname) \
259 1.17 pooka int fsname##_fs_mount(struct puffs_usermount *, void **, \
260 1.17 pooka struct statvfs *); \
261 1.17 pooka int fsname##_fs_unmount(struct puffs_cc *, int, pid_t); \
262 1.17 pooka int fsname##_fs_statvfs(struct puffs_cc *, \
263 1.1 pooka struct statvfs *, pid_t); \
264 1.17 pooka int fsname##_fs_sync(struct puffs_cc *, int, \
265 1.14 pooka const struct puffs_cred *cred, pid_t); \
266 1.14 pooka \
267 1.17 pooka int fsname##_node_lookup(struct puffs_cc *, \
268 1.4 pooka void *, void **, enum vtype *, voff_t *, dev_t *, \
269 1.3 pooka const struct puffs_cn *); \
270 1.17 pooka int fsname##_node_create(struct puffs_cc *, \
271 1.1 pooka void *, void **, const struct puffs_cn *, \
272 1.1 pooka const struct vattr *); \
273 1.17 pooka int fsname##_node_mknod(struct puffs_cc *, \
274 1.1 pooka void *, void **, const struct puffs_cn *, \
275 1.1 pooka const struct vattr *); \
276 1.17 pooka int fsname##_node_open(struct puffs_cc *, \
277 1.1 pooka void *, int, const struct puffs_cred *, pid_t); \
278 1.17 pooka int fsname##_node_close(struct puffs_cc *, \
279 1.11 pooka void *, int, const struct puffs_cred *, pid_t); \
280 1.17 pooka int fsname##_node_access(struct puffs_cc *, \
281 1.11 pooka void *, int, const struct puffs_cred *, pid_t); \
282 1.17 pooka int fsname##_node_getattr(struct puffs_cc *, \
283 1.1 pooka void *, struct vattr *, const struct puffs_cred *, pid_t); \
284 1.17 pooka int fsname##_node_setattr(struct puffs_cc *, \
285 1.1 pooka void *, const struct vattr *, const struct puffs_cred *, \
286 1.1 pooka pid_t); \
287 1.17 pooka int fsname##_node_poll(struct puffs_cc *, \
288 1.1 pooka void *, struct puffs_vnreq_poll *); \
289 1.17 pooka int fsname##_node_revoke(struct puffs_cc *, void *, int); \
290 1.17 pooka int fsname##_node_mmap(struct puffs_cc *, \
291 1.15 pooka void *, int, const struct puffs_cred *, pid_t); \
292 1.17 pooka int fsname##_node_fsync(struct puffs_cc *, \
293 1.1 pooka void *, const struct puffs_cred *, int, off_t, off_t, \
294 1.1 pooka pid_t); \
295 1.17 pooka int fsname##_node_seek(struct puffs_cc *, \
296 1.1 pooka void *, off_t, off_t, const struct puffs_cred *); \
297 1.17 pooka int fsname##_node_remove(struct puffs_cc *, \
298 1.1 pooka void *, void *, const struct puffs_cn *); \
299 1.17 pooka int fsname##_node_link(struct puffs_cc *, \
300 1.1 pooka void *, void *, const struct puffs_cn *); \
301 1.17 pooka int fsname##_node_rename(struct puffs_cc *, \
302 1.1 pooka void *, void *, const struct puffs_cn *, void *, void *, \
303 1.1 pooka const struct puffs_cn *); \
304 1.17 pooka int fsname##_node_mkdir(struct puffs_cc *, \
305 1.1 pooka void *, void **, const struct puffs_cn *, \
306 1.1 pooka const struct vattr *); \
307 1.17 pooka int fsname##_node_rmdir(struct puffs_cc *, \
308 1.1 pooka void *, void *, const struct puffs_cn *); \
309 1.17 pooka int fsname##_node_symlink(struct puffs_cc *, \
310 1.1 pooka void *, void **, const struct puffs_cn *, \
311 1.1 pooka const struct vattr *, const char *); \
312 1.17 pooka int fsname##_node_readdir(struct puffs_cc *, \
313 1.1 pooka void *, struct dirent *, const struct puffs_cred *, \
314 1.1 pooka off_t *, size_t *); \
315 1.17 pooka int fsname##_node_readlink(struct puffs_cc *, \
316 1.1 pooka void *, const struct puffs_cred *, char *, size_t *); \
317 1.17 pooka int fsname##_node_reclaim(struct puffs_cc *, \
318 1.1 pooka void *, pid_t); \
319 1.17 pooka int fsname##_node_inactive(struct puffs_cc *, \
320 1.2 pooka void *, pid_t, int *); \
321 1.17 pooka int fsname##_node_print(struct puffs_cc *, \
322 1.1 pooka void *); \
323 1.17 pooka int fsname##_node_pathconf(struct puffs_cc *, \
324 1.1 pooka void *, int, int *); \
325 1.17 pooka int fsname##_node_advlock(struct puffs_cc *, \
326 1.1 pooka void *, void *, int, struct flock *, int); \
327 1.17 pooka int fsname##_node_getextattr(struct puffs_cc *, \
328 1.1 pooka void *, struct puffs_vnreq_getextattr *); \
329 1.17 pooka int fsname##_node_setextattr(struct puffs_cc *, \
330 1.1 pooka void *, struct puffs_vnreq_setextattr *); \
331 1.17 pooka int fsname##_node_listextattr(struct puffs_cc *, \
332 1.1 pooka void *, struct puffs_vnreq_listextattr *); \
333 1.17 pooka int fsname##_node_read(struct puffs_cc *, void *, \
334 1.1 pooka uint8_t *, off_t, size_t *, const struct puffs_cred *, int);\
335 1.17 pooka int fsname##_node_write(struct puffs_cc *, void *, \
336 1.1 pooka uint8_t *, off_t, size_t *, const struct puffs_cred *, int);
337 1.1 pooka
338 1.14 pooka #define PUFFSOP_INIT(ops) \
339 1.17 pooka ops = malloc(sizeof(struct puffs_ops)); \
340 1.14 pooka memset(ops, 0, sizeof(struct puffs_ops))
341 1.14 pooka #define PUFFSOP_SET(ops, fsname, fsornode, opname) \
342 1.14 pooka (ops)->puffs_##fsornode##_##opname = fsname##_##fsornode##_##opname
343 1.14 pooka #define PUFFSOP_SETFSNOP(ops, opname) \
344 1.14 pooka (ops)->puffs_fs_##opname = puffs_fsnop_##opname
345 1.14 pooka
346 1.18 pooka #define PUFFS_DEVEL_LIBVERSION 0
347 1.18 pooka #define puffs_mount(a,b,c,d,e,f,g) \
348 1.18 pooka _puffs_mount(PUFFS_DEVEL_LIBVERSION,a,b,c,d,e,f,g)
349 1.17 pooka
350 1.17 pooka __BEGIN_DECLS
351 1.17 pooka
352 1.18 pooka struct puffs_usermount *_puffs_mount(int, struct puffs_ops *, const char *, int,
353 1.17 pooka const char *, void *, uint32_t, size_t);
354 1.17 pooka int puffs_mainloop(struct puffs_usermount *, int);
355 1.17 pooka
356 1.17 pooka
357 1.17 pooka int puffs_getselectable(struct puffs_usermount *);
358 1.17 pooka int puffs_setblockingmode(struct puffs_usermount *, int);
359 1.17 pooka int puffs_getstate(struct puffs_usermount *);
360 1.17 pooka int puffs_setrootpath(struct puffs_usermount *, const char *);
361 1.17 pooka void puffs_setstacksize(struct puffs_usermount *, size_t);
362 1.17 pooka
363 1.17 pooka struct puffs_node * puffs_pn_new(struct puffs_usermount *, void *);
364 1.17 pooka void puffs_pn_put(struct puffs_node *);
365 1.17 pooka struct vattr *puffs_pn_getvattrp(struct puffs_node *);
366 1.17 pooka void puffs_setvattr(struct vattr *, const struct vattr *);
367 1.17 pooka void puffs_vattr_null(struct vattr *);
368 1.17 pooka
369 1.17 pooka /*
370 1.17 pooka * Requests
371 1.17 pooka */
372 1.17 pooka
373 1.17 pooka struct puffs_getreq *puffs_makegetreq(struct puffs_usermount *,
374 1.17 pooka size_t, int);
375 1.17 pooka int puffs_loadgetreq(struct puffs_getreq *);
376 1.17 pooka struct puffs_req *puffs_getreq(struct puffs_getreq *);
377 1.17 pooka int puffs_remaininggetreq(struct puffs_getreq *);
378 1.17 pooka void puffs_setmaxgetreq(struct puffs_getreq *, int);
379 1.17 pooka void puffs_destroygetreq(struct puffs_getreq *);
380 1.17 pooka
381 1.17 pooka struct puffs_putreq *puffs_makeputreq(struct puffs_usermount *);
382 1.17 pooka void puffs_putreq(struct puffs_putreq *, struct puffs_req *);
383 1.17 pooka void puffs_putreq_cc(struct puffs_putreq *,struct puffs_cc*);
384 1.17 pooka int puffs_putputreq(struct puffs_putreq *);
385 1.17 pooka void puffs_resetputreq(struct puffs_putreq *);
386 1.17 pooka void puffs_destroyputreq(struct puffs_putreq *);
387 1.17 pooka
388 1.17 pooka /*
389 1.17 pooka * Call Context interfaces relevant for user.
390 1.17 pooka */
391 1.17 pooka
392 1.17 pooka void puffs_cc_yield(struct puffs_cc *);
393 1.17 pooka void puffs_cc_continue(struct puffs_cc *);
394 1.17 pooka
395 1.17 pooka void *puffs_cc_getpriv(struct puffs_cc *);
396 1.17 pooka void puffs_cc_setpriv(struct puffs_cc *, void *, int);
397 1.17 pooka
398 1.17 pooka struct puffs_usermount *puffs_cc_getusermount(struct puffs_cc *);
399 1.17 pooka
400 1.17 pooka /*
401 1.17 pooka * Execute or continue a request
402 1.17 pooka */
403 1.17 pooka
404 1.17 pooka int puffs_handlereqs(struct puffs_usermount *, struct puffs_getreq *,
405 1.17 pooka struct puffs_putreq *, int);
406 1.17 pooka
407 1.17 pooka int puffs_dopreq(struct puffs_usermount *, struct puffs_putreq *,
408 1.17 pooka struct puffs_req *);
409 1.17 pooka int puffs_docc(struct puffs_putreq *, struct puffs_cc *);
410 1.17 pooka
411 1.17 pooka __END_DECLS
412 1.17 pooka
413 1.14 pooka #endif /* _PUFFS_H_ */
414