]> git.ipfire.org Git - thirdparty/git.git/blobdiff - fsmonitor.c
git-svn: stop passing "-m" to "git rev-list"
[thirdparty/git.git] / fsmonitor.c
index 1f4aa1b150dbe948910705c9ff4e75ad0a6a12a1..ab9bfc60b34e3146f73194d01cf8963a90f1d768 100644 (file)
@@ -6,24 +6,47 @@
 #include "run-command.h"
 #include "strbuf.h"
 
-#define INDEX_EXTENSION_VERSION        (1)
-#define HOOK_INTERFACE_VERSION (1)
+#define INDEX_EXTENSION_VERSION1       (1)
+#define INDEX_EXTENSION_VERSION2       (2)
+#define HOOK_INTERFACE_VERSION1                (1)
+#define HOOK_INTERFACE_VERSION2                (2)
 
 struct trace_key trace_fsmonitor = TRACE_KEY_INIT(FSMONITOR);
 
+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);
+}
+
 static void fsmonitor_ewah_callback(size_t pos, void *is)
 {
        struct index_state *istate = (struct index_state *)is;
        struct cache_entry *ce;
 
-       if (pos >= istate->cache_nr)
-               BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" >= %u)",
-                   (uintmax_t)pos, istate->cache_nr);
+       assert_index_minimum(istate, pos + 1);
 
        ce = istate->cache[pos];
        ce->ce_flags &= ~CE_FSMONITOR_VALID;
 }
 
+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;
+}
+
 int read_fsmonitor_extension(struct index_state *istate, const void *data,
        unsigned long sz)
 {
@@ -32,17 +55,26 @@ int read_fsmonitor_extension(struct index_state *istate, const void *data,
        uint32_t ewah_size;
        struct ewah_bitmap *fsmonitor_dirty;
        int ret;
+       uint64_t timestamp;
+       struct strbuf last_update = STRBUF_INIT;
 
-       if (sz < sizeof(uint32_t) + sizeof(uint64_t) + sizeof(uint32_t))
+       if (sz < sizeof(uint32_t) + 1 + sizeof(uint32_t))
                return error("corrupt fsmonitor extension (too short)");
 
        hdr_version = get_be32(index);
        index += sizeof(uint32_t);
-       if (hdr_version != INDEX_EXTENSION_VERSION)
+       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 {
                return error("bad fsmonitor version %d", hdr_version);
+       }
 
-       istate->fsmonitor_last_update = get_be64(index);
-       index += sizeof(uint64_t);
+       istate->fsmonitor_last_update = strbuf_detach(&last_update, NULL);
 
        ewah_size = get_be32(index);
        index += sizeof(uint32_t);
@@ -55,11 +87,14 @@ int read_fsmonitor_extension(struct index_state *istate, const void *data,
        }
        istate->fsmonitor_dirty = fsmonitor_dirty;
 
-       if (istate->fsmonitor_dirty->bit_size > istate->cache_nr)
-               BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)",
-                   (uintmax_t)istate->fsmonitor_dirty->bit_size, istate->cache_nr);
+       if (!istate->split_index)
+               assert_index_minimum(istate, istate->fsmonitor_dirty->bit_size);
 
-       trace_printf_key(&trace_fsmonitor, "read fsmonitor extension successful");
+       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);
        return 0;
 }
 
@@ -78,20 +113,19 @@ void fill_fsmonitor_bitmap(struct index_state *istate)
 void write_fsmonitor_extension(struct strbuf *sb, struct index_state *istate)
 {
        uint32_t hdr_version;
-       uint64_t tm;
        uint32_t ewah_start;
        uint32_t ewah_size = 0;
        int fixup = 0;
 
-       if (istate->fsmonitor_dirty->bit_size > istate->cache_nr)
-               BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)",
-                   (uintmax_t)istate->fsmonitor_dirty->bit_size, istate->cache_nr);
+       if (!istate->split_index)
+               assert_index_minimum(istate, istate->fsmonitor_dirty->bit_size);
 
-       put_be32(&hdr_version, INDEX_EXTENSION_VERSION);
+       put_be32(&hdr_version, INDEX_EXTENSION_VERSION2);
        strbuf_add(sb, &hdr_version, sizeof(uint32_t));
 
-       put_be64(&tm, istate->fsmonitor_last_update);
-       strbuf_add(sb, &tm, sizeof(uint64_t));
+       strbuf_addstr(sb, istate->fsmonitor_last_update);
+       strbuf_addch(sb, 0); /* Want to keep a NUL */
+
        fixup = sb->len;
        strbuf_add(sb, &ewah_size, sizeof(uint32_t)); /* we'll fix this up later */
 
