diff options
author | johan <johan@FreeBSD.org> | 2002-07-10 17:31:58 +0000 |
---|---|---|
committer | johan <johan@FreeBSD.org> | 2002-07-10 17:31:58 +0000 |
commit | e6054a6304165e277f3142907b1fc75599d333db (patch) | |
tree | feca2d379ed9c62ae7011a1ffb101b7b62e44d63 /sys | |
parent | db066a0c1abecd8df1b7e216ecaa755300b48c6d (diff) | |
download | FreeBSD-src-e6054a6304165e277f3142907b1fc75599d333db.zip FreeBSD-src-e6054a6304165e277f3142907b1fc75599d333db.tar.gz |
Open accounting file for appending, not general writing.
This allows accton(1) to be used with an append-only file.
PR: 7169
Reported by: Joao Carlos Mendes Luis <jonny@jonny.eng.br>
Reviewed by: bde
Approved by: sheldonh (mentor)
MFC after: 2 weeks
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/kern_acct.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sys/kern/kern_acct.c b/sys/kern/kern_acct.c index 6626197..f5d9d1a 100644 --- a/sys/kern/kern_acct.c +++ b/sys/kern/kern_acct.c @@ -127,19 +127,19 @@ acct(td, uap) mtx_lock(&Giant); /* * If accounting is to be started to a file, open that file for - * writing and make sure it's a 'normal'. + * appending and make sure it's a 'normal'. */ if (SCARG(uap, path) != NULL) { NDINIT(&nd, LOOKUP, NOFOLLOW, UIO_USERSPACE, SCARG(uap, path), td); - flags = FWRITE; + flags = FWRITE | O_APPEND; error = vn_open(&nd, &flags, 0); if (error) goto done2; NDFREE(&nd, NDF_ONLY_PNBUF); VOP_UNLOCK(nd.ni_vp, 0, td); if (nd.ni_vp->v_type != VREG) { - vn_close(nd.ni_vp, FWRITE, td->td_ucred, td); + vn_close(nd.ni_vp, FWRITE | O_APPEND, td->td_ucred, td); error = EACCES; goto done2; } @@ -151,8 +151,8 @@ acct(td, uap) */ if (acctp != NULLVP || savacctp != NULLVP) { callout_stop(&acctwatch_callout); - error = vn_close((acctp != NULLVP ? acctp : savacctp), FWRITE, - td->td_ucred, td); + error = vn_close((acctp != NULLVP ? acctp : savacctp), + FWRITE | O_APPEND, td->td_ucred, td); acctp = savacctp = NULLVP; } if (SCARG(uap, path) == NULL) @@ -316,7 +316,8 @@ acctwatch(a) if (savacctp != NULLVP) { if (savacctp->v_type == VBAD) { - (void) vn_close(savacctp, FWRITE, NOCRED, NULL); + (void) vn_close(savacctp, FWRITE | O_APPEND, NOCRED, + NULL); savacctp = NULLVP; return; } @@ -330,7 +331,7 @@ acctwatch(a) if (acctp == NULLVP) return; if (acctp->v_type == VBAD) { - (void) vn_close(acctp, FWRITE, NOCRED, NULL); + (void) vn_close(acctp, FWRITE | O_APPEND, NOCRED, NULL); acctp = NULLVP; return; } |