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