puffs_vfsops.c revision 1.83 1 1.83 pooka /* $NetBSD: puffs_vfsops.c,v 1.83 2009/11/05 19:42:44 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 *
19 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
20 1.1 pooka * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 1.1 pooka * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 1.1 pooka * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 1.1 pooka * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 pooka * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 1.1 pooka * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 pooka * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 pooka * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 pooka * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 pooka * SUCH DAMAGE.
30 1.1 pooka */
31 1.1 pooka
32 1.1 pooka #include <sys/cdefs.h>
33 1.83 pooka __KERNEL_RCSID(0, "$NetBSD: puffs_vfsops.c,v 1.83 2009/11/05 19:42:44 pooka Exp $");
34 1.1 pooka
35 1.1 pooka #include <sys/param.h>
36 1.1 pooka #include <sys/mount.h>
37 1.1 pooka #include <sys/malloc.h>
38 1.1 pooka #include <sys/extattr.h>
39 1.1 pooka #include <sys/queue.h>
40 1.1 pooka #include <sys/vnode.h>
41 1.1 pooka #include <sys/dirent.h>
42 1.1 pooka #include <sys/kauth.h>
43 1.47 ad #include <sys/proc.h>
44 1.80 rumble #include <sys/module.h>
45 1.1 pooka
46 1.68 pooka #include <dev/putter/putter_sys.h>
47 1.1 pooka
48 1.78 dholland #include <miscfs/genfs/genfs.h>
49 1.78 dholland
50 1.1 pooka #include <fs/puffs/puffs_msgif.h>
51 1.1 pooka #include <fs/puffs/puffs_sys.h>
52 1.1 pooka
53 1.66 pooka #include <lib/libkern/libkern.h>
54 1.66 pooka
55 1.38 pooka #include <nfs/nfsproto.h> /* for fh sizes */
56 1.38 pooka
57 1.81 jmcneill MODULE(MODULE_CLASS_VFS, puffs, "putter");
58 1.80 rumble
59 1.73 pooka VFS_PROTOS(puffs_vfsop);
60 1.1 pooka
61 1.22 pooka #ifndef PUFFS_PNODEBUCKETS
62 1.22 pooka #define PUFFS_PNODEBUCKETS 256
63 1.22 pooka #endif
64 1.22 pooka #ifndef PUFFS_MAXPNODEBUCKETS
65 1.35 pooka #define PUFFS_MAXPNODEBUCKETS 8192
66 1.22 pooka #endif
67 1.35 pooka int puffs_pnodebuckets_default = PUFFS_PNODEBUCKETS;
68 1.35 pooka int puffs_maxpnodebuckets = PUFFS_MAXPNODEBUCKETS;
69 1.22 pooka
70 1.70 pooka #define BUCKETALLOC(a) (sizeof(struct puffs_pnode_hashlist *) * (a))
71 1.70 pooka
72 1.66 pooka static struct putter_ops puffs_putter = {
73 1.66 pooka .pop_getout = puffs_msgif_getout,
74 1.66 pooka .pop_releaseout = puffs_msgif_releaseout,
75 1.66 pooka .pop_waitcount = puffs_msgif_waitcount,
76 1.66 pooka .pop_dispatch = puffs_msgif_dispatch,
77 1.66 pooka .pop_close = puffs_msgif_close,
78 1.66 pooka };
79 1.66 pooka
80 1.1 pooka int
81 1.73 pooka puffs_vfsop_mount(struct mount *mp, const char *path, void *data,
82 1.73 pooka size_t *data_len)
83 1.1 pooka {
84 1.22 pooka struct puffs_mount *pmp = NULL;
85 1.34 pooka struct puffs_kargs *args;
86 1.51 pooka char fstype[_VFS_NAMELEN];
87 1.51 pooka char *p;
88 1.22 pooka int error = 0, i;
89 1.71 pooka pid_t mntpid = curlwp->l_proc->p_pid;
90 1.1 pooka
91 1.48 dsl if (*data_len < sizeof *args)
92 1.48 dsl return EINVAL;
93 1.48 dsl
94 1.1 pooka if (mp->mnt_flag & MNT_GETARGS) {
95 1.1 pooka pmp = MPTOPUFFSMP(mp);
96 1.48 dsl *(struct puffs_kargs *)data = pmp->pmp_args;
97 1.48 dsl *data_len = sizeof *args;
98 1.48 dsl return 0;
99 1.1 pooka }
100 1.1 pooka
101 1.1 pooka /* update is not supported currently */
102 1.1 pooka if (mp->mnt_flag & MNT_UPDATE)
103 1.1 pooka return EOPNOTSUPP;
104 1.1 pooka
105 1.1 pooka /*
106 1.1 pooka * We need the file system name
107 1.1 pooka */
108 1.1 pooka if (!data)
109 1.1 pooka return EINVAL;
110 1.1 pooka
111 1.70 pooka args = (struct puffs_kargs *)data;
112 1.17 pooka
113 1.17 pooka /* devel phase */
114 1.17 pooka if (args->pa_vers != (PUFFSVERSION | PUFFSDEVELVERS)) {
115 1.64 pooka printf("puffs_mount: development version mismatch: "
116 1.64 pooka "kernel %d, lib %d\n",
117 1.64 pooka PUFFSVERSION, args->pa_vers & ~PUFFSDEVELVERS);
118 1.17 pooka error = EINVAL;
119 1.17 pooka goto out;
120 1.17 pooka }
121 1.1 pooka
122 1.54 pooka if ((args->pa_flags & ~PUFFS_KFLAG_MASK) != 0) {
123 1.54 pooka printf("puffs_mount: invalid KFLAGs 0x%x\n", args->pa_flags);
124 1.54 pooka error = EINVAL;
125 1.54 pooka goto out;
126 1.54 pooka }
127 1.54 pooka if ((args->pa_fhflags & ~PUFFS_FHFLAG_MASK) != 0) {
128 1.54 pooka printf("puffs_mount: invalid FHFLAGs 0x%x\n", args->pa_fhflags);
129 1.54 pooka error = EINVAL;
130 1.54 pooka goto out;
131 1.54 pooka }
132 1.54 pooka
133 1.54 pooka /* use dummy value for passthrough */
134 1.54 pooka if (args->pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH)
135 1.54 pooka args->pa_fhsize = sizeof(struct fid);
136 1.8 pooka
137 1.38 pooka /* sanitize file handle length */
138 1.38 pooka if (PUFFS_TOFHSIZE(args->pa_fhsize) > FHANDLE_SIZE_MAX) {
139 1.38 pooka printf("puffs_mount: handle size %zu too large\n",
140 1.38 pooka args->pa_fhsize);
141 1.38 pooka error = EINVAL;
142 1.38 pooka goto out;
143 1.38 pooka }
144 1.38 pooka /* sanity check file handle max sizes */
145 1.38 pooka if (args->pa_fhsize && args->pa_fhflags & PUFFS_FHFLAG_PROTOMASK) {
146 1.38 pooka size_t kfhsize = PUFFS_TOFHSIZE(args->pa_fhsize);
147 1.38 pooka
148 1.38 pooka if (args->pa_fhflags & PUFFS_FHFLAG_NFSV2) {
149 1.38 pooka if (NFSX_FHTOOBIG_P(kfhsize, 0)) {
150 1.38 pooka printf("puffs_mount: fhsize larger than "
151 1.38 pooka "NFSv2 max %d\n",
152 1.38 pooka PUFFS_FROMFHSIZE(NFSX_V2FH));
153 1.38 pooka error = EINVAL;
154 1.38 pooka goto out;
155 1.38 pooka }
156 1.38 pooka }
157 1.38 pooka
158 1.38 pooka if (args->pa_fhflags & PUFFS_FHFLAG_NFSV3) {
159 1.38 pooka if (NFSX_FHTOOBIG_P(kfhsize, 1)) {
160 1.38 pooka printf("puffs_mount: fhsize larger than "
161 1.38 pooka "NFSv3 max %d\n",
162 1.38 pooka PUFFS_FROMFHSIZE(NFSX_V3FHMAX));
163 1.38 pooka error = EINVAL;
164 1.38 pooka goto out;
165 1.38 pooka }
166 1.38 pooka }
167 1.38 pooka }
168 1.38 pooka
169 1.51 pooka /* don't allow non-printing characters (like my sweet umlauts.. snif) */
170 1.51 pooka args->pa_typename[sizeof(args->pa_typename)-1] = '\0';
171 1.51 pooka for (p = args->pa_typename; *p; p++)
172 1.51 pooka if (*p < ' ' || *p > '~')
173 1.51 pooka *p = '.';
174 1.51 pooka
175 1.51 pooka args->pa_mntfromname[sizeof(args->pa_mntfromname)-1] = '\0';
176 1.51 pooka for (p = args->pa_mntfromname; *p; p++)
177 1.51 pooka if (*p < ' ' || *p > '~')
178 1.51 pooka *p = '.';
179 1.51 pooka
180 1.1 pooka /* build real name */
181 1.51 pooka (void)strlcpy(fstype, PUFFS_TYPEPREFIX, sizeof(fstype));
182 1.51 pooka (void)strlcat(fstype, args->pa_typename, sizeof(fstype));
183 1.1 pooka
184 1.1 pooka /* inform user server if it got the max request size it wanted */
185 1.63 pooka if (args->pa_maxmsglen == 0 || args->pa_maxmsglen > PUFFS_MSG_MAXSIZE)
186 1.63 pooka args->pa_maxmsglen = PUFFS_MSG_MAXSIZE;
187 1.63 pooka else if (args->pa_maxmsglen < 2*PUFFS_MSGSTRUCT_MAX)
188 1.63 pooka args->pa_maxmsglen = 2*PUFFS_MSGSTRUCT_MAX;
189 1.63 pooka
190 1.51 pooka (void)strlcpy(args->pa_typename, fstype, sizeof(args->pa_typename));
191 1.1 pooka
192 1.40 pooka if (args->pa_nhashbuckets == 0)
193 1.40 pooka args->pa_nhashbuckets = puffs_pnodebuckets_default;
194 1.40 pooka if (args->pa_nhashbuckets < 1)
195 1.40 pooka args->pa_nhashbuckets = 1;
196 1.40 pooka if (args->pa_nhashbuckets > PUFFS_MAXPNODEBUCKETS) {
197 1.40 pooka args->pa_nhashbuckets = puffs_maxpnodebuckets;
198 1.40 pooka printf("puffs_mount: using %d hash buckets. "
199 1.40 pooka "adjust puffs_maxpnodebuckets for more\n",
200 1.40 pooka puffs_maxpnodebuckets);
201 1.40 pooka }
202 1.40 pooka
203 1.51 pooka error = set_statvfs_info(path, UIO_USERSPACE, args->pa_mntfromname,
204 1.71 pooka UIO_SYSSPACE, fstype, mp, curlwp);
205 1.1 pooka if (error)
206 1.17 pooka goto out;
207 1.10 pooka mp->mnt_stat.f_iosize = DEV_BSIZE;
208 1.1 pooka
209 1.42 pooka /*
210 1.42 pooka * We can't handle the VFS_STATVFS() mount_domount() does
211 1.42 pooka * after VFS_MOUNT() because we'd deadlock, so handle it
212 1.42 pooka * here already.
213 1.42 pooka */
214 1.42 pooka copy_statvfs_info(&args->pa_svfsb, mp);
215 1.42 pooka (void)memcpy(&mp->mnt_stat, &args->pa_svfsb, sizeof(mp->mnt_stat));
216 1.42 pooka
217 1.70 pooka pmp = kmem_zalloc(sizeof(struct puffs_mount), KM_SLEEP);
218 1.1 pooka
219 1.6 pooka mp->mnt_fs_bshift = DEV_BSHIFT;
220 1.6 pooka mp->mnt_dev_bshift = DEV_BSHIFT;
221 1.6 pooka mp->mnt_flag &= ~MNT_LOCAL; /* we don't really know, so ... */
222 1.1 pooka mp->mnt_data = pmp;
223 1.6 pooka
224 1.1 pooka pmp->pmp_status = PUFFSTAT_MOUNTING;
225 1.1 pooka pmp->pmp_mp = mp;
226 1.63 pooka pmp->pmp_msg_maxsize = args->pa_maxmsglen;
227 1.17 pooka pmp->pmp_args = *args;
228 1.1 pooka
229 1.40 pooka pmp->pmp_npnodehash = args->pa_nhashbuckets;
230 1.70 pooka pmp->pmp_pnodehash = kmem_alloc(BUCKETALLOC(pmp->pmp_npnodehash), KM_SLEEP);
231 1.22 pooka for (i = 0; i < pmp->pmp_npnodehash; i++)
232 1.22 pooka LIST_INIT(&pmp->pmp_pnodehash[i]);
233 1.57 pooka LIST_INIT(&pmp->pmp_newcookie);
234 1.22 pooka
235 1.1 pooka /*
236 1.1 pooka * Inform the fileops processing code that we have a mountpoint.
237 1.1 pooka * If it doesn't know about anyone with our pid/fd having the
238 1.1 pooka * device open, punt
239 1.1 pooka */
240 1.66 pooka if ((pmp->pmp_pi
241 1.66 pooka = putter_attach(mntpid, args->pa_fd, pmp, &puffs_putter)) == NULL) {
242 1.17 pooka error = ENOENT;
243 1.17 pooka goto out;
244 1.1 pooka }
245 1.1 pooka
246 1.42 pooka /* XXX: check parameters */
247 1.42 pooka pmp->pmp_root_cookie = args->pa_root_cookie;
248 1.42 pooka pmp->pmp_root_vtype = args->pa_root_vtype;
249 1.42 pooka pmp->pmp_root_vsize = args->pa_root_vsize;
250 1.42 pooka pmp->pmp_root_rdev = args->pa_root_rdev;
251 1.42 pooka
252 1.31 pooka mutex_init(&pmp->pmp_lock, MUTEX_DEFAULT, IPL_NONE);
253 1.63 pooka cv_init(&pmp->pmp_msg_waiter_cv, "puffsget");
254 1.41 pooka cv_init(&pmp->pmp_refcount_cv, "puffsref");
255 1.31 pooka cv_init(&pmp->pmp_unmounting_cv, "puffsum");
256 1.63 pooka TAILQ_INIT(&pmp->pmp_msg_touser);
257 1.63 pooka TAILQ_INIT(&pmp->pmp_msg_replywait);
258 1.1 pooka
259 1.1 pooka DPRINTF(("puffs_mount: mount point at %p, puffs specific at %p\n",
260 1.1 pooka mp, MPTOPUFFSMP(mp)));
261 1.1 pooka
262 1.1 pooka vfs_getnewfsid(mp);
263 1.1 pooka
264 1.17 pooka out:
265 1.22 pooka if (error && pmp && pmp->pmp_pnodehash)
266 1.70 pooka kmem_free(pmp->pmp_pnodehash, BUCKETALLOC(pmp->pmp_npnodehash));
267 1.22 pooka if (error && pmp)
268 1.70 pooka kmem_free(pmp, sizeof(struct puffs_mount));
269 1.17 pooka return error;
270 1.1 pooka }
271 1.1 pooka
272 1.1 pooka int
273 1.73 pooka puffs_vfsop_start(struct mount *mp, int flags)
274 1.1 pooka {
275 1.42 pooka struct puffs_mount *pmp = MPTOPUFFSMP(mp);
276 1.1 pooka
277 1.42 pooka KASSERT(pmp->pmp_status == PUFFSTAT_MOUNTING);
278 1.1 pooka pmp->pmp_status = PUFFSTAT_RUNNING;
279 1.1 pooka
280 1.1 pooka return 0;
281 1.1 pooka }
282 1.1 pooka
283 1.1 pooka int
284 1.73 pooka puffs_vfsop_unmount(struct mount *mp, int mntflags)
285 1.1 pooka {
286 1.63 pooka PUFFS_MSG_VARS(vfs, unmount);
287 1.1 pooka struct puffs_mount *pmp;
288 1.1 pooka int error, force;
289 1.1 pooka
290 1.1 pooka error = 0;
291 1.1 pooka force = mntflags & MNT_FORCE;
292 1.1 pooka pmp = MPTOPUFFSMP(mp);
293 1.1 pooka
294 1.1 pooka DPRINTF(("puffs_unmount: detach filesystem from vfs, current "
295 1.1 pooka "status 0x%x\n", pmp->pmp_status));
296 1.1 pooka
297 1.1 pooka /*
298 1.1 pooka * flush all the vnodes. VOP_RECLAIM() takes care that the
299 1.1 pooka * root vnode does not get flushed until unmount. The
300 1.1 pooka * userspace root node cookie is stored in the mount
301 1.1 pooka * structure, so we can always re-instantiate a root vnode,
302 1.1 pooka * should userspace unmount decide it doesn't want to
303 1.1 pooka * cooperate.
304 1.1 pooka */
305 1.1 pooka error = vflush(mp, NULLVP, force ? FORCECLOSE : 0);
306 1.1 pooka if (error)
307 1.1 pooka goto out;
308 1.1 pooka
309 1.1 pooka /*
310 1.1 pooka * If we are not DYING, we should ask userspace's opinion
311 1.1 pooka * about the situation
312 1.1 pooka */
313 1.31 pooka mutex_enter(&pmp->pmp_lock);
314 1.1 pooka if (pmp->pmp_status != PUFFSTAT_DYING) {
315 1.16 pooka pmp->pmp_unmounting = 1;
316 1.31 pooka mutex_exit(&pmp->pmp_lock);
317 1.16 pooka
318 1.63 pooka PUFFS_MSG_ALLOC(vfs, unmount);
319 1.69 pooka puffs_msg_setinfo(park_unmount,
320 1.69 pooka PUFFSOP_VFS, PUFFS_VFS_UNMOUNT, NULL);
321 1.63 pooka unmount_msg->pvfsr_flags = mntflags;
322 1.63 pooka
323 1.69 pooka PUFFS_MSG_ENQUEUEWAIT(pmp, park_unmount, error);
324 1.63 pooka PUFFS_MSG_RELEASE(unmount);
325 1.16 pooka
326 1.60 pooka error = checkerr(pmp, error, __func__);
327 1.16 pooka DPRINTF(("puffs_unmount: error %d force %d\n", error, force));
328 1.16 pooka
329 1.31 pooka mutex_enter(&pmp->pmp_lock);
330 1.16 pooka pmp->pmp_unmounting = 0;
331 1.31 pooka cv_broadcast(&pmp->pmp_unmounting_cv);
332 1.1 pooka }
333 1.1 pooka
334 1.1 pooka /*
335 1.1 pooka * if userspace cooperated or we really need to die,
336 1.1 pooka * screw what userland thinks and just die.
337 1.1 pooka */
338 1.1 pooka if (error == 0 || force) {
339 1.26 pooka /* tell waiters & other resources to go unwait themselves */
340 1.26 pooka puffs_userdead(pmp);
341 1.66 pooka putter_detach(pmp->pmp_pi);
342 1.26 pooka
343 1.26 pooka /*
344 1.41 pooka * Wait until there are no more users for the mount resource.
345 1.41 pooka * Notice that this is hooked against transport_close
346 1.41 pooka * and return from touser. In an ideal world, it would
347 1.41 pooka * be hooked against final return from all operations.
348 1.41 pooka * But currently it works well enough, since nobody
349 1.41 pooka * does weird blocking voodoo after return from touser().
350 1.26 pooka */
351 1.41 pooka while (pmp->pmp_refcount != 0)
352 1.41 pooka cv_wait(&pmp->pmp_refcount_cv, &pmp->pmp_lock);
353 1.31 pooka mutex_exit(&pmp->pmp_lock);
354 1.26 pooka
355 1.26 pooka /* free resources now that we hopefully have no waiters left */
356 1.41 pooka cv_destroy(&pmp->pmp_unmounting_cv);
357 1.41 pooka cv_destroy(&pmp->pmp_refcount_cv);
358 1.63 pooka cv_destroy(&pmp->pmp_msg_waiter_cv);
359 1.31 pooka mutex_destroy(&pmp->pmp_lock);
360 1.31 pooka
361 1.70 pooka kmem_free(pmp->pmp_pnodehash, BUCKETALLOC(pmp->pmp_npnodehash));
362 1.70 pooka kmem_free(pmp, sizeof(struct puffs_mount));
363 1.1 pooka error = 0;
364 1.16 pooka } else {
365 1.31 pooka mutex_exit(&pmp->pmp_lock);
366 1.1 pooka }
367 1.1 pooka
368 1.1 pooka out:
369 1.2 pooka DPRINTF(("puffs_unmount: return %d\n", error));
370 1.1 pooka return error;
371 1.1 pooka }
372 1.1 pooka
373 1.1 pooka /*
374 1.1 pooka * This doesn't need to travel to userspace
375 1.1 pooka */
376 1.1 pooka int
377 1.73 pooka puffs_vfsop_root(struct mount *mp, struct vnode **vpp)
378 1.1 pooka {
379 1.45 pooka struct puffs_mount *pmp = MPTOPUFFSMP(mp);
380 1.59 pooka int rv;
381 1.1 pooka
382 1.59 pooka rv = puffs_cookie2vnode(pmp, pmp->pmp_root_cookie, 1, 1, vpp);
383 1.59 pooka KASSERT(rv != PUFFS_NOSUCHCOOKIE);
384 1.59 pooka return rv;
385 1.1 pooka }
386 1.1 pooka
387 1.1 pooka int
388 1.73 pooka puffs_vfsop_statvfs(struct mount *mp, struct statvfs *sbp)
389 1.1 pooka {
390 1.63 pooka PUFFS_MSG_VARS(vfs, statvfs);
391 1.1 pooka struct puffs_mount *pmp;
392 1.1 pooka int error = 0;
393 1.1 pooka
394 1.1 pooka pmp = MPTOPUFFSMP(mp);
395 1.1 pooka
396 1.1 pooka /*
397 1.1 pooka * If we are mounting, it means that the userspace counterpart
398 1.1 pooka * is calling mount(2), but mount(2) also calls statvfs. So
399 1.1 pooka * requesting statvfs from userspace would mean a deadlock.
400 1.1 pooka * Compensate.
401 1.1 pooka */
402 1.1 pooka if (pmp->pmp_status == PUFFSTAT_MOUNTING)
403 1.1 pooka return EINPROGRESS;
404 1.1 pooka
405 1.63 pooka PUFFS_MSG_ALLOC(vfs, statvfs);
406 1.69 pooka puffs_msg_setinfo(park_statvfs, PUFFSOP_VFS, PUFFS_VFS_STATVFS, NULL);
407 1.1 pooka
408 1.69 pooka PUFFS_MSG_ENQUEUEWAIT(pmp, park_statvfs, error);
409 1.60 pooka error = checkerr(pmp, error, __func__);
410 1.63 pooka statvfs_msg->pvfsr_sb.f_iosize = DEV_BSIZE;
411 1.10 pooka
412 1.1 pooka /*
413 1.1 pooka * Try to produce a sensible result even in the event
414 1.1 pooka * of userspace error.
415 1.1 pooka *
416 1.1 pooka * XXX: cache the copy in non-error case
417 1.1 pooka */
418 1.1 pooka if (!error) {
419 1.63 pooka copy_statvfs_info(&statvfs_msg->pvfsr_sb, mp);
420 1.63 pooka (void)memcpy(sbp, &statvfs_msg->pvfsr_sb,
421 1.1 pooka sizeof(struct statvfs));
422 1.1 pooka } else {
423 1.1 pooka copy_statvfs_info(sbp, mp);
424 1.1 pooka }
425 1.1 pooka
426 1.63 pooka PUFFS_MSG_RELEASE(statvfs);
427 1.14 pooka return error;
428 1.1 pooka }
429 1.1 pooka
430 1.26 pooka static int
431 1.83 pooka pageflush(struct mount *mp, kauth_cred_t cred, int waitfor)
432 1.1 pooka {
433 1.26 pooka struct puffs_node *pn;
434 1.74 ad struct vnode *vp, *mvp;
435 1.30 pooka int error, rv;
436 1.1 pooka
437 1.18 pooka error = 0;
438 1.18 pooka
439 1.74 ad /* Allocate a marker vnode. */
440 1.76 pooka if ((mvp = vnalloc(mp)) == NULL)
441 1.74 ad return ENOMEM;
442 1.74 ad
443 1.18 pooka /*
444 1.24 pooka * Sync all cached data from regular vnodes (which are not
445 1.24 pooka * currently locked, see below). After this we call VFS_SYNC
446 1.24 pooka * for the fs server, which should handle data and metadata for
447 1.24 pooka * all the nodes it knows to exist.
448 1.18 pooka */
449 1.74 ad mutex_enter(&mntvnode_lock);
450 1.18 pooka loop:
451 1.74 ad for (vp = TAILQ_FIRST(&mp->mnt_vnodelist); vp; vp = vunmark(mvp)) {
452 1.74 ad vmark(mvp, vp);
453 1.74 ad if (vp->v_mount != mp || vismarker(vp))
454 1.74 ad continue;
455 1.18 pooka
456 1.74 ad mutex_enter(&vp->v_interlock);
457 1.26 pooka pn = VPTOPP(vp);
458 1.19 pooka if (vp->v_type != VREG || UVM_OBJ_IS_CLEAN(&vp->v_uobj)) {
459 1.74 ad mutex_exit(&vp->v_interlock);
460 1.18 pooka continue;
461 1.18 pooka }
462 1.18 pooka
463 1.74 ad mutex_exit(&mntvnode_lock);
464 1.21 pooka
465 1.21 pooka /*
466 1.21 pooka * Here we try to get a reference to the vnode and to
467 1.21 pooka * lock it. This is mostly cargo-culted, but I will
468 1.21 pooka * offer an explanation to why I believe this might
469 1.21 pooka * actually do the right thing.
470 1.21 pooka *
471 1.21 pooka * If the vnode is a goner, we quite obviously don't need
472 1.21 pooka * to sync it.
473 1.21 pooka *
474 1.21 pooka * If the vnode was busy, we don't need to sync it because
475 1.21 pooka * this is never called with MNT_WAIT except from
476 1.21 pooka * dounmount(), when we are wait-flushing all the dirty
477 1.21 pooka * vnodes through other routes in any case. So there,
478 1.21 pooka * sync() doesn't actually sync. Happy now?
479 1.21 pooka */
480 1.18 pooka rv = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
481 1.18 pooka if (rv) {
482 1.74 ad mutex_enter(&mntvnode_lock);
483 1.74 ad if (rv == ENOENT) {
484 1.74 ad (void)vunmark(mvp);
485 1.18 pooka goto loop;
486 1.74 ad }
487 1.18 pooka continue;
488 1.18 pooka }
489 1.18 pooka
490 1.83 pooka /* hmm.. is the FAF thing entirely sensible? */
491 1.83 pooka if (waitfor == MNT_LAZY) {
492 1.74 ad mutex_enter(&vp->v_interlock);
493 1.83 pooka pn->pn_stat |= PNODE_FAF;
494 1.74 ad mutex_exit(&vp->v_interlock);
495 1.30 pooka }
496 1.71 pooka rv = VOP_FSYNC(vp, cred, waitfor, 0, 0);
497 1.83 pooka if (waitfor == MNT_LAZY) {
498 1.74 ad mutex_enter(&vp->v_interlock);
499 1.83 pooka pn->pn_stat &= ~PNODE_FAF;
500 1.74 ad mutex_exit(&vp->v_interlock);
501 1.26 pooka }
502 1.21 pooka if (rv)
503 1.18 pooka error = rv;
504 1.18 pooka vput(vp);
505 1.74 ad mutex_enter(&mntvnode_lock);
506 1.18 pooka }
507 1.74 ad mutex_exit(&mntvnode_lock);
508 1.76 pooka vnfree(mvp);
509 1.18 pooka
510 1.26 pooka return error;
511 1.26 pooka }
512 1.26 pooka
513 1.26 pooka int
514 1.73 pooka puffs_vfsop_sync(struct mount *mp, int waitfor, struct kauth_cred *cred)
515 1.26 pooka {
516 1.63 pooka PUFFS_MSG_VARS(vfs, sync);
517 1.62 pooka struct puffs_mount *pmp = MPTOPUFFSMP(mp);
518 1.26 pooka int error, rv;
519 1.26 pooka
520 1.83 pooka error = pageflush(mp, cred, waitfor);
521 1.26 pooka
522 1.18 pooka /* sync fs */
523 1.63 pooka PUFFS_MSG_ALLOC(vfs, sync);
524 1.63 pooka sync_msg->pvfsr_waitfor = waitfor;
525 1.63 pooka puffs_credcvt(&sync_msg->pvfsr_cred, cred);
526 1.69 pooka puffs_msg_setinfo(park_sync, PUFFSOP_VFS, PUFFS_VFS_SYNC, NULL);
527 1.1 pooka
528 1.69 pooka PUFFS_MSG_ENQUEUEWAIT(pmp, park_sync, rv);
529 1.62 pooka rv = checkerr(pmp, rv, __func__);
530 1.18 pooka if (rv)
531 1.18 pooka error = rv;
532 1.1 pooka
533 1.63 pooka PUFFS_MSG_RELEASE(sync);
534 1.1 pooka return error;
535 1.1 pooka }
536 1.1 pooka
537 1.1 pooka int
538 1.73 pooka puffs_vfsop_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
539 1.1 pooka {
540 1.63 pooka PUFFS_MSG_VARS(vfs, fhtonode);
541 1.33 pooka struct puffs_mount *pmp = MPTOPUFFSMP(mp);
542 1.33 pooka struct vnode *vp;
543 1.54 pooka void *fhdata;
544 1.54 pooka size_t argsize, fhlen;
545 1.33 pooka int error;
546 1.33 pooka
547 1.38 pooka if (pmp->pmp_args.pa_fhsize == 0)
548 1.33 pooka return EOPNOTSUPP;
549 1.33 pooka
550 1.54 pooka if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH) {
551 1.54 pooka fhlen = fhp->fid_len;
552 1.54 pooka fhdata = fhp;
553 1.39 pooka } else {
554 1.54 pooka fhlen = PUFFS_FROMFHSIZE(fhp->fid_len);
555 1.54 pooka fhdata = fhp->fid_data;
556 1.54 pooka
557 1.54 pooka if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_DYNAMIC) {
558 1.54 pooka if (pmp->pmp_args.pa_fhsize < fhlen)
559 1.54 pooka return EINVAL;
560 1.54 pooka } else {
561 1.54 pooka if (pmp->pmp_args.pa_fhsize != fhlen)
562 1.54 pooka return EINVAL;
563 1.54 pooka }
564 1.39 pooka }
565 1.33 pooka
566 1.63 pooka argsize = sizeof(struct puffs_vfsmsg_fhtonode) + fhlen;
567 1.75 pooka puffs_msgmem_alloc(argsize, &park_fhtonode, (void *)&fhtonode_msg, 1);
568 1.63 pooka fhtonode_msg->pvfsr_dsize = fhlen;
569 1.63 pooka memcpy(fhtonode_msg->pvfsr_data, fhdata, fhlen);
570 1.69 pooka puffs_msg_setinfo(park_fhtonode, PUFFSOP_VFS, PUFFS_VFS_FHTOVP, NULL);
571 1.33 pooka
572 1.69 pooka PUFFS_MSG_ENQUEUEWAIT(pmp, park_fhtonode, error);
573 1.60 pooka error = checkerr(pmp, error, __func__);
574 1.33 pooka if (error)
575 1.38 pooka goto out;
576 1.33 pooka
577 1.63 pooka error = puffs_cookie2vnode(pmp, fhtonode_msg->pvfsr_fhcookie, 1,1,&vp);
578 1.33 pooka DPRINTF(("puffs_fhtovp: got cookie %p, existing vnode %p\n",
579 1.63 pooka fhtonode_msg->pvfsr_fhcookie, vp));
580 1.59 pooka if (error == PUFFS_NOSUCHCOOKIE) {
581 1.63 pooka error = puffs_getvnode(mp, fhtonode_msg->pvfsr_fhcookie,
582 1.63 pooka fhtonode_msg->pvfsr_vtype, fhtonode_msg->pvfsr_size,
583 1.63 pooka fhtonode_msg->pvfsr_rdev, &vp);
584 1.33 pooka if (error)
585 1.38 pooka goto out;
586 1.33 pooka vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
587 1.59 pooka } else if (error) {
588 1.59 pooka goto out;
589 1.33 pooka }
590 1.1 pooka
591 1.33 pooka *vpp = vp;
592 1.38 pooka out:
593 1.63 pooka puffs_msgmem_release(park_fhtonode);
594 1.38 pooka return error;
595 1.1 pooka }
596 1.1 pooka
597 1.1 pooka int
598 1.73 pooka puffs_vfsop_vptofh(struct vnode *vp, struct fid *fhp, size_t *fh_size)
599 1.1 pooka {
600 1.63 pooka PUFFS_MSG_VARS(vfs, nodetofh);
601 1.33 pooka struct puffs_mount *pmp = MPTOPUFFSMP(vp->v_mount);
602 1.54 pooka size_t argsize, fhlen;
603 1.33 pooka int error;
604 1.33 pooka
605 1.38 pooka if (pmp->pmp_args.pa_fhsize == 0)
606 1.33 pooka return EOPNOTSUPP;
607 1.33 pooka
608 1.54 pooka /* if file handles are static len, we can test len immediately */
609 1.38 pooka if (((pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_DYNAMIC) == 0)
610 1.54 pooka && ((pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH) == 0)
611 1.38 pooka && (PUFFS_FROMFHSIZE(*fh_size) < pmp->pmp_args.pa_fhsize)) {
612 1.38 pooka *fh_size = PUFFS_TOFHSIZE(pmp->pmp_args.pa_fhsize);
613 1.33 pooka return E2BIG;
614 1.33 pooka }
615 1.1 pooka
616 1.54 pooka if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH)
617 1.54 pooka fhlen = *fh_size;
618 1.54 pooka else
619 1.54 pooka fhlen = PUFFS_FROMFHSIZE(*fh_size);
620 1.54 pooka
621 1.63 pooka argsize = sizeof(struct puffs_vfsmsg_nodetofh) + fhlen;
622 1.75 pooka puffs_msgmem_alloc(argsize, &park_nodetofh, (void *)&nodetofh_msg, 1);
623 1.63 pooka nodetofh_msg->pvfsr_fhcookie = VPTOPNC(vp);
624 1.63 pooka nodetofh_msg->pvfsr_dsize = fhlen;
625 1.69 pooka puffs_msg_setinfo(park_nodetofh, PUFFSOP_VFS, PUFFS_VFS_VPTOFH, NULL);
626 1.38 pooka
627 1.69 pooka PUFFS_MSG_ENQUEUEWAIT(pmp, park_nodetofh, error);
628 1.60 pooka error = checkerr(pmp, error, __func__);
629 1.54 pooka
630 1.54 pooka if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH)
631 1.63 pooka fhlen = nodetofh_msg->pvfsr_dsize;
632 1.54 pooka else if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_DYNAMIC)
633 1.63 pooka fhlen = PUFFS_TOFHSIZE(nodetofh_msg->pvfsr_dsize);
634 1.54 pooka else
635 1.54 pooka fhlen = PUFFS_TOFHSIZE(pmp->pmp_args.pa_fhsize);
636 1.54 pooka
637 1.38 pooka if (error) {
638 1.38 pooka if (error == E2BIG)
639 1.54 pooka *fh_size = fhlen;
640 1.38 pooka goto out;
641 1.38 pooka }
642 1.38 pooka
643 1.54 pooka if (fhlen > FHANDLE_SIZE_MAX) {
644 1.69 pooka puffs_senderr(pmp, PUFFS_ERR_VPTOFH, E2BIG,
645 1.60 pooka "file handle too big", VPTOPNC(vp));
646 1.58 pooka error = EPROTO;
647 1.38 pooka goto out;
648 1.38 pooka }
649 1.33 pooka
650 1.54 pooka if (*fh_size < fhlen) {
651 1.54 pooka *fh_size = fhlen;
652 1.38 pooka error = E2BIG;
653 1.38 pooka goto out;
654 1.38 pooka }
655 1.54 pooka *fh_size = fhlen;
656 1.1 pooka
657 1.38 pooka if (fhp) {
658 1.54 pooka if (pmp->pmp_args.pa_fhflags & PUFFS_FHFLAG_PASSTHROUGH) {
659 1.63 pooka memcpy(fhp, nodetofh_msg->pvfsr_data, fhlen);
660 1.54 pooka } else {
661 1.54 pooka fhp->fid_len = *fh_size;
662 1.63 pooka memcpy(fhp->fid_data, nodetofh_msg->pvfsr_data,
663 1.63 pooka nodetofh_msg->pvfsr_dsize);
664 1.54 pooka }
665 1.38 pooka }
666 1.1 pooka
667 1.38 pooka out:
668 1.63 pooka puffs_msgmem_release(park_nodetofh);
669 1.38 pooka return error;
670 1.1 pooka }
671 1.1 pooka
672 1.1 pooka void
673 1.82 cegger puffs_vfsop_init(void)
674 1.1 pooka {
675 1.1 pooka
676 1.56 pooka /* some checks depend on this */
677 1.56 pooka KASSERT(VNOVAL == VSIZENOTSET);
678 1.56 pooka
679 1.31 pooka pool_init(&puffs_pnpool, sizeof(struct puffs_node), 0, 0, 0,
680 1.31 pooka "puffpnpl", &pool_allocator_nointr, IPL_NONE);
681 1.31 pooka puffs_msgif_init();
682 1.1 pooka }
683 1.1 pooka
684 1.1 pooka void
685 1.82 cegger puffs_vfsop_done(void)
686 1.1 pooka {
687 1.1 pooka
688 1.31 pooka puffs_msgif_destroy();
689 1.31 pooka pool_destroy(&puffs_pnpool);
690 1.1 pooka }
691 1.1 pooka
692 1.1 pooka int
693 1.73 pooka puffs_vfsop_snapshot(struct mount *mp, struct vnode *vp, struct timespec *ts)
694 1.1 pooka {
695 1.1 pooka
696 1.1 pooka return EOPNOTSUPP;
697 1.1 pooka }
698 1.1 pooka
699 1.1 pooka const struct vnodeopv_desc * const puffs_vnodeopv_descs[] = {
700 1.1 pooka &puffs_vnodeop_opv_desc,
701 1.3 pooka &puffs_specop_opv_desc,
702 1.4 pooka &puffs_fifoop_opv_desc,
703 1.12 pooka &puffs_msgop_opv_desc,
704 1.1 pooka NULL,
705 1.1 pooka };
706 1.1 pooka
707 1.1 pooka struct vfsops puffs_vfsops = {
708 1.1 pooka MOUNT_PUFFS,
709 1.48 dsl sizeof (struct puffs_kargs),
710 1.73 pooka puffs_vfsop_mount, /* mount */
711 1.73 pooka puffs_vfsop_start, /* start */
712 1.73 pooka puffs_vfsop_unmount, /* unmount */
713 1.73 pooka puffs_vfsop_root, /* root */
714 1.73 pooka (void *)eopnotsupp, /* quotactl */
715 1.73 pooka puffs_vfsop_statvfs, /* statvfs */
716 1.73 pooka puffs_vfsop_sync, /* sync */
717 1.73 pooka (void *)eopnotsupp, /* vget */
718 1.73 pooka puffs_vfsop_fhtovp, /* fhtovp */
719 1.73 pooka puffs_vfsop_vptofh, /* vptofh */
720 1.73 pooka puffs_vfsop_init, /* init */
721 1.73 pooka NULL, /* reinit */
722 1.73 pooka puffs_vfsop_done, /* done */
723 1.73 pooka NULL, /* mountroot */
724 1.73 pooka puffs_vfsop_snapshot, /* snapshot */
725 1.73 pooka vfs_stdextattrctl, /* extattrctl */
726 1.83 pooka (void *)eopnotsupp, /* suspendctl */
727 1.78 dholland genfs_renamelock_enter,
728 1.78 dholland genfs_renamelock_exit,
729 1.79 ad (void *)eopnotsupp,
730 1.73 pooka puffs_vnodeopv_descs, /* vnodeops */
731 1.73 pooka 0, /* refcount */
732 1.1 pooka { NULL, NULL }
733 1.1 pooka };
734 1.80 rumble
735 1.80 rumble static int
736 1.80 rumble puffs_modcmd(modcmd_t cmd, void *arg)
737 1.80 rumble {
738 1.80 rumble
739 1.80 rumble switch (cmd) {
740 1.80 rumble case MODULE_CMD_INIT:
741 1.80 rumble return vfs_attach(&puffs_vfsops);
742 1.80 rumble case MODULE_CMD_FINI:
743 1.80 rumble return vfs_detach(&puffs_vfsops);
744 1.80 rumble default:
745 1.80 rumble return ENOTTY;
746 1.80 rumble }
747 1.80 rumble }
748