aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/filemon
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2016-03-22 22:41:03 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2016-03-22 22:41:03 +0000
commit4d9fbc5518b8ff96fd40c502a093ab66ce87c045 (patch)
treeb361e3557b13fc44b1c735e7e77f83391918b34a /sys/dev/filemon
parentf8fd3fb51851136d6e74578405d3ba9b01f223b9 (diff)
downloadsrc-4d9fbc5518b8ff96fd40c502a093ab66ce87c045.tar.gz
src-4d9fbc5518b8ff96fd40c502a093ab66ce87c045.zip
Follow-up r297156: Close the log in filemon_dtr rather than in the last reference.
If the tracer has decided to the close the log then it should be fully written, not getting more entries, when close(2) returns. This was a regression in r297156 in that it allowed a traced process to continue a traced syscall and add more entries to the log while the tracer had already closed its fd or exited. This was only really part of the daemonized process case which is abnormal. MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=297200
Diffstat (limited to 'sys/dev/filemon')
-rw-r--r--sys/dev/filemon/filemon.c53
1 files changed, 34 insertions, 19 deletions
diff --git a/sys/dev/filemon/filemon.c b/sys/dev/filemon/filemon.c
index 3a472f6342fd..37b9be672c52 100644
--- a/sys/dev/filemon/filemon.c
+++ b/sys/dev/filemon/filemon.c
@@ -109,14 +109,11 @@ filemon_acquire(struct filemon *filemon)
}
/*
- * Release a reference and on the last one write the footer and free the
- * filemon.
+ * Release a reference and free on the last one.
*/
static void
filemon_release(struct filemon *filemon)
{
- size_t len;
- struct timeval now;
if (refcount_release(&filemon->refcnt) == 0)
return;
@@ -127,18 +124,6 @@ filemon_release(struct filemon *filemon)
*/
sx_assert(&filemon->lock, SA_UNLOCKED);
- if (filemon->fp != NULL) {
- getmicrotime(&now);
-
- len = snprintf(filemon->msgbufr,
- sizeof(filemon->msgbufr),
- "# Stop %ju.%06ju\n# Bye bye\n",
- (uintmax_t)now.tv_sec, (uintmax_t)now.tv_usec);
-
- filemon_output(filemon, filemon->msgbufr, len);
- fdrop(filemon->fp, curthread);
- }
-
sx_destroy(&filemon->lock);
free(filemon, M_FILEMON);
}
@@ -260,6 +245,37 @@ filemon_untrack_processes(struct filemon *filemon)
"attached procs still.", __func__, filemon));
}
+/*
+ * Close out the log.
+ */
+static void
+filemon_close_log(struct filemon *filemon)
+{
+ struct file *fp;
+ struct timeval now;
+ size_t len;
+
+ sx_assert(&filemon->lock, SA_XLOCKED);
+ if (filemon->fp == NULL)
+ return;
+
+ getmicrotime(&now);
+
+ len = snprintf(filemon->msgbufr,
+ sizeof(filemon->msgbufr),
+ "# Stop %ju.%06ju\n# Bye bye\n",
+ (uintmax_t)now.tv_sec, (uintmax_t)now.tv_usec);
+
+ filemon_output(filemon, filemon->msgbufr, len);
+ fp = filemon->fp;
+ filemon->fp = NULL;
+
+ sx_xunlock(&filemon->lock);
+ fdrop(fp, curthread);
+ sx_xlock(&filemon->lock);
+
+ return;
+}
/* The devfs file is being closed. Untrace all processes. */
static void
@@ -272,11 +288,10 @@ filemon_dtr(void *data)
sx_xlock(&filemon->lock);
/*
- * Detach the filemon. The actual closing of it may not
- * occur until syscalls in other threads with references complete.
- * The filemon cannot be inherited after this though.
+ * Detach the filemon. It cannot be inherited after this.
*/
filemon_untrack_processes(filemon);
+ filemon_close_log(filemon);
filemon_drop(filemon);
}