Home | History | Annotate | Line # | Download | only in tmpfs
tmpfs_subr.c revision 1.40
      1  1.39        ad /*	$NetBSD: tmpfs_subr.c,v 1.40 2007/11/10 03:36:16 ad Exp $	*/
      2   1.1      jmmv 
      3   1.1      jmmv /*
      4  1.40        ad  * Copyright (c) 2005, 2006 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.8      jmmv  * 2005 program.
     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  * 3. All advertising materials mentioning features or use of this software
     20   1.1      jmmv  *    must display the following acknowledgement:
     21   1.1      jmmv  *        This product includes software developed by the NetBSD
     22   1.1      jmmv  *        Foundation, Inc. and its contributors.
     23   1.1      jmmv  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24   1.1      jmmv  *    contributors may be used to endorse or promote products derived
     25   1.1      jmmv  *    from this software without specific prior written permission.
     26   1.1      jmmv  *
     27   1.1      jmmv  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28   1.1      jmmv  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29   1.1      jmmv  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30   1.1      jmmv  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31   1.1      jmmv  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32   1.1      jmmv  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33   1.1      jmmv  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34   1.1      jmmv  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35   1.1      jmmv  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36   1.1      jmmv  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37   1.1      jmmv  * POSSIBILITY OF SUCH DAMAGE.
     38   1.1      jmmv  */
     39   1.1      jmmv 
     40   1.1      jmmv /*
     41   1.2      jmmv  * Efficient memory file system supporting functions.
     42   1.1      jmmv  */
     43   1.1      jmmv 
     44   1.1      jmmv #include <sys/cdefs.h>
     45  1.39        ad __KERNEL_RCSID(0, "$NetBSD: tmpfs_subr.c,v 1.40 2007/11/10 03:36:16 ad Exp $");
     46   1.1      jmmv 
     47   1.1      jmmv #include <sys/param.h>
     48   1.1      jmmv #include <sys/dirent.h>
     49   1.1      jmmv #include <sys/event.h>
     50  1.40        ad #include <sys/malloc.h>
     51   1.1      jmmv #include <sys/mount.h>
     52   1.1      jmmv #include <sys/namei.h>
     53   1.1      jmmv #include <sys/time.h>
     54   1.1      jmmv #include <sys/stat.h>
     55   1.1      jmmv #include <sys/systm.h>
     56   1.1      jmmv #include <sys/swap.h>
     57   1.1      jmmv #include <sys/vnode.h>
     58  1.20  christos #include <sys/kauth.h>
     59  1.35        ad #include <sys/proc.h>
     60   1.1      jmmv 
     61   1.1      jmmv #include <uvm/uvm.h>
     62   1.1      jmmv 
     63   1.1      jmmv #include <miscfs/specfs/specdev.h>
     64   1.1      jmmv #include <fs/tmpfs/tmpfs.h>
     65   1.1      jmmv #include <fs/tmpfs/tmpfs_fifoops.h>
     66   1.1      jmmv #include <fs/tmpfs/tmpfs_specops.h>
     67   1.1      jmmv #include <fs/tmpfs/tmpfs_vnops.h>
     68   1.1      jmmv 
     69  1.40        ad MALLOC_DECLARE(M_TMPFSTMP);
     70  1.40        ad 
     71   1.1      jmmv /* --------------------------------------------------------------------- */
     72   1.1      jmmv 
     73   1.8      jmmv /*
     74   1.8      jmmv  * Allocates a new node of type 'type' inside the 'tmp' mount point, with
     75   1.8      jmmv  * its owner set to 'uid', its group to 'gid' and its mode set to 'mode',
     76   1.8      jmmv  * using the credentials of the process 'p'.
     77   1.8      jmmv  *
     78   1.8      jmmv  * If the node type is set to 'VDIR', then the parent parameter must point
     79   1.8      jmmv  * to the parent directory of the node being created.  It may only be NULL
     80   1.8      jmmv  * while allocating the root node.
     81   1.8      jmmv  *
     82   1.8      jmmv  * If the node type is set to 'VBLK' or 'VCHR', then the rdev parameter
     83   1.8      jmmv  * specifies the device the node represents.
     84   1.8      jmmv  *
     85   1.8      jmmv  * If the node type is set to 'VLNK', then the parameter target specifies
     86   1.8      jmmv  * the file name of the target file for the symbolic link that is being
     87   1.8      jmmv  * created.
     88   1.8      jmmv  *
     89   1.8      jmmv  * Note that new nodes are retrieved from the available list if it has
     90   1.8      jmmv  * items or, if it is empty, from the node pool as long as there is enough
     91   1.8      jmmv  * space to create them.
     92   1.8      jmmv  *
     93   1.8      jmmv  * Returns zero on success or an appropriate error code on failure.
     94   1.8      jmmv  */
     95   1.1      jmmv int
     96   1.1      jmmv tmpfs_alloc_node(struct tmpfs_mount *tmp, enum vtype type,
     97   1.1      jmmv     uid_t uid, gid_t gid, mode_t mode, struct tmpfs_node *parent,
     98  1.30  christos     char *target, dev_t rdev, struct proc *p, struct tmpfs_node **node)
     99   1.1      jmmv {
    100   1.1      jmmv 	struct tmpfs_node *nnode;
    101   1.1      jmmv 
    102   1.2      jmmv 	/* If the root directory of the 'tmp' file system is not yet
    103   1.1      jmmv 	 * allocated, this must be the request to do it. */
    104   1.1      jmmv 	KASSERT(IMPLIES(tmp->tm_root == NULL, parent == NULL && type == VDIR));
    105   1.1      jmmv 
    106   1.1      jmmv 	KASSERT(IFF(type == VLNK, target != NULL));
    107   1.1      jmmv 	KASSERT(IFF(type == VBLK || type == VCHR, rdev != VNOVAL));
    108   1.1      jmmv 
    109   1.1      jmmv 	KASSERT(uid != VNOVAL && gid != VNOVAL && mode != VNOVAL);
    110   1.1      jmmv 
    111   1.1      jmmv 	nnode = NULL;
    112  1.40        ad 	if (LIST_EMPTY(&tmp->tm_nodes_avail)) {
    113  1.40        ad 		KASSERT(tmp->tm_nodes_last <= tmp->tm_nodes_max);
    114  1.40        ad 		if (tmp->tm_nodes_last == tmp->tm_nodes_max)
    115  1.40        ad 			return ENOSPC;
    116   1.1      jmmv 
    117  1.40        ad 		nnode =
    118  1.40        ad 		    (struct tmpfs_node *)TMPFS_POOL_GET(&tmp->tm_node_pool, 0);
    119  1.40        ad 		if (nnode == NULL)
    120  1.40        ad 			return ENOSPC;
    121  1.40        ad 		nnode->tn_id = tmp->tm_nodes_last++;
    122  1.40        ad 		nnode->tn_gen = arc4random();
    123  1.40        ad 	} else {
    124  1.40        ad 		nnode = LIST_FIRST(&tmp->tm_nodes_avail);
    125  1.40        ad 		LIST_REMOVE(nnode, tn_entries);
    126  1.40        ad 		nnode->tn_gen++;
    127   1.1      jmmv 	}
    128  1.40        ad 	KASSERT(nnode != NULL);
    129  1.40        ad 	LIST_INSERT_HEAD(&tmp->tm_nodes_used, nnode, tn_entries);
    130   1.1      jmmv 
    131   1.1      jmmv 	/* Generic initialization. */
    132   1.1      jmmv 	nnode->tn_type = type;
    133   1.1      jmmv 	nnode->tn_size = 0;
    134   1.1      jmmv 	nnode->tn_status = 0;
    135   1.1      jmmv 	nnode->tn_flags = 0;
    136   1.1      jmmv 	nnode->tn_links = 0;
    137  1.21    kardel 	getnanotime(&nnode->tn_atime);
    138   1.1      jmmv 	nnode->tn_birthtime = nnode->tn_ctime = nnode->tn_mtime =
    139   1.1      jmmv 	    nnode->tn_atime;
    140   1.1      jmmv 	nnode->tn_uid = uid;
    141   1.1      jmmv 	nnode->tn_gid = gid;
    142   1.1      jmmv 	nnode->tn_mode = mode;
    143  1.11      jmmv 	nnode->tn_lockf = NULL;
    144   1.1      jmmv 	nnode->tn_vnode = NULL;
    145   1.1      jmmv 
    146   1.1      jmmv 	/* Type-specific initialization. */
    147   1.1      jmmv 	switch (nnode->tn_type) {
    148   1.1      jmmv 	case VBLK:
    149   1.1      jmmv 	case VCHR:
    150  1.18      jmmv 		nnode->tn_spec.tn_dev.tn_rdev = rdev;
    151   1.1      jmmv 		break;
    152   1.1      jmmv 
    153   1.1      jmmv 	case VDIR:
    154  1.18      jmmv 		TAILQ_INIT(&nnode->tn_spec.tn_dir.tn_dir);
    155  1.18      jmmv 		nnode->tn_spec.tn_dir.tn_parent =
    156  1.18      jmmv 		    (parent == NULL) ? nnode : parent;
    157  1.18      jmmv 		nnode->tn_spec.tn_dir.tn_readdir_lastn = 0;
    158  1.18      jmmv 		nnode->tn_spec.tn_dir.tn_readdir_lastp = NULL;
    159   1.1      jmmv 		nnode->tn_links++;
    160  1.18      jmmv 		nnode->tn_spec.tn_dir.tn_parent->tn_links++;
    161  1.29      jmmv 		if (parent != NULL) {
    162  1.29      jmmv 			KASSERT(parent->tn_vnode != NULL);
    163  1.29      jmmv 			VN_KNOTE(parent->tn_vnode, NOTE_LINK);
    164  1.29      jmmv 		}
    165   1.1      jmmv 		break;
    166   1.1      jmmv 
    167   1.1      jmmv 	case VFIFO:
    168   1.1      jmmv 		/* FALLTHROUGH */
    169   1.1      jmmv 	case VSOCK:
    170   1.1      jmmv 		break;
    171   1.1      jmmv 
    172   1.1      jmmv 	case VLNK:
    173   1.1      jmmv 		KASSERT(strlen(target) < MAXPATHLEN);
    174   1.7      yamt 		nnode->tn_size = strlen(target);
    175  1.18      jmmv 		nnode->tn_spec.tn_lnk.tn_link =
    176  1.18      jmmv 		    tmpfs_str_pool_get(&tmp->tm_str_pool, nnode->tn_size, 0);
    177  1.18      jmmv 		if (nnode->tn_spec.tn_lnk.tn_link == NULL) {
    178  1.40        ad 			nnode->tn_type = VNON;
    179  1.40        ad 			tmpfs_free_node(tmp, nnode);
    180   1.1      jmmv 			return ENOSPC;
    181   1.1      jmmv 		}
    182  1.18      jmmv 		memcpy(nnode->tn_spec.tn_lnk.tn_link, target, nnode->tn_size);
    183   1.1      jmmv 		break;
    184   1.1      jmmv 
    185   1.1      jmmv 	case VREG:
    186  1.18      jmmv 		nnode->tn_spec.tn_reg.tn_aobj =
    187  1.18      jmmv 		    uao_create(INT32_MAX - PAGE_SIZE, 0);
    188  1.18      jmmv 		nnode->tn_spec.tn_reg.tn_aobj_pages = 0;
    189   1.1      jmmv 		break;
    190   1.1      jmmv 
    191   1.1      jmmv 	default:
    192   1.1      jmmv 		KASSERT(0);
    193   1.1      jmmv 	}
    194   1.1      jmmv 
    195   1.1      jmmv 	*node = nnode;
    196   1.1      jmmv 	return 0;
    197   1.1      jmmv }
    198   1.1      jmmv 
    199   1.1      jmmv /* --------------------------------------------------------------------- */
    200   1.1      jmmv 
    201   1.8      jmmv /*
    202   1.8      jmmv  * Destroys the node pointed to by node from the file system 'tmp'.
    203   1.8      jmmv  * If the node does not belong to the given mount point, the results are
    204   1.8      jmmv  * unpredicted.
    205   1.8      jmmv  *
    206   1.8      jmmv  * If the node references a directory; no entries are allowed because
    207   1.8      jmmv  * their removal could need a recursive algorithm, something forbidden in
    208   1.8      jmmv  * kernel space.  Furthermore, there is not need to provide such
    209   1.8      jmmv  * functionality (recursive removal) because the only primitives offered
    210   1.8      jmmv  * to the user are the removal of empty directories and the deletion of
    211   1.8      jmmv  * individual files.
    212   1.8      jmmv  *
    213   1.8      jmmv  * Note that nodes are not really deleted; in fact, when a node has been
    214   1.8      jmmv  * allocated, it cannot be deleted during the whole life of the file
    215   1.8      jmmv  * system.  Instead, they are moved to the available list and remain there
    216   1.8      jmmv  * until reused.
    217   1.8      jmmv  */
    218   1.1      jmmv void
    219   1.1      jmmv tmpfs_free_node(struct tmpfs_mount *tmp, struct tmpfs_node *node)
    220   1.1      jmmv {
    221  1.40        ad 	ino_t id;
    222  1.40        ad 	unsigned long gen;
    223   1.1      jmmv 	size_t pages;
    224   1.1      jmmv 
    225  1.40        ad 	switch (node->tn_type) {
    226  1.40        ad 	case VNON:
    227  1.40        ad 		/* Do not do anything.  VNON is provided to let the
    228  1.40        ad 		 * allocation routine clean itself easily by avoiding
    229  1.40        ad 		 * duplicating code in it. */
    230  1.40        ad 		/* FALLTHROUGH */
    231  1.40        ad 	case VBLK:
    232  1.40        ad 		/* FALLTHROUGH */
    233  1.40        ad 	case VCHR:
    234  1.40        ad 		/* FALLTHROUGH */
    235  1.40        ad 	case VDIR:
    236  1.40        ad 		/* FALLTHROUGH */
    237  1.40        ad 	case VFIFO:
    238  1.40        ad 		/* FALLTHROUGH */
    239  1.40        ad 	case VSOCK:
    240   1.1      jmmv 		pages = 0;
    241  1.40        ad 		break;
    242   1.1      jmmv 
    243   1.1      jmmv 	case VLNK:
    244  1.18      jmmv 		tmpfs_str_pool_put(&tmp->tm_str_pool,
    245  1.18      jmmv 		    node->tn_spec.tn_lnk.tn_link, node->tn_size);
    246  1.40        ad 		pages = 0;
    247   1.1      jmmv 		break;
    248   1.1      jmmv 
    249   1.1      jmmv 	case VREG:
    250  1.18      jmmv 		if (node->tn_spec.tn_reg.tn_aobj != NULL)
    251  1.18      jmmv 			uao_detach(node->tn_spec.tn_reg.tn_aobj);
    252  1.40        ad 		pages = node->tn_spec.tn_reg.tn_aobj_pages;
    253   1.1      jmmv 		break;
    254   1.1      jmmv 
    255   1.1      jmmv 	default:
    256  1.40        ad 		KASSERT(0);
    257  1.40        ad 		pages = 0; /* Shut up gcc when !DIAGNOSTIC. */
    258   1.1      jmmv 		break;
    259   1.1      jmmv 	}
    260   1.1      jmmv 
    261  1.40        ad 	tmp->tm_pages_used -= pages;
    262  1.40        ad 
    263  1.40        ad 	LIST_REMOVE(node, tn_entries);
    264  1.40        ad 	id = node->tn_id;
    265  1.40        ad 	gen = node->tn_gen;
    266  1.40        ad 	memset(node, 0, sizeof(struct tmpfs_node));
    267  1.40        ad 	node->tn_id = id;
    268  1.40        ad 	node->tn_type = VNON;
    269  1.40        ad 	node->tn_gen = gen;
    270  1.40        ad 	LIST_INSERT_HEAD(&tmp->tm_nodes_avail, node, tn_entries);
    271   1.1      jmmv }
    272   1.1      jmmv 
    273   1.1      jmmv /* --------------------------------------------------------------------- */
    274   1.1      jmmv 
    275   1.8      jmmv /*
    276   1.8      jmmv  * Allocates a new directory entry for the node node with a name of name.
    277   1.8      jmmv  * The new directory entry is returned in *de.
    278   1.8      jmmv  *
    279   1.8      jmmv  * The link count of node is increased by one to reflect the new object
    280  1.29      jmmv  * referencing it.  This takes care of notifying kqueue listeners about
    281  1.29      jmmv  * this change.
    282   1.8      jmmv  *
    283   1.8      jmmv  * Returns zero on success or an appropriate error code on failure.
    284   1.8      jmmv  */
    285   1.1      jmmv int
    286   1.1      jmmv tmpfs_alloc_dirent(struct tmpfs_mount *tmp, struct tmpfs_node *node,
    287   1.1      jmmv     const char *name, uint16_t len, struct tmpfs_dirent **de)
    288   1.1      jmmv {
    289   1.1      jmmv 	struct tmpfs_dirent *nde;
    290   1.1      jmmv 
    291   1.1      jmmv 	nde = (struct tmpfs_dirent *)TMPFS_POOL_GET(&tmp->tm_dirent_pool, 0);
    292   1.1      jmmv 	if (nde == NULL)
    293   1.1      jmmv 		return ENOSPC;
    294   1.1      jmmv 
    295   1.1      jmmv 	nde->td_name = tmpfs_str_pool_get(&tmp->tm_str_pool, len, 0);
    296   1.1      jmmv 	if (nde->td_name == NULL) {
    297   1.1      jmmv 		TMPFS_POOL_PUT(&tmp->tm_dirent_pool, nde);
    298   1.1      jmmv 		return ENOSPC;
    299   1.1      jmmv 	}
    300   1.1      jmmv 	nde->td_namelen = len;
    301   1.1      jmmv 	memcpy(nde->td_name, name, len);
    302   1.1      jmmv 	nde->td_node = node;
    303   1.1      jmmv 
    304   1.1      jmmv 	node->tn_links++;
    305  1.29      jmmv 	if (node->tn_links > 1 && node->tn_vnode != NULL)
    306  1.29      jmmv 		VN_KNOTE(node->tn_vnode, NOTE_LINK);
    307   1.1      jmmv 	*de = nde;
    308   1.1      jmmv 
    309   1.1      jmmv 	return 0;
    310   1.1      jmmv }
    311   1.1      jmmv 
    312   1.1      jmmv /* --------------------------------------------------------------------- */
    313   1.1      jmmv 
    314   1.8      jmmv /*
    315   1.8      jmmv  * Frees a directory entry.  It is the caller's responsibility to destroy
    316   1.8      jmmv  * the node referenced by it if needed.
    317   1.8      jmmv  *
    318   1.8      jmmv  * The link count of node is decreased by one to reflect the removal of an
    319   1.8      jmmv  * object that referenced it.  This only happens if 'node_exists' is true;
    320   1.8      jmmv  * otherwise the function will not access the node referred to by the
    321   1.8      jmmv  * directory entry, as it may already have been released from the outside.
    322  1.29      jmmv  *
    323  1.29      jmmv  * Interested parties (kqueue) are notified of the link count change; note
    324  1.29      jmmv  * that this can include both the node pointed to by the directory entry
    325  1.29      jmmv  * as well as its parent.
    326   1.8      jmmv  */
    327   1.1      jmmv void
    328   1.1      jmmv tmpfs_free_dirent(struct tmpfs_mount *tmp, struct tmpfs_dirent *de,
    329  1.33   thorpej     bool node_exists)
    330   1.1      jmmv {
    331   1.1      jmmv 	if (node_exists) {
    332   1.1      jmmv 		struct tmpfs_node *node;
    333   1.1      jmmv 
    334   1.1      jmmv 		node = de->td_node;
    335   1.1      jmmv 
    336   1.1      jmmv 		KASSERT(node->tn_links > 0);
    337   1.1      jmmv 		node->tn_links--;
    338  1.29      jmmv 		if (node->tn_vnode != NULL)
    339  1.29      jmmv 			VN_KNOTE(node->tn_vnode, node->tn_links == 0 ?
    340  1.29      jmmv 			    NOTE_DELETE : NOTE_LINK);
    341  1.29      jmmv 		if (node->tn_type == VDIR)
    342  1.29      jmmv 			VN_KNOTE(node->tn_spec.tn_dir.tn_parent->tn_vnode,
    343  1.29      jmmv 			    NOTE_LINK);
    344   1.1      jmmv 	}
    345   1.1      jmmv 
    346   1.1      jmmv 	tmpfs_str_pool_put(&tmp->tm_str_pool, de->td_name, de->td_namelen);
    347   1.1      jmmv 	TMPFS_POOL_PUT(&tmp->tm_dirent_pool, de);
    348   1.1      jmmv }
    349   1.1      jmmv 
    350   1.1      jmmv /* --------------------------------------------------------------------- */
    351   1.1      jmmv 
    352   1.8      jmmv /*
    353   1.8      jmmv  * Allocates a new vnode for the node node or returns a new reference to
    354   1.8      jmmv  * an existing one if the node had already a vnode referencing it.  The
    355   1.8      jmmv  * resulting locked vnode is returned in *vpp.
    356   1.8      jmmv  *
    357   1.8      jmmv  * Returns zero on success or an appropriate error code on failure.
    358   1.8      jmmv  */
    359   1.1      jmmv int
    360   1.1      jmmv tmpfs_alloc_vp(struct mount *mp, struct tmpfs_node *node, struct vnode **vpp)
    361   1.1      jmmv {
    362   1.1      jmmv 	int error;
    363   1.1      jmmv 	struct vnode *nvp;
    364   1.1      jmmv 	struct vnode *vp;
    365   1.1      jmmv 
    366  1.40        ad 	vp = NULL;
    367  1.40        ad 
    368  1.40        ad 	if (node->tn_vnode != NULL) {
    369  1.40        ad 		vp = node->tn_vnode;
    370  1.40        ad 		vget(vp, LK_EXCLUSIVE | LK_RETRY);
    371  1.40        ad 		error = 0;
    372  1.40        ad 		goto out;
    373   1.1      jmmv 	}
    374   1.1      jmmv 
    375   1.1      jmmv 	/* Get a new vnode and associate it with our node. */
    376   1.1      jmmv 	error = getnewvnode(VT_TMPFS, mp, tmpfs_vnodeop_p, &vp);
    377  1.40        ad 	if (error != 0)
    378  1.40        ad 		goto out;
    379  1.40        ad 	KASSERT(vp != NULL);
    380   1.1      jmmv 
    381   1.1      jmmv 	error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    382   1.1      jmmv 	if (error != 0) {
    383  1.40        ad 		vp->v_data = NULL;
    384   1.1      jmmv 		ungetnewvnode(vp);
    385  1.40        ad 		vp = NULL;
    386  1.40        ad 		goto out;
    387   1.1      jmmv 	}
    388   1.1      jmmv 
    389  1.40        ad 	vp->v_data = node;
    390   1.1      jmmv 	vp->v_type = node->tn_type;
    391   1.1      jmmv 
    392   1.1      jmmv 	/* Type-specific initialization. */
    393   1.1      jmmv 	switch (node->tn_type) {
    394   1.1      jmmv 	case VBLK:
    395   1.1      jmmv 		/* FALLTHROUGH */
    396   1.1      jmmv 	case VCHR:
    397   1.1      jmmv 		vp->v_op = tmpfs_specop_p;
    398  1.18      jmmv 		nvp = checkalias(vp, node->tn_spec.tn_dev.tn_rdev, mp);
    399   1.1      jmmv 		if (nvp != NULL) {
    400   1.1      jmmv 			/* Discard unneeded vnode, but save its inode. */
    401  1.40        ad 			nvp->v_data = vp->v_data;
    402  1.40        ad 			vp->v_data = NULL;
    403   1.1      jmmv 
    404   1.1      jmmv 			/* XXX spec_vnodeops has no locking, so we have to
    405   1.1      jmmv 			 * do it explicitly. */
    406  1.38        ad 			vp->v_vflag &= ~VV_LOCKSWORK;
    407   1.1      jmmv 			VOP_UNLOCK(vp, 0);
    408   1.1      jmmv 			vp->v_op = spec_vnodeop_p;
    409   1.1      jmmv 			vrele(vp);
    410   1.1      jmmv 			vgone(vp);
    411   1.1      jmmv 
    412   1.1      jmmv 			/* Reinitialize aliased node. */
    413   1.1      jmmv 			vp = nvp;
    414   1.1      jmmv 			error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    415   1.1      jmmv 			if (error != 0) {
    416  1.40        ad 				vp->v_data = NULL;
    417  1.40        ad 				vp = NULL;
    418  1.40        ad 				goto out;
    419   1.1      jmmv 			}
    420   1.1      jmmv 		}
    421   1.1      jmmv 		break;
    422   1.1      jmmv 
    423   1.1      jmmv 	case VDIR:
    424  1.40        ad 		vp->v_vflag |= node->tn_spec.tn_dir.tn_parent == node ?
    425  1.40        ad 		    VV_ROOT : 0;
    426   1.1      jmmv 		break;
    427   1.1      jmmv 
    428   1.1      jmmv 	case VFIFO:
    429   1.1      jmmv 		vp->v_op = tmpfs_fifoop_p;
    430   1.1      jmmv 		break;
    431   1.1      jmmv 
    432   1.1      jmmv 	case VLNK:
    433   1.1      jmmv 		/* FALLTHROUGH */
    434   1.1      jmmv 	case VREG:
    435   1.1      jmmv 		/* FALLTHROUGH */
    436   1.1      jmmv 	case VSOCK:
    437   1.1      jmmv 		break;
    438   1.1      jmmv 
    439   1.1      jmmv 	default:
    440   1.1      jmmv 		KASSERT(0);
    441   1.1      jmmv 	}
    442   1.1      jmmv 
    443   1.1      jmmv 	uvm_vnp_setsize(vp, node->tn_size);
    444  1.40        ad 
    445  1.40        ad 	error = 0;
    446  1.40        ad 
    447  1.40        ad out:
    448  1.40        ad 	*vpp = node->tn_vnode = vp;
    449   1.1      jmmv 
    450   1.1      jmmv 	KASSERT(IFF(error == 0, *vpp != NULL && VOP_ISLOCKED(*vpp)));
    451  1.40        ad 	KASSERT(*vpp == node->tn_vnode);
    452   1.1      jmmv 
    453   1.1      jmmv 	return error;
    454   1.1      jmmv }
    455   1.1      jmmv 
    456   1.1      jmmv /* --------------------------------------------------------------------- */
    457   1.1      jmmv 
    458   1.8      jmmv /*
    459   1.8      jmmv  * Destroys the association between the vnode vp and the node it
    460   1.8      jmmv  * references.
    461   1.8      jmmv  */
    462   1.1      jmmv void
    463   1.1      jmmv tmpfs_free_vp(struct vnode *vp)
    464   1.1      jmmv {
    465   1.1      jmmv 	struct tmpfs_node *node;
    466   1.1      jmmv 
    467   1.1      jmmv 	node = VP_TO_TMPFS_NODE(vp);
    468   1.1      jmmv 
    469   1.1      jmmv 	node->tn_vnode = NULL;
    470   1.1      jmmv 	vp->v_data = NULL;
    471   1.1      jmmv }
    472   1.1      jmmv 
    473   1.1      jmmv /* --------------------------------------------------------------------- */
    474   1.1      jmmv 
    475   1.9      jmmv /*
    476   1.9      jmmv  * Allocates a new file of type 'type' and adds it to the parent directory
    477   1.1      jmmv  * 'dvp'; this addition is done using the component name given in 'cnp'.
    478   1.1      jmmv  * The ownership of the new file is automatically assigned based on the
    479   1.1      jmmv  * credentials of the caller (through 'cnp'), the group is set based on
    480   1.1      jmmv  * the parent directory and the mode is determined from the 'vap' argument.
    481   1.1      jmmv  * If successful, *vpp holds a vnode to the newly created file and zero
    482   1.1      jmmv  * is returned.  Otherwise *vpp is NULL and the function returns an
    483   1.9      jmmv  * appropriate error code.
    484   1.9      jmmv  */
    485   1.1      jmmv int
    486   1.1      jmmv tmpfs_alloc_file(struct vnode *dvp, struct vnode **vpp, struct vattr *vap,
    487   1.1      jmmv     struct componentname *cnp, char *target)
    488   1.1      jmmv {
    489   1.1      jmmv 	int error;
    490   1.1      jmmv 	struct tmpfs_dirent *de;
    491   1.1      jmmv 	struct tmpfs_mount *tmp;
    492   1.1      jmmv 	struct tmpfs_node *dnode;
    493   1.1      jmmv 	struct tmpfs_node *node;
    494   1.1      jmmv 	struct tmpfs_node *parent;
    495   1.1      jmmv 
    496   1.1      jmmv 	KASSERT(VOP_ISLOCKED(dvp));
    497   1.1      jmmv 	KASSERT(cnp->cn_flags & HASBUF);
    498   1.1      jmmv 
    499   1.1      jmmv 	tmp = VFS_TO_TMPFS(dvp->v_mount);
    500   1.1      jmmv 	dnode = VP_TO_TMPFS_DIR(dvp);
    501   1.1      jmmv 	*vpp = NULL;
    502   1.1      jmmv 
    503   1.1      jmmv 	/* If the entry we are creating is a directory, we cannot overflow
    504   1.1      jmmv 	 * the number of links of its parent, because it will get a new
    505   1.1      jmmv 	 * link. */
    506   1.1      jmmv 	if (vap->va_type == VDIR) {
    507   1.1      jmmv 		/* Ensure that we do not overflow the maximum number of links
    508   1.1      jmmv 		 * imposed by the system. */
    509   1.1      jmmv 		KASSERT(dnode->tn_links <= LINK_MAX);
    510   1.1      jmmv 		if (dnode->tn_links == LINK_MAX) {
    511   1.1      jmmv 			error = EMLINK;
    512   1.1      jmmv 			goto out;
    513   1.1      jmmv 		}
    514   1.1      jmmv 
    515   1.1      jmmv 		parent = dnode;
    516   1.1      jmmv 	} else
    517   1.1      jmmv 		parent = NULL;
    518   1.1      jmmv 
    519   1.1      jmmv 	/* Allocate a node that represents the new file. */
    520  1.19      elad 	error = tmpfs_alloc_node(tmp, vap->va_type, kauth_cred_geteuid(cnp->cn_cred),
    521   1.1      jmmv 	    dnode->tn_gid, vap->va_mode, parent, target, vap->va_rdev,
    522  1.17  christos 	    cnp->cn_lwp->l_proc, &node);
    523   1.1      jmmv 	if (error != 0)
    524   1.1      jmmv 		goto out;
    525   1.1      jmmv 
    526   1.1      jmmv 	/* Allocate a directory entry that points to the new file. */
    527   1.1      jmmv 	error = tmpfs_alloc_dirent(tmp, node, cnp->cn_nameptr, cnp->cn_namelen,
    528   1.1      jmmv 	    &de);
    529   1.1      jmmv 	if (error != 0) {
    530   1.1      jmmv 		tmpfs_free_node(tmp, node);
    531   1.1      jmmv 		goto out;
    532   1.1      jmmv 	}
    533   1.1      jmmv 
    534   1.1      jmmv 	/* Allocate a vnode for the new file. */
    535   1.1      jmmv 	error = tmpfs_alloc_vp(dvp->v_mount, node, vpp);
    536   1.1      jmmv 	if (error != 0) {
    537  1.34   thorpej 		tmpfs_free_dirent(tmp, de, true);
    538   1.1      jmmv 		tmpfs_free_node(tmp, node);
    539   1.1      jmmv 		goto out;
    540   1.1      jmmv 	}
    541   1.1      jmmv 
    542   1.1      jmmv 	/* Now that all required items are allocated, we can proceed to
    543   1.1      jmmv 	 * insert the new node into the directory, an operation that
    544   1.1      jmmv 	 * cannot fail. */
    545   1.1      jmmv 	tmpfs_dir_attach(dvp, de);
    546   1.1      jmmv 
    547   1.1      jmmv out:
    548   1.1      jmmv 	if (error != 0 || !(cnp->cn_flags & SAVESTART))
    549   1.1      jmmv 		PNBUF_PUT(cnp->cn_pnbuf);
    550   1.1      jmmv 	vput(dvp);
    551   1.1      jmmv 
    552  1.40        ad 	KASSERT(!VOP_ISLOCKED(dvp));
    553   1.1      jmmv 	KASSERT(IFF(error == 0, *vpp != NULL));
    554   1.1      jmmv 
    555   1.1      jmmv 	return error;
    556   1.1      jmmv }
    557   1.1      jmmv 
    558   1.1      jmmv /* --------------------------------------------------------------------- */
    559   1.1      jmmv 
    560   1.8      jmmv /*
    561   1.8      jmmv  * Attaches the directory entry de to the directory represented by vp.
    562   1.8      jmmv  * Note that this does not change the link count of the node pointed by
    563   1.8      jmmv  * the directory entry, as this is done by tmpfs_alloc_dirent.
    564  1.29      jmmv  *
    565  1.29      jmmv  * As the "parent" directory changes, interested parties are notified of
    566  1.29      jmmv  * a write to it.
    567   1.8      jmmv  */
    568   1.1      jmmv void
    569   1.1      jmmv tmpfs_dir_attach(struct vnode *vp, struct tmpfs_dirent *de)
    570   1.1      jmmv {
    571   1.1      jmmv 	struct tmpfs_node *dnode;
    572   1.1      jmmv 
    573   1.1      jmmv 	dnode = VP_TO_TMPFS_DIR(vp);
    574   1.1      jmmv 
    575  1.18      jmmv 	TAILQ_INSERT_TAIL(&dnode->tn_spec.tn_dir.tn_dir, de, td_entries);
    576   1.1      jmmv 	dnode->tn_size += sizeof(struct tmpfs_dirent);
    577   1.1      jmmv 	dnode->tn_status |= TMPFS_NODE_ACCESSED | TMPFS_NODE_CHANGED | \
    578   1.1      jmmv 	    TMPFS_NODE_MODIFIED;
    579   1.1      jmmv 	uvm_vnp_setsize(vp, dnode->tn_size);
    580  1.29      jmmv 
    581  1.29      jmmv 	VN_KNOTE(vp, NOTE_WRITE);
    582   1.1      jmmv }
    583   1.1      jmmv 
    584   1.1      jmmv /* --------------------------------------------------------------------- */
    585   1.1      jmmv 
    586   1.8      jmmv /*
    587   1.8      jmmv  * Detaches the directory entry de from the directory represented by vp.
    588   1.8      jmmv  * Note that this does not change the link count of the node pointed by
    589   1.8      jmmv  * the directory entry, as this is done by tmpfs_free_dirent.
    590  1.29      jmmv  *
    591  1.29      jmmv  * As the "parent" directory changes, interested parties are notified of
    592  1.29      jmmv  * a write to it.
    593   1.8      jmmv  */
    594   1.1      jmmv void
    595   1.1      jmmv tmpfs_dir_detach(struct vnode *vp, struct tmpfs_dirent *de)
    596   1.1      jmmv {
    597   1.1      jmmv 	struct tmpfs_node *dnode;
    598   1.1      jmmv 
    599   1.5      yamt 	KASSERT(VOP_ISLOCKED(vp));
    600   1.5      yamt 
    601   1.1      jmmv 	dnode = VP_TO_TMPFS_DIR(vp);
    602   1.1      jmmv 
    603  1.18      jmmv 	if (dnode->tn_spec.tn_dir.tn_readdir_lastp == de) {
    604  1.18      jmmv 		dnode->tn_spec.tn_dir.tn_readdir_lastn = 0;
    605  1.18      jmmv 		dnode->tn_spec.tn_dir.tn_readdir_lastp = NULL;
    606   1.5      yamt 	}
    607   1.5      yamt 
    608  1.18      jmmv 	TAILQ_REMOVE(&dnode->tn_spec.tn_dir.tn_dir, de, td_entries);
    609   1.1      jmmv 	dnode->tn_size -= sizeof(struct tmpfs_dirent);
    610   1.1      jmmv 	dnode->tn_status |= TMPFS_NODE_ACCESSED | TMPFS_NODE_CHANGED | \
    611   1.1      jmmv 	    TMPFS_NODE_MODIFIED;
    612   1.1      jmmv 	uvm_vnp_setsize(vp, dnode->tn_size);
    613  1.29      jmmv 
    614  1.29      jmmv 	VN_KNOTE(vp, NOTE_WRITE);
    615   1.1      jmmv }
    616   1.1      jmmv 
    617   1.1      jmmv /* --------------------------------------------------------------------- */
    618   1.1      jmmv 
    619   1.8      jmmv /*
    620   1.8      jmmv  * Looks for a directory entry in the directory represented by node.
    621   1.8      jmmv  * 'cnp' describes the name of the entry to look for.  Note that the .
    622   1.8      jmmv  * and .. components are not allowed as they do not physically exist
    623   1.8      jmmv  * within directories.
    624   1.8      jmmv  *
    625   1.8      jmmv  * Returns a pointer to the entry when found, otherwise NULL.
    626   1.8      jmmv  */
    627   1.1      jmmv struct tmpfs_dirent *
    628   1.1      jmmv tmpfs_dir_lookup(struct tmpfs_node *node, struct componentname *cnp)
    629   1.1      jmmv {
    630  1.40        ad 	bool found;
    631   1.1      jmmv 	struct tmpfs_dirent *de;
    632   1.1      jmmv 
    633   1.1      jmmv 	KASSERT(IMPLIES(cnp->cn_namelen == 1, cnp->cn_nameptr[0] != '.'));
    634   1.1      jmmv 	KASSERT(IMPLIES(cnp->cn_namelen == 2, !(cnp->cn_nameptr[0] == '.' &&
    635   1.1      jmmv 	    cnp->cn_nameptr[1] == '.')));
    636   1.1      jmmv 	TMPFS_VALIDATE_DIR(node);
    637   1.1      jmmv 
    638   1.1      jmmv 	node->tn_status |= TMPFS_NODE_ACCESSED;
    639   1.1      jmmv 
    640  1.40        ad 	found = 0;
    641  1.18      jmmv 	TAILQ_FOREACH(de, &node->tn_spec.tn_dir.tn_dir, td_entries) {
    642   1.1      jmmv 		KASSERT(cnp->cn_namelen < 0xffff);
    643   1.1      jmmv 		if (de->td_namelen == (uint16_t)cnp->cn_namelen &&
    644  1.40        ad 		    memcmp(de->td_name, cnp->cn_nameptr, de->td_namelen) == 0) {
    645  1.40        ad 			found = 1;
    646   1.1      jmmv 			break;
    647  1.40        ad 		}
    648   1.1      jmmv 	}
    649   1.1      jmmv 
    650  1.40        ad 	return found ? de : NULL;
    651   1.1      jmmv }
    652   1.1      jmmv 
    653   1.1      jmmv /* --------------------------------------------------------------------- */
    654   1.1      jmmv 
    655   1.9      jmmv /*
    656   1.9      jmmv  * Helper function for tmpfs_readdir.  Creates a '.' entry for the given
    657   1.1      jmmv  * directory and returns it in the uio space.  The function returns 0
    658   1.1      jmmv  * on success, -1 if there was not enough space in the uio structure to
    659   1.1      jmmv  * hold the directory entry or an appropriate error code if another
    660   1.9      jmmv  * error happens.
    661   1.9      jmmv  */
    662   1.1      jmmv int
    663   1.1      jmmv tmpfs_dir_getdotdent(struct tmpfs_node *node, struct uio *uio)
    664   1.1      jmmv {
    665   1.1      jmmv 	int error;
    666  1.37    rumble 	struct dirent *dentp;
    667   1.1      jmmv 
    668   1.1      jmmv 	TMPFS_VALIDATE_DIR(node);
    669   1.5      yamt 	KASSERT(uio->uio_offset == TMPFS_DIRCOOKIE_DOT);
    670   1.1      jmmv 
    671  1.40        ad 	dentp = malloc(sizeof(struct dirent), M_TMPFSTMP, M_WAITOK | M_ZERO);
    672  1.37    rumble 
    673  1.37    rumble 	dentp->d_fileno = node->tn_id;
    674  1.37    rumble 	dentp->d_type = DT_DIR;
    675  1.37    rumble 	dentp->d_namlen = 1;
    676  1.37    rumble 	dentp->d_name[0] = '.';
    677  1.37    rumble 	dentp->d_name[1] = '\0';
    678  1.37    rumble 	dentp->d_reclen = _DIRENT_SIZE(dentp);
    679   1.1      jmmv 
    680  1.37    rumble 	if (dentp->d_reclen > uio->uio_resid)
    681   1.1      jmmv 		error = -1;
    682   1.1      jmmv 	else {
    683  1.37    rumble 		error = uiomove(dentp, dentp->d_reclen, uio);
    684   1.1      jmmv 		if (error == 0)
    685   1.5      yamt 			uio->uio_offset = TMPFS_DIRCOOKIE_DOTDOT;
    686   1.1      jmmv 	}
    687   1.1      jmmv 
    688   1.1      jmmv 	node->tn_status |= TMPFS_NODE_ACCESSED;
    689   1.1      jmmv 
    690  1.40        ad 	free(dentp, M_TMPFSTMP);
    691   1.1      jmmv 	return error;
    692   1.1      jmmv }
    693   1.1      jmmv 
    694   1.1      jmmv /* --------------------------------------------------------------------- */
    695   1.1      jmmv 
    696   1.9      jmmv /*
    697   1.9      jmmv  * Helper function for tmpfs_readdir.  Creates a '..' entry for the given
    698   1.1      jmmv  * directory and returns it in the uio space.  The function returns 0
    699   1.1      jmmv  * on success, -1 if there was not enough space in the uio structure to
    700   1.1      jmmv  * hold the directory entry or an appropriate error code if another
    701   1.9      jmmv  * error happens.
    702   1.9      jmmv  */
    703   1.1      jmmv int
    704   1.1      jmmv tmpfs_dir_getdotdotdent(struct tmpfs_node *node, struct uio *uio)
    705   1.1      jmmv {
    706   1.1      jmmv 	int error;
    707  1.37    rumble 	struct dirent *dentp;
    708   1.1      jmmv 
    709   1.1      jmmv 	TMPFS_VALIDATE_DIR(node);
    710   1.5      yamt 	KASSERT(uio->uio_offset == TMPFS_DIRCOOKIE_DOTDOT);
    711   1.1      jmmv 
    712  1.40        ad 	dentp = malloc(sizeof(struct dirent), M_TMPFSTMP, M_WAITOK | M_ZERO);
    713  1.37    rumble 
    714  1.37    rumble 	dentp->d_fileno = node->tn_spec.tn_dir.tn_parent->tn_id;
    715  1.37    rumble 	dentp->d_type = DT_DIR;
    716  1.37    rumble 	dentp->d_namlen = 2;
    717  1.37    rumble 	dentp->d_name[0] = '.';
    718  1.37    rumble 	dentp->d_name[1] = '.';
    719  1.37    rumble 	dentp->d_name[2] = '\0';
    720  1.37    rumble 	dentp->d_reclen = _DIRENT_SIZE(dentp);
    721   1.1      jmmv 
    722  1.37    rumble 	if (dentp->d_reclen > uio->uio_resid)
    723   1.1      jmmv 		error = -1;
    724   1.1      jmmv 	else {
    725  1.37    rumble 		error = uiomove(dentp, dentp->d_reclen, uio);
    726   1.5      yamt 		if (error == 0) {
    727   1.5      yamt 			struct tmpfs_dirent *de;
    728   1.5      yamt 
    729  1.18      jmmv 			de = TAILQ_FIRST(&node->tn_spec.tn_dir.tn_dir);
    730   1.5      yamt 			if (de == NULL)
    731   1.5      yamt 				uio->uio_offset = TMPFS_DIRCOOKIE_EOF;
    732   1.5      yamt 			else
    733  1.27      jmmv 				uio->uio_offset = tmpfs_dircookie(de);
    734   1.5      yamt 		}
    735   1.1      jmmv 	}
    736   1.1      jmmv 
    737   1.1      jmmv 	node->tn_status |= TMPFS_NODE_ACCESSED;
    738   1.1      jmmv 
    739  1.40        ad 	free(dentp, M_TMPFSTMP);
    740   1.1      jmmv 	return error;
    741   1.1      jmmv }
    742   1.1      jmmv 
    743   1.1      jmmv /* --------------------------------------------------------------------- */
    744   1.1      jmmv 
    745   1.9      jmmv /*
    746   1.9      jmmv  * Lookup a directory entry by its associated cookie.
    747   1.9      jmmv  */
    748   1.5      yamt struct tmpfs_dirent *
    749   1.5      yamt tmpfs_dir_lookupbycookie(struct tmpfs_node *node, off_t cookie)
    750   1.5      yamt {
    751   1.5      yamt 	struct tmpfs_dirent *de;
    752   1.5      yamt 
    753  1.18      jmmv 	if (cookie == node->tn_spec.tn_dir.tn_readdir_lastn &&
    754  1.18      jmmv 	    node->tn_spec.tn_dir.tn_readdir_lastp != NULL) {
    755  1.18      jmmv 		return node->tn_spec.tn_dir.tn_readdir_lastp;
    756   1.5      yamt 	}
    757   1.5      yamt 
    758  1.18      jmmv 	TAILQ_FOREACH(de, &node->tn_spec.tn_dir.tn_dir, td_entries) {
    759  1.27      jmmv 		if (tmpfs_dircookie(de) == cookie) {
    760   1.5      yamt 			break;
    761   1.5      yamt 		}
    762   1.5      yamt 	}
    763   1.5      yamt 
    764   1.5      yamt 	return de;
    765   1.5      yamt }
    766   1.5      yamt 
    767   1.5      yamt /* --------------------------------------------------------------------- */
    768   1.5      yamt 
    769   1.9      jmmv /*
    770   1.9      jmmv  * Helper function for tmpfs_readdir.  Returns as much directory entries
    771   1.1      jmmv  * as can fit in the uio space.  The read starts at uio->uio_offset.
    772   1.1      jmmv  * The function returns 0 on success, -1 if there was not enough space
    773   1.1      jmmv  * in the uio structure to hold the directory entry or an appropriate
    774   1.9      jmmv  * error code if another error happens.
    775   1.9      jmmv  */
    776   1.1      jmmv int
    777   1.5      yamt tmpfs_dir_getdents(struct tmpfs_node *node, struct uio *uio, off_t *cntp)
    778   1.1      jmmv {
    779   1.1      jmmv 	int error;
    780   1.5      yamt 	off_t startcookie;
    781  1.37    rumble 	struct dirent *dentp;
    782   1.1      jmmv 	struct tmpfs_dirent *de;
    783   1.1      jmmv 
    784   1.1      jmmv 	TMPFS_VALIDATE_DIR(node);
    785   1.1      jmmv 
    786   1.1      jmmv 	/* Locate the first directory entry we have to return.  We have cached
    787   1.1      jmmv 	 * the last readdir in the node, so use those values if appropriate.
    788   1.1      jmmv 	 * Otherwise do a linear scan to find the requested entry. */
    789   1.5      yamt 	startcookie = uio->uio_offset;
    790   1.5      yamt 	KASSERT(startcookie != TMPFS_DIRCOOKIE_DOT);
    791   1.5      yamt 	KASSERT(startcookie != TMPFS_DIRCOOKIE_DOTDOT);
    792   1.5      yamt 	if (startcookie == TMPFS_DIRCOOKIE_EOF) {
    793   1.5      yamt 		return 0;
    794   1.1      jmmv 	} else {
    795   1.5      yamt 		de = tmpfs_dir_lookupbycookie(node, startcookie);
    796   1.5      yamt 	}
    797   1.5      yamt 	if (de == NULL) {
    798   1.5      yamt 		return EINVAL;
    799   1.1      jmmv 	}
    800   1.1      jmmv 
    801  1.40        ad 	dentp = malloc(sizeof(struct dirent), M_TMPFSTMP, M_WAITOK | M_ZERO);
    802  1.37    rumble 
    803   1.1      jmmv 	/* Read as much entries as possible; i.e., until we reach the end of
    804   1.1      jmmv 	 * the directory or we exhaust uio space. */
    805   1.1      jmmv 	do {
    806   1.1      jmmv 		/* Create a dirent structure representing the current
    807   1.1      jmmv 		 * tmpfs_node and fill it. */
    808  1.37    rumble 		dentp->d_fileno = de->td_node->tn_id;
    809   1.1      jmmv 		switch (de->td_node->tn_type) {
    810   1.1      jmmv 		case VBLK:
    811  1.37    rumble 			dentp->d_type = DT_BLK;
    812   1.1      jmmv 			break;
    813   1.1      jmmv 
    814   1.1      jmmv 		case VCHR:
    815  1.37    rumble 			dentp->d_type = DT_CHR;
    816   1.1      jmmv 			break;
    817   1.1      jmmv 
    818   1.1      jmmv 		case VDIR:
    819  1.37    rumble 			dentp->d_type = DT_DIR;
    820   1.1      jmmv 			break;
    821   1.1      jmmv 
    822   1.1      jmmv 		case VFIFO:
    823  1.37    rumble 			dentp->d_type = DT_FIFO;
    824   1.1      jmmv 			break;
    825   1.1      jmmv 
    826   1.1      jmmv 		case VLNK:
    827  1.37    rumble 			dentp->d_type = DT_LNK;
    828   1.1      jmmv 			break;
    829   1.1      jmmv 
    830   1.1      jmmv 		case VREG:
    831  1.37    rumble 			dentp->d_type = DT_REG;
    832   1.1      jmmv 			break;
    833   1.1      jmmv 
    834   1.1      jmmv 		case VSOCK:
    835  1.37    rumble 			dentp->d_type = DT_SOCK;
    836   1.1      jmmv 			break;
    837   1.1      jmmv 
    838   1.1      jmmv 		default:
    839   1.1      jmmv 			KASSERT(0);
    840   1.1      jmmv 		}
    841  1.37    rumble 		dentp->d_namlen = de->td_namelen;
    842  1.37    rumble 		KASSERT(de->td_namelen < sizeof(dentp->d_name));
    843  1.37    rumble 		(void)memcpy(dentp->d_name, de->td_name, de->td_namelen);
    844  1.37    rumble 		dentp->d_name[de->td_namelen] = '\0';
    845  1.37    rumble 		dentp->d_reclen = _DIRENT_SIZE(dentp);
    846   1.1      jmmv 
    847   1.1      jmmv 		/* Stop reading if the directory entry we are treating is
    848   1.1      jmmv 		 * bigger than the amount of data that can be returned. */
    849  1.37    rumble 		if (dentp->d_reclen > uio->uio_resid) {
    850   1.1      jmmv 			error = -1;
    851   1.1      jmmv 			break;
    852   1.1      jmmv 		}
    853   1.1      jmmv 
    854   1.1      jmmv 		/* Copy the new dirent structure into the output buffer and
    855   1.1      jmmv 		 * advance pointers. */
    856  1.37    rumble 		error = uiomove(dentp, dentp->d_reclen, uio);
    857   1.1      jmmv 
    858   1.5      yamt 		(*cntp)++;
    859   1.1      jmmv 		de = TAILQ_NEXT(de, td_entries);
    860   1.1      jmmv 	} while (error == 0 && uio->uio_resid > 0 && de != NULL);
    861   1.1      jmmv 
    862   1.5      yamt 	/* Update the offset and cache. */
    863   1.1      jmmv 	if (de == NULL) {
    864   1.5      yamt 		uio->uio_offset = TMPFS_DIRCOOKIE_EOF;
    865  1.18      jmmv 		node->tn_spec.tn_dir.tn_readdir_lastn = 0;
    866  1.18      jmmv 		node->tn_spec.tn_dir.tn_readdir_lastp = NULL;
    867   1.1      jmmv 	} else {
    868  1.18      jmmv 		node->tn_spec.tn_dir.tn_readdir_lastn = uio->uio_offset =
    869  1.27      jmmv 		    tmpfs_dircookie(de);
    870  1.18      jmmv 		node->tn_spec.tn_dir.tn_readdir_lastp = de;
    871   1.1      jmmv 	}
    872   1.1      jmmv 
    873   1.1      jmmv 	node->tn_status |= TMPFS_NODE_ACCESSED;
    874   1.1      jmmv 
    875  1.40        ad 	free(dentp, M_TMPFSTMP);
    876   1.1      jmmv 	return error;
    877   1.1      jmmv }
    878   1.1      jmmv 
    879   1.1      jmmv /* --------------------------------------------------------------------- */
    880   1.1      jmmv 
    881   1.8      jmmv /*
    882   1.8      jmmv  * Resizes the aobj associated to the regular file pointed to by vp to
    883   1.8      jmmv  * the size newsize.  'vp' must point to a vnode that represents a regular
    884   1.8      jmmv  * file.  'newsize' must be positive.
    885   1.8      jmmv  *
    886  1.29      jmmv  * If the file is extended, the appropriate kevent is raised.  This does
    887  1.29      jmmv  * not rise a write event though because resizing is not the same as
    888  1.29      jmmv  * writing.
    889  1.29      jmmv  *
    890   1.8      jmmv  * Returns zero on success or an appropriate error code on failure.
    891   1.8      jmmv  */
    892   1.1      jmmv int
    893   1.1      jmmv tmpfs_reg_resize(struct vnode *vp, off_t newsize)
    894   1.1      jmmv {
    895   1.1      jmmv 	int error;
    896   1.1      jmmv 	size_t newpages, oldpages;
    897   1.1      jmmv 	struct tmpfs_mount *tmp;
    898   1.1      jmmv 	struct tmpfs_node *node;
    899  1.13      yamt 	off_t oldsize;
    900   1.1      jmmv 
    901   1.1      jmmv 	KASSERT(vp->v_type == VREG);
    902   1.1      jmmv 	KASSERT(newsize >= 0);
    903   1.1      jmmv 
    904   1.1      jmmv 	node = VP_TO_TMPFS_NODE(vp);
    905   1.1      jmmv 	tmp = VFS_TO_TMPFS(vp->v_mount);
    906   1.1      jmmv 
    907   1.1      jmmv 	/* Convert the old and new sizes to the number of pages needed to
    908   1.1      jmmv 	 * store them.  It may happen that we do not need to do anything
    909   1.1      jmmv 	 * because the last allocated page can accommodate the change on
    910   1.1      jmmv 	 * its own. */
    911  1.13      yamt 	oldsize = node->tn_size;
    912  1.13      yamt 	oldpages = round_page(oldsize) / PAGE_SIZE;
    913  1.18      jmmv 	KASSERT(oldpages == node->tn_spec.tn_reg.tn_aobj_pages);
    914   1.1      jmmv 	newpages = round_page(newsize) / PAGE_SIZE;
    915   1.1      jmmv 
    916   1.1      jmmv 	if (newpages > oldpages &&
    917   1.1      jmmv 	    newpages - oldpages > TMPFS_PAGES_AVAIL(tmp)) {
    918   1.1      jmmv 		error = ENOSPC;
    919   1.1      jmmv 		goto out;
    920   1.1      jmmv 	}
    921   1.1      jmmv 
    922  1.13      yamt 	if (newsize < oldsize) {
    923  1.13      yamt 		int zerolen = MIN(round_page(newsize), node->tn_size) - newsize;
    924  1.13      yamt 
    925  1.13      yamt 		/*
    926  1.13      yamt 		 * free "backing store"
    927  1.13      yamt 		 */
    928  1.13      yamt 
    929  1.13      yamt 		if (newpages < oldpages) {
    930  1.18      jmmv 			struct uvm_object *uobj;
    931  1.18      jmmv 
    932  1.18      jmmv 			uobj = node->tn_spec.tn_reg.tn_aobj;
    933  1.13      yamt 
    934  1.13      yamt 			simple_lock(&uobj->vmobjlock);
    935  1.13      yamt 			uao_dropswap_range(uobj, newpages, oldpages);
    936  1.13      yamt 			simple_unlock(&uobj->vmobjlock);
    937  1.13      yamt 		}
    938  1.13      yamt 
    939  1.13      yamt 		/*
    940  1.13      yamt 		 * zero out the truncated part of the last page.
    941  1.13      yamt 		 */
    942  1.13      yamt 
    943  1.13      yamt 		uvm_vnp_zerorange(vp, newsize, zerolen);
    944  1.13      yamt 	}
    945   1.1      jmmv 
    946  1.36     pooka 	node->tn_spec.tn_reg.tn_aobj_pages = newpages;
    947  1.36     pooka 	node->tn_size = newsize;
    948  1.36     pooka 	uvm_vnp_setsize(vp, newsize);
    949  1.36     pooka 
    950  1.40        ad 	tmp->tm_pages_used += (newpages - oldpages);
    951  1.40        ad 
    952   1.1      jmmv 	error = 0;
    953   1.1      jmmv 
    954  1.29      jmmv 	if (newsize > oldsize)
    955  1.29      jmmv 		VN_KNOTE(vp, NOTE_EXTEND);
    956  1.29      jmmv 
    957   1.1      jmmv out:
    958   1.1      jmmv 	return error;
    959   1.1      jmmv }
    960   1.1      jmmv 
    961   1.1      jmmv /* --------------------------------------------------------------------- */
    962   1.1      jmmv 
    963   1.9      jmmv /*
    964   1.9      jmmv  * Returns information about the number of available memory pages,
    965   1.1      jmmv  * including physical and virtual ones.
    966   1.1      jmmv  *
    967  1.34   thorpej  * If 'total' is true, the value returned is the total amount of memory
    968   1.1      jmmv  * pages configured for the system (either in use or free).
    969   1.1      jmmv  * If it is FALSE, the value returned is the amount of free memory pages.
    970   1.1      jmmv  *
    971   1.1      jmmv  * Remember to remove TMPFS_PAGES_RESERVED from the returned value to avoid
    972   1.1      jmmv  * excessive memory usage.
    973   1.1      jmmv  *
    974   1.9      jmmv  */
    975   1.1      jmmv size_t
    976  1.33   thorpej tmpfs_mem_info(bool total)
    977   1.1      jmmv {
    978   1.1      jmmv 	size_t size;
    979   1.1      jmmv 
    980   1.1      jmmv 	size = 0;
    981  1.15       dan 	size += uvmexp.swpgavail;
    982  1.15       dan 	if (!total) {
    983  1.15       dan 		size -= uvmexp.swpgonly;
    984   1.1      jmmv 	}
    985   1.1      jmmv 	size += uvmexp.free;
    986  1.16       dan 	size += uvmexp.filepages;
    987  1.16       dan 	if (size > uvmexp.wired) {
    988  1.16       dan 		size -= uvmexp.wired;
    989  1.16       dan 	} else {
    990  1.16       dan 		size = 0;
    991  1.16       dan 	}
    992   1.1      jmmv 
    993   1.1      jmmv 	return size;
    994   1.1      jmmv }
    995   1.1      jmmv 
    996   1.1      jmmv /* --------------------------------------------------------------------- */
    997   1.1      jmmv 
    998   1.9      jmmv /*
    999   1.9      jmmv  * Change flags of the given vnode.
   1000  1.12      yamt  * Caller should execute tmpfs_update on vp after a successful execution.
   1001   1.9      jmmv  * The vnode must be locked on entry and remain locked on exit.
   1002   1.9      jmmv  */
   1003   1.1      jmmv int
   1004  1.22        ad tmpfs_chflags(struct vnode *vp, int flags, kauth_cred_t cred, struct lwp *l)
   1005   1.1      jmmv {
   1006   1.1      jmmv 	int error;
   1007   1.1      jmmv 	struct tmpfs_node *node;
   1008   1.1      jmmv 
   1009   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1010   1.1      jmmv 
   1011   1.1      jmmv 	node = VP_TO_TMPFS_NODE(vp);
   1012   1.1      jmmv 
   1013   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
   1014   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1015   1.1      jmmv 		return EROFS;
   1016   1.1      jmmv 
   1017   1.1      jmmv 	/* XXX: The following comes from UFS code, and can be found in
   1018   1.1      jmmv 	 * several other file systems.  Shouldn't this be centralized
   1019   1.1      jmmv 	 * somewhere? */
   1020  1.19      elad 	if (kauth_cred_geteuid(cred) != node->tn_uid &&
   1021  1.19      elad 	    (error = kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER,
   1022  1.32      elad 	    NULL)))
   1023   1.1      jmmv 		return error;
   1024  1.32      elad 	if (kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER, NULL) == 0) {
   1025   1.1      jmmv 		/* The super-user is only allowed to change flags if the file
   1026   1.1      jmmv 		 * wasn't protected before and the securelevel is zero. */
   1027   1.1      jmmv 		if ((node->tn_flags & (SF_IMMUTABLE | SF_APPEND)) &&
   1028  1.31      elad 		    kauth_authorize_system(l->l_cred, KAUTH_SYSTEM_CHSYSFLAGS,
   1029  1.31      elad 		     0, NULL, NULL, NULL))
   1030   1.1      jmmv 			return EPERM;
   1031   1.1      jmmv 		node->tn_flags = flags;
   1032   1.1      jmmv 	} else {
   1033   1.1      jmmv 		/* Regular users can change flags provided they only want to
   1034   1.1      jmmv 		 * change user-specific ones, not those reserved for the
   1035   1.1      jmmv 		 * super-user. */
   1036   1.1      jmmv 		if ((node->tn_flags & (SF_IMMUTABLE | SF_APPEND)) ||
   1037   1.1      jmmv 		    (flags & UF_SETTABLE) != flags)
   1038   1.1      jmmv 			return EPERM;
   1039   1.1      jmmv 		if ((node->tn_flags & SF_SETTABLE) != (flags & SF_SETTABLE))
   1040   1.1      jmmv 			return EPERM;
   1041   1.1      jmmv 		node->tn_flags &= SF_SETTABLE;
   1042   1.1      jmmv 		node->tn_flags |= (flags & UF_SETTABLE);
   1043   1.1      jmmv 	}
   1044   1.1      jmmv 
   1045   1.1      jmmv 	node->tn_status |= TMPFS_NODE_CHANGED;
   1046   1.1      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
   1047   1.1      jmmv 
   1048   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1049   1.1      jmmv 
   1050   1.1      jmmv 	return 0;
   1051   1.1      jmmv }
   1052   1.1      jmmv 
   1053   1.1      jmmv /* --------------------------------------------------------------------- */
   1054   1.1      jmmv 
   1055   1.9      jmmv /*
   1056   1.9      jmmv  * Change access mode on the given vnode.
   1057  1.12      yamt  * Caller should execute tmpfs_update on vp after a successful execution.
   1058   1.9      jmmv  * The vnode must be locked on entry and remain locked on exit.
   1059   1.9      jmmv  */
   1060   1.1      jmmv int
   1061  1.22        ad tmpfs_chmod(struct vnode *vp, mode_t mode, kauth_cred_t cred, struct lwp *l)
   1062   1.1      jmmv {
   1063  1.19      elad 	int error, ismember = 0;
   1064   1.1      jmmv 	struct tmpfs_node *node;
   1065   1.1      jmmv 
   1066   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1067   1.1      jmmv 
   1068   1.1      jmmv 	node = VP_TO_TMPFS_NODE(vp);
   1069   1.1      jmmv 
   1070   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
   1071   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1072   1.1      jmmv 		return EROFS;
   1073   1.1      jmmv 
   1074   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1075   1.1      jmmv 	if (node->tn_flags & (IMMUTABLE | APPEND))
   1076   1.1      jmmv 		return EPERM;
   1077   1.1      jmmv 
   1078   1.1      jmmv 	/* XXX: The following comes from UFS code, and can be found in
   1079   1.1      jmmv 	 * several other file systems.  Shouldn't this be centralized
   1080   1.1      jmmv 	 * somewhere? */
   1081  1.19      elad 	if (kauth_cred_geteuid(cred) != node->tn_uid &&
   1082  1.19      elad 	    (error = kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER,
   1083  1.32      elad 	    NULL)))
   1084   1.1      jmmv 		return error;
   1085  1.32      elad 	if (kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER, NULL) != 0) {
   1086   1.1      jmmv 		if (vp->v_type != VDIR && (mode & S_ISTXT))
   1087   1.1      jmmv 			return EFTYPE;
   1088   1.1      jmmv 
   1089  1.19      elad 		if ((kauth_cred_ismember_gid(cred, node->tn_gid,
   1090  1.19      elad 		    &ismember) != 0 || !ismember) && (mode & S_ISGID))
   1091   1.1      jmmv 			return EPERM;
   1092   1.1      jmmv 	}
   1093   1.1      jmmv 
   1094   1.1      jmmv 	node->tn_mode = (mode & ALLPERMS);
   1095   1.1      jmmv 
   1096   1.1      jmmv 	node->tn_status |= TMPFS_NODE_CHANGED;
   1097   1.1      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
   1098   1.1      jmmv 
   1099   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1100   1.1      jmmv 
   1101   1.1      jmmv 	return 0;
   1102   1.1      jmmv }
   1103   1.1      jmmv 
   1104   1.1      jmmv /* --------------------------------------------------------------------- */
   1105   1.1      jmmv 
   1106   1.9      jmmv /*
   1107   1.9      jmmv  * Change ownership of the given vnode.  At least one of uid or gid must
   1108   1.1      jmmv  * be different than VNOVAL.  If one is set to that value, the attribute
   1109   1.1      jmmv  * is unchanged.
   1110  1.12      yamt  * Caller should execute tmpfs_update on vp after a successful execution.
   1111   1.9      jmmv  * The vnode must be locked on entry and remain locked on exit.
   1112   1.9      jmmv  */
   1113   1.1      jmmv int
   1114  1.19      elad tmpfs_chown(struct vnode *vp, uid_t uid, gid_t gid, kauth_cred_t cred,
   1115  1.22        ad     struct lwp *l)
   1116   1.1      jmmv {
   1117  1.19      elad 	int error, ismember = 0;
   1118   1.1      jmmv 	struct tmpfs_node *node;
   1119   1.1      jmmv 
   1120   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1121   1.1      jmmv 
   1122   1.1      jmmv 	node = VP_TO_TMPFS_NODE(vp);
   1123   1.1      jmmv 
   1124   1.1      jmmv 	/* Assign default values if they are unknown. */
   1125   1.1      jmmv 	KASSERT(uid != VNOVAL || gid != VNOVAL);
   1126   1.1      jmmv 	if (uid == VNOVAL)
   1127   1.1      jmmv 		uid = node->tn_uid;
   1128   1.1      jmmv 	if (gid == VNOVAL)
   1129   1.1      jmmv 		gid = node->tn_gid;
   1130   1.1      jmmv 	KASSERT(uid != VNOVAL && gid != VNOVAL);
   1131   1.1      jmmv 
   1132   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
   1133   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1134   1.1      jmmv 		return EROFS;
   1135   1.1      jmmv 
   1136   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1137   1.1      jmmv 	if (node->tn_flags & (IMMUTABLE | APPEND))
   1138   1.1      jmmv 		return EPERM;
   1139   1.1      jmmv 
   1140   1.1      jmmv 	/* XXX: The following comes from UFS code, and can be found in
   1141   1.1      jmmv 	 * several other file systems.  Shouldn't this be centralized
   1142   1.1      jmmv 	 * somewhere? */
   1143  1.19      elad 	if ((kauth_cred_geteuid(cred) != node->tn_uid || uid != node->tn_uid ||
   1144  1.19      elad 	    (gid != node->tn_gid && !(kauth_cred_getegid(cred) == node->tn_gid ||
   1145  1.22        ad 	    (kauth_cred_ismember_gid(cred, gid, &ismember) == 0 && ismember)))) &&
   1146  1.19      elad 	    ((error = kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER,
   1147  1.32      elad 	    NULL)) != 0))
   1148   1.1      jmmv 		return error;
   1149   1.1      jmmv 
   1150   1.1      jmmv 	node->tn_uid = uid;
   1151   1.1      jmmv 	node->tn_gid = gid;
   1152   1.1      jmmv 
   1153   1.1      jmmv 	node->tn_status |= TMPFS_NODE_CHANGED;
   1154   1.1      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
   1155   1.1      jmmv 
   1156   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1157   1.1      jmmv 
   1158   1.1      jmmv 	return 0;
   1159   1.1      jmmv }
   1160   1.1      jmmv 
   1161   1.1      jmmv /* --------------------------------------------------------------------- */
   1162   1.1      jmmv 
   1163   1.9      jmmv /*
   1164   1.9      jmmv  * Change size of the given vnode.
   1165  1.12      yamt  * Caller should execute tmpfs_update on vp after a successful execution.
   1166   1.9      jmmv  * The vnode must be locked on entry and remain locked on exit.
   1167   1.9      jmmv  */
   1168   1.1      jmmv int
   1169  1.30  christos tmpfs_chsize(struct vnode *vp, u_quad_t size, kauth_cred_t cred,
   1170  1.30  christos     struct lwp *l)
   1171   1.1      jmmv {
   1172   1.1      jmmv 	int error;
   1173   1.1      jmmv 	struct tmpfs_node *node;
   1174   1.1      jmmv 
   1175   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1176   1.1      jmmv 
   1177   1.1      jmmv 	node = VP_TO_TMPFS_NODE(vp);
   1178   1.1      jmmv 
   1179   1.1      jmmv 	/* Decide whether this is a valid operation based on the file type. */
   1180   1.1      jmmv 	error = 0;
   1181   1.1      jmmv 	switch (vp->v_type) {
   1182   1.1      jmmv 	case VDIR:
   1183   1.1      jmmv 		return EISDIR;
   1184   1.1      jmmv 
   1185   1.1      jmmv 	case VREG:
   1186   1.1      jmmv 		if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1187   1.1      jmmv 			return EROFS;
   1188   1.1      jmmv 		break;
   1189   1.1      jmmv 
   1190   1.1      jmmv 	case VBLK:
   1191   1.1      jmmv 		/* FALLTHROUGH */
   1192   1.1      jmmv 	case VCHR:
   1193   1.1      jmmv 		/* FALLTHROUGH */
   1194   1.1      jmmv 	case VFIFO:
   1195   1.1      jmmv 		/* Allow modifications of special files even if in the file
   1196   1.1      jmmv 		 * system is mounted read-only (we are not modifying the
   1197   1.1      jmmv 		 * files themselves, but the objects they represent). */
   1198  1.14      yamt 		return 0;
   1199   1.1      jmmv 
   1200   1.1      jmmv 	default:
   1201   1.1      jmmv 		/* Anything else is unsupported. */
   1202  1.14      yamt 		return EOPNOTSUPP;
   1203   1.1      jmmv 	}
   1204   1.1      jmmv 
   1205   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1206   1.1      jmmv 	if (node->tn_flags & (IMMUTABLE | APPEND))
   1207   1.1      jmmv 		return EPERM;
   1208   1.1      jmmv 
   1209  1.12      yamt 	error = tmpfs_truncate(vp, size);
   1210   1.1      jmmv 	/* tmpfs_truncate will raise the NOTE_EXTEND and NOTE_ATTRIB kevents
   1211   1.1      jmmv 	 * for us, as will update tn_status; no need to do that here. */
   1212   1.1      jmmv 
   1213   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1214   1.1      jmmv 
   1215   1.1      jmmv 	return error;
   1216   1.1      jmmv }
   1217   1.1      jmmv 
   1218   1.1      jmmv /* --------------------------------------------------------------------- */
   1219   1.1      jmmv 
   1220   1.9      jmmv /*
   1221   1.9      jmmv  * Change access and modification times of the given vnode.
   1222  1.12      yamt  * Caller should execute tmpfs_update on vp after a successful execution.
   1223   1.9      jmmv  * The vnode must be locked on entry and remain locked on exit.
   1224   1.9      jmmv  */
   1225   1.1      jmmv int
   1226   1.1      jmmv tmpfs_chtimes(struct vnode *vp, struct timespec *atime, struct timespec *mtime,
   1227  1.19      elad     int vaflags, kauth_cred_t cred, struct lwp *l)
   1228   1.1      jmmv {
   1229   1.1      jmmv 	int error;
   1230   1.1      jmmv 	struct tmpfs_node *node;
   1231   1.1      jmmv 
   1232   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1233   1.1      jmmv 
   1234   1.1      jmmv 	node = VP_TO_TMPFS_NODE(vp);
   1235   1.1      jmmv 
   1236   1.1      jmmv 	/* Disallow this operation if the file system is mounted read-only. */
   1237   1.1      jmmv 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
   1238   1.1      jmmv 		return EROFS;
   1239   1.1      jmmv 
   1240   1.1      jmmv 	/* Immutable or append-only files cannot be modified, either. */
   1241   1.1      jmmv 	if (node->tn_flags & (IMMUTABLE | APPEND))
   1242   1.1      jmmv 		return EPERM;
   1243   1.1      jmmv 
   1244   1.1      jmmv 	/* XXX: The following comes from UFS code, and can be found in
   1245   1.1      jmmv 	 * several other file systems.  Shouldn't this be centralized
   1246   1.1      jmmv 	 * somewhere? */
   1247  1.19      elad 	if (kauth_cred_geteuid(cred) != node->tn_uid &&
   1248  1.19      elad 	    (error = kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER,
   1249  1.32      elad 	    NULL)) && ((vaflags & VA_UTIMES_NULL) == 0 ||
   1250  1.17  christos 	    (error = VOP_ACCESS(vp, VWRITE, cred, l))))
   1251   1.1      jmmv 		return error;
   1252   1.1      jmmv 
   1253   1.1      jmmv 	if (atime->tv_sec != VNOVAL && atime->tv_nsec != VNOVAL)
   1254   1.1      jmmv 		node->tn_status |= TMPFS_NODE_ACCESSED;
   1255   1.1      jmmv 
   1256   1.1      jmmv 	if (mtime->tv_sec != VNOVAL && mtime->tv_nsec != VNOVAL)
   1257   1.1      jmmv 		node->tn_status |= TMPFS_NODE_MODIFIED;
   1258   1.1      jmmv 
   1259  1.12      yamt 	tmpfs_update(vp, atime, mtime, 0);
   1260  1.29      jmmv 	VN_KNOTE(vp, NOTE_ATTRIB);
   1261   1.1      jmmv 
   1262   1.1      jmmv 	KASSERT(VOP_ISLOCKED(vp));
   1263   1.1      jmmv 
   1264  1.12      yamt 	return 0;
   1265   1.1      jmmv }
   1266  1.10      yamt 
   1267  1.10      yamt /* --------------------------------------------------------------------- */
   1268  1.10      yamt 
   1269  1.10      yamt /* Sync timestamps */
   1270  1.10      yamt void
   1271  1.10      yamt tmpfs_itimes(struct vnode *vp, const struct timespec *acc,
   1272  1.10      yamt     const struct timespec *mod)
   1273  1.10      yamt {
   1274  1.21    kardel 	struct timespec now;
   1275  1.10      yamt 	struct tmpfs_node *node;
   1276  1.10      yamt 
   1277  1.10      yamt 	node = VP_TO_TMPFS_NODE(vp);
   1278  1.10      yamt 
   1279  1.10      yamt 	if ((node->tn_status & (TMPFS_NODE_ACCESSED | TMPFS_NODE_MODIFIED |
   1280  1.10      yamt 	    TMPFS_NODE_CHANGED)) == 0)
   1281  1.10      yamt 		return;
   1282  1.26      jmmv 
   1283  1.21    kardel 	getnanotime(&now);
   1284  1.10      yamt 	if (node->tn_status & TMPFS_NODE_ACCESSED) {
   1285  1.10      yamt 		if (acc == NULL)
   1286  1.21    kardel 			acc = &now;
   1287  1.10      yamt 		node->tn_atime = *acc;
   1288  1.10      yamt 	}
   1289  1.10      yamt 	if (node->tn_status & TMPFS_NODE_MODIFIED) {
   1290  1.10      yamt 		if (mod == NULL)
   1291  1.21    kardel 			mod = &now;
   1292  1.10      yamt 		node->tn_mtime = *mod;
   1293  1.10      yamt 	}
   1294  1.21    kardel 	if (node->tn_status & TMPFS_NODE_CHANGED)
   1295  1.21    kardel 		node->tn_ctime = now;
   1296  1.21    kardel 
   1297  1.10      yamt 	node->tn_status &=
   1298  1.10      yamt 	    ~(TMPFS_NODE_ACCESSED | TMPFS_NODE_MODIFIED | TMPFS_NODE_CHANGED);
   1299  1.10      yamt }
   1300  1.12      yamt 
   1301  1.12      yamt /* --------------------------------------------------------------------- */
   1302  1.12      yamt 
   1303  1.12      yamt void
   1304  1.12      yamt tmpfs_update(struct vnode *vp, const struct timespec *acc,
   1305  1.30  christos     const struct timespec *mod, int flags)
   1306  1.12      yamt {
   1307  1.12      yamt 
   1308  1.12      yamt 	struct tmpfs_node *node;
   1309  1.12      yamt 
   1310  1.12      yamt 	KASSERT(VOP_ISLOCKED(vp));
   1311  1.12      yamt 
   1312  1.12      yamt 	node = VP_TO_TMPFS_NODE(vp);
   1313  1.12      yamt 
   1314  1.23  christos #if 0
   1315  1.12      yamt 	if (flags & UPDATE_CLOSE)
   1316  1.12      yamt 		; /* XXX Need to do anything special? */
   1317  1.23  christos #endif
   1318  1.12      yamt 
   1319  1.12      yamt 	tmpfs_itimes(vp, acc, mod);
   1320  1.12      yamt 
   1321  1.12      yamt 	KASSERT(VOP_ISLOCKED(vp));
   1322  1.12      yamt }
   1323  1.12      yamt 
   1324  1.12      yamt /* --------------------------------------------------------------------- */
   1325  1.12      yamt 
   1326  1.12      yamt int
   1327  1.12      yamt tmpfs_truncate(struct vnode *vp, off_t length)
   1328  1.12      yamt {
   1329  1.33   thorpej 	bool extended;
   1330  1.12      yamt 	int error;
   1331  1.12      yamt 	struct tmpfs_node *node;
   1332  1.12      yamt 
   1333  1.12      yamt 	node = VP_TO_TMPFS_NODE(vp);
   1334  1.12      yamt 	extended = length > node->tn_size;
   1335  1.12      yamt 
   1336  1.12      yamt 	if (length < 0) {
   1337  1.12      yamt 		error = EINVAL;
   1338  1.12      yamt 		goto out;
   1339  1.12      yamt 	}
   1340  1.12      yamt 
   1341  1.12      yamt 	if (node->tn_size == length) {
   1342  1.12      yamt 		error = 0;
   1343  1.12      yamt 		goto out;
   1344  1.12      yamt 	}
   1345  1.12      yamt 
   1346  1.12      yamt 	error = tmpfs_reg_resize(vp, length);
   1347  1.29      jmmv 	if (error == 0)
   1348  1.12      yamt 		node->tn_status |= TMPFS_NODE_CHANGED | TMPFS_NODE_MODIFIED;
   1349  1.12      yamt 
   1350  1.12      yamt out:
   1351  1.12      yamt 	tmpfs_update(vp, NULL, NULL, 0);
   1352  1.12      yamt 
   1353  1.12      yamt 	return error;
   1354  1.12      yamt }
   1355