aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/wutil.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-11-08 23:48:32 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-11-08 23:48:32 -0800
commit45dfa2d8640ab94c86ba97d5dc15db87badc67fb (patch)
treeb7b6a4a88c105b7f34c19bdda03fb0a1200f96d6 /src/wutil.h
parentc2024a6a948f3669f611d9830c1559fb2979c3ea (diff)
Attempt to fix the sporadic uvar test failures on Linux
We identify when the universal variable file has changed out from under us by comparing a bunch of fields from its stat: inode, device, size, high-precision timestamp, generation. Linux aggressively reuses inodes, and the size may be the same by coincidence (which is the case in the tests). Also, Linux officially has nanosecond precision, but in practice it seems to only uses millisecond precision for storing mtimes. Thus if there are three or more updates within a millisecond, every field we check may be the same, and we are vulnerable to the ABA problem. I believe this explains the occasional test failures. The solution is to manually set the nanosecond field of the mtime timestamp to something unlikely to be duplicated, like a random number, or better yet, the current time (with nanosecond precision). This is more in the spirit of the timestamp, and it means we're around a million times less likely to collide. This seems to fix the tests.
Diffstat (limited to 'src/wutil.h')
-rw-r--r--src/wutil.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wutil.h b/src/wutil.h
index 5c9a0ec2..9897439a 100644
--- a/src/wutil.h
+++ b/src/wutil.h
@@ -143,6 +143,8 @@ struct file_id_t
uint64_t size;
time_t change_seconds;
long change_nanoseconds;
+ time_t mod_seconds;
+ long mod_nanoseconds;
uint32_t generation;
bool operator==(const file_id_t &rhs) const;
@@ -152,6 +154,9 @@ struct file_id_t
bool operator<(const file_id_t &rhs) const;
static file_id_t file_id_from_stat(const struct stat *buf);
+
+ private:
+ int compare_file_id(const file_id_t &rhs) const;
};
file_id_t file_id_for_fd(int fd);