2 * Copyright (c) 1982, 1986, 1989, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95
35 * $FreeBSD: src/sys/ufs/ufs/ufs_vnops.c,v 1.131.2.8 2003/01/02 17:26:19 bde Exp $
38 #include "opt_quota.h"
39 #include "opt_suiddir.h"
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/kernel.h>
45 #include <sys/fcntl.h>
50 #include <sys/namei.h>
51 #include <sys/mount.h>
52 #include <sys/unistd.h>
53 #include <sys/vnode.h>
54 #include <sys/malloc.h>
55 #include <sys/dirent.h>
56 #include <sys/lockf.h>
57 #include <sys/event.h>
60 #include <sys/file.h> /* XXX */
64 #include <vm/vm_extern.h>
66 #include <vfs/fifofs/fifo.h>
72 #include "ufs_extern.h"
73 #include "ffs_extern.h"
79 static int ufs_access (struct vop_access_args
*);
80 static int ufs_advlock (struct vop_advlock_args
*);
81 static int ufs_chmod (struct vnode
*, int, struct ucred
*);
82 static int ufs_chown (struct vnode
*, uid_t
, gid_t
, struct ucred
*);
83 static int ufs_close (struct vop_close_args
*);
84 static int ufs_create (struct vop_old_create_args
*);
85 static int ufs_getattr (struct vop_getattr_args
*);
86 static int ufs_link (struct vop_old_link_args
*);
87 static int ufs_makeinode (int mode
, struct vnode
*, struct vnode
**, struct componentname
*);
88 static int ufs_markatime (struct vop_markatime_args
*);
89 static int ufs_missingop (struct vop_generic_args
*ap
);
90 static int ufs_mkdir (struct vop_old_mkdir_args
*);
91 static int ufs_mknod (struct vop_old_mknod_args
*);
92 static int ufs_mmap (struct vop_mmap_args
*);
93 static int ufs_print (struct vop_print_args
*);
94 static int ufs_readdir (struct vop_readdir_args
*);
95 static int ufs_readlink (struct vop_readlink_args
*);
96 static int ufs_remove (struct vop_old_remove_args
*);
97 static int ufs_rename (struct vop_old_rename_args
*);
98 static int ufs_rmdir (struct vop_old_rmdir_args
*);
99 static int ufs_setattr (struct vop_setattr_args
*);
100 static int ufs_strategy (struct vop_strategy_args
*);
101 static int ufs_symlink (struct vop_old_symlink_args
*);
102 static int ufs_whiteout (struct vop_old_whiteout_args
*);
103 static int ufsfifo_close (struct vop_close_args
*);
104 static int ufsfifo_kqfilter (struct vop_kqfilter_args
*);
105 static int ufsfifo_read (struct vop_read_args
*);
106 static int ufsfifo_write (struct vop_write_args
*);
107 static int filt_ufsread (struct knote
*kn
, long hint
);
108 static int filt_ufswrite (struct knote
*kn
, long hint
);
109 static int filt_ufsvnode (struct knote
*kn
, long hint
);
110 static void filt_ufsdetach (struct knote
*kn
);
111 static int ufs_kqfilter (struct vop_kqfilter_args
*ap
);
117 #define SETHIGH(q, h) { \
120 tmp.val[_QUAD_HIGHWORD] = (h); \
123 #define SETLOW(q, l) { \
126 tmp.val[_QUAD_LOWWORD] = (l); \
129 #define VN_KNOTE(vp, b) \
130 KNOTE(&vp->v_pollinfo.vpi_kqinfo.ki_note, (b))
132 #define OFSFMT(vp) ((vp)->v_mount->mnt_maxsymlinklen <= 0)
135 * A virgin directory (no blushing please).
137 static struct dirtemplate mastertemplate
= {
138 0, 12, DT_DIR
, 1, ".",
139 0, DIRBLKSIZ
- 12, DT_DIR
, 2, ".."
141 static struct odirtemplate omastertemplate
= {
143 0, DIRBLKSIZ
- 12, 2, ".."
147 ufs_itimes(struct vnode
*vp
)
153 if ((ip
->i_flag
& (IN_ACCESS
| IN_CHANGE
| IN_UPDATE
)) == 0)
155 if ((vp
->v_type
== VBLK
|| vp
->v_type
== VCHR
) && !DOINGSOFTDEP(vp
))
156 ip
->i_flag
|= IN_LAZYMOD
;
158 ip
->i_flag
|= IN_MODIFIED
;
160 if ((vp
->v_mount
->mnt_flag
& MNT_RDONLY
) == 0) {
162 if (ip
->i_flag
& IN_ACCESS
) {
163 ip
->i_atime
= ts
.tv_sec
;
164 ip
->i_atimensec
= ts
.tv_nsec
;
166 if (ip
->i_flag
& IN_CHANGE
) {
167 ip
->i_ctime
= ts
.tv_sec
;
168 ip
->i_ctimensec
= ts
.tv_nsec
;
170 if (ip
->i_flag
& IN_UPDATE
) {
171 if (ip
->i_flag
& IN_NOCOPYWRITE
) {
172 if (vp
->v_flag
& VLASTWRITETS
) {
173 ip
->i_mtime
= vp
->v_lastwrite_ts
.tv_sec
;
175 vp
->v_lastwrite_ts
.tv_nsec
;
178 ip
->i_mtime
= ts
.tv_sec
;
179 ip
->i_mtimensec
= ts
.tv_nsec
;
184 ip
->i_flag
&= ~(IN_ACCESS
| IN_CHANGE
| IN_UPDATE
);
188 * Create a regular file
190 * ufs_create(struct vnode *a_dvp, struct vnode **a_vpp,
191 * struct componentname *a_cnp, struct vattr *a_vap)
195 ufs_create(struct vop_old_create_args
*ap
)
200 ufs_makeinode(MAKEIMODE(ap
->a_vap
->va_type
, ap
->a_vap
->va_mode
),
201 ap
->a_dvp
, ap
->a_vpp
, ap
->a_cnp
);
204 VN_KNOTE(ap
->a_dvp
, NOTE_WRITE
);
211 * ufs_mknod(struct vnode *a_dvp, struct vnode **a_vpp,
212 * struct componentname *a_cnp, struct vattr *a_vap)
217 ufs_mknod(struct vop_old_mknod_args
*ap
)
219 struct vattr
*vap
= ap
->a_vap
;
220 struct vnode
**vpp
= ap
->a_vpp
;
226 * UFS cannot represent the entire major/minor range supported by
229 if (vap
->va_rmajor
!= VNOVAL
&&
230 makeudev(vap
->va_rmajor
, vap
->va_rminor
) == NOUDEV
) {
234 /* no special directory support */
235 if (vap
->va_type
== VDIR
)
238 error
= ufs_makeinode(MAKEIMODE(vap
->va_type
, vap
->va_mode
),
239 ap
->a_dvp
, vpp
, ap
->a_cnp
);
242 VN_KNOTE(ap
->a_dvp
, NOTE_WRITE
);
244 ip
->i_flag
|= IN_ACCESS
| IN_CHANGE
| IN_UPDATE
;
245 if (vap
->va_rmajor
!= VNOVAL
) {
247 * Want to be able to use this to make badblock
248 * inodes, so don't truncate the dev number.
250 ip
->i_rdev
= makeudev(vap
->va_rmajor
, vap
->va_rminor
);
253 * Remove inode, then reload it through VFS_VGET so it is
254 * checked to see if it is an alias of an existing entry in
257 (*vpp
)->v_type
= VNON
;
258 ino
= ip
->i_number
; /* Save this before vgone() invalidates ip. */
259 vgone_vxlocked(*vpp
);
261 error
= VFS_VGET(ap
->a_dvp
->v_mount
, NULL
, ino
, vpp
);
272 * Update the times on the inode.
274 * ufs_close(struct vnode *a_vp, int a_fflag)
279 ufs_close(struct vop_close_args
*ap
)
281 struct vnode
*vp
= ap
->a_vp
;
285 return (vop_stdclose(ap
));
289 * ufs_access(struct vnode *a_vp, int a_mode, struct ucred *a_cred)
293 ufs_access(struct vop_access_args
*ap
)
295 struct vnode
*vp
= ap
->a_vp
;
296 struct inode
*ip
= VTOI(vp
);
300 if (ap
->a_mode
& VWRITE
) {
301 switch (vp
->v_type
) {
305 if ((error
= ufs_getinoquota(ip
)) != 0)
314 error
= vop_helper_access(ap
, ip
->i_uid
, ip
->i_gid
, ip
->i_mode
, 0);
319 * ufs_getattr(struct vnode *a_vp, struct vattr *a_vap)
324 ufs_getattr(struct vop_getattr_args
*ap
)
326 struct vnode
*vp
= ap
->a_vp
;
327 struct inode
*ip
= VTOI(vp
);
328 struct vattr
*vap
= ap
->a_vap
;
332 * Copy from inode table
334 vap
->va_fsid
= dev2udev(ip
->i_dev
);
335 vap
->va_fileid
= ip
->i_number
;
336 vap
->va_mode
= ip
->i_mode
& ~IFMT
;
337 vap
->va_nlink
= VFSTOUFS(vp
->v_mount
)->um_i_effnlink_valid
?
338 ip
->i_effnlink
: ip
->i_nlink
;
339 vap
->va_uid
= ip
->i_uid
;
340 vap
->va_gid
= ip
->i_gid
;
341 vap
->va_rmajor
= umajor(ip
->i_rdev
);
342 vap
->va_rminor
= uminor(ip
->i_rdev
);
343 vap
->va_size
= ip
->i_din
.di_size
;
344 vap
->va_atime
.tv_sec
= ip
->i_atime
;
345 vap
->va_atime
.tv_nsec
= ip
->i_atimensec
;
346 vap
->va_mtime
.tv_sec
= ip
->i_mtime
;
347 vap
->va_mtime
.tv_nsec
= ip
->i_mtimensec
;
348 vap
->va_ctime
.tv_sec
= ip
->i_ctime
;
349 vap
->va_ctime
.tv_nsec
= ip
->i_ctimensec
;
350 vap
->va_flags
= ip
->i_flags
;
351 vap
->va_gen
= ip
->i_gen
;
352 vap
->va_blocksize
= vp
->v_mount
->mnt_stat
.f_iosize
;
353 vap
->va_bytes
= dbtob((u_quad_t
)ip
->i_blocks
);
354 vap
->va_type
= IFTOVT(ip
->i_mode
);
355 vap
->va_filerev
= ip
->i_modrev
;
361 ufs_markatime(struct vop_markatime_args
*ap
)
363 struct vnode
*vp
= ap
->a_vp
;
364 struct inode
*ip
= VTOI(vp
);
366 if (vp
->v_mount
->mnt_flag
& MNT_RDONLY
)
368 if (vp
->v_mount
->mnt_flag
& MNT_NOATIME
)
370 ip
->i_flag
|= IN_ACCESS
;
371 VN_KNOTE(vp
, NOTE_ATTRIB
);
376 * Set attribute vnode op. called from several syscalls
378 * ufs_setattr(struct vnode *a_vp, struct vattr *a_vap,
379 * struct ucred *a_cred)
383 ufs_setattr(struct vop_setattr_args
*ap
)
385 struct vattr
*vap
= ap
->a_vap
;
386 struct vnode
*vp
= ap
->a_vp
;
387 struct inode
*ip
= VTOI(vp
);
388 struct ucred
*cred
= ap
->a_cred
;
392 * Check for unsettable attributes.
394 if ((vap
->va_type
!= VNON
) || (vap
->va_nlink
!= VNOVAL
) ||
395 (vap
->va_fsid
!= VNOVAL
) || (vap
->va_fileid
!= VNOVAL
) ||
396 (vap
->va_blocksize
!= VNOVAL
) || (vap
->va_rmajor
!= VNOVAL
) ||
397 ((int)vap
->va_bytes
!= VNOVAL
) || (vap
->va_gen
!= VNOVAL
)) {
400 if (vap
->va_flags
!= VNOVAL
) {
401 if (vp
->v_mount
->mnt_flag
& MNT_RDONLY
)
403 if (cred
->cr_uid
!= ip
->i_uid
&&
404 (error
= priv_check_cred(cred
, PRIV_VFS_SETATTR
, 0)))
407 * Note that a root chflags becomes a user chflags when
408 * we are jailed, unless the jail.chflags_allowed sysctl
411 if (cred
->cr_uid
== 0 &&
412 (!jailed(cred
) || jail_chflags_allowed
)) {
414 & (SF_NOUNLINK
| SF_IMMUTABLE
| SF_APPEND
)) &&
417 ip
->i_flags
= vap
->va_flags
;
420 & (SF_NOUNLINK
| SF_IMMUTABLE
| SF_APPEND
) ||
421 (vap
->va_flags
& UF_SETTABLE
) != vap
->va_flags
)
423 ip
->i_flags
&= SF_SETTABLE
;
424 ip
->i_flags
|= (vap
->va_flags
& UF_SETTABLE
);
426 ip
->i_flag
|= IN_CHANGE
;
427 if (vap
->va_flags
& (IMMUTABLE
| APPEND
))
430 if (ip
->i_flags
& (IMMUTABLE
| APPEND
))
433 * Go through the fields and update iff not VNOVAL.
435 if (vap
->va_uid
!= (uid_t
)VNOVAL
|| vap
->va_gid
!= (gid_t
)VNOVAL
) {
436 if (vp
->v_mount
->mnt_flag
& MNT_RDONLY
)
438 if ((error
= ufs_chown(vp
, vap
->va_uid
, vap
->va_gid
, cred
)) != 0)
441 if (vap
->va_size
!= VNOVAL
) {
443 * Disallow write attempts on read-only filesystems;
444 * unless the file is a socket, fifo, or a block or
445 * character device resident on the filesystem.
447 switch (vp
->v_type
) {
452 if (vp
->v_mount
->mnt_flag
& MNT_RDONLY
)
458 if ((error
= ffs_truncate(vp
, vap
->va_size
, 0, cred
)) != 0)
462 if (vap
->va_atime
.tv_sec
!= VNOVAL
|| vap
->va_mtime
.tv_sec
!= VNOVAL
) {
463 if (vp
->v_mount
->mnt_flag
& MNT_RDONLY
)
465 if (cred
->cr_uid
!= ip
->i_uid
&&
466 (error
= priv_check_cred(cred
, PRIV_VFS_SETATTR
, 0)) &&
467 ((vap
->va_vaflags
& VA_UTIMES_NULL
) == 0 ||
468 (error
= VOP_EACCESS(vp
, VWRITE
, cred
))))
470 if (vap
->va_atime
.tv_sec
!= VNOVAL
)
471 ip
->i_flag
|= IN_ACCESS
;
472 if (vap
->va_mtime
.tv_sec
!= VNOVAL
)
473 ip
->i_flag
|= IN_CHANGE
| IN_UPDATE
;
475 if (vap
->va_atime
.tv_sec
!= VNOVAL
) {
476 ip
->i_atime
= vap
->va_atime
.tv_sec
;
477 ip
->i_atimensec
= vap
->va_atime
.tv_nsec
;
479 if (vap
->va_mtime
.tv_sec
!= VNOVAL
) {
480 ip
->i_mtime
= vap
->va_mtime
.tv_sec
;
481 ip
->i_mtimensec
= vap
->va_mtime
.tv_nsec
;
482 vclrflags(vp
, VLASTWRITETS
);
484 error
= ffs_update(vp
, 0);
489 if (vap
->va_mode
!= (mode_t
)VNOVAL
) {
490 if (vp
->v_mount
->mnt_flag
& MNT_RDONLY
)
492 error
= ufs_chmod(vp
, (int)vap
->va_mode
, cred
);
494 VN_KNOTE(vp
, NOTE_ATTRIB
);
499 * Change the mode on a file.
500 * Inode must be locked before calling.
503 ufs_chmod(struct vnode
*vp
, int mode
, struct ucred
*cred
)
505 struct inode
*ip
= VTOI(vp
);
507 mode_t cur_mode
= ip
->i_mode
;
509 error
= vop_helper_chmod(vp
, mode
, cred
, ip
->i_uid
, ip
->i_gid
,
514 if (cred
->cr_uid
!= ip
->i_uid
) {
515 error
= priv_check_cred(cred
, PRIV_VFS_CHMOD
, 0);
520 if (vp
->v_type
!= VDIR
&& (mode
& S_ISTXT
))
522 if (!groupmember(ip
->i_gid
, cred
) && (mode
& ISGID
))
526 ip
->i_mode
= cur_mode
;
527 ip
->i_flag
|= IN_CHANGE
;
532 * Perform chown operation on inode ip;
533 * inode must be locked prior to call.
536 ufs_chown(struct vnode
*vp
, uid_t uid
, gid_t gid
, struct ucred
*cred
)
538 struct inode
*ip
= VTOI(vp
);
547 if (uid
== (uid_t
)VNOVAL
)
549 if (gid
== (gid_t
)VNOVAL
)
552 * If we don't own the file, are trying to change the owner
553 * of the file, or are not a member of the target group,
554 * the caller must be superuser or the call fails.
556 if ((cred
->cr_uid
!= ip
->i_uid
|| uid
!= ip
->i_uid
||
557 (gid
!= ip
->i_gid
&& !(cred
->cr_gid
== gid
||
558 groupmember(gid
, cred
)))) &&
559 (error
= priv_check_cred(cred
, PRIV_VFS_CHOWN
, 0)))
564 if ((error
= ufs_getinoquota(ip
)) != 0)
567 ufs_dqrele(vp
, ip
->i_dquot
[USRQUOTA
]);
568 ip
->i_dquot
[USRQUOTA
] = NODQUOT
;
571 ufs_dqrele(vp
, ip
->i_dquot
[GRPQUOTA
]);
572 ip
->i_dquot
[GRPQUOTA
] = NODQUOT
;
574 change
= ip
->i_blocks
;
575 (void) ufs_chkdq(ip
, -change
, cred
, CHOWN
);
576 (void) ufs_chkiq(ip
, -1, cred
, CHOWN
);
577 for (i
= 0; i
< MAXQUOTAS
; i
++) {
578 ufs_dqrele(vp
, ip
->i_dquot
[i
]);
579 ip
->i_dquot
[i
] = NODQUOT
;
585 if ((error
= ufs_getinoquota(ip
)) == 0) {
587 ufs_dqrele(vp
, ip
->i_dquot
[USRQUOTA
]);
588 ip
->i_dquot
[USRQUOTA
] = NODQUOT
;
591 ufs_dqrele(vp
, ip
->i_dquot
[GRPQUOTA
]);
592 ip
->i_dquot
[GRPQUOTA
] = NODQUOT
;
594 if ((error
= ufs_chkdq(ip
, change
, cred
, CHOWN
)) == 0) {
595 if ((error
= ufs_chkiq(ip
, 1, cred
, CHOWN
)) == 0)
598 (void)ufs_chkdq(ip
, -change
, cred
, CHOWN
|FORCE
);
600 for (i
= 0; i
< MAXQUOTAS
; i
++) {
601 ufs_dqrele(vp
, ip
->i_dquot
[i
]);
602 ip
->i_dquot
[i
] = NODQUOT
;
607 if (ufs_getinoquota(ip
) == 0) {
609 ufs_dqrele(vp
, ip
->i_dquot
[USRQUOTA
]);
610 ip
->i_dquot
[USRQUOTA
] = NODQUOT
;
613 ufs_dqrele(vp
, ip
->i_dquot
[GRPQUOTA
]);
614 ip
->i_dquot
[GRPQUOTA
] = NODQUOT
;
616 (void) ufs_chkdq(ip
, change
, cred
, FORCE
|CHOWN
);
617 (void) ufs_chkiq(ip
, 1, cred
, FORCE
|CHOWN
);
618 (void) ufs_getinoquota(ip
);
622 if (ufs_getinoquota(ip
))
623 panic("ufs_chown: lost quota");
625 ip
->i_flag
|= IN_CHANGE
;
626 if (cred
->cr_uid
!= 0 && (ouid
!= uid
|| ogid
!= gid
))
627 ip
->i_mode
&= ~(ISUID
| ISGID
);
634 * NB Currently unsupported.
636 * ufs_mmap(struct vnode *a_vp, int a_fflags, struct ucred *a_cred)
641 ufs_mmap(struct vop_mmap_args
*ap
)
647 * ufs_remove(struct vnode *a_dvp, struct vnode *a_vp,
648 * struct componentname *a_cnp)
652 ufs_remove(struct vop_old_remove_args
*ap
)
655 struct vnode
*vp
= ap
->a_vp
;
656 struct vnode
*dvp
= ap
->a_dvp
;
660 #if 0 /* handled by kernel now */
661 if ((ip
->i_flags
& (NOUNLINK
| IMMUTABLE
| APPEND
)) ||
662 (VTOI(dvp
)->i_flags
& APPEND
)) {
667 error
= ufs_dirremove(dvp
, ip
, ap
->a_cnp
->cn_flags
, 0);
668 VN_KNOTE(vp
, NOTE_DELETE
);
669 VN_KNOTE(dvp
, NOTE_WRITE
);
679 * ufs_link(struct vnode *a_tdvp, struct vnode *a_vp,
680 * struct componentname *a_cnp)
684 ufs_link(struct vop_old_link_args
*ap
)
686 struct vnode
*vp
= ap
->a_vp
;
687 struct vnode
*tdvp
= ap
->a_tdvp
;
688 struct componentname
*cnp
= ap
->a_cnp
;
690 struct direct newdir
;
693 if (tdvp
->v_mount
!= vp
->v_mount
) {
698 error
= vn_lock(vp
, LK_EXCLUSIVE
| LK_FAILRECLAIM
);
703 if ((nlink_t
)ip
->i_nlink
>= LINK_MAX
) {
707 #if 0 /* handled by kernel now, also DragonFly allows this */
708 if (ip
->i_flags
& (IMMUTABLE
| APPEND
)) {
715 ip
->i_flag
|= IN_CHANGE
;
716 if (DOINGSOFTDEP(vp
))
717 softdep_change_linkcnt(ip
);
718 error
= ffs_update(vp
, !(DOINGSOFTDEP(vp
) | DOINGASYNC(vp
)));
720 ufs_makedirentry(ip
, cnp
, &newdir
);
721 error
= ufs_direnter(tdvp
, vp
, &newdir
, cnp
, NULL
);
727 ip
->i_flag
|= IN_CHANGE
;
728 if (DOINGSOFTDEP(vp
))
729 softdep_change_linkcnt(ip
);
735 VN_KNOTE(vp
, NOTE_LINK
);
736 VN_KNOTE(tdvp
, NOTE_WRITE
);
741 * whiteout vnode call
743 * ufs_whiteout(struct vnode *a_dvp, struct componentname *a_cnp, int a_flags)
747 ufs_whiteout(struct vop_old_whiteout_args
*ap
)
749 struct vnode
*dvp
= ap
->a_dvp
;
750 struct componentname
*cnp
= ap
->a_cnp
;
751 struct direct newdir
;
754 switch (ap
->a_flags
) {
756 /* 4.4 format directories support whiteout operations */
757 if (dvp
->v_mount
->mnt_maxsymlinklen
> 0)
762 /* create a new directory whiteout */
764 if (dvp
->v_mount
->mnt_maxsymlinklen
<= 0)
765 panic("ufs_whiteout: old format filesystem");
769 newdir
.d_namlen
= cnp
->cn_namelen
;
770 bcopy(cnp
->cn_nameptr
, newdir
.d_name
, (unsigned)cnp
->cn_namelen
+ 1);
771 newdir
.d_type
= DT_WHT
;
772 error
= ufs_direnter(dvp
, NULL
, &newdir
, cnp
, NULL
);
776 /* remove an existing directory whiteout */
778 if (dvp
->v_mount
->mnt_maxsymlinklen
<= 0)
779 panic("ufs_whiteout: old format filesystem");
782 cnp
->cn_flags
&= ~CNP_DOWHITEOUT
;
783 error
= ufs_dirremove(dvp
, NULL
, cnp
->cn_flags
, 0);
786 panic("ufs_whiteout: unknown op");
792 * Rename system call.
793 * rename("foo", "bar");
796 * link("foo", "bar");
798 * but ``atomically''. Can't do full commit without saving state in the
799 * inode on disk which isn't feasible at this time. Best we can do is
800 * always guarantee the target exists.
802 * Basic algorithm is:
804 * 1) Bump link count on source while we're linking it to the
805 * target. This also ensure the inode won't be deleted out
806 * from underneath us while we work (it may be truncated by
807 * a concurrent `trunc' or `open' for creation).
808 * 2) Link source to destination. If destination already exists,
810 * 3) Unlink source reference to inode if still around. If a
811 * directory was moved and the parent of the destination
812 * is different from the source, patch the ".." entry in the
815 * ufs_rename(struct vnode *a_fdvp, struct vnode *a_fvp,
816 * struct componentname *a_fcnp, struct vnode *a_tdvp,
817 * struct vnode *a_tvp, struct componentname *a_tcnp)
821 ufs_rename(struct vop_old_rename_args
*ap
)
823 struct vnode
*tvp
= ap
->a_tvp
;
824 struct vnode
*tdvp
= ap
->a_tdvp
;
825 struct vnode
*fvp
= ap
->a_fvp
;
826 struct vnode
*fdvp
= ap
->a_fdvp
;
827 struct componentname
*tcnp
= ap
->a_tcnp
;
828 struct componentname
*fcnp
= ap
->a_fcnp
;
829 struct inode
*ip
, *xp
, *dp
;
830 struct direct newdir
;
831 ino_t oldparent
= 0, newparent
= 0;
832 int doingdirectory
= 0;
833 int error
= 0, ioflag
;
836 * Check for cross-device rename.
838 if ((fvp
->v_mount
!= tdvp
->v_mount
) ||
839 (tvp
&& (fvp
->v_mount
!= tvp
->v_mount
))) {
853 #if 0 /* handled by kernel now */
854 if (tvp
&& ((VTOI(tvp
)->i_flags
& (NOUNLINK
| IMMUTABLE
| APPEND
)) ||
855 (VTOI(tdvp
)->i_flags
& APPEND
))) {
862 * Renaming a file to itself has no effect. The upper layers should
863 * not call us in that case. Temporarily just warn if they do.
866 kprintf("ufs_rename: fvp == tvp (can't happen)\n");
871 error
= vn_lock(fvp
, LK_EXCLUSIVE
| LK_FAILRECLAIM
);
876 * Note: now that fvp is locked we have to be sure to unlock it before
877 * using the 'abortit' target.
881 if (ip
->i_nlink
>= LINK_MAX
) {
886 #if 0 /* handled by kernel now */
887 if ((ip
->i_flags
& (NOUNLINK
| IMMUTABLE
| APPEND
))
888 || (dp
->i_flags
& APPEND
)) {
894 if ((ip
->i_mode
& IFMT
) == IFDIR
) {
896 * Avoid ".", "..", and aliases of "." for obvious reasons.
898 if ((fcnp
->cn_namelen
== 1 && fcnp
->cn_nameptr
[0] == '.') ||
899 dp
== ip
|| (fcnp
->cn_flags
| tcnp
->cn_flags
) & CNP_ISDOTDOT
||
900 (ip
->i_flag
& IN_RENAME
)) {
905 ip
->i_flag
|= IN_RENAME
;
906 oldparent
= dp
->i_number
;
909 VN_KNOTE(fdvp
, NOTE_WRITE
); /* XXX right place? */
912 * fvp still locked. ip->i_flag has IN_RENAME set if doingdirectory.
913 * Cleanup fvp requirements so we can unlock it.
915 * tvp and tdvp are locked. tvp may be NULL. Now that dp and xp
916 * is setup we can use the 'bad' target if we unlock fvp. We cannot
917 * use the abortit target anymore because of IN_RENAME.
926 * 1) Bump link count while we're moving stuff
927 * around. If we crash somewhere before
928 * completing our work, the link count
929 * may be wrong, but correctable.
933 ip
->i_flag
|= IN_CHANGE
;
934 if (DOINGSOFTDEP(fvp
))
935 softdep_change_linkcnt(ip
);
936 if ((error
= ffs_update(fvp
, !(DOINGSOFTDEP(fvp
) |
937 DOINGASYNC(fvp
)))) != 0) {
943 * If ".." must be changed (ie the directory gets a new
944 * parent) then the source directory must not be in the
945 * directory heirarchy above the target, as this would
946 * orphan everything below the source directory. Also
947 * the user must have write permission in the source so
948 * as to be able to change "..". We must repeat the call
949 * to namei, as the parent directory is unlocked by the
950 * call to checkpath().
952 error
= VOP_EACCESS(fvp
, VWRITE
, tcnp
->cn_cred
);
956 * We are now back to where we were in that fvp, fdvp are unlocked
957 * and tvp, tdvp are locked. tvp may be NULL. IN_RENAME may be
958 * set. Only the bad target or, if we clean up tvp and tdvp, the
959 * out target, may be used.
961 if (oldparent
!= dp
->i_number
)
962 newparent
= dp
->i_number
;
963 if (doingdirectory
&& newparent
) {
964 if (error
) /* write access check above */
968 * Once we start messing with tvp and tdvp we cannot use the
969 * 'bad' target, only finish cleaning tdvp and tvp up and
970 * use the 'out' target.
972 * This cleans up tvp.
980 * This is a real mess. ufs_checkpath vput's the target
981 * directory so retain an extra ref and note that tdvp will
982 * lose its lock on return. This leaves us with one good
983 * ref after ufs_checkpath returns.
986 error
= ufs_checkpath(ip
, dp
, tcnp
->cn_cred
);
987 tcnp
->cn_flags
|= CNP_PDIRUNLOCK
;
994 * relookup no longer messes with tdvp's refs. tdvp must be
995 * unlocked on entry and will be locked on a successful
998 error
= relookup(tdvp
, &tvp
, tcnp
);
1000 if (tcnp
->cn_flags
& CNP_PDIRUNLOCK
)
1006 KKASSERT((tcnp
->cn_flags
& CNP_PDIRUNLOCK
) == 0);
1013 * We are back to fvp, fdvp unlocked, tvp, tdvp locked. tvp may
1014 * be NULL (xp will also be NULL in that case), and IN_RENAME will
1015 * be set if doingdirectory. This means we can use the 'bad' target
1020 * 2) If target doesn't exist, link the target
1021 * to the source and unlink the source.
1022 * Otherwise, rewrite the target directory
1023 * entry to reference the source inode and
1024 * expunge the original entry's existence.
1027 if (dp
->i_dev
!= ip
->i_dev
)
1028 panic("ufs_rename: EXDEV");
1030 * Account for ".." in new directory.
1031 * When source and destination have the same
1032 * parent we don't fool with the link count.
1034 if (doingdirectory
&& newparent
) {
1035 if ((nlink_t
)dp
->i_nlink
>= LINK_MAX
) {
1041 dp
->i_flag
|= IN_CHANGE
;
1042 if (DOINGSOFTDEP(tdvp
))
1043 softdep_change_linkcnt(dp
);
1044 error
= ffs_update(tdvp
, !(DOINGSOFTDEP(tdvp
) |
1049 ufs_makedirentry(ip
, tcnp
, &newdir
);
1050 error
= ufs_direnter(tdvp
, NULL
, &newdir
, tcnp
, NULL
);
1052 if (doingdirectory
&& newparent
) {
1055 dp
->i_flag
|= IN_CHANGE
;
1056 if (DOINGSOFTDEP(tdvp
))
1057 softdep_change_linkcnt(dp
);
1058 (void)ffs_update(tdvp
, 1);
1062 VN_KNOTE(tdvp
, NOTE_WRITE
);
1065 if (xp
->i_dev
!= dp
->i_dev
|| xp
->i_dev
!= ip
->i_dev
)
1066 panic("ufs_rename: EXDEV");
1068 * Short circuit rename(foo, foo).
1070 if (xp
->i_number
== ip
->i_number
)
1071 panic("ufs_rename: same file");
1073 * If the parent directory is "sticky", then the user must
1074 * own the parent directory, or the destination of the rename,
1075 * otherwise the destination may not be changed (except by
1076 * root). This implements append-only directories.
1078 if ((dp
->i_mode
& S_ISTXT
) && tcnp
->cn_cred
->cr_uid
!= 0 &&
1079 tcnp
->cn_cred
->cr_uid
!= dp
->i_uid
&&
1080 xp
->i_uid
!= tcnp
->cn_cred
->cr_uid
) {
1085 * Target must be empty if a directory and have no links
1086 * to it. Also, ensure source and target are compatible
1087 * (both directories, or both not directories).
1089 * Purge the file or directory being replaced from the
1092 if ((xp
->i_mode
&IFMT
) == IFDIR
) {
1093 if ((xp
->i_effnlink
> 2) ||
1094 !ufs_dirempty(xp
, dp
->i_number
, tcnp
->cn_cred
)) {
1098 if (!doingdirectory
) {
1102 /* cache_purge removed - handled by VFS compat layer */
1103 } else if (doingdirectory
== 0) {
1104 /* cache_purge removed - handled by VFS compat layer */
1110 * note: inode passed to ufs_dirrewrite() is 0 for a
1111 * non-directory file rename, 1 for a directory rename
1112 * in the same directory, and > 1 for an inode representing
1113 * the new directory.
1115 error
= ufs_dirrewrite(dp
, xp
, ip
->i_number
,
1117 (doingdirectory
&& newparent
) ?
1118 newparent
: (ino_t
)doingdirectory
);
1121 if (doingdirectory
) {
1124 if (DOINGSOFTDEP(tdvp
))
1125 softdep_change_linkcnt(dp
);
1128 if (DOINGSOFTDEP(tvp
))
1129 softdep_change_linkcnt(xp
);
1131 if (doingdirectory
&& !DOINGSOFTDEP(tvp
)) {
1133 * Truncate inode. The only stuff left in the directory
1134 * is "." and "..". The "." reference is inconsequential
1135 * since we are quashing it. We have removed the "."
1136 * reference and the reference in the parent directory,
1137 * but there may be other hard links. The soft
1138 * dependency code will arrange to do these operations
1139 * after the parent directory entry has been deleted on
1140 * disk, so when running with that code we avoid doing
1145 dp
->i_flag
|= IN_CHANGE
;
1148 xp
->i_flag
|= IN_CHANGE
;
1149 ioflag
= DOINGASYNC(tvp
) ? 0 : IO_SYNC
;
1150 error
= ffs_truncate(tvp
, (off_t
)0, ioflag
,
1155 VN_KNOTE(tdvp
, NOTE_WRITE
);
1157 VN_KNOTE(tvp
, NOTE_DELETE
);
1163 * tvp and tdvp have been cleaned up. only fvp and fdvp (both
1164 * unlocked) remain. We are about to overwrite fvp but we have to
1165 * keep 'ip' intact so we cannot release the old fvp, which is still
1166 * refd and accessible via ap->a_fvp.
1168 * This means we cannot use either 'bad' or 'out' to cleanup any
1173 * 3) Unlink the source.
1175 fcnp
->cn_flags
&= ~CNP_MODMASK
;
1176 fcnp
->cn_flags
|= CNP_LOCKPARENT
;
1177 error
= relookup(fdvp
, &fvp
, fcnp
);
1178 if (error
|| fvp
== NULL
) {
1180 * From name has disappeared. IN_RENAME will not be set if
1181 * we get past the panic so we don't have to clean it up.
1184 panic("ufs_rename: lost dir entry");
1186 if (fcnp
->cn_flags
& CNP_PDIRUNLOCK
)
1192 KKASSERT((fcnp
->cn_flags
& CNP_PDIRUNLOCK
) == 0);
1195 * fdvp and fvp are locked.
1201 * Ensure that the directory entry still exists and has not
1202 * changed while the new name has been entered. If the source is
1203 * a file then the entry may have been unlinked or renamed. In
1204 * either case there is no further work to be done. If the source
1205 * is a directory then it cannot have been rmdir'ed; the IN_RENAME
1206 * flag ensures that it cannot be moved by another rename or removed
1207 * by a rmdir. Cleanup IN_RENAME.
1211 panic("ufs_rename: lost dir entry");
1214 * If the source is a directory with a
1215 * new parent, the link count of the old
1216 * parent directory must be decremented
1217 * and ".." set to point to the new parent.
1219 if (doingdirectory
&& newparent
) {
1220 xp
->i_offset
= mastertemplate
.dot_reclen
;
1221 ufs_dirrewrite(xp
, dp
, newparent
, DT_DIR
, 0);
1222 /* cache_purge removed - handled by VFS compat layer */
1224 error
= ufs_dirremove(fdvp
, xp
, fcnp
->cn_flags
, 0);
1225 xp
->i_flag
&= ~IN_RENAME
;
1228 VN_KNOTE(fvp
, NOTE_RENAME
);
1240 ip
->i_flag
&= ~IN_RENAME
;
1241 if (vn_lock(fvp
, LK_EXCLUSIVE
| LK_FAILRECLAIM
) == 0) {
1244 ip
->i_flag
|= IN_CHANGE
;
1245 ip
->i_flag
&= ~IN_RENAME
;
1246 if (DOINGSOFTDEP(fvp
))
1247 softdep_change_linkcnt(ip
);
1258 * ufs_mkdir(struct vnode *a_dvp, struct vnode **a_vpp,
1259 * struct componentname *a_cnp, struct vattr *a_vap)
1263 ufs_mkdir(struct vop_old_mkdir_args
*ap
)
1265 struct vnode
*dvp
= ap
->a_dvp
;
1266 struct vattr
*vap
= ap
->a_vap
;
1267 struct componentname
*cnp
= ap
->a_cnp
;
1268 struct inode
*ip
, *dp
;
1271 struct dirtemplate dirtemplate
, *dtp
;
1272 struct direct newdir
;
1277 if ((nlink_t
)dp
->i_nlink
>= LINK_MAX
) {
1281 dmode
= vap
->va_mode
& 0777;
1284 * Must simulate part of ufs_makeinode here to acquire the inode,
1285 * but not have it entered in the parent directory. The entry is
1286 * made later after writing "." and ".." entries.
1288 error
= ffs_valloc(dvp
, dmode
, cnp
->cn_cred
, &tvp
);
1292 ip
->i_gid
= dp
->i_gid
;
1296 struct ucred ucred
, *ucp
;
1300 * If we are hacking owners here, (only do this where told to)
1301 * and we are not giving it TO root, (would subvert quotas)
1302 * then go ahead and give it to the other user.
1303 * The new directory also inherits the SUID bit.
1304 * If user's UID and dir UID are the same,
1305 * 'give it away' so that the SUID is still forced on.
1307 if ((dvp
->v_mount
->mnt_flag
& MNT_SUIDDIR
) &&
1308 (dp
->i_mode
& ISUID
) && dp
->i_uid
) {
1310 ip
->i_uid
= dp
->i_uid
;
1312 if (dp
->i_uid
!= cnp
->cn_cred
->cr_uid
) {
1314 * Make sure the correct user gets charged
1316 * Make a dummy credential for the victim.
1317 * XXX This seems to never be accessed out of
1318 * our context so a stack variable is ok.
1321 ucred
.cr_uid
= ip
->i_uid
;
1322 ucred
.cr_ngroups
= 1;
1323 ucred
.cr_groups
[0] = dp
->i_gid
;
1328 ip
->i_uid
= cnp
->cn_cred
->cr_uid
;
1330 if ((error
= ufs_getinoquota(ip
)) ||
1331 (error
= ufs_chkiq(ip
, 1, ucp
, 0))) {
1332 ffs_vfree(tvp
, ip
->i_number
, dmode
);
1338 #else /* !SUIDDIR */
1339 ip
->i_uid
= cnp
->cn_cred
->cr_uid
;
1341 if ((error
= ufs_getinoquota(ip
)) ||
1342 (error
= ufs_chkiq(ip
, 1, cnp
->cn_cred
, 0))) {
1343 ffs_vfree(tvp
, ip
->i_number
, dmode
);
1348 #endif /* !SUIDDIR */
1349 ip
->i_flag
|= IN_ACCESS
| IN_CHANGE
| IN_UPDATE
;
1351 tvp
->v_type
= VDIR
; /* Rest init'd in getnewvnode(). */
1354 if (DOINGSOFTDEP(tvp
))
1355 softdep_change_linkcnt(ip
);
1356 if (cnp
->cn_flags
& CNP_ISWHITEOUT
)
1357 ip
->i_flags
|= UF_OPAQUE
;
1360 * Bump link count in parent directory to reflect work done below.
1361 * Should be done before reference is created so cleanup is
1362 * possible if we crash.
1366 dp
->i_flag
|= IN_CHANGE
;
1367 if (DOINGSOFTDEP(dvp
))
1368 softdep_change_linkcnt(dp
);
1369 error
= ffs_update(tvp
, !(DOINGSOFTDEP(dvp
) | DOINGASYNC(dvp
)));
1374 * The vnode must have a VM object in order to issue buffer cache
1377 vinitvmio(tvp
, DIRBLKSIZ
, DIRBLKSIZ
, -1);
1380 * Initialize directory with "." and ".." from static template.
1382 if (dvp
->v_mount
->mnt_maxsymlinklen
> 0)
1383 dtp
= &mastertemplate
;
1385 dtp
= (struct dirtemplate
*)&omastertemplate
;
1387 dirtemplate
.dot_ino
= ip
->i_number
;
1388 dirtemplate
.dotdot_ino
= dp
->i_number
;
1389 nvnode_pager_setsize(tvp
, DIRBLKSIZ
, DIRBLKSIZ
, -1);
1390 error
= VOP_BALLOC(tvp
, 0LL, DIRBLKSIZ
, cnp
->cn_cred
, B_CLRBUF
, &bp
);
1393 ip
->i_size
= DIRBLKSIZ
;
1394 ip
->i_flag
|= IN_CHANGE
| IN_UPDATE
;
1395 bcopy((caddr_t
)&dirtemplate
, (caddr_t
)bp
->b_data
, sizeof dirtemplate
);
1396 if (DOINGSOFTDEP(tvp
)) {
1398 * Ensure that the entire newly allocated block is a
1399 * valid directory so that future growth within the
1400 * block does not have to ensure that the block is
1401 * written before the inode.
1404 while (blkoff
< bp
->b_bcount
) {
1406 (bp
->b_data
+ blkoff
))->d_reclen
= DIRBLKSIZ
;
1407 blkoff
+= DIRBLKSIZ
;
1410 if ((error
= ffs_update(tvp
, !(DOINGSOFTDEP(tvp
) |
1411 DOINGASYNC(tvp
)))) != 0) {
1416 * Directory set up, now install its entry in the parent directory.
1418 * If we are not doing soft dependencies, then we must write out the
1419 * buffer containing the new directory body before entering the new
1420 * name in the parent. If we are doing soft dependencies, then the
1421 * buffer containing the new directory body will be passed to and
1422 * released in the soft dependency code after the code has attached
1423 * an appropriate ordering dependency to the buffer which ensures that
1424 * the buffer is written before the new name is written in the parent.
1426 if (DOINGASYNC(dvp
))
1428 else if (!DOINGSOFTDEP(dvp
) && (error
= bwrite(bp
)) != 0)
1430 ufs_makedirentry(ip
, cnp
, &newdir
);
1431 error
= ufs_direnter(dvp
, tvp
, &newdir
, cnp
, bp
);
1435 VN_KNOTE(dvp
, NOTE_WRITE
| NOTE_LINK
);
1440 dp
->i_flag
|= IN_CHANGE
;
1441 if (DOINGSOFTDEP(dvp
))
1442 softdep_change_linkcnt(dp
);
1444 * No need to do an explicit VOP_TRUNCATE here, vrele will
1445 * do this for us because we set the link count to 0.
1449 ip
->i_flag
|= IN_CHANGE
;
1450 if (DOINGSOFTDEP(tvp
))
1451 softdep_change_linkcnt(ip
);
1459 * Rmdir system call.
1461 * ufs_rmdir(struct vnode *a_dvp, struct vnode *a_vp,
1462 * struct componentname *a_cnp)
1466 ufs_rmdir(struct vop_old_rmdir_args
*ap
)
1468 struct vnode
*vp
= ap
->a_vp
;
1469 struct vnode
*dvp
= ap
->a_dvp
;
1470 struct componentname
*cnp
= ap
->a_cnp
;
1471 struct inode
*ip
, *dp
;
1478 * Do not remove a directory that is in the process of being renamed.
1479 * Verify the directory is empty (and valid). Rmdir ".." will not be
1480 * valid since ".." will contain a reference to the current directory
1481 * and thus be non-empty. Do not allow the removal of mounted on
1482 * directories (this can happen when an NFS exported filesystem
1483 * tries to remove a locally mounted on directory).
1486 if (ip
->i_flag
& IN_RENAME
) {
1490 if (ip
->i_effnlink
!= 2 ||
1491 !ufs_dirempty(ip
, dp
->i_number
, cnp
->cn_cred
)) {
1495 #if 0 /* handled by kernel now */
1496 if ((dp
->i_flags
& APPEND
)
1497 || (ip
->i_flags
& (NOUNLINK
| IMMUTABLE
| APPEND
))) {
1503 * Delete reference to directory before purging
1504 * inode. If we crash in between, the directory
1505 * will be reattached to lost+found,
1509 if (DOINGSOFTDEP(vp
)) {
1510 softdep_change_linkcnt(dp
);
1511 softdep_change_linkcnt(ip
);
1513 error
= ufs_dirremove(dvp
, ip
, cnp
->cn_flags
, 1);
1517 if (DOINGSOFTDEP(vp
)) {
1518 softdep_change_linkcnt(dp
);
1519 softdep_change_linkcnt(ip
);
1523 VN_KNOTE(dvp
, NOTE_WRITE
| NOTE_LINK
);
1525 * Truncate inode. The only stuff left in the directory is "." and
1526 * "..". The "." reference is inconsequential since we are quashing
1527 * it. The soft dependency code will arrange to do these operations
1528 * after the parent directory entry has been deleted on disk, so
1529 * when running with that code we avoid doing them now.
1531 if (!DOINGSOFTDEP(vp
)) {
1533 dp
->i_flag
|= IN_CHANGE
;
1535 ip
->i_flag
|= IN_CHANGE
;
1536 ioflag
= DOINGASYNC(vp
) ? 0 : IO_SYNC
;
1537 error
= ffs_truncate(vp
, (off_t
)0, ioflag
, cnp
->cn_cred
);
1539 /* cache_purge removed - handled by VFS compat layer */
1541 /* Kill any active hash; i_effnlink == 0, so it will not come back. */
1542 if (ip
->i_dirhash
!= NULL
)
1543 ufsdirhash_free(ip
);
1546 VN_KNOTE(vp
, NOTE_DELETE
);
1551 * symlink -- make a symbolic link
1553 * ufs_symlink(struct vnode *a_dvp, struct vnode **a_vpp,
1554 * struct componentname *a_cnp, struct vattr *a_vap,
1559 ufs_symlink(struct vop_old_symlink_args
*ap
)
1561 struct vnode
*vp
, **vpp
= ap
->a_vpp
;
1565 error
= ufs_makeinode(IFLNK
| ap
->a_vap
->va_mode
, ap
->a_dvp
,
1569 VN_KNOTE(ap
->a_dvp
, NOTE_WRITE
);
1571 len
= strlen(ap
->a_target
);
1572 if (len
< vp
->v_mount
->mnt_maxsymlinklen
) {
1574 bcopy(ap
->a_target
, (char *)ip
->i_shortlink
, len
);
1576 ip
->i_flag
|= IN_CHANGE
| IN_UPDATE
;
1579 * Make sure we have a VM object in order to use
1582 if (vp
->v_object
== NULL
)
1583 vinitvmio(vp
, 0, PAGE_SIZE
, -1);
1584 error
= vn_rdwr(UIO_WRITE
, vp
, ap
->a_target
, len
, (off_t
)0,
1585 UIO_SYSSPACE
, IO_NODELOCKED
,
1586 ap
->a_cnp
->cn_cred
, NULL
);
1594 * Vnode op for reading directories.
1596 * ufs_readdir(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred,
1597 * int *a_eofflag, int *ncookies, off_t **a_cookies)
1601 ufs_readdir(struct vop_readdir_args
*ap
)
1603 struct uio
*uio
= ap
->a_uio
;
1604 struct vnode
*vp
= ap
->a_vp
;
1609 int offset
; /* offset into buffer cache buffer */
1610 int eoffset
; /* end of buffer clipped to file EOF */
1611 int pickup
; /* pickup point */
1616 if (uio
->uio_offset
< 0)
1619 * Guess the number of cookies needed. Make sure we compute at
1620 * least 1, and no more then a reasonable limit.
1622 if (ap
->a_ncookies
) {
1623 ncookies
= uio
->uio_resid
/ 16 + 1;
1624 if (ncookies
> 1024)
1626 cookies
= kmalloc(ncookies
* sizeof(off_t
), M_TEMP
, M_WAITOK
);
1628 ncookies
= -1; /* force conditionals below */
1633 error
= vn_lock(vp
, LK_EXCLUSIVE
| LK_RETRY
| LK_FAILRECLAIM
);
1640 if (uio
->uio_offset
>= VTOI(vp
)->i_size
) {
1643 if (ap
->a_ncookies
) {
1644 *ap
->a_ncookies
= cookie_index
;
1645 *ap
->a_cookies
= cookies
;
1651 * Loop until we run out of cookies, we run out of user buffer,
1652 * or we hit the directory EOF.
1654 * Always start scans at the beginning of the buffer, don't trust
1655 * the offset supplied by userland.
1657 while ((error
= ffs_blkatoff_ra(vp
, uio
->uio_offset
, NULL
, &bp
, 2)) == 0) {
1658 pickup
= (int)(uio
->uio_offset
- bp
->b_loffset
);
1661 if (bp
->b_loffset
+ bp
->b_bcount
> VTOI(vp
)->i_size
)
1662 eoffset
= (int)(VTOI(vp
)->i_size
- bp
->b_loffset
);
1664 eoffset
= bp
->b_bcount
;
1666 while (offset
< eoffset
) {
1667 dp
= (struct direct
*)(bp
->b_data
+ offset
);
1668 if (dp
->d_reclen
<= 0 || (dp
->d_reclen
& 3) ||
1669 offset
+ dp
->d_reclen
> bp
->b_bcount
) {
1673 if (offsetof(struct direct
, d_name
[dp
->d_namlen
]) > dp
->d_reclen
) {
1677 if (offset
< pickup
) {
1678 offset
+= dp
->d_reclen
;
1681 #if BYTE_ORDER == LITTLE_ENDIAN
1683 retval
= vop_write_dirent(&error
, uio
,
1684 dp
->d_ino
, dp
->d_namlen
, dp
->d_type
,
1689 retval
= vop_write_dirent(&error
, uio
,
1690 dp
->d_ino
, dp
->d_type
, dp
->d_namlen
,
1696 cookies
[cookie_index
] = bp
->b_loffset
+ offset
;
1698 offset
+= dp
->d_reclen
;
1699 if (cookie_index
== ncookies
)
1704 * This will align the next loop to the beginning of the
1705 * next block, and pickup will calculate to 0.
1707 uio
->uio_offset
= bp
->b_loffset
+ offset
;
1710 if (retval
|| error
|| cookie_index
== ncookies
||
1711 uio
->uio_offset
>= VTOI(vp
)->i_size
) {
1716 *ap
->a_eofflag
= VTOI(vp
)->i_size
<= uio
->uio_offset
;
1719 * Report errors only if we didn't manage to read anything
1721 if (error
&& cookie_index
== 0) {
1723 kfree(cookies
, M_TEMP
);
1724 *ap
->a_ncookies
= 0;
1725 *ap
->a_cookies
= NULL
;
1730 *ap
->a_ncookies
= cookie_index
;
1731 *ap
->a_cookies
= cookies
;
1740 * Return target name of a symbolic link
1742 * ufs_readlink(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred)
1746 ufs_readlink(struct vop_readlink_args
*ap
)
1748 struct vnode
*vp
= ap
->a_vp
;
1749 struct inode
*ip
= VTOI(vp
);
1753 if ((isize
< vp
->v_mount
->mnt_maxsymlinklen
) ||
1754 (ip
->i_din
.di_blocks
== 0)) { /* XXX - for old fastlink support */
1755 uiomove((char *)ip
->i_shortlink
, isize
, ap
->a_uio
);
1760 * Perform the equivalent of an OPEN on vp so we can issue a
1763 return (VOP_READ(vp
, ap
->a_uio
, 0, ap
->a_cred
));
1767 * Calculate the logical to physical mapping if not done already,
1768 * then call the device strategy routine.
1770 * In order to be able to swap to a file, the VOP_BMAP operation may not
1771 * deadlock on memory. See ufs_bmap() for details.
1773 * ufs_strategy(struct vnode *a_vp, struct bio *a_bio)
1777 ufs_strategy(struct vop_strategy_args
*ap
)
1779 struct bio
*bio
= ap
->a_bio
;
1781 struct buf
*bp
= bio
->bio_buf
;
1782 struct vnode
*vp
= ap
->a_vp
;
1787 if (vp
->v_type
== VBLK
|| vp
->v_type
== VCHR
)
1788 panic("ufs_strategy: spec");
1789 nbio
= push_bio(bio
);
1790 if (nbio
->bio_offset
== NOOFFSET
) {
1791 error
= VOP_BMAP(vp
, bio
->bio_offset
, &nbio
->bio_offset
,
1792 NULL
, NULL
, bp
->b_cmd
);
1794 bp
->b_error
= error
;
1795 bp
->b_flags
|= B_ERROR
;
1796 /* I/O was never started on nbio, must biodone(bio) */
1800 if (nbio
->bio_offset
== NOOFFSET
)
1803 if (nbio
->bio_offset
== NOOFFSET
) {
1805 * We hit a hole in the file. The buffer has been zero-filled
1806 * so just biodone() it.
1810 vn_strategy(ip
->i_devvp
, nbio
);
1816 * Print out the contents of an inode.
1818 * ufs_print(struct vnode *a_vp)
1822 ufs_print(struct vop_print_args
*ap
)
1824 struct vnode
*vp
= ap
->a_vp
;
1825 struct inode
*ip
= VTOI(vp
);
1827 kprintf("tag VT_UFS, ino %lu, on dev %s (%d, %d)",
1828 (u_long
)ip
->i_number
, devtoname(ip
->i_dev
), major(ip
->i_dev
),
1830 if (vp
->v_type
== VFIFO
)
1832 lockmgr_printinfo(&vp
->v_lock
);
1838 * Read wrapper for fifos.
1840 * ufsfifo_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
1841 * struct ucred *a_cred)
1845 ufsfifo_read(struct vop_read_args
*ap
)
1852 resid
= uio
->uio_resid
;
1853 error
= VOCALL(&fifo_vnode_vops
, &ap
->a_head
);
1854 ip
= VTOI(ap
->a_vp
);
1855 if ((ap
->a_vp
->v_mount
->mnt_flag
& MNT_NOATIME
) == 0 && ip
!= NULL
&&
1856 (uio
->uio_resid
!= resid
|| (error
== 0 && resid
!= 0)))
1857 VTOI(ap
->a_vp
)->i_flag
|= IN_ACCESS
;
1862 * Write wrapper for fifos.
1864 * ufsfifo_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
1865 * struct ucred *a_cred)
1869 ufsfifo_write(struct vop_write_args
*ap
)
1876 resid
= uio
->uio_resid
;
1877 error
= VOCALL(&fifo_vnode_vops
, &ap
->a_head
);
1878 ip
= VTOI(ap
->a_vp
);
1879 if (ip
!= NULL
&& (uio
->uio_resid
!= resid
|| (error
== 0 && resid
!= 0)))
1880 VTOI(ap
->a_vp
)->i_flag
|= IN_CHANGE
| IN_UPDATE
;
1885 * Close wrapper for fifos.
1887 * Update the times on the inode then do device close.
1889 * ufsfifo_close(struct vnode *a_vp, int a_fflag)
1893 ufsfifo_close(struct vop_close_args
*ap
)
1895 struct vnode
*vp
= ap
->a_vp
;
1897 if (VREFCNT(vp
) > 1)
1899 return (VOCALL(&fifo_vnode_vops
, &ap
->a_head
));
1903 * Kqfilter wrapper for fifos.
1905 * Fall through to ufs kqfilter routines if needed
1909 ufsfifo_kqfilter(struct vop_kqfilter_args
*ap
)
1913 error
= VOCALL(&fifo_vnode_vops
, &ap
->a_head
);
1915 error
= ufs_kqfilter(ap
);
1920 * Advisory record locking support
1922 * ufs_advlock(struct vnode *a_vp, caddr_t a_id, int a_op, struct flock *a_fl,
1927 ufs_advlock(struct vop_advlock_args
*ap
)
1929 struct inode
*ip
= VTOI(ap
->a_vp
);
1931 return (lf_advlock(ap
, &(ip
->i_lockf
), ip
->i_size
));
1935 * Initialize the vnode associated with a new inode, handle aliased
1938 * Make sure directories have their VM object now rather then later,
1939 * saving us from having to check on all the myrid directory VOPs
1940 * that might be executed without a VOP_OPEN being performed.
1943 ufs_vinit(struct mount
*mntp
, struct vnode
**vpp
)
1952 vp
->v_type
= IFTOVT(ip
->i_mode
);
1954 switch(vp
->v_type
) {
1957 vp
->v_ops
= &mntp
->mnt_vn_spec_ops
;
1958 addaliasu(vp
, umajor(ip
->i_rdev
), uminor(ip
->i_rdev
));
1961 vp
->v_ops
= &mntp
->mnt_vn_fifo_ops
;
1965 vinitvmio(vp
, ip
->i_size
,
1966 blkoffsize(ip
->i_fs
, ip
, ip
->i_size
),
1967 blkoff(ip
->i_fs
, ip
->i_size
));
1970 if (ip
->i_size
>= vp
->v_mount
->mnt_maxsymlinklen
) {
1971 vinitvmio(vp
, ip
->i_size
,
1972 blkoffsize(ip
->i_fs
, ip
, ip
->i_size
),
1973 blkoff(ip
->i_fs
, ip
->i_size
));
1981 if (ip
->i_number
== ROOTINO
)
1982 vsetflags(vp
, VROOT
);
1984 * Initialize modrev times
1986 getmicrouptime(&tv
);
1987 SETHIGH(ip
->i_modrev
, tv
.tv_sec
);
1988 SETLOW(ip
->i_modrev
, tv
.tv_usec
* 4294);
1994 * Allocate a new inode.
1998 ufs_makeinode(int mode
, struct vnode
*dvp
, struct vnode
**vpp
,
1999 struct componentname
*cnp
)
2001 struct inode
*ip
, *pdir
;
2002 struct direct newdir
;
2008 if ((mode
& IFMT
) == 0)
2011 error
= ffs_valloc(dvp
, mode
, cnp
->cn_cred
, &tvp
);
2015 ip
->i_flags
= pdir
->i_flags
& (SF_NOHISTORY
|UF_NOHISTORY
|UF_NODUMP
);
2016 ip
->i_gid
= pdir
->i_gid
;
2020 struct ucred ucred
, *ucp
;
2024 * If we are not the owner of the directory,
2025 * and we are hacking owners here, (only do this where told to)
2026 * and we are not giving it TO root, (would subvert quotas)
2027 * then go ahead and give it to the other user.
2028 * Note that this drops off the execute bits for security.
2030 if ((dvp
->v_mount
->mnt_flag
& MNT_SUIDDIR
) &&
2031 (pdir
->i_mode
& ISUID
) &&
2032 (pdir
->i_uid
!= cnp
->cn_cred
->cr_uid
) && pdir
->i_uid
) {
2033 ip
->i_uid
= pdir
->i_uid
;
2037 * Make sure the correct user gets charged
2039 * Quickly knock up a dummy credential for the victim.
2040 * XXX This seems to never be accessed out of our
2041 * context so a stack variable is ok.
2044 ucred
.cr_uid
= ip
->i_uid
;
2045 ucred
.cr_ngroups
= 1;
2046 ucred
.cr_groups
[0] = pdir
->i_gid
;
2050 ip
->i_uid
= cnp
->cn_cred
->cr_uid
;
2053 if ((error
= ufs_getinoquota(ip
)) ||
2054 (error
= ufs_chkiq(ip
, 1, ucp
, 0))) {
2055 ffs_vfree(tvp
, ip
->i_number
, mode
);
2061 #else /* !SUIDDIR */
2062 ip
->i_uid
= cnp
->cn_cred
->cr_uid
;
2064 if ((error
= ufs_getinoquota(ip
)) ||
2065 (error
= ufs_chkiq(ip
, 1, cnp
->cn_cred
, 0))) {
2066 ffs_vfree(tvp
, ip
->i_number
, mode
);
2071 #endif /* !SUIDDIR */
2072 ip
->i_din
.di_spare
[0] = 0;
2073 ip
->i_din
.di_spare
[1] = 0;
2074 ip
->i_flag
|= IN_ACCESS
| IN_CHANGE
| IN_UPDATE
;
2076 tvp
->v_type
= IFTOVT(mode
); /* Rest init'd in getnewvnode(). */
2079 if (DOINGSOFTDEP(tvp
))
2080 softdep_change_linkcnt(ip
);
2081 if ((ip
->i_mode
& ISGID
) && !groupmember(ip
->i_gid
, cnp
->cn_cred
) &&
2082 priv_check_cred(cnp
->cn_cred
, PRIV_VFS_SETGID
, 0)) {
2083 ip
->i_mode
&= ~ISGID
;
2086 if (cnp
->cn_flags
& CNP_ISWHITEOUT
)
2087 ip
->i_flags
|= UF_OPAQUE
;
2090 * Regular files and directories need VM objects. Softlinks do
2091 * not (not immediately anyway).
2093 if (tvp
->v_type
== VREG
|| tvp
->v_type
== VDIR
)
2094 vinitvmio(tvp
, 0, PAGE_SIZE
, -1);
2097 * Make sure inode goes to disk before directory entry.
2099 error
= ffs_update(tvp
, !(DOINGSOFTDEP(tvp
) | DOINGASYNC(tvp
)));
2102 ufs_makedirentry(ip
, cnp
, &newdir
);
2103 error
= ufs_direnter(dvp
, tvp
, &newdir
, cnp
, NULL
);
2111 * Write error occurred trying to update the inode
2112 * or the directory so must deallocate the inode.
2116 ip
->i_flag
|= IN_CHANGE
;
2117 if (DOINGSOFTDEP(tvp
))
2118 softdep_change_linkcnt(ip
);
2124 ufs_missingop(struct vop_generic_args
*ap
)
2126 panic("no vop function for %s in ufs child", ap
->a_desc
->sd_name
);
2127 return (EOPNOTSUPP
);
2130 static struct filterops ufsread_filtops
=
2131 { FILTEROP_ISFD
, NULL
, filt_ufsdetach
, filt_ufsread
};
2132 static struct filterops ufswrite_filtops
=
2133 { FILTEROP_ISFD
, NULL
, filt_ufsdetach
, filt_ufswrite
};
2134 static struct filterops ufsvnode_filtops
=
2135 { FILTEROP_ISFD
, NULL
, filt_ufsdetach
, filt_ufsvnode
};
2138 * ufs_kqfilter(struct vnode *a_vp, struct knote *a_kn)
2141 ufs_kqfilter(struct vop_kqfilter_args
*ap
)
2143 struct vnode
*vp
= ap
->a_vp
;
2144 struct knote
*kn
= ap
->a_kn
;
2146 switch (kn
->kn_filter
) {
2148 kn
->kn_fop
= &ufsread_filtops
;
2151 kn
->kn_fop
= &ufswrite_filtops
;
2154 kn
->kn_fop
= &ufsvnode_filtops
;
2157 return (EOPNOTSUPP
);
2160 kn
->kn_hook
= (caddr_t
)vp
;
2162 /* XXX: kq token actually protects the list */
2163 lwkt_gettoken(&vp
->v_token
);
2164 knote_insert(&vp
->v_pollinfo
.vpi_kqinfo
.ki_note
, kn
);
2165 lwkt_reltoken(&vp
->v_token
);
2171 filt_ufsdetach(struct knote
*kn
)
2173 struct vnode
*vp
= (struct vnode
*)kn
->kn_hook
;
2175 lwkt_gettoken(&vp
->v_token
);
2176 knote_remove(&vp
->v_pollinfo
.vpi_kqinfo
.ki_note
, kn
);
2177 lwkt_reltoken(&vp
->v_token
);
2182 filt_ufsread(struct knote
*kn
, long hint
)
2184 struct vnode
*vp
= (struct vnode
*)kn
->kn_hook
;
2185 struct inode
*ip
= VTOI(vp
);
2189 * filesystem is gone, so set the EOF flag and schedule
2190 * the knote for deletion.
2192 if (hint
== NOTE_REVOKE
) {
2193 kn
->kn_flags
|= (EV_EOF
| EV_NODATA
| EV_ONESHOT
);
2197 off
= ip
->i_size
- kn
->kn_fp
->f_offset
;
2198 kn
->kn_data
= (off
< INTPTR_MAX
) ? off
: INTPTR_MAX
;
2199 if (kn
->kn_sfflags
& NOTE_OLDAPI
)
2201 return (kn
->kn_data
!= 0);
2206 filt_ufswrite(struct knote
*kn
, long hint
)
2209 * filesystem is gone, so set the EOF flag and schedule
2210 * the knote for deletion.
2212 if (hint
== NOTE_REVOKE
)
2213 kn
->kn_flags
|= (EV_EOF
| EV_NODATA
| EV_ONESHOT
);
2220 filt_ufsvnode(struct knote
*kn
, long hint
)
2222 if (kn
->kn_sfflags
& hint
)
2223 kn
->kn_fflags
|= hint
;
2224 if (hint
== NOTE_REVOKE
) {
2225 kn
->kn_flags
|= (EV_EOF
| EV_NODATA
);
2228 return (kn
->kn_fflags
!= 0);
2231 /* Global vfs data structures for ufs. */
2232 static struct vop_ops ufs_vnode_vops
= {
2233 .vop_default
= vop_defaultop
,
2234 .vop_fsync
= (void *)ufs_missingop
,
2235 .vop_read
= (void *)ufs_missingop
,
2236 .vop_reallocblks
= (void *)ufs_missingop
,
2237 .vop_write
= (void *)ufs_missingop
,
2238 .vop_access
= ufs_access
,
2239 .vop_advlock
= ufs_advlock
,
2240 .vop_bmap
= ufs_bmap
,
2241 .vop_old_lookup
= ufs_lookup
,
2242 .vop_close
= ufs_close
,
2243 .vop_old_create
= ufs_create
,
2244 .vop_getattr
= ufs_getattr
,
2245 .vop_inactive
= ufs_inactive
,
2246 .vop_old_link
= ufs_link
,
2247 .vop_old_mkdir
= ufs_mkdir
,
2248 .vop_old_mknod
= ufs_mknod
,
2249 .vop_mmap
= ufs_mmap
,
2250 .vop_open
= vop_stdopen
,
2251 .vop_pathconf
= vop_stdpathconf
,
2252 .vop_kqfilter
= ufs_kqfilter
,
2253 .vop_print
= ufs_print
,
2254 .vop_readdir
= ufs_readdir
,
2255 .vop_readlink
= ufs_readlink
,
2256 .vop_reclaim
= ufs_reclaim
,
2257 .vop_old_remove
= ufs_remove
,
2258 .vop_old_rename
= ufs_rename
,
2259 .vop_old_rmdir
= ufs_rmdir
,
2260 .vop_setattr
= ufs_setattr
,
2261 .vop_markatime
= ufs_markatime
,
2262 .vop_strategy
= ufs_strategy
,
2263 .vop_old_symlink
= ufs_symlink
,
2264 .vop_old_whiteout
= ufs_whiteout
2267 static struct vop_ops ufs_spec_vops
= {
2268 .vop_default
= vop_defaultop
,
2269 .vop_fsync
= (void *)ufs_missingop
,
2270 .vop_access
= ufs_access
,
2271 .vop_close
= ufs_close
,
2272 .vop_getattr
= ufs_getattr
,
2273 .vop_inactive
= ufs_inactive
,
2274 .vop_print
= ufs_print
,
2275 .vop_read
= vop_stdnoread
,
2276 .vop_reclaim
= ufs_reclaim
,
2277 .vop_setattr
= ufs_setattr
,
2278 .vop_markatime
= ufs_markatime
,
2279 .vop_write
= vop_stdnowrite
2282 static struct vop_ops ufs_fifo_vops
= {
2283 .vop_default
= fifo_vnoperate
,
2284 .vop_fsync
= (void *)ufs_missingop
,
2285 .vop_access
= ufs_access
,
2286 .vop_close
= ufsfifo_close
,
2287 .vop_getattr
= ufs_getattr
,
2288 .vop_inactive
= ufs_inactive
,
2289 .vop_kqfilter
= ufsfifo_kqfilter
,
2290 .vop_print
= ufs_print
,
2291 .vop_read
= ufsfifo_read
,
2292 .vop_reclaim
= ufs_reclaim
,
2293 .vop_setattr
= ufs_setattr
,
2294 .vop_markatime
= ufs_markatime
,
2295 .vop_write
= ufsfifo_write
2298 VNODEOP_SET(ufs_vnode_vops
);
2299 VNODEOP_SET(ufs_spec_vops
);
2300 VNODEOP_SET(ufs_fifo_vops
);
2306 ufs_vnoperate(struct vop_generic_args
*ap
)
2308 return (VOCALL(&ufs_vnode_vops
, ap
));
2312 * ufs_vnoperatefifo()
2315 ufs_vnoperatefifo(struct vop_generic_args
*ap
)
2317 return (VOCALL(&ufs_fifo_vops
, ap
));
2321 * ufs_vnoperatespec()
2324 ufs_vnoperatespec(struct vop_generic_args
*ap
)
2326 return (VOCALL(&ufs_spec_vops
, ap
));