summaryrefslogtreecommitdiffstats
path: root/sys/security
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2008-11-04 22:30:24 +0000
committerjhb <jhb@FreeBSD.org>2008-11-04 22:30:24 +0000
commitd4ebbe30ce4c825630ca48ceb5eebccd4c33605b (patch)
treeb1f6685ee258ff9ff9bf9d42f855d2496eb3ab2e /sys/security
parent4b489f9e4949c5f6f67754cdc0df93a4370d2437 (diff)
downloadFreeBSD-src-d4ebbe30ce4c825630ca48ceb5eebccd4c33605b.zip
FreeBSD-src-d4ebbe30ce4c825630ca48ceb5eebccd4c33605b.tar.gz
Don't lock the vnode around calls to vn_fullpath().
Reviewed by: csjp, rwatson
Diffstat (limited to 'sys/security')
-rw-r--r--sys/security/audit/audit_bsm_klib.c19
1 files changed, 3 insertions, 16 deletions
diff --git a/sys/security/audit/audit_bsm_klib.c b/sys/security/audit/audit_bsm_klib.c
index 94e5b29..a75a68b 100644
--- a/sys/security/audit/audit_bsm_klib.c
+++ b/sys/security/audit/audit_bsm_klib.c
@@ -492,7 +492,7 @@ audit_canon_path(struct thread *td, char *path, char *cpath)
char *rbuf, *fbuf, *copy;
struct filedesc *fdp;
struct sbuf sbf;
- int error, cwir, locked;
+ int error, cwir;
WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL, "%s: at %s:%d",
__func__, __FILE__, __LINE__);
@@ -539,17 +539,8 @@ audit_canon_path(struct thread *td, char *path, char *cpath)
* in the future.
*/
if (rvnp != NULL) {
- /*
- * Although unlikely, it is possible for filesystems to define
- * their own VOP_LOCK, so strictly speaking, we need to
- * conditionally pickup Giant around calls to vn_lock(9)
- */
- locked = VFS_LOCK_GIANT(rvnp->v_mount);
- vn_lock(rvnp, LK_EXCLUSIVE | LK_RETRY);
- vdrop(rvnp);
error = vn_fullpath_global(td, rvnp, &rbuf, &fbuf);
- VOP_UNLOCK(rvnp, 0);
- VFS_UNLOCK_GIANT(locked);
+ vdrop(rvnp);
if (error) {
cpath[0] = '\0';
if (cvnp != NULL)
@@ -560,12 +551,8 @@ audit_canon_path(struct thread *td, char *path, char *cpath)
free(fbuf, M_TEMP);
}
if (cvnp != NULL) {
- locked = VFS_LOCK_GIANT(cvnp->v_mount);
- vn_lock(cvnp, LK_EXCLUSIVE | LK_RETRY);
- vdrop(cvnp);
error = vn_fullpath(td, cvnp, &rbuf, &fbuf);
- VOP_UNLOCK(cvnp, 0);
- VFS_UNLOCK_GIANT(locked);
+ vdrop(cvnp);
if (error) {
cpath[0] = '\0';
return;
OpenPOWER on IntegriCloud