@@ -104,35 +138,87 @@ void write_fsmonitor_extension(struct strbuf *sb, struct index_state *istate)
        put_be32(&ewah_size, sb->len - ewah_start);
        memcpy(sb->buf + fixup, &ewah_size, sizeof(uint32_t));
 
-       trace_printf_key(&trace_fsmonitor, "write fsmonitor extension successful");
+       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);
 }
 
 /*
- * Call the query-fsmonitor hook passing the time of the last saved results.
+ * Call the query-fsmonitor hook passing the last update token of the saved results.
  */
-static int query_fsmonitor(int version, uint64_t last_update, struct strbuf *query_result)
+static int query_fsmonitor(int version, const char *last_update, struct strbuf *query_result)
 {
        struct child_process cp = CHILD_PROCESS_INIT;
+       int result;
 
        if (!core_fsmonitor)
                return -1;
 
-       argv_array_push(&cp.args, core_fsmonitor);
-       argv_array_pushf(&cp.args, "%d", version);
-       argv_array_pushf(&cp.args, "%" PRIuMAX, (uintmax_t)last_update);
+       strvec_push(&cp.args, core_fsmonitor);
+       strvec_pushf(&cp.args, "%d", version);
+       strvec_pushf(&cp.args, "%s", last_update);
        cp.use_shell = 1;
        cp.dir = get_git_work_tree();
 
-       return capture_command(&cp, query_result, 1024);
+       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);
+       else {
+               trace2_data_intmax("fsm_hook", NULL, "query/response-length",
+                                  query_result->len);
+
+               if (fsmonitor_is_trivial_response(query_result))
+                       trace2_data_intmax("fsm_hook", NULL,
+                                          "query/trivial-response", 1);
+       }
+
+       trace2_region_leave("fsm_hook", "query", NULL);
+
+       return result;
 }
 
