summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormjg <mjg@FreeBSD.org>2014-09-26 20:05:28 +0000
committermjg <mjg@FreeBSD.org>2014-09-26 20:05:28 +0000
commitc60179fc3c7373df6621acbd14a4a663a7d913c6 (patch)
treeeaefd46ef01708944ea0bf54f9d685d62a0dd9dd
parentf86886920c13b46726523c9340d7c36be8b087ff (diff)
downloadFreeBSD-src-c60179fc3c7373df6621acbd14a4a663a7d913c6.zip
FreeBSD-src-c60179fc3c7373df6621acbd14a4a663a7d913c6.tar.gz
MFC r270993:
Fix up proc_realparent to always return correct process. Prior to the change it would always return initproc for non-traced processes. This fixes a regression in inferior(). Approved by: re (marius)
-rw-r--r--sys/kern/kern_descrip.c29
-rw-r--r--sys/kern/vfs_vnops.c3
-rw-r--r--sys/sys/file.h3
3 files changed, 17 insertions, 18 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c
index bb9ecb5..d4caa2d 100644
--- a/sys/kern/kern_descrip.c
+++ b/sys/kern/kern_descrip.c
@@ -477,7 +477,6 @@ kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg)
struct vnode *vp;
cap_rights_t rights;
int error, flg, tmp;
- u_int old, new;
uint64_t bsize;
off_t foffset;
@@ -761,26 +760,24 @@ kern_fcntl(struct thread *td, int fd, int cmd, intptr_t arg)
error = EBADF;
break;
}
+ vp = fp->f_vnode;
+ /*
+ * Exclusive lock synchronizes against f_seqcount reads and
+ * writes in sequential_heuristic().
+ */
+ error = vn_lock(vp, LK_EXCLUSIVE);
+ if (error != 0) {
+ fdrop(fp, td);
+ break;
+ }
if (arg >= 0) {
- vp = fp->f_vnode;
- error = vn_lock(vp, LK_SHARED);
- if (error != 0) {
- fdrop(fp, td);
- break;
- }
bsize = fp->f_vnode->v_mount->mnt_stat.f_iosize;
- VOP_UNLOCK(vp, 0);
fp->f_seqcount = (arg + bsize - 1) / bsize;
- do {
- new = old = fp->f_flag;
- new |= FRDAHEAD;
- } while (!atomic_cmpset_rel_int(&fp->f_flag, old, new));
+ atomic_set_int(&fp->f_flag, FRDAHEAD);
} else {
- do {
- new = old = fp->f_flag;
- new &= ~FRDAHEAD;
- } while (!atomic_cmpset_rel_int(&fp->f_flag, old, new));
+ atomic_clear_int(&fp->f_flag, FRDAHEAD);
}
+ VOP_UNLOCK(vp, 0);
fdrop(fp, td);
break;
diff --git a/sys/kern/vfs_vnops.c b/sys/kern/vfs_vnops.c
index 45d3490..de0c23b 100644
--- a/sys/kern/vfs_vnops.c
+++ b/sys/kern/vfs_vnops.c
@@ -438,7 +438,8 @@ static int
sequential_heuristic(struct uio *uio, struct file *fp)
{
- if (atomic_load_acq_int(&(fp->f_flag)) & FRDAHEAD)
+ ASSERT_VOP_LOCKED(fp->f_vnode, __func__);
+ if (fp->f_flag & FRDAHEAD)
return (fp->f_seqcount << IO_SEQSHIFT);
/*
diff --git a/sys/sys/file.h b/sys/sys/file.h
index 7b373f0..e3bdbe9 100644
--- a/sys/sys/file.h
+++ b/sys/sys/file.h
@@ -139,6 +139,7 @@ struct fileops {
*
* Below is the list of locks that protects members in struct file.
*
+ * (a) f_vnode lock required (shared allows both reads and writes)
* (f) protected with mtx_lock(mtx_pool_find(fp))
* (d) cdevpriv_mtx
* none not locked
@@ -164,7 +165,7 @@ struct file {
/*
* DTYPE_VNODE specific fields.
*/
- int f_seqcount; /* Count of sequential accesses. */
+ int f_seqcount; /* (a) Count of sequential accesses. */
off_t f_nextoff; /* next expected read/write offset. */
union {
struct cdev_privdata *fvn_cdevpriv;
OpenPOWER on IntegriCloud