Home | History | Annotate | Line # | Download | only in ffs
ffs_vnops.c revision 1.134
      1  1.134  dholland /*	$NetBSD: ffs_vnops.c,v 1.134 2021/06/29 22:34:09 dholland Exp $	*/
      2  1.100    simonb 
      3  1.100    simonb /*-
      4  1.109        ad  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
      5  1.100    simonb  * All rights reserved.
      6  1.100    simonb  *
      7  1.100    simonb  * This code is derived from software contributed to The NetBSD Foundation
      8  1.109        ad  * by Wasabi Systems, Inc, and by Andrew Doran.
      9  1.100    simonb  *
     10  1.100    simonb  * Redistribution and use in source and binary forms, with or without
     11  1.100    simonb  * modification, are permitted provided that the following conditions
     12  1.100    simonb  * are met:
     13  1.100    simonb  * 1. Redistributions of source code must retain the above copyright
     14  1.100    simonb  *    notice, this list of conditions and the following disclaimer.
     15  1.100    simonb  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.100    simonb  *    notice, this list of conditions and the following disclaimer in the
     17  1.100    simonb  *    documentation and/or other materials provided with the distribution.
     18  1.100    simonb  *
     19  1.100    simonb  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.100    simonb  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.100    simonb  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.100    simonb  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.100    simonb  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.100    simonb  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.100    simonb  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.100    simonb  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.100    simonb  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.100    simonb  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.100    simonb  * POSSIBILITY OF SUCH DAMAGE.
     30  1.100    simonb  */
     31    1.3       cgd 
     32    1.1   mycroft /*
     33    1.1   mycroft  * Copyright (c) 1982, 1986, 1989, 1993
     34    1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
     35    1.1   mycroft  *
     36    1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     37    1.1   mycroft  * modification, are permitted provided that the following conditions
     38    1.1   mycroft  * are met:
     39    1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     40    1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     41    1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     42    1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     43    1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     44   1.60       agc  * 3. Neither the name of the University nor the names of its contributors
     45    1.1   mycroft  *    may be used to endorse or promote products derived from this software
     46    1.1   mycroft  *    without specific prior written permission.
     47    1.1   mycroft  *
     48    1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     49    1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     50    1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     51    1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     52    1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     53    1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     54    1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     55    1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     56    1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     57    1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     58    1.1   mycroft  * SUCH DAMAGE.
     59    1.1   mycroft  *
     60   1.12      fvdl  *	@(#)ffs_vnops.c	8.15 (Berkeley) 5/14/95
     61    1.1   mycroft  */
     62   1.44     lukem 
     63   1.44     lukem #include <sys/cdefs.h>
     64  1.134  dholland __KERNEL_RCSID(0, "$NetBSD: ffs_vnops.c,v 1.134 2021/06/29 22:34:09 dholland Exp $");
     65  1.100    simonb 
     66  1.100    simonb #if defined(_KERNEL_OPT)
     67  1.100    simonb #include "opt_ffs.h"
     68  1.100    simonb #include "opt_wapbl.h"
     69  1.100    simonb #endif
     70   1.11       mrg 
     71    1.1   mycroft #include <sys/param.h>
     72    1.1   mycroft #include <sys/systm.h>
     73    1.1   mycroft #include <sys/resourcevar.h>
     74    1.1   mycroft #include <sys/kernel.h>
     75    1.1   mycroft #include <sys/file.h>
     76    1.1   mycroft #include <sys/stat.h>
     77    1.1   mycroft #include <sys/buf.h>
     78   1.50  jdolecek #include <sys/event.h>
     79    1.1   mycroft #include <sys/proc.h>
     80    1.1   mycroft #include <sys/mount.h>
     81    1.1   mycroft #include <sys/vnode.h>
     82   1.16   thorpej #include <sys/pool.h>
     83    1.6  christos #include <sys/signalvar.h>
     84   1.80      elad #include <sys/kauth.h>
     85  1.100    simonb #include <sys/wapbl.h>
     86    1.1   mycroft 
     87    1.8   mycroft #include <miscfs/fifofs/fifo.h>
     88    1.8   mycroft #include <miscfs/genfs/genfs.h>
     89    1.1   mycroft #include <miscfs/specfs/specdev.h>
     90    1.1   mycroft 
     91  1.132  christos #include <ufs/ufs/acl.h>
     92    1.1   mycroft #include <ufs/ufs/inode.h>
     93    1.1   mycroft #include <ufs/ufs/dir.h>
     94    1.1   mycroft #include <ufs/ufs/ufs_extern.h>
     95    1.2   mycroft #include <ufs/ufs/ufsmount.h>
     96  1.100    simonb #include <ufs/ufs/ufs_wapbl.h>
     97    1.1   mycroft 
     98    1.1   mycroft #include <ufs/ffs/fs.h>
     99    1.1   mycroft #include <ufs/ffs/ffs_extern.h>
    100    1.1   mycroft 
    101    1.1   mycroft /* Global vfs data structures for ufs. */
    102   1.74   xtraeme int (**ffs_vnodeop_p)(void *);
    103   1.37  jdolecek const struct vnodeopv_entry_desc ffs_vnodeop_entries[] = {
    104    1.1   mycroft 	{ &vop_default_desc, vn_default_error },
    105  1.134  dholland 	{ &vop_parsepath_desc, genfs_parsepath },	/* parsepath */
    106    1.1   mycroft 	{ &vop_lookup_desc, ufs_lookup },		/* lookup */
    107    1.1   mycroft 	{ &vop_create_desc, ufs_create },		/* create */
    108    1.5   mycroft 	{ &vop_whiteout_desc, ufs_whiteout },		/* whiteout */
    109    1.1   mycroft 	{ &vop_mknod_desc, ufs_mknod },			/* mknod */
    110    1.1   mycroft 	{ &vop_open_desc, ufs_open },			/* open */
    111    1.1   mycroft 	{ &vop_close_desc, ufs_close },			/* close */
    112  1.132  christos 	{ &vop_access_desc, genfs_access },		/* access */
    113  1.132  christos 	{ &vop_accessx_desc, ufs_accessx },		/* accessx */
    114    1.1   mycroft 	{ &vop_getattr_desc, ufs_getattr },		/* getattr */
    115    1.1   mycroft 	{ &vop_setattr_desc, ufs_setattr },		/* setattr */
    116    1.1   mycroft 	{ &vop_read_desc, ffs_read },			/* read */
    117    1.1   mycroft 	{ &vop_write_desc, ffs_write },			/* write */
    118  1.125  dholland 	{ &vop_fallocate_desc, genfs_eopnotsupp },	/* fallocate */
    119  1.125  dholland 	{ &vop_fdiscard_desc, genfs_eopnotsupp },	/* fdiscard */
    120    1.1   mycroft 	{ &vop_ioctl_desc, ufs_ioctl },			/* ioctl */
    121   1.19  wrstuden 	{ &vop_fcntl_desc, ufs_fcntl },			/* fcntl */
    122    1.9   mycroft 	{ &vop_poll_desc, ufs_poll },			/* poll */
    123   1.50  jdolecek 	{ &vop_kqfilter_desc, genfs_kqfilter },		/* kqfilter */
    124   1.12      fvdl 	{ &vop_revoke_desc, ufs_revoke },		/* revoke */
    125    1.1   mycroft 	{ &vop_mmap_desc, ufs_mmap },			/* mmap */
    126    1.1   mycroft 	{ &vop_fsync_desc, ffs_fsync },			/* fsync */
    127    1.1   mycroft 	{ &vop_seek_desc, ufs_seek },			/* seek */
    128    1.1   mycroft 	{ &vop_remove_desc, ufs_remove },		/* remove */
    129    1.1   mycroft 	{ &vop_link_desc, ufs_link },			/* link */
    130    1.1   mycroft 	{ &vop_rename_desc, ufs_rename },		/* rename */
    131    1.1   mycroft 	{ &vop_mkdir_desc, ufs_mkdir },			/* mkdir */
    132    1.1   mycroft 	{ &vop_rmdir_desc, ufs_rmdir },			/* rmdir */
    133    1.1   mycroft 	{ &vop_symlink_desc, ufs_symlink },		/* symlink */
    134    1.1   mycroft 	{ &vop_readdir_desc, ufs_readdir },		/* readdir */
    135    1.1   mycroft 	{ &vop_readlink_desc, ufs_readlink },		/* readlink */
    136    1.1   mycroft 	{ &vop_abortop_desc, ufs_abortop },		/* abortop */
    137    1.1   mycroft 	{ &vop_inactive_desc, ufs_inactive },		/* inactive */
    138    1.1   mycroft 	{ &vop_reclaim_desc, ffs_reclaim },		/* reclaim */
    139  1.113   hannken 	{ &vop_lock_desc, ufs_lock },			/* lock */
    140  1.113   hannken 	{ &vop_unlock_desc, ufs_unlock },		/* unlock */
    141    1.1   mycroft 	{ &vop_bmap_desc, ufs_bmap },			/* bmap */
    142    1.1   mycroft 	{ &vop_strategy_desc, ufs_strategy },		/* strategy */
    143    1.1   mycroft 	{ &vop_print_desc, ufs_print },			/* print */
    144  1.113   hannken 	{ &vop_islocked_desc, ufs_islocked },		/* islocked */
    145    1.1   mycroft 	{ &vop_pathconf_desc, ufs_pathconf },		/* pathconf */
    146    1.1   mycroft 	{ &vop_advlock_desc, ufs_advlock },		/* advlock */
    147    1.8   mycroft 	{ &vop_bwrite_desc, vn_bwrite },		/* bwrite */
    148   1.88      yamt 	{ &vop_getpages_desc, genfs_getpages },		/* getpages */
    149   1.75      yamt 	{ &vop_putpages_desc, genfs_putpages },		/* putpages */
    150   1.73   thorpej 	{ &vop_openextattr_desc, ffs_openextattr },	/* openextattr */
    151   1.73   thorpej 	{ &vop_closeextattr_desc, ffs_closeextattr },	/* closeextattr */
    152   1.73   thorpej 	{ &vop_getextattr_desc, ffs_getextattr },	/* getextattr */
    153   1.73   thorpej 	{ &vop_setextattr_desc, ffs_setextattr },	/* setextattr */
    154   1.73   thorpej 	{ &vop_listextattr_desc, ffs_listextattr },	/* listextattr */
    155   1.73   thorpej 	{ &vop_deleteextattr_desc, ffs_deleteextattr },	/* deleteextattr */
    156  1.132  christos 	{ &vop_getacl_desc, ufs_getacl },		/* getacl */
    157  1.132  christos 	{ &vop_setacl_desc, ufs_setacl },		/* setacl */
    158  1.132  christos 	{ &vop_aclcheck_desc, ufs_aclcheck },		/* aclcheck */
    159   1.35       chs 	{ NULL, NULL }
    160    1.1   mycroft };
    161   1.37  jdolecek const struct vnodeopv_desc ffs_vnodeop_opv_desc =
    162    1.1   mycroft 	{ &ffs_vnodeop_p, ffs_vnodeop_entries };
    163    1.1   mycroft 
    164   1.74   xtraeme int (**ffs_specop_p)(void *);
    165   1.37  jdolecek const struct vnodeopv_entry_desc ffs_specop_entries[] = {
    166    1.1   mycroft 	{ &vop_default_desc, vn_default_error },
    167  1.134  dholland 	{ &vop_parsepath_desc, genfs_parsepath },	/* parsepath */
    168    1.1   mycroft 	{ &vop_lookup_desc, spec_lookup },		/* lookup */
    169    1.1   mycroft 	{ &vop_create_desc, spec_create },		/* create */
    170    1.1   mycroft 	{ &vop_mknod_desc, spec_mknod },		/* mknod */
    171    1.1   mycroft 	{ &vop_open_desc, spec_open },			/* open */
    172    1.1   mycroft 	{ &vop_close_desc, ufsspec_close },		/* close */
    173  1.132  christos 	{ &vop_access_desc, genfs_access },		/* access */
    174  1.132  christos 	{ &vop_accessx_desc, ufs_accessx },		/* accessx */
    175    1.1   mycroft 	{ &vop_getattr_desc, ufs_getattr },		/* getattr */
    176    1.1   mycroft 	{ &vop_setattr_desc, ufs_setattr },		/* setattr */
    177    1.1   mycroft 	{ &vop_read_desc, ufsspec_read },		/* read */
    178    1.1   mycroft 	{ &vop_write_desc, ufsspec_write },		/* write */
    179  1.125  dholland 	{ &vop_fallocate_desc, spec_fallocate },	/* fallocate */
    180  1.125  dholland 	{ &vop_fdiscard_desc, spec_fdiscard },		/* fdiscard */
    181    1.1   mycroft 	{ &vop_ioctl_desc, spec_ioctl },		/* ioctl */
    182   1.19  wrstuden 	{ &vop_fcntl_desc, ufs_fcntl },			/* fcntl */
    183    1.9   mycroft 	{ &vop_poll_desc, spec_poll },			/* poll */
    184   1.50  jdolecek 	{ &vop_kqfilter_desc, spec_kqfilter },		/* kqfilter */
    185   1.12      fvdl 	{ &vop_revoke_desc, spec_revoke },		/* revoke */
    186    1.1   mycroft 	{ &vop_mmap_desc, spec_mmap },			/* mmap */
    187  1.118   hannken 	{ &vop_fsync_desc, ffs_spec_fsync },		/* fsync */
    188    1.1   mycroft 	{ &vop_seek_desc, spec_seek },			/* seek */
    189    1.1   mycroft 	{ &vop_remove_desc, spec_remove },		/* remove */
    190    1.1   mycroft 	{ &vop_link_desc, spec_link },			/* link */
    191    1.1   mycroft 	{ &vop_rename_desc, spec_rename },		/* rename */
    192    1.1   mycroft 	{ &vop_mkdir_desc, spec_mkdir },		/* mkdir */
    193    1.1   mycroft 	{ &vop_rmdir_desc, spec_rmdir },		/* rmdir */
    194    1.1   mycroft 	{ &vop_symlink_desc, spec_symlink },		/* symlink */
    195    1.1   mycroft 	{ &vop_readdir_desc, spec_readdir },		/* readdir */
    196    1.1   mycroft 	{ &vop_readlink_desc, spec_readlink },		/* readlink */
    197    1.1   mycroft 	{ &vop_abortop_desc, spec_abortop },		/* abortop */
    198    1.1   mycroft 	{ &vop_inactive_desc, ufs_inactive },		/* inactive */
    199    1.1   mycroft 	{ &vop_reclaim_desc, ffs_reclaim },		/* reclaim */
    200  1.113   hannken 	{ &vop_lock_desc, ufs_lock },			/* lock */
    201  1.113   hannken 	{ &vop_unlock_desc, ufs_unlock },		/* unlock */
    202    1.1   mycroft 	{ &vop_bmap_desc, spec_bmap },			/* bmap */
    203    1.1   mycroft 	{ &vop_strategy_desc, spec_strategy },		/* strategy */
    204    1.1   mycroft 	{ &vop_print_desc, ufs_print },			/* print */
    205  1.113   hannken 	{ &vop_islocked_desc, ufs_islocked },		/* islocked */
    206    1.1   mycroft 	{ &vop_pathconf_desc, spec_pathconf },		/* pathconf */
    207    1.1   mycroft 	{ &vop_advlock_desc, spec_advlock },		/* advlock */
    208    1.8   mycroft 	{ &vop_bwrite_desc, vn_bwrite },		/* bwrite */
    209   1.38       chs 	{ &vop_getpages_desc, spec_getpages },		/* getpages */
    210   1.38       chs 	{ &vop_putpages_desc, spec_putpages },		/* putpages */
    211   1.73   thorpej 	{ &vop_openextattr_desc, ffs_openextattr },	/* openextattr */
    212   1.73   thorpej 	{ &vop_closeextattr_desc, ffs_closeextattr },	/* closeextattr */
    213   1.73   thorpej 	{ &vop_getextattr_desc, ffs_getextattr },	/* getextattr */
    214   1.73   thorpej 	{ &vop_setextattr_desc, ffs_setextattr },	/* setextattr */
    215   1.73   thorpej 	{ &vop_listextattr_desc, ffs_listextattr },	/* listextattr */
    216   1.73   thorpej 	{ &vop_deleteextattr_desc, ffs_deleteextattr },	/* deleteextattr */
    217  1.132  christos 	{ &vop_getacl_desc, ufs_getacl },		/* getacl */
    218  1.132  christos 	{ &vop_setacl_desc, ufs_setacl },		/* setacl */
    219  1.132  christos 	{ &vop_aclcheck_desc, ufs_aclcheck },		/* aclcheck */
    220   1.35       chs 	{ NULL, NULL }
    221    1.1   mycroft };
    222   1.37  jdolecek const struct vnodeopv_desc ffs_specop_opv_desc =
    223    1.1   mycroft 	{ &ffs_specop_p, ffs_specop_entries };
    224    1.1   mycroft 
    225   1.74   xtraeme int (**ffs_fifoop_p)(void *);
    226   1.37  jdolecek const struct vnodeopv_entry_desc ffs_fifoop_entries[] = {
    227    1.1   mycroft 	{ &vop_default_desc, vn_default_error },
    228  1.134  dholland 	{ &vop_parsepath_desc, genfs_parsepath },	/* parsepath */
    229  1.114     pooka 	{ &vop_lookup_desc, vn_fifo_bypass },		/* lookup */
    230  1.114     pooka 	{ &vop_create_desc, vn_fifo_bypass },		/* create */
    231  1.114     pooka 	{ &vop_mknod_desc, vn_fifo_bypass },		/* mknod */
    232  1.114     pooka 	{ &vop_open_desc, vn_fifo_bypass },		/* open */
    233    1.1   mycroft 	{ &vop_close_desc, ufsfifo_close },		/* close */
    234  1.132  christos 	{ &vop_access_desc, genfs_access },		/* access */
    235  1.132  christos 	{ &vop_accessx_desc, ufs_accessx },		/* accessx */
    236    1.1   mycroft 	{ &vop_getattr_desc, ufs_getattr },		/* getattr */
    237    1.1   mycroft 	{ &vop_setattr_desc, ufs_setattr },		/* setattr */
    238    1.1   mycroft 	{ &vop_read_desc, ufsfifo_read },		/* read */
    239    1.1   mycroft 	{ &vop_write_desc, ufsfifo_write },		/* write */
    240  1.125  dholland 	{ &vop_fallocate_desc, vn_fifo_bypass },	/* fallocate */
    241  1.125  dholland 	{ &vop_fdiscard_desc, vn_fifo_bypass },		/* fdiscard */
    242  1.114     pooka 	{ &vop_ioctl_desc, vn_fifo_bypass },		/* ioctl */
    243   1.19  wrstuden 	{ &vop_fcntl_desc, ufs_fcntl },			/* fcntl */
    244  1.114     pooka 	{ &vop_poll_desc, vn_fifo_bypass },		/* poll */
    245  1.114     pooka 	{ &vop_kqfilter_desc, vn_fifo_bypass },		/* kqfilter */
    246  1.114     pooka 	{ &vop_revoke_desc, vn_fifo_bypass },		/* revoke */
    247  1.114     pooka 	{ &vop_mmap_desc, vn_fifo_bypass },		/* mmap */
    248    1.1   mycroft 	{ &vop_fsync_desc, ffs_fsync },			/* fsync */
    249  1.114     pooka 	{ &vop_seek_desc, vn_fifo_bypass },		/* seek */
    250  1.114     pooka 	{ &vop_remove_desc, vn_fifo_bypass },		/* remove */
    251  1.114     pooka 	{ &vop_link_desc, vn_fifo_bypass },		/* link */
    252  1.114     pooka 	{ &vop_rename_desc, vn_fifo_bypass },		/* rename */
    253  1.114     pooka 	{ &vop_mkdir_desc, vn_fifo_bypass },		/* mkdir */
    254  1.114     pooka 	{ &vop_rmdir_desc, vn_fifo_bypass },		/* rmdir */
    255  1.114     pooka 	{ &vop_symlink_desc, vn_fifo_bypass },		/* symlink */
    256  1.114     pooka 	{ &vop_readdir_desc, vn_fifo_bypass },		/* readdir */
    257  1.114     pooka 	{ &vop_readlink_desc, vn_fifo_bypass },		/* readlink */
    258  1.114     pooka 	{ &vop_abortop_desc, vn_fifo_bypass },		/* abortop */
    259    1.1   mycroft 	{ &vop_inactive_desc, ufs_inactive },		/* inactive */
    260    1.1   mycroft 	{ &vop_reclaim_desc, ffs_reclaim },		/* reclaim */
    261  1.113   hannken 	{ &vop_lock_desc, ufs_lock },			/* lock */
    262  1.113   hannken 	{ &vop_unlock_desc, ufs_unlock },		/* unlock */
    263  1.114     pooka 	{ &vop_bmap_desc, vn_fifo_bypass },		/* bmap */
    264  1.114     pooka 	{ &vop_strategy_desc, vn_fifo_bypass },		/* strategy */
    265    1.1   mycroft 	{ &vop_print_desc, ufs_print },			/* print */
    266  1.113   hannken 	{ &vop_islocked_desc, ufs_islocked },		/* islocked */
    267  1.114     pooka 	{ &vop_pathconf_desc, vn_fifo_bypass },		/* pathconf */
    268  1.114     pooka 	{ &vop_advlock_desc, vn_fifo_bypass },		/* advlock */
    269    1.8   mycroft 	{ &vop_bwrite_desc, vn_bwrite },		/* bwrite */
    270  1.114     pooka 	{ &vop_putpages_desc, vn_fifo_bypass }, 	/* putpages */
    271   1.73   thorpej 	{ &vop_openextattr_desc, ffs_openextattr },	/* openextattr */
    272   1.73   thorpej 	{ &vop_closeextattr_desc, ffs_closeextattr },	/* closeextattr */
    273   1.73   thorpej 	{ &vop_getextattr_desc, ffs_getextattr },	/* getextattr */
    274   1.73   thorpej 	{ &vop_setextattr_desc, ffs_setextattr },	/* setextattr */
    275   1.73   thorpej 	{ &vop_listextattr_desc, ffs_listextattr },	/* listextattr */
    276   1.73   thorpej 	{ &vop_deleteextattr_desc, ffs_deleteextattr },	/* deleteextattr */
    277  1.132  christos 	{ &vop_getacl_desc, ufs_getacl },		/* getacl */
    278  1.132  christos 	{ &vop_setacl_desc, ufs_setacl },		/* setacl */
    279  1.132  christos 	{ &vop_aclcheck_desc, ufs_aclcheck },		/* aclcheck */
    280   1.35       chs 	{ NULL, NULL }
    281    1.1   mycroft };
    282   1.37  jdolecek const struct vnodeopv_desc ffs_fifoop_opv_desc =
    283    1.1   mycroft 	{ &ffs_fifoop_p, ffs_fifoop_entries };
    284    1.1   mycroft 
    285    1.1   mycroft #include <ufs/ufs/ufs_readwrite.c>
    286   1.20      fvdl 
    287   1.33      fvdl int
    288  1.118   hannken ffs_spec_fsync(void *v)
    289  1.118   hannken {
    290  1.118   hannken 	struct vop_fsync_args /* {
    291  1.118   hannken 		struct vnode *a_vp;
    292  1.118   hannken 		kauth_cred_t a_cred;
    293  1.118   hannken 		int a_flags;
    294  1.118   hannken 		off_t a_offlo;
    295  1.118   hannken 		off_t a_offhi;
    296  1.118   hannken 		struct lwp *a_l;
    297  1.118   hannken 	} */ *ap = v;
    298  1.118   hannken 	int error, flags, uflags;
    299  1.118   hannken 	struct vnode *vp;
    300  1.118   hannken 
    301  1.118   hannken 	flags = ap->a_flags;
    302  1.118   hannken 	uflags = UPDATE_CLOSE | ((flags & FSYNC_WAIT) ? UPDATE_WAIT : 0);
    303  1.118   hannken 	vp = ap->a_vp;
    304  1.118   hannken 
    305  1.118   hannken 	error = spec_fsync(v);
    306  1.118   hannken 	if (error)
    307  1.118   hannken 		goto out;
    308  1.118   hannken 
    309  1.118   hannken #ifdef WAPBL
    310  1.128  christos 	struct mount *mp = vp->v_mount;
    311  1.128  christos 
    312  1.118   hannken 	if (mp && mp->mnt_wapbl) {
    313  1.118   hannken 		/*
    314  1.118   hannken 		 * Don't bother writing out metadata if the syncer is
    315  1.118   hannken 		 * making the request.  We will let the sync vnode
    316  1.118   hannken 		 * write it out in a single burst through a call to
    317  1.118   hannken 		 * VFS_SYNC().
    318  1.118   hannken 		 */
    319  1.118   hannken 		if ((flags & (FSYNC_DATAONLY | FSYNC_LAZY)) != 0)
    320  1.118   hannken 			goto out;
    321  1.118   hannken 		if ((VTOI(vp)->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE
    322  1.118   hannken 		    | IN_MODIFY | IN_MODIFIED | IN_ACCESSED)) != 0) {
    323  1.118   hannken 			error = UFS_WAPBL_BEGIN(mp);
    324  1.118   hannken 			if (error != 0)
    325  1.118   hannken 				goto out;
    326  1.118   hannken 			error = ffs_update(vp, NULL, NULL, uflags);
    327  1.118   hannken 			UFS_WAPBL_END(mp);
    328  1.118   hannken 		}
    329  1.118   hannken 		goto out;
    330  1.118   hannken 	}
    331  1.118   hannken #endif /* WAPBL */
    332  1.118   hannken 
    333  1.118   hannken 	error = ffs_update(vp, NULL, NULL, uflags);
    334  1.118   hannken 
    335  1.118   hannken out:
    336  1.118   hannken 	return error;
    337  1.118   hannken }
    338  1.118   hannken 
    339  1.118   hannken int
    340   1.70   thorpej ffs_fsync(void *v)
    341   1.33      fvdl {
    342   1.33      fvdl 	struct vop_fsync_args /* {
    343   1.33      fvdl 		struct vnode *a_vp;
    344   1.80      elad 		kauth_cred_t a_cred;
    345   1.33      fvdl 		int a_flags;
    346   1.46       chs 		off_t a_offlo;
    347   1.46       chs 		off_t a_offhi;
    348   1.77  christos 		struct lwp *a_l;
    349   1.33      fvdl 	} */ *ap = v;
    350   1.35       chs 	struct buf *bp;
    351   1.94        ad 	int num, error, i;
    352  1.122  dholland 	struct indir ia[UFS_NIADDR + 1];
    353   1.33      fvdl 	int bsize;
    354   1.45    simonb 	daddr_t blk_high;
    355   1.33      fvdl 	struct vnode *vp;
    356  1.100    simonb 	struct mount *mp;
    357   1.33      fvdl 
    358   1.84   hannken 	vp = ap->a_vp;
    359  1.117   hannken 	mp = vp->v_mount;
    360   1.84   hannken 
    361  1.111        ad 	if ((ap->a_offlo == 0 && ap->a_offhi == 0) || (vp->v_type != VREG)) {
    362  1.111        ad 		error = ffs_full_fsync(vp, ap->a_flags);
    363   1.84   hannken 		goto out;
    364   1.84   hannken 	}
    365   1.33      fvdl 
    366  1.117   hannken 	bsize = mp->mnt_stat.f_iosize;
    367   1.33      fvdl 	blk_high = ap->a_offhi / bsize;
    368   1.33      fvdl 	if (ap->a_offhi % bsize != 0)
    369   1.33      fvdl 		blk_high++;
    370   1.33      fvdl 
    371   1.33      fvdl 	/*
    372   1.35       chs 	 * First, flush all pages in range.
    373   1.33      fvdl 	 */
    374   1.35       chs 
    375  1.130        ad 	rw_enter(vp->v_uobj.vmobjlock, RW_WRITER);
    376   1.64       dbj 	error = VOP_PUTPAGES(vp, trunc_page(ap->a_offlo),
    377   1.64       dbj 	    round_page(ap->a_offhi), PGO_CLEANIT |
    378   1.64       dbj 	    ((ap->a_flags & FSYNC_WAIT) ? PGO_SYNCIO : 0));
    379   1.64       dbj 	if (error) {
    380   1.84   hannken 		goto out;
    381   1.39       chs 	}
    382   1.33      fvdl 
    383  1.100    simonb #ifdef WAPBL
    384  1.117   hannken 	KASSERT(vp->v_type == VREG);
    385  1.100    simonb 	if (mp->mnt_wapbl) {
    386  1.110        ad 		/*
    387  1.110        ad 		 * Don't bother writing out metadata if the syncer is
    388  1.110        ad 		 * making the request.  We will let the sync vnode
    389  1.110        ad 		 * write it out in a single burst through a call to
    390  1.110        ad 		 * VFS_SYNC().
    391  1.110        ad 		 */
    392  1.110        ad 		if ((ap->a_flags & (FSYNC_DATAONLY | FSYNC_LAZY)) != 0) {
    393  1.100    simonb 			return 0;
    394  1.100    simonb 		}
    395  1.100    simonb 		error = 0;
    396  1.100    simonb 		if (vp->v_tag == VT_UFS && VTOI(vp)->i_flag &
    397  1.100    simonb 		    (IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFY |
    398  1.100    simonb 				 IN_MODIFIED | IN_ACCESSED)) {
    399  1.100    simonb 			error = UFS_WAPBL_BEGIN(mp);
    400  1.100    simonb 			if (error) {
    401  1.100    simonb 				return error;
    402  1.100    simonb 			}
    403  1.112        ad 			error = ffs_update(vp, NULL, NULL, UPDATE_CLOSE |
    404  1.112        ad 			    ((ap->a_flags & FSYNC_WAIT) ? UPDATE_WAIT : 0));
    405  1.100    simonb 			UFS_WAPBL_END(mp);
    406  1.100    simonb 		}
    407  1.110        ad 		if (error || (ap->a_flags & FSYNC_NOLOG) != 0) {
    408  1.100    simonb 			return error;
    409  1.100    simonb 		}
    410  1.100    simonb 		error = wapbl_flush(mp->mnt_wapbl, 0);
    411  1.100    simonb 		return error;
    412  1.100    simonb 	}
    413  1.100    simonb #endif /* WAPBL */
    414  1.100    simonb 
    415   1.33      fvdl 	/*
    416   1.35       chs 	 * Then, flush indirect blocks.
    417   1.33      fvdl 	 */
    418   1.35       chs 
    419  1.122  dholland 	if (blk_high >= UFS_NDADDR) {
    420   1.33      fvdl 		error = ufs_getlbns(vp, blk_high, ia, &num);
    421   1.94        ad 		if (error)
    422   1.84   hannken 			goto out;
    423   1.94        ad 
    424   1.94        ad 		mutex_enter(&bufcache_lock);
    425   1.33      fvdl 		for (i = 0; i < num; i++) {
    426   1.94        ad 			if ((bp = incore(vp, ia[i].in_lbn)) == NULL)
    427   1.94        ad 				continue;
    428   1.94        ad 			if ((bp->b_cflags & BC_BUSY) != 0 ||
    429   1.94        ad 			    (bp->b_oflags & BO_DELWRI) == 0)
    430   1.94        ad 				continue;
    431   1.94        ad 			bp->b_cflags |= BC_BUSY | BC_VFLUSH;
    432   1.94        ad 			mutex_exit(&bufcache_lock);
    433   1.94        ad 			bawrite(bp);
    434   1.94        ad 			mutex_enter(&bufcache_lock);
    435   1.33      fvdl 		}
    436   1.94        ad 		mutex_exit(&bufcache_lock);
    437   1.33      fvdl 	}
    438   1.33      fvdl 
    439   1.33      fvdl 	if (ap->a_flags & FSYNC_WAIT) {
    440  1.119     rmind 		mutex_enter(vp->v_interlock);
    441   1.94        ad 		while (vp->v_numoutput > 0)
    442  1.119     rmind 			cv_wait(&vp->v_cv, vp->v_interlock);
    443  1.119     rmind 		mutex_exit(vp->v_interlock);
    444   1.33      fvdl 	}
    445   1.33      fvdl 
    446  1.112        ad 	error = ffs_update(vp, NULL, NULL, UPDATE_CLOSE |
    447  1.112        ad 	    (((ap->a_flags & (FSYNC_WAIT | FSYNC_DATAONLY)) == FSYNC_WAIT)
    448  1.112        ad 	    ? UPDATE_WAIT : 0));
    449   1.67  wrstuden 
    450   1.67  wrstuden 	if (error == 0 && ap->a_flags & FSYNC_CACHE) {
    451   1.67  wrstuden 		int l = 0;
    452   1.67  wrstuden 		VOP_IOCTL(VTOI(vp)->i_devvp, DIOCCACHESYNC, &l, FWRITE,
    453   1.93     pooka 			curlwp->l_cred);
    454   1.67  wrstuden 	}
    455   1.67  wrstuden 
    456   1.84   hannken out:
    457   1.67  wrstuden 	return error;
    458   1.33      fvdl }
    459   1.33      fvdl 
    460   1.20      fvdl /*
    461  1.110        ad  * Synch an open file.  Called for VOP_FSYNC().
    462   1.20      fvdl  */
    463   1.20      fvdl /* ARGSUSED */
    464   1.94        ad int
    465   1.94        ad ffs_full_fsync(struct vnode *vp, int flags)
    466   1.20      fvdl {
    467  1.118   hannken 	int error, i, uflags;
    468   1.99        ad 
    469  1.118   hannken 	KASSERT(vp->v_tag == VT_UFS);
    470  1.110        ad 	KASSERT(VTOI(vp) != NULL);
    471  1.118   hannken 	KASSERT(vp->v_type != VCHR && vp->v_type != VBLK);
    472  1.110        ad 
    473  1.118   hannken 	uflags = UPDATE_CLOSE | ((flags & FSYNC_WAIT) ? UPDATE_WAIT : 0);
    474   1.24      fvdl 
    475  1.121       chs #ifdef WAPBL
    476  1.121       chs 	struct mount *mp = vp->v_mount;
    477  1.128  christos 
    478  1.121       chs 	if (mp && mp->mnt_wapbl) {
    479  1.105        ad 
    480  1.121       chs 		/*
    481  1.121       chs 		 * Flush all dirty data associated with the vnode.
    482  1.121       chs 		 */
    483  1.121       chs 		if (vp->v_type == VREG) {
    484  1.121       chs 			int pflags = PGO_ALLPAGES | PGO_CLEANIT;
    485  1.101     oster 
    486  1.121       chs 			if ((flags & FSYNC_LAZY))
    487  1.121       chs 				pflags |= PGO_LAZY;
    488  1.121       chs 			if ((flags & FSYNC_WAIT))
    489  1.121       chs 				pflags |= PGO_SYNCIO;
    490  1.130        ad 			rw_enter(vp->v_uobj.vmobjlock, RW_WRITER);
    491  1.121       chs 			error = VOP_PUTPAGES(vp, 0, 0, pflags);
    492  1.121       chs 			if (error)
    493  1.121       chs 				return error;
    494  1.121       chs 		}
    495  1.100    simonb 
    496  1.110        ad 		/*
    497  1.110        ad 		 * Don't bother writing out metadata if the syncer is
    498  1.110        ad 		 * making the request.  We will let the sync vnode
    499  1.110        ad 		 * write it out in a single burst through a call to
    500  1.110        ad 		 * VFS_SYNC().
    501  1.110        ad 		 */
    502  1.110        ad 		if ((flags & (FSYNC_DATAONLY | FSYNC_LAZY)) != 0)
    503  1.110        ad 			return 0;
    504  1.100    simonb 
    505  1.110        ad 		if ((VTOI(vp)->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE
    506  1.109        ad 		    | IN_MODIFY | IN_MODIFIED | IN_ACCESSED)) != 0) {
    507  1.100    simonb 			error = UFS_WAPBL_BEGIN(mp);
    508  1.100    simonb 			if (error)
    509  1.100    simonb 				return error;
    510  1.118   hannken 			error = ffs_update(vp, NULL, NULL, uflags);
    511  1.100    simonb 			UFS_WAPBL_END(mp);
    512  1.121       chs 		} else {
    513  1.121       chs 			error = 0;
    514  1.100    simonb 		}
    515  1.110        ad 		if (error || (flags & FSYNC_NOLOG) != 0)
    516  1.100    simonb 			return error;
    517  1.106        ad 
    518  1.100    simonb 		/*
    519  1.100    simonb 		 * Don't flush the log if the vnode being flushed
    520  1.100    simonb 		 * contains no dirty buffers that could be in the log.
    521  1.100    simonb 		 */
    522  1.109        ad 		if (!LIST_EMPTY(&vp->v_dirtyblkhd)) {
    523  1.100    simonb 			error = wapbl_flush(mp->mnt_wapbl, 0);
    524  1.100    simonb 			if (error)
    525  1.100    simonb 				return error;
    526  1.100    simonb 		}
    527  1.100    simonb 
    528  1.109        ad 		if ((flags & FSYNC_WAIT) != 0) {
    529  1.119     rmind 			mutex_enter(vp->v_interlock);
    530  1.110        ad 			while (vp->v_numoutput != 0)
    531  1.119     rmind 				cv_wait(&vp->v_cv, vp->v_interlock);
    532  1.119     rmind 			mutex_exit(vp->v_interlock);
    533  1.100    simonb 		}
    534  1.100    simonb 
    535  1.100    simonb 		return error;
    536  1.100    simonb 	}
    537  1.100    simonb #endif /* WAPBL */
    538   1.35       chs 
    539  1.121       chs 	error = vflushbuf(vp, flags);
    540  1.118   hannken 	if (error == 0)
    541  1.118   hannken 		error = ffs_update(vp, NULL, NULL, uflags);
    542  1.109        ad 	if (error == 0 && (flags & FSYNC_CACHE) != 0) {
    543  1.118   hannken 		i = 1;
    544  1.110        ad 		(void)VOP_IOCTL(VTOI(vp)->i_devvp, DIOCCACHESYNC, &i, FWRITE,
    545  1.110        ad 		    kauth_cred_get());
    546   1.67  wrstuden 	}
    547   1.67  wrstuden 
    548   1.67  wrstuden 	return error;
    549   1.20      fvdl }
    550    1.1   mycroft 
    551    1.1   mycroft /*
    552    1.1   mycroft  * Reclaim an inode so that it can be used for other purposes.
    553    1.1   mycroft  */
    554    1.1   mycroft int
    555   1.70   thorpej ffs_reclaim(void *v)
    556    1.6  christos {
    557  1.129  riastrad 	struct vop_reclaim_v2_args /* {
    558    1.1   mycroft 		struct vnode *a_vp;
    559   1.77  christos 		struct lwp *a_l;
    560    1.6  christos 	} */ *ap = v;
    561   1.26  augustss 	struct vnode *vp = ap->a_vp;
    562   1.56      fvdl 	struct inode *ip = VTOI(vp);
    563   1.84   hannken 	struct mount *mp = vp->v_mount;
    564   1.56      fvdl 	struct ufsmount *ump = ip->i_ump;
    565   1.94        ad 	void *data;
    566    1.1   mycroft 	int error;
    567    1.1   mycroft 
    568  1.129  riastrad 	VOP_UNLOCK(vp);
    569  1.129  riastrad 
    570  1.115   hannken 	/*
    571  1.115   hannken 	 * The inode must be freed and updated before being removed
    572  1.115   hannken 	 * from its hash chain.  Other threads trying to gain a hold
    573  1.124   hannken 	 * or lock on the inode will be stalled.
    574  1.115   hannken 	 */
    575  1.115   hannken 	error = UFS_WAPBL_BEGIN(mp);
    576  1.115   hannken 	if (error) {
    577  1.115   hannken 		return error;
    578  1.115   hannken 	}
    579  1.116   hannken 	if (ip->i_nlink <= 0 && ip->i_omode != 0 &&
    580  1.116   hannken 	    (vp->v_mount->mnt_flag & MNT_RDONLY) == 0)
    581  1.115   hannken 		ffs_vfree(vp, ip->i_number, ip->i_omode);
    582  1.115   hannken 	UFS_WAPBL_END(mp);
    583   1.93     pooka 	if ((error = ufs_reclaim(vp)) != 0) {
    584    1.1   mycroft 		return (error);
    585   1.84   hannken 	}
    586   1.57      fvdl 	if (ip->i_din.ffs1_din != NULL) {
    587   1.57      fvdl 		if (ump->um_fstype == UFS1)
    588   1.95        ad 			pool_cache_put(ffs_dinode1_cache, ip->i_din.ffs1_din);
    589   1.57      fvdl 		else
    590   1.95        ad 			pool_cache_put(ffs_dinode2_cache, ip->i_din.ffs2_din);
    591   1.57      fvdl 	}
    592   1.16   thorpej 	/*
    593   1.94        ad 	 * To interlock with ffs_sync().
    594   1.94        ad 	 */
    595   1.94        ad 	genfs_node_destroy(vp);
    596  1.119     rmind 	mutex_enter(vp->v_interlock);
    597   1.94        ad 	data = vp->v_data;
    598   1.94        ad 	vp->v_data = NULL;
    599  1.119     rmind 	mutex_exit(vp->v_interlock);
    600   1.94        ad 
    601   1.94        ad 	/*
    602   1.16   thorpej 	 * XXX MFS ends up here, too, to free an inode.  Should we create
    603   1.16   thorpej 	 * XXX a separate pool for MFS inodes?
    604   1.16   thorpej 	 */
    605   1.95        ad 	pool_cache_put(ffs_inode_cache, data);
    606    1.1   mycroft 	return (0);
    607   1.35       chs }
    608   1.35       chs 
    609   1.35       chs /*
    610   1.35       chs  * Return the last logical file offset that should be written for this file
    611   1.35       chs  * if we're doing a write that ends at "size".
    612   1.35       chs  */
    613   1.39       chs 
    614   1.39       chs void
    615   1.83  christos ffs_gop_size(struct vnode *vp, off_t size, off_t *eobp, int flags)
    616   1.35       chs {
    617   1.39       chs 	struct inode *ip = VTOI(vp);
    618   1.35       chs 	struct fs *fs = ip->i_fs;
    619   1.52      fvdl 	daddr_t olbn, nlbn;
    620   1.55  perseant 
    621  1.123  dholland 	olbn = ffs_lblkno(fs, ip->i_size);
    622  1.123  dholland 	nlbn = ffs_lblkno(fs, size);
    623  1.122  dholland 	if (nlbn < UFS_NDADDR && olbn <= nlbn) {
    624  1.123  dholland 		*eobp = ffs_fragroundup(fs, size);
    625   1.35       chs 	} else {
    626  1.123  dholland 		*eobp = ffs_blkroundup(fs, size);
    627   1.35       chs 	}
    628    1.1   mycroft }
    629