2017-09-22 16:35:40 +00:00
|
|
|
#include "cache.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "ewah/ewok.h"
|
|
|
|
#include "fsmonitor.h"
|
2022-03-25 18:02:46 +00:00
|
|
|
#include "fsmonitor-ipc.h"
|
2017-09-22 16:35:40 +00:00
|
|
|
#include "run-command.h"
|
|
|
|
#include "strbuf.h"
|
|
|
|
|
2020-01-07 19:04:28 +00:00
|
|
|
#define INDEX_EXTENSION_VERSION1 (1)
|
|
|
|
#define INDEX_EXTENSION_VERSION2 (2)
|
2020-01-07 19:04:29 +00:00
|
|
|
#define HOOK_INTERFACE_VERSION1 (1)
|
|
|
|
#define HOOK_INTERFACE_VERSION2 (2)
|
2017-09-22 16:35:40 +00:00
|
|
|
|
|
|
|
struct trace_key trace_fsmonitor = TRACE_KEY_INIT(FSMONITOR);
|
|
|
|
|
2021-01-23 19:58:14 +00:00
|
|
|
static void assert_index_minimum(struct index_state *istate, size_t pos)
|
|
|
|
{
|
|
|
|
if (pos > istate->cache_nr)
|
|
|
|
BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)",
|
|
|
|
(uintmax_t)pos, istate->cache_nr);
|
|
|
|
}
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
static void fsmonitor_ewah_callback(size_t pos, void *is)
|
|
|
|
{
|
|
|
|
struct index_state *istate = (struct index_state *)is;
|
2019-10-11 20:11:23 +00:00
|
|
|
struct cache_entry *ce;
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2021-01-23 19:58:14 +00:00
|
|
|
assert_index_minimum(istate, pos + 1);
|
2019-10-11 20:11:23 +00:00
|
|
|
|
|
|
|
ce = istate->cache[pos];
|
2017-09-22 16:35:40 +00:00
|
|
|
ce->ce_flags &= ~CE_FSMONITOR_VALID;
|
|
|
|
}
|
|
|
|
|
2020-01-07 19:04:29 +00:00
|
|
|
static int fsmonitor_hook_version(void)
|
|
|
|
{
|
|
|
|
int hook_version;
|
|
|
|
|
|
|
|
if (git_config_get_int("core.fsmonitorhookversion", &hook_version))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (hook_version == HOOK_INTERFACE_VERSION1 ||
|
|
|
|
hook_version == HOOK_INTERFACE_VERSION2)
|
|
|
|
return hook_version;
|
|
|
|
|
|
|
|
warning("Invalid hook version '%i' in core.fsmonitorhookversion. "
|
|
|
|
"Must be 1 or 2.", hook_version);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
int read_fsmonitor_extension(struct index_state *istate, const void *data,
|
|
|
|
unsigned long sz)
|
|
|
|
{
|
|
|
|
const char *index = data;
|
|
|
|
uint32_t hdr_version;
|
|
|
|
uint32_t ewah_size;
|
|
|
|
struct ewah_bitmap *fsmonitor_dirty;
|
|
|
|
int ret;
|
2020-01-07 19:04:28 +00:00
|
|
|
uint64_t timestamp;
|
|
|
|
struct strbuf last_update = STRBUF_INIT;
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2020-01-07 19:04:28 +00:00
|
|
|
if (sz < sizeof(uint32_t) + 1 + sizeof(uint32_t))
|
2017-09-22 16:35:40 +00:00
|
|
|
return error("corrupt fsmonitor extension (too short)");
|
|
|
|
|
|
|
|
hdr_version = get_be32(index);
|
|
|
|
index += sizeof(uint32_t);
|
2020-01-07 19:04:28 +00:00
|
|
|
if (hdr_version == INDEX_EXTENSION_VERSION1) {
|
|
|
|
timestamp = get_be64(index);
|
|
|
|
strbuf_addf(&last_update, "%"PRIu64"", timestamp);
|
|
|
|
index += sizeof(uint64_t);
|
|
|
|
} else if (hdr_version == INDEX_EXTENSION_VERSION2) {
|
|
|
|
strbuf_addstr(&last_update, index);
|
|
|
|
index += last_update.len + 1;
|
|
|
|
} else {
|
2017-09-22 16:35:40 +00:00
|
|
|
return error("bad fsmonitor version %d", hdr_version);
|
2020-01-07 19:04:28 +00:00
|
|
|
}
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2020-01-07 19:04:28 +00:00
|
|
|
istate->fsmonitor_last_update = strbuf_detach(&last_update, NULL);
|
2017-09-22 16:35:40 +00:00
|
|
|
|
|
|
|
ewah_size = get_be32(index);
|
|
|
|
index += sizeof(uint32_t);
|
|
|
|
|
|
|
|
fsmonitor_dirty = ewah_new();
|
|
|
|
ret = ewah_read_mmap(fsmonitor_dirty, index, ewah_size);
|
|
|
|
if (ret != ewah_size) {
|
|
|
|
ewah_free(fsmonitor_dirty);
|
|
|
|
return error("failed to parse ewah bitmap reading fsmonitor index extension");
|
|
|
|
}
|
2017-10-27 23:26:37 +00:00
|
|
|
istate->fsmonitor_dirty = fsmonitor_dirty;
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2021-01-23 19:58:14 +00:00
|
|
|
if (!istate->split_index)
|
|
|
|
assert_index_minimum(istate, istate->fsmonitor_dirty->bit_size);
|
2019-10-11 20:11:23 +00:00
|
|
|
|
2021-02-03 15:34:48 +00:00
|
|
|
trace2_data_string("index", NULL, "extension/fsmn/read/token",
|
|
|
|
istate->fsmonitor_last_update);
|
|
|
|
trace_printf_key(&trace_fsmonitor,
|
|
|
|
"read fsmonitor extension successful '%s'",
|
|
|
|
istate->fsmonitor_last_update);
|
2017-09-22 16:35:40 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-09 19:58:10 +00:00
|
|
|
void fill_fsmonitor_bitmap(struct index_state *istate)
|
|
|
|
{
|
2019-10-11 20:11:23 +00:00
|
|
|
unsigned int i, skipped = 0;
|
2017-11-09 19:58:10 +00:00
|
|
|
istate->fsmonitor_dirty = ewah_new();
|
2019-10-11 20:11:23 +00:00
|
|
|
for (i = 0; i < istate->cache_nr; i++) {
|
|
|
|
if (istate->cache[i]->ce_flags & CE_REMOVE)
|
|
|
|
skipped++;
|
|
|
|
else if (!(istate->cache[i]->ce_flags & CE_FSMONITOR_VALID))
|
|
|
|
ewah_set(istate->fsmonitor_dirty, i - skipped);
|
|
|
|
}
|
2017-11-09 19:58:10 +00:00
|
|
|
}
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
void write_fsmonitor_extension(struct strbuf *sb, struct index_state *istate)
|
|
|
|
{
|
|
|
|
uint32_t hdr_version;
|
|
|
|
uint32_t ewah_start;
|
|
|
|
uint32_t ewah_size = 0;
|
|
|
|
int fixup = 0;
|
|
|
|
|
2021-01-23 19:58:14 +00:00
|
|
|
if (!istate->split_index)
|
|
|
|
assert_index_minimum(istate, istate->fsmonitor_dirty->bit_size);
|
2019-10-11 20:11:23 +00:00
|
|
|
|
2020-01-07 19:04:28 +00:00
|
|
|
put_be32(&hdr_version, INDEX_EXTENSION_VERSION2);
|
2017-09-22 16:35:40 +00:00
|
|
|
strbuf_add(sb, &hdr_version, sizeof(uint32_t));
|
|
|
|
|
2020-01-07 19:04:28 +00:00
|
|
|
strbuf_addstr(sb, istate->fsmonitor_last_update);
|
|
|
|
strbuf_addch(sb, 0); /* Want to keep a NUL */
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
fixup = sb->len;
|
|
|
|
strbuf_add(sb, &ewah_size, sizeof(uint32_t)); /* we'll fix this up later */
|
|
|
|
|
|
|
|
ewah_start = sb->len;
|
2017-11-09 19:58:10 +00:00
|
|
|
ewah_serialize_strbuf(istate->fsmonitor_dirty, sb);
|
|
|
|
ewah_free(istate->fsmonitor_dirty);
|
|
|
|
istate->fsmonitor_dirty = NULL;
|
2017-09-22 16:35:40 +00:00
|
|
|
|
|
|
|
/* fix up size field */
|
|
|
|
put_be32(&ewah_size, sb->len - ewah_start);
|
|
|
|
memcpy(sb->buf + fixup, &ewah_size, sizeof(uint32_t));
|
|
|
|
|
2021-02-03 15:34:48 +00:00
|
|
|
trace2_data_string("index", NULL, "extension/fsmn/write/token",
|
|
|
|
istate->fsmonitor_last_update);
|
|
|
|
trace_printf_key(&trace_fsmonitor,
|
|
|
|
"write fsmonitor extension successful '%s'",
|
|
|
|
istate->fsmonitor_last_update);
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-01-07 19:04:28 +00:00
|
|
|
* Call the query-fsmonitor hook passing the last update token of the saved results.
|
2017-09-22 16:35:40 +00:00
|
|
|
*/
|
2022-03-25 18:02:46 +00:00
|
|
|
static int query_fsmonitor_hook(struct repository *r,
|
|
|
|
int version,
|
|
|
|
const char *last_update,
|
|
|
|
struct strbuf *query_result)
|
2017-09-22 16:35:40 +00:00
|
|
|
{
|
|
|
|
struct child_process cp = CHILD_PROCESS_INIT;
|
2021-02-03 15:34:47 +00:00
|
|
|
int result;
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2022-03-25 18:02:46 +00:00
|
|
|
if (fsm_settings__get_mode(r) != FSMONITOR_MODE_HOOK)
|
2017-09-22 16:35:40 +00:00
|
|
|
return -1;
|
|
|
|
|
2022-03-25 18:02:46 +00:00
|
|
|
strvec_push(&cp.args, fsm_settings__get_hook_path(r));
|
2020-07-28 20:24:53 +00:00
|
|
|
strvec_pushf(&cp.args, "%d", version);
|
|
|
|
strvec_pushf(&cp.args, "%s", last_update);
|
2017-09-22 16:35:40 +00:00
|
|
|
cp.use_shell = 1;
|
2017-10-27 23:26:34 +00:00
|
|
|
cp.dir = get_git_work_tree();
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2021-02-03 15:34:47 +00:00
|
|
|
trace2_region_enter("fsm_hook", "query", NULL);
|
|
|
|
|
|
|
|
result = capture_command(&cp, query_result, 1024);
|
|
|
|
|
|
|
|
if (result)
|
|
|
|
trace2_data_intmax("fsm_hook", NULL, "query/failed", result);
|
2022-03-25 18:02:44 +00:00
|
|
|
else
|
2021-02-03 15:34:47 +00:00
|
|
|
trace2_data_intmax("fsm_hook", NULL, "query/response-length",
|
|
|
|
query_result->len);
|
|
|
|
|
|
|
|
trace2_region_leave("fsm_hook", "query", NULL);
|
|
|
|
|
|
|
|
return result;
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 15:34:49 +00:00
|
|
|
static void fsmonitor_refresh_callback(struct index_state *istate, char *name)
|
2017-09-22 16:35:40 +00:00
|
|
|
{
|
2021-02-03 15:34:49 +00:00
|
|
|
int i, len = strlen(name);
|
2022-05-26 21:47:14 +00:00
|
|
|
int pos = index_name_pos(istate, name, len);
|
|
|
|
|
|
|
|
trace_printf_key(&trace_fsmonitor,
|
|
|
|
"fsmonitor_refresh_callback '%s' (pos %d)",
|
|
|
|
name, pos);
|
2021-02-03 15:34:49 +00:00
|
|
|
|
2022-05-26 21:47:14 +00:00
|
|
|
if (name[len - 1] == '/') {
|
2021-02-03 15:34:49 +00:00
|
|
|
/*
|
2022-05-26 21:47:14 +00:00
|
|
|
* The daemon can decorate directory events, such as
|
|
|
|
* moves or renames, with a trailing slash if the OS
|
|
|
|
* FS Event contains sufficient information, such as
|
|
|
|
* MacOS.
|
|
|
|
*
|
|
|
|
* Use this to invalidate the entire cone under that
|
|
|
|
* directory.
|
|
|
|
*
|
|
|
|
* We do not expect an exact match because the index
|
|
|
|
* does not normally contain directory entries, so we
|
|
|
|
* start at the insertion point and scan.
|
2021-02-03 15:34:49 +00:00
|
|
|
*/
|
2022-05-26 21:47:14 +00:00
|
|
|
if (pos < 0)
|
|
|
|
pos = -pos - 1;
|
2021-02-03 15:34:49 +00:00
|
|
|
|
|
|
|
/* Mark all entries for the folder invalid */
|
2022-05-26 21:47:14 +00:00
|
|
|
for (i = pos; i < istate->cache_nr; i++) {
|
|
|
|
if (!starts_with(istate->cache[i]->name, name))
|
|
|
|
break;
|
|
|
|
istate->cache[i]->ce_flags &= ~CE_FSMONITOR_VALID;
|
2021-02-03 15:34:49 +00:00
|
|
|
}
|
2022-05-26 21:47:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We need to remove the traling "/" from the path
|
|
|
|
* for the untracked cache.
|
|
|
|
*/
|
2021-02-03 15:34:49 +00:00
|
|
|
name[len - 1] = '\0';
|
2022-05-26 21:47:14 +00:00
|
|
|
} else if (pos >= 0) {
|
|
|
|
/*
|
|
|
|
* We have an exact match for this path and can just
|
|
|
|
* invalidate it.
|
|
|
|
*/
|
|
|
|
istate->cache[pos]->ce_flags &= ~CE_FSMONITOR_VALID;
|
2021-02-03 15:34:49 +00:00
|
|
|
} else {
|
2022-05-26 21:47:14 +00:00
|
|
|
/*
|
|
|
|
* The path is not a tracked file -or- it is a
|
|
|
|
* directory event on a platform that cannot
|
|
|
|
* distinguish between file and directory events in
|
|
|
|
* the event handler, such as Windows.
|
|
|
|
*
|
|
|
|
* Scan as if it is a directory and invalidate the
|
|
|
|
* cone under it. (But remember to ignore items
|
|
|
|
* between "name" and "name/", such as "name-" and
|
|
|
|
* "name.".
|
|
|
|
*/
|
|
|
|
pos = -pos - 1;
|
|
|
|
|
|
|
|
for (i = pos; i < istate->cache_nr; i++) {
|
|
|
|
if (!starts_with(istate->cache[i]->name, name))
|
|
|
|
break;
|
|
|
|
if ((unsigned char)istate->cache[i]->name[len] > '/')
|
|
|
|
break;
|
|
|
|
if (istate->cache[i]->name[len] == '/')
|
|
|
|
istate->cache[i]->ce_flags &= ~CE_FSMONITOR_VALID;
|
2021-02-03 15:34:49 +00:00
|
|
|
}
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mark the untracked cache dirty even if it wasn't found in the index
|
|
|
|
* as it could be a new untracked file.
|
|
|
|
*/
|
dir.c: ignore paths containing .git when invalidating untracked cache
read_directory() code ignores all paths named ".git" even if it's not
a valid git repository. See treat_path() for details. Since ".git" is
basically invisible to read_directory(), when we are asked to
invalidate a path that contains ".git", we can safely ignore it
because the slow path would not consider it anyway.
This helps when fsmonitor is used and we have a real ".git" repo at
worktree top. Occasionally .git/index will be updated and if the
fsmonitor hook does not filter it, untracked cache is asked to
invalidate the path ".git/index".
Without this patch, we invalidate the root directory unncessarily,
which:
- makes read_directory() fall back to slow path for root directory
(slower)
- makes the index dirty (because UNTR extension is updated). Depending
on the index size, writing it down could also be slow.
A note about the new "safe_path" knob. Since this new check could be
relatively expensive, avoid it when we know it's not needed. If the
path comes from the index, it can't contain ".git". If it does
contain, we may be screwed up at many more levels, not just this one.
Noticed-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-02-07 09:21:40 +00:00
|
|
|
untracked_cache_invalidate_path(istate, name, 0);
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 18:03:12 +00:00
|
|
|
/*
|
|
|
|
* The number of pathnames that we need to receive from FSMonitor
|
|
|
|
* before we force the index to be updated.
|
|
|
|
*
|
|
|
|
* Note that any pathname within the set of received paths MAY cause
|
|
|
|
* cache-entry or istate flag bits to be updated and thus cause the
|
|
|
|
* index to be updated on disk.
|
|
|
|
*
|
|
|
|
* However, the response may contain many paths (such as ignored
|
|
|
|
* paths) that will not update any flag bits. And thus not force the
|
|
|
|
* index to be updated. (This is fine and normal.) It also means
|
|
|
|
* that the token will not be updated in the FSMonitor index
|
|
|
|
* extension. So the next Git command will find the same token in the
|
|
|
|
* index, make the same token-relative request, and receive the same
|
|
|
|
* response (plus any newly changed paths). If this response is large
|
|
|
|
* (and continues to grow), performance could be impacted.
|
|
|
|
*
|
|
|
|
* For example, if the user runs a build and it writes 100K object
|
|
|
|
* files but doesn't modify any source files, the index would not need
|
|
|
|
* to be updated. The FSMonitor response (after the build and
|
|
|
|
* relative to a pre-build token) might be 5MB. Each subsequent Git
|
|
|
|
* command will receive that same 100K/5MB response until something
|
|
|
|
* causes the index to be updated. And `refresh_fsmonitor()` will
|
|
|
|
* have to iterate over those 100K paths each time.
|
|
|
|
*
|
|
|
|
* Performance could be improved if we optionally force update the
|
|
|
|
* index after a very large response and get an updated token into
|
|
|
|
* the FSMonitor index extension. This should allow subsequent
|
|
|
|
* commands to get smaller and more current responses.
|
|
|
|
*
|
|
|
|
* The value chosen here does not need to be precise. The index
|
|
|
|
* will be updated automatically the first time the user touches
|
|
|
|
* a tracked file and causes a command like `git status` to
|
|
|
|
* update an mtime to be updated and/or set a flag bit.
|
|
|
|
*/
|
|
|
|
static int fsmonitor_force_update_threshold = 100;
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
void refresh_fsmonitor(struct index_state *istate)
|
|
|
|
{
|
2022-10-04 17:32:30 +00:00
|
|
|
static int warn_once = 0;
|
2017-09-22 16:35:40 +00:00
|
|
|
struct strbuf query_result = STRBUF_INIT;
|
2020-01-07 19:04:29 +00:00
|
|
|
int query_success = 0, hook_version = -1;
|
|
|
|
size_t bol = 0; /* beginning of line */
|
2017-09-22 16:35:40 +00:00
|
|
|
uint64_t last_update;
|
2020-01-07 19:04:28 +00:00
|
|
|
struct strbuf last_update_token = STRBUF_INIT;
|
2017-09-22 16:35:40 +00:00
|
|
|
char *buf;
|
2019-06-15 16:11:35 +00:00
|
|
|
unsigned int i;
|
2022-03-25 18:02:44 +00:00
|
|
|
int is_trivial = 0;
|
treewide: always have a valid "index_state.repo" member
When the "repo" member was added to "the_index" in [1] the
repo_read_index() was made to populate it, but the unpopulated
"the_index" variable didn't get the same treatment.
Let's do that in initialize_the_repository() when we set it up, and
likewise for all of the current callers initialized an empty "struct
index_state".
This simplifies code that needs to deal with "the_index" or a custom
"struct index_state", we no longer need to second-guess this part of
the "index_state" deep in the stack. A recent example of such
second-guessing is the "istate->repo ? istate->repo : the_repository"
code in [2]. We can now simply use "istate->repo".
We're doing this by making use of the INDEX_STATE_INIT() macro (and
corresponding function) added in [3], which now have mandatory "repo"
arguments.
Because we now call index_state_init() in repository.c's
initialize_the_repository() we don't need to handle the case where we
have a "repo->index" whose "repo" member doesn't match the "repo"
we're setting up, i.e. the "Complete the double-reference" code in
repo_read_index() being altered here. That logic was originally added
in [1], and was working around the lack of what we now have in
initialize_the_repository().
For "fsmonitor-settings.c" we can remove the initialization of a NULL
"r" argument to "the_repository". This was added back in [4], and was
needed at the time for callers that would pass us the "r" from an
"istate->repo". Before this change such a change to
"fsmonitor-settings.c" would segfault all over the test suite (e.g. in
t0002-gitfile.sh).
This change has wider eventual implications for
"fsmonitor-settings.c". The reason the other lazy loading behavior in
it is required (starting with "if (!r->settings.fsmonitor) ..." is
because of the previously passed "r" being "NULL".
I have other local changes on top of this which move its configuration
reading to "prepare_repo_settings()" in "repo-settings.c", as we could
now start to rely on it being called for our "r". But let's leave all
of that for now, and narrowly remove this particular part of the
lazy-loading.
1. 1fd9ae517c4 (repository: add repo reference to index_state,
2021-01-23)
2. ee1f0c242ef (read-cache: add index.skipHash config option,
2023-01-06)
3. 2f6b1eb794e (cache API: add a "INDEX_STATE_INIT" macro/function,
add release_index(), 2023-01-12)
4. 1e0ea5c4316 (fsmonitor: config settings are repository-specific,
2022-03-25)
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Acked-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2023-01-17 13:57:00 +00:00
|
|
|
struct repository *r = istate->repo;
|
2022-03-25 18:02:46 +00:00
|
|
|
enum fsmonitor_mode fsm_mode = fsm_settings__get_mode(r);
|
2022-10-04 17:32:30 +00:00
|
|
|
enum fsmonitor_reason reason = fsm_settings__get_reason(r);
|
|
|
|
|
|
|
|
if (!warn_once && reason > FSMONITOR_REASON_OK) {
|
2022-10-11 00:42:38 +00:00
|
|
|
char *msg = fsm_settings__get_incompatible_msg(r, reason);
|
2022-10-04 17:32:30 +00:00
|
|
|
warn_once = 1;
|
2022-10-11 00:42:38 +00:00
|
|
|
warning("%s", msg);
|
|
|
|
free(msg);
|
2022-10-04 17:32:30 +00:00
|
|
|
}
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2022-03-25 18:02:46 +00:00
|
|
|
if (fsm_mode <= FSMONITOR_MODE_DISABLED ||
|
|
|
|
istate->fsmonitor_has_run_once)
|
2017-09-22 16:35:40 +00:00
|
|
|
return;
|
2020-01-07 19:04:29 +00:00
|
|
|
|
2019-05-07 11:10:21 +00:00
|
|
|
istate->fsmonitor_has_run_once = 1;
|
2017-09-22 16:35:40 +00:00
|
|
|
|
|
|
|
trace_printf_key(&trace_fsmonitor, "refresh fsmonitor");
|
2022-03-25 18:02:46 +00:00
|
|
|
|
|
|
|
if (fsm_mode == FSMONITOR_MODE_IPC) {
|
2022-03-25 18:02:47 +00:00
|
|
|
query_success = !fsmonitor_ipc__send_query(
|
|
|
|
istate->fsmonitor_last_update ?
|
|
|
|
istate->fsmonitor_last_update : "builtin:fake",
|
|
|
|
&query_result);
|
|
|
|
if (query_success) {
|
|
|
|
/*
|
|
|
|
* The response contains a series of nul terminated
|
|
|
|
* strings. The first is the new token.
|
|
|
|
*
|
|
|
|
* Use `char *buf` as an interlude to trick the CI
|
|
|
|
* static analysis to let us use `strbuf_addstr()`
|
|
|
|
* here (and only copy the token) rather than
|
|
|
|
* `strbuf_addbuf()`.
|
|
|
|
*/
|
|
|
|
buf = query_result.buf;
|
|
|
|
strbuf_addstr(&last_update_token, buf);
|
|
|
|
bol = last_update_token.len + 1;
|
|
|
|
is_trivial = query_result.buf[bol] == '/';
|
|
|
|
if (is_trivial)
|
|
|
|
trace2_data_intmax("fsm_client", NULL,
|
|
|
|
"query/trivial-response", 1);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* The builtin daemon is not available on this
|
|
|
|
* platform -OR- we failed to get a response.
|
|
|
|
*
|
|
|
|
* Generate a fake token (rather than a V1
|
|
|
|
* timestamp) for the index extension. (If
|
|
|
|
* they switch back to the hook API, we don't
|
|
|
|
* want ambiguous state.)
|
|
|
|
*/
|
|
|
|
strbuf_addstr(&last_update_token, "builtin:fake");
|
|
|
|
}
|
|
|
|
|
|
|
|
goto apply_results;
|
2022-03-25 18:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(fsm_mode == FSMONITOR_MODE_HOOK);
|
|
|
|
|
|
|
|
hook_version = fsmonitor_hook_version();
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
/*
|
2022-03-25 18:02:46 +00:00
|
|
|
* This could be racy so save the date/time now and query_fsmonitor_hook
|
2017-09-22 16:35:40 +00:00
|
|
|
* should be inclusive to ensure we don't miss potential changes.
|
|
|
|
*/
|
|
|
|
last_update = getnanotime();
|
2020-01-07 19:04:29 +00:00
|
|
|
if (hook_version == HOOK_INTERFACE_VERSION1)
|
|
|
|
strbuf_addf(&last_update_token, "%"PRIu64"", last_update);
|
2017-09-22 16:35:40 +00:00
|
|
|
|
|
|
|
/*
|
2022-03-25 18:02:46 +00:00
|
|
|
* If we have a last update token, call query_fsmonitor_hook for the set of
|
2020-01-07 19:04:29 +00:00
|
|
|
* changes since that token, else assume everything is possibly dirty
|
2017-09-22 16:35:40 +00:00
|
|
|
* and check it all.
|
|
|
|
*/
|
|
|
|
if (istate->fsmonitor_last_update) {
|
2020-01-07 19:04:29 +00:00
|
|
|
if (hook_version == -1 || hook_version == HOOK_INTERFACE_VERSION2) {
|
2022-03-25 18:02:46 +00:00
|
|
|
query_success = !query_fsmonitor_hook(
|
|
|
|
r, HOOK_INTERFACE_VERSION2,
|
2020-01-07 19:04:29 +00:00
|
|
|
istate->fsmonitor_last_update, &query_result);
|
|
|
|
|
|
|
|
if (query_success) {
|
|
|
|
if (hook_version < 0)
|
|
|
|
hook_version = HOOK_INTERFACE_VERSION2;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First entry will be the last update token
|
|
|
|
* Need to use a char * variable because static
|
|
|
|
* analysis was suggesting to use strbuf_addbuf
|
|
|
|
* but we don't want to copy the entire strbuf
|
2020-07-28 20:45:38 +00:00
|
|
|
* only the chars up to the first NUL
|
2020-01-07 19:04:29 +00:00
|
|
|
*/
|
|
|
|
buf = query_result.buf;
|
|
|
|
strbuf_addstr(&last_update_token, buf);
|
|
|
|
if (!last_update_token.len) {
|
|
|
|
warning("Empty last update token.");
|
|
|
|
query_success = 0;
|
|
|
|
} else {
|
|
|
|
bol = last_update_token.len + 1;
|
2022-03-25 18:02:44 +00:00
|
|
|
is_trivial = query_result.buf[bol] == '/';
|
2020-01-07 19:04:29 +00:00
|
|
|
}
|
|
|
|
} else if (hook_version < 0) {
|
|
|
|
hook_version = HOOK_INTERFACE_VERSION1;
|
|
|
|
if (!last_update_token.len)
|
|
|
|
strbuf_addf(&last_update_token, "%"PRIu64"", last_update);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hook_version == HOOK_INTERFACE_VERSION1) {
|
2022-03-25 18:02:46 +00:00
|
|
|
query_success = !query_fsmonitor_hook(
|
|
|
|
r, HOOK_INTERFACE_VERSION1,
|
2020-01-07 19:04:29 +00:00
|
|
|
istate->fsmonitor_last_update, &query_result);
|
2022-03-25 18:02:44 +00:00
|
|
|
if (query_success)
|
|
|
|
is_trivial = query_result.buf[0] == '/';
|
2020-01-07 19:04:29 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 18:02:44 +00:00
|
|
|
if (is_trivial)
|
|
|
|
trace2_data_intmax("fsm_hook", NULL,
|
|
|
|
"query/trivial-response", 1);
|
|
|
|
|
2022-03-25 18:02:46 +00:00
|
|
|
trace_performance_since(last_update, "fsmonitor process '%s'",
|
|
|
|
fsm_settings__get_hook_path(r));
|
|
|
|
trace_printf_key(&trace_fsmonitor,
|
|
|
|
"fsmonitor process '%s' returned %s",
|
|
|
|
fsm_settings__get_hook_path(r),
|
|
|
|
query_success ? "success" : "failure");
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 18:02:47 +00:00
|
|
|
apply_results:
|
2022-03-25 18:02:44 +00:00
|
|
|
/*
|
|
|
|
* The response from FSMonitor (excluding the header token) is
|
|
|
|
* either:
|
|
|
|
*
|
|
|
|
* [a] a (possibly empty) list of NUL delimited relative
|
|
|
|
* pathnames of changed paths. This list can contain
|
|
|
|
* files and directories. Directories have a trailing
|
|
|
|
* slash.
|
|
|
|
*
|
|
|
|
* [b] a single '/' to indicate the provider had no
|
|
|
|
* information and that we should consider everything
|
|
|
|
* invalid. We call this a trivial response.
|
|
|
|
*/
|
2022-03-25 18:03:12 +00:00
|
|
|
trace2_region_enter("fsmonitor", "apply_results", istate->repo);
|
|
|
|
|
2022-03-25 18:02:44 +00:00
|
|
|
if (query_success && !is_trivial) {
|
|
|
|
/*
|
|
|
|
* Mark all pathnames returned by the monitor as dirty.
|
|
|
|
*
|
|
|
|
* This updates both the cache-entries and the untracked-cache.
|
|
|
|
*/
|
2022-03-25 18:03:12 +00:00
|
|
|
int count = 0;
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
buf = query_result.buf;
|
2020-01-07 19:04:29 +00:00
|
|
|
for (i = bol; i < query_result.len; i++) {
|
2017-09-22 16:35:40 +00:00
|
|
|
if (buf[i] != '\0')
|
|
|
|
continue;
|
|
|
|
fsmonitor_refresh_callback(istate, buf + bol);
|
|
|
|
bol = i + 1;
|
2022-03-25 18:03:12 +00:00
|
|
|
count++;
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
2022-03-25 18:03:12 +00:00
|
|
|
if (bol < query_result.len) {
|
2017-09-22 16:35:40 +00:00
|
|
|
fsmonitor_refresh_callback(istate, buf + bol);
|
2022-03-25 18:03:12 +00:00
|
|
|
count++;
|
|
|
|
}
|
2019-11-20 08:32:17 +00:00
|
|
|
|
|
|
|
/* Now mark the untracked cache for fsmonitor usage */
|
|
|
|
if (istate->untracked)
|
|
|
|
istate->untracked->use_fsmonitor = 1;
|
2022-03-25 18:03:12 +00:00
|
|
|
|
|
|
|
if (count > fsmonitor_force_update_threshold)
|
|
|
|
istate->cache_changed |= FSMONITOR_CHANGED;
|
|
|
|
|
|
|
|
trace2_data_intmax("fsmonitor", istate->repo, "apply_count",
|
|
|
|
count);
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
} else {
|
2022-03-25 18:02:44 +00:00
|
|
|
/*
|
|
|
|
* We failed to get a response or received a trivial response,
|
|
|
|
* so invalidate everything.
|
|
|
|
*
|
|
|
|
* We only want to run the post index changed hook if
|
|
|
|
* we've actually changed entries, so keep track if we
|
|
|
|
* actually changed entries or not.
|
|
|
|
*/
|
2019-11-20 08:32:17 +00:00
|
|
|
int is_cache_changed = 0;
|
2022-03-25 18:02:44 +00:00
|
|
|
|
2019-11-20 08:32:17 +00:00
|
|
|
for (i = 0; i < istate->cache_nr; i++) {
|
|
|
|
if (istate->cache[i]->ce_flags & CE_FSMONITOR_VALID) {
|
|
|
|
is_cache_changed = 1;
|
|
|
|
istate->cache[i]->ce_flags &= ~CE_FSMONITOR_VALID;
|
|
|
|
}
|
|
|
|
}
|
2017-09-22 16:35:40 +00:00
|
|
|
|
2022-03-25 18:02:44 +00:00
|
|
|
/*
|
|
|
|
* If we're going to check every file, ensure we save
|
|
|
|
* the results.
|
|
|
|
*/
|
2019-11-20 08:32:17 +00:00
|
|
|
if (is_cache_changed)
|
|
|
|
istate->cache_changed |= FSMONITOR_CHANGED;
|
2018-04-10 18:14:31 +00:00
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
if (istate->untracked)
|
|
|
|
istate->untracked->use_fsmonitor = 0;
|
|
|
|
}
|
2022-03-25 18:03:12 +00:00
|
|
|
trace2_region_leave("fsmonitor", "apply_results", istate->repo);
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
strbuf_release(&query_result);
|
|
|
|
|
2020-01-07 19:04:28 +00:00
|
|
|
/* Now that we've updated istate, save the last_update_token */
|
|
|
|
FREE_AND_NULL(istate->fsmonitor_last_update);
|
|
|
|
istate->fsmonitor_last_update = strbuf_detach(&last_update_token, NULL);
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 15:34:50 +00:00
|
|
|
/*
|
|
|
|
* The caller wants to turn on FSMonitor. And when the caller writes
|
|
|
|
* the index to disk, a FSMonitor extension should be included. This
|
|
|
|
* requires that `istate->fsmonitor_last_update` not be NULL. But we
|
|
|
|
* have not actually talked to a FSMonitor process yet, so we don't
|
|
|
|
* have an initial value for this field.
|
|
|
|
*
|
|
|
|
* For a protocol V1 FSMonitor process, this field is a formatted
|
|
|
|
* "nanoseconds since epoch" field. However, for a protocol V2
|
|
|
|
* FSMonitor process, this field is an opaque token.
|
|
|
|
*
|
|
|
|
* Historically, `add_fsmonitor()` has initialized this field to the
|
|
|
|
* current time for protocol V1 processes. There are lots of race
|
|
|
|
* conditions here, but that code has shipped...
|
|
|
|
*
|
|
|
|
* The only true solution is to use a V2 FSMonitor and get a current
|
|
|
|
* or default token value (that it understands), but we cannot do that
|
|
|
|
* until we have actually talked to an instance of the FSMonitor process
|
|
|
|
* (but the protocol requires that we send a token first...).
|
|
|
|
*
|
|
|
|
* For simplicity, just initialize like we have a V1 process and require
|
|
|
|
* that V2 processes adapt.
|
|
|
|
*/
|
|
|
|
static void initialize_fsmonitor_last_update(struct index_state *istate)
|
|
|
|
{
|
|
|
|
struct strbuf last_update = STRBUF_INIT;
|
|
|
|
|
|
|
|
strbuf_addf(&last_update, "%"PRIu64"", getnanotime());
|
|
|
|
istate->fsmonitor_last_update = strbuf_detach(&last_update, NULL);
|
|
|
|
}
|
|
|
|
|
2017-09-22 16:35:40 +00:00
|
|
|
void add_fsmonitor(struct index_state *istate)
|
|
|
|
{
|
2019-06-15 16:11:35 +00:00
|
|
|
unsigned int i;
|
2017-09-22 16:35:40 +00:00
|
|
|
|
|
|
|
if (!istate->fsmonitor_last_update) {
|
|
|
|
trace_printf_key(&trace_fsmonitor, "add fsmonitor");
|
|
|
|
istate->cache_changed |= FSMONITOR_CHANGED;
|
2021-02-03 15:34:50 +00:00
|
|
|
initialize_fsmonitor_last_update(istate);
|
2017-09-22 16:35:40 +00:00
|
|
|
|
|
|
|
/* reset the fsmonitor state */
|
|
|
|
for (i = 0; i < istate->cache_nr; i++)
|
|
|
|
istate->cache[i]->ce_flags &= ~CE_FSMONITOR_VALID;
|
|
|
|
|
|
|
|
/* reset the untracked cache */
|
|
|
|
if (istate->untracked) {
|
|
|
|
add_untracked_cache(istate);
|
|
|
|
istate->untracked->use_fsmonitor = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update the fsmonitor state */
|
|
|
|
refresh_fsmonitor(istate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void remove_fsmonitor(struct index_state *istate)
|
|
|
|
{
|
|
|
|
if (istate->fsmonitor_last_update) {
|
|
|
|
trace_printf_key(&trace_fsmonitor, "remove fsmonitor");
|
|
|
|
istate->cache_changed |= FSMONITOR_CHANGED;
|
2020-01-07 19:04:28 +00:00
|
|
|
FREE_AND_NULL(istate->fsmonitor_last_update);
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void tweak_fsmonitor(struct index_state *istate)
|
|
|
|
{
|
2019-06-15 16:11:35 +00:00
|
|
|
unsigned int i;
|
2022-03-25 18:02:46 +00:00
|
|
|
int fsmonitor_enabled = (fsm_settings__get_mode(istate->repo)
|
|
|
|
> FSMONITOR_MODE_DISABLED);
|
2017-10-27 23:26:37 +00:00
|
|
|
|
|
|
|
if (istate->fsmonitor_dirty) {
|
|
|
|
if (fsmonitor_enabled) {
|
|
|
|
/* Mark all entries valid */
|
|
|
|
for (i = 0; i < istate->cache_nr; i++) {
|
2022-05-26 21:47:17 +00:00
|
|
|
if (S_ISGITLINK(istate->cache[i]->ce_mode))
|
|
|
|
continue;
|
2017-10-27 23:26:37 +00:00
|
|
|
istate->cache[i]->ce_flags |= CE_FSMONITOR_VALID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark all previously saved entries as dirty */
|
2021-01-23 19:58:14 +00:00
|
|
|
assert_index_minimum(istate, istate->fsmonitor_dirty->bit_size);
|
2017-10-27 23:26:37 +00:00
|
|
|
ewah_each_bit(istate->fsmonitor_dirty, fsmonitor_ewah_callback, istate);
|
|
|
|
|
2019-11-20 08:32:17 +00:00
|
|
|
refresh_fsmonitor(istate);
|
2017-10-27 23:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ewah_free(istate->fsmonitor_dirty);
|
|
|
|
istate->fsmonitor_dirty = NULL;
|
|
|
|
}
|
|
|
|
|
2022-03-25 18:02:46 +00:00
|
|
|
if (fsmonitor_enabled)
|
2017-09-22 16:35:40 +00:00
|
|
|
add_fsmonitor(istate);
|
2022-03-25 18:02:46 +00:00
|
|
|
else
|
|
|
|
remove_fsmonitor(istate);
|
2017-09-22 16:35:40 +00:00
|
|
|
}
|