-static void fsmonitor_refresh_callback(struct index_state *istate, const char *name)
+int fsmonitor_is_trivial_response(const struct strbuf *query_result)
 {
-       int pos = index_name_pos(istate, name, strlen(name));
+       static char trivial_response[3] = { '\0', '/', '\0' };
 
-       if (pos >= 0) {
-               struct cache_entry *ce = istate->cache[pos];
-               ce->ce_flags &= ~CE_FSMONITOR_VALID;
+       return query_result->len >= 3 &&
+               !memcmp(trivial_response,
+                       &query_result->buf[query_result->len - 3], 3);
+}
+
+static void fsmonitor_refresh_callback(struct index_state *istate, char *name)
+{
+       int i, len = strlen(name);
+       if (name[len - 1] == '/') {
+
+               /*
+                * TODO We should binary search to find the first path with
+                * TODO this directory prefix.  Then linearly update entries
+                * TODO while the prefix matches.  Taking care to search without
+                * TODO the trailing slash -- because '/' sorts after a few
+                * TODO interesting special chars, like '.' and ' '.
+                */
+
+               /* Mark all entries for the folder invalid */
+               for (i = 0; i < istate->cache_nr; i++) {
+                       if (istate->cache[i]->ce_flags & CE_FSMONITOR_VALID &&
+                           starts_with(istate->cache[i]->name, name))
+                               istate->cache[i]->ce_flags &= ~CE_FSMONITOR_VALID;
+               }
+               /* Need to remove the / from the path for the untracked cache */
+               name[len - 1] = '\0';
+       } else {
+               int pos = index_name_pos(istate, name, strlen(name));
+
+               if (pos >= 0) {
+                       struct cache_entry *ce = istate->cache[pos];
+                       ce->ce_flags &= ~CE_FSMONITOR_VALID;
+               }
        }
 
        /*
@@ -146,14 +232,18 @@ static void fsmonitor_refresh_callback(struct index_state *istate, const char *n
 void refresh_fsmonitor(struct index_state *istate)
 {
        struct strbuf query_result = STRBUF_INIT;
-       int query_success = 0;
-       size_t bol; /* beginning of line */
+       int query_success = 0, hook_version = -1;
+       size_t bol = 0; /* beginning of line */
        uint64_t last_update;
+       struct strbuf last_update_token = STRBUF_INIT;
        char *buf;
        unsigned int i;
 
        if (!core_fsmonitor || istate->fsmonitor_has_run_once)
                return;
+
+       hook_version = fsmonitor_hook_version();
+
        istate->fsmonitor_has_run_once = 1;
 
        trace_printf_key(&trace_fsmonitor, "refresh fsmonitor");
@@ -162,26 +252,60 @@ void refresh_fsmonitor(struct index_state *istate)
         * should be inclusive to ensure we don't miss potential changes.
         */
        last_update = getnanotime();
+       if (hook_version == HOOK_INTERFACE_VERSION1)
+               strbuf_addf(&last_update_token, "%"PRIu64"", last_update);
 
        /*
-        * If we have a last update time, call query_fsmonitor for the set of
-        * changes since that time, else assume everything is possibly dirty
+        * If we have a last update token, call query_fsmonitor for the set of
+        * changes since that token, else assume everything is possibly dirty
         * and check it all.
         */
        if (istate->fsmonitor_last_update) {
-               query_success = !query_fsmonitor(HOOK_INTERFACE_VERSION,
-                       istate->fsmonitor_last_update, &query_result);
+               if (hook_version == -1 || hook_version == HOOK_INTERFACE_VERSION2) {
+                       query_success = !query_fsmonitor(HOOK_INTERFACE_VERSION2,
+                               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
+                                * only the chars up to the first NUL
+                                */
+                               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;
+                               }
+                       } 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) {
+                       query_success = !query_fsmonitor(HOOK_INTERFACE_VERSION1,
+                               istate->fsmonitor_last_update, &query_result);
+               }
+
                trace_performance_since(last_update, "fsmonitor process '%s'", core_fsmonitor);
                trace_printf_key(&trace_fsmonitor, "fsmonitor process '%s' returned %s",
                        core_fsmonitor, query_success ? "success" : "failure");
        }
 
        /* a fsmonitor process can return '/' to indicate all entries are invalid */
-       if (query_success && query_result.buf[0] != '/') {
+       if (query_success && query_result.buf[bol] != '/') {
                /* Mark all entries returned by the monitor as dirty */
                buf = query_result.buf;
-               bol = 0;
-               for (i = 0; i < query_result.len; i++) {
+               for (i = bol; i < query_result.len; i++) {
                        if (buf[i] != '\0')
                                continue;
                        fsmonitor_refresh_callback(istate, buf + bol);
@@ -189,21 +313,66 @@ void refresh_fsmonitor(struct index_state *istate)
                }
                if (bol < query_result.len)
                        fsmonitor_refresh_callback(istate, buf + bol);
+
+               /* Now mark the untracked cache for fsmonitor usage */
+               if (istate->untracked)
+                       istate->untracked->use_fsmonitor = 1;
        } else {
+
+               /* 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 */
+               int is_cache_changed = 0;
                /* Mark all entries invalid */
-               for (i = 0; i < istate->cache_nr; i++)
-                       istate->cache[i]->ce_flags &= ~CE_FSMONITOR_VALID;
+               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;
+                       }
+               }
 
                /* If we're going to check every file, ensure we save the results */
-               istate->cache_changed |= FSMONITOR_CHANGED;
+               if (is_cache_changed)
+                       istate->cache_changed |= FSMONITOR_CHANGED;
 
                if (istate->untracked)
                        istate->untracked->use_fsmonitor = 0;
        }
        strbuf_release(&query_result);
 
-       /* Now that we've updated istate, save the last_update time */
-       istate->fsmonitor_last_update = last_update;
+       /* 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);
+}
+
+/*
+ * 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);
 }
 
 void add_fsmonitor(struct index_state *istate)
@@ -213,7 +382,7 @@ void add_fsmonitor(struct index_state *istate)
        if (!istate->fsmonitor_last_update) {
                trace_printf_key(&trace_fsmonitor, "add fsmonitor");
                istate->cache_changed |= FSMONITOR_CHANGED;
-               istate->fsmonitor_last_update = getnanotime();
+               initialize_fsmonitor_last_update(istate);
 
                /* reset the fsmonitor state */
                for (i = 0; i < istate->cache_nr; i++)
@@ -235,7 +404,7 @@ void remove_fsmonitor(struct index_state *istate)
        if (istate->fsmonitor_last_update) {
                trace_printf_key(&trace_fsmonitor, "remove fsmonitor");
                istate->cache_changed |= FSMONITOR_CHANGED;
-               istate->fsmonitor_last_update = 0;
+               FREE_AND_NULL(istate->fsmonitor_last_update);
        }
 }
 
@@ -252,14 +421,10 @@ void tweak_fsmonitor(struct index_state *istate)
                        }
 
                        /* Mark all previously saved entries as dirty */
-                       if (istate->fsmonitor_dirty->bit_size > istate->cache_nr)
-                               BUG("fsmonitor_dirty has more entries than the index (%"PRIuMAX" > %u)",
-                                   (uintmax_t)istate->fsmonitor_dirty->bit_size, istate->cache_nr);
+                       assert_index_minimum(istate, istate->fsmonitor_dirty->bit_size);
                        ewah_each_bit(istate->fsmonitor_dirty, fsmonitor_ewah_callback, istate);
 
-                       /* Now mark the untracked cache for fsmonitor usage */
-                       if (istate->untracked)
-                               istate->untracked->use_fsmonitor = 1;
+                       refresh_fsmonitor(istate);
                }
 
                ewah_free(istate->fsmonitor_dirty);