Home | History | Annotate | Line # | Download | only in tmpfs
tmpfs_subr.c revision 1.92
      1  1.92     rmind /*	$NetBSD: tmpfs_subr.c,v 1.92 2013/11/24 17:16:29 rmind Exp $	*/
      2   1.1      jmmv 
      3   1.1      jmmv /*
      4  1.83     rmind  * Copyright (c) 2005-2013 The NetBSD Foundation, Inc.
      5   1.1      jmmv  * All rights reserved.
      6   1.1      jmmv  *
      7   1.1      jmmv  * This code is derived from software contributed to The NetBSD Foundation
      8   1.8      jmmv  * by Julio M. Merino Vidal, developed as part of Google's Summer of Code
      9  1.71     rmind  * 2005 program, and by Mindaugas Rasiukevicius.
     10   1.1      jmmv  *
     11   1.1      jmmv  * Redistribution and use in source and binary forms, with or without
     12   1.1      jmmv  * modification, are permitted provided that the following conditions
     13   1.1      jmmv  * are met:
     14   1.1      jmmv  * 1. Redistributions of source code must retain the above copyright
     15   1.1      jmmv  *    notice, this list of conditions and the following disclaimer.
     16   1.1      jmmv  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1      jmmv  *    notice, this list of conditions and the following disclaimer in the
     18   1.1      jmmv  *    documentation and/or other materials provided with the distribution.
     19   1.1      jmmv  *
     20   1.1      jmmv  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21   1.1      jmmv  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22   1.1      jmmv  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23   1.1      jmmv  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24   1.1      jmmv  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25   1.1      jmmv  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26   1.1      jmmv  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27   1.1      jmmv  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28   1.1      jmmv  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29   1.1      jmmv  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30   1.1      jmmv  * POSSIBILITY OF SUCH DAMAGE.
     31   1.1      jmmv  */
     32   1.1      jmmv 
     33   1.1      jmmv /*
     34  1.71     rmind  * Efficient memory file system: interfaces for inode and directory entry
     35  1.71     rmind  * construction, destruction and manipulation.
     36  1.71     rmind  *
     37  1.71     rmind  * Reference counting
     38  1.71     rmind  *
     39  1.71     rmind  *	The link count of inode (tmpfs_node_t::tn_links) is used as a
     40  1.71     rmind  *	reference counter.  However, it has slightly different semantics.
     41  1.71     rmind  *
     42  1.71     rmind  *	For directories - link count represents directory entries, which
     43  1.71     rmind  *	refer to the directories.  In other words, it represents the count
     44  1.71     rmind  *	of sub-directories.  It also takes into account the virtual '.'
     45  1.71     rmind  *	entry (which has no real entry in the list).  For files - link count
     46  1.71     rmind  *	represents the hard links.  Since only empty directories can be
     47  1.71     rmind  *	removed - link count aligns the reference counting requirements
     48  1.71     rmind  *	enough.  Note: to check whether directory is not empty, the inode
     49  1.71     rmind  *	size (tmpfs_node_t::tn_size) can be used.
     50  1.71     rmind  *
     51  1.71     rmind  *	The inode itself, as an object, gathers its first reference when
     52  1.71     rmind  *	directory entry is attached via tmpfs_dir_attach(9).  For instance,
     53  1.71     rmind  *	after regular tmpfs_create(), a file would have a link count of 1,
     54  1.71     rmind  *	while directory after tmpfs_mkdir() would have 2 (due to '.').
     55  1.71     rmind  *
     56  1.71     rmind  * Reclamation
     57  1.71     rmind  *
     58  1.71     rmind  *	It should be noted that tmpfs inodes rely on a combination of vnode
     59  1.71     rmind  *	reference counting and link counting.  That is, an inode can only be
     60  1.71     rmind  *	destroyed if its associated vnode is inactive.  The destruction is
     61  1.71     rmind  *	done on vnode reclamation i.e. tmpfs_reclaim().  It should be noted
     62  1.90     rmind  *	that tmpfs_node_t::tn_links being 0 is a destruction criterion.
     63  1.71     rmind  *
     64  1.71     rmind  *	If an inode has references within the file system (tn_links > 0) and
     65  1.71     rmind  *	its inactive vnode gets reclaimed/recycled - then the association is
     66  1.71     rmind  *	broken in tmpfs_reclaim().  In such case, an inode will always pass
     67  1.71     rmind  *	tmpfs_lookup() and thus tmpfs_vnode_get() to associate a new vnode.
     68  1.71     rmind  *
     69  1.71     rmind  * Lock order
     70  1.71     rmind  *
     71  1.71     rmind  *	tmpfs_node_t::tn_vlock ->
     72  1.71     rmind  *		vnode_t::v_vlock ->
     73  1.71     rmind  *			vnode_t::v_interlock
     74   1.1      jmmv  */
     75   1.1      jmmv 
     76   1.1      jmmv #include <sys/cdefs.h>
     77  1.92     rmind __KERNEL_RCSID(0, "$NetBSD: tmpfs_subr.c,v 1.92 2013/11/24 17:16:29 rmind Exp $");
     78   1.1      jmmv 
     79   1.1      jmmv #include <sys/param.h>
     80  1.86     rmind #include <sys/cprng.h>
     81   1.1      jmmv #include <sys/dirent.h>
     82   1.1      jmmv #include <sys/event.h>
     83  1.43        ad #include <sys/kmem.h>
     84   1.1      jmmv #include <sys/mount.h>
     85   1.1      jmmv #include <sys/namei.h>
     86   1.1      jmmv #include <sys/time.h>
     87   1.1      jmmv #include <sys/stat.h>
     88   1.1      jmmv #include <sys/systm.h>
     89   1.1      jmmv #include <sys/vnode.h>
     90  1.20  christos #include <sys/kauth.h>
     91  1.43        ad #include <sys/atomic.h>
     92   1.1      jmmv 
     93   1.1      jmmv #include <uvm/uvm.h>
     94   1.1      jmmv 
     95   1.1      jmmv #include <miscfs/specfs/specdev.h>
     96  1.53      elad #include <miscfs/genfs/genfs.h>
     97   1.1      jmmv #include <fs/tmpfs/tmpfs.h>
     98   1.1      jmmv #include <fs/tmpfs/tmpfs_fifoops.h>
     99   1.1      jmmv #include <fs/tmpfs/tmpfs_specops.h>
    100   1.1      jmmv #include <fs/tmpfs/tmpfs_vnops.h>
    101   1.1      jmmv 
    102  1.83     rmind static void	tmpfs_dir_putseq(tmpfs_node_t *, tmpfs_dirent_t *);
    103  1.83     rmind 
    104   1.8      jmmv /*
    105  1.65     rmind  * tmpfs_alloc_node: allocate a new inode of a specified type and
    106  1.65     rmind  * insert it into the list of specified mount point.
    107   1.8      jmmv  */
    108   1.1      jmmv int
    109  1.71     rmind tmpfs_alloc_node(tmpfs_mount_t *tmp, enum vtype type, uid_t uid, gid_t gid,
    110  1.71     rmind     mode_t mode, char *target, dev_t rdev, tmpfs_node_t **node)
    111   1.1      jmmv {
    112  1.67     rmind 	tmpfs_node_t *nnode;
    113   1.1      jmmv 
    114  1.57     rmind 	nnode = tmpfs_node_get(tmp);
    115  1.43        ad 	if (nnode == NULL) {
    116  1.43        ad 		return ENOSPC;
    117   1.1      jmmv 	}
    118  1.43        ad 
    119  1.71     rmind 	/* Initially, no references and no associations. */
    120  1.71     rmind 	nnode->tn_links = 0;
    121  1.71     rmind 	nnode->tn_vnode = NULL;
    122  1.71     rmind 	nnode->tn_dirent_hint = NULL;
    123  1.71     rmind 
    124  1.43        ad 	/*
    125  1.43        ad 	 * XXX Where the pool is backed by a map larger than (4GB *
    126  1.43        ad 	 * sizeof(*nnode)), this may produce duplicate inode numbers
    127  1.43        ad 	 * for applications that do not understand 64-bit ino_t.
    128  1.43        ad 	 */
    129  1.43        ad 	nnode->tn_id = (ino_t)((uintptr_t)nnode / sizeof(*nnode));
    130  1.88     rmind 	nnode->tn_gen = TMPFS_NODE_GEN_MASK & cprng_fast32();
    131   1.1      jmmv 
    132   1.1      jmmv 	/* Generic initialization. */
    133   1.1      jmmv 	nnode->tn_type = type;
    134   1.1      jmmv 	nnode->tn_size = 0;
    135   1.1      jmmv 	nnode->tn_flags = 0;
    136  1.65     rmind 	nnode->tn_lockf = NULL;
    137  1.56     rmind 
    138  1.56     rmind 	vfs_timestamp(&nnode->tn_atime);
    139  1.56     rmind 	nnode->tn_birthtime = nnode->tn_atime;
    140  1.56     rmind 	nnode->tn_ctime = nnode->tn_atime;
    141  1.56     rmind 	nnode->tn_mtime = nnode->tn_atime;
    142  1.56     rmind 
    143  1.65     rmind 	KASSERT(uid != VNOVAL && gid != VNOVAL && mode != VNOVAL);
    144   1.1      jmmv 	nnode->tn_uid = uid;
    145   1.1      jmmv 	nnode->tn_gid = gid;
    146   1.1      jmmv 	nnode->tn_mode = mode;
    147   1.1      jmmv 
    148   1.1      jmmv 	/* Type-specific initialization. */
    149   1.1      jmmv 	switch (nnode->tn_type) {
    150   1.1      jmmv 	case VBLK:
    151   1.1      jmmv 	case VCHR:
    152  1.65     rmind 		/* Character/block special device. */
    153  1.65     rmind 		KASSERT(rdev != VNOVAL);
    154  1.18      jmmv 		nnode->tn_spec.tn_dev.tn_rdev = rdev;
    155   1.1      jmmv 		break;
    156  1.65     rmind 	case VDIR:
    157  1.71     rmind 		/* Directory. */
    158  1.18      jmmv 		TAILQ_INIT(&nnode->tn_spec.tn_dir.tn_dir);
    159  1.71     rmind 		nnode->tn_spec.tn_dir.tn_parent = NULL;
    160  1.83     rmind 		nnode->tn_spec.tn_dir.tn_seq_arena = NULL;
    161  1.83     rmind 		nnode->tn_spec.tn_dir.tn_next_seq = TMPFS_DIRSEQ_START;
    162  1.18      jmmv 		nnode->tn_spec.tn_dir.tn_readdir_lastp = NULL;
    163  1.71     rmind 
    164  1.71     rmind 		/* Extra link count for the virtual '.' entry. */
    165   1.1      jmmv 		nnode->tn_links++;
    166   1.1      jmmv 		break;
    167   1.1      jmmv 	case VFIFO:
    168   1.1      jmmv 	case VSOCK:
    169   1.1      jmmv 		break;
    170  1.65     rmind 	case VLNK:
    171  1.65     rmind 		/* Symbolic link.  Target specifies the file name. */
    172  1.81     rmind 		KASSERT(target != NULL);
    173  1.82     rmind 		nnode->tn_size = strlen(target);
    174  1.82     rmind 
    175  1.82     rmind 		if (nnode->tn_size == 0) {
    176  1.82     rmind 			/* Zero-length targets are supported. */
    177  1.82     rmind 			nnode->tn_spec.tn_lnk.tn_link = NULL;
    178  1.82     rmind 			break;
    179  1.82     rmind 		}
    180   1.1      jmmv 
    181  1.81     rmind 		KASSERT(nnode->tn_size < MAXPATHLEN);
    182  1.82     rmind 		nnode->tn_size++; /* include the NUL terminator */
    183  1.81     rmind 
    184  1.18      jmmv 		nnode->tn_spec.tn_lnk.tn_link =
    185  1.57     rmind 		    tmpfs_strname_alloc(tmp, nnode->tn_size);
    186  1.18      jmmv 		if (nnode->tn_spec.tn_lnk.tn_link == NULL) {
    187  1.57     rmind 			tmpfs_node_put(tmp, nnode);
    188   1.1      jmmv 			return ENOSPC;
    189   1.1      jmmv 		}
    190  1.18      jmmv 		memcpy(nnode->tn_spec.tn_lnk.tn_link, target, nnode->tn_size);
    191   1.1      jmmv 		break;
    192   1.1      jmmv 	case VREG:
    193  1.65     rmind 		/* Regular file.  Create an underlying UVM object. */
    194  1.18      jmmv 		nnode->tn_spec.tn_reg.tn_aobj =
    195  1.18      jmmv 		    uao_create(INT32_MAX - PAGE_SIZE, 0);
    196  1.18      jmmv 		nnode->tn_spec.tn_reg.tn_aobj_pages = 0;
    197   1.1      jmmv 		break;
    198   1.1      jmmv 	default:
    199  1.65     rmind 		KASSERT(false);
    200   1.1      jmmv 	}
    201   1.1      jmmv 
    202  1.43        ad 	mutex_init(&nnode->tn_vlock, MUTEX_DEFAULT, IPL_NONE);
    203  1.43        ad 
    204  1.43        ad 	mutex_enter(&tmp->tm_lock);
    205  1.43        ad 	LIST_INSERT_HEAD(&tmp->tm_nodes, nnode, tn_entries);
    206  1.43        ad 	mutex_exit(&tmp->tm_lock);
    207  1.43        ad 
    208   1.1      jmmv 	*node = nnode;
    209   1.1      jmmv 	return 0;
    210   1.1      jmmv }
    211   1.1      jmmv 
    212   1.8      jmmv /*
    213  1.65     rmind  * tmpfs_free_node: remove the inode from a list in the mount point and
    214  1.65     rmind  * destroy the inode structures.
    215   1.8      jmmv  */
    216   1.1      jmmv void
    217  1.67     rmind tmpfs_free_node(tmpfs_mount_t *tmp, tmpfs_node_t *node)
    218   1.1      jmmv {
    219  1.57     rmind 	size_t objsz;
    220  1.43        ad 
    221  1.43        ad 	mutex_enter(&tmp->tm_lock);
    222  1.43        ad 	LIST_REMOVE(node, tn_entries);
    223  1.43        ad 	mutex_exit(&tmp->tm_lock);
    224   1.1      jmmv 
    225  1.40        ad 	switch (node->tn_type) {
    226   1.1      jmmv 	case VLNK:
    227  1.65     rmind 		if (node->tn_size > 0) {
    228  1.63   hannken 			tmpfs_strname_free(tmp, node->tn_spec.tn_lnk.tn_link,
    229  1.63   hannken 			    node->tn_size);
    230  1.65     rmind 		}
    231   1.1      jmmv 		break;
    232   1.1      jmmv 	case VREG:
    233  1.57     rmind 		/*
    234  1.65     rmind 		 * Calculate the size of inode data, decrease the used-memory
    235  1.65     rmind 		 * counter, and destroy the unerlying UVM object (if any).
    236  1.57     rmind 		 */
    237  1.57     rmind 		objsz = PAGE_SIZE * node->tn_spec.tn_reg.tn_aobj_pages;
    238  1.57     rmind 		if (objsz != 0) {
    239  1.57     rmind 			tmpfs_mem_decr(tmp, objsz);
    240  1.57     rmind 		}
    241  1.57     rmind 		if (node->tn_spec.tn_reg.tn_aobj != NULL) {
    242  1.18      jmmv 			uao_detach(node->tn_spec.tn_reg.tn_aobj);
    243  1.57     rmind 		}
    244   1.1      jmmv 		break;
    245  1.65     rmind 	case VDIR:
    246  1.90     rmind 		KASSERT(node->tn_size == 0);
    247  1.83     rmind 		KASSERT(node->tn_spec.tn_dir.tn_seq_arena == NULL);
    248  1.83     rmind 		KASSERT(TAILQ_EMPTY(&node->tn_spec.tn_dir.tn_dir));
    249  1.83     rmind 		KASSERT(node->tn_spec.tn_dir.tn_parent == NULL ||
    250  1.83     rmind 		    node == tmp->tm_root);
    251  1.65     rmind 		break;
    252   1.1      jmmv 	default:
    253   1.1      jmmv 		break;
    254   1.1      jmmv 	}
    255  1.90     rmind 	KASSERT(node->tn_links == 0);
    256   1.1      jmmv 
    257  1.43        ad 	mutex_destroy(&node->tn_vlock);
    258  1.57     rmind 	tmpfs_node_put(tmp, node);
    259   1.1      jmmv }
    260   1.1      jmmv 
    261   1.8      jmmv /*
    262  1.71     rmind  * tmpfs_vnode_get: allocate or reclaim a vnode for a specified inode.
    263   1.8      jmmv  *
    264  1.71     rmind  * => Must be called with tmpfs_node_t::tn_vlock held.
    265  1.64     rmind  * => Returns vnode (*vpp) locked.
    266   1.8      jmmv  */
    267   1.1      jmmv int
    268  1.71     rmind tmpfs_vnode_get(struct mount *mp, tmpfs_node_t *node, vnode_t **vpp)
    269   1.1      jmmv {
    270  1.64     rmind 	vnode_t *vp;
    271  1.73     rmind 	kmutex_t *slock;
    272   1.1      jmmv 	int error;
    273  1.64     rmind again:
    274  1.64     rmind 	/* If there is already a vnode, try to reclaim it. */
    275  1.64     rmind 	if ((vp = node->tn_vnode) != NULL) {
    276  1.88     rmind 		atomic_or_32(&node->tn_gen, TMPFS_RECLAIMING_BIT);
    277  1.73     rmind 		mutex_enter(vp->v_interlock);
    278  1.64     rmind 		mutex_exit(&node->tn_vlock);
    279  1.64     rmind 		error = vget(vp, LK_EXCLUSIVE);
    280  1.64     rmind 		if (error == ENOENT) {
    281  1.71     rmind 			mutex_enter(&node->tn_vlock);
    282  1.64     rmind 			goto again;
    283  1.43        ad 		}
    284  1.88     rmind 		atomic_and_32(&node->tn_gen, ~TMPFS_RECLAIMING_BIT);
    285  1.64     rmind 		*vpp = vp;
    286  1.64     rmind 		return error;
    287   1.1      jmmv 	}
    288  1.71     rmind 	if (TMPFS_NODE_RECLAIMING(node)) {
    289  1.88     rmind 		atomic_and_32(&node->tn_gen, ~TMPFS_RECLAIMING_BIT);
    290  1.71     rmind 	}
    291   1.1      jmmv 
    292  1.73     rmind 	/*
    293  1.73     rmind 	 * Get a new vnode and associate it with our inode.  Share the
    294  1.73     rmind 	 * lock with underlying UVM object, if there is one (VREG case).
    295  1.73     rmind 	 */
    296  1.73     rmind 	if (node->tn_type == VREG) {
    297  1.73     rmind 		struct uvm_object *uobj = node->tn_spec.tn_reg.tn_aobj;
    298  1.73     rmind 		slock = uobj->vmobjlock;
    299  1.73     rmind 	} else {
    300  1.73     rmind 		slock = NULL;
    301  1.73     rmind 	}
    302  1.73     rmind 	error = getnewvnode(VT_TMPFS, mp, tmpfs_vnodeop_p, slock, &vp);
    303  1.67     rmind 	if (error) {
    304  1.43        ad 		mutex_exit(&node->tn_vlock);
    305  1.43        ad 		return error;
    306  1.43        ad 	}
    307   1.1      jmmv 
    308  1.64     rmind 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    309   1.1      jmmv 	vp->v_type = node->tn_type;
    310   1.1      jmmv 
    311   1.1      jmmv 	/* Type-specific initialization. */
    312   1.1      jmmv 	switch (node->tn_type) {
    313   1.1      jmmv 	case VBLK:
    314   1.1      jmmv 	case VCHR:
    315   1.1      jmmv 		vp->v_op = tmpfs_specop_p;
    316  1.44        ad 		spec_node_init(vp, node->tn_spec.tn_dev.tn_rdev);
    317   1.1      jmmv 		break;
    318   1.1      jmmv 	case VDIR:
    319  1.40        ad 		vp->v_vflag |= node->tn_spec.tn_dir.tn_parent == node ?
    320  1.40        ad 		    VV_ROOT : 0;
    321   1.1      jmmv 		break;
    322   1.1      jmmv 	case VFIFO:
    323   1.1      jmmv 		vp->v_op = tmpfs_fifoop_p;
    324   1.1      jmmv 		break;
    325   1.1      jmmv 	case VLNK:
    326   1.1      jmmv 	case VREG:
    327   1.1      jmmv 	case VSOCK:
    328   1.1      jmmv 		break;
    329   1.1      jmmv 	default:
    330  1.67     rmind 		KASSERT(false);
    331   1.1      jmmv 	}
    332   1.1      jmmv 
    333   1.1      jmmv 	uvm_vnp_setsize(vp, node->tn_size);
    334  1.43        ad 	vp->v_data = node;
    335  1.43        ad 	node->tn_vnode = vp;
    336  1.43        ad 	mutex_exit(&node->tn_vlock);
    337  1.67     rmind 
    338  1.67     rmind 	KASSERT(VOP_ISLOCKED(vp));
    339  1.43        ad 	*vpp = vp;
    340  1.67     rmind 	return 0;
    341   1.1      jmmv }
    342   1.1      jmmv 
    343   1.8      jmmv /*
    344  1.90     rmind  * tmpfs_construct_node: allocate a new file of specified type and adds it
    345  1.67     rmind  * into the parent directory.
    346  1.67     rmind  *
    347  1.67     rmind  * => Credentials of the caller are used.
    348   1.9      jmmv  */
    349   1.1      jmmv int
    350  1.90     rmind tmpfs_construct_node(vnode_t *dvp, vnode_t **vpp, struct vattr *vap,
    351   1.1      jmmv     struct componentname *cnp, char *target)
    352   1.1      jmmv {
    353  1.67     rmind 	tmpfs_mount_t *tmp = VFS_TO_TMPFS(dvp->v_mount);
    354  1.71     rmind 	tmpfs_node_t *dnode = VP_TO_TMPFS_DIR(dvp), *node;
    355  1.77   hannken 	tmpfs_dirent_t *de, *wde;
    356   1.1      jmmv 	int error;
    357   1.1      jmmv 
    358   1.1      jmmv 	KASSERT(VOP_ISLOCKED(dvp));
    359   1.1      jmmv 	*vpp = NULL;
    360   1.1      jmmv 
    361  1.92     rmind 	/*
    362  1.92     rmind 	 * If directory was removed, prevent from node creation.  The vnode
    363  1.92     rmind 	 * might still be referenced, but it is about to be reclaimed.
    364  1.92     rmind 	 */
    365  1.92     rmind 	if (dnode->tn_links == 0) {
    366  1.92     rmind 		error = ENOENT;
    367  1.92     rmind 		goto out;
    368  1.92     rmind 	}
    369  1.92     rmind 
    370  1.67     rmind 	/* Check for the maximum number of links limit. */
    371   1.1      jmmv 	if (vap->va_type == VDIR) {
    372  1.67     rmind 		/* Check for maximum links limit. */
    373   1.1      jmmv 		if (dnode->tn_links == LINK_MAX) {
    374   1.1      jmmv 			error = EMLINK;
    375   1.1      jmmv 			goto out;
    376   1.1      jmmv 		}
    377  1.71     rmind 		KASSERT(dnode->tn_links < LINK_MAX);
    378  1.67     rmind 	}
    379   1.1      jmmv 
    380   1.1      jmmv 	/* Allocate a node that represents the new file. */
    381  1.19      elad 	error = tmpfs_alloc_node(tmp, vap->va_type, kauth_cred_geteuid(cnp->cn_cred),
    382  1.71     rmind 	    dnode->tn_gid, vap->va_mode, target, vap->va_rdev, &node);
    383  1.67     rmind 	if (error)
    384   1.1      jmmv 		goto out;
    385   1.1      jmmv 
    386   1.1      jmmv 	/* Allocate a directory entry that points to the new file. */
    387  1.71     rmind 	error = tmpfs_alloc_dirent(tmp, cnp->cn_nameptr, cnp->cn_namelen, &de);
    388  1.67     rmind 	if (error) {
    389   1.1      jmmv 		tmpfs_free_node(tmp, node);
    390   1.1      jmmv 		goto out;
    391   1.1      jmmv 	}
    392   1.1      jmmv 
    393  1.71     rmind 	/* Get a vnode for the new file. */
    394  1.71     rmind 	mutex_enter(&node->tn_vlock);
    395  1.71     rmind 	error = tmpfs_vnode_get(dvp->v_mount, node, vpp);
    396  1.67     rmind 	if (error) {
    397  1.71     rmind 		tmpfs_free_dirent(tmp, de);
    398   1.1      jmmv 		tmpfs_free_node(tmp, node);
    399   1.1      jmmv 		goto out;
    400   1.1      jmmv 	}
    401   1.1      jmmv 
    402  1.77   hannken 	/* Remove whiteout before adding the new entry. */
    403  1.77   hannken 	if (cnp->cn_flags & ISWHITEOUT) {
    404  1.77   hannken 		wde = tmpfs_dir_lookup(dnode, cnp);
    405  1.77   hannken 		KASSERT(wde != NULL && wde->td_node == TMPFS_NODE_WHITEOUT);
    406  1.83     rmind 		tmpfs_dir_detach(dnode, wde);
    407  1.77   hannken 		tmpfs_free_dirent(tmp, wde);
    408  1.77   hannken 	}
    409  1.77   hannken 
    410  1.71     rmind 	/* Associate inode and attach the entry into the directory. */
    411  1.83     rmind 	tmpfs_dir_attach(dnode, de, node);
    412  1.77   hannken 
    413  1.77   hannken 	/* Make node opaque if requested. */
    414  1.77   hannken 	if (cnp->cn_flags & ISWHITEOUT)
    415  1.77   hannken 		node->tn_flags |= UF_OPAQUE;
    416  1.90     rmind 
    417  1.90     rmind 	/* Update the parent's timestamps. */
    418  1.90     rmind 	tmpfs_update(dvp, TMPFS_UPDATE_MTIME | TMPFS_UPDATE_CTIME);
    419   1.1      jmmv out:
    420   1.1      jmmv 	vput(dvp);
    421   1.1      jmmv 	return error;
    422   1.1      jmmv }
    423   1.1      jmmv 
    424   1.8      jmmv /*
    425  1.68     rmind  * tmpfs_alloc_dirent: allocates a new directory entry for the inode.
    426  1.71     rmind  * The directory entry contains a path name component.
    427  1.68     rmind  */
    428  1.68     rmind int
    429  1.71     rmind tmpfs_alloc_dirent(tmpfs_mount_t *tmp, const char *name, uint16_t len,
    430  1.71     rmind     tmpfs_dirent_t **de)
    431  1.68     rmind {
    432  1.68     rmind 	tmpfs_dirent_t *nde;
    433  1.68     rmind 
    434  1.68     rmind 	nde = tmpfs_dirent_get(tmp);
    435  1.68     rmind 	if (nde == NULL)
    436  1.68     rmind 		return ENOSPC;
    437  1.68     rmind 
    438  1.68     rmind 	nde->td_name = tmpfs_strname_alloc(tmp, len);
    439  1.68     rmind 	if (nde->td_name == NULL) {
    440  1.68     rmind 		tmpfs_dirent_put(tmp, nde);
    441  1.68     rmind 		return ENOSPC;
    442  1.68     rmind 	}
    443  1.68     rmind 	nde->td_namelen = len;
    444  1.68     rmind 	memcpy(nde->td_name, name, len);
    445  1.83     rmind 	nde->td_seq = TMPFS_DIRSEQ_NONE;
    446  1.68     rmind 
    447  1.68     rmind 	*de = nde;
    448  1.68     rmind 	return 0;
    449  1.68     rmind }
    450  1.68     rmind 
    451  1.68     rmind /*
    452  1.68     rmind  * tmpfs_free_dirent: free a directory entry.
    453  1.68     rmind  */
    454  1.68     rmind void
    455  1.71     rmind tmpfs_free_dirent(tmpfs_mount_t *tmp, tmpfs_dirent_t *de)
    456  1.68     rmind {
    457  1.83     rmind 	KASSERT(de->td_node == NULL);
    458  1.83     rmind 	KASSERT(de->td_seq == TMPFS_DIRSEQ_NONE);
    459  1.68     rmind 	tmpfs_strname_free(tmp, de->td_name, de->td_namelen);
    460  1.68     rmind 	tmpfs_dirent_put(tmp, de);
    461  1.68     rmind }
    462  1.68     rmind 
    463  1.68     rmind /*
    464  1.71     rmind  * tmpfs_dir_attach: associate directory entry with a specified inode,
    465  1.71     rmind  * and attach the entry into the directory, specified by vnode.
    466  1.29      jmmv  *
    467  1.71     rmind  * => Increases link count on the associated node.
    468  1.90     rmind  * => Increases link count on directory node if our node is VDIR.
    469  1.90     rmind  * => It is caller's responsibility to check for the LINK_MAX limit.
    470  1.71     rmind  * => Triggers kqueue events here.
    471   1.8      jmmv  */
    472   1.1      jmmv void
    473  1.83     rmind tmpfs_dir_attach(tmpfs_node_t *dnode, tmpfs_dirent_t *de, tmpfs_node_t *node)
    474   1.1      jmmv {
    475  1.83     rmind 	vnode_t *dvp = dnode->tn_vnode;
    476  1.71     rmind 	int events = NOTE_WRITE;
    477  1.71     rmind 
    478  1.83     rmind 	KASSERT(dvp != NULL);
    479  1.71     rmind 	KASSERT(VOP_ISLOCKED(dvp));
    480  1.71     rmind 
    481  1.83     rmind 	/* Get a new sequence number. */
    482  1.83     rmind 	KASSERT(de->td_seq == TMPFS_DIRSEQ_NONE);
    483  1.83     rmind 	de->td_seq = tmpfs_dir_getseq(dnode, de);
    484  1.83     rmind 
    485  1.71     rmind 	/* Associate directory entry and the inode. */
    486  1.77   hannken 	de->td_node = node;
    487  1.71     rmind 	if (node != TMPFS_NODE_WHITEOUT) {
    488  1.71     rmind 		KASSERT(node->tn_links < LINK_MAX);
    489  1.71     rmind 		node->tn_links++;
    490   1.1      jmmv 
    491  1.71     rmind 		/* Save the hint (might overwrite). */
    492  1.71     rmind 		node->tn_dirent_hint = de;
    493  1.90     rmind 	} else if ((dnode->tn_gen & TMPFS_WHITEOUT_BIT) == 0) {
    494  1.90     rmind 		/* Flag that there are whiteout entries. */
    495  1.90     rmind 		atomic_or_32(&dnode->tn_gen, TMPFS_WHITEOUT_BIT);
    496  1.71     rmind 	}
    497   1.1      jmmv 
    498  1.71     rmind 	/* Insert the entry to the directory (parent of inode). */
    499  1.18      jmmv 	TAILQ_INSERT_TAIL(&dnode->tn_spec.tn_dir.tn_dir, de, td_entries);
    500  1.67     rmind 	dnode->tn_size += sizeof(tmpfs_dirent_t);
    501  1.71     rmind 	uvm_vnp_setsize(dvp, dnode->tn_size);
    502  1.71     rmind 
    503  1.71     rmind 	if (node != TMPFS_NODE_WHITEOUT && node->tn_type == VDIR) {
    504  1.71     rmind 		/* Set parent. */
    505  1.71     rmind 		KASSERT(node->tn_spec.tn_dir.tn_parent == NULL);
    506  1.71     rmind 		node->tn_spec.tn_dir.tn_parent = dnode;
    507  1.71     rmind 
    508  1.71     rmind 		/* Increase the link count of parent. */
    509  1.71     rmind 		KASSERT(dnode->tn_links < LINK_MAX);
    510  1.71     rmind 		dnode->tn_links++;
    511  1.71     rmind 		events |= NOTE_LINK;
    512  1.71     rmind 
    513  1.71     rmind 		TMPFS_VALIDATE_DIR(node);
    514  1.71     rmind 	}
    515  1.71     rmind 	VN_KNOTE(dvp, events);
    516   1.1      jmmv }
    517   1.1      jmmv 
    518   1.8      jmmv /*
    519  1.71     rmind  * tmpfs_dir_detach: disassociate directory entry and its inode,
    520  1.71     rmind  * and detach the entry from the directory, specified by vnode.
    521  1.29      jmmv  *
    522  1.71     rmind  * => Decreases link count on the associated node.
    523  1.71     rmind  * => Decreases the link count on directory node, if our node is VDIR.
    524  1.71     rmind  * => Triggers kqueue events here.
    525  1.83     rmind  *
    526  1.83     rmind  * => Note: dvp and vp may be NULL only if called by tmpfs_unmount().
    527   1.8      jmmv  */
    528   1.1      jmmv void
    529  1.83     rmind tmpfs_dir_detach(tmpfs_node_t *dnode, tmpfs_dirent_t *de)
    530   1.1      jmmv {
    531  1.71     rmind 	tmpfs_node_t *node = de->td_node;
    532  1.83     rmind 	vnode_t *vp, *dvp = dnode->tn_vnode;
    533  1.71     rmind 	int events = NOTE_WRITE;
    534  1.71     rmind 
    535  1.83     rmind 	KASSERT(dvp == NULL || VOP_ISLOCKED(dvp));
    536  1.71     rmind 
    537  1.83     rmind 	if (__predict_true(node != TMPFS_NODE_WHITEOUT)) {
    538  1.71     rmind 		/* Deassociate the inode and entry. */
    539  1.71     rmind 		node->tn_dirent_hint = NULL;
    540   1.1      jmmv 
    541  1.71     rmind 		KASSERT(node->tn_links > 0);
    542  1.71     rmind 		node->tn_links--;
    543  1.83     rmind 
    544  1.83     rmind 		if ((vp = node->tn_vnode) != NULL) {
    545  1.83     rmind 			KASSERT(VOP_ISLOCKED(vp));
    546  1.83     rmind 			VN_KNOTE(vp, node->tn_links ? NOTE_LINK : NOTE_DELETE);
    547  1.83     rmind 		}
    548  1.71     rmind 
    549  1.71     rmind 		/* If directory - decrease the link count of parent. */
    550  1.71     rmind 		if (node->tn_type == VDIR) {
    551  1.71     rmind 			KASSERT(node->tn_spec.tn_dir.tn_parent == dnode);
    552  1.71     rmind 			node->tn_spec.tn_dir.tn_parent = NULL;
    553  1.71     rmind 
    554  1.71     rmind 			KASSERT(dnode->tn_links > 0);
    555  1.71     rmind 			dnode->tn_links--;
    556  1.71     rmind 			events |= NOTE_LINK;
    557  1.71     rmind 		}
    558  1.71     rmind 	}
    559  1.85     rmind 	de->td_node = NULL;
    560   1.1      jmmv 
    561  1.71     rmind 	/* Remove the entry from the directory. */
    562  1.18      jmmv 	if (dnode->tn_spec.tn_dir.tn_readdir_lastp == de) {
    563  1.18      jmmv 		dnode->tn_spec.tn_dir.tn_readdir_lastp = NULL;
    564   1.5      yamt 	}
    565  1.67     rmind 	TAILQ_REMOVE(&dnode->tn_spec.tn_dir.tn_dir, de, td_entries);
    566  1.67     rmind 	dnode->tn_size -= sizeof(tmpfs_dirent_t);
    567  1.83     rmind 	tmpfs_dir_putseq(dnode, de);
    568  1.83     rmind 
    569  1.83     rmind 	if (dvp) {
    570  1.83     rmind 		uvm_vnp_setsize(dvp, dnode->tn_size);
    571  1.83     rmind 		VN_KNOTE(dvp, events);
    572  1.83     rmind 	}
    573   1.1      jmmv }
    574   1.1      jmmv 
    575   1.8      jmmv /*
    576  1.67     rmind  * tmpfs_dir_lookup: find a directory entry in the specified inode.
    577   1.8      jmmv  *
    578  1.67     rmind  * Note that the . and .. components are not allowed as they do not
    579  1.67     rmind  * physically exist within directories.
    580   1.8      jmmv  */
    581  1.67     rmind tmpfs_dirent_t *
    582  1.67     rmind tmpfs_dir_lookup(tmpfs_node_t *node, struct componentname *cnp)
    583   1.1      jmmv {
    584  1.67     rmind 	const char *name = cnp->cn_nameptr;
    585  1.67     rmind 	const uint16_t nlen = cnp->cn_namelen;
    586  1.67     rmind 	tmpfs_dirent_t *de;
    587   1.1      jmmv 
    588  1.49      yamt 	KASSERT(VOP_ISLOCKED(node->tn_vnode));
    589  1.67     rmind 	KASSERT(nlen != 1 || !(name[0] == '.'));
    590  1.67     rmind 	KASSERT(nlen != 2 || !(name[0] == '.' && name[1] == '.'));
    591  1.71     rmind 	TMPFS_VALIDATE_DIR(node);
    592   1.1      jmmv 
    593  1.18      jmmv 	TAILQ_FOREACH(de, &node->tn_spec.tn_dir.tn_dir, td_entries) {
    594  1.67     rmind 		if (de->td_namelen != nlen)
    595  1.67     rmind 			continue;
    596  1.69     rmind 		if (memcmp(de->td_name, name, nlen) != 0)
    597  1.67     rmind 			continue;
    598  1.67     rmind 		break;
    599   1.1      jmmv 	}
    600  1.49      yamt 	return de;
    601   1.1      jmmv }
    602   1.1      jmmv 
    603   1.9      jmmv /*
    604  1.71     rmind  * tmpfs_dir_cached: get a cached directory entry if it is valid.  Used to
    605  1.83     rmind  * avoid unnecessary tmpfs_dir_lookup().
    606  1.71     rmind  *
    607  1.71     rmind  * => The vnode must be locked.
    608  1.71     rmind  */
    609  1.71     rmind tmpfs_dirent_t *
    610  1.71     rmind tmpfs_dir_cached(tmpfs_node_t *node)
    611  1.71     rmind {
    612  1.71     rmind 	tmpfs_dirent_t *de = node->tn_dirent_hint;
    613  1.71     rmind 
    614  1.71     rmind 	KASSERT(VOP_ISLOCKED(node->tn_vnode));
    615  1.71     rmind 
    616  1.71     rmind 	if (de == NULL) {
    617  1.71     rmind 		return NULL;
    618  1.71     rmind 	}
    619  1.71     rmind 	KASSERT(de->td_node == node);
    620  1.71     rmind 
    621  1.71     rmind 	/*
    622  1.71     rmind 	 * Directories always have a valid hint.  For files, check if there
    623  1.71     rmind 	 * are any hard links.  If there are - hint might be invalid.
    624  1.71     rmind 	 */
    625  1.71     rmind 	return (node->tn_type != VDIR && node->tn_links > 1) ? NULL : de;
    626  1.71     rmind }
    627  1.71     rmind 
    628  1.71     rmind /*
    629  1.83     rmind  * tmpfs_dir_getseq: get a per-directory sequence number for the entry.
    630  1.83     rmind  *
    631  1.83     rmind  * => Shall not be larger than 2^31 for linux32 compatibility.
    632   1.9      jmmv  */
    633  1.83     rmind uint32_t
    634  1.83     rmind tmpfs_dir_getseq(tmpfs_node_t *dnode, tmpfs_dirent_t *de)
    635   1.1      jmmv {
    636  1.83     rmind 	uint32_t seq = de->td_seq;
    637  1.83     rmind 	vmem_t *seq_arena;
    638  1.83     rmind 	vmem_addr_t off;
    639  1.84  christos 	int error __diagused;
    640   1.1      jmmv 
    641  1.83     rmind 	TMPFS_VALIDATE_DIR(dnode);
    642  1.83     rmind 
    643  1.83     rmind 	if (__predict_true(seq != TMPFS_DIRSEQ_NONE)) {
    644  1.83     rmind 		/* Already set. */
    645  1.83     rmind 		KASSERT(seq >= TMPFS_DIRSEQ_START);
    646  1.83     rmind 		return seq;
    647  1.83     rmind 	}
    648  1.83     rmind 
    649  1.83     rmind 	/*
    650  1.83     rmind 	 * The "." and ".." and the end-of-directory have reserved numbers.
    651  1.83     rmind 	 * The other sequence numbers are allocated as following:
    652  1.83     rmind 	 *
    653  1.83     rmind 	 * - The first half of the 2^31 is assigned incrementally.
    654  1.83     rmind 	 *
    655  1.83     rmind 	 * - If that range is exceeded, then the second half of 2^31
    656  1.83     rmind 	 * is used, but managed by vmem(9).
    657  1.83     rmind 	 */
    658  1.83     rmind 
    659  1.83     rmind 	seq = dnode->tn_spec.tn_dir.tn_next_seq;
    660  1.83     rmind 	KASSERT(seq >= TMPFS_DIRSEQ_START);
    661  1.83     rmind 
    662  1.83     rmind 	if (__predict_true(seq < TMPFS_DIRSEQ_END)) {
    663  1.83     rmind 		/* First half: just increment and return. */
    664  1.83     rmind 		dnode->tn_spec.tn_dir.tn_next_seq++;
    665  1.83     rmind 		return seq;
    666  1.83     rmind 	}
    667  1.83     rmind 
    668  1.83     rmind 	/*
    669  1.83     rmind 	 * First half exceeded, use the second half.  May need to create
    670  1.83     rmind 	 * vmem(9) arena for the directory first.
    671  1.83     rmind 	 */
    672  1.83     rmind 	if ((seq_arena = dnode->tn_spec.tn_dir.tn_seq_arena) == NULL) {
    673  1.83     rmind 		seq_arena = vmem_create("tmpfscoo", 0,
    674  1.83     rmind 		    TMPFS_DIRSEQ_END - 1, 1, NULL, NULL, NULL, 0,
    675  1.83     rmind 		    VM_SLEEP, IPL_NONE);
    676  1.83     rmind 		dnode->tn_spec.tn_dir.tn_seq_arena = seq_arena;
    677  1.83     rmind 		KASSERT(seq_arena != NULL);
    678  1.83     rmind 	}
    679  1.83     rmind 	error = vmem_alloc(seq_arena, 1, VM_SLEEP | VM_BESTFIT, &off);
    680  1.83     rmind 	KASSERT(error == 0);
    681  1.83     rmind 
    682  1.83     rmind 	KASSERT(off < TMPFS_DIRSEQ_END);
    683  1.83     rmind 	seq = off | TMPFS_DIRSEQ_END;
    684  1.83     rmind 	return seq;
    685  1.83     rmind }
    686  1.83     rmind 
    687  1.83     rmind static void
    688  1.83     rmind tmpfs_dir_putseq(tmpfs_node_t *dnode, tmpfs_dirent_t *de)
    689  1.83     rmind {
    690  1.83     rmind 	vmem_t *seq_arena = dnode->tn_spec.tn_dir.tn_seq_arena;
    691  1.83     rmind 	uint32_t seq = de->td_seq;
    692  1.83     rmind 
    693  1.83     rmind 	TMPFS_VALIDATE_DIR(dnode);
    694  1.83     rmind 
    695  1.83     rmind 	if (seq == TMPFS_DIRSEQ_NONE || seq < TMPFS_DIRSEQ_END) {
    696  1.83     rmind 		/* First half (or no sequence number set yet). */
    697  1.83     rmind 		KASSERT(de->td_seq >= TMPFS_DIRSEQ_START);
    698  1.83     rmind 	} else {
    699  1.83     rmind 		/* Second half. */
    700  1.83     rmind 		KASSERT(seq_arena != NULL);
    701  1.83     rmind 		KASSERT(seq >= TMPFS_DIRSEQ_END);
    702  1.83     rmind 		seq &= ~TMPFS_DIRSEQ_END;
    703  1.83     rmind 		vmem_free(seq_arena, seq, 1);
    704  1.83     rmind 	}
    705  1.83     rmind 	de->td_seq = TMPFS_DIRSEQ_NONE;
    706   1.1      jmmv 
    707  1.83     rmind 	/* Empty?  We can reset. */
    708  1.83     rmind 	if (seq_arena && dnode->tn_size == 0) {
    709  1.83     rmind 		dnode->tn_spec.tn_dir.tn_seq_arena = NULL;
    710  1.83     rmind 		dnode->tn_spec.tn_dir.tn_next_seq = TMPFS_DIRSEQ_START;
    711  1.83     rmind 		vmem_destroy(seq_arena);
    712   1.1      jmmv 	}
    713   1.1      jmmv }
    714   1.1      jmmv 
    715   1.9      jmmv /*
    716  1.83     rmind  * tmpfs_dir_lookupbyseq: lookup a directory entry by the sequence number.
    717   1.9      jmmv  */
    718  1.83     rmind tmpfs_dirent_t *
    719  1.83     rmind tmpfs_dir_lookupbyseq(tmpfs_node_t *node, off_t seq)
    720   1.1      jmmv {
    721  1.83     rmind 	tmpfs_dirent_t *de = node->tn_spec.tn_dir.tn_readdir_lastp;
    722   1.1      jmmv 
    723   1.1      jmmv 	TMPFS_VALIDATE_DIR(node);
    724   1.1      jmmv 
    725  1.83     rmind 	/*
    726  1.83     rmind 	 * First, check the cache.  If does not match - perform a lookup.
    727  1.83     rmind 	 */
    728  1.83     rmind 	if (de && de->td_seq == seq) {
    729  1.83     rmind 		KASSERT(de->td_seq >= TMPFS_DIRSEQ_START);
    730  1.83     rmind 		KASSERT(de->td_seq != TMPFS_DIRSEQ_NONE);
    731  1.83     rmind 		return de;
    732  1.83     rmind 	}
    733  1.83     rmind 	TAILQ_FOREACH(de, &node->tn_spec.tn_dir.tn_dir, td_entries) {
    734  1.83     rmind 		KASSERT(de->td_seq >= TMPFS_DIRSEQ_START);
    735  1.83     rmind 		KASSERT(de->td_seq != TMPFS_DIRSEQ_NONE);
    736  1.83     rmind 		if (de->td_seq == seq)
    737  1.83     rmind 			return de;
    738   1.1      jmmv 	}
    739  1.83     rmind 	return NULL;
    740   1.1      jmmv }
    741   1.1      jmmv 
    742   1.9      jmmv /*
    743  1.83     rmind  * tmpfs_dir_getdotents: helper function for tmpfs_readdir() to get the
    744  1.83     rmind  * dot meta entries, that is, "." or "..".  Copy it to the UIO space.
    745   1.9      jmmv  */
    746  1.83     rmind static int
    747  1.83     rmind tmpfs_dir_getdotents(tmpfs_node_t *node, struct dirent *dp, struct uio *uio)
    748   1.5      yamt {
    749  1.67     rmind 	tmpfs_dirent_t *de;
    750  1.83     rmind 	off_t next = 0;
    751  1.83     rmind 	int error;
    752  1.83     rmind 
    753  1.83     rmind 	switch (uio->uio_offset) {
    754  1.83     rmind 	case TMPFS_DIRSEQ_DOT:
    755  1.89     rmind 		dp->d_fileno = node->tn_id;
    756  1.83     rmind 		strlcpy(dp->d_name, ".", sizeof(dp->d_name));
    757  1.83     rmind 		next = TMPFS_DIRSEQ_DOTDOT;
    758  1.83     rmind 		break;
    759  1.83     rmind 	case TMPFS_DIRSEQ_DOTDOT:
    760  1.89     rmind 		dp->d_fileno = node->tn_spec.tn_dir.tn_parent->tn_id;
    761  1.83     rmind 		strlcpy(dp->d_name, "..", sizeof(dp->d_name));
    762  1.83     rmind 		de = TAILQ_FIRST(&node->tn_spec.tn_dir.tn_dir);
    763  1.83     rmind 		next = de ? tmpfs_dir_getseq(node, de) : TMPFS_DIRSEQ_EOF;
    764  1.83     rmind 		break;
    765  1.83     rmind 	default:
    766  1.83     rmind 		KASSERT(false);
    767  1.83     rmind 	}
    768  1.89     rmind 	dp->d_type = DT_DIR;
    769  1.83     rmind 	dp->d_namlen = strlen(dp->d_name);
    770  1.83     rmind 	dp->d_reclen = _DIRENT_SIZE(dp);
    771  1.49      yamt 
    772  1.83     rmind 	if (dp->d_reclen > uio->uio_resid) {
    773  1.83     rmind 		return EJUSTRETURN;
    774   1.5      yamt 	}
    775  1.83     rmind 	if ((error = uiomove(dp, dp->d_reclen, uio)) != 0) {
    776  1.83     rmind 		return error;
    777   1.5      yamt 	}
    778  1.83     rmind 
    779  1.83     rmind 	uio->uio_offset = next;
    780  1.83     rmind 	return error;
    781   1.5      yamt }
    782   1.5      yamt 
    783   1.9      jmmv /*
    784  1.83     rmind  * tmpfs_dir_getdents: helper function for tmpfs_readdir.
    785  1.67     rmind  *
    786  1.67     rmind  * => Returns as much directory entries as can fit in the uio space.
    787  1.67     rmind  * => The read starts at uio->uio_offset.
    788   1.9      jmmv  */
    789   1.1      jmmv int
    790  1.67     rmind tmpfs_dir_getdents(tmpfs_node_t *node, struct uio *uio, off_t *cntp)
    791   1.1      jmmv {
    792  1.67     rmind 	tmpfs_dirent_t *de;
    793  1.67     rmind 	struct dirent *dentp;
    794  1.83     rmind 	int error = 0;
    795   1.1      jmmv 
    796  1.49      yamt 	KASSERT(VOP_ISLOCKED(node->tn_vnode));
    797   1.1      jmmv 	TMPFS_VALIDATE_DIR(node);
    798   1.1      jmmv 
    799  1.67     rmind 	/*
    800  1.83     rmind 	 * Allocate struct dirent and first check for the "." and "..".
    801  1.83     rmind 	 * Note: tmpfs_dir_getdotents() will "seek" for us.
    802  1.67     rmind 	 */
    803  1.87     rmind 	dentp = kmem_zalloc(sizeof(struct dirent), KM_SLEEP);
    804  1.83     rmind 
    805  1.83     rmind 	if (uio->uio_offset == TMPFS_DIRSEQ_DOT) {
    806  1.83     rmind 		if ((error = tmpfs_dir_getdotents(node, dentp, uio)) != 0) {
    807  1.83     rmind 			goto done;
    808  1.83     rmind 		}
    809  1.83     rmind 		(*cntp)++;
    810  1.83     rmind 	}
    811  1.83     rmind 	if (uio->uio_offset == TMPFS_DIRSEQ_DOTDOT) {
    812  1.83     rmind 		if ((error = tmpfs_dir_getdotents(node, dentp, uio)) != 0) {
    813  1.83     rmind 			goto done;
    814  1.83     rmind 		}
    815  1.83     rmind 		(*cntp)++;
    816  1.83     rmind 	}
    817  1.83     rmind 
    818  1.83     rmind 	/* Done if we reached the end. */
    819  1.83     rmind 	if (uio->uio_offset == TMPFS_DIRSEQ_EOF) {
    820  1.83     rmind 		goto done;
    821   1.5      yamt 	}
    822  1.83     rmind 
    823  1.83     rmind 	/* Locate the directory entry given by the given sequence number. */
    824  1.83     rmind 	de = tmpfs_dir_lookupbyseq(node, uio->uio_offset);
    825   1.5      yamt 	if (de == NULL) {
    826  1.83     rmind 		error = EINVAL;
    827  1.83     rmind 		goto done;
    828   1.1      jmmv 	}
    829   1.1      jmmv 
    830  1.67     rmind 	/*
    831  1.83     rmind 	 * Read as many entries as possible; i.e., until we reach the end
    832  1.83     rmind 	 * of the directory or we exhaust UIO space.
    833  1.67     rmind 	 */
    834   1.1      jmmv 	do {
    835  1.62     pooka 		if (de->td_node == TMPFS_NODE_WHITEOUT) {
    836  1.62     pooka 			dentp->d_fileno = 1;
    837  1.62     pooka 			dentp->d_type = DT_WHT;
    838  1.62     pooka 		} else {
    839  1.62     pooka 			dentp->d_fileno = de->td_node->tn_id;
    840  1.83     rmind 			dentp->d_type = vtype2dt(de->td_node->tn_type);
    841   1.1      jmmv 		}
    842  1.37    rumble 		dentp->d_namlen = de->td_namelen;
    843  1.37    rumble 		KASSERT(de->td_namelen < sizeof(dentp->d_name));
    844  1.67     rmind 		memcpy(dentp->d_name, de->td_name, de->td_namelen);
    845  1.37    rumble 		dentp->d_name[de->td_namelen] = '\0';
    846  1.37    rumble 		dentp->d_reclen = _DIRENT_SIZE(dentp);
    847   1.1      jmmv 
    848  1.37    rumble 		if (dentp->d_reclen > uio->uio_resid) {
    849  1.83     rmind 			/* Exhausted UIO space. */
    850  1.83     rmind 			error = EJUSTRETURN;
    851   1.1      jmmv 			break;
    852   1.1      jmmv 		}
    853   1.1      jmmv 
    854  1.83     rmind 		/* Copy out the directory entry and continue. */
    855  1.37    rumble 		error = uiomove(dentp, dentp->d_reclen, uio);
    856  1.83     rmind 		if (error) {
    857  1.83     rmind 			break;
    858  1.83     rmind 		}
    859   1.5      yamt 		(*cntp)++;
    860   1.1      jmmv 		de = TAILQ_NEXT(de, td_entries);
    861   1.1      jmmv 
    862  1.83     rmind 	} while (uio->uio_resid > 0 && de);
    863  1.83     rmind 
    864  1.83     rmind 	/* Cache the last entry or clear and mark EOF. */
    865  1.83     rmind 	uio->uio_offset = de ? tmpfs_dir_getseq(node, de) : TMPFS_DIRSEQ_EOF;
    866  1.83     rmind 	node->tn_spec.tn_dir.tn_readdir_lastp = de;
    867  1.83     rmind done:
    868  1.90     rmind 	tmpfs_update(node->tn_vnode, TMPFS_UPDATE_ATIME);
    869  1.43        ad 	kmem_free(dentp, sizeof(struct dirent));
    870  1.83     rmind 
    871  1.83     rmind 	if (error == EJUSTRETURN) {
    872  1.83     rmind 		/* Exhausted UIO space - just return. */
    873  1.83     rmind 		error = 0;
    874  1.83     rmind 	}
    875  1.83     rmind 	KASSERT(error >= 0);
    876   1.1      jmmv 	return error;
    877   1.1      jmmv }
    878   1.1      jmmv 
    879   1.8      jmmv /*
    880  1.67     rmind  * tmpfs_reg_resize: resize the underlying UVM object associated with the
    881  1.67     rmind  * specified regular file.
    882   1.8      jmmv  */
    883   1.1      jmmv int
    884   1.1      jmmv tmpfs_reg_resize(struct vnode *vp, off_t newsize)
    885   1.1      jmmv {
    886  1.67     rmind 	tmpfs_mount_t *tmp = VFS_TO_TMPFS(vp->v_mount);
    887  1.67     rmind 	tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp);
    888  1.74   hannken 	struct uvm_object *uobj = node->tn_spec.tn_reg.tn_aobj;
    889  1.57     rmind 	size_t newpages, oldpages;
    890  1.13      yamt 	off_t oldsize;
    891   1.1      jmmv 
    892   1.1      jmmv 	KASSERT(vp->v_type == VREG);
    893   1.1      jmmv 	KASSERT(newsize >= 0);
    894   1.1      jmmv 
    895  1.13      yamt 	oldsize = node->tn_size;
    896  1.57     rmind 	oldpages = round_page(oldsize) >> PAGE_SHIFT;
    897  1.57     rmind 	newpages = round_page(newsize) >> PAGE_SHIFT;
    898  1.18      jmmv 	KASSERT(oldpages == node->tn_spec.tn_reg.tn_aobj_pages);
    899   1.1      jmmv 
    900  1.57     rmind 	if (newpages > oldpages) {
    901  1.57     rmind 		/* Increase the used-memory counter if getting extra pages. */
    902  1.57     rmind 		if (!tmpfs_mem_incr(tmp, (newpages - oldpages) << PAGE_SHIFT)) {
    903  1.57     rmind 			return ENOSPC;
    904  1.57     rmind 		}
    905  1.57     rmind 	} else if (newsize < oldsize) {
    906  1.91     rmind 		size_t zerolen;
    907  1.13      yamt 
    908  1.91     rmind 		zerolen = MIN(round_page(newsize), node->tn_size) - newsize;
    909  1.74   hannken 		ubc_zerorange(uobj, newsize, zerolen, UBC_UNMAP_FLAG(vp));
    910  1.13      yamt 	}
    911   1.1      jmmv 
    912  1.36     pooka 	node->tn_spec.tn_reg.tn_aobj_pages = newpages;
    913  1.36     pooka 	node->tn_size = newsize;
    914  1.36     pooka 	uvm_vnp_setsize(vp, newsize);
    915  1.36     pooka 
    916  1.76     enami 	/*
    917  1.76     enami 	 * Free "backing store".
    918  1.76     enami 	 */
    919  1.43        ad 	if (newpages < oldpages) {
    920  1.76     enami 		KASSERT(uobj->vmobjlock == vp->v_interlock);
    921  1.76     enami 
    922  1.76     enami 		mutex_enter(uobj->vmobjlock);
    923  1.76     enami 		uao_dropswap_range(uobj, newpages, oldpages);
    924  1.76     enami 		mutex_exit(uobj->vmobjlock);
    925  1.76     enami 
    926  1.57     rmind 		/* Decrease the used-memory counter. */
    927  1.57     rmind 		tmpfs_mem_decr(tmp, (oldpages - newpages) << PAGE_SHIFT);
    928  1.43        ad 	}
    929  1.67     rmind 	if (newsize > oldsize) {
    930  1.29      jmmv 		VN_KNOTE(vp, NOTE_EXTEND);
    931  1.67     rmind 	}
    932  1.57     rmind 	return 0;
    933   1.1      jmmv }
    934   1.1      jmmv 
    935   1.9      jmmv /*
    936  1.67     rmind  * tmpfs_chflags: change flags of the given vnode.
    937   1.9      jmmv  */
    938   1.1      jmmv int
    939  1.67     rmind tmpfs_chflags(vnode_t *vp, int flags, kauth_cred_t cred, lwp_t *l)
    940   1.1      jmmv {
    941  1.67     rmind 	tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp);
    942  1.55     pooka 	kauth_action_t action = KAUTH_VNODE_WRITE_FLAGS;
    943  1.79      elad 	int error;
    944  1.79      elad 	bool changing_sysflags = false;
    945   1.1      jmmv 
    946   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
    947   1.1      jmmv 
    948   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
    949   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
    950   1.1      jmmv 		return EROFS;
    951   1.1      jmmv 
    952  1.54      elad 	/*
    953  1.54      elad 	 * If the new flags have non-user flags that are different than
    954  1.54      elad 	 * those on the node, we need special permission to change them.
    955  1.54      elad 	 */
    956  1.54      elad 	if ((flags & SF_SETTABLE) != (node->tn_flags & SF_SETTABLE)) {
    957  1.54      elad 		action |= KAUTH_VNODE_WRITE_SYSFLAGS;
    958  1.79      elad 		changing_sysflags = true;
    959  1.54      elad 	}
    960  1.54      elad 
    961  1.54      elad 	/*
    962  1.54      elad 	 * Indicate that this node's flags have system attributes in them if
    963  1.54      elad 	 * that's the case.
    964  1.54      elad 	 */
    965  1.54      elad 	if (node->tn_flags & (SF_IMMUTABLE | SF_APPEND)) {
    966  1.54      elad 		action |= KAUTH_VNODE_HAS_SYSFLAGS;
    967  1.54      elad 	}
    968  1.54      elad 
    969  1.79      elad 	error = kauth_authorize_vnode(cred, action, vp, NULL,
    970  1.79      elad 	    genfs_can_chflags(cred, vp->v_type, node->tn_uid,
    971  1.79      elad 	    changing_sysflags));
    972  1.54      elad 	if (error)
    973   1.1      jmmv 		return error;
    974  1.54      elad 
    975  1.54      elad 	/*
    976  1.54      elad 	 * Set the flags. If we're not setting non-user flags, be careful not
    977  1.54      elad 	 * to overwrite them.
    978  1.54      elad 	 *
    979  1.54      elad 	 * XXX: Can't we always assign here? if the system flags are different,
    980  1.54      elad 	 *      the code above should catch attempts to change them without
    981  1.54      elad 	 *      proper permissions, and if we're here it means it's okay to
    982  1.54      elad 	 *      change them...
    983  1.54      elad 	 */
    984  1.79      elad 	if (!changing_sysflags) {
    985  1.54      elad 		/* Clear all user-settable flags and re-set them. */
    986   1.1      jmmv 		node->tn_flags &= SF_SETTABLE;
    987   1.1      jmmv 		node->tn_flags |= (flags & UF_SETTABLE);
    988  1.67     rmind 	} else {
    989  1.67     rmind 		node->tn_flags = flags;
    990   1.1      jmmv 	}
    991  1.90     rmind 	tmpfs_update(vp, TMPFS_UPDATE_CTIME);
    992   1.1      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
    993   1.1      jmmv 	return 0;
    994   1.1      jmmv }
    995   1.1      jmmv 
    996   1.9      jmmv /*
    997  1.67     rmind  * tmpfs_chmod: change access mode on the given vnode.
    998   1.9      jmmv  */
    999   1.1      jmmv int
   1000  1.67     rmind tmpfs_chmod(vnode_t *vp, mode_t mode, kauth_cred_t cred, lwp_t *l)
   1001   1.1      jmmv {
   1002  1.67     rmind 	tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp);
   1003  1.51      elad 	int error;
   1004   1.1      jmmv 
   1005   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1006   1.1      jmmv 
   1007   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
   1008   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1009   1.1      jmmv 		return EROFS;
   1010   1.1      jmmv 
   1011   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1012   1.1      jmmv 	if (node->tn_flags & (IMMUTABLE | APPEND))
   1013   1.1      jmmv 		return EPERM;
   1014   1.1      jmmv 
   1015  1.54      elad 	error = kauth_authorize_vnode(cred, KAUTH_VNODE_WRITE_SECURITY, vp,
   1016  1.79      elad 	    NULL, genfs_can_chmod(vp->v_type, cred, node->tn_uid, node->tn_gid, mode));
   1017  1.67     rmind 	if (error) {
   1018  1.67     rmind 		return error;
   1019  1.67     rmind 	}
   1020   1.1      jmmv 	node->tn_mode = (mode & ALLPERMS);
   1021  1.90     rmind 	tmpfs_update(vp, TMPFS_UPDATE_CTIME);
   1022   1.1      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
   1023   1.1      jmmv 	return 0;
   1024   1.1      jmmv }
   1025   1.1      jmmv 
   1026   1.9      jmmv /*
   1027  1.67     rmind  * tmpfs_chown: change ownership of the given vnode.
   1028  1.67     rmind  *
   1029  1.67     rmind  * => At least one of uid or gid must be different than VNOVAL.
   1030  1.67     rmind  * => Attribute is unchanged for VNOVAL case.
   1031   1.9      jmmv  */
   1032   1.1      jmmv int
   1033  1.67     rmind tmpfs_chown(vnode_t *vp, uid_t uid, gid_t gid, kauth_cred_t cred, lwp_t *l)
   1034   1.1      jmmv {
   1035  1.67     rmind 	tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp);
   1036  1.51      elad 	int error;
   1037   1.1      jmmv 
   1038   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1039   1.1      jmmv 
   1040   1.1      jmmv 	/* Assign default values if they are unknown. */
   1041   1.1      jmmv 	KASSERT(uid != VNOVAL || gid != VNOVAL);
   1042  1.67     rmind 	if (uid == VNOVAL) {
   1043   1.1      jmmv 		uid = node->tn_uid;
   1044  1.67     rmind 	}
   1045  1.67     rmind 	if (gid == VNOVAL) {
   1046   1.1      jmmv 		gid = node->tn_gid;
   1047  1.67     rmind 	}
   1048   1.1      jmmv 
   1049   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
   1050   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1051   1.1      jmmv 		return EROFS;
   1052   1.1      jmmv 
   1053   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1054   1.1      jmmv 	if (node->tn_flags & (IMMUTABLE | APPEND))
   1055   1.1      jmmv 		return EPERM;
   1056   1.1      jmmv 
   1057  1.54      elad 	error = kauth_authorize_vnode(cred, KAUTH_VNODE_CHANGE_OWNERSHIP, vp,
   1058  1.79      elad 	    NULL, genfs_can_chown(cred, node->tn_uid, node->tn_gid, uid,
   1059  1.67     rmind 	    gid));
   1060  1.67     rmind 	if (error) {
   1061  1.67     rmind 		return error;
   1062  1.67     rmind 	}
   1063   1.1      jmmv 	node->tn_uid = uid;
   1064   1.1      jmmv 	node->tn_gid = gid;
   1065  1.90     rmind 	tmpfs_update(vp, TMPFS_UPDATE_CTIME);
   1066   1.1      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
   1067   1.1      jmmv 	return 0;
   1068   1.1      jmmv }
   1069   1.1      jmmv 
   1070   1.9      jmmv /*
   1071  1.67     rmind  * tmpfs_chsize: change size of the given vnode.
   1072   1.9      jmmv  */
   1073   1.1      jmmv int
   1074  1.67     rmind tmpfs_chsize(vnode_t *vp, u_quad_t size, kauth_cred_t cred, lwp_t *l)
   1075   1.1      jmmv {
   1076  1.67     rmind 	tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp);
   1077  1.90     rmind 	const off_t length = size;
   1078  1.90     rmind 	int error;
   1079   1.1      jmmv 
   1080   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1081   1.1      jmmv 
   1082   1.1      jmmv 	/* Decide whether this is a valid operation based on the file type. */
   1083   1.1      jmmv 	switch (vp->v_type) {
   1084   1.1      jmmv 	case VDIR:
   1085   1.1      jmmv 		return EISDIR;
   1086   1.1      jmmv 	case VREG:
   1087  1.67     rmind 		if (vp->v_mount->mnt_flag & MNT_RDONLY) {
   1088   1.1      jmmv 			return EROFS;
   1089  1.67     rmind 		}
   1090   1.1      jmmv 		break;
   1091   1.1      jmmv 	case VBLK:
   1092   1.1      jmmv 	case VCHR:
   1093   1.1      jmmv 	case VFIFO:
   1094  1.67     rmind 		/*
   1095  1.67     rmind 		 * Allow modifications of special files even if in the file
   1096   1.1      jmmv 		 * system is mounted read-only (we are not modifying the
   1097  1.67     rmind 		 * files themselves, but the objects they represent).
   1098  1.67     rmind 		 */
   1099  1.14      yamt 		return 0;
   1100   1.1      jmmv 	default:
   1101  1.14      yamt 		return EOPNOTSUPP;
   1102   1.1      jmmv 	}
   1103   1.1      jmmv 
   1104   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1105  1.67     rmind 	if (node->tn_flags & (IMMUTABLE | APPEND)) {
   1106   1.1      jmmv 		return EPERM;
   1107  1.67     rmind 	}
   1108   1.1      jmmv 
   1109  1.90     rmind 	if (length < 0) {
   1110  1.90     rmind 		return EINVAL;
   1111  1.90     rmind 	}
   1112  1.90     rmind 	if (node->tn_size == length) {
   1113  1.90     rmind 		return 0;
   1114  1.90     rmind 	}
   1115  1.90     rmind 
   1116  1.90     rmind 	/* Note: tmpfs_reg_resize() will raise NOTE_EXTEND and NOTE_ATTRIB. */
   1117  1.90     rmind 	if ((error = tmpfs_reg_resize(vp, length)) != 0) {
   1118  1.90     rmind 		return error;
   1119  1.90     rmind 	}
   1120  1.90     rmind 	tmpfs_update(vp, TMPFS_UPDATE_CTIME | TMPFS_UPDATE_MTIME);
   1121  1.90     rmind 	return 0;
   1122   1.1      jmmv }
   1123   1.1      jmmv 
   1124   1.9      jmmv /*
   1125  1.67     rmind  * tmpfs_chtimes: change access and modification times for vnode.
   1126   1.9      jmmv  */
   1127   1.1      jmmv int
   1128  1.67     rmind tmpfs_chtimes(vnode_t *vp, const struct timespec *atime,
   1129  1.48  christos     const struct timespec *mtime, const struct timespec *btime,
   1130  1.67     rmind     int vaflags, kauth_cred_t cred, lwp_t *l)
   1131   1.1      jmmv {
   1132  1.67     rmind 	tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp);
   1133   1.1      jmmv 	int error;
   1134   1.1      jmmv 
   1135   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1136   1.1      jmmv 
   1137   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
   1138   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1139   1.1      jmmv 		return EROFS;
   1140   1.1      jmmv 
   1141   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1142   1.1      jmmv 	if (node->tn_flags & (IMMUTABLE | APPEND))
   1143   1.1      jmmv 		return EPERM;
   1144   1.1      jmmv 
   1145  1.54      elad 	error = kauth_authorize_vnode(cred, KAUTH_VNODE_WRITE_TIMES, vp, NULL,
   1146  1.67     rmind 	    genfs_can_chtimes(vp, vaflags, node->tn_uid, cred));
   1147  1.53      elad 	if (error)
   1148  1.67     rmind 		return error;
   1149   1.1      jmmv 
   1150  1.90     rmind 	if (atime->tv_sec != VNOVAL) {
   1151  1.90     rmind 		node->tn_atime = *atime;
   1152  1.90     rmind 	}
   1153  1.90     rmind 	if (mtime->tv_sec != VNOVAL) {
   1154  1.90     rmind 		node->tn_mtime = *mtime;
   1155  1.90     rmind 	}
   1156  1.90     rmind 	if (btime->tv_sec != VNOVAL) {
   1157  1.90     rmind 		node->tn_birthtime = *btime;
   1158  1.90     rmind 	}
   1159  1.29      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
   1160  1.12      yamt 	return 0;
   1161   1.1      jmmv }
   1162  1.10      yamt 
   1163  1.67     rmind /*
   1164  1.90     rmind  * tmpfs_update: update the timestamps as indicated by the flags.
   1165  1.67     rmind  */
   1166  1.10      yamt void
   1167  1.90     rmind tmpfs_update(vnode_t *vp, unsigned tflags)
   1168  1.10      yamt {
   1169  1.67     rmind 	tmpfs_node_t *node = VP_TO_TMPFS_NODE(vp);
   1170  1.56     rmind 	struct timespec nowtm;
   1171  1.10      yamt 
   1172  1.90     rmind 	if (tflags == 0) {
   1173  1.10      yamt 		return;
   1174  1.67     rmind 	}
   1175  1.56     rmind 	vfs_timestamp(&nowtm);
   1176  1.48  christos 
   1177  1.90     rmind 	if (tflags & TMPFS_UPDATE_ATIME) {
   1178  1.90     rmind 		node->tn_atime = nowtm;
   1179  1.10      yamt 	}
   1180  1.90     rmind 	if (tflags & TMPFS_UPDATE_MTIME) {
   1181  1.90     rmind 		node->tn_mtime = nowtm;
   1182  1.10      yamt 	}
   1183  1.90     rmind 	if (tflags & TMPFS_UPDATE_CTIME) {
   1184  1.56     rmind 		node->tn_ctime = nowtm;
   1185  1.48  christos 	}
   1186  1.12      yamt }
   1187