blob: 7fa717a3b6ab08bb5b4d5549eeb96f07460f95e6 [file] [log] [blame]
James Bowes6757ada2007-03-13 21:58:22 -04001/*
2 * git gc builtin command
3 *
4 * Cleanup unreachable files and optimize the repository.
5 *
6 * Copyright (c) 2007 James Bowes
7 *
8 * Based on git-gc.sh, which is
9 *
10 * Copyright (c) 2006 Shawn O. Pearce
11 */
12
Peter Hagervallbaffc0e2007-07-15 01:14:45 +020013#include "builtin.h"
James Bowes6757ada2007-03-13 21:58:22 -040014#include "cache.h"
James Bowes44c637c2007-11-01 21:02:27 -040015#include "parse-options.h"
James Bowes6757ada2007-03-13 21:58:22 -040016#include "run-command.h"
Jonathan Nieder4c5baf02013-10-16 16:11:46 -070017#include "sigchain.h"
Jeff King234587f2012-04-18 14:10:19 -070018#include "argv-array.h"
Nguyễn Thái Ngọc Duyeab32962013-12-05 20:02:54 +070019#include "commit.h"
James Bowes6757ada2007-03-13 21:58:22 -040020
21#define FAILED_RUN "failed to run %s"
22
James Bowes44c637c2007-11-01 21:02:27 -040023static const char * const builtin_gc_usage[] = {
Nguyễn Thái Ngọc Duy6705c162012-08-20 19:32:14 +070024 N_("git gc [options]"),
James Bowes44c637c2007-11-01 21:02:27 -040025 NULL
26};
James Bowes6757ada2007-03-13 21:58:22 -040027
Linus Torvalds56752392007-05-24 11:41:39 -070028static int pack_refs = 1;
Johannes Schindelin1c192f32007-12-06 12:03:38 +000029static int aggressive_window = 250;
Junio C Hamano2c3c4392007-09-05 13:01:37 -070030static int gc_auto_threshold = 6700;
Junio C Hamano97063972008-03-23 00:04:48 -070031static int gc_auto_pack_limit = 50;
David Brysond3154b42008-09-30 13:28:58 -070032static const char *prune_expire = "2.weeks.ago";
James Bowes6757ada2007-03-13 21:58:22 -040033
Jeff King234587f2012-04-18 14:10:19 -070034static struct argv_array pack_refs_cmd = ARGV_ARRAY_INIT;
35static struct argv_array reflog = ARGV_ARRAY_INIT;
36static struct argv_array repack = ARGV_ARRAY_INIT;
37static struct argv_array prune = ARGV_ARRAY_INIT;
38static struct argv_array rerere = ARGV_ARRAY_INIT;
James Bowes6757ada2007-03-13 21:58:22 -040039
Jonathan Nieder4c5baf02013-10-16 16:11:46 -070040static char *pidfile;
41
42static void remove_pidfile(void)
43{
44 if (pidfile)
45 unlink(pidfile);
46}
47
48static void remove_pidfile_on_signal(int signo)
49{
50 remove_pidfile();
51 sigchain_pop(signo);
52 raise(signo);
53}
54
Johannes Schindelinef90d6d2008-05-14 18:46:53 +010055static int gc_config(const char *var, const char *value, void *cb)
James Bowes6757ada2007-03-13 21:58:22 -040056{
57 if (!strcmp(var, "gc.packrefs")) {
Miklos Vajnac5e5a2c2008-02-08 15:26:18 +010058 if (value && !strcmp(value, "notbare"))
James Bowes6757ada2007-03-13 21:58:22 -040059 pack_refs = -1;
60 else
61 pack_refs = git_config_bool(var, value);
62 return 0;
63 }
Theodore Tso0d7566a2007-05-09 15:48:39 -040064 if (!strcmp(var, "gc.aggressivewindow")) {
65 aggressive_window = git_config_int(var, value);
66 return 0;
67 }
Junio C Hamano2c3c4392007-09-05 13:01:37 -070068 if (!strcmp(var, "gc.auto")) {
69 gc_auto_threshold = git_config_int(var, value);
70 return 0;
71 }
Junio C Hamano17815502007-09-17 00:55:13 -070072 if (!strcmp(var, "gc.autopacklimit")) {
73 gc_auto_pack_limit = git_config_int(var, value);
74 return 0;
75 }
Johannes Schindelin25ee9732008-03-12 21:55:47 +010076 if (!strcmp(var, "gc.pruneexpire")) {
David Brysond3154b42008-09-30 13:28:58 -070077 if (value && strcmp(value, "now")) {
Johannes Schindelin25ee9732008-03-12 21:55:47 +010078 unsigned long now = approxidate("now");
79 if (approxidate(value) >= now)
Ævar Arnfjörð Bjarmasonfea61282011-02-22 23:42:24 +000080 return error(_("Invalid %s: '%s'"), var, value);
Johannes Schindelin25ee9732008-03-12 21:55:47 +010081 }
David Brysond3154b42008-09-30 13:28:58 -070082 return git_config_string(&prune_expire, var, value);
Johannes Schindelin25ee9732008-03-12 21:55:47 +010083 }
Johannes Schindelinef90d6d2008-05-14 18:46:53 +010084 return git_default_config(var, value, cb);
James Bowes6757ada2007-03-13 21:58:22 -040085}
86
Junio C Hamanoa087cc92007-09-17 00:44:17 -070087static int too_many_loose_objects(void)
Junio C Hamano2c3c4392007-09-05 13:01:37 -070088{
89 /*
90 * Quickly check if a "gc" is needed, by estimating how
91 * many loose objects there are. Because SHA-1 is evenly
92 * distributed, we can check only one and get a reasonable
93 * estimate.
94 */
95 char path[PATH_MAX];
96 const char *objdir = get_object_directory();
97 DIR *dir;
98 struct dirent *ent;
99 int auto_threshold;
100 int num_loose = 0;
101 int needed = 0;
102
Junio C Hamano17815502007-09-17 00:55:13 -0700103 if (gc_auto_threshold <= 0)
104 return 0;
105
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700106 if (sizeof(path) <= snprintf(path, sizeof(path), "%s/17", objdir)) {
Ævar Arnfjörð Bjarmasonfea61282011-02-22 23:42:24 +0000107 warning(_("insanely long object directory %.*s"), 50, objdir);
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700108 return 0;
109 }
110 dir = opendir(path);
111 if (!dir)
112 return 0;
113
114 auto_threshold = (gc_auto_threshold + 255) / 256;
115 while ((ent = readdir(dir)) != NULL) {
116 if (strspn(ent->d_name, "0123456789abcdef") != 38 ||
117 ent->d_name[38] != '\0')
118 continue;
119 if (++num_loose > auto_threshold) {
120 needed = 1;
121 break;
122 }
123 }
124 closedir(dir);
125 return needed;
126}
127
Junio C Hamano17815502007-09-17 00:55:13 -0700128static int too_many_packs(void)
129{
130 struct packed_git *p;
131 int cnt;
132
133 if (gc_auto_pack_limit <= 0)
134 return 0;
135
136 prepare_packed_git();
137 for (cnt = 0, p = packed_git; p; p = p->next) {
Junio C Hamano17815502007-09-17 00:55:13 -0700138 if (!p->pack_local)
139 continue;
Brandon Casey01af2492008-11-12 11:59:07 -0600140 if (p->pack_keep)
Junio C Hamano17815502007-09-17 00:55:13 -0700141 continue;
142 /*
143 * Perhaps check the size of the pack and count only
144 * very small ones here?
145 */
146 cnt++;
147 }
148 return gc_auto_pack_limit <= cnt;
149}
150
Jeff King7e52f562012-04-07 06:30:09 -0400151static void add_repack_all_option(void)
152{
153 if (prune_expire && !strcmp(prune_expire, "now"))
Jeff King234587f2012-04-18 14:10:19 -0700154 argv_array_push(&repack, "-a");
Jeff King7e52f562012-04-07 06:30:09 -0400155 else {
Jeff King234587f2012-04-18 14:10:19 -0700156 argv_array_push(&repack, "-A");
157 if (prune_expire)
158 argv_array_pushf(&repack, "--unpack-unreachable=%s", prune_expire);
Jeff King7e52f562012-04-07 06:30:09 -0400159 }
160}
161
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700162static int need_to_gc(void)
163{
164 /*
Brandon Caseyb14d2552008-03-19 16:53:20 -0500165 * Setting gc.auto to 0 or negative can disable the
166 * automatic gc.
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700167 */
Brandon Caseyb14d2552008-03-19 16:53:20 -0500168 if (gc_auto_threshold <= 0)
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700169 return 0;
170
Junio C Hamano17815502007-09-17 00:55:13 -0700171 /*
172 * If there are too many loose objects, but not too many
173 * packs, we run "repack -d -l". If there are too many packs,
174 * we run "repack -A -d -l". Otherwise we tell the caller
175 * there is no need.
176 */
Junio C Hamano17815502007-09-17 00:55:13 -0700177 if (too_many_packs())
Jeff King7e52f562012-04-07 06:30:09 -0400178 add_repack_all_option();
Junio C Hamano17815502007-09-17 00:55:13 -0700179 else if (!too_many_loose_objects())
180 return 0;
Miklos Vajnabde30542008-04-02 21:34:38 +0200181
Benoit Pierre15048f82014-03-18 11:00:53 +0100182 if (run_hook_le(NULL, "pre-auto-gc", NULL))
Miklos Vajnabde30542008-04-02 21:34:38 +0200183 return 0;
Junio C Hamano95143f92007-09-17 00:48:39 -0700184 return 1;
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700185}
186
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +0700187/* return NULL on success, else hostname running the gc */
188static const char *lock_repo_for_gc(int force, pid_t* ret_pid)
189{
190 static struct lock_file lock;
191 static char locking_host[128];
192 char my_host[128];
193 struct strbuf sb = STRBUF_INIT;
194 struct stat st;
195 uintmax_t pid;
196 FILE *fp;
197 int fd, should_exit;
198
Jonathan Nieder4c5baf02013-10-16 16:11:46 -0700199 if (pidfile)
200 /* already locked */
201 return NULL;
202
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +0700203 if (gethostname(my_host, sizeof(my_host)))
204 strcpy(my_host, "unknown");
205
206 fd = hold_lock_file_for_update(&lock, git_path("gc.pid"),
207 LOCK_DIE_ON_ERROR);
208 if (!force) {
209 fp = fopen(git_path("gc.pid"), "r");
210 memset(locking_host, 0, sizeof(locking_host));
211 should_exit =
212 fp != NULL &&
213 !fstat(fileno(fp), &st) &&
214 /*
215 * 12 hour limit is very generous as gc should
216 * never take that long. On the other hand we
217 * don't really need a strict limit here,
218 * running gc --auto one day late is not a big
219 * problem. --force can be used in manual gc
220 * after the user verifies that no gc is
221 * running.
222 */
223 time(NULL) - st.st_mtime <= 12 * 3600 &&
224 fscanf(fp, "%"PRIuMAX" %127c", &pid, locking_host) == 2 &&
225 /* be gentle to concurrent "gc" on remote hosts */
Kyle J. McKayed7eda82013-12-31 04:07:39 -0800226 (strcmp(locking_host, my_host) || !kill(pid, 0) || errno == EPERM);
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +0700227 if (fp != NULL)
228 fclose(fp);
229 if (should_exit) {
230 if (fd >= 0)
231 rollback_lock_file(&lock);
232 *ret_pid = pid;
233 return locking_host;
234 }
235 }
236
237 strbuf_addf(&sb, "%"PRIuMAX" %s",
238 (uintmax_t) getpid(), my_host);
239 write_in_full(fd, sb.buf, sb.len);
240 strbuf_release(&sb);
241 commit_lock_file(&lock);
242
Jonathan Nieder4c5baf02013-10-16 16:11:46 -0700243 pidfile = git_pathdup("gc.pid");
244 sigchain_push_common(remove_pidfile_on_signal);
245 atexit(remove_pidfile);
246
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +0700247 return NULL;
248}
249
James Bowes6757ada2007-03-13 21:58:22 -0400250int cmd_gc(int argc, const char **argv, const char *prefix)
251{
James Bowes44c637c2007-11-01 21:02:27 -0400252 int aggressive = 0;
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700253 int auto_gc = 0;
Frank Lichtenhelda0c14cb2008-02-29 22:53:39 +0100254 int quiet = 0;
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +0700255 int force = 0;
256 const char *name;
257 pid_t pid;
James Bowes6757ada2007-03-13 21:58:22 -0400258
James Bowes44c637c2007-11-01 21:02:27 -0400259 struct option builtin_gc_options[] = {
Nguyễn Thái Ngọc Duy6705c162012-08-20 19:32:14 +0700260 OPT__QUIET(&quiet, N_("suppress progress reporting")),
261 { OPTION_STRING, 0, "prune", &prune_expire, N_("date"),
262 N_("prune unreferenced objects"),
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +0100263 PARSE_OPT_OPTARG, NULL, (intptr_t)prune_expire },
Stefan Bellerd5d09d42013-08-03 13:51:19 +0200264 OPT_BOOL(0, "aggressive", &aggressive, N_("be more thorough (increased runtime)")),
265 OPT_BOOL(0, "auto", &auto_gc, N_("enable auto-gc mode")),
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +0700266 OPT_BOOL(0, "force", &force, N_("force running gc even if there may be another gc running")),
James Bowes44c637c2007-11-01 21:02:27 -0400267 OPT_END()
268 };
269
Nguyễn Thái Ngọc Duy0c8151b2010-10-22 01:47:19 -0500270 if (argc == 2 && !strcmp(argv[1], "-h"))
271 usage_with_options(builtin_gc_usage, builtin_gc_options);
272
Jeff King234587f2012-04-18 14:10:19 -0700273 argv_array_pushl(&pack_refs_cmd, "pack-refs", "--all", "--prune", NULL);
274 argv_array_pushl(&reflog, "reflog", "expire", "--all", NULL);
275 argv_array_pushl(&repack, "repack", "-d", "-l", NULL);
276 argv_array_pushl(&prune, "prune", "--expire", NULL );
277 argv_array_pushl(&rerere, "rerere", "gc", NULL);
278
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100279 git_config(gc_config, NULL);
James Bowes6757ada2007-03-13 21:58:22 -0400280
281 if (pack_refs < 0)
282 pack_refs = !is_bare_repository();
283
Stephen Boyd37782922009-05-23 11:53:12 -0700284 argc = parse_options(argc, argv, prefix, builtin_gc_options,
285 builtin_gc_usage, 0);
James Bowes44c637c2007-11-01 21:02:27 -0400286 if (argc > 0)
287 usage_with_options(builtin_gc_usage, builtin_gc_options);
288
289 if (aggressive) {
Jeff King234587f2012-04-18 14:10:19 -0700290 argv_array_push(&repack, "-f");
291 argv_array_push(&repack, "--depth=250");
292 if (aggressive_window > 0)
293 argv_array_pushf(&repack, "--window=%d", aggressive_window);
James Bowes6757ada2007-03-13 21:58:22 -0400294 }
Frank Lichtenhelda0c14cb2008-02-29 22:53:39 +0100295 if (quiet)
Jeff King234587f2012-04-18 14:10:19 -0700296 argv_array_push(&repack, "-q");
James Bowes6757ada2007-03-13 21:58:22 -0400297
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700298 if (auto_gc) {
299 /*
300 * Auto-gc should be least intrusive as possible.
301 */
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700302 if (!need_to_gc())
303 return 0;
Tobias Ulmerdf995c72012-09-24 04:40:24 +0200304 if (!quiet)
Ævar Arnfjörð Bjarmasonf6908ae2011-02-22 23:42:25 +0000305 fprintf(stderr,
306 _("Auto packing the repository for optimum performance. You may also\n"
307 "run \"git gc\" manually. See "
Andreas Schwabdaab4ee2011-06-19 10:03:26 +0200308 "\"git help gc\" for more information.\n"));
Brandon Caseya37cce32008-05-09 23:01:56 -0500309 } else
Jeff King7e52f562012-04-07 06:30:09 -0400310 add_repack_all_option();
Junio C Hamano2c3c4392007-09-05 13:01:37 -0700311
Nguyễn Thái Ngọc Duy64a99eb2013-08-08 18:05:38 +0700312 name = lock_repo_for_gc(force, &pid);
313 if (name) {
314 if (auto_gc)
315 return 0; /* be quiet on --auto */
316 die(_("gc is already running on machine '%s' pid %"PRIuMAX" (use --force if not)"),
317 name, (uintmax_t)pid);
318 }
319
Jeff King234587f2012-04-18 14:10:19 -0700320 if (pack_refs && run_command_v_opt(pack_refs_cmd.argv, RUN_GIT_CMD))
321 return error(FAILED_RUN, pack_refs_cmd.argv[0]);
James Bowes6757ada2007-03-13 21:58:22 -0400322
Jeff King234587f2012-04-18 14:10:19 -0700323 if (run_command_v_opt(reflog.argv, RUN_GIT_CMD))
324 return error(FAILED_RUN, reflog.argv[0]);
James Bowes6757ada2007-03-13 21:58:22 -0400325
Jeff King234587f2012-04-18 14:10:19 -0700326 if (run_command_v_opt(repack.argv, RUN_GIT_CMD))
327 return error(FAILED_RUN, repack.argv[0]);
James Bowes6757ada2007-03-13 21:58:22 -0400328
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +0100329 if (prune_expire) {
Jeff King234587f2012-04-18 14:10:19 -0700330 argv_array_push(&prune, prune_expire);
Jeff Kingbf0a59b2011-11-08 00:34:08 -0500331 if (quiet)
Jeff King234587f2012-04-18 14:10:19 -0700332 argv_array_push(&prune, "--no-progress");
333 if (run_command_v_opt(prune.argv, RUN_GIT_CMD))
334 return error(FAILED_RUN, prune.argv[0]);
Johannes Schindelin58e9d9d2009-02-14 23:10:10 +0100335 }
James Bowes6757ada2007-03-13 21:58:22 -0400336
Jeff King234587f2012-04-18 14:10:19 -0700337 if (run_command_v_opt(rerere.argv, RUN_GIT_CMD))
338 return error(FAILED_RUN, rerere.argv[0]);
James Bowes6757ada2007-03-13 21:58:22 -0400339
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700340 if (auto_gc && too_many_loose_objects())
Ævar Arnfjörð Bjarmasonfea61282011-02-22 23:42:24 +0000341 warning(_("There are too many unreachable loose objects; "
342 "run 'git prune' to remove them."));
Junio C Hamanoa087cc92007-09-17 00:44:17 -0700343
James Bowes6757ada2007-03-13 21:58:22 -0400344 return 0;
345}