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