xref: /netbsd-src/sys/fs/tmpfs/tmpfs_vnops.c (revision c8a35b6227034951e874c2def577388e79ede4a5)
1 /*	$NetBSD: tmpfs_vnops.c,v 1.54 2009/03/19 13:47:32 pooka Exp $	*/
2 
3 /*
4  * Copyright (c) 2005, 2006, 2007 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Julio M. Merino Vidal, developed as part of Google's Summer of Code
9  * 2005 program.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 /*
34  * tmpfs vnode interface.
35  */
36 
37 #include <sys/cdefs.h>
38 __KERNEL_RCSID(0, "$NetBSD: tmpfs_vnops.c,v 1.54 2009/03/19 13:47:32 pooka Exp $");
39 
40 #include <sys/param.h>
41 #include <sys/dirent.h>
42 #include <sys/fcntl.h>
43 #include <sys/event.h>
44 #include <sys/malloc.h>
45 #include <sys/namei.h>
46 #include <sys/proc.h>
47 #include <sys/stat.h>
48 #include <sys/uio.h>
49 #include <sys/unistd.h>
50 #include <sys/vnode.h>
51 #include <sys/lockf.h>
52 #include <sys/kauth.h>
53 
54 #include <uvm/uvm.h>
55 
56 #include <miscfs/fifofs/fifo.h>
57 #include <fs/tmpfs/tmpfs_vnops.h>
58 #include <fs/tmpfs/tmpfs.h>
59 
60 /* --------------------------------------------------------------------- */
61 
62 /*
63  * vnode operations vector used for files stored in a tmpfs file system.
64  */
65 int (**tmpfs_vnodeop_p)(void *);
66 const struct vnodeopv_entry_desc tmpfs_vnodeop_entries[] = {
67 	{ &vop_default_desc,		vn_default_error },
68 	{ &vop_lookup_desc,		tmpfs_lookup },
69 	{ &vop_create_desc,		tmpfs_create },
70 	{ &vop_mknod_desc,		tmpfs_mknod },
71 	{ &vop_open_desc,		tmpfs_open },
72 	{ &vop_close_desc,		tmpfs_close },
73 	{ &vop_access_desc,		tmpfs_access },
74 	{ &vop_getattr_desc,		tmpfs_getattr },
75 	{ &vop_setattr_desc,		tmpfs_setattr },
76 	{ &vop_read_desc,		tmpfs_read },
77 	{ &vop_write_desc,		tmpfs_write },
78 	{ &vop_ioctl_desc,		tmpfs_ioctl },
79 	{ &vop_fcntl_desc,		tmpfs_fcntl },
80 	{ &vop_poll_desc,		tmpfs_poll },
81 	{ &vop_kqfilter_desc,		tmpfs_kqfilter },
82 	{ &vop_revoke_desc,		tmpfs_revoke },
83 	{ &vop_mmap_desc,		tmpfs_mmap },
84 	{ &vop_fsync_desc,		tmpfs_fsync },
85 	{ &vop_seek_desc,		tmpfs_seek },
86 	{ &vop_remove_desc,		tmpfs_remove },
87 	{ &vop_link_desc,		tmpfs_link },
88 	{ &vop_rename_desc,		tmpfs_rename },
89 	{ &vop_mkdir_desc,		tmpfs_mkdir },
90 	{ &vop_rmdir_desc,		tmpfs_rmdir },
91 	{ &vop_symlink_desc,		tmpfs_symlink },
92 	{ &vop_readdir_desc,		tmpfs_readdir },
93 	{ &vop_readlink_desc,		tmpfs_readlink },
94 	{ &vop_abortop_desc,		tmpfs_abortop },
95 	{ &vop_inactive_desc,		tmpfs_inactive },
96 	{ &vop_reclaim_desc,		tmpfs_reclaim },
97 	{ &vop_lock_desc,		tmpfs_lock },
98 	{ &vop_unlock_desc,		tmpfs_unlock },
99 	{ &vop_bmap_desc,		tmpfs_bmap },
100 	{ &vop_strategy_desc,		tmpfs_strategy },
101 	{ &vop_print_desc,		tmpfs_print },
102 	{ &vop_pathconf_desc,		tmpfs_pathconf },
103 	{ &vop_islocked_desc,		tmpfs_islocked },
104 	{ &vop_advlock_desc,		tmpfs_advlock },
105 	{ &vop_bwrite_desc,		tmpfs_bwrite },
106 	{ &vop_getpages_desc,		tmpfs_getpages },
107 	{ &vop_putpages_desc,		tmpfs_putpages },
108 	{ NULL, NULL }
109 };
110 const struct vnodeopv_desc tmpfs_vnodeop_opv_desc =
111 	{ &tmpfs_vnodeop_p, tmpfs_vnodeop_entries };
112 
113 /* --------------------------------------------------------------------- */
114 
115 int
116 tmpfs_lookup(void *v)
117 {
118 	struct vnode *dvp = ((struct vop_lookup_args *)v)->a_dvp;
119 	struct vnode **vpp = ((struct vop_lookup_args *)v)->a_vpp;
120 	struct componentname *cnp = ((struct vop_lookup_args *)v)->a_cnp;
121 
122 	int error;
123 	struct tmpfs_dirent *de;
124 	struct tmpfs_node *dnode;
125 
126 	KASSERT(VOP_ISLOCKED(dvp));
127 
128 	dnode = VP_TO_TMPFS_DIR(dvp);
129 	*vpp = NULL;
130 
131 	/* Check accessibility of requested node as a first step. */
132 	error = VOP_ACCESS(dvp, VEXEC, cnp->cn_cred);
133 	if (error != 0)
134 		goto out;
135 
136 	/* If requesting the last path component on a read-only file system
137 	 * with a write operation, deny it. */
138 	if ((cnp->cn_flags & ISLASTCN) &&
139 	    (dvp->v_mount->mnt_flag & MNT_RDONLY) &&
140 	    (cnp->cn_nameiop == DELETE || cnp->cn_nameiop == RENAME)) {
141 		error = EROFS;
142 		goto out;
143 	}
144 
145 	/* Avoid doing a linear scan of the directory if the requested
146 	 * directory/name couple is already in the cache. */
147 	error = cache_lookup(dvp, vpp, cnp);
148 	if (error >= 0)
149 		goto out;
150 
151 	/* We cannot be requesting the parent directory of the root node. */
152 	KASSERT(IMPLIES(dnode->tn_type == VDIR &&
153 	    dnode->tn_spec.tn_dir.tn_parent == dnode,
154 	    !(cnp->cn_flags & ISDOTDOT)));
155 
156 	if (cnp->cn_flags & ISDOTDOT) {
157 		VOP_UNLOCK(dvp, 0);
158 
159 		/* Allocate a new vnode on the matching entry. */
160 		error = tmpfs_alloc_vp(dvp->v_mount,
161 		    dnode->tn_spec.tn_dir.tn_parent, vpp);
162 
163 		vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
164 	} else if (cnp->cn_namelen == 1 && cnp->cn_nameptr[0] == '.') {
165 		VREF(dvp);
166 		*vpp = dvp;
167 		error = 0;
168 	} else {
169 		de = tmpfs_dir_lookup(dnode, cnp);
170 		if (de == NULL) {
171 			/* The entry was not found in the directory.
172 			 * This is OK iff we are creating or renaming an
173 			 * entry and are working on the last component of
174 			 * the path name. */
175 			if ((cnp->cn_flags & ISLASTCN) &&
176 			    (cnp->cn_nameiop == CREATE || \
177 			    cnp->cn_nameiop == RENAME)) {
178 				error = VOP_ACCESS(dvp, VWRITE, cnp->cn_cred);
179 				if (error != 0)
180 					goto out;
181 
182 				/* Keep the component name in the buffer for
183 				 * future uses. */
184 				cnp->cn_flags |= SAVENAME;
185 
186 				error = EJUSTRETURN;
187 			} else
188 				error = ENOENT;
189 		} else {
190 			struct tmpfs_node *tnode;
191 
192 			/* The entry was found, so get its associated
193 			 * tmpfs_node. */
194 			tnode = de->td_node;
195 
196 			/* If we are not at the last path component and
197 			 * found a non-directory or non-link entry (which
198 			 * may itself be pointing to a directory), raise
199 			 * an error. */
200 			if ((tnode->tn_type != VDIR &&
201 			    tnode->tn_type != VLNK) &&
202 			    !(cnp->cn_flags & ISLASTCN)) {
203 				error = ENOTDIR;
204 				goto out;
205 			}
206 
207 			/* If we are deleting or renaming the entry, keep
208 			 * track of its tmpfs_dirent so that it can be
209 			 * easily deleted later. */
210 			if ((cnp->cn_flags & ISLASTCN) &&
211 			    (cnp->cn_nameiop == DELETE ||
212 			    cnp->cn_nameiop == RENAME)) {
213 				if ((dnode->tn_mode & S_ISTXT) != 0 &&
214 				    kauth_authorize_generic(cnp->cn_cred,
215 				     KAUTH_GENERIC_ISSUSER, NULL) != 0 &&
216 				    kauth_cred_geteuid(cnp->cn_cred) != dnode->tn_uid &&
217 				    kauth_cred_geteuid(cnp->cn_cred) != tnode->tn_uid)
218 					return EPERM;
219 				error = VOP_ACCESS(dvp, VWRITE, cnp->cn_cred);
220 				if (error != 0)
221 					goto out;
222 			} else
223 				de = NULL;
224 
225 			/* Allocate a new vnode on the matching entry. */
226 			error = tmpfs_alloc_vp(dvp->v_mount, tnode, vpp);
227 		}
228 	}
229 
230 	/* Store the result of this lookup in the cache.  Avoid this if the
231 	 * request was for creation, as it does not improve timings on
232 	 * emprical tests. */
233 	if ((cnp->cn_flags & MAKEENTRY) && cnp->cn_nameiop != CREATE &&
234 	    (cnp->cn_flags & ISDOTDOT) == 0)
235 		cache_enter(dvp, *vpp, cnp);
236 
237 out:
238 	/* If there were no errors, *vpp cannot be null and it must be
239 	 * locked. */
240 	KASSERT(IFF(error == 0, *vpp != NULL && VOP_ISLOCKED(*vpp)));
241 
242 	/* dvp must always be locked. */
243 	KASSERT(VOP_ISLOCKED(dvp));
244 
245 	return error;
246 }
247 
248 /* --------------------------------------------------------------------- */
249 
250 int
251 tmpfs_create(void *v)
252 {
253 	struct vnode *dvp = ((struct vop_create_args *)v)->a_dvp;
254 	struct vnode **vpp = ((struct vop_create_args *)v)->a_vpp;
255 	struct componentname *cnp = ((struct vop_create_args *)v)->a_cnp;
256 	struct vattr *vap = ((struct vop_create_args *)v)->a_vap;
257 
258 	KASSERT(vap->va_type == VREG || vap->va_type == VSOCK);
259 
260 	return tmpfs_alloc_file(dvp, vpp, vap, cnp, NULL);
261 }
262 /* --------------------------------------------------------------------- */
263 
264 int
265 tmpfs_mknod(void *v)
266 {
267 	struct vnode *dvp = ((struct vop_mknod_args *)v)->a_dvp;
268 	struct vnode **vpp = ((struct vop_mknod_args *)v)->a_vpp;
269 	struct componentname *cnp = ((struct vop_mknod_args *)v)->a_cnp;
270 	struct vattr *vap = ((struct vop_mknod_args *)v)->a_vap;
271 
272 	if (vap->va_type != VBLK && vap->va_type != VCHR &&
273 	    vap->va_type != VFIFO) {
274 		vput(dvp);
275 		return EINVAL;
276 	}
277 
278 	return tmpfs_alloc_file(dvp, vpp, vap, cnp, NULL);
279 }
280 
281 /* --------------------------------------------------------------------- */
282 
283 int
284 tmpfs_open(void *v)
285 {
286 	struct vnode *vp = ((struct vop_open_args *)v)->a_vp;
287 	int mode = ((struct vop_open_args *)v)->a_mode;
288 
289 	int error;
290 	struct tmpfs_node *node;
291 
292 	KASSERT(VOP_ISLOCKED(vp));
293 
294 	node = VP_TO_TMPFS_NODE(vp);
295 
296 	/* The file is still active but all its names have been removed
297 	 * (e.g. by a "rmdir $(pwd)").  It cannot be opened any more as
298 	 * it is about to die. */
299 	if (node->tn_links < 1) {
300 		error = ENOENT;
301 		goto out;
302 	}
303 
304 	/* If the file is marked append-only, deny write requests. */
305 	if (node->tn_flags & APPEND && (mode & (FWRITE | O_APPEND)) == FWRITE)
306 		error = EPERM;
307 	else
308 		error = 0;
309 
310 out:
311 	KASSERT(VOP_ISLOCKED(vp));
312 
313 	return error;
314 }
315 
316 /* --------------------------------------------------------------------- */
317 
318 int
319 tmpfs_close(void *v)
320 {
321 	struct vnode *vp = ((struct vop_close_args *)v)->a_vp;
322 
323 	struct tmpfs_node *node;
324 
325 	KASSERT(VOP_ISLOCKED(vp));
326 
327 	node = VP_TO_TMPFS_NODE(vp);
328 
329 	if (node->tn_links > 0) {
330 		/* Update node times.  No need to do it if the node has
331 		 * been deleted, because it will vanish after we return. */
332 		tmpfs_update(vp, NULL, NULL, NULL, UPDATE_CLOSE);
333 	}
334 
335 	return 0;
336 }
337 
338 /* --------------------------------------------------------------------- */
339 
340 int
341 tmpfs_access(void *v)
342 {
343 	struct vnode *vp = ((struct vop_access_args *)v)->a_vp;
344 	int mode = ((struct vop_access_args *)v)->a_mode;
345 	kauth_cred_t cred = ((struct vop_access_args *)v)->a_cred;
346 
347 	int error;
348 	struct tmpfs_node *node;
349 
350 	KASSERT(VOP_ISLOCKED(vp));
351 
352 	node = VP_TO_TMPFS_NODE(vp);
353 
354 	switch (vp->v_type) {
355 	case VDIR:
356 		/* FALLTHROUGH */
357 	case VLNK:
358 		/* FALLTHROUGH */
359 	case VREG:
360 		if (mode & VWRITE && vp->v_mount->mnt_flag & MNT_RDONLY) {
361 			error = EROFS;
362 			goto out;
363 		}
364 		break;
365 
366 	case VBLK:
367 		/* FALLTHROUGH */
368 	case VCHR:
369 		/* FALLTHROUGH */
370 	case VSOCK:
371 		/* FALLTHROUGH */
372 	case VFIFO:
373 		break;
374 
375 	default:
376 		error = EINVAL;
377 		goto out;
378 	}
379 
380 	if (mode & VWRITE && node->tn_flags & IMMUTABLE) {
381 		error = EPERM;
382 		goto out;
383 	}
384 
385 	error = vaccess(vp->v_type, node->tn_mode, node->tn_uid,
386 	    node->tn_gid, mode, cred);
387 
388 out:
389 	KASSERT(VOP_ISLOCKED(vp));
390 
391 	return error;
392 }
393 
394 /* --------------------------------------------------------------------- */
395 
396 int
397 tmpfs_getattr(void *v)
398 {
399 	struct vnode *vp = ((struct vop_getattr_args *)v)->a_vp;
400 	struct vattr *vap = ((struct vop_getattr_args *)v)->a_vap;
401 
402 	struct tmpfs_node *node;
403 
404 	node = VP_TO_TMPFS_NODE(vp);
405 
406 	VATTR_NULL(vap);
407 
408 	tmpfs_itimes(vp, NULL, NULL, NULL);
409 
410 	vap->va_type = vp->v_type;
411 	vap->va_mode = node->tn_mode;
412 	vap->va_nlink = node->tn_links;
413 	vap->va_uid = node->tn_uid;
414 	vap->va_gid = node->tn_gid;
415 	vap->va_fsid = vp->v_mount->mnt_stat.f_fsidx.__fsid_val[0];
416 	vap->va_fileid = node->tn_id;
417 	vap->va_size = node->tn_size;
418 	vap->va_blocksize = PAGE_SIZE;
419 	vap->va_atime = node->tn_atime;
420 	vap->va_mtime = node->tn_mtime;
421 	vap->va_ctime = node->tn_ctime;
422 	vap->va_birthtime = node->tn_birthtime;
423 	vap->va_gen = node->tn_gen;
424 	vap->va_flags = node->tn_flags;
425 	vap->va_rdev = (vp->v_type == VBLK || vp->v_type == VCHR) ?
426 		node->tn_spec.tn_dev.tn_rdev : VNOVAL;
427 	vap->va_bytes = round_page(node->tn_size);
428 	vap->va_filerev = VNOVAL;
429 	vap->va_vaflags = 0;
430 	vap->va_spare = VNOVAL; /* XXX */
431 
432 	return 0;
433 }
434 
435 /* --------------------------------------------------------------------- */
436 
437 #define GOODTIME(tv)	((tv)->tv_sec != VNOVAL || (tv)->tv_nsec != VNOVAL)
438 /* XXX Should this operation be atomic?  I think it should, but code in
439  * XXX other places (e.g., ufs) doesn't seem to be... */
440 int
441 tmpfs_setattr(void *v)
442 {
443 	struct vnode *vp = ((struct vop_setattr_args *)v)->a_vp;
444 	struct vattr *vap = ((struct vop_setattr_args *)v)->a_vap;
445 	kauth_cred_t cred = ((struct vop_setattr_args *)v)->a_cred;
446 	struct lwp *l = curlwp;
447 
448 	int error;
449 
450 	KASSERT(VOP_ISLOCKED(vp));
451 
452 	error = 0;
453 
454 	/* Abort if any unsettable attribute is given. */
455 	if (vap->va_type != VNON ||
456 	    vap->va_nlink != VNOVAL ||
457 	    vap->va_fsid != VNOVAL ||
458 	    vap->va_fileid != VNOVAL ||
459 	    vap->va_blocksize != VNOVAL ||
460 	    GOODTIME(&vap->va_ctime) ||
461 	    vap->va_gen != VNOVAL ||
462 	    vap->va_rdev != VNOVAL ||
463 	    vap->va_bytes != VNOVAL)
464 		error = EINVAL;
465 
466 	if (error == 0 && (vap->va_flags != VNOVAL))
467 		error = tmpfs_chflags(vp, vap->va_flags, cred, l);
468 
469 	if (error == 0 && (vap->va_size != VNOVAL))
470 		error = tmpfs_chsize(vp, vap->va_size, cred, l);
471 
472 	if (error == 0 && (vap->va_uid != VNOVAL || vap->va_gid != VNOVAL))
473 		error = tmpfs_chown(vp, vap->va_uid, vap->va_gid, cred, l);
474 
475 	if (error == 0 && (vap->va_mode != VNOVAL))
476 		error = tmpfs_chmod(vp, vap->va_mode, cred, l);
477 
478 	if (error == 0 && (GOODTIME(&vap->va_atime) || GOODTIME(&vap->va_mtime)
479 	    || GOODTIME(&vap->va_birthtime)))
480 		if ((error = tmpfs_chtimes(vp, &vap->va_atime, &vap->va_mtime,
481 		    &vap->va_birthtime, vap->va_vaflags, cred, l)) == 0)
482 			return 0;
483 
484 	/* Update the node times.  We give preference to the error codes
485 	 * generated by this function rather than the ones that may arise
486 	 * from tmpfs_update. */
487 	tmpfs_update(vp, NULL, NULL, NULL, 0);
488 
489 	KASSERT(VOP_ISLOCKED(vp));
490 
491 	return error;
492 }
493 
494 /* --------------------------------------------------------------------- */
495 
496 int
497 tmpfs_read(void *v)
498 {
499 	struct vnode *vp = ((struct vop_read_args *)v)->a_vp;
500 	struct uio *uio = ((struct vop_read_args *)v)->a_uio;
501 	int ioflag = ((struct vop_read_args *)v)->a_ioflag;
502 
503 	int error;
504 	struct tmpfs_node *node;
505 	struct uvm_object *uobj;
506 
507 	KASSERT(VOP_ISLOCKED(vp));
508 
509 	node = VP_TO_TMPFS_NODE(vp);
510 
511 	if (vp->v_type != VREG) {
512 		error = EISDIR;
513 		goto out;
514 	}
515 
516 	if (uio->uio_offset < 0) {
517 		error = EINVAL;
518 		goto out;
519 	}
520 
521 	node->tn_status |= TMPFS_NODE_ACCESSED;
522 
523 	uobj = node->tn_spec.tn_reg.tn_aobj;
524 	error = 0;
525 	while (error == 0 && uio->uio_resid > 0) {
526 		vsize_t len;
527 
528 		if (node->tn_size <= uio->uio_offset)
529 			break;
530 
531 		len = MIN(node->tn_size - uio->uio_offset, uio->uio_resid);
532 		if (len == 0)
533 			break;
534 
535 		error = ubc_uiomove(uobj, uio, len, IO_ADV_DECODE(ioflag),
536 		    UBC_READ | UBC_PARTIALOK | UBC_UNMAP_FLAG(vp));
537 	}
538 
539 out:
540 	KASSERT(VOP_ISLOCKED(vp));
541 
542 	return error;
543 }
544 
545 /* --------------------------------------------------------------------- */
546 
547 int
548 tmpfs_write(void *v)
549 {
550 	struct vnode *vp = ((struct vop_write_args *)v)->a_vp;
551 	struct uio *uio = ((struct vop_write_args *)v)->a_uio;
552 	int ioflag = ((struct vop_write_args *)v)->a_ioflag;
553 
554 	bool extended;
555 	int error;
556 	off_t oldsize;
557 	struct tmpfs_node *node;
558 	struct uvm_object *uobj;
559 
560 	KASSERT(VOP_ISLOCKED(vp));
561 
562 	node = VP_TO_TMPFS_NODE(vp);
563 	oldsize = node->tn_size;
564 
565 	if (uio->uio_offset < 0 || vp->v_type != VREG) {
566 		error = EINVAL;
567 		goto out;
568 	}
569 
570 	if (uio->uio_resid == 0) {
571 		error = 0;
572 		goto out;
573 	}
574 
575 	if (ioflag & IO_APPEND)
576 		uio->uio_offset = node->tn_size;
577 
578 	extended = uio->uio_offset + uio->uio_resid > node->tn_size;
579 	if (extended) {
580 		error = tmpfs_reg_resize(vp, uio->uio_offset + uio->uio_resid);
581 		if (error != 0)
582 			goto out;
583 	}
584 
585 	uobj = node->tn_spec.tn_reg.tn_aobj;
586 	error = 0;
587 	while (error == 0 && uio->uio_resid > 0) {
588 		vsize_t len;
589 
590 		len = MIN(node->tn_size - uio->uio_offset, uio->uio_resid);
591 		if (len == 0)
592 			break;
593 
594 		error = ubc_uiomove(uobj, uio, len, IO_ADV_DECODE(ioflag),
595 		    UBC_WRITE | UBC_UNMAP_FLAG(vp));
596 	}
597 
598 	node->tn_status |= TMPFS_NODE_ACCESSED | TMPFS_NODE_MODIFIED |
599 	    (extended ? TMPFS_NODE_CHANGED : 0);
600 
601 	if (error != 0)
602 		(void)tmpfs_reg_resize(vp, oldsize);
603 
604 	VN_KNOTE(vp, NOTE_WRITE);
605 
606 out:
607 	KASSERT(VOP_ISLOCKED(vp));
608 	KASSERT(IMPLIES(error == 0, uio->uio_resid == 0));
609 	KASSERT(IMPLIES(error != 0, oldsize == node->tn_size));
610 
611 	return error;
612 }
613 
614 /* --------------------------------------------------------------------- */
615 
616 int
617 tmpfs_fsync(void *v)
618 {
619 	struct vnode *vp = ((struct vop_fsync_args *)v)->a_vp;
620 
621 	KASSERT(VOP_ISLOCKED(vp));
622 
623 	tmpfs_update(vp, NULL, NULL, NULL, 0);
624 
625 	return 0;
626 }
627 
628 /* --------------------------------------------------------------------- */
629 
630 int
631 tmpfs_remove(void *v)
632 {
633 	struct vnode *dvp = ((struct vop_remove_args *)v)->a_dvp;
634 	struct vnode *vp = ((struct vop_remove_args *)v)->a_vp;
635 	struct componentname *cnp = (((struct vop_remove_args *)v)->a_cnp);
636 
637 	int error;
638 	struct tmpfs_dirent *de;
639 	struct tmpfs_mount *tmp;
640 	struct tmpfs_node *dnode;
641 	struct tmpfs_node *node;
642 
643 	KASSERT(VOP_ISLOCKED(dvp));
644 	KASSERT(VOP_ISLOCKED(vp));
645 
646 	if (vp->v_type == VDIR) {
647 		error = EPERM;
648 		goto out;
649 	}
650 
651 	dnode = VP_TO_TMPFS_DIR(dvp);
652 	node = VP_TO_TMPFS_NODE(vp);
653 	tmp = VFS_TO_TMPFS(vp->v_mount);
654 	de = tmpfs_dir_lookup(dnode, cnp);
655 	if (de == NULL) {
656 		error = ENOENT;
657 		goto out;
658 	}
659 	KASSERT(de->td_node == node);
660 
661 	/* Files marked as immutable or append-only cannot be deleted. */
662 	if (node->tn_flags & (IMMUTABLE | APPEND)) {
663 		error = EPERM;
664 		goto out;
665 	}
666 
667 	/* Remove the entry from the directory; as it is a file, we do not
668 	 * have to change the number of hard links of the directory. */
669 	tmpfs_dir_detach(dvp, de);
670 
671 	/* Free the directory entry we just deleted.  Note that the node
672 	 * referred by it will not be removed until the vnode is really
673 	 * reclaimed. */
674 	tmpfs_free_dirent(tmp, de, true);
675 
676 	error = 0;
677 
678 out:
679 	vput(vp);
680 	if (dvp == vp)
681 		vrele(dvp);
682 	else
683 		vput(dvp);
684 
685 	return error;
686 }
687 
688 /* --------------------------------------------------------------------- */
689 
690 int
691 tmpfs_link(void *v)
692 {
693 	struct vnode *dvp = ((struct vop_link_args *)v)->a_dvp;
694 	struct vnode *vp = ((struct vop_link_args *)v)->a_vp;
695 	struct componentname *cnp = ((struct vop_link_args *)v)->a_cnp;
696 
697 	int error;
698 	struct tmpfs_dirent *de;
699 	struct tmpfs_node *dnode;
700 	struct tmpfs_node *node;
701 
702 	KASSERT(VOP_ISLOCKED(dvp));
703 	KASSERT(cnp->cn_flags & HASBUF);
704 	KASSERT(dvp != vp); /* XXX When can this be false? */
705 
706 	dnode = VP_TO_TMPFS_DIR(dvp);
707 	node = VP_TO_TMPFS_NODE(vp);
708 
709 	/* Lock vp because we will need to run tmpfs_update over it, which
710 	 * needs the vnode to be locked. */
711 	error = vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
712 	if (error != 0)
713 		goto out1;
714 
715 	/* XXX: Why aren't the following two tests done by the caller? */
716 
717 	/* Hard links of directories are forbidden. */
718 	if (vp->v_type == VDIR) {
719 		error = EPERM;
720 		goto out;
721 	}
722 
723 	/* Cannot create cross-device links. */
724 	if (dvp->v_mount != vp->v_mount) {
725 		error = EXDEV;
726 		goto out;
727 	}
728 
729 	/* Ensure that we do not overflow the maximum number of links imposed
730 	 * by the system. */
731 	KASSERT(node->tn_links <= LINK_MAX);
732 	if (node->tn_links == LINK_MAX) {
733 		error = EMLINK;
734 		goto out;
735 	}
736 
737 	/* We cannot create links of files marked immutable or append-only. */
738 	if (node->tn_flags & (IMMUTABLE | APPEND)) {
739 		error = EPERM;
740 		goto out;
741 	}
742 
743 	/* Allocate a new directory entry to represent the node. */
744 	error = tmpfs_alloc_dirent(VFS_TO_TMPFS(vp->v_mount), node,
745 	    cnp->cn_nameptr, cnp->cn_namelen, &de);
746 	if (error != 0)
747 		goto out;
748 
749 	/* Insert the new directory entry into the appropriate directory. */
750 	tmpfs_dir_attach(dvp, de);
751 
752 	/* vp link count has changed, so update node times. */
753 	node->tn_status |= TMPFS_NODE_CHANGED;
754 	tmpfs_update(vp, NULL, NULL, NULL, 0);
755 
756 	error = 0;
757 
758 out:
759 	VOP_UNLOCK(vp, 0);
760 out1:
761 	PNBUF_PUT(cnp->cn_pnbuf);
762 
763 	vput(dvp);
764 
765 	return error;
766 }
767 
768 /* --------------------------------------------------------------------- */
769 
770 int
771 tmpfs_rename(void *v)
772 {
773 	struct vnode *fdvp = ((struct vop_rename_args *)v)->a_fdvp;
774 	struct vnode *fvp = ((struct vop_rename_args *)v)->a_fvp;
775 	struct componentname *fcnp = ((struct vop_rename_args *)v)->a_fcnp;
776 	struct vnode *tdvp = ((struct vop_rename_args *)v)->a_tdvp;
777 	struct vnode *tvp = ((struct vop_rename_args *)v)->a_tvp;
778 	struct componentname *tcnp = ((struct vop_rename_args *)v)->a_tcnp;
779 
780 	char *newname;
781 	int error;
782 	struct tmpfs_dirent *de, *de2;
783 	struct tmpfs_mount *tmp;
784 	struct tmpfs_node *fdnode;
785 	struct tmpfs_node *fnode;
786 	struct tmpfs_node *tnode;
787 	struct tmpfs_node *tdnode;
788 	size_t namelen;
789 
790 	KASSERT(VOP_ISLOCKED(tdvp));
791 	KASSERT(IMPLIES(tvp != NULL, VOP_ISLOCKED(tvp) == LK_EXCLUSIVE));
792 	KASSERT(fcnp->cn_flags & HASBUF);
793 	KASSERT(tcnp->cn_flags & HASBUF);
794 
795 	newname = NULL;
796 	namelen = 0;
797 	tmp = NULL;
798 
799 	/* Disallow cross-device renames. */
800 	if (fvp->v_mount != tdvp->v_mount ||
801 	    (tvp != NULL && fvp->v_mount != tvp->v_mount)) {
802 		error = EXDEV;
803 		goto out_unlocked;
804 	}
805 
806 	fnode = VP_TO_TMPFS_NODE(fvp);
807 	fdnode = VP_TO_TMPFS_DIR(fdvp);
808 	tnode = (tvp == NULL) ? NULL : VP_TO_TMPFS_NODE(tvp);
809 	tdnode = VP_TO_TMPFS_DIR(tdvp);
810 	tmp = VFS_TO_TMPFS(tdvp->v_mount);
811 
812 	if (fdvp == tvp) {
813 		error = 0;
814 		goto out_unlocked;
815 	}
816 
817 	/* If we need to move the directory between entries, lock the
818 	 * source so that we can safely operate on it. */
819 
820 	/* XXX: this is a potential locking order violation! */
821 	if (fdnode != tdnode) {
822 		error = vn_lock(fdvp, LK_EXCLUSIVE | LK_RETRY);
823 		if (error != 0)
824 			goto out_unlocked;
825 	}
826 
827 	de = tmpfs_dir_lookup(fdnode, fcnp);
828 	if (de == NULL) {
829 		error = ENOENT;
830 		goto out;
831 	}
832 	KASSERT(de->td_node == fnode);
833 
834 	/* If source and target are the same file, there is nothing to do. */
835 	if (fvp == tvp) {
836 		error = 0;
837 		goto out;
838 	}
839 
840 	/* Avoid manipulating '.' and '..' entries. */
841 	if (de == NULL) {
842 		KASSERT(fvp->v_type == VDIR);
843 		error = EINVAL;
844 		goto out;
845 	}
846 	KASSERT(de->td_node == fnode);
847 
848 	/* If replacing an existing entry, ensure we can do the operation. */
849 	if (tvp != NULL) {
850 		KASSERT(tnode != NULL);
851 		if (fnode->tn_type == VDIR && tnode->tn_type == VDIR) {
852 			if (tnode->tn_size > 0) {
853 				error = ENOTEMPTY;
854 				goto out;
855 			}
856 		} else if (fnode->tn_type == VDIR && tnode->tn_type != VDIR) {
857 			error = ENOTDIR;
858 			goto out;
859 		} else if (fnode->tn_type != VDIR && tnode->tn_type == VDIR) {
860 			error = EISDIR;
861 			goto out;
862 		} else {
863 			KASSERT(fnode->tn_type != VDIR &&
864 			        tnode->tn_type != VDIR);
865 		}
866 	}
867 
868 	/* Ensure that we have enough memory to hold the new name, if it
869 	 * has to be changed. */
870 	namelen = tcnp->cn_namelen;
871 	if (fcnp->cn_namelen != tcnp->cn_namelen ||
872 	    memcmp(fcnp->cn_nameptr, tcnp->cn_nameptr, fcnp->cn_namelen) != 0) {
873 		newname = tmpfs_str_pool_get(&tmp->tm_str_pool, namelen, 0);
874 		if (newname == NULL) {
875 			error = ENOSPC;
876 			goto out;
877 		}
878 	}
879 
880 	/* If the node is being moved to another directory, we have to do
881 	 * the move. */
882 	if (fdnode != tdnode) {
883 		/* In case we are moving a directory, we have to adjust its
884 		 * parent to point to the new parent. */
885 		if (de->td_node->tn_type == VDIR) {
886 			struct tmpfs_node *n;
887 
888 			/* Ensure the target directory is not a child of the
889 			 * directory being moved.  Otherwise, we'd end up
890 			 * with stale nodes. */
891 			n = tdnode;
892 			while (n != n->tn_spec.tn_dir.tn_parent) {
893 				if (n == fnode) {
894 					error = EINVAL;
895 					goto out;
896 				}
897 				n = n->tn_spec.tn_dir.tn_parent;
898 			}
899 
900 			/* Adjust the parent pointer. */
901 			TMPFS_VALIDATE_DIR(fnode);
902 			de->td_node->tn_spec.tn_dir.tn_parent = tdnode;
903 
904 			/* As a result of changing the target of the '..'
905 			 * entry, the link count of the source and target
906 			 * directories has to be adjusted. */
907 			fdnode->tn_links--;
908 			tdnode->tn_links++;
909 		}
910 
911 		/* Do the move: just remove the entry from the source directory
912 		 * and insert it into the target one. */
913 		tmpfs_dir_detach(fdvp, de);
914 		tmpfs_dir_attach(tdvp, de);
915 
916 		/* Notify listeners of fdvp about the change in the directory.
917 		 * We can do it at this point because we aren't touching fdvp
918 		 * any more below. */
919 		VN_KNOTE(fdvp, NOTE_WRITE);
920 	}
921 
922 	/* If we are overwriting an entry, we have to remove the old one
923 	 * from the target directory. */
924 	if (tvp != NULL) {
925 		KASSERT(tnode != NULL);
926 
927 		/* Remove the old entry from the target directory.
928 		 * Note! This relies on tmpfs_dir_attach() putting the new
929 		 * node on the end of the target's node list. */
930 		de2 = tmpfs_dir_lookup(tdnode, tcnp);
931 		KASSERT(de2 != NULL);
932 		KASSERT(de2->td_node == tnode);
933 		tmpfs_dir_detach(tdvp, de2);
934 
935 		/* Free the directory entry we just deleted.  Note that the
936 		 * node referred by it will not be removed until the vnode is
937 		 * really reclaimed. */
938 		tmpfs_free_dirent(VFS_TO_TMPFS(tvp->v_mount), de2, true);
939 	}
940 
941 	/* If the name has changed, we need to make it effective by changing
942 	 * it in the directory entry. */
943 	if (newname != NULL) {
944 		KASSERT(tcnp->cn_namelen < MAXNAMLEN);
945 		KASSERT(tcnp->cn_namelen < 0xffff);
946 
947 		tmpfs_str_pool_put(&tmp->tm_str_pool, de->td_name,
948 		    de->td_namelen);
949 		de->td_namelen = (uint16_t)namelen;
950 		memcpy(newname, tcnp->cn_nameptr, namelen);
951 		de->td_name = newname;
952 		newname = NULL;
953 
954 		fnode->tn_status |= TMPFS_NODE_CHANGED;
955 		tdnode->tn_status |= TMPFS_NODE_MODIFIED;
956 	}
957 
958 	/* Notify listeners of tdvp about the change in the directory (either
959 	 * because a new entry was added or because one was removed) and
960 	 * listeners of fvp about the rename. */
961 	VN_KNOTE(tdvp, NOTE_WRITE);
962 	VN_KNOTE(fvp, NOTE_RENAME);
963 
964 	error = 0;
965 
966  out:
967 	if (fdnode != tdnode)
968 		VOP_UNLOCK(fdvp, 0);
969 
970  out_unlocked:
971 	/* Release target nodes. */
972 	if (tdvp == tvp)
973 		vrele(tdvp);
974 	else
975 		vput(tdvp);
976 	if (tvp != NULL)
977 		vput(tvp);
978 
979 	/* Release source nodes. */
980 	vrele(fdvp);
981 	vrele(fvp);
982 
983 	if (newname != NULL)
984 		tmpfs_str_pool_put(&tmp->tm_str_pool, newname, namelen);
985 
986 	return error;
987 }
988 
989 /* --------------------------------------------------------------------- */
990 
991 int
992 tmpfs_mkdir(void *v)
993 {
994 	struct vnode *dvp = ((struct vop_mkdir_args *)v)->a_dvp;
995 	struct vnode **vpp = ((struct vop_mkdir_args *)v)->a_vpp;
996 	struct componentname *cnp = ((struct vop_mkdir_args *)v)->a_cnp;
997 	struct vattr *vap = ((struct vop_mkdir_args *)v)->a_vap;
998 
999 	KASSERT(vap->va_type == VDIR);
1000 
1001 	return tmpfs_alloc_file(dvp, vpp, vap, cnp, NULL);
1002 }
1003 
1004 /* --------------------------------------------------------------------- */
1005 
1006 int
1007 tmpfs_rmdir(void *v)
1008 {
1009 	struct vnode *dvp = ((struct vop_rmdir_args *)v)->a_dvp;
1010 	struct vnode *vp = ((struct vop_rmdir_args *)v)->a_vp;
1011 	struct componentname *cnp = ((struct vop_rmdir_args *)v)->a_cnp;
1012 
1013 	int error;
1014 	struct tmpfs_dirent *de;
1015 	struct tmpfs_mount *tmp;
1016 	struct tmpfs_node *dnode;
1017 	struct tmpfs_node *node;
1018 
1019 	KASSERT(VOP_ISLOCKED(dvp));
1020 	KASSERT(VOP_ISLOCKED(vp));
1021 
1022 	tmp = VFS_TO_TMPFS(dvp->v_mount);
1023 	dnode = VP_TO_TMPFS_DIR(dvp);
1024 	node = VP_TO_TMPFS_DIR(vp);
1025 	error = 0;
1026 
1027 	/* Directories with more than two entries ('.' and '..') cannot be
1028 	 * removed. */
1029 	if (node->tn_size > 0) {
1030 		error = ENOTEMPTY;
1031 		goto out;
1032 	}
1033 
1034 	/* This invariant holds only if we are not trying to remove "..".
1035 	 * We checked for that above so this is safe now. */
1036 	KASSERT(node->tn_spec.tn_dir.tn_parent == dnode);
1037 
1038 	/* Get the directory entry associated with node (vp). */
1039 	de = tmpfs_dir_lookup(dnode, cnp);
1040 	if (de == NULL) {
1041 		error = ENOENT;
1042 		goto out;
1043 	}
1044 	KASSERT(de->td_node == node);
1045 
1046 	/* Check flags to see if we are allowed to remove the directory. */
1047 	if (dnode->tn_flags & APPEND || node->tn_flags & (IMMUTABLE | APPEND)) {
1048 		error = EPERM;
1049 		goto out;
1050 	}
1051 
1052 	/* Detach the directory entry from the directory (dnode). */
1053 	tmpfs_dir_detach(dvp, de);
1054 
1055 	node->tn_links--;
1056 	node->tn_status |= TMPFS_NODE_ACCESSED | TMPFS_NODE_CHANGED | \
1057 	    TMPFS_NODE_MODIFIED;
1058 	node->tn_spec.tn_dir.tn_parent->tn_links--;
1059 	node->tn_spec.tn_dir.tn_parent->tn_status |= TMPFS_NODE_ACCESSED | \
1060 	    TMPFS_NODE_CHANGED | TMPFS_NODE_MODIFIED;
1061 
1062 	/* Release the parent. */
1063 	cache_purge(dvp); /* XXX Is this needed? */
1064 
1065 	/* Free the directory entry we just deleted.  Note that the node
1066 	 * referred by it will not be removed until the vnode is really
1067 	 * reclaimed. */
1068 	tmpfs_free_dirent(tmp, de, true);
1069 
1070 	KASSERT(node->tn_links == 0);
1071  out:
1072 	/* Release the nodes. */
1073 	vput(dvp);
1074 	vput(vp);
1075 
1076 	return error;
1077 }
1078 
1079 /* --------------------------------------------------------------------- */
1080 
1081 int
1082 tmpfs_symlink(void *v)
1083 {
1084 	struct vnode *dvp = ((struct vop_symlink_args *)v)->a_dvp;
1085 	struct vnode **vpp = ((struct vop_symlink_args *)v)->a_vpp;
1086 	struct componentname *cnp = ((struct vop_symlink_args *)v)->a_cnp;
1087 	struct vattr *vap = ((struct vop_symlink_args *)v)->a_vap;
1088 	char *target = ((struct vop_symlink_args *)v)->a_target;
1089 
1090 	KASSERT(vap->va_type == VLNK);
1091 
1092 	return tmpfs_alloc_file(dvp, vpp, vap, cnp, target);
1093 }
1094 
1095 /* --------------------------------------------------------------------- */
1096 
1097 int
1098 tmpfs_readdir(void *v)
1099 {
1100 	struct vnode *vp = ((struct vop_readdir_args *)v)->a_vp;
1101 	struct uio *uio = ((struct vop_readdir_args *)v)->a_uio;
1102 	int *eofflag = ((struct vop_readdir_args *)v)->a_eofflag;
1103 	off_t **cookies = ((struct vop_readdir_args *)v)->a_cookies;
1104 	int *ncookies = ((struct vop_readdir_args *)v)->a_ncookies;
1105 
1106 	int error;
1107 	off_t startoff;
1108 	off_t cnt;
1109 	struct tmpfs_node *node;
1110 
1111 	KASSERT(VOP_ISLOCKED(vp));
1112 
1113 	/* This operation only makes sense on directory nodes. */
1114 	if (vp->v_type != VDIR) {
1115 		error = ENOTDIR;
1116 		goto out;
1117 	}
1118 
1119 	node = VP_TO_TMPFS_DIR(vp);
1120 
1121 	startoff = uio->uio_offset;
1122 
1123 	cnt = 0;
1124 	if (uio->uio_offset == TMPFS_DIRCOOKIE_DOT) {
1125 		error = tmpfs_dir_getdotdent(node, uio);
1126 		if (error == -1) {
1127 			error = 0;
1128 			goto outok;
1129 		} else if (error != 0)
1130 			goto outok;
1131 		cnt++;
1132 	}
1133 
1134 	if (uio->uio_offset == TMPFS_DIRCOOKIE_DOTDOT) {
1135 		error = tmpfs_dir_getdotdotdent(node, uio);
1136 		if (error == -1) {
1137 			error = 0;
1138 			goto outok;
1139 		} else if (error != 0)
1140 			goto outok;
1141 		cnt++;
1142 	}
1143 
1144 	error = tmpfs_dir_getdents(node, uio, &cnt);
1145 	if (error == -1)
1146 		error = 0;
1147 	KASSERT(error >= 0);
1148 
1149 outok:
1150 	/* This label assumes that startoff has been
1151 	 * initialized.  If the compiler didn't spit out warnings, we'd
1152 	 * simply make this one be 'out' and drop 'outok'. */
1153 
1154 	if (eofflag != NULL)
1155 		*eofflag =
1156 		    (error == 0 && uio->uio_offset == TMPFS_DIRCOOKIE_EOF);
1157 
1158 	/* Update NFS-related variables. */
1159 	if (error == 0 && cookies != NULL && ncookies != NULL) {
1160 		off_t i;
1161 		off_t off = startoff;
1162 		struct tmpfs_dirent *de = NULL;
1163 
1164 		*ncookies = cnt;
1165 		*cookies = malloc(cnt * sizeof(off_t), M_TEMP, M_WAITOK);
1166 
1167 		for (i = 0; i < cnt; i++) {
1168 			KASSERT(off != TMPFS_DIRCOOKIE_EOF);
1169 			if (off == TMPFS_DIRCOOKIE_DOT) {
1170 				off = TMPFS_DIRCOOKIE_DOTDOT;
1171 			} else {
1172 				if (off == TMPFS_DIRCOOKIE_DOTDOT) {
1173 					de = TAILQ_FIRST(&node->tn_spec.
1174 					    tn_dir.tn_dir);
1175 				} else if (de != NULL) {
1176 					de = TAILQ_NEXT(de, td_entries);
1177 				} else {
1178 					de = tmpfs_dir_lookupbycookie(node,
1179 					    off);
1180 					KASSERT(de != NULL);
1181 					de = TAILQ_NEXT(de, td_entries);
1182 				}
1183 				if (de == NULL) {
1184 					off = TMPFS_DIRCOOKIE_EOF;
1185 				} else {
1186 					off = tmpfs_dircookie(de);
1187 				}
1188 			}
1189 
1190 			(*cookies)[i] = off;
1191 		}
1192 		KASSERT(uio->uio_offset == off);
1193 	}
1194 
1195 out:
1196 	KASSERT(VOP_ISLOCKED(vp));
1197 
1198 	return error;
1199 }
1200 
1201 /* --------------------------------------------------------------------- */
1202 
1203 int
1204 tmpfs_readlink(void *v)
1205 {
1206 	struct vnode *vp = ((struct vop_readlink_args *)v)->a_vp;
1207 	struct uio *uio = ((struct vop_readlink_args *)v)->a_uio;
1208 
1209 	int error;
1210 	struct tmpfs_node *node;
1211 
1212 	KASSERT(VOP_ISLOCKED(vp));
1213 	KASSERT(uio->uio_offset == 0);
1214 	KASSERT(vp->v_type == VLNK);
1215 
1216 	node = VP_TO_TMPFS_NODE(vp);
1217 
1218 	error = uiomove(node->tn_spec.tn_lnk.tn_link,
1219 	    MIN(node->tn_size, uio->uio_resid), uio);
1220 	node->tn_status |= TMPFS_NODE_ACCESSED;
1221 
1222 	KASSERT(VOP_ISLOCKED(vp));
1223 
1224 	return error;
1225 }
1226 
1227 /* --------------------------------------------------------------------- */
1228 
1229 int
1230 tmpfs_inactive(void *v)
1231 {
1232 	struct vnode *vp = ((struct vop_inactive_args *)v)->a_vp;
1233 
1234 	struct tmpfs_node *node;
1235 
1236 	KASSERT(VOP_ISLOCKED(vp));
1237 
1238 	node = VP_TO_TMPFS_NODE(vp);
1239 	*((struct vop_inactive_args *)v)->a_recycle = (node->tn_links == 0);
1240 	VOP_UNLOCK(vp, 0);
1241 
1242 	return 0;
1243 }
1244 
1245 /* --------------------------------------------------------------------- */
1246 
1247 int
1248 tmpfs_reclaim(void *v)
1249 {
1250 	struct vnode *vp = ((struct vop_reclaim_args *)v)->a_vp;
1251 
1252 	struct tmpfs_mount *tmp;
1253 	struct tmpfs_node *node;
1254 
1255 	node = VP_TO_TMPFS_NODE(vp);
1256 	tmp = VFS_TO_TMPFS(vp->v_mount);
1257 
1258 	cache_purge(vp);
1259 	tmpfs_free_vp(vp);
1260 
1261 	/* If the node referenced by this vnode was deleted by the user,
1262 	 * we must free its associated data structures (now that the vnode
1263 	 * is being reclaimed). */
1264 	if (node->tn_links == 0)
1265 		tmpfs_free_node(tmp, node);
1266 
1267 	KASSERT(vp->v_data == NULL);
1268 
1269 	return 0;
1270 }
1271 
1272 /* --------------------------------------------------------------------- */
1273 
1274 int
1275 tmpfs_print(void *v)
1276 {
1277 	struct vnode *vp = ((struct vop_print_args *)v)->a_vp;
1278 
1279 	struct tmpfs_node *node;
1280 
1281 	node = VP_TO_TMPFS_NODE(vp);
1282 
1283 	printf("tag VT_TMPFS, tmpfs_node %p, flags 0x%x, links %d\n",
1284 	    node, node->tn_flags, node->tn_links);
1285 	printf("\tmode 0%o, owner %d, group %d, size %" PRIdMAX
1286 	    ", status 0x%x\n",
1287 	    node->tn_mode, node->tn_uid, node->tn_gid,
1288 	    (uintmax_t)node->tn_size, node->tn_status);
1289 	if (vp->v_type == VFIFO)
1290 		fifo_printinfo(vp);
1291 	printf("\n");
1292 
1293 	return 0;
1294 }
1295 
1296 /* --------------------------------------------------------------------- */
1297 
1298 int
1299 tmpfs_pathconf(void *v)
1300 {
1301 	int name = ((struct vop_pathconf_args *)v)->a_name;
1302 	register_t *retval = ((struct vop_pathconf_args *)v)->a_retval;
1303 
1304 	int error;
1305 
1306 	error = 0;
1307 
1308 	switch (name) {
1309 	case _PC_LINK_MAX:
1310 		*retval = LINK_MAX;
1311 		break;
1312 
1313 	case _PC_NAME_MAX:
1314 		*retval = NAME_MAX;
1315 		break;
1316 
1317 	case _PC_PATH_MAX:
1318 		*retval = PATH_MAX;
1319 		break;
1320 
1321 	case _PC_PIPE_BUF:
1322 		*retval = PIPE_BUF;
1323 		break;
1324 
1325 	case _PC_CHOWN_RESTRICTED:
1326 		*retval = 1;
1327 		break;
1328 
1329 	case _PC_NO_TRUNC:
1330 		*retval = 1;
1331 		break;
1332 
1333 	case _PC_SYNC_IO:
1334 		*retval = 1;
1335 		break;
1336 
1337 	case _PC_FILESIZEBITS:
1338 		*retval = 0; /* XXX Don't know which value should I return. */
1339 		break;
1340 
1341 	default:
1342 		error = EINVAL;
1343 	}
1344 
1345 	return error;
1346 }
1347 
1348 /* --------------------------------------------------------------------- */
1349 
1350 int
1351 tmpfs_advlock(void *v)
1352 {
1353 	struct vnode *vp = ((struct vop_advlock_args *)v)->a_vp;
1354 
1355 	struct tmpfs_node *node;
1356 
1357 	node = VP_TO_TMPFS_NODE(vp);
1358 
1359 	return lf_advlock(v, &node->tn_lockf, node->tn_size);
1360 }
1361 
1362 /* --------------------------------------------------------------------- */
1363 
1364 int
1365 tmpfs_getpages(void *v)
1366 {
1367 	struct vnode *vp = ((struct vop_getpages_args *)v)->a_vp;
1368 	voff_t offset = ((struct vop_getpages_args *)v)->a_offset;
1369 	struct vm_page **m = ((struct vop_getpages_args *)v)->a_m;
1370 	int *count = ((struct vop_getpages_args *)v)->a_count;
1371 	int centeridx = ((struct vop_getpages_args *)v)->a_centeridx;
1372 	vm_prot_t access_type = ((struct vop_getpages_args *)v)->a_access_type;
1373 	int advice = ((struct vop_getpages_args *)v)->a_advice;
1374 	int flags = ((struct vop_getpages_args *)v)->a_flags;
1375 
1376 	int error;
1377 	int i;
1378 	struct tmpfs_node *node;
1379 	struct uvm_object *uobj;
1380 	int npages = *count;
1381 
1382 	KASSERT(vp->v_type == VREG);
1383 	KASSERT(mutex_owned(&vp->v_interlock));
1384 
1385 	node = VP_TO_TMPFS_NODE(vp);
1386 	uobj = node->tn_spec.tn_reg.tn_aobj;
1387 
1388 	/* We currently don't rely on PGO_PASTEOF. */
1389 
1390 	if (vp->v_size <= offset + (centeridx << PAGE_SHIFT)) {
1391 		if ((flags & PGO_LOCKED) == 0)
1392 			mutex_exit(&vp->v_interlock);
1393 		return EINVAL;
1394 	}
1395 
1396 	if (vp->v_size < offset + (npages << PAGE_SHIFT)) {
1397 		npages = (round_page(vp->v_size) - offset) >> PAGE_SHIFT;
1398 	}
1399 
1400 	if ((flags & PGO_LOCKED) != 0)
1401 		return EBUSY;
1402 
1403 	if ((flags & PGO_NOTIMESTAMP) == 0) {
1404 		if ((vp->v_mount->mnt_flag & MNT_NOATIME) == 0)
1405 			node->tn_status |= TMPFS_NODE_ACCESSED;
1406 
1407 		if ((access_type & VM_PROT_WRITE) != 0)
1408 			node->tn_status |= TMPFS_NODE_MODIFIED;
1409 	}
1410 
1411 	mutex_exit(&vp->v_interlock);
1412 
1413 	/*
1414 	 * Make sure that the array on which we will store the
1415 	 * gotten pages is clean.  Otherwise uao_get (pointed to by
1416 	 * the pgo_get below) gets confused and does not return the
1417 	 * appropriate pages.
1418 	 *
1419 	 * XXX This shall be revisited when kern/32166 is addressed
1420 	 * because the loop to clean m[i] will most likely be redundant
1421 	 * as well as the PGO_ALLPAGES flag.
1422 	 */
1423 	if (m != NULL)
1424 		for (i = 0; i < npages; i++)
1425 			m[i] = NULL;
1426 	mutex_enter(&uobj->vmobjlock);
1427 	error = (*uobj->pgops->pgo_get)(uobj, offset, m, &npages, centeridx,
1428 	    access_type, advice, flags | PGO_ALLPAGES);
1429 #if defined(DEBUG)
1430 	{
1431 		/* Make sure that all the pages we return are valid. */
1432 		int dbgi;
1433 		if (error == 0 && m != NULL)
1434 			for (dbgi = 0; dbgi < npages; dbgi++)
1435 				KASSERT(m[dbgi] != NULL);
1436 	}
1437 #endif
1438 
1439 	return error;
1440 }
1441 
1442 /* --------------------------------------------------------------------- */
1443 
1444 int
1445 tmpfs_putpages(void *v)
1446 {
1447 	struct vnode *vp = ((struct vop_putpages_args *)v)->a_vp;
1448 	voff_t offlo = ((struct vop_putpages_args *)v)->a_offlo;
1449 	voff_t offhi = ((struct vop_putpages_args *)v)->a_offhi;
1450 	int flags = ((struct vop_putpages_args *)v)->a_flags;
1451 
1452 	int error;
1453 	struct tmpfs_node *node;
1454 	struct uvm_object *uobj;
1455 
1456 	KASSERT(mutex_owned(&vp->v_interlock));
1457 
1458 	node = VP_TO_TMPFS_NODE(vp);
1459 
1460 	if (vp->v_type != VREG) {
1461 		mutex_exit(&vp->v_interlock);
1462 		return 0;
1463 	}
1464 
1465 	uobj = node->tn_spec.tn_reg.tn_aobj;
1466 	mutex_exit(&vp->v_interlock);
1467 
1468 	mutex_enter(&uobj->vmobjlock);
1469 	error = (*uobj->pgops->pgo_put)(uobj, offlo, offhi, flags);
1470 
1471 	/* XXX mtime */
1472 
1473 	return error;
1474 }
1475