#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ufs_inode.c,v 1.114 2026/01/22 03:24:19 riastradh Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ffs.h"
#include "opt_quota.h"
#include "opt_uvmhist.h"
#include "opt_wapbl.h"
#endif
#include <sys/param.h>
#include <sys/types.h>
#include <sys/kauth.h>
#include <sys/kernel.h>
#include <sys/kmem.h>
#include <sys/mount.h>
#include <sys/namei.h>
#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/vnode.h>
#include <sys/wapbl.h>
#ifdef UFS_DIRHASH
#include <ufs/ufs/dirhash.h>
#endif
#ifdef UFS_EXTATTR
#include <ufs/ufs/extattr.h>
#endif
#include <ufs/ufs/inode.h>
#include <ufs/ufs/ufs_extern.h>
#include <ufs/ufs/ufs_wapbl.h>
#include <ufs/ufs/ufsmount.h>
#ifdef UVMHIST
#include <uvm/uvm.h>
#endif
#include <uvm/uvm_page.h>
#include <uvm/uvm_stat.h>
int
ufs_inactive(void *v)
{
struct vop_inactive_v2_args
*ap = v;
struct vnode *vp = ap->a_vp;
struct inode *ip = VTOI(vp);
struct mount *mp = vp->v_mount;
mode_t mode;
int allerror = 0, error;
bool wapbl_locked = false;
UFS_WAPBL_JUNLOCK_ASSERT(mp);
if (ip->i_mode == 0)
goto out;
if (ip->i_nlink <= 0 && (mp->mnt_flag & MNT_RDONLY) == 0) {
#ifdef UFS_EXTATTR
ufs_extattr_vnode_inactive(vp, curlwp);
#endif
ufs_truncate_all(vp);
#if defined(QUOTA) || defined(QUOTA2)
error = UFS_WAPBL_BEGIN(mp);
if (error) {
allerror = error;
} else {
wapbl_locked = true;
(void)chkiq(ip, -1, NOCRED, 0);
}
#endif
DIP_ASSIGN(ip, rdev, 0);
mode = ip->i_mode;
ip->i_mode = 0;
ip->i_omode = mode;
DIP_ASSIGN(ip, mode, 0);
ip->i_flag |= IN_CHANGE | IN_UPDATE;
}
if (ip->i_flag & (IN_CHANGE | IN_UPDATE | IN_MODIFIED)) {
if (! wapbl_locked) {
error = UFS_WAPBL_BEGIN(mp);
if (error) {
allerror = error;
goto out;
}
wapbl_locked = true;
}
UFS_UPDATE(vp, NULL, NULL, 0);
}
out:
if (wapbl_locked)
UFS_WAPBL_END(mp);
*ap->a_recycle = (ip->i_mode == 0);
if (ip->i_mode == 0 && (DIP(ip, size) != 0 || DIP(ip, blocks) != 0)) {
printf("%s: unlinked ino %" PRId64 " on \"%s\" has"
" non zero size %" PRIx64 " or blocks %" PRIx64
" with allerror %d\n",
__func__, ip->i_number, mp->mnt_stat.f_mntonname,
DIP(ip, size), DIP(ip, blocks), allerror);
panic("%s: dirty filesystem?", __func__);
}
return allerror;
}
int
ufs_reclaim(struct vnode *vp)
{
struct inode *ip = VTOI(vp);
if (!UFS_WAPBL_BEGIN(vp->v_mount)) {
UFS_UPDATE(vp, NULL, NULL, UPDATE_CLOSE);
UFS_WAPBL_END(vp->v_mount);
}
UFS_UPDATE(vp, NULL, NULL, UPDATE_CLOSE);
if (ip->i_devvp) {
vrele(ip->i_devvp);
ip->i_devvp = 0;
}
#if defined(QUOTA) || defined(QUOTA2)
ufsquota_free(ip);
#endif
#ifdef UFS_DIRHASH
if (ip->i_dirhash != NULL)
ufsdirhash_free(ip);
#endif
return 0;
}
int
ufs_balloc_range(struct vnode *vp, off_t off, off_t len, kauth_cred_t cred,
int flags)
{
off_t neweof;
off_t neweob;
off_t pagestart;
off_t eob;
struct uvm_object *uobj;
int i, delta, error, npages;
int bshift = vp->v_mount->mnt_fs_bshift;
int bsize = 1 << bshift;
int ppb = MAX(bsize >> PAGE_SHIFT, 1);
struct vm_page **pgs;
size_t pgssize;
UVMHIST_FUNC("ufs_balloc_range"); UVMHIST_CALLED(ubchist);
UVMHIST_LOG(ubchist, "vp %#jx off 0x%jx len 0x%jx u_size 0x%jx",
(uintptr_t)vp, off, len, vp->v_size);
neweof = MAX(vp->v_size, off + len);
GOP_SIZE(vp, neweof, &neweob, 0);
error = 0;
uobj = &vp->v_uobj;
pagestart = trunc_page(off) & ~(bsize - 1);
npages = MIN(ppb, (round_page(neweob) - pagestart) >> PAGE_SHIFT);
pgssize = npages * sizeof(struct vm_page *);
pgs = kmem_zalloc(pgssize, KM_SLEEP);
delta = off & (bsize - 1);
off -= delta;
len += delta;
genfs_node_wrlock(vp);
rw_enter(uobj->vmobjlock, RW_WRITER);
error = VOP_GETPAGES(vp, pagestart, pgs, &npages, 0,
VM_PROT_WRITE, 0, PGO_SYNCIO | PGO_PASTEOF | PGO_NOBLOCKALLOC |
PGO_NOTIMESTAMP | PGO_GLOCKHELD);
if (error) {
genfs_node_unlock(vp);
goto out;
}
error = GOP_ALLOC(vp, off, len, flags, cred);
genfs_node_unlock(vp);
GOP_SIZE(vp, off + len, &eob, 0);
rw_enter(uobj->vmobjlock, RW_WRITER);
for (i = 0; i < npages; i++) {
KASSERT((pgs[i]->flags & PG_RELEASED) == 0);
if (!error) {
if (off <= pagestart + (i << PAGE_SHIFT) &&
pagestart + ((i + 1) << PAGE_SHIFT) <= eob) {
pgs[i]->flags &= ~PG_RDONLY;
}
uvm_pagemarkdirty(pgs[i], UVM_PAGE_STATUS_DIRTY);
}
uvm_pagelock(pgs[i]);
uvm_pageactivate(pgs[i]);
uvm_pageunlock(pgs[i]);
}
uvm_page_unbusy(pgs, npages);
rw_exit(uobj->vmobjlock);
out:
kmem_free(pgs, pgssize);
return error;
}
int
ufs_truncate_retry(struct vnode *vp, int ioflag, uint64_t newsize,
kauth_cred_t cred)
{
struct inode *ip = VTOI(vp);
struct mount *mp = vp->v_mount;
int error = 0;
UFS_WAPBL_JUNLOCK_ASSERT(mp);
do {
error = UFS_WAPBL_BEGIN(mp);
if (error)
goto out;
error = UFS_TRUNCATE(vp, newsize, ioflag, cred);
UFS_WAPBL_END(mp);
if (error != 0 && error != EAGAIN)
goto out;
} while (ip->i_size != newsize);
out:
return error;
}
int
ufs_truncate_all(struct vnode *vp)
{
struct inode *ip = VTOI(vp);
off_t isize = ip->i_size;
if (ip->i_ump->um_fstype == UFS2)
isize += ip->i_ffs2_extsize;
if (isize == 0)
return 0;
return ufs_truncate_retry(vp, IO_NORMAL | IO_EXT, 0, NOCRED);
}