]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/fs/fuse/fuse_vnops.c
fusefs: remove the vfs.fusefs.data_cache_invalidate sysctl
[FreeBSD/FreeBSD.git] / sys / fs / fuse / fuse_vnops.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 2007-2009 Google Inc. and Amit Singh
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  *   notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  *   copyright notice, this list of conditions and the following disclaimer
15  *   in the documentation and/or other materials provided with the
16  *   distribution.
17  * * Neither the name of Google Inc. nor the names of its
18  *   contributors may be used to endorse or promote products derived from
19  *   this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * Copyright (C) 2005 Csaba Henk.
34  * All rights reserved.
35  *
36  * Redistribution and use in source and binary forms, with or without
37  * modification, are permitted provided that the following conditions
38  * are met:
39  * 1. Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  * 2. Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in the
43  *    documentation and/or other materials provided with the distribution.
44  *
45  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
46  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
49  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
55  * SUCH DAMAGE.
56  */
57
58 #include <sys/cdefs.h>
59 __FBSDID("$FreeBSD$");
60
61 #include <sys/param.h>
62 #include <sys/module.h>
63 #include <sys/systm.h>
64 #include <sys/errno.h>
65 #include <sys/kernel.h>
66 #include <sys/conf.h>
67 #include <sys/uio.h>
68 #include <sys/malloc.h>
69 #include <sys/queue.h>
70 #include <sys/lock.h>
71 #include <sys/rwlock.h>
72 #include <sys/sx.h>
73 #include <sys/proc.h>
74 #include <sys/mount.h>
75 #include <sys/vnode.h>
76 #include <sys/namei.h>
77 #include <sys/extattr.h>
78 #include <sys/stat.h>
79 #include <sys/unistd.h>
80 #include <sys/filedesc.h>
81 #include <sys/file.h>
82 #include <sys/fcntl.h>
83 #include <sys/dirent.h>
84 #include <sys/bio.h>
85 #include <sys/buf.h>
86 #include <sys/sysctl.h>
87 #include <sys/vmmeter.h>
88
89 #include <vm/vm.h>
90 #include <vm/vm_extern.h>
91 #include <vm/pmap.h>
92 #include <vm/vm_map.h>
93 #include <vm/vm_page.h>
94 #include <vm/vm_param.h>
95 #include <vm/vm_object.h>
96 #include <vm/vm_pager.h>
97 #include <vm/vnode_pager.h>
98 #include <vm/vm_object.h>
99
100 #include "fuse.h"
101 #include "fuse_file.h"
102 #include "fuse_internal.h"
103 #include "fuse_ipc.h"
104 #include "fuse_node.h"
105 #include "fuse_io.h"
106
107 #include <sys/priv.h>
108
109 /* Maximum number of hardlinks to a single FUSE file */
110 #define FUSE_LINK_MAX                      UINT32_MAX
111
112 SDT_PROVIDER_DECLARE(fusefs);
113 /* 
114  * Fuse trace probe:
115  * arg0: verbosity.  Higher numbers give more verbose messages
116  * arg1: Textual message
117  */
118 SDT_PROBE_DEFINE2(fusefs, , vnops, trace, "int", "char*");
119
120 /* vnode ops */
121 static vop_access_t fuse_vnop_access;
122 static vop_advlock_t fuse_vnop_advlock;
123 static vop_close_t fuse_fifo_close;
124 static vop_close_t fuse_vnop_close;
125 static vop_create_t fuse_vnop_create;
126 static vop_deleteextattr_t fuse_vnop_deleteextattr;
127 static vop_fdatasync_t fuse_vnop_fdatasync;
128 static vop_fsync_t fuse_vnop_fsync;
129 static vop_getattr_t fuse_vnop_getattr;
130 static vop_getextattr_t fuse_vnop_getextattr;
131 static vop_inactive_t fuse_vnop_inactive;
132 static vop_link_t fuse_vnop_link;
133 static vop_listextattr_t fuse_vnop_listextattr;
134 static vop_lookup_t fuse_vnop_lookup;
135 static vop_mkdir_t fuse_vnop_mkdir;
136 static vop_mknod_t fuse_vnop_mknod;
137 static vop_open_t fuse_vnop_open;
138 static vop_pathconf_t fuse_vnop_pathconf;
139 static vop_read_t fuse_vnop_read;
140 static vop_readdir_t fuse_vnop_readdir;
141 static vop_readlink_t fuse_vnop_readlink;
142 static vop_reclaim_t fuse_vnop_reclaim;
143 static vop_remove_t fuse_vnop_remove;
144 static vop_rename_t fuse_vnop_rename;
145 static vop_rmdir_t fuse_vnop_rmdir;
146 static vop_setattr_t fuse_vnop_setattr;
147 static vop_setextattr_t fuse_vnop_setextattr;
148 static vop_strategy_t fuse_vnop_strategy;
149 static vop_symlink_t fuse_vnop_symlink;
150 static vop_write_t fuse_vnop_write;
151 static vop_getpages_t fuse_vnop_getpages;
152 static vop_putpages_t fuse_vnop_putpages;
153 static vop_print_t fuse_vnop_print;
154
155 struct vop_vector fuse_fifoops = {
156         .vop_default =          &fifo_specops,
157         .vop_access =           fuse_vnop_access,
158         .vop_close =            fuse_fifo_close,
159         .vop_fsync =            fuse_vnop_fsync,
160         .vop_getattr =          fuse_vnop_getattr,
161         .vop_inactive =         fuse_vnop_inactive,
162         .vop_pathconf =         fuse_vnop_pathconf,
163         .vop_print =            fuse_vnop_print,
164         .vop_read =             VOP_PANIC,
165         .vop_reclaim =          fuse_vnop_reclaim,
166         .vop_setattr =          fuse_vnop_setattr,
167         .vop_write =            VOP_PANIC,
168 };
169
170 struct vop_vector fuse_vnops = {
171         .vop_allocate = VOP_EINVAL,
172         .vop_default = &default_vnodeops,
173         .vop_access = fuse_vnop_access,
174         .vop_advlock = fuse_vnop_advlock,
175         .vop_close = fuse_vnop_close,
176         .vop_create = fuse_vnop_create,
177         .vop_deleteextattr = fuse_vnop_deleteextattr,
178         .vop_fsync = fuse_vnop_fsync,
179         .vop_fdatasync = fuse_vnop_fdatasync,
180         .vop_getattr = fuse_vnop_getattr,
181         .vop_getextattr = fuse_vnop_getextattr,
182         .vop_inactive = fuse_vnop_inactive,
183         .vop_link = fuse_vnop_link,
184         .vop_listextattr = fuse_vnop_listextattr,
185         .vop_lookup = fuse_vnop_lookup,
186         .vop_mkdir = fuse_vnop_mkdir,
187         .vop_mknod = fuse_vnop_mknod,
188         .vop_open = fuse_vnop_open,
189         .vop_pathconf = fuse_vnop_pathconf,
190         .vop_read = fuse_vnop_read,
191         .vop_readdir = fuse_vnop_readdir,
192         .vop_readlink = fuse_vnop_readlink,
193         .vop_reclaim = fuse_vnop_reclaim,
194         .vop_remove = fuse_vnop_remove,
195         .vop_rename = fuse_vnop_rename,
196         .vop_rmdir = fuse_vnop_rmdir,
197         .vop_setattr = fuse_vnop_setattr,
198         .vop_setextattr = fuse_vnop_setextattr,
199         .vop_strategy = fuse_vnop_strategy,
200         .vop_symlink = fuse_vnop_symlink,
201         .vop_write = fuse_vnop_write,
202         .vop_getpages = fuse_vnop_getpages,
203         .vop_putpages = fuse_vnop_putpages,
204         .vop_print = fuse_vnop_print,
205 };
206
207 static u_long fuse_lookup_cache_hits = 0;
208
209 SYSCTL_ULONG(_vfs_fusefs, OID_AUTO, lookup_cache_hits, CTLFLAG_RD,
210     &fuse_lookup_cache_hits, 0, "number of positive cache hits in lookup");
211
212 static u_long fuse_lookup_cache_misses = 0;
213
214 SYSCTL_ULONG(_vfs_fusefs, OID_AUTO, lookup_cache_misses, CTLFLAG_RD,
215     &fuse_lookup_cache_misses, 0, "number of cache misses in lookup");
216
217 /*
218  * XXX: This feature is highly experimental and can bring to instabilities,
219  * needs revisiting before to be enabled by default.
220  */
221 static int fuse_reclaim_revoked = 0;
222
223 SYSCTL_INT(_vfs_fusefs, OID_AUTO, reclaim_revoked, CTLFLAG_RW,
224     &fuse_reclaim_revoked, 0, "");
225
226 uma_zone_t fuse_pbuf_zone;
227
228 #define fuse_vm_page_lock(m)            vm_page_lock((m));
229 #define fuse_vm_page_unlock(m)          vm_page_unlock((m));
230 #define fuse_vm_page_lock_queues()      ((void)0)
231 #define fuse_vm_page_unlock_queues()    ((void)0)
232
233 /* Check permission for extattr operations, much like extattr_check_cred */
234 static int
235 fuse_extattr_check_cred(struct vnode *vp, int ns, struct ucred *cred,
236         struct thread *td, accmode_t accmode)
237 {
238         struct mount *mp = vnode_mount(vp);
239         struct fuse_data *data = fuse_get_mpdata(mp);
240
241         /*
242          * Kernel-invoked always succeeds.
243          */
244         if (cred == NOCRED)
245                 return (0);
246
247         /*
248          * Do not allow privileged processes in jail to directly manipulate
249          * system attributes.
250          */
251         switch (ns) {
252         case EXTATTR_NAMESPACE_SYSTEM:
253                 if (data->dataflags & FSESS_DEFAULT_PERMISSIONS) {
254                         return (priv_check_cred(cred, PRIV_VFS_EXTATTR_SYSTEM));
255                 }
256                 /* FALLTHROUGH */
257         case EXTATTR_NAMESPACE_USER:
258                 return (fuse_internal_access(vp, accmode, td, cred));
259         default:
260                 return (EPERM);
261         }
262 }
263
264 /* Get a filehandle for a directory */
265 static int
266 fuse_filehandle_get_dir(struct vnode *vp, struct fuse_filehandle **fufhp,
267         struct ucred *cred, pid_t pid)
268 {
269         if (fuse_filehandle_get(vp, FREAD, fufhp, cred, pid) == 0)
270                 return 0;
271         return fuse_filehandle_get(vp, FEXEC, fufhp, cred, pid);
272 }
273
274 /* Send FUSE_FLUSH for this vnode */
275 static int
276 fuse_flush(struct vnode *vp, struct ucred *cred, pid_t pid, int fflag)
277 {
278         struct fuse_flush_in *ffi;
279         struct fuse_filehandle *fufh;
280         struct fuse_dispatcher fdi;
281         struct thread *td = curthread;
282         struct mount *mp = vnode_mount(vp);
283         int err;
284
285         if (!fsess_isimpl(vnode_mount(vp), FUSE_FLUSH))
286                 return 0;
287
288         err = fuse_filehandle_getrw(vp, fflag, &fufh, cred, pid);
289         if (err)
290                 return err;
291
292         fdisp_init(&fdi, sizeof(*ffi));
293         fdisp_make_vp(&fdi, FUSE_FLUSH, vp, td, cred);
294         ffi = fdi.indata;
295         ffi->fh = fufh->fh_id;
296         /* 
297          * If the file has a POSIX lock then we're supposed to set lock_owner.
298          * If not, then lock_owner is undefined.  So we may as well always set
299          * it.
300          */
301         ffi->lock_owner = td->td_proc->p_pid;
302
303         err = fdisp_wait_answ(&fdi);
304         if (err == ENOSYS) {
305                 fsess_set_notimpl(mp, FUSE_FLUSH);
306                 err = 0;
307         }
308         fdisp_destroy(&fdi);
309         return err;
310 }
311
312 /* Close wrapper for fifos.  */
313 static int
314 fuse_fifo_close(struct vop_close_args *ap)
315 {
316         return (fifo_specops.vop_close(ap));
317 }
318
319 /*
320     struct vnop_access_args {
321         struct vnode *a_vp;
322 #if VOP_ACCESS_TAKES_ACCMODE_T
323         accmode_t a_accmode;
324 #else
325         int a_mode;
326 #endif
327         struct ucred *a_cred;
328         struct thread *a_td;
329     };
330 */
331 static int
332 fuse_vnop_access(struct vop_access_args *ap)
333 {
334         struct vnode *vp = ap->a_vp;
335         int accmode = ap->a_accmode;
336         struct ucred *cred = ap->a_cred;
337
338         struct fuse_data *data = fuse_get_mpdata(vnode_mount(vp));
339
340         int err;
341
342         if (fuse_isdeadfs(vp)) {
343                 if (vnode_isvroot(vp)) {
344                         return 0;
345                 }
346                 return ENXIO;
347         }
348         if (!(data->dataflags & FSESS_INITED)) {
349                 if (vnode_isvroot(vp)) {
350                         if (priv_check_cred(cred, PRIV_VFS_ADMIN) ||
351                             (fuse_match_cred(data->daemoncred, cred) == 0)) {
352                                 return 0;
353                         }
354                 }
355                 return EBADF;
356         }
357         if (vnode_islnk(vp)) {
358                 return 0;
359         }
360
361         err = fuse_internal_access(vp, accmode, ap->a_td, ap->a_cred);
362         return err;
363 }
364
365 /*
366  * struct vop_advlock_args {
367  *      struct vop_generic_args a_gen;
368  *      struct vnode *a_vp;
369  *      void *a_id;
370  *      int a_op;
371  *      struct flock *a_fl;
372  *      int a_flags;
373  * }
374  */
375 static int
376 fuse_vnop_advlock(struct vop_advlock_args *ap)
377 {
378         struct vnode *vp = ap->a_vp;
379         struct flock *fl = ap->a_fl;
380         struct thread *td = curthread;
381         struct ucred *cred = td->td_ucred;
382         pid_t pid = td->td_proc->p_pid;
383         struct fuse_filehandle *fufh;
384         struct fuse_dispatcher fdi;
385         struct fuse_lk_in *fli;
386         struct fuse_lk_out *flo;
387         enum fuse_opcode op;
388         int dataflags, err;
389
390         dataflags = fuse_get_mpdata(vnode_mount(vp))->dataflags;
391
392         if (fuse_isdeadfs(vp)) {
393                 return ENXIO;
394         }
395
396         if (!(dataflags & FSESS_POSIX_LOCKS))
397                 return vop_stdadvlock(ap);
398
399         err = fuse_filehandle_get_anyflags(vp, &fufh, cred, pid);
400         if (err)
401                 return err;
402
403         fdisp_init(&fdi, sizeof(*fli));
404
405         switch(ap->a_op) {
406         case F_GETLK:
407                 op = FUSE_GETLK;
408                 break;
409         case F_SETLK:
410                 op = FUSE_SETLK;
411                 break;
412         case F_SETLKW:
413                 op = FUSE_SETLKW;
414                 break;
415         default:
416                 return EINVAL;
417         }
418
419         fdisp_make_vp(&fdi, op, vp, td, cred);
420         fli = fdi.indata;
421         fli->fh = fufh->fh_id;
422         fli->owner = fl->l_pid;
423         fli->lk.start = fl->l_start;
424         if (fl->l_len != 0)
425                 fli->lk.end = fl->l_start + fl->l_len - 1;
426         else
427                 fli->lk.end = INT64_MAX;
428         fli->lk.type = fl->l_type;
429         fli->lk.pid = fl->l_pid;
430
431         err = fdisp_wait_answ(&fdi);
432         fdisp_destroy(&fdi);
433
434         if (err == 0 && op == FUSE_GETLK) {
435                 flo = fdi.answ;
436                 fl->l_type = flo->lk.type;
437                 fl->l_pid = flo->lk.pid;
438                 if (flo->lk.type != F_UNLCK) {
439                         fl->l_start = flo->lk.start;
440                         if (flo->lk.end == INT64_MAX)
441                                 fl->l_len = 0;
442                         else
443                                 fl->l_len = flo->lk.end - flo->lk.start + 1;
444                         fl->l_start = flo->lk.start;
445                 }
446         }
447
448         return err;
449 }
450
451 /*
452     struct vop_close_args {
453         struct vnode *a_vp;
454         int  a_fflag;
455         struct ucred *a_cred;
456         struct thread *a_td;
457     };
458 */
459 static int
460 fuse_vnop_close(struct vop_close_args *ap)
461 {
462         struct vnode *vp = ap->a_vp;
463         struct ucred *cred = ap->a_cred;
464         int fflag = ap->a_fflag;
465         struct thread *td = ap->a_td;
466         pid_t pid = td->td_proc->p_pid;
467         int err = 0;
468
469         if (fuse_isdeadfs(vp))
470                 return 0;
471         if (vnode_isdir(vp))
472                 return 0;
473         if (fflag & IO_NDELAY)
474                 return 0;
475
476         err = fuse_flush(vp, cred, pid, fflag);
477         /* TODO: close the file handle, if we're sure it's no longer used */
478         if ((VTOFUD(vp)->flag & FN_SIZECHANGE) != 0) {
479                 fuse_vnode_savesize(vp, cred, td->td_proc->p_pid);
480         }
481         return err;
482 }
483
484 static void
485 fdisp_make_mknod_for_fallback(
486         struct fuse_dispatcher *fdip,
487         struct componentname *cnp,
488         struct vnode *dvp,
489         uint64_t parentnid,
490         struct thread *td,
491         struct ucred *cred,
492         mode_t mode,
493         enum fuse_opcode *op)
494 {
495         struct fuse_mknod_in *fmni;
496
497         fdisp_init(fdip, sizeof(*fmni) + cnp->cn_namelen + 1);
498         *op = FUSE_MKNOD;
499         fdisp_make(fdip, *op, vnode_mount(dvp), parentnid, td, cred);
500         fmni = fdip->indata;
501         fmni->mode = mode;
502         fmni->rdev = 0;
503         memcpy((char *)fdip->indata + sizeof(*fmni), cnp->cn_nameptr,
504             cnp->cn_namelen);
505         ((char *)fdip->indata)[sizeof(*fmni) + cnp->cn_namelen] = '\0';
506 }
507 /*
508     struct vnop_create_args {
509         struct vnode *a_dvp;
510         struct vnode **a_vpp;
511         struct componentname *a_cnp;
512         struct vattr *a_vap;
513     };
514 */
515 static int
516 fuse_vnop_create(struct vop_create_args *ap)
517 {
518         struct vnode *dvp = ap->a_dvp;
519         struct vnode **vpp = ap->a_vpp;
520         struct componentname *cnp = ap->a_cnp;
521         struct vattr *vap = ap->a_vap;
522         struct thread *td = cnp->cn_thread;
523         struct ucred *cred = cnp->cn_cred;
524
525         struct fuse_open_in *foi;
526         struct fuse_entry_out *feo;
527         struct fuse_open_out *foo;
528         struct fuse_dispatcher fdi, fdi2;
529         struct fuse_dispatcher *fdip = &fdi;
530         struct fuse_dispatcher *fdip2 = NULL;
531
532         int err;
533
534         struct mount *mp = vnode_mount(dvp);
535         uint64_t parentnid = VTOFUD(dvp)->nid;
536         mode_t mode = MAKEIMODE(vap->va_type, vap->va_mode);
537         enum fuse_opcode op;
538         int flags;
539
540         if (fuse_isdeadfs(dvp))
541                 return ENXIO;
542
543         /* FUSE expects sockets to be created with FUSE_MKNOD */
544         if (vap->va_type == VSOCK)
545                 return fuse_internal_mknod(dvp, vpp, cnp, vap);
546
547         /* 
548          * VOP_CREATE doesn't tell us the open(2) flags, so we guess.  Only a
549          * writable mode makes sense, and we might as well include readability
550          * too.
551          */
552         flags = O_RDWR;
553
554         bzero(&fdi, sizeof(fdi));
555
556         if (vap->va_type != VREG)
557                 return (EINVAL);
558
559         if (!fsess_isimpl(mp, FUSE_CREATE) || vap->va_type == VSOCK) {
560                 /* Fallback to FUSE_MKNOD/FUSE_OPEN */
561                 fdisp_make_mknod_for_fallback(fdip, cnp, dvp, parentnid, td,
562                         cred, mode, &op);
563         } else {
564                 /* Use FUSE_CREATE */
565                 op = FUSE_CREATE;
566                 fdisp_init(fdip, sizeof(*foi) + cnp->cn_namelen + 1);
567                 fdisp_make(fdip, op, vnode_mount(dvp), parentnid, td, cred);
568                 foi = fdip->indata;
569                 foi->mode = mode;
570                 foi->flags = O_CREAT | flags;
571                 memcpy((char *)fdip->indata + sizeof(*foi), cnp->cn_nameptr,
572                     cnp->cn_namelen);
573                 ((char *)fdip->indata)[sizeof(*foi) + cnp->cn_namelen] = '\0';
574         }
575
576         err = fdisp_wait_answ(fdip);
577
578         if (err) {
579                 if (err == ENOSYS && op == FUSE_CREATE) {
580                         fsess_set_notimpl(mp, FUSE_CREATE);
581                         fdisp_make_mknod_for_fallback(fdip, cnp, dvp,
582                                 parentnid, td, cred, mode, &op);
583                         err = fdisp_wait_answ(fdip);
584                 }
585                 if (err)
586                         goto out;
587         }
588
589         feo = fdip->answ;
590
591         if ((err = fuse_internal_checkentry(feo, vap->va_type))) {
592                 goto out;
593         }
594
595         if (op == FUSE_CREATE) {
596                 foo = (struct fuse_open_out*)(feo + 1);
597         } else {
598                 /* Issue a separate FUSE_OPEN */
599                 fdip2 = &fdi2;
600                 fdisp_init(fdip2, sizeof(*foi));
601                 fdisp_make(fdip2, FUSE_OPEN, vnode_mount(dvp), feo->nodeid, td,
602                         cred);
603                 foi = fdip2->indata;
604                 foi->mode = mode;
605                 foi->flags = flags;
606                 err = fdisp_wait_answ(fdip2);
607                 if (err)
608                         goto out;
609                 foo = fdip2->answ;
610         }
611         err = fuse_vnode_get(mp, feo, feo->nodeid, dvp, vpp, cnp, vap->va_type);
612         if (err) {
613                 struct fuse_release_in *fri;
614                 uint64_t nodeid = feo->nodeid;
615                 uint64_t fh_id = foo->fh;
616
617                 fdisp_init(fdip, sizeof(*fri));
618                 fdisp_make(fdip, FUSE_RELEASE, mp, nodeid, td, cred);
619                 fri = fdip->indata;
620                 fri->fh = fh_id;
621                 fri->flags = flags;
622                 fuse_insert_callback(fdip->tick, fuse_internal_forget_callback);
623                 fuse_insert_message(fdip->tick, false);
624                 goto out;
625         }
626         ASSERT_VOP_ELOCKED(*vpp, "fuse_vnop_create");
627         fuse_internal_cache_attrs(*vpp, &feo->attr, feo->attr_valid,
628                 feo->attr_valid_nsec, NULL);
629
630         fuse_filehandle_init(*vpp, FUFH_RDWR, NULL, td, cred, foo);
631         fuse_vnode_open(*vpp, foo->open_flags, td);
632         /* 
633          * Purge the parent's attribute cache because the daemon should've
634          * updated its mtime and ctime
635          */
636         fuse_vnode_clear_attr_cache(dvp);
637         cache_purge_negative(dvp);
638
639 out:
640         if (fdip2)
641                 fdisp_destroy(fdip2);
642         fdisp_destroy(fdip);
643         return err;
644 }
645
646 /*
647     struct vnop_fdatasync_args {
648         struct vop_generic_args a_gen;
649         struct vnode * a_vp;
650         struct thread * a_td;
651     };
652 */
653 static int
654 fuse_vnop_fdatasync(struct vop_fdatasync_args *ap)
655 {
656         struct vnode *vp = ap->a_vp;
657         struct thread *td = ap->a_td;
658         int waitfor = MNT_WAIT;
659
660         int err = 0;
661
662         if (fuse_isdeadfs(vp)) {
663                 return 0;
664         }
665         if ((err = vop_stdfdatasync_buf(ap)))
666                 return err;
667
668         return fuse_internal_fsync(vp, td, waitfor, true);
669 }
670
671 /*
672     struct vnop_fsync_args {
673         struct vop_generic_args a_gen;
674         struct vnode * a_vp;
675         int  a_waitfor;
676         struct thread * a_td;
677     };
678 */
679 static int
680 fuse_vnop_fsync(struct vop_fsync_args *ap)
681 {
682         struct vnode *vp = ap->a_vp;
683         struct thread *td = ap->a_td;
684         int waitfor = ap->a_waitfor;
685         int err = 0;
686
687         if (fuse_isdeadfs(vp)) {
688                 return 0;
689         }
690         if ((err = vop_stdfsync(ap)))
691                 return err;
692
693         return fuse_internal_fsync(vp, td, waitfor, false);
694 }
695
696 /*
697     struct vnop_getattr_args {
698         struct vnode *a_vp;
699         struct vattr *a_vap;
700         struct ucred *a_cred;
701         struct thread *a_td;
702     };
703 */
704 static int
705 fuse_vnop_getattr(struct vop_getattr_args *ap)
706 {
707         struct vnode *vp = ap->a_vp;
708         struct vattr *vap = ap->a_vap;
709         struct ucred *cred = ap->a_cred;
710         struct thread *td = curthread;
711
712         int err = 0;
713         int dataflags;
714
715         dataflags = fuse_get_mpdata(vnode_mount(vp))->dataflags;
716
717         /* Note that we are not bailing out on a dead file system just yet. */
718
719         if (!(dataflags & FSESS_INITED)) {
720                 if (!vnode_isvroot(vp)) {
721                         fdata_set_dead(fuse_get_mpdata(vnode_mount(vp)));
722                         err = ENOTCONN;
723                         return err;
724                 } else {
725                         goto fake;
726                 }
727         }
728         err = fuse_internal_getattr(vp, vap, cred, td);
729         if (err == ENOTCONN && vnode_isvroot(vp)) {
730                 /* see comment in fuse_vfsop_statfs() */
731                 goto fake;
732         } else {
733                 return err;
734         }
735
736 fake:
737         bzero(vap, sizeof(*vap));
738         vap->va_type = vnode_vtype(vp);
739
740         return 0;
741 }
742
743 /*
744     struct vnop_inactive_args {
745         struct vnode *a_vp;
746         struct thread *a_td;
747     };
748 */
749 static int
750 fuse_vnop_inactive(struct vop_inactive_args *ap)
751 {
752         struct vnode *vp = ap->a_vp;
753         struct thread *td = ap->a_td;
754
755         struct fuse_vnode_data *fvdat = VTOFUD(vp);
756         struct fuse_filehandle *fufh, *fufh_tmp;
757
758         int need_flush = 1;
759
760         LIST_FOREACH_SAFE(fufh, &fvdat->handles, next, fufh_tmp) {
761                 if (need_flush && vp->v_type == VREG) {
762                         if ((VTOFUD(vp)->flag & FN_SIZECHANGE) != 0) {
763                                 fuse_vnode_savesize(vp, NULL, 0);
764                         }
765                         if ((fvdat->flag & FN_REVOKED) != 0)
766                                 fuse_io_invalbuf(vp, td);
767                         else
768                                 fuse_io_flushbuf(vp, MNT_WAIT, td);
769                         need_flush = 0;
770                 }
771                 fuse_filehandle_close(vp, fufh, td, NULL);
772         }
773
774         if ((fvdat->flag & FN_REVOKED) != 0 && fuse_reclaim_revoked) {
775                 vrecycle(vp);
776         }
777         return 0;
778 }
779
780 /*
781     struct vnop_link_args {
782         struct vnode *a_tdvp;
783         struct vnode *a_vp;
784         struct componentname *a_cnp;
785     };
786 */
787 static int
788 fuse_vnop_link(struct vop_link_args *ap)
789 {
790         struct vnode *vp = ap->a_vp;
791         struct vnode *tdvp = ap->a_tdvp;
792         struct componentname *cnp = ap->a_cnp;
793
794         struct vattr *vap = VTOVA(vp);
795
796         struct fuse_dispatcher fdi;
797         struct fuse_entry_out *feo;
798         struct fuse_link_in fli;
799
800         int err;
801
802         if (fuse_isdeadfs(vp)) {
803                 return ENXIO;
804         }
805         if (vnode_mount(tdvp) != vnode_mount(vp)) {
806                 return EXDEV;
807         }
808
809         /*
810          * This is a seatbelt check to protect naive userspace filesystems from
811          * themselves and the limitations of the FUSE IPC protocol.  If a
812          * filesystem does not allow attribute caching, assume it is capable of
813          * validating that nlink does not overflow.
814          */
815         if (vap != NULL && vap->va_nlink >= FUSE_LINK_MAX)
816                 return EMLINK;
817         fli.oldnodeid = VTOI(vp);
818
819         fdisp_init(&fdi, 0);
820         fuse_internal_newentry_makerequest(vnode_mount(tdvp), VTOI(tdvp), cnp,
821             FUSE_LINK, &fli, sizeof(fli), &fdi);
822         if ((err = fdisp_wait_answ(&fdi))) {
823                 goto out;
824         }
825         feo = fdi.answ;
826
827         err = fuse_internal_checkentry(feo, vnode_vtype(vp));
828         if (!err) {
829                 /* 
830                  * Purge the parent's attribute cache because the daemon
831                  * should've updated its mtime and ctime
832                  */
833                 fuse_vnode_clear_attr_cache(tdvp);
834                 fuse_internal_cache_attrs(vp, &feo->attr, feo->attr_valid,
835                         feo->attr_valid_nsec, NULL);
836         }
837 out:
838         fdisp_destroy(&fdi);
839         return err;
840 }
841
842 struct fuse_lookup_alloc_arg {
843         struct fuse_entry_out *feo;
844         struct componentname *cnp;
845         uint64_t nid;
846         enum vtype vtyp;
847 };
848
849 /* Callback for vn_get_ino */
850 static int
851 fuse_lookup_alloc(struct mount *mp, void *arg, int lkflags, struct vnode **vpp)
852 {
853         struct fuse_lookup_alloc_arg *flaa = arg;
854
855         return fuse_vnode_get(mp, flaa->feo, flaa->nid, NULL, vpp, flaa->cnp,
856                 flaa->vtyp);
857 }
858
859 SDT_PROBE_DEFINE3(fusefs, , vnops, cache_lookup,
860         "int", "struct timespec*", "struct timespec*");
861 /*
862     struct vnop_lookup_args {
863         struct vnodeop_desc *a_desc;
864         struct vnode *a_dvp;
865         struct vnode **a_vpp;
866         struct componentname *a_cnp;
867     };
868 */
869 int
870 fuse_vnop_lookup(struct vop_lookup_args *ap)
871 {
872         struct vnode *dvp = ap->a_dvp;
873         struct vnode **vpp = ap->a_vpp;
874         struct componentname *cnp = ap->a_cnp;
875         struct thread *td = cnp->cn_thread;
876         struct ucred *cred = cnp->cn_cred;
877
878         int nameiop = cnp->cn_nameiop;
879         int flags = cnp->cn_flags;
880         int wantparent = flags & (LOCKPARENT | WANTPARENT);
881         int islastcn = flags & ISLASTCN;
882         struct mount *mp = vnode_mount(dvp);
883
884         int err = 0;
885         int lookup_err = 0;
886         struct vnode *vp = NULL;
887
888         struct fuse_dispatcher fdi;
889         bool did_lookup = false;
890         struct fuse_entry_out *feo = NULL;
891         enum vtype vtyp;        /* vnode type of target */
892         off_t filesize;         /* filesize of target */
893
894         uint64_t nid;
895
896         if (fuse_isdeadfs(dvp)) {
897                 *vpp = NULL;
898                 return ENXIO;
899         }
900         if (!vnode_isdir(dvp))
901                 return ENOTDIR;
902
903         if (islastcn && vfs_isrdonly(mp) && (nameiop != LOOKUP))
904                 return EROFS;
905
906         if ((err = fuse_internal_access(dvp, VEXEC, td, cred)))
907                 return err;
908
909         if (flags & ISDOTDOT) {
910                 nid = VTOFUD(dvp)->parent_nid;
911                 if (nid == 0)
912                         return ENOENT;
913                 /* .. is obviously a directory */
914                 vtyp = VDIR;
915                 filesize = 0;
916         } else if (cnp->cn_namelen == 1 && *(cnp->cn_nameptr) == '.') {
917                 nid = VTOI(dvp);
918                 /* . is obviously a directory */
919                 vtyp = VDIR;
920                 filesize = 0;
921         } else {
922                 struct timespec now, timeout;
923
924                 err = cache_lookup(dvp, vpp, cnp, &timeout, NULL);
925                 getnanouptime(&now);
926                 SDT_PROBE3(fusefs, , vnops, cache_lookup, err, &timeout, &now);
927                 switch (err) {
928                 case -1:                /* positive match */
929                         if (timespeccmp(&timeout, &now, >)) {
930                                 atomic_add_acq_long(&fuse_lookup_cache_hits, 1);
931                         } else {
932                                 /* Cache timeout */
933                                 atomic_add_acq_long(&fuse_lookup_cache_misses,
934                                         1);
935                                 cache_purge(*vpp);
936                                 if (dvp != *vpp)
937                                         vput(*vpp);
938                                 else 
939                                         vrele(*vpp);
940                                 *vpp = NULL;
941                                 break;
942                         }
943                         return 0;
944
945                 case 0:         /* no match in cache */
946                         atomic_add_acq_long(&fuse_lookup_cache_misses, 1);
947                         break;
948
949                 case ENOENT:            /* negative match */
950                         getnanouptime(&now);
951                         if (timespeccmp(&timeout, &now, <=)) {
952                                 /* Cache timeout */
953                                 cache_purge_negative(dvp);
954                                 break;
955                         }
956                         /* fall through */
957                 default:
958                         return err;
959                 }
960
961                 nid = VTOI(dvp);
962                 fdisp_init(&fdi, cnp->cn_namelen + 1);
963                 fdisp_make(&fdi, FUSE_LOOKUP, mp, nid, td, cred);
964
965                 memcpy(fdi.indata, cnp->cn_nameptr, cnp->cn_namelen);
966                 ((char *)fdi.indata)[cnp->cn_namelen] = '\0';
967                 lookup_err = fdisp_wait_answ(&fdi);
968                 did_lookup = true;
969
970                 if (!lookup_err) {
971                         /* lookup call succeeded */
972                         nid = ((struct fuse_entry_out *)fdi.answ)->nodeid;
973                         feo = (struct fuse_entry_out *)fdi.answ;
974                         if (nid == 0) {
975                                 /* zero nodeid means ENOENT and cache it */
976                                 struct timespec timeout;
977
978                                 fdi.answ_stat = ENOENT;
979                                 lookup_err = ENOENT;
980                                 if (cnp->cn_flags & MAKEENTRY) {
981                                         fuse_validity_2_timespec(feo, &timeout);
982                                         cache_enter_time(dvp, *vpp, cnp,
983                                                 &timeout, NULL);
984                                 }
985                         } else if (nid == FUSE_ROOT_ID) {
986                                 lookup_err = EINVAL;
987                         }
988                         vtyp = IFTOVT(feo->attr.mode);
989                         filesize = feo->attr.size;
990                 }
991                 if (lookup_err && (!fdi.answ_stat || lookup_err != ENOENT)) {
992                         fdisp_destroy(&fdi);
993                         return lookup_err;
994                 }
995         }
996         /* lookup_err, if non-zero, must be ENOENT at this point */
997
998         if (lookup_err) {
999                 /* Entry not found */
1000                 if ((nameiop == CREATE || nameiop == RENAME) && islastcn) {
1001                         err = fuse_internal_access(dvp, VWRITE, td, cred);
1002                         if (!err) {
1003                                 /*
1004                                  * Set the SAVENAME flag to hold onto the
1005                                  * pathname for use later in VOP_CREATE or
1006                                  * VOP_RENAME.
1007                                  */
1008                                 cnp->cn_flags |= SAVENAME;
1009
1010                                 err = EJUSTRETURN;
1011                         }
1012                 } else {
1013                         err = ENOENT;
1014                 }
1015         } else {
1016                 /* Entry was found */
1017                 if (flags & ISDOTDOT) {
1018                         struct fuse_lookup_alloc_arg flaa;
1019
1020                         flaa.nid = nid;
1021                         flaa.feo = feo;
1022                         flaa.cnp = cnp;
1023                         flaa.vtyp = vtyp;
1024                         err = vn_vget_ino_gen(dvp, fuse_lookup_alloc, &flaa, 0,
1025                                 &vp);
1026                         *vpp = vp;
1027                 } else if (nid == VTOI(dvp)) {
1028                         vref(dvp);
1029                         *vpp = dvp;
1030                 } else {
1031                         struct fuse_vnode_data *fvdat;
1032
1033                         err = fuse_vnode_get(vnode_mount(dvp), feo, nid, dvp,
1034                             &vp, cnp, vtyp);
1035                         if (err)
1036                                 goto out;
1037                         *vpp = vp;
1038
1039                         fuse_vnode_setparent(vp, dvp);
1040
1041                         /*
1042                          * In the case where we are looking up a FUSE node
1043                          * represented by an existing cached vnode, and the
1044                          * true size reported by FUSE_LOOKUP doesn't match
1045                          * the vnode's cached size, fix the vnode cache to
1046                          * match the real object size.
1047                          *
1048                          * We can get here:
1049                          * * following attribute cache expiration, or
1050                          * * due a bug in the daemon, or
1051                          * * the first time that we looked up the file.
1052                          */
1053                         fvdat = VTOFUD(vp);
1054                         if (vnode_isreg(vp) &&
1055                             filesize != fvdat->filesize) {
1056                                 /*
1057                                  * The FN_SIZECHANGE flag reflects a dirty
1058                                  * append.  If userspace lets us know our cache
1059                                  * is invalid, that write was lost.  (Dirty
1060                                  * writes that do not cause append are also
1061                                  * lost, but we don't detect them here.)
1062                                  *
1063                                  * XXX: Maybe disable WB caching on this mount.
1064                                  */
1065                                 if (fvdat->flag & FN_SIZECHANGE)
1066                                         printf("%s: WB cache incoherent on "
1067                                             "%s!\n", __func__,
1068                                             vnode_mount(vp)->mnt_stat.f_mntonname);
1069
1070                                 (void)fuse_vnode_setsize(vp, cred, filesize);
1071                                 fvdat->flag &= ~FN_SIZECHANGE;
1072                         }
1073
1074                         MPASS(feo != NULL);
1075                         fuse_internal_cache_attrs(*vpp, &feo->attr,
1076                                 feo->attr_valid, feo->attr_valid_nsec, NULL);
1077
1078                         if ((nameiop == DELETE || nameiop == RENAME) &&
1079                                 islastcn)
1080                         {
1081                                 struct vattr dvattr;
1082
1083                                 err = fuse_internal_access(dvp, VWRITE, td,
1084                                         cred);
1085                                 if (err != 0)
1086                                         goto out;
1087                                 /* 
1088                                  * if the parent's sticky bit is set, check
1089                                  * whether we're allowed to remove the file.
1090                                  * Need to figure out the vnode locking to make
1091                                  * this work.
1092                                  */
1093                                 fuse_internal_getattr(dvp, &dvattr, cred, td);
1094                                 if ((dvattr.va_mode & S_ISTXT) &&
1095                                         fuse_internal_access(dvp, VADMIN, td,
1096                                                 cred) &&
1097                                         fuse_internal_access(*vpp, VADMIN, td,
1098                                                 cred)) {
1099                                         err = EPERM;
1100                                         goto out;
1101                                 }
1102                         }
1103
1104                         if (islastcn && (
1105                                 (nameiop == DELETE) ||
1106                                 (nameiop == RENAME && wantparent))) {
1107                                 cnp->cn_flags |= SAVENAME;
1108                         }
1109
1110                 }
1111         }
1112 out:
1113         if (err) {
1114                 if (vp != NULL && dvp != vp)
1115                         vput(vp);
1116                 else if (vp != NULL)
1117                         vrele(vp);
1118                 *vpp = NULL;
1119         }
1120         if (did_lookup)
1121                 fdisp_destroy(&fdi);
1122
1123         return err;
1124 }
1125
1126 /*
1127     struct vnop_mkdir_args {
1128         struct vnode *a_dvp;
1129         struct vnode **a_vpp;
1130         struct componentname *a_cnp;
1131         struct vattr *a_vap;
1132     };
1133 */
1134 static int
1135 fuse_vnop_mkdir(struct vop_mkdir_args *ap)
1136 {
1137         struct vnode *dvp = ap->a_dvp;
1138         struct vnode **vpp = ap->a_vpp;
1139         struct componentname *cnp = ap->a_cnp;
1140         struct vattr *vap = ap->a_vap;
1141
1142         struct fuse_mkdir_in fmdi;
1143
1144         if (fuse_isdeadfs(dvp)) {
1145                 return ENXIO;
1146         }
1147         fmdi.mode = MAKEIMODE(vap->va_type, vap->va_mode);
1148
1149         return (fuse_internal_newentry(dvp, vpp, cnp, FUSE_MKDIR, &fmdi,
1150             sizeof(fmdi), VDIR));
1151 }
1152
1153 /*
1154     struct vnop_mknod_args {
1155         struct vnode *a_dvp;
1156         struct vnode **a_vpp;
1157         struct componentname *a_cnp;
1158         struct vattr *a_vap;
1159     };
1160 */
1161 static int
1162 fuse_vnop_mknod(struct vop_mknod_args *ap)
1163 {
1164
1165         struct vnode *dvp = ap->a_dvp;
1166         struct vnode **vpp = ap->a_vpp;
1167         struct componentname *cnp = ap->a_cnp;
1168         struct vattr *vap = ap->a_vap;
1169
1170         if (fuse_isdeadfs(dvp))
1171                 return ENXIO;
1172
1173         return fuse_internal_mknod(dvp, vpp, cnp, vap);
1174 }
1175
1176 /*
1177     struct vnop_open_args {
1178         struct vnode *a_vp;
1179         int  a_mode;
1180         struct ucred *a_cred;
1181         struct thread *a_td;
1182         int a_fdidx; / struct file *a_fp;
1183     };
1184 */
1185 static int
1186 fuse_vnop_open(struct vop_open_args *ap)
1187 {
1188         struct vnode *vp = ap->a_vp;
1189         int a_mode = ap->a_mode;
1190         struct thread *td = ap->a_td;
1191         struct ucred *cred = ap->a_cred;
1192         pid_t pid = td->td_proc->p_pid;
1193         struct fuse_vnode_data *fvdat;
1194
1195         if (fuse_isdeadfs(vp))
1196                 return ENXIO;
1197         if (vp->v_type == VCHR || vp->v_type == VBLK || vp->v_type == VFIFO)
1198                 return (EOPNOTSUPP);
1199         if ((a_mode & (FREAD | FWRITE | FEXEC)) == 0)
1200                 return EINVAL;
1201
1202         fvdat = VTOFUD(vp);
1203
1204         if (fuse_filehandle_validrw(vp, a_mode, cred, pid)) {
1205                 fuse_vnode_open(vp, 0, td);
1206                 return 0;
1207         }
1208
1209         return fuse_filehandle_open(vp, a_mode, NULL, td, cred);
1210 }
1211
1212 static int
1213 fuse_vnop_pathconf(struct vop_pathconf_args *ap)
1214 {
1215
1216         switch (ap->a_name) {
1217         case _PC_FILESIZEBITS:
1218                 *ap->a_retval = 64;
1219                 return (0);
1220         case _PC_NAME_MAX:
1221                 *ap->a_retval = NAME_MAX;
1222                 return (0);
1223         case _PC_LINK_MAX:
1224                 *ap->a_retval = MIN(LONG_MAX, FUSE_LINK_MAX);
1225                 return (0);
1226         case _PC_SYMLINK_MAX:
1227                 *ap->a_retval = MAXPATHLEN;
1228                 return (0);
1229         case _PC_NO_TRUNC:
1230                 *ap->a_retval = 1;
1231                 return (0);
1232         default:
1233                 return (vop_stdpathconf(ap));
1234         }
1235 }
1236
1237 /*
1238     struct vnop_read_args {
1239         struct vnode *a_vp;
1240         struct uio *a_uio;
1241         int  a_ioflag;
1242         struct ucred *a_cred;
1243     };
1244 */
1245 static int
1246 fuse_vnop_read(struct vop_read_args *ap)
1247 {
1248         struct vnode *vp = ap->a_vp;
1249         struct uio *uio = ap->a_uio;
1250         int ioflag = ap->a_ioflag;
1251         struct ucred *cred = ap->a_cred;
1252         pid_t pid = curthread->td_proc->p_pid;
1253
1254         if (fuse_isdeadfs(vp)) {
1255                 return ENXIO;
1256         }
1257
1258         if (VTOFUD(vp)->flag & FN_DIRECTIO) {
1259                 ioflag |= IO_DIRECT;
1260         }
1261
1262         return fuse_io_dispatch(vp, uio, ioflag, false, cred, pid);
1263 }
1264
1265 /*
1266     struct vnop_readdir_args {
1267         struct vnode *a_vp;
1268         struct uio *a_uio;
1269         struct ucred *a_cred;
1270         int *a_eofflag;
1271         int *ncookies;
1272         u_long **a_cookies;
1273     };
1274 */
1275 static int
1276 fuse_vnop_readdir(struct vop_readdir_args *ap)
1277 {
1278         struct vnode *vp = ap->a_vp;
1279         struct uio *uio = ap->a_uio;
1280         struct ucred *cred = ap->a_cred;
1281         struct fuse_filehandle *fufh = NULL;
1282         struct fuse_iov cookediov;
1283         int err = 0;
1284         pid_t pid = curthread->td_proc->p_pid;
1285
1286         if (fuse_isdeadfs(vp)) {
1287                 return ENXIO;
1288         }
1289         if (                            /* XXXIP ((uio_iovcnt(uio) > 1)) || */
1290             (uio_resid(uio) < sizeof(struct dirent))) {
1291                 return EINVAL;
1292         }
1293
1294         err = fuse_filehandle_get_dir(vp, &fufh, cred, pid);
1295         if (err)
1296                 return (err);
1297 #define DIRCOOKEDSIZE FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + MAXNAMLEN + 1)
1298         fiov_init(&cookediov, DIRCOOKEDSIZE);
1299
1300         err = fuse_internal_readdir(vp, uio, fufh, &cookediov);
1301
1302         fiov_teardown(&cookediov);
1303
1304         return err;
1305 }
1306
1307 /*
1308     struct vnop_readlink_args {
1309         struct vnode *a_vp;
1310         struct uio *a_uio;
1311         struct ucred *a_cred;
1312     };
1313 */
1314 static int
1315 fuse_vnop_readlink(struct vop_readlink_args *ap)
1316 {
1317         struct vnode *vp = ap->a_vp;
1318         struct uio *uio = ap->a_uio;
1319         struct ucred *cred = ap->a_cred;
1320
1321         struct fuse_dispatcher fdi;
1322         int err;
1323
1324         if (fuse_isdeadfs(vp)) {
1325                 return ENXIO;
1326         }
1327         if (!vnode_islnk(vp)) {
1328                 return EINVAL;
1329         }
1330         fdisp_init(&fdi, 0);
1331         err = fdisp_simple_putget_vp(&fdi, FUSE_READLINK, vp, curthread, cred);
1332         if (err) {
1333                 goto out;
1334         }
1335         if (((char *)fdi.answ)[0] == '/' &&
1336             fuse_get_mpdata(vnode_mount(vp))->dataflags & FSESS_PUSH_SYMLINKS_IN) {
1337                 char *mpth = vnode_mount(vp)->mnt_stat.f_mntonname;
1338
1339                 err = uiomove(mpth, strlen(mpth), uio);
1340         }
1341         if (!err) {
1342                 err = uiomove(fdi.answ, fdi.iosize, uio);
1343         }
1344 out:
1345         fdisp_destroy(&fdi);
1346         return err;
1347 }
1348
1349 /*
1350     struct vnop_reclaim_args {
1351         struct vnode *a_vp;
1352         struct thread *a_td;
1353     };
1354 */
1355 static int
1356 fuse_vnop_reclaim(struct vop_reclaim_args *ap)
1357 {
1358         struct vnode *vp = ap->a_vp;
1359         struct thread *td = ap->a_td;
1360         struct fuse_vnode_data *fvdat = VTOFUD(vp);
1361         struct fuse_filehandle *fufh, *fufh_tmp;
1362
1363         if (!fvdat) {
1364                 panic("FUSE: no vnode data during recycling");
1365         }
1366         LIST_FOREACH_SAFE(fufh, &fvdat->handles, next, fufh_tmp) {
1367                 printf("FUSE: vnode being reclaimed with open fufh "
1368                         "(type=%#x)", fufh->fufh_type);
1369                 fuse_filehandle_close(vp, fufh, td, NULL);
1370         }
1371
1372         if ((!fuse_isdeadfs(vp)) && (fvdat->nlookup)) {
1373                 fuse_internal_forget_send(vnode_mount(vp), td, NULL, VTOI(vp),
1374                     fvdat->nlookup);
1375         }
1376         fuse_vnode_setparent(vp, NULL);
1377         cache_purge(vp);
1378         vfs_hash_remove(vp);
1379         vnode_destroy_vobject(vp);
1380         fuse_vnode_destroy(vp);
1381
1382         return 0;
1383 }
1384
1385 /*
1386     struct vnop_remove_args {
1387         struct vnode *a_dvp;
1388         struct vnode *a_vp;
1389         struct componentname *a_cnp;
1390     };
1391 */
1392 static int
1393 fuse_vnop_remove(struct vop_remove_args *ap)
1394 {
1395         struct vnode *dvp = ap->a_dvp;
1396         struct vnode *vp = ap->a_vp;
1397         struct componentname *cnp = ap->a_cnp;
1398
1399         int err;
1400
1401         if (fuse_isdeadfs(vp)) {
1402                 return ENXIO;
1403         }
1404         if (vnode_isdir(vp)) {
1405                 return EPERM;
1406         }
1407         cache_purge(vp);
1408
1409         err = fuse_internal_remove(dvp, vp, cnp, FUSE_UNLINK);
1410
1411         if (err == 0) {
1412                 fuse_internal_vnode_disappear(vp);
1413                 /* 
1414                  * Purge the parent's attribute cache because the daemon
1415                  * should've updated its mtime and ctime
1416                  */
1417                 fuse_vnode_clear_attr_cache(dvp);
1418         }
1419         return err;
1420 }
1421
1422 /*
1423     struct vnop_rename_args {
1424         struct vnode *a_fdvp;
1425         struct vnode *a_fvp;
1426         struct componentname *a_fcnp;
1427         struct vnode *a_tdvp;
1428         struct vnode *a_tvp;
1429         struct componentname *a_tcnp;
1430     };
1431 */
1432 static int
1433 fuse_vnop_rename(struct vop_rename_args *ap)
1434 {
1435         struct vnode *fdvp = ap->a_fdvp;
1436         struct vnode *fvp = ap->a_fvp;
1437         struct componentname *fcnp = ap->a_fcnp;
1438         struct vnode *tdvp = ap->a_tdvp;
1439         struct vnode *tvp = ap->a_tvp;
1440         struct componentname *tcnp = ap->a_tcnp;
1441         struct fuse_data *data;
1442         bool newparent = fdvp != tdvp;
1443         bool isdir = fvp->v_type == VDIR;
1444         int err = 0;
1445
1446         if (fuse_isdeadfs(fdvp)) {
1447                 return ENXIO;
1448         }
1449         if (fvp->v_mount != tdvp->v_mount ||
1450             (tvp && fvp->v_mount != tvp->v_mount)) {
1451                 SDT_PROBE2(fusefs, , vnops, trace, 1, "cross-device rename");
1452                 err = EXDEV;
1453                 goto out;
1454         }
1455         cache_purge(fvp);
1456
1457         /*
1458          * FUSE library is expected to check if target directory is not
1459          * under the source directory in the file system tree.
1460          * Linux performs this check at VFS level.
1461          */
1462         /* 
1463          * If source is a directory, and it will get a new parent, user must
1464          * have write permission to it, so ".." can be modified.
1465          */
1466         data = fuse_get_mpdata(vnode_mount(tdvp));
1467         if (data->dataflags & FSESS_DEFAULT_PERMISSIONS && isdir && newparent) {
1468                 err = fuse_internal_access(fvp, VWRITE,
1469                         tcnp->cn_thread, tcnp->cn_cred);
1470                 if (err)
1471                         goto out;
1472         }
1473         sx_xlock(&data->rename_lock);
1474         err = fuse_internal_rename(fdvp, fcnp, tdvp, tcnp);
1475         if (err == 0) {
1476                 if (tdvp != fdvp)
1477                         fuse_vnode_setparent(fvp, tdvp);
1478                 if (tvp != NULL)
1479                         fuse_vnode_setparent(tvp, NULL);
1480         }
1481         sx_unlock(&data->rename_lock);
1482
1483         if (tvp != NULL && tvp != fvp) {
1484                 cache_purge(tvp);
1485         }
1486         if (vnode_isdir(fvp)) {
1487                 if ((tvp != NULL) && vnode_isdir(tvp)) {
1488                         cache_purge(tdvp);
1489                 }
1490                 cache_purge(fdvp);
1491         }
1492 out:
1493         if (tdvp == tvp) {
1494                 vrele(tdvp);
1495         } else {
1496                 vput(tdvp);
1497         }
1498         if (tvp != NULL) {
1499                 vput(tvp);
1500         }
1501         vrele(fdvp);
1502         vrele(fvp);
1503
1504         return err;
1505 }
1506
1507 /*
1508     struct vnop_rmdir_args {
1509             struct vnode *a_dvp;
1510             struct vnode *a_vp;
1511             struct componentname *a_cnp;
1512     } *ap;
1513 */
1514 static int
1515 fuse_vnop_rmdir(struct vop_rmdir_args *ap)
1516 {
1517         struct vnode *dvp = ap->a_dvp;
1518         struct vnode *vp = ap->a_vp;
1519
1520         int err;
1521
1522         if (fuse_isdeadfs(vp)) {
1523                 return ENXIO;
1524         }
1525         if (VTOFUD(vp) == VTOFUD(dvp)) {
1526                 return EINVAL;
1527         }
1528         err = fuse_internal_remove(dvp, vp, ap->a_cnp, FUSE_RMDIR);
1529
1530         if (err == 0) {
1531                 fuse_internal_vnode_disappear(vp);
1532                 /* 
1533                  * Purge the parent's attribute cache because the daemon
1534                  * should've updated its mtime and ctime
1535                  */
1536                 fuse_vnode_clear_attr_cache(dvp);
1537         }
1538         return err;
1539 }
1540
1541 /*
1542     struct vnop_setattr_args {
1543         struct vnode *a_vp;
1544         struct vattr *a_vap;
1545         struct ucred *a_cred;
1546         struct thread *a_td;
1547     };
1548 */
1549 static int
1550 fuse_vnop_setattr(struct vop_setattr_args *ap)
1551 {
1552         struct vnode *vp = ap->a_vp;
1553         struct vattr *vap = ap->a_vap;
1554         struct ucred *cred = ap->a_cred;
1555         struct thread *td = curthread;
1556         struct mount *mp;
1557         struct fuse_data *data;
1558         struct vattr old_va;
1559         int dataflags;
1560         int err = 0, err2;
1561         accmode_t accmode = 0;
1562         bool checkperm;
1563         bool drop_suid = false;
1564         gid_t cr_gid;
1565
1566         mp = vnode_mount(vp);
1567         data = fuse_get_mpdata(mp);
1568         dataflags = data->dataflags;
1569         checkperm = dataflags & FSESS_DEFAULT_PERMISSIONS;
1570         if (cred->cr_ngroups > 0)
1571                 cr_gid = cred->cr_groups[0];
1572         else
1573                 cr_gid = 0;
1574
1575         if (fuse_isdeadfs(vp)) {
1576                 return ENXIO;
1577         }
1578
1579         if (vap->va_uid != (uid_t)VNOVAL) {
1580                 if (checkperm) {
1581                         /* Only root may change a file's owner */
1582                         err = priv_check_cred(cred, PRIV_VFS_CHOWN);
1583                         if (err) {
1584                                 /* As a special case, allow the null chown */
1585                                 err2 = fuse_internal_getattr(vp, &old_va, cred,
1586                                         td);
1587                                 if (err2)
1588                                         return (err2);
1589                                 if (vap->va_uid != old_va.va_uid)
1590                                         return err;
1591                                 else
1592                                         accmode |= VADMIN;
1593                                 drop_suid = true;
1594                         } else
1595                                 accmode |= VADMIN;
1596                 } else
1597                         accmode |= VADMIN;
1598         }
1599         if (vap->va_gid != (gid_t)VNOVAL) {
1600                 if (checkperm && priv_check_cred(cred, PRIV_VFS_CHOWN))
1601                         drop_suid = true;
1602                 if (checkperm && !groupmember(vap->va_gid, cred))
1603                 {
1604                         /*
1605                          * Non-root users may only chgrp to one of their own
1606                          * groups 
1607                          */
1608                         err = priv_check_cred(cred, PRIV_VFS_CHOWN);
1609                         if (err) {
1610                                 /* As a special case, allow the null chgrp */
1611                                 err2 = fuse_internal_getattr(vp, &old_va, cred,
1612                                         td);
1613                                 if (err2)
1614                                         return (err2);
1615                                 if (vap->va_gid != old_va.va_gid)
1616                                         return err;
1617                                 accmode |= VADMIN;
1618                         } else
1619                                 accmode |= VADMIN;
1620                 } else
1621                         accmode |= VADMIN;
1622         }
1623         if (vap->va_size != VNOVAL) {
1624                 switch (vp->v_type) {
1625                 case VDIR:
1626                         return (EISDIR);
1627                 case VLNK:
1628                 case VREG:
1629                         if (vfs_isrdonly(mp))
1630                                 return (EROFS);
1631                         break;
1632                 default:
1633                         /*
1634                          * According to POSIX, the result is unspecified
1635                          * for file types other than regular files,
1636                          * directories and shared memory objects.  We
1637                          * don't support shared memory objects in the file
1638                          * system, and have dubious support for truncating
1639                          * symlinks.  Just ignore the request in other cases.
1640                          */
1641                         return (0);
1642                 }
1643                 /* Don't set accmode.  Permission to trunc is checked upstack */
1644         }
1645         if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
1646                 if (vap->va_vaflags & VA_UTIMES_NULL)
1647                         accmode |= VWRITE;
1648                 else
1649                         accmode |= VADMIN;
1650         }
1651         if (drop_suid) {
1652                 if (vap->va_mode != (mode_t)VNOVAL)
1653                         vap->va_mode &= ~(S_ISUID | S_ISGID);
1654                 else {
1655                         err = fuse_internal_getattr(vp, &old_va, cred, td);
1656                         if (err)
1657                                 return (err);
1658                         vap->va_mode = old_va.va_mode & ~(S_ISUID | S_ISGID);
1659                 }
1660         }
1661         if (vap->va_mode != (mode_t)VNOVAL) {
1662                 /* Only root may set the sticky bit on non-directories */
1663                 if (checkperm && vp->v_type != VDIR && (vap->va_mode & S_ISTXT)
1664                     && priv_check_cred(cred, PRIV_VFS_STICKYFILE))
1665                         return EFTYPE;
1666                 if (checkperm && (vap->va_mode & S_ISGID)) {
1667                         err = fuse_internal_getattr(vp, &old_va, cred, td);
1668                         if (err)
1669                                 return (err);
1670                         if (!groupmember(old_va.va_gid, cred)) {
1671                                 err = priv_check_cred(cred, PRIV_VFS_SETGID);
1672                                 if (err)
1673                                         return (err);
1674                         }
1675                 }
1676                 accmode |= VADMIN;
1677         }
1678
1679         if (vfs_isrdonly(mp))
1680                 return EROFS;
1681
1682         err = fuse_internal_access(vp, accmode, td, cred);
1683         if (err)
1684                 return err;
1685         else
1686                 return fuse_internal_setattr(vp, vap, td, cred);
1687 }
1688
1689 /*
1690     struct vnop_strategy_args {
1691         struct vnode *a_vp;
1692         struct buf *a_bp;
1693     };
1694 */
1695 static int
1696 fuse_vnop_strategy(struct vop_strategy_args *ap)
1697 {
1698         struct vnode *vp = ap->a_vp;
1699         struct buf *bp = ap->a_bp;
1700
1701         if (!vp || fuse_isdeadfs(vp)) {
1702                 bp->b_ioflags |= BIO_ERROR;
1703                 bp->b_error = ENXIO;
1704                 bufdone(bp);
1705                 return 0;
1706         }
1707         if (bp->b_iocmd == BIO_WRITE) {
1708                 int err;
1709
1710                 err = fuse_vnode_refreshsize(vp, NOCRED);
1711                 if (err) {
1712                         bp->b_ioflags |= BIO_ERROR;
1713                         bp->b_error = err;
1714                         bufdone(bp);
1715                         return 0;
1716                 }
1717         }
1718
1719         /*
1720          * VOP_STRATEGY always returns zero and signals error via bp->b_ioflags.
1721          * fuse_io_strategy sets bp's error fields
1722          */
1723         (void)fuse_io_strategy(vp, bp);
1724
1725         return 0;
1726 }
1727
1728
1729 /*
1730     struct vnop_symlink_args {
1731         struct vnode *a_dvp;
1732         struct vnode **a_vpp;
1733         struct componentname *a_cnp;
1734         struct vattr *a_vap;
1735         char *a_target;
1736     };
1737 */
1738 static int
1739 fuse_vnop_symlink(struct vop_symlink_args *ap)
1740 {
1741         struct vnode *dvp = ap->a_dvp;
1742         struct vnode **vpp = ap->a_vpp;
1743         struct componentname *cnp = ap->a_cnp;
1744         const char *target = ap->a_target;
1745
1746         struct fuse_dispatcher fdi;
1747
1748         int err;
1749         size_t len;
1750
1751         if (fuse_isdeadfs(dvp)) {
1752                 return ENXIO;
1753         }
1754         /*
1755          * Unlike the other creator type calls, here we have to create a message
1756          * where the name of the new entry comes first, and the data describing
1757          * the entry comes second.
1758          * Hence we can't rely on our handy fuse_internal_newentry() routine,
1759          * but put together the message manually and just call the core part.
1760          */
1761
1762         len = strlen(target) + 1;
1763         fdisp_init(&fdi, len + cnp->cn_namelen + 1);
1764         fdisp_make_vp(&fdi, FUSE_SYMLINK, dvp, curthread, NULL);
1765
1766         memcpy(fdi.indata, cnp->cn_nameptr, cnp->cn_namelen);
1767         ((char *)fdi.indata)[cnp->cn_namelen] = '\0';
1768         memcpy((char *)fdi.indata + cnp->cn_namelen + 1, target, len);
1769
1770         err = fuse_internal_newentry_core(dvp, vpp, cnp, VLNK, &fdi);
1771         fdisp_destroy(&fdi);
1772         return err;
1773 }
1774
1775 /*
1776     struct vnop_write_args {
1777         struct vnode *a_vp;
1778         struct uio *a_uio;
1779         int  a_ioflag;
1780         struct ucred *a_cred;
1781     };
1782 */
1783 static int
1784 fuse_vnop_write(struct vop_write_args *ap)
1785 {
1786         struct vnode *vp = ap->a_vp;
1787         struct uio *uio = ap->a_uio;
1788         int ioflag = ap->a_ioflag;
1789         struct ucred *cred = ap->a_cred;
1790         pid_t pid = curthread->td_proc->p_pid;
1791         int err;
1792
1793         if (fuse_isdeadfs(vp)) {
1794                 return ENXIO;
1795         }
1796         err = fuse_vnode_refreshsize(vp, cred);
1797         if (err)
1798                 return err;
1799
1800         if (VTOFUD(vp)->flag & FN_DIRECTIO) {
1801                 ioflag |= IO_DIRECT;
1802         }
1803
1804         return fuse_io_dispatch(vp, uio, ioflag, false, cred, pid);
1805 }
1806
1807 SDT_PROBE_DEFINE1(fusefs, , vnops, vnop_getpages_error, "int");
1808 /*
1809     struct vnop_getpages_args {
1810         struct vnode *a_vp;
1811         vm_page_t *a_m;
1812         int a_count;
1813         int a_reqpage;
1814     };
1815 */
1816 static int
1817 fuse_vnop_getpages(struct vop_getpages_args *ap)
1818 {
1819         int i, error, nextoff, size, toff, count, npages;
1820         struct uio uio;
1821         struct iovec iov;
1822         vm_offset_t kva;
1823         struct buf *bp;
1824         struct vnode *vp;
1825         struct thread *td;
1826         struct ucred *cred;
1827         vm_page_t *pages;
1828         pid_t pid = curthread->td_proc->p_pid;
1829
1830         vp = ap->a_vp;
1831         KASSERT(vp->v_object, ("objectless vp passed to getpages"));
1832         td = curthread;                 /* XXX */
1833         cred = curthread->td_ucred;     /* XXX */
1834         pages = ap->a_m;
1835         npages = ap->a_count;
1836
1837         if (!fsess_opt_mmap(vnode_mount(vp))) {
1838                 SDT_PROBE2(fusefs, , vnops, trace, 1,
1839                         "called on non-cacheable vnode??\n");
1840                 return (VM_PAGER_ERROR);
1841         }
1842
1843         /*
1844          * If the last page is partially valid, just return it and allow
1845          * the pager to zero-out the blanks.  Partially valid pages can
1846          * only occur at the file EOF.
1847          *
1848          * XXXGL: is that true for FUSE, which is a local filesystem,
1849          * but still somewhat disconnected from the kernel?
1850          */
1851         VM_OBJECT_WLOCK(vp->v_object);
1852         if (pages[npages - 1]->valid != 0 && --npages == 0)
1853                 goto out;
1854         VM_OBJECT_WUNLOCK(vp->v_object);
1855
1856         /*
1857          * We use only the kva address for the buffer, but this is extremely
1858          * convenient and fast.
1859          */
1860         bp = uma_zalloc(fuse_pbuf_zone, M_WAITOK);
1861
1862         kva = (vm_offset_t)bp->b_data;
1863         pmap_qenter(kva, pages, npages);
1864         VM_CNT_INC(v_vnodein);
1865         VM_CNT_ADD(v_vnodepgsin, npages);
1866
1867         count = npages << PAGE_SHIFT;
1868         iov.iov_base = (caddr_t)kva;
1869         iov.iov_len = count;
1870         uio.uio_iov = &iov;
1871         uio.uio_iovcnt = 1;
1872         uio.uio_offset = IDX_TO_OFF(pages[0]->pindex);
1873         uio.uio_resid = count;
1874         uio.uio_segflg = UIO_SYSSPACE;
1875         uio.uio_rw = UIO_READ;
1876         uio.uio_td = td;
1877
1878         error = fuse_io_dispatch(vp, &uio, IO_DIRECT, true, cred, pid);
1879         pmap_qremove(kva, npages);
1880
1881         uma_zfree(fuse_pbuf_zone, bp);
1882
1883         if (error && (uio.uio_resid == count)) {
1884                 SDT_PROBE1(fusefs, , vnops, vnop_getpages_error, error);
1885                 return VM_PAGER_ERROR;
1886         }
1887         /*
1888          * Calculate the number of bytes read and validate only that number
1889          * of bytes.  Note that due to pending writes, size may be 0.  This
1890          * does not mean that the remaining data is invalid!
1891          */
1892
1893         size = count - uio.uio_resid;
1894         VM_OBJECT_WLOCK(vp->v_object);
1895         fuse_vm_page_lock_queues();
1896         for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
1897                 vm_page_t m;
1898
1899                 nextoff = toff + PAGE_SIZE;
1900                 m = pages[i];
1901
1902                 if (nextoff <= size) {
1903                         /*
1904                          * Read operation filled an entire page
1905                          */
1906                         m->valid = VM_PAGE_BITS_ALL;
1907                         KASSERT(m->dirty == 0,
1908                             ("fuse_getpages: page %p is dirty", m));
1909                 } else if (size > toff) {
1910                         /*
1911                          * Read operation filled a partial page.
1912                          */
1913                         m->valid = 0;
1914                         vm_page_set_valid_range(m, 0, size - toff);
1915                         KASSERT(m->dirty == 0,
1916                             ("fuse_getpages: page %p is dirty", m));
1917                 } else {
1918                         /*
1919                          * Read operation was short.  If no error occurred
1920                          * we may have hit a zero-fill section.   We simply
1921                          * leave valid set to 0.
1922                          */
1923                         ;
1924                 }
1925         }
1926         fuse_vm_page_unlock_queues();
1927 out:
1928         VM_OBJECT_WUNLOCK(vp->v_object);
1929         if (ap->a_rbehind)
1930                 *ap->a_rbehind = 0;
1931         if (ap->a_rahead)
1932                 *ap->a_rahead = 0;
1933         return (VM_PAGER_OK);
1934 }
1935
1936 /*
1937     struct vnop_putpages_args {
1938         struct vnode *a_vp;
1939         vm_page_t *a_m;
1940         int a_count;
1941         int a_sync;
1942         int *a_rtvals;
1943         vm_ooffset_t a_offset;
1944     };
1945 */
1946 static int
1947 fuse_vnop_putpages(struct vop_putpages_args *ap)
1948 {
1949         struct uio uio;
1950         struct iovec iov;
1951         vm_offset_t kva;
1952         struct buf *bp;
1953         int i, error, npages, count;
1954         off_t offset;
1955         int *rtvals;
1956         struct vnode *vp;
1957         struct thread *td;
1958         struct ucred *cred;
1959         vm_page_t *pages;
1960         vm_ooffset_t fsize;
1961         pid_t pid = curthread->td_proc->p_pid;
1962
1963         vp = ap->a_vp;
1964         KASSERT(vp->v_object, ("objectless vp passed to putpages"));
1965         fsize = vp->v_object->un_pager.vnp.vnp_size;
1966         td = curthread;                 /* XXX */
1967         cred = curthread->td_ucred;     /* XXX */
1968         pages = ap->a_m;
1969         count = ap->a_count;
1970         rtvals = ap->a_rtvals;
1971         npages = btoc(count);
1972         offset = IDX_TO_OFF(pages[0]->pindex);
1973
1974         if (!fsess_opt_mmap(vnode_mount(vp))) {
1975                 SDT_PROBE2(fusefs, , vnops, trace, 1,
1976                         "called on non-cacheable vnode??\n");
1977         }
1978         for (i = 0; i < npages; i++)
1979                 rtvals[i] = VM_PAGER_AGAIN;
1980
1981         /*
1982          * When putting pages, do not extend file past EOF.
1983          */
1984
1985         if (offset + count > fsize) {
1986                 count = fsize - offset;
1987                 if (count < 0)
1988                         count = 0;
1989         }
1990         /*
1991          * We use only the kva address for the buffer, but this is extremely
1992          * convenient and fast.
1993          */
1994         bp = uma_zalloc(fuse_pbuf_zone, M_WAITOK);
1995
1996         kva = (vm_offset_t)bp->b_data;
1997         pmap_qenter(kva, pages, npages);
1998         VM_CNT_INC(v_vnodeout);
1999         VM_CNT_ADD(v_vnodepgsout, count);
2000
2001         iov.iov_base = (caddr_t)kva;
2002         iov.iov_len = count;
2003         uio.uio_iov = &iov;
2004         uio.uio_iovcnt = 1;
2005         uio.uio_offset = offset;
2006         uio.uio_resid = count;
2007         uio.uio_segflg = UIO_SYSSPACE;
2008         uio.uio_rw = UIO_WRITE;
2009         uio.uio_td = td;
2010
2011         error = fuse_io_dispatch(vp, &uio, IO_DIRECT, true, cred, pid);
2012
2013         pmap_qremove(kva, npages);
2014         uma_zfree(fuse_pbuf_zone, bp);
2015
2016         if (!error) {
2017                 int nwritten = round_page(count - uio.uio_resid) / PAGE_SIZE;
2018
2019                 for (i = 0; i < nwritten; i++) {
2020                         rtvals[i] = VM_PAGER_OK;
2021                         VM_OBJECT_WLOCK(pages[i]->object);
2022                         vm_page_undirty(pages[i]);
2023                         VM_OBJECT_WUNLOCK(pages[i]->object);
2024                 }
2025         }
2026         return rtvals[0];
2027 }
2028
2029 static const char extattr_namespace_separator = '.';
2030
2031 /*
2032     struct vop_getextattr_args {
2033         struct vop_generic_args a_gen;
2034         struct vnode *a_vp;
2035         int a_attrnamespace;
2036         const char *a_name;
2037         struct uio *a_uio;
2038         size_t *a_size;
2039         struct ucred *a_cred;
2040         struct thread *a_td;
2041     };
2042 */
2043 static int
2044 fuse_vnop_getextattr(struct vop_getextattr_args *ap)
2045 {
2046         struct vnode *vp = ap->a_vp;
2047         struct uio *uio = ap->a_uio;
2048         struct fuse_dispatcher fdi;
2049         struct fuse_getxattr_in *get_xattr_in;
2050         struct fuse_getxattr_out *get_xattr_out;
2051         struct mount *mp = vnode_mount(vp);
2052         struct thread *td = ap->a_td;
2053         struct ucred *cred = ap->a_cred;
2054         char *prefix;
2055         char *attr_str;
2056         size_t len;
2057         int err;
2058
2059         if (fuse_isdeadfs(vp))
2060                 return (ENXIO);
2061
2062         if (!fsess_isimpl(mp, FUSE_GETXATTR))
2063                 return EOPNOTSUPP;
2064
2065         err = fuse_extattr_check_cred(vp, ap->a_attrnamespace, cred, td, VREAD);
2066         if (err)
2067                 return err;
2068
2069         /* Default to looking for user attributes. */
2070         if (ap->a_attrnamespace == EXTATTR_NAMESPACE_SYSTEM)
2071                 prefix = EXTATTR_NAMESPACE_SYSTEM_STRING;
2072         else
2073                 prefix = EXTATTR_NAMESPACE_USER_STRING;
2074
2075         len = strlen(prefix) + sizeof(extattr_namespace_separator) +
2076             strlen(ap->a_name) + 1;
2077
2078         fdisp_init(&fdi, len + sizeof(*get_xattr_in));
2079         fdisp_make_vp(&fdi, FUSE_GETXATTR, vp, td, cred);
2080
2081         get_xattr_in = fdi.indata;
2082         /*
2083          * Check to see whether we're querying the available size or
2084          * issuing the actual request.  If we pass in 0, we get back struct
2085          * fuse_getxattr_out.  If we pass in a non-zero size, we get back
2086          * that much data, without the struct fuse_getxattr_out header.
2087          */
2088         if (uio == NULL)
2089                 get_xattr_in->size = 0;
2090         else
2091                 get_xattr_in->size = uio->uio_resid;
2092
2093         attr_str = (char *)fdi.indata + sizeof(*get_xattr_in);
2094         snprintf(attr_str, len, "%s%c%s", prefix, extattr_namespace_separator,
2095             ap->a_name);
2096
2097         err = fdisp_wait_answ(&fdi);
2098         if (err != 0) {
2099                 if (err == ENOSYS) {
2100                         fsess_set_notimpl(mp, FUSE_GETXATTR);
2101                         err = EOPNOTSUPP;
2102                 }
2103                 goto out;
2104         }
2105
2106         get_xattr_out = fdi.answ;
2107
2108         if (ap->a_size != NULL)
2109                 *ap->a_size = get_xattr_out->size;
2110
2111         if (uio != NULL)
2112                 err = uiomove(fdi.answ, fdi.iosize, uio);
2113
2114 out:
2115         fdisp_destroy(&fdi);
2116         return (err);
2117 }
2118
2119 /*
2120     struct vop_setextattr_args {
2121         struct vop_generic_args a_gen;
2122         struct vnode *a_vp;
2123         int a_attrnamespace;
2124         const char *a_name;
2125         struct uio *a_uio;
2126         struct ucred *a_cred;
2127         struct thread *a_td;
2128     };
2129 */
2130 static int
2131 fuse_vnop_setextattr(struct vop_setextattr_args *ap)
2132 {
2133         struct vnode *vp = ap->a_vp;
2134         struct uio *uio = ap->a_uio;
2135         struct fuse_dispatcher fdi;
2136         struct fuse_setxattr_in *set_xattr_in;
2137         struct mount *mp = vnode_mount(vp);
2138         struct thread *td = ap->a_td;
2139         struct ucred *cred = ap->a_cred;
2140         char *prefix;
2141         size_t len;
2142         char *attr_str;
2143         int err;
2144         
2145         if (fuse_isdeadfs(vp))
2146                 return (ENXIO);
2147
2148         if (!fsess_isimpl(mp, FUSE_SETXATTR))
2149                 return EOPNOTSUPP;
2150
2151         if (vfs_isrdonly(mp))
2152                 return EROFS;
2153
2154         /* Deleting xattrs must use VOP_DELETEEXTATTR instead */
2155         if (ap->a_uio == NULL) {
2156                 /*
2157                  * If we got here as fallback from VOP_DELETEEXTATTR, then
2158                  * return EOPNOTSUPP.
2159                  */
2160                 if (!fsess_isimpl(mp, FUSE_REMOVEXATTR))
2161                         return (EOPNOTSUPP);
2162                 else
2163                         return (EINVAL);
2164         }
2165
2166         err = fuse_extattr_check_cred(vp, ap->a_attrnamespace, cred, td,
2167                 VWRITE);
2168         if (err)
2169                 return err;
2170
2171         /* Default to looking for user attributes. */
2172         if (ap->a_attrnamespace == EXTATTR_NAMESPACE_SYSTEM)
2173                 prefix = EXTATTR_NAMESPACE_SYSTEM_STRING;
2174         else
2175                 prefix = EXTATTR_NAMESPACE_USER_STRING;
2176
2177         len = strlen(prefix) + sizeof(extattr_namespace_separator) +
2178             strlen(ap->a_name) + 1;
2179
2180         fdisp_init(&fdi, len + sizeof(*set_xattr_in) + uio->uio_resid);
2181         fdisp_make_vp(&fdi, FUSE_SETXATTR, vp, td, cred);
2182
2183         set_xattr_in = fdi.indata;
2184         set_xattr_in->size = uio->uio_resid;
2185
2186         attr_str = (char *)fdi.indata + sizeof(*set_xattr_in);
2187         snprintf(attr_str, len, "%s%c%s", prefix, extattr_namespace_separator,
2188             ap->a_name);
2189
2190         err = uiomove((char *)fdi.indata + sizeof(*set_xattr_in) + len,
2191             uio->uio_resid, uio);
2192         if (err != 0) {
2193                 goto out;
2194         }
2195
2196         err = fdisp_wait_answ(&fdi);
2197
2198         if (err == ENOSYS) {
2199                 fsess_set_notimpl(mp, FUSE_SETXATTR);
2200                 err = EOPNOTSUPP;
2201         }
2202         if (err == ERESTART) {
2203                 /* Can't restart after calling uiomove */
2204                 err = EINTR;
2205         }
2206
2207 out:
2208         fdisp_destroy(&fdi);
2209         return (err);
2210 }
2211
2212 /*
2213  * The Linux / FUSE extended attribute list is simply a collection of
2214  * NUL-terminated strings.  The FreeBSD extended attribute list is a single
2215  * byte length followed by a non-NUL terminated string.  So, this allows
2216  * conversion of the Linux / FUSE format to the FreeBSD format in place.
2217  * Linux attribute names are reported with the namespace as a prefix (e.g.
2218  * "user.attribute_name"), but in FreeBSD they are reported without the
2219  * namespace prefix (e.g. "attribute_name").  So, we're going from:
2220  *
2221  * user.attr_name1\0user.attr_name2\0
2222  *
2223  * to:
2224  *
2225  * <num>attr_name1<num>attr_name2
2226  *
2227  * Where "<num>" is a single byte number of characters in the attribute name.
2228  * 
2229  * Args:
2230  * prefix - exattr namespace prefix string
2231  * list, list_len - input list with namespace prefixes
2232  * bsd_list, bsd_list_len - output list compatible with bsd vfs
2233  */
2234 static int
2235 fuse_xattrlist_convert(char *prefix, const char *list, int list_len,
2236     char *bsd_list, int *bsd_list_len)
2237 {
2238         int len, pos, dist_to_next, prefix_len;
2239
2240         pos = 0;
2241         *bsd_list_len = 0;
2242         prefix_len = strlen(prefix);
2243
2244         while (pos < list_len && list[pos] != '\0') {
2245                 dist_to_next = strlen(&list[pos]) + 1;
2246                 if (bcmp(&list[pos], prefix, prefix_len) == 0 &&
2247                     list[pos + prefix_len] == extattr_namespace_separator) {
2248                         len = dist_to_next -
2249                             (prefix_len + sizeof(extattr_namespace_separator)) - 1;
2250                         if (len >= EXTATTR_MAXNAMELEN)
2251                                 return (ENAMETOOLONG);
2252
2253                         bsd_list[*bsd_list_len] = len;
2254                         memcpy(&bsd_list[*bsd_list_len + 1],
2255                             &list[pos + prefix_len +
2256                             sizeof(extattr_namespace_separator)], len);
2257
2258                         *bsd_list_len += len + 1;
2259                 }
2260
2261                 pos += dist_to_next;
2262         }
2263
2264         return (0);
2265 }
2266
2267 /*
2268     struct vop_listextattr_args {
2269         struct vop_generic_args a_gen;
2270         struct vnode *a_vp;
2271         int a_attrnamespace;
2272         struct uio *a_uio;
2273         size_t *a_size;
2274         struct ucred *a_cred;
2275         struct thread *a_td;
2276     };
2277 */
2278 static int
2279 fuse_vnop_listextattr(struct vop_listextattr_args *ap)
2280 {
2281         struct vnode *vp = ap->a_vp;
2282         struct uio *uio = ap->a_uio;
2283         struct fuse_dispatcher fdi;
2284         struct fuse_listxattr_in *list_xattr_in;
2285         struct fuse_listxattr_out *list_xattr_out;
2286         struct mount *mp = vnode_mount(vp);
2287         struct thread *td = ap->a_td;
2288         struct ucred *cred = ap->a_cred;
2289         size_t len;
2290         char *prefix;
2291         char *attr_str;
2292         char *bsd_list = NULL;
2293         char *linux_list;
2294         int bsd_list_len;
2295         int linux_list_len;
2296         int err;
2297
2298         if (fuse_isdeadfs(vp))
2299                 return (ENXIO);
2300
2301         if (!fsess_isimpl(mp, FUSE_LISTXATTR))
2302                 return EOPNOTSUPP;
2303
2304         err = fuse_extattr_check_cred(vp, ap->a_attrnamespace, cred, td, VREAD);
2305         if (err)
2306                 return err;
2307
2308         /*
2309          * Add space for a NUL and the period separator if enabled.
2310          * Default to looking for user attributes.
2311          */
2312         if (ap->a_attrnamespace == EXTATTR_NAMESPACE_SYSTEM)
2313                 prefix = EXTATTR_NAMESPACE_SYSTEM_STRING;
2314         else
2315                 prefix = EXTATTR_NAMESPACE_USER_STRING;
2316
2317         len = strlen(prefix) + sizeof(extattr_namespace_separator) + 1;
2318
2319         fdisp_init(&fdi, sizeof(*list_xattr_in) + len);
2320         fdisp_make_vp(&fdi, FUSE_LISTXATTR, vp, td, cred);
2321
2322         /*
2323          * Retrieve Linux / FUSE compatible list size.
2324          */
2325         list_xattr_in = fdi.indata;
2326         list_xattr_in->size = 0;
2327         attr_str = (char *)fdi.indata + sizeof(*list_xattr_in);
2328         snprintf(attr_str, len, "%s%c", prefix, extattr_namespace_separator);
2329
2330         err = fdisp_wait_answ(&fdi);
2331         if (err != 0) {
2332                 if (err == ENOSYS) {
2333                         fsess_set_notimpl(mp, FUSE_LISTXATTR);
2334                         err = EOPNOTSUPP;
2335                 }
2336                 goto out;
2337         }
2338
2339         list_xattr_out = fdi.answ;
2340         linux_list_len = list_xattr_out->size;
2341         if (linux_list_len == 0) {
2342                 if (ap->a_size != NULL)
2343                         *ap->a_size = linux_list_len;
2344                 goto out;
2345         }
2346
2347         /*
2348          * Retrieve Linux / FUSE compatible list values.
2349          */
2350         fdisp_refresh_vp(&fdi, FUSE_LISTXATTR, vp, td, cred);
2351         list_xattr_in = fdi.indata;
2352         list_xattr_in->size = linux_list_len + sizeof(*list_xattr_out);
2353         list_xattr_in->flags = 0;
2354         attr_str = (char *)fdi.indata + sizeof(*list_xattr_in);
2355         snprintf(attr_str, len, "%s%c", prefix, extattr_namespace_separator);
2356
2357         err = fdisp_wait_answ(&fdi);
2358         if (err != 0)
2359                 goto out;
2360
2361         linux_list = fdi.answ;
2362         linux_list_len = fdi.iosize;
2363
2364         /*
2365          * Retrieve the BSD compatible list values.
2366          * The Linux / FUSE attribute list format isn't the same
2367          * as FreeBSD's format. So we need to transform it into
2368          * FreeBSD's format before giving it to the user.
2369          */
2370         bsd_list = malloc(linux_list_len, M_TEMP, M_WAITOK);
2371         err = fuse_xattrlist_convert(prefix, linux_list, linux_list_len,
2372             bsd_list, &bsd_list_len);
2373         if (err != 0)
2374                 goto out;
2375
2376         if (ap->a_size != NULL)
2377                 *ap->a_size = bsd_list_len;
2378
2379         if (uio != NULL)
2380                 err = uiomove(bsd_list, bsd_list_len, uio);
2381
2382 out:
2383         free(bsd_list, M_TEMP);
2384         fdisp_destroy(&fdi);
2385         return (err);
2386 }
2387
2388 /*
2389     struct vop_deleteextattr_args {
2390         struct vop_generic_args a_gen;
2391         struct vnode *a_vp;
2392         int a_attrnamespace;
2393         const char *a_name;
2394         struct ucred *a_cred;
2395         struct thread *a_td;
2396     };
2397 */
2398 static int
2399 fuse_vnop_deleteextattr(struct vop_deleteextattr_args *ap)
2400 {
2401         struct vnode *vp = ap->a_vp;
2402         struct fuse_dispatcher fdi;
2403         struct mount *mp = vnode_mount(vp);
2404         struct thread *td = ap->a_td;
2405         struct ucred *cred = ap->a_cred;
2406         char *prefix;
2407         size_t len;
2408         char *attr_str;
2409         int err;
2410
2411         if (fuse_isdeadfs(vp))
2412                 return (ENXIO);
2413
2414         if (!fsess_isimpl(mp, FUSE_REMOVEXATTR))
2415                 return EOPNOTSUPP;
2416
2417         if (vfs_isrdonly(mp))
2418                 return EROFS;
2419
2420         err = fuse_extattr_check_cred(vp, ap->a_attrnamespace, cred, td,
2421                 VWRITE);
2422         if (err)
2423                 return err;
2424
2425         /* Default to looking for user attributes. */
2426         if (ap->a_attrnamespace == EXTATTR_NAMESPACE_SYSTEM)
2427                 prefix = EXTATTR_NAMESPACE_SYSTEM_STRING;
2428         else
2429                 prefix = EXTATTR_NAMESPACE_USER_STRING;
2430
2431         len = strlen(prefix) + sizeof(extattr_namespace_separator) +
2432             strlen(ap->a_name) + 1;
2433
2434         fdisp_init(&fdi, len);
2435         fdisp_make_vp(&fdi, FUSE_REMOVEXATTR, vp, td, cred);
2436
2437         attr_str = fdi.indata;
2438         snprintf(attr_str, len, "%s%c%s", prefix, extattr_namespace_separator,
2439             ap->a_name);
2440
2441         err = fdisp_wait_answ(&fdi);
2442         if (err == ENOSYS) {
2443                 fsess_set_notimpl(mp, FUSE_REMOVEXATTR);
2444                 err = EOPNOTSUPP;
2445         }
2446
2447         fdisp_destroy(&fdi);
2448         return (err);
2449 }
2450
2451 /*
2452     struct vnop_print_args {
2453         struct vnode *a_vp;
2454     };
2455 */
2456 static int
2457 fuse_vnop_print(struct vop_print_args *ap)
2458 {
2459         struct fuse_vnode_data *fvdat = VTOFUD(ap->a_vp);
2460
2461         printf("nodeid: %ju, parent nodeid: %ju, nlookup: %ju, flag: %#x\n",
2462             (uintmax_t)VTOILLU(ap->a_vp), (uintmax_t)fvdat->parent_nid,
2463             (uintmax_t)fvdat->nlookup,
2464             fvdat->flag);
2465
2466         return 0;
2467 }