mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
check if locking takes too long
If acquiring a lock on the history or uvar file takes more than 250 ms disable locking of the file. On systems with broken remote file system locking it can cause tens of seconds delay after running each command which can make the shell borderline unusable. This also changes history file locking to use flock() rather than fcntl() to be consistent with uvar file locking. It also implements the 250 ms time limit before giving up on locking. Fixes #685
This commit is contained in:
parent
c6e3dd7965
commit
483e9fdea2
3 changed files with 85 additions and 61 deletions
|
@ -8,3 +8,7 @@ varFuncNullUB
|
|||
// the warning being suppressed. In other words this unmatchedSuppression
|
||||
// warnings are false positives.
|
||||
unmatchedSuppression
|
||||
|
||||
memleak:src/env_universal_common.cpp
|
||||
flockSemanticsWarning:src/env_universal_common.cpp
|
||||
flockSemanticsWarning:src/history.cpp
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <netinet/in.h>
|
||||
#include <pwd.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -14,20 +15,19 @@
|
|||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <wchar.h>
|
||||
#include <string>
|
||||
#ifdef HAVE_SYS_SELECT_H
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
#include <netinet/in.h>
|
||||
#include <map>
|
||||
#include <utility>
|
||||
// We need the sys/file.h for the flock() declaration on Linux but not OS X.
|
||||
#include <sys/file.h> // IWYU pragma: keep
|
||||
// We need the ioctl.h header so we can check if SIOCGIFHWADDR is defined by it so we know if we're
|
||||
// on a Linux system.
|
||||
#include <sys/ioctl.h> // IWYU pragma: keep
|
||||
// We need the sys/file.h for the flock() declaration on Linux but not OS X.
|
||||
#include <sys/file.h> // IWYU pragma: keep
|
||||
#ifdef HAVE_SYS_SELECT_H
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
#include <unistd.h>
|
||||
#include <wchar.h>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
#include "common.h"
|
||||
#include "env.h"
|
||||
|
@ -550,6 +550,28 @@ bool env_universal_t::open_temporary_file(const wcstring &directory, wcstring *o
|
|||
return success;
|
||||
}
|
||||
|
||||
/// Check how long the operation took and print a message if it took too long.
|
||||
/// Returns false if it took too long else true.
|
||||
static bool check_duration(double start_time) {
|
||||
double duration = timef() - start_time;
|
||||
if (duration > 0.25) {
|
||||
debug(1, _(L"Locking the universal var file took too long (%.3f seconds)."), duration);
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/// Try locking the file. Return true if we succeeded else false. This is safe in terms of the
|
||||
/// fallback function implemented in terms of fcntl: only ever run on the main thread, and protected
|
||||
/// by the universal variable lock.
|
||||
static bool lock_uvar_file(int fd) {
|
||||
double start_time = timef();
|
||||
while (flock(fd, LOCK_EX) == -1) {
|
||||
if (errno != EINTR) return false; // do nothing per issue #2149
|
||||
}
|
||||
return check_duration(start_time);
|
||||
}
|
||||
|
||||
bool env_universal_t::open_and_acquire_lock(const wcstring &path, int *out_fd) {
|
||||
// Attempt to open the file for reading at the given path, atomically acquiring a lock. On BSD,
|
||||
// we can use O_EXLOCK. On Linux, we open the file, take a lock, and then compare fstat() to
|
||||
|
@ -557,22 +579,25 @@ bool env_universal_t::open_and_acquire_lock(const wcstring &path, int *out_fd) {
|
|||
//
|
||||
// We pass O_RDONLY with O_CREAT; this creates a potentially empty file. We do this so that we
|
||||
// have something to lock on.
|
||||
int result_fd = -1;
|
||||
static bool do_locking = true;
|
||||
bool needs_lock = true;
|
||||
int flags = O_RDWR | O_CREAT;
|
||||
|
||||
#ifdef O_EXLOCK
|
||||
flags |= O_EXLOCK;
|
||||
needs_lock = false;
|
||||
if (do_locking) {
|
||||
flags |= O_EXLOCK;
|
||||
needs_lock = false;
|
||||
}
|
||||
#endif
|
||||
for (;;) {
|
||||
int fd = wopen_cloexec(path, flags, 0644);
|
||||
if (fd < 0) {
|
||||
if (errno == EINTR) {
|
||||
/* Signal; try again */
|
||||
continue;
|
||||
}
|
||||
|
||||
int fd = -1;
|
||||
while (fd == -1) {
|
||||
double start_time = timef();
|
||||
fd = wopen_cloexec(path, flags, 0644);
|
||||
if (fd == -1) {
|
||||
if (errno == EINTR) continue; // signaled; try again
|
||||
#ifdef O_EXLOCK
|
||||
else if (errno == ENOTSUP || errno == EOPNOTSUPP) {
|
||||
if (do_locking && (errno == ENOTSUP || errno == EOPNOTSUPP)) {
|
||||
// Filesystem probably does not support locking. Clear the flag and try again. Note
|
||||
// that we try taking the lock via flock anyways. Note that on Linux the two errno
|
||||
// symbols have the same value but on BSD they're different.
|
||||
|
@ -581,30 +606,20 @@ bool env_universal_t::open_and_acquire_lock(const wcstring &path, int *out_fd) {
|
|||
continue;
|
||||
}
|
||||
#endif
|
||||
else {
|
||||
const char *error = strerror(errno);
|
||||
debug(0, _(L"Unable to open universal variable file '%ls': %s"), path.c_str(),
|
||||
error);
|
||||
break;
|
||||
}
|
||||
const char *error = strerror(errno);
|
||||
debug(0, _(L"Unable to open universal variable file '%ls': %s"), path.c_str(), error);
|
||||
break;
|
||||
}
|
||||
|
||||
// If we get here, we must have a valid fd.
|
||||
assert(fd >= 0);
|
||||
assert(fd >= 0); // if we get here, we must have a valid fd
|
||||
if (!needs_lock && do_locking) {
|
||||
do_locking = check_duration(start_time);
|
||||
}
|
||||
|
||||
// Try taking the lock, if necessary. If we failed, we may be on lockless NFS, etc.; in that
|
||||
// case we pretend we succeeded. See the comment in save_to_path for the rationale.
|
||||
if (needs_lock) {
|
||||
// This is safe in terms of the fallback function implemented in terms of fcntl: only
|
||||
// ever run on the main thread, and protected by the universal variable lock.
|
||||
// cppcheck-suppress flockSemanticsWarning
|
||||
while (flock(fd, LOCK_EX) < 0) {
|
||||
/* error */
|
||||
if (errno != EINTR) {
|
||||
/* Do nothing per #2149 */
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (needs_lock && do_locking) {
|
||||
do_locking = lock_uvar_file(fd);
|
||||
}
|
||||
|
||||
// Hopefully we got the lock. However, it's possible the file changed out from under us
|
||||
|
@ -612,18 +627,12 @@ bool env_universal_t::open_and_acquire_lock(const wcstring &path, int *out_fd) {
|
|||
if (file_id_for_fd(fd) != file_id_for_path(path)) {
|
||||
// Oops, it changed! Try again.
|
||||
close(fd);
|
||||
continue;
|
||||
fd = -1;
|
||||
}
|
||||
|
||||
// Finally, we have an fd that's valid and hopefully locked. We're done.
|
||||
assert(fd >= 0);
|
||||
result_fd = fd;
|
||||
break;
|
||||
}
|
||||
|
||||
*out_fd = result_fd;
|
||||
|
||||
return result_fd >= 0;
|
||||
*out_fd = fd;
|
||||
return fd >= 0;
|
||||
}
|
||||
|
||||
// Returns true if modified variables were written, false if not. (There may still be variable
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
// History functions, part of the user interface.
|
||||
//
|
||||
#include "config.h" // IWYU pragma: keep
|
||||
|
||||
#include <assert.h>
|
||||
|
@ -10,6 +9,8 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
// We need the sys/file.h for the flock() declaration on Linux but not OS X.
|
||||
#include <sys/file.h> // IWYU pragma: keep
|
||||
#include <sys/mman.h>
|
||||
#include <sys/stat.h>
|
||||
#include <time.h>
|
||||
|
@ -17,6 +18,7 @@
|
|||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
#include <algorithm>
|
||||
#include <cwchar>
|
||||
#include <iterator>
|
||||
#include <map>
|
||||
|
||||
|
@ -121,14 +123,21 @@ class time_profiler_t {
|
|||
}
|
||||
};
|
||||
|
||||
/// Lock a file via fcntl; returns true on success, false on failure.
|
||||
static bool history_file_lock(int fd, short type) {
|
||||
assert(type == F_RDLCK || type == F_WRLCK);
|
||||
struct flock flk = {};
|
||||
flk.l_type = type;
|
||||
flk.l_whence = SEEK_SET;
|
||||
int ret = fcntl(fd, F_SETLKW, (void *)&flk);
|
||||
return ret != -1;
|
||||
/// Lock the history file.
|
||||
/// Returns true on success, false on failure.
|
||||
static bool history_file_lock(int fd, int lock_type) {
|
||||
static bool do_locking = true;
|
||||
if (!do_locking) return false;
|
||||
|
||||
double start_time = timef();
|
||||
int retval = flock(fd, lock_type);
|
||||
double duration = timef() - start_time;
|
||||
if (duration > 0.25) {
|
||||
debug(1, _(L"Locking the history file took too long (%.3f seconds)."), duration);
|
||||
do_locking = false;
|
||||
return false;
|
||||
}
|
||||
return retval != -1;
|
||||
}
|
||||
|
||||
/// Our LRU cache is used for restricting the amount of history we have, and limiting how long we
|
||||
|
@ -947,7 +956,7 @@ bool history_t::map_file(const wcstring &name, const char **out_map_start, size_
|
|||
// unlikely because we only treat an item as valid if it has a terminating newline.
|
||||
//
|
||||
// Simulate a failing lock in chaos_mode.
|
||||
if (!chaos_mode) history_file_lock(fd, F_RDLCK);
|
||||
if (!chaos_mode) history_file_lock(fd, LOCK_SH);
|
||||
off_t len = lseek(fd, 0, SEEK_END);
|
||||
if (len != (off_t)-1) {
|
||||
size_t mmap_length = (size_t)len;
|
||||
|
@ -961,6 +970,7 @@ bool history_t::map_file(const wcstring &name, const char **out_map_start, size_
|
|||
}
|
||||
}
|
||||
}
|
||||
if (!chaos_mode) history_file_lock(fd, LOCK_UN);
|
||||
close(fd);
|
||||
return result;
|
||||
}
|
||||
|
@ -1338,7 +1348,7 @@ bool history_t::save_internal_via_appending() {
|
|||
// by writing with O_APPEND.
|
||||
//
|
||||
// Simulate a failing lock in chaos_mode
|
||||
if (!chaos_mode) history_file_lock(out_fd, F_WRLCK);
|
||||
if (!chaos_mode) history_file_lock(out_fd, LOCK_EX);
|
||||
|
||||
// We (hopefully successfully) took the exclusive lock. Append to the file.
|
||||
// Note that this is sketchy for a few reasons:
|
||||
|
@ -1378,6 +1388,7 @@ bool history_t::save_internal_via_appending() {
|
|||
ok = true;
|
||||
}
|
||||
|
||||
if (!chaos_mode) history_file_lock(out_fd, LOCK_UN);
|
||||
close(out_fd);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue