2007-07-15 01:14:45 +02:00
|
|
|
#include "builtin.h"
|
2005-04-30 18:59:31 +02:00
|
|
|
#include "cache.h"
|
2005-04-18 20:39:48 +02:00
|
|
|
#include "commit.h"
|
|
|
|
#include "tree.h"
|
|
|
|
#include "blob.h"
|
2005-04-28 16:46:33 +02:00
|
|
|
#include "tag.h"
|
2005-07-03 19:01:38 +02:00
|
|
|
#include "refs.h"
|
2005-06-29 11:51:27 +02:00
|
|
|
#include "pack.h"
|
2006-04-26 01:37:08 +02:00
|
|
|
#include "cache-tree.h"
|
2006-05-29 21:19:02 +02:00
|
|
|
#include "tree-walk.h"
|
2008-02-25 22:46:05 +01:00
|
|
|
#include "fsck.h"
|
2007-10-15 22:34:05 +02:00
|
|
|
#include "parse-options.h"
|
2009-01-10 13:07:50 +01:00
|
|
|
#include "dir.h"
|
2011-11-07 03:59:26 +01:00
|
|
|
#include "progress.h"
|
2012-03-07 11:54:20 +01:00
|
|
|
#include "streaming.h"
|
2016-07-17 13:00:02 +02:00
|
|
|
#include "decorate.h"
|
2005-04-18 20:39:48 +02:00
|
|
|
|
|
|
|
#define REACHABLE 0x0001
|
2006-05-29 21:18:33 +02:00
|
|
|
#define SEEN 0x0002
|
2013-06-06 00:37:39 +02:00
|
|
|
#define HAS_OBJ 0x0004
|
2005-04-13 18:57:30 +02:00
|
|
|
|
2006-08-15 19:23:48 +02:00
|
|
|
static int show_root;
|
|
|
|
static int show_tags;
|
|
|
|
static int show_unreachable;
|
2007-04-04 16:46:14 +02:00
|
|
|
static int include_reflogs = 1;
|
2009-10-20 20:46:55 +02:00
|
|
|
static int check_full = 1;
|
2015-06-22 17:27:12 +02:00
|
|
|
static int connectivity_only;
|
2006-08-15 19:23:48 +02:00
|
|
|
static int check_strict;
|
|
|
|
static int keep_cache_objects;
|
2015-06-22 17:25:00 +02:00
|
|
|
static struct fsck_options fsck_walk_options = FSCK_OPTIONS_DEFAULT;
|
|
|
|
static struct fsck_options fsck_obj_options = FSCK_OPTIONS_DEFAULT;
|
2015-05-25 20:38:50 +02:00
|
|
|
static struct object_id head_oid;
|
2009-01-30 09:33:00 +01:00
|
|
|
static const char *head_points_at;
|
2007-03-05 09:22:06 +01:00
|
|
|
static int errors_found;
|
2007-07-03 02:33:54 +02:00
|
|
|
static int write_lost_and_found;
|
2007-06-05 04:44:00 +02:00
|
|
|
static int verbose;
|
2011-11-07 03:59:26 +01:00
|
|
|
static int show_progress = -1;
|
2012-02-28 23:55:39 +01:00
|
|
|
static int show_dangling = 1;
|
2016-07-17 13:00:02 +02:00
|
|
|
static int name_objects;
|
2007-03-05 09:22:06 +01:00
|
|
|
#define ERROR_OBJECT 01
|
|
|
|
#define ERROR_REACHABLE 02
|
2011-11-07 03:59:23 +01:00
|
|
|
#define ERROR_PACK 04
|
2015-09-23 22:46:39 +02:00
|
|
|
#define ERROR_REFS 010
|
2005-04-13 18:57:30 +02:00
|
|
|
|
2016-07-17 12:59:44 +02:00
|
|
|
static const char *describe_object(struct object *obj)
|
|
|
|
{
|
2016-07-17 13:00:02 +02:00
|
|
|
static struct strbuf buf = STRBUF_INIT;
|
|
|
|
char *name = name_objects ?
|
|
|
|
lookup_decoration(fsck_walk_options.object_names, obj) : NULL;
|
|
|
|
|
|
|
|
strbuf_reset(&buf);
|
|
|
|
strbuf_addstr(&buf, oid_to_hex(&obj->oid));
|
|
|
|
if (name)
|
|
|
|
strbuf_addf(&buf, " (%s)", name);
|
|
|
|
|
|
|
|
return buf.buf;
|
2016-07-17 12:59:44 +02:00
|
|
|
}
|
|
|
|
|
2017-01-26 05:11:00 +01:00
|
|
|
static const char *printable_type(struct object *obj)
|
|
|
|
{
|
|
|
|
const char *ret;
|
|
|
|
|
fsck: lazily load types under --connectivity-only
The recent fixes to "fsck --connectivity-only" load all of
the objects with their correct types. This keeps the
connectivity-only code path close to the regular one, but it
also introduces some unnecessary inefficiency. While getting
the type of an object is cheap compared to actually opening
and parsing the object (as the non-connectivity-only case
would do), it's still not free.
For reachable non-blob objects, we end up having to parse
them later anyway (to see what they point to), making our
type lookup here redundant.
For unreachable objects, we might never hit them at all in
the reachability traversal, making the lookup completely
wasted. And in some cases, we might have quite a few
unreachable objects (e.g., when alternates are used for
shared object storage between repositories, it's normal for
there to be objects reachable from other repositories but
not the one running fsck).
The comment in mark_object_for_connectivity() claims two
benefits to getting the type up front:
1. We need to know the types during fsck_walk(). (And not
explicitly mentioned, but we also need them when
printing the types of broken or dangling commits).
We can address this by lazy-loading the types as
necessary. Most objects never need this lazy-load at
all, because they fall into one of these categories:
a. Reachable from our tips, and are coerced into the
correct type as we traverse (e.g., a parent link
will call lookup_commit(), which converts OBJ_NONE
to OBJ_COMMIT).
b. Unreachable, but not at the tip of a chunk of
unreachable history. We only mention the tips as
"dangling", so an unreachable commit which links
to hundreds of other objects needs only report the
type of the tip commit.
2. It serves as a cross-check that the coercion in (1a) is
correct (i.e., we'll complain about a parent link that
points to a blob). But we get most of this for free
already, because right after coercing, we'll parse any
non-blob objects. So we'd notice then if we expected a
commit and got a blob.
The one exception is when we expect a blob, in which
case we never actually read the object contents.
So this is a slight weakening, but given that the whole
point of --connectivity-only is to sacrifice some data
integrity checks for speed, this seems like an
acceptable tradeoff.
Here are before and after timings for an extreme case with
~5M reachable objects and another ~12M unreachable (it's the
torvalds/linux repository on GitHub, connected to shared
storage for all of the other kernel forks):
[before]
$ time git fsck --no-dangling --connectivity-only
real 3m4.323s
user 1m25.121s
sys 1m38.710s
[after]
$ time git fsck --no-dangling --connectivity-only
real 0m51.497s
user 0m49.575s
sys 0m1.776s
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-26 05:12:07 +01:00
|
|
|
if (obj->type == OBJ_NONE) {
|
|
|
|
enum object_type type = sha1_object_info(obj->oid.hash, NULL);
|
|
|
|
if (type > 0)
|
|
|
|
object_as_type(obj, type, 0);
|
|
|
|
}
|
|
|
|
|
2017-01-26 05:11:00 +01:00
|
|
|
ret = typename(obj->type);
|
|
|
|
if (!ret)
|
|
|
|
ret = "unknown";
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-06-22 17:27:06 +02:00
|
|
|
static int fsck_config(const char *var, const char *value, void *cb)
|
2005-09-20 20:56:05 +02:00
|
|
|
{
|
2015-06-22 17:27:23 +02:00
|
|
|
if (strcmp(var, "fsck.skiplist") == 0) {
|
|
|
|
const char *path;
|
|
|
|
struct strbuf sb = STRBUF_INIT;
|
|
|
|
|
|
|
|
if (git_config_pathname(&path, var, value))
|
|
|
|
return 1;
|
|
|
|
strbuf_addf(&sb, "skiplist=%s", path);
|
|
|
|
free((char *)path);
|
|
|
|
fsck_set_msg_types(&fsck_obj_options, sb.buf);
|
|
|
|
strbuf_release(&sb);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-22 17:27:06 +02:00
|
|
|
if (skip_prefix(var, "fsck.", &var)) {
|
|
|
|
fsck_set_msg_type(&fsck_obj_options, var, value);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return git_default_config(var, value, cb);
|
|
|
|
}
|
|
|
|
|
2015-06-22 17:25:09 +02:00
|
|
|
static void objreport(struct object *obj, const char *msg_type,
|
|
|
|
const char *err)
|
2005-09-20 20:56:05 +02:00
|
|
|
{
|
2015-06-22 17:25:09 +02:00
|
|
|
fprintf(stderr, "%s in %s %s: %s\n",
|
2017-01-26 05:11:00 +01:00
|
|
|
msg_type, printable_type(obj), describe_object(obj), err);
|
2005-09-20 20:56:05 +02:00
|
|
|
}
|
|
|
|
|
2015-06-22 17:25:09 +02:00
|
|
|
static int objerror(struct object *obj, const char *err)
|
2005-09-20 20:56:05 +02:00
|
|
|
{
|
2007-03-05 09:22:06 +01:00
|
|
|
errors_found |= ERROR_OBJECT;
|
2015-06-22 17:25:09 +02:00
|
|
|
objreport(obj, "error", err);
|
2005-09-20 20:56:05 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-07-17 12:59:57 +02:00
|
|
|
static int fsck_error_func(struct fsck_options *o,
|
|
|
|
struct object *obj, int type, const char *message)
|
2005-09-20 20:56:05 +02:00
|
|
|
{
|
2015-06-22 17:25:09 +02:00
|
|
|
objreport(obj, (type == FSCK_WARN) ? "warning" : "error", message);
|
2008-02-25 22:46:08 +01:00
|
|
|
return (type == FSCK_WARN) ? 0 : 1;
|
2005-09-20 20:56:05 +02:00
|
|
|
}
|
|
|
|
|
2008-12-11 04:44:37 +01:00
|
|
|
static struct object_array pending;
|
|
|
|
|
2015-06-22 17:25:00 +02:00
|
|
|
static int mark_object(struct object *obj, int type, void *data, struct fsck_options *options)
|
2008-02-25 22:46:05 +01:00
|
|
|
{
|
|
|
|
struct object *parent = data;
|
|
|
|
|
2011-01-26 21:46:55 +01:00
|
|
|
/*
|
|
|
|
* The only case data is NULL or type is OBJ_ANY is when
|
|
|
|
* mark_object_reachable() calls us. All the callers of
|
|
|
|
* that function has non-NULL obj hence ...
|
|
|
|
*/
|
2008-02-25 22:46:05 +01:00
|
|
|
if (!obj) {
|
2011-01-26 21:46:55 +01:00
|
|
|
/* ... these references to parent->fld are safe here */
|
2008-02-25 22:46:05 +01:00
|
|
|
printf("broken link from %7s %s\n",
|
2017-01-26 05:11:00 +01:00
|
|
|
printable_type(parent), describe_object(parent));
|
2008-02-25 22:46:05 +01:00
|
|
|
printf("broken link from %7s %s\n",
|
|
|
|
(type == OBJ_ANY ? "unknown" : typename(type)), "unknown");
|
|
|
|
errors_found |= ERROR_REACHABLE;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type != OBJ_ANY && obj->type != type)
|
2011-01-26 21:46:55 +01:00
|
|
|
/* ... and the reference to parent is safe here */
|
2008-02-25 22:46:05 +01:00
|
|
|
objerror(parent, "wrong object type in link");
|
|
|
|
|
|
|
|
if (obj->flags & REACHABLE)
|
|
|
|
return 0;
|
|
|
|
obj->flags |= REACHABLE;
|
2013-06-06 00:37:39 +02:00
|
|
|
if (!(obj->flags & HAS_OBJ)) {
|
2015-11-10 03:22:28 +01:00
|
|
|
if (parent && !has_object_file(&obj->oid)) {
|
2008-02-25 22:46:05 +01:00
|
|
|
printf("broken link from %7s %s\n",
|
2017-01-26 05:11:00 +01:00
|
|
|
printable_type(parent), describe_object(parent));
|
2008-02-25 22:46:05 +01:00
|
|
|
printf(" to %7s %s\n",
|
2017-01-26 05:11:00 +01:00
|
|
|
printable_type(obj), describe_object(obj));
|
2008-02-25 22:46:05 +01:00
|
|
|
errors_found |= ERROR_REACHABLE;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-05-25 11:08:11 +02:00
|
|
|
add_object_array(obj, NULL, &pending);
|
2008-12-11 04:44:37 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mark_object_reachable(struct object *obj)
|
|
|
|
{
|
2015-06-22 17:25:00 +02:00
|
|
|
mark_object(obj, OBJ_ANY, NULL, NULL);
|
2008-12-11 04:44:37 +01:00
|
|
|
}
|
|
|
|
|
2011-01-26 21:46:55 +01:00
|
|
|
static int traverse_one_object(struct object *obj)
|
2008-12-11 04:44:37 +01:00
|
|
|
{
|
|
|
|
int result;
|
|
|
|
struct tree *tree = NULL;
|
|
|
|
|
2008-02-25 22:46:05 +01:00
|
|
|
if (obj->type == OBJ_TREE) {
|
|
|
|
tree = (struct tree *)obj;
|
|
|
|
if (parse_tree(tree) < 0)
|
|
|
|
return 1; /* error already displayed */
|
|
|
|
}
|
2015-06-22 17:25:00 +02:00
|
|
|
result = fsck_walk(obj, obj, &fsck_walk_options);
|
2013-06-06 00:37:39 +02:00
|
|
|
if (tree)
|
|
|
|
free_tree_buffer(tree);
|
2008-02-25 22:46:05 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2008-12-11 04:44:37 +01:00
|
|
|
static int traverse_reachable(void)
|
2008-02-25 22:46:05 +01:00
|
|
|
{
|
2011-11-07 03:59:26 +01:00
|
|
|
struct progress *progress = NULL;
|
|
|
|
unsigned int nr = 0;
|
2008-12-11 04:44:37 +01:00
|
|
|
int result = 0;
|
2011-11-07 03:59:26 +01:00
|
|
|
if (show_progress)
|
2014-02-21 13:50:18 +01:00
|
|
|
progress = start_progress_delay(_("Checking connectivity"), 0, 0, 2);
|
2008-12-11 04:44:37 +01:00
|
|
|
while (pending.nr) {
|
|
|
|
struct object_array_entry *entry;
|
2011-03-22 13:50:08 +01:00
|
|
|
struct object *obj;
|
2008-12-11 04:44:37 +01:00
|
|
|
|
|
|
|
entry = pending.objects + --pending.nr;
|
|
|
|
obj = entry->item;
|
2011-01-26 21:46:55 +01:00
|
|
|
result |= traverse_one_object(obj);
|
2011-11-07 03:59:26 +01:00
|
|
|
display_progress(progress, ++nr);
|
2008-12-11 04:44:37 +01:00
|
|
|
}
|
2011-11-07 03:59:26 +01:00
|
|
|
stop_progress(&progress);
|
2008-12-11 04:44:37 +01:00
|
|
|
return !!result;
|
2008-02-25 22:46:05 +01:00
|
|
|
}
|
|
|
|
|
2015-06-22 17:25:00 +02:00
|
|
|
static int mark_used(struct object *obj, int type, void *data, struct fsck_options *options)
|
2008-02-25 22:46:05 +01:00
|
|
|
{
|
|
|
|
if (!obj)
|
|
|
|
return 1;
|
|
|
|
obj->used = 1;
|
|
|
|
return 0;
|
2005-09-20 20:56:05 +02:00
|
|
|
}
|
|
|
|
|
2007-01-22 07:26:41 +01:00
|
|
|
/*
|
|
|
|
* Check a single reachable object
|
|
|
|
*/
|
|
|
|
static void check_reachable_object(struct object *obj)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* We obviously want the object to be parsed,
|
|
|
|
* except if it was in a pack-file and we didn't
|
|
|
|
* do a full fsck
|
|
|
|
*/
|
2013-06-06 00:37:39 +02:00
|
|
|
if (!(obj->flags & HAS_OBJ)) {
|
2015-11-10 03:22:29 +01:00
|
|
|
if (has_sha1_pack(obj->oid.hash))
|
2007-01-22 07:26:41 +01:00
|
|
|
return; /* it is in pack - forget about it */
|
2017-01-26 05:11:00 +01:00
|
|
|
printf("missing %s %s\n", printable_type(obj),
|
2016-07-17 12:59:44 +02:00
|
|
|
describe_object(obj));
|
2007-03-05 09:22:06 +01:00
|
|
|
errors_found |= ERROR_REACHABLE;
|
2007-01-22 07:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check a single unreachable object
|
|
|
|
*/
|
|
|
|
static void check_unreachable_object(struct object *obj)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Missing unreachable object? Ignore it. It's not like
|
|
|
|
* we miss it (since it can't be reached), nor do we want
|
|
|
|
* to complain about it being unreachable (since it does
|
|
|
|
* not exist).
|
|
|
|
*/
|
2017-01-16 22:25:35 +01:00
|
|
|
if (!(obj->flags & HAS_OBJ))
|
2007-01-22 07:26:41 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unreachable object that exists? Show it if asked to,
|
|
|
|
* since this is something that is prunable.
|
|
|
|
*/
|
|
|
|
if (show_unreachable) {
|
2017-01-26 05:11:00 +01:00
|
|
|
printf("unreachable %s %s\n", printable_type(obj),
|
2016-07-17 12:59:44 +02:00
|
|
|
describe_object(obj));
|
2007-01-22 07:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "!used" means that nothing at all points to it, including
|
2007-02-04 05:49:16 +01:00
|
|
|
* other unreachable objects. In other words, it's the "tip"
|
2007-01-22 07:26:41 +01:00
|
|
|
* of some set of unreachable objects, usually a commit that
|
|
|
|
* got dropped.
|
|
|
|
*
|
|
|
|
* Such starting points are more interesting than some random
|
|
|
|
* set of unreachable objects, so we show them even if the user
|
|
|
|
* hasn't asked for _all_ unreachable objects. If you have
|
|
|
|
* deleted a branch by mistake, this is a prime candidate to
|
|
|
|
* start looking at, for example.
|
|
|
|
*/
|
|
|
|
if (!obj->used) {
|
2012-02-28 23:55:39 +01:00
|
|
|
if (show_dangling)
|
2017-01-26 05:11:00 +01:00
|
|
|
printf("dangling %s %s\n", printable_type(obj),
|
2016-07-17 12:59:44 +02:00
|
|
|
describe_object(obj));
|
2007-07-03 02:33:54 +02:00
|
|
|
if (write_lost_and_found) {
|
2015-08-10 11:35:31 +02:00
|
|
|
char *filename = git_pathdup("lost-found/%s/%s",
|
2007-07-03 02:33:54 +02:00
|
|
|
obj->type == OBJ_COMMIT ? "commit" : "other",
|
2016-07-17 12:59:44 +02:00
|
|
|
describe_object(obj));
|
2007-07-03 02:33:54 +02:00
|
|
|
FILE *f;
|
|
|
|
|
2014-11-30 09:24:27 +01:00
|
|
|
if (safe_create_leading_directories_const(filename)) {
|
2007-07-03 02:33:54 +02:00
|
|
|
error("Could not create lost-found");
|
2015-08-10 11:35:31 +02:00
|
|
|
free(filename);
|
2007-07-03 02:33:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!(f = fopen(filename, "w")))
|
2009-06-27 17:58:47 +02:00
|
|
|
die_errno("Could not open '%s'", filename);
|
2007-07-22 22:20:26 +02:00
|
|
|
if (obj->type == OBJ_BLOB) {
|
2016-09-05 22:07:59 +02:00
|
|
|
if (stream_blob_to_fd(fileno(f), &obj->oid, NULL, 1))
|
2011-09-12 03:03:38 +02:00
|
|
|
die_errno("Could not write '%s'", filename);
|
2007-07-22 22:20:26 +02:00
|
|
|
} else
|
2016-07-17 12:59:44 +02:00
|
|
|
fprintf(f, "%s\n", describe_object(obj));
|
2008-12-05 01:35:48 +01:00
|
|
|
if (fclose(f))
|
2009-06-27 17:58:46 +02:00
|
|
|
die_errno("Could not finish '%s'",
|
|
|
|
filename);
|
2015-08-10 11:35:31 +02:00
|
|
|
free(filename);
|
2007-07-03 02:33:54 +02:00
|
|
|
}
|
2007-01-22 07:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise? It's there, it's unreachable, and some other unreachable
|
|
|
|
* object points to it. Ignore it - it's not interesting, and we showed
|
|
|
|
* all the interesting cases above.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static void check_object(struct object *obj)
|
|
|
|
{
|
2007-06-05 04:44:00 +02:00
|
|
|
if (verbose)
|
2016-07-17 12:59:44 +02:00
|
|
|
fprintf(stderr, "Checking %s\n", describe_object(obj));
|
2007-06-05 04:44:00 +02:00
|
|
|
|
2007-01-22 07:26:41 +01:00
|
|
|
if (obj->flags & REACHABLE)
|
|
|
|
check_reachable_object(obj);
|
|
|
|
else
|
|
|
|
check_unreachable_object(obj);
|
|
|
|
}
|
2005-09-20 20:56:05 +02:00
|
|
|
|
2005-04-11 08:13:09 +02:00
|
|
|
static void check_connectivity(void)
|
|
|
|
{
|
2006-06-30 06:38:55 +02:00
|
|
|
int i, max;
|
2005-04-11 08:13:09 +02:00
|
|
|
|
2008-12-11 04:44:37 +01:00
|
|
|
/* Traverse the pending reachable objects */
|
|
|
|
traverse_reachable();
|
|
|
|
|
2005-04-11 08:13:09 +02:00
|
|
|
/* Look up all the requirements, warn about missing objects.. */
|
2006-06-30 06:38:55 +02:00
|
|
|
max = get_max_object_index();
|
2007-06-05 04:44:00 +02:00
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "Checking connectivity (%d objects)\n", max);
|
|
|
|
|
2006-06-30 06:38:55 +02:00
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
struct object *obj = get_indexed_object(i);
|
2005-04-11 08:13:09 +02:00
|
|
|
|
2007-01-22 07:26:41 +01:00
|
|
|
if (obj)
|
|
|
|
check_object(obj);
|
2005-04-11 08:13:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-07 03:59:25 +01:00
|
|
|
static int fsck_obj(struct object *obj)
|
2005-05-03 01:13:18 +02:00
|
|
|
{
|
2008-02-25 22:46:08 +01:00
|
|
|
if (obj->flags & SEEN)
|
2005-05-03 01:13:18 +02:00
|
|
|
return 0;
|
2008-02-25 22:46:08 +01:00
|
|
|
obj->flags |= SEEN;
|
2005-05-03 01:13:18 +02:00
|
|
|
|
2007-06-05 04:44:00 +02:00
|
|
|
if (verbose)
|
2008-02-25 22:46:08 +01:00
|
|
|
fprintf(stderr, "Checking %s %s\n",
|
2017-01-26 05:11:00 +01:00
|
|
|
printable_type(obj), describe_object(obj));
|
2005-05-06 01:18:48 +02:00
|
|
|
|
2015-06-22 17:25:00 +02:00
|
|
|
if (fsck_walk(obj, NULL, &fsck_obj_options))
|
2008-02-25 22:46:08 +01:00
|
|
|
objerror(obj, "broken links");
|
2015-06-22 17:25:00 +02:00
|
|
|
if (fsck_object(obj, NULL, 0, &fsck_obj_options))
|
2008-02-25 22:46:08 +01:00
|
|
|
return -1;
|
2005-05-03 01:13:18 +02:00
|
|
|
|
2008-02-25 22:46:08 +01:00
|
|
|
if (obj->type == OBJ_TREE) {
|
|
|
|
struct tree *item = (struct tree *) obj;
|
2005-05-03 01:13:18 +02:00
|
|
|
|
2013-06-06 00:37:39 +02:00
|
|
|
free_tree_buffer(item);
|
2005-04-09 02:11:14 +02:00
|
|
|
}
|
|
|
|
|
2008-02-25 22:46:08 +01:00
|
|
|
if (obj->type == OBJ_COMMIT) {
|
|
|
|
struct commit *commit = (struct commit *) obj;
|
2005-07-28 00:16:03 +02:00
|
|
|
|
provide a helper to free commit buffer
This converts two lines into one at each caller. But more
importantly, it abstracts the concept of freeing the buffer,
which will make it easier to change later.
Note that we also need to provide a "detach" mechanism for a
tricky case in index-pack. We are passed a buffer for the
object generated by processing the incoming pack. If we are
not using --strict, we just calculate the sha1 on that
buffer and return, leaving the caller to free it. But if we
are using --strict, we actually attach that buffer to an
object, pass the object to the fsck functions, and then
detach the buffer from the object again (so that the caller
can free it as usual). In this case, we don't want to free
the buffer ourselves, but just make sure it is no longer
associated with the commit.
Note that we are making the assumption here that the
attach/detach process does not impact the buffer at all
(e.g., it is never reallocated or modified). That holds true
now, and we have no plans to change that. However, as we
abstract the commit_buffer code, this dependency becomes
less obvious. So when we detach, let's also make sure that
we get back the same buffer that we gave to the
commit_buffer code.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2014-06-13 00:05:37 +02:00
|
|
|
free_commit_buffer(commit);
|
2005-04-24 23:10:55 +02:00
|
|
|
|
2008-02-25 22:46:08 +01:00
|
|
|
if (!commit->parents && show_root)
|
2016-07-17 12:59:44 +02:00
|
|
|
printf("root %s\n", describe_object(&commit->object));
|
2008-02-25 22:46:08 +01:00
|
|
|
}
|
2005-05-03 16:57:56 +02:00
|
|
|
|
2008-02-25 22:46:08 +01:00
|
|
|
if (obj->type == OBJ_TAG) {
|
|
|
|
struct tag *tag = (struct tag *) obj;
|
2007-06-05 04:44:00 +02:00
|
|
|
|
2008-02-25 22:46:08 +01:00
|
|
|
if (show_tags && tag->tagged) {
|
2017-01-26 05:11:00 +01:00
|
|
|
printf("tagged %s %s", printable_type(tag->tagged),
|
2016-07-17 12:59:44 +02:00
|
|
|
describe_object(tag->tagged));
|
|
|
|
printf(" (%s) in %s\n", tag->tag,
|
|
|
|
describe_object(&tag->object));
|
2008-02-25 22:46:08 +01:00
|
|
|
}
|
2005-05-03 16:57:56 +02:00
|
|
|
}
|
2005-04-26 01:31:13 +02:00
|
|
|
|
2005-04-18 20:39:48 +02:00
|
|
|
return 0;
|
2005-04-09 00:02:42 +02:00
|
|
|
}
|
|
|
|
|
2017-05-07 00:10:20 +02:00
|
|
|
static int fsck_obj_buffer(const struct object_id *oid, enum object_type type,
|
2011-11-07 03:59:25 +01:00
|
|
|
unsigned long size, void *buffer, int *eaten)
|
|
|
|
{
|
fsck: use streaming interface for large blobs in pack
For blobs, we want to make sure the on-disk data is not corrupted
(i.e. can be inflated and produce the expected SHA-1). Blob content is
opaque, there's nothing else inside to check for.
For really large blobs, we may want to avoid unpacking the entire blob
in memory, just to check whether it produces the same SHA-1. On 32-bit
systems, we may not have enough virtual address space for such memory
allocation. And even on 64-bit where it's not a problem, allocating a
lot more memory could result in kicking other parts of systems to swap
file, generating lots of I/O and slowing everything down.
For this particular operation, not unpacking the blob and letting
check_sha1_signature, which supports streaming interface, do the job
is sufficient. check_sha1_signature() is not shown in the diff,
unfortunately. But if will be called when "data_valid && !data" is
false.
We will call the callback function "fn" with NULL as "data". The only
callback of this function is fsck_obj_buffer(), which does not touch
"data" at all if it's a blob.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-07-13 17:44:04 +02:00
|
|
|
/*
|
|
|
|
* Note, buffer may be NULL if type is OBJ_BLOB. See
|
|
|
|
* verify_packfile(), data_valid variable for details.
|
|
|
|
*/
|
2011-11-07 03:59:25 +01:00
|
|
|
struct object *obj;
|
object: convert parse_object* to take struct object_id
Make parse_object, parse_object_or_die, and parse_object_buffer take a
pointer to struct object_id. Remove the temporary variables inserted
earlier, since they are no longer necessary. Transform all of the
callers using the following semantic patch:
@@
expression E1;
@@
- parse_object(E1.hash)
+ parse_object(&E1)
@@
expression E1;
@@
- parse_object(E1->hash)
+ parse_object(E1)
@@
expression E1, E2;
@@
- parse_object_or_die(E1.hash, E2)
+ parse_object_or_die(&E1, E2)
@@
expression E1, E2;
@@
- parse_object_or_die(E1->hash, E2)
+ parse_object_or_die(E1, E2)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1.hash, E2, E3, E4, E5)
+ parse_object_buffer(&E1, E2, E3, E4, E5)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1->hash, E2, E3, E4, E5)
+ parse_object_buffer(E1, E2, E3, E4, E5)
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-05-07 00:10:38 +02:00
|
|
|
obj = parse_object_buffer(oid, type, size, buffer, eaten);
|
2011-11-07 03:59:25 +01:00
|
|
|
if (!obj) {
|
|
|
|
errors_found |= ERROR_OBJECT;
|
2017-05-07 00:10:20 +02:00
|
|
|
return error("%s: object corrupt or missing", oid_to_hex(oid));
|
2011-11-07 03:59:25 +01:00
|
|
|
}
|
2013-06-06 00:37:39 +02:00
|
|
|
obj->flags = HAS_OBJ;
|
2011-11-07 03:59:25 +01:00
|
|
|
return fsck_obj(obj);
|
|
|
|
}
|
|
|
|
|
2006-08-15 19:23:48 +02:00
|
|
|
static int default_refs;
|
2005-07-03 19:01:38 +02:00
|
|
|
|
2017-02-22 00:47:32 +01:00
|
|
|
static void fsck_handle_reflog_oid(const char *refname, struct object_id *oid,
|
2017-04-26 21:29:31 +02:00
|
|
|
timestamp_t timestamp)
|
2006-12-18 10:36:16 +01:00
|
|
|
{
|
|
|
|
struct object *obj;
|
|
|
|
|
2017-02-22 00:47:32 +01:00
|
|
|
if (!is_null_oid(oid)) {
|
|
|
|
obj = lookup_object(oid->hash);
|
2017-01-16 22:34:57 +01:00
|
|
|
if (obj && (obj->flags & HAS_OBJ)) {
|
2016-07-17 13:00:02 +02:00
|
|
|
if (timestamp && name_objects)
|
|
|
|
add_decoration(fsck_walk_options.object_names,
|
|
|
|
obj,
|
2017-04-21 12:45:48 +02:00
|
|
|
xstrfmt("%s@{%"PRItime"}", refname, timestamp));
|
2006-12-18 10:36:16 +01:00
|
|
|
obj->used = 1;
|
2008-02-25 22:46:05 +01:00
|
|
|
mark_object_reachable(obj);
|
2015-06-08 15:40:05 +02:00
|
|
|
} else {
|
2017-02-22 00:47:32 +01:00
|
|
|
error("%s: invalid reflog entry %s", refname, oid_to_hex(oid));
|
2015-06-08 15:40:05 +02:00
|
|
|
errors_found |= ERROR_REACHABLE;
|
2006-12-18 10:36:16 +01:00
|
|
|
}
|
|
|
|
}
|
2015-06-08 15:40:04 +02:00
|
|
|
}
|
|
|
|
|
2017-02-22 00:47:32 +01:00
|
|
|
static int fsck_handle_reflog_ent(struct object_id *ooid, struct object_id *noid,
|
2017-04-26 21:29:31 +02:00
|
|
|
const char *email, timestamp_t timestamp, int tz,
|
2007-01-08 01:59:54 +01:00
|
|
|
const char *message, void *cb_data)
|
2006-12-18 10:36:16 +01:00
|
|
|
{
|
2015-06-08 15:40:05 +02:00
|
|
|
const char *refname = cb_data;
|
2006-12-18 10:36:16 +01:00
|
|
|
|
2007-06-05 04:44:00 +02:00
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "Checking reflog %s->%s\n",
|
2017-02-22 00:47:32 +01:00
|
|
|
oid_to_hex(ooid), oid_to_hex(noid));
|
2007-06-05 04:44:00 +02:00
|
|
|
|
2017-02-22 00:47:32 +01:00
|
|
|
fsck_handle_reflog_oid(refname, ooid, 0);
|
|
|
|
fsck_handle_reflog_oid(refname, noid, timestamp);
|
2006-12-18 10:36:16 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-25 20:38:50 +02:00
|
|
|
static int fsck_handle_reflog(const char *logname, const struct object_id *oid,
|
|
|
|
int flag, void *cb_data)
|
2007-02-03 19:25:43 +01:00
|
|
|
{
|
2015-06-08 15:40:05 +02:00
|
|
|
for_each_reflog_ent(logname, fsck_handle_reflog_ent, (void *)logname);
|
2007-02-03 19:25:43 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-05-25 20:38:50 +02:00
|
|
|
static int fsck_handle_ref(const char *refname, const struct object_id *oid,
|
|
|
|
int flag, void *cb_data)
|
2005-05-18 19:16:14 +02:00
|
|
|
{
|
|
|
|
struct object *obj;
|
|
|
|
|
object: convert parse_object* to take struct object_id
Make parse_object, parse_object_or_die, and parse_object_buffer take a
pointer to struct object_id. Remove the temporary variables inserted
earlier, since they are no longer necessary. Transform all of the
callers using the following semantic patch:
@@
expression E1;
@@
- parse_object(E1.hash)
+ parse_object(&E1)
@@
expression E1;
@@
- parse_object(E1->hash)
+ parse_object(E1)
@@
expression E1, E2;
@@
- parse_object_or_die(E1.hash, E2)
+ parse_object_or_die(&E1, E2)
@@
expression E1, E2;
@@
- parse_object_or_die(E1->hash, E2)
+ parse_object_or_die(E1, E2)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1.hash, E2, E3, E4, E5)
+ parse_object_buffer(&E1, E2, E3, E4, E5)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1->hash, E2, E3, E4, E5)
+ parse_object_buffer(E1, E2, E3, E4, E5)
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-05-07 00:10:38 +02:00
|
|
|
obj = parse_object(oid);
|
2005-06-28 23:58:33 +02:00
|
|
|
if (!obj) {
|
2015-05-25 20:38:50 +02:00
|
|
|
error("%s: invalid sha1 pointer %s", refname, oid_to_hex(oid));
|
2014-09-12 05:38:30 +02:00
|
|
|
errors_found |= ERROR_REACHABLE;
|
2005-07-03 19:01:38 +02:00
|
|
|
/* We'll continue with the rest despite the error.. */
|
|
|
|
return 0;
|
2005-06-28 23:58:33 +02:00
|
|
|
}
|
2015-09-23 22:46:39 +02:00
|
|
|
if (obj->type != OBJ_COMMIT && is_branch(refname)) {
|
2008-01-16 01:34:17 +01:00
|
|
|
error("%s: not a commit", refname);
|
2015-09-23 22:46:39 +02:00
|
|
|
errors_found |= ERROR_REFS;
|
|
|
|
}
|
2005-07-03 19:01:38 +02:00
|
|
|
default_refs++;
|
2005-05-18 19:16:14 +02:00
|
|
|
obj->used = 1;
|
2016-07-17 13:00:02 +02:00
|
|
|
if (name_objects)
|
|
|
|
add_decoration(fsck_walk_options.object_names,
|
|
|
|
obj, xstrdup(refname));
|
2008-02-25 22:46:05 +01:00
|
|
|
mark_object_reachable(obj);
|
2006-12-18 10:36:16 +01:00
|
|
|
|
2005-05-20 16:49:17 +02:00
|
|
|
return 0;
|
2005-05-18 19:16:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void get_default_heads(void)
|
|
|
|
{
|
2015-05-25 20:38:50 +02:00
|
|
|
if (head_points_at && !is_null_oid(&head_oid))
|
|
|
|
fsck_handle_ref("HEAD", &head_oid, 0, NULL);
|
|
|
|
for_each_rawref(fsck_handle_ref, NULL);
|
2007-04-04 16:46:14 +02:00
|
|
|
if (include_reflogs)
|
2015-05-25 20:38:50 +02:00
|
|
|
for_each_reflog(fsck_handle_reflog, NULL);
|
2006-08-29 20:47:30 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Not having any default heads isn't really fatal, but
|
|
|
|
* it does mean that "--unreachable" no longer makes any
|
|
|
|
* sense (since in this case everything will obviously
|
|
|
|
* be unreachable by definition.
|
|
|
|
*
|
|
|
|
* Showing dangling objects is valid, though (as those
|
|
|
|
* dangling objects are likely lost heads).
|
|
|
|
*
|
|
|
|
* So we just print a warning about it, and clear the
|
|
|
|
* "show_unreachable" flag.
|
|
|
|
*/
|
|
|
|
if (!default_refs) {
|
2007-04-11 10:28:43 +02:00
|
|
|
fprintf(stderr, "notice: No default references\n");
|
2006-08-29 20:47:30 +02:00
|
|
|
show_unreachable = 0;
|
|
|
|
}
|
2005-05-18 19:16:14 +02:00
|
|
|
}
|
|
|
|
|
2017-02-22 00:47:35 +01:00
|
|
|
static struct object *parse_loose_object(const struct object_id *oid,
|
fsck: parse loose object paths directly
When we iterate over the list of loose objects to check, we
get the actual path of each object. But we then throw it
away and pass just the sha1 to fsck_sha1(), which will do a
fresh lookup. Usually it would find the same object, but it
may not if an object exists both as a loose and a packed
object. We may end up checking the packed object twice, and
never look at the loose one.
In practice this isn't too terrible, because if fsck doesn't
complain, it means you have at least one good copy. But
since the point of fsck is to look for corruption, we should
be thorough.
The new read_loose_object() interface can help us get the
data from disk, and then we replace parse_object() with
parse_object_buffer(). As a bonus, our error messages now
mention the path to a corrupted object, which should make it
easier to track down errors when they do happen.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-13 18:59:44 +01:00
|
|
|
const char *path)
|
|
|
|
{
|
|
|
|
struct object *obj;
|
|
|
|
void *contents;
|
|
|
|
enum object_type type;
|
|
|
|
unsigned long size;
|
|
|
|
int eaten;
|
|
|
|
|
2017-02-22 00:47:35 +01:00
|
|
|
if (read_loose_object(path, oid->hash, &type, &size, &contents) < 0)
|
fsck: parse loose object paths directly
When we iterate over the list of loose objects to check, we
get the actual path of each object. But we then throw it
away and pass just the sha1 to fsck_sha1(), which will do a
fresh lookup. Usually it would find the same object, but it
may not if an object exists both as a loose and a packed
object. We may end up checking the packed object twice, and
never look at the loose one.
In practice this isn't too terrible, because if fsck doesn't
complain, it means you have at least one good copy. But
since the point of fsck is to look for corruption, we should
be thorough.
The new read_loose_object() interface can help us get the
data from disk, and then we replace parse_object() with
parse_object_buffer(). As a bonus, our error messages now
mention the path to a corrupted object, which should make it
easier to track down errors when they do happen.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-13 18:59:44 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!contents && type != OBJ_BLOB)
|
|
|
|
die("BUG: read_loose_object streamed a non-blob");
|
|
|
|
|
object: convert parse_object* to take struct object_id
Make parse_object, parse_object_or_die, and parse_object_buffer take a
pointer to struct object_id. Remove the temporary variables inserted
earlier, since they are no longer necessary. Transform all of the
callers using the following semantic patch:
@@
expression E1;
@@
- parse_object(E1.hash)
+ parse_object(&E1)
@@
expression E1;
@@
- parse_object(E1->hash)
+ parse_object(E1)
@@
expression E1, E2;
@@
- parse_object_or_die(E1.hash, E2)
+ parse_object_or_die(&E1, E2)
@@
expression E1, E2;
@@
- parse_object_or_die(E1->hash, E2)
+ parse_object_or_die(E1, E2)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1.hash, E2, E3, E4, E5)
+ parse_object_buffer(&E1, E2, E3, E4, E5)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1->hash, E2, E3, E4, E5)
+ parse_object_buffer(E1, E2, E3, E4, E5)
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-05-07 00:10:38 +02:00
|
|
|
obj = parse_object_buffer(oid, type, size, contents, &eaten);
|
fsck: parse loose object paths directly
When we iterate over the list of loose objects to check, we
get the actual path of each object. But we then throw it
away and pass just the sha1 to fsck_sha1(), which will do a
fresh lookup. Usually it would find the same object, but it
may not if an object exists both as a loose and a packed
object. We may end up checking the packed object twice, and
never look at the loose one.
In practice this isn't too terrible, because if fsck doesn't
complain, it means you have at least one good copy. But
since the point of fsck is to look for corruption, we should
be thorough.
The new read_loose_object() interface can help us get the
data from disk, and then we replace parse_object() with
parse_object_buffer(). As a bonus, our error messages now
mention the path to a corrupted object, which should make it
easier to track down errors when they do happen.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-13 18:59:44 +01:00
|
|
|
|
|
|
|
if (!eaten)
|
|
|
|
free(contents);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2017-02-22 00:47:35 +01:00
|
|
|
static int fsck_loose(const struct object_id *oid, const char *path, void *data)
|
2015-09-24 23:08:33 +02:00
|
|
|
{
|
2017-02-22 00:47:35 +01:00
|
|
|
struct object *obj = parse_loose_object(oid, path);
|
fsck: parse loose object paths directly
When we iterate over the list of loose objects to check, we
get the actual path of each object. But we then throw it
away and pass just the sha1 to fsck_sha1(), which will do a
fresh lookup. Usually it would find the same object, but it
may not if an object exists both as a loose and a packed
object. We may end up checking the packed object twice, and
never look at the loose one.
In practice this isn't too terrible, because if fsck doesn't
complain, it means you have at least one good copy. But
since the point of fsck is to look for corruption, we should
be thorough.
The new read_loose_object() interface can help us get the
data from disk, and then we replace parse_object() with
parse_object_buffer(). As a bonus, our error messages now
mention the path to a corrupted object, which should make it
easier to track down errors when they do happen.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-13 18:59:44 +01:00
|
|
|
|
|
|
|
if (!obj) {
|
|
|
|
errors_found |= ERROR_OBJECT;
|
|
|
|
error("%s: object corrupt or missing: %s",
|
2017-02-22 00:47:35 +01:00
|
|
|
oid_to_hex(oid), path);
|
fsck: parse loose object paths directly
When we iterate over the list of loose objects to check, we
get the actual path of each object. But we then throw it
away and pass just the sha1 to fsck_sha1(), which will do a
fresh lookup. Usually it would find the same object, but it
may not if an object exists both as a loose and a packed
object. We may end up checking the packed object twice, and
never look at the loose one.
In practice this isn't too terrible, because if fsck doesn't
complain, it means you have at least one good copy. But
since the point of fsck is to look for corruption, we should
be thorough.
The new read_loose_object() interface can help us get the
data from disk, and then we replace parse_object() with
parse_object_buffer(). As a bonus, our error messages now
mention the path to a corrupted object, which should make it
easier to track down errors when they do happen.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-13 18:59:44 +01:00
|
|
|
return 0; /* keep checking other objects */
|
|
|
|
}
|
|
|
|
|
|
|
|
obj->flags = HAS_OBJ;
|
|
|
|
if (fsck_obj(obj))
|
2015-09-24 23:08:33 +02:00
|
|
|
errors_found |= ERROR_OBJECT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fsck_cruft(const char *basename, const char *path, void *data)
|
|
|
|
{
|
|
|
|
if (!starts_with(basename, "tmp_obj_"))
|
|
|
|
fprintf(stderr, "bad sha1 file: %s\n", path);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fsck_subdir(int nr, const char *path, void *progress)
|
|
|
|
{
|
|
|
|
display_progress(progress, nr + 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-06-28 23:58:33 +02:00
|
|
|
static void fsck_object_dir(const char *path)
|
|
|
|
{
|
2011-11-07 03:59:26 +01:00
|
|
|
struct progress *progress = NULL;
|
2007-06-05 04:44:00 +02:00
|
|
|
|
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "Checking object directory\n");
|
|
|
|
|
2011-11-07 03:59:26 +01:00
|
|
|
if (show_progress)
|
2014-02-21 13:50:18 +01:00
|
|
|
progress = start_progress(_("Checking object directories"), 256);
|
2015-09-24 23:08:33 +02:00
|
|
|
|
|
|
|
for_each_loose_file_in_objdir(path, fsck_loose, fsck_cruft, fsck_subdir,
|
|
|
|
progress);
|
|
|
|
display_progress(progress, 256);
|
2011-11-07 03:59:26 +01:00
|
|
|
stop_progress(&progress);
|
2005-06-28 23:58:33 +02:00
|
|
|
}
|
|
|
|
|
2005-07-03 19:40:38 +02:00
|
|
|
static int fsck_head_link(void)
|
|
|
|
{
|
2007-04-11 10:28:43 +02:00
|
|
|
int null_is_error = 0;
|
|
|
|
|
2007-06-05 04:44:00 +02:00
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "Checking HEAD link\n");
|
|
|
|
|
2016-04-07 21:03:05 +02:00
|
|
|
head_points_at = resolve_ref_unsafe("HEAD", 0, head_oid.hash, NULL);
|
2015-09-23 22:46:39 +02:00
|
|
|
if (!head_points_at) {
|
|
|
|
errors_found |= ERROR_REFS;
|
2007-04-11 10:28:43 +02:00
|
|
|
return error("Invalid HEAD");
|
2015-09-23 22:46:39 +02:00
|
|
|
}
|
2007-04-11 10:28:43 +02:00
|
|
|
if (!strcmp(head_points_at, "HEAD"))
|
|
|
|
/* detached HEAD */
|
|
|
|
null_is_error = 1;
|
2015-09-23 22:46:39 +02:00
|
|
|
else if (!starts_with(head_points_at, "refs/heads/")) {
|
|
|
|
errors_found |= ERROR_REFS;
|
2005-09-30 23:26:57 +02:00
|
|
|
return error("HEAD points to something strange (%s)",
|
2006-09-18 10:08:00 +02:00
|
|
|
head_points_at);
|
2015-09-23 22:46:39 +02:00
|
|
|
}
|
2015-05-25 20:38:50 +02:00
|
|
|
if (is_null_oid(&head_oid)) {
|
2015-09-23 22:46:39 +02:00
|
|
|
if (null_is_error) {
|
|
|
|
errors_found |= ERROR_REFS;
|
2007-04-11 10:28:43 +02:00
|
|
|
return error("HEAD: detached HEAD points at nothing");
|
2015-09-23 22:46:39 +02:00
|
|
|
}
|
2007-04-11 10:28:43 +02:00
|
|
|
fprintf(stderr, "notice: HEAD points to an unborn branch (%s)\n",
|
|
|
|
head_points_at + 11);
|
|
|
|
}
|
2005-07-03 19:40:38 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-04-26 01:37:08 +02:00
|
|
|
static int fsck_cache_tree(struct cache_tree *it)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int err = 0;
|
|
|
|
|
2007-06-05 04:44:00 +02:00
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "Checking cache tree\n");
|
|
|
|
|
2006-04-26 01:37:08 +02:00
|
|
|
if (0 <= it->entry_count) {
|
object: convert parse_object* to take struct object_id
Make parse_object, parse_object_or_die, and parse_object_buffer take a
pointer to struct object_id. Remove the temporary variables inserted
earlier, since they are no longer necessary. Transform all of the
callers using the following semantic patch:
@@
expression E1;
@@
- parse_object(E1.hash)
+ parse_object(&E1)
@@
expression E1;
@@
- parse_object(E1->hash)
+ parse_object(E1)
@@
expression E1, E2;
@@
- parse_object_or_die(E1.hash, E2)
+ parse_object_or_die(&E1, E2)
@@
expression E1, E2;
@@
- parse_object_or_die(E1->hash, E2)
+ parse_object_or_die(E1, E2)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1.hash, E2, E3, E4, E5)
+ parse_object_buffer(&E1, E2, E3, E4, E5)
@@
expression E1, E2, E3, E4, E5;
@@
- parse_object_buffer(E1->hash, E2, E3, E4, E5)
+ parse_object_buffer(E1, E2, E3, E4, E5)
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-05-07 00:10:38 +02:00
|
|
|
struct object *obj = parse_object(&it->oid);
|
2006-05-04 06:17:45 +02:00
|
|
|
if (!obj) {
|
|
|
|
error("%s: invalid sha1 pointer in cache-tree",
|
2017-05-01 04:28:56 +02:00
|
|
|
oid_to_hex(&it->oid));
|
2015-09-23 22:46:39 +02:00
|
|
|
errors_found |= ERROR_REFS;
|
2006-05-04 06:17:45 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2006-05-02 07:15:54 +02:00
|
|
|
obj->used = 1;
|
2016-07-17 13:00:02 +02:00
|
|
|
if (name_objects)
|
|
|
|
add_decoration(fsck_walk_options.object_names,
|
|
|
|
obj, xstrdup(":"));
|
2011-01-26 21:46:55 +01:00
|
|
|
mark_object_reachable(obj);
|
2006-07-12 05:45:31 +02:00
|
|
|
if (obj->type != OBJ_TREE)
|
2006-04-26 01:37:08 +02:00
|
|
|
err |= objerror(obj, "non-tree in cache-tree");
|
|
|
|
}
|
|
|
|
for (i = 0; i < it->subtree_nr; i++)
|
|
|
|
err |= fsck_cache_tree(it->down[i]->cache_tree);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-02-22 00:47:35 +01:00
|
|
|
static void mark_object_for_connectivity(const struct object_id *oid)
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
{
|
2017-02-22 00:47:35 +01:00
|
|
|
struct object *obj = lookup_unknown_object(oid->hash);
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
obj->flags |= HAS_OBJ;
|
|
|
|
}
|
|
|
|
|
2017-02-22 00:47:35 +01:00
|
|
|
static int mark_loose_for_connectivity(const struct object_id *oid,
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
const char *path,
|
|
|
|
void *data)
|
|
|
|
{
|
2017-02-22 00:47:35 +01:00
|
|
|
mark_object_for_connectivity(oid);
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-22 00:47:35 +01:00
|
|
|
static int mark_packed_for_connectivity(const struct object_id *oid,
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
struct packed_git *pack,
|
|
|
|
uint32_t pos,
|
|
|
|
void *data)
|
|
|
|
{
|
2017-02-22 00:47:35 +01:00
|
|
|
mark_object_for_connectivity(oid);
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-15 22:34:05 +02:00
|
|
|
static char const * const fsck_usage[] = {
|
2015-01-13 08:44:47 +01:00
|
|
|
N_("git fsck [<options>] [<object>...]"),
|
2007-10-15 22:34:05 +02:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct option fsck_opts[] = {
|
2012-08-20 14:32:13 +02:00
|
|
|
OPT__VERBOSE(&verbose, N_("be verbose")),
|
2013-08-03 13:51:19 +02:00
|
|
|
OPT_BOOL(0, "unreachable", &show_unreachable, N_("show unreachable objects")),
|
2012-08-20 14:32:13 +02:00
|
|
|
OPT_BOOL(0, "dangling", &show_dangling, N_("show dangling objects")),
|
2013-08-03 13:51:19 +02:00
|
|
|
OPT_BOOL(0, "tags", &show_tags, N_("report tags")),
|
|
|
|
OPT_BOOL(0, "root", &show_root, N_("report root nodes")),
|
|
|
|
OPT_BOOL(0, "cache", &keep_cache_objects, N_("make index objects head nodes")),
|
|
|
|
OPT_BOOL(0, "reflogs", &include_reflogs, N_("make reflogs head nodes (default)")),
|
|
|
|
OPT_BOOL(0, "full", &check_full, N_("also consider packs and alternate objects")),
|
2015-06-22 17:27:12 +02:00
|
|
|
OPT_BOOL(0, "connectivity-only", &connectivity_only, N_("check only connectivity")),
|
2013-08-03 13:51:19 +02:00
|
|
|
OPT_BOOL(0, "strict", &check_strict, N_("enable more strict checking")),
|
|
|
|
OPT_BOOL(0, "lost-found", &write_lost_and_found,
|
2012-08-20 14:32:13 +02:00
|
|
|
N_("write dangling objects in .git/lost-found")),
|
|
|
|
OPT_BOOL(0, "progress", &show_progress, N_("show progress")),
|
2016-07-17 13:00:02 +02:00
|
|
|
OPT_BOOL(0, "name-objects", &name_objects, N_("show verbose names for reachable objects")),
|
2007-10-15 22:34:05 +02:00
|
|
|
OPT_END(),
|
|
|
|
};
|
2007-03-05 09:22:06 +01:00
|
|
|
|
2007-07-15 01:14:45 +02:00
|
|
|
int cmd_fsck(int argc, const char **argv, const char *prefix)
|
2005-04-09 00:02:42 +02:00
|
|
|
{
|
2005-04-14 01:42:09 +02:00
|
|
|
int i, heads;
|
2009-01-30 09:50:54 +01:00
|
|
|
struct alternate_object_database *alt;
|
2005-04-09 00:02:42 +02:00
|
|
|
|
2007-03-05 09:22:06 +01:00
|
|
|
errors_found = 0;
|
2014-02-18 12:24:55 +01:00
|
|
|
check_replace_refs = 0;
|
2005-11-26 08:52:04 +01:00
|
|
|
|
2009-05-23 20:53:12 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, fsck_opts, fsck_usage, 0);
|
2011-11-07 03:59:26 +01:00
|
|
|
|
2015-06-22 17:25:00 +02:00
|
|
|
fsck_walk_options.walk = mark_object;
|
|
|
|
fsck_obj_options.walk = mark_used;
|
|
|
|
fsck_obj_options.error_func = fsck_error_func;
|
|
|
|
if (check_strict)
|
|
|
|
fsck_obj_options.strict = 1;
|
|
|
|
|
2011-11-07 03:59:26 +01:00
|
|
|
if (show_progress == -1)
|
|
|
|
show_progress = isatty(2);
|
|
|
|
if (verbose)
|
|
|
|
show_progress = 0;
|
|
|
|
|
2007-10-15 22:34:05 +02:00
|
|
|
if (write_lost_and_found) {
|
|
|
|
check_full = 1;
|
|
|
|
include_reflogs = 0;
|
2005-04-26 01:31:13 +02:00
|
|
|
}
|
|
|
|
|
2016-07-17 13:00:02 +02:00
|
|
|
if (name_objects)
|
|
|
|
fsck_walk_options.object_names =
|
|
|
|
xcalloc(1, sizeof(struct decoration));
|
|
|
|
|
2015-06-22 17:27:06 +02:00
|
|
|
git_config(fsck_config, NULL);
|
|
|
|
|
2005-07-03 19:40:38 +02:00
|
|
|
fsck_head_link();
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
if (connectivity_only) {
|
|
|
|
for_each_loose_object(mark_loose_for_connectivity, NULL, 0);
|
|
|
|
for_each_packed_object(mark_packed_for_connectivity, NULL, 0);
|
|
|
|
} else {
|
2015-06-22 17:27:12 +02:00
|
|
|
fsck_object_dir(get_object_directory());
|
2009-01-30 09:50:54 +01:00
|
|
|
|
2015-09-24 23:05:30 +02:00
|
|
|
prepare_alt_odb();
|
2016-10-03 22:35:51 +02:00
|
|
|
for (alt = alt_odb_list; alt; alt = alt->next)
|
|
|
|
fsck_object_dir(alt->path);
|
2009-01-30 09:50:54 +01:00
|
|
|
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
if (check_full) {
|
|
|
|
struct packed_git *p;
|
|
|
|
uint32_t total = 0, count = 0;
|
|
|
|
struct progress *progress = NULL;
|
2009-01-30 09:50:54 +01:00
|
|
|
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
prepare_packed_git();
|
2011-11-07 03:59:26 +01:00
|
|
|
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
if (show_progress) {
|
|
|
|
for (p = packed_git; p; p = p->next) {
|
|
|
|
if (open_pack_index(p))
|
|
|
|
continue;
|
|
|
|
total += p->num_objects;
|
|
|
|
}
|
2011-11-07 03:59:26 +01:00
|
|
|
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
progress = start_progress(_("Checking objects"), total);
|
|
|
|
}
|
2011-11-07 03:59:26 +01:00
|
|
|
for (p = packed_git; p; p = p->next) {
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
/* verify gives error messages itself */
|
|
|
|
if (verify_pack(p, fsck_obj_buffer,
|
|
|
|
progress, count))
|
|
|
|
errors_found |= ERROR_PACK;
|
|
|
|
count += p->num_objects;
|
2011-11-07 03:59:26 +01:00
|
|
|
}
|
fsck: prepare dummy objects for --connectivity-check
Normally fsck makes a pass over all objects to check their
integrity, and then follows up with a reachability check to
make sure we have all of the referenced objects (and to know
which ones are dangling). The latter checks for the HAS_OBJ
flag in obj->flags to see if we found the object in the
first pass.
Commit 02976bf85 (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) taught fsck to skip the initial pass, and to
fallback to has_sha1_file() instead of the HAS_OBJ check.
However, it converted only one HAS_OBJ check to use
has_sha1_file(). But there are many other places in
builtin/fsck.c that assume that the flag is set (or that
lookup_object() will return an object at all). This leads to
several bugs with --connectivity-only:
1. mark_object() will not queue objects for examination,
so recursively following links from commits to trees,
etc, did nothing. I.e., we were checking the
reachability of hardly anything at all.
2. When a set of heads is given on the command-line, we
use lookup_object() to see if they exist. But without
the initial pass, we assume nothing exists.
3. When loading reflog entries, we do a similar
lookup_object() check, and complain that the reflog is
broken if the object doesn't exist in our hash.
So in short, --connectivity-only is broken pretty badly, and
will claim that your repository is fine when it's not.
Presumably nobody noticed for a few reasons.
One is that the embedded test does not actually test the
recursive nature of the reachability check. All of the
missing objects are still in the index, and we directly
check items from the index. This patch modifies the test to
delete the index, which shows off breakage (1).
Another is that --connectivity-only just skips the initial
pass for loose objects. So on a real repository, the packed
objects were still checked correctly. But on the flipside,
it means that "git fsck --connectivity-only" still checks
the sha1 of all of the packed objects, nullifying its
original purpose of being a faster git-fsck.
And of course the final problem is that the bug only shows
up when there _is_ corruption, which is rare. So anybody
running "git fsck --connectivity-only" proactively would
assume it was being thorough, when it was not.
One possibility for fixing this is to find all of the spots
that rely on HAS_OBJ and tweak them for the connectivity-only
case. But besides the risk that we might miss a spot (and I
found three already, corresponding to the three bugs above),
there are other parts of fsck that _can't_ work without a
full list of objects. E.g., the list of dangling objects.
Instead, let's make the connectivity-only case look more
like the normal case. Rather than skip the initial pass
completely, we'll do an abbreviated one that sets up the
HAS_OBJ flag for each object, without actually loading the
object data.
That's simple and fast, and we don't have to care about the
connectivity_only flag in the rest of the code at all.
While we're at it, let's make sure we treat loose and packed
objects the same (i.e., setting up dummy objects for both
and skipping the actual sha1 check). That makes the
connectivity-only check actually fast on a real repo (40
seconds versus 180 seconds on my copy of linux.git).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-01-17 22:32:57 +01:00
|
|
|
stop_progress(&progress);
|
2011-11-07 03:59:26 +01:00
|
|
|
}
|
2005-04-14 01:42:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
heads = 0;
|
2009-01-18 04:46:09 +01:00
|
|
|
for (i = 0; i < argc; i++) {
|
2007-06-07 09:04:01 +02:00
|
|
|
const char *arg = argv[i];
|
2009-01-30 09:33:00 +01:00
|
|
|
unsigned char sha1[20];
|
|
|
|
if (!get_sha1(arg, sha1)) {
|
|
|
|
struct object *obj = lookup_object(sha1);
|
2005-04-30 05:00:40 +02:00
|
|
|
|
2017-01-16 22:34:57 +01:00
|
|
|
if (!obj || !(obj->flags & HAS_OBJ)) {
|
2017-01-16 22:33:29 +01:00
|
|
|
error("%s: object missing", sha1_to_hex(sha1));
|
|
|
|
errors_found |= ERROR_OBJECT;
|
2005-04-30 05:00:40 +02:00
|
|
|
continue;
|
2017-01-16 22:33:29 +01:00
|
|
|
}
|
2005-04-30 05:00:40 +02:00
|
|
|
|
2005-04-18 20:39:48 +02:00
|
|
|
obj->used = 1;
|
2016-07-17 13:00:02 +02:00
|
|
|
if (name_objects)
|
|
|
|
add_decoration(fsck_walk_options.object_names,
|
|
|
|
obj, xstrdup(arg));
|
2008-02-25 22:46:05 +01:00
|
|
|
mark_object_reachable(obj);
|
2005-04-14 01:42:09 +02:00
|
|
|
heads++;
|
2005-04-13 18:57:30 +02:00
|
|
|
continue;
|
|
|
|
}
|
2005-09-20 20:56:05 +02:00
|
|
|
error("invalid parameter: expected sha1, got '%s'", arg);
|
2017-01-16 22:33:29 +01:00
|
|
|
errors_found |= ERROR_OBJECT;
|
2005-04-13 18:57:30 +02:00
|
|
|
}
|
|
|
|
|
2005-05-18 19:16:14 +02:00
|
|
|
/*
|
2005-05-20 22:59:17 +02:00
|
|
|
* If we've not been given any explicit head information, do the
|
2005-05-18 19:19:59 +02:00
|
|
|
* default ones from .git/refs. We also consider the index file
|
|
|
|
* in this case (ie this implies --cache).
|
2005-05-18 19:16:14 +02:00
|
|
|
*/
|
2017-01-16 22:34:21 +01:00
|
|
|
if (!argc) {
|
2005-05-18 19:16:14 +02:00
|
|
|
get_default_heads();
|
|
|
|
keep_cache_objects = 1;
|
|
|
|
}
|
|
|
|
|
2005-05-04 10:33:33 +02:00
|
|
|
if (keep_cache_objects) {
|
2017-04-14 22:32:21 +02:00
|
|
|
verify_index_checksum = 1;
|
2005-05-04 10:33:33 +02:00
|
|
|
read_cache();
|
|
|
|
for (i = 0; i < active_nr; i++) {
|
2007-04-10 06:15:29 +02:00
|
|
|
unsigned int mode;
|
|
|
|
struct blob *blob;
|
2005-05-04 10:33:33 +02:00
|
|
|
struct object *obj;
|
2007-04-10 06:15:29 +02:00
|
|
|
|
2008-01-15 01:03:17 +01:00
|
|
|
mode = active_cache[i]->ce_mode;
|
2007-05-21 22:08:28 +02:00
|
|
|
if (S_ISGITLINK(mode))
|
2007-04-10 06:15:29 +02:00
|
|
|
continue;
|
2017-05-07 00:10:14 +02:00
|
|
|
blob = lookup_blob(&active_cache[i]->oid);
|
2005-05-04 10:33:33 +02:00
|
|
|
if (!blob)
|
|
|
|
continue;
|
|
|
|
obj = &blob->object;
|
|
|
|
obj->used = 1;
|
2016-07-17 13:00:02 +02:00
|
|
|
if (name_objects)
|
|
|
|
add_decoration(fsck_walk_options.object_names,
|
|
|
|
obj,
|
|
|
|
xstrfmt(":%s", active_cache[i]->name));
|
2008-02-25 22:46:05 +01:00
|
|
|
mark_object_reachable(obj);
|
2005-05-04 10:33:33 +02:00
|
|
|
}
|
2006-04-26 01:37:08 +02:00
|
|
|
if (active_cache_tree)
|
|
|
|
fsck_cache_tree(active_cache_tree);
|
2005-05-04 10:33:33 +02:00
|
|
|
}
|
|
|
|
|
2005-04-11 08:13:09 +02:00
|
|
|
check_connectivity();
|
2007-03-05 09:22:06 +01:00
|
|
|
return errors_found;
|
2005-04-09 00:02:42 +02:00
|
|
|
}
|