archive: improve documentation of --prefix
[git/debian.git] / builtin / gc.c
blob8e60ef1eaba426eae66c99d15d5dfdcbc26efac4
1 /*
2 * git gc builtin command
4 * Cleanup unreachable files and optimize the repository.
6 * Copyright (c) 2007 James Bowes
8 * Based on git-gc.sh, which is
10 * Copyright (c) 2006 Shawn O. Pearce
13 #include "builtin.h"
14 #include "repository.h"
15 #include "config.h"
16 #include "tempfile.h"
17 #include "lockfile.h"
18 #include "parse-options.h"
19 #include "run-command.h"
20 #include "sigchain.h"
21 #include "strvec.h"
22 #include "commit.h"
23 #include "commit-graph.h"
24 #include "packfile.h"
25 #include "object-store.h"
26 #include "pack.h"
27 #include "pack-objects.h"
28 #include "blob.h"
29 #include "tree.h"
30 #include "promisor-remote.h"
31 #include "refs.h"
32 #include "remote.h"
33 #include "object-store.h"
34 #include "exec-cmd.h"
36 #define FAILED_RUN "failed to run %s"
38 static const char * const builtin_gc_usage[] = {
39 N_("git gc [<options>]"),
40 NULL
43 static int pack_refs = 1;
44 static int prune_reflogs = 1;
45 static int aggressive_depth = 50;
46 static int aggressive_window = 250;
47 static int gc_auto_threshold = 6700;
48 static int gc_auto_pack_limit = 50;
49 static int detach_auto = 1;
50 static timestamp_t gc_log_expire_time;
51 static const char *gc_log_expire = "1.day.ago";
52 static const char *prune_expire = "2.weeks.ago";
53 static const char *prune_worktrees_expire = "3.months.ago";
54 static unsigned long big_pack_threshold;
55 static unsigned long max_delta_cache_size = DEFAULT_DELTA_CACHE_SIZE;
57 static struct strvec reflog = STRVEC_INIT;
58 static struct strvec repack = STRVEC_INIT;
59 static struct strvec prune = STRVEC_INIT;
60 static struct strvec prune_worktrees = STRVEC_INIT;
61 static struct strvec rerere = STRVEC_INIT;
63 static struct tempfile *pidfile;
64 static struct lock_file log_lock;
66 static struct string_list pack_garbage = STRING_LIST_INIT_DUP;
68 static void clean_pack_garbage(void)
70 int i;
71 for (i = 0; i < pack_garbage.nr; i++)
72 unlink_or_warn(pack_garbage.items[i].string);
73 string_list_clear(&pack_garbage, 0);
76 static void report_pack_garbage(unsigned seen_bits, const char *path)
78 if (seen_bits == PACKDIR_FILE_IDX)
79 string_list_append(&pack_garbage, path);
82 static void process_log_file(void)
84 struct stat st;
85 if (fstat(get_lock_file_fd(&log_lock), &st)) {
87 * Perhaps there was an i/o error or another
88 * unlikely situation. Try to make a note of
89 * this in gc.log along with any existing
90 * messages.
92 int saved_errno = errno;
93 fprintf(stderr, _("Failed to fstat %s: %s"),
94 get_lock_file_path(&log_lock),
95 strerror(saved_errno));
96 fflush(stderr);
97 commit_lock_file(&log_lock);
98 errno = saved_errno;
99 } else if (st.st_size) {
100 /* There was some error recorded in the lock file */
101 commit_lock_file(&log_lock);
102 } else {
103 /* No error, clean up any old gc.log */
104 unlink(git_path("gc.log"));
105 rollback_lock_file(&log_lock);
109 static void process_log_file_at_exit(void)
111 fflush(stderr);
112 process_log_file();
115 static void process_log_file_on_signal(int signo)
117 process_log_file();
118 sigchain_pop(signo);
119 raise(signo);
122 static int gc_config_is_timestamp_never(const char *var)
124 const char *value;
125 timestamp_t expire;
127 if (!git_config_get_value(var, &value) && value) {
128 if (parse_expiry_date(value, &expire))
129 die(_("failed to parse '%s' value '%s'"), var, value);
130 return expire == 0;
132 return 0;
135 static void gc_config(void)
137 const char *value;
139 if (!git_config_get_value("gc.packrefs", &value)) {
140 if (value && !strcmp(value, "notbare"))
141 pack_refs = -1;
142 else
143 pack_refs = git_config_bool("gc.packrefs", value);
146 if (gc_config_is_timestamp_never("gc.reflogexpire") &&
147 gc_config_is_timestamp_never("gc.reflogexpireunreachable"))
148 prune_reflogs = 0;
150 git_config_get_int("gc.aggressivewindow", &aggressive_window);
151 git_config_get_int("gc.aggressivedepth", &aggressive_depth);
152 git_config_get_int("gc.auto", &gc_auto_threshold);
153 git_config_get_int("gc.autopacklimit", &gc_auto_pack_limit);
154 git_config_get_bool("gc.autodetach", &detach_auto);
155 git_config_get_expiry("gc.pruneexpire", &prune_expire);
156 git_config_get_expiry("gc.worktreepruneexpire", &prune_worktrees_expire);
157 git_config_get_expiry("gc.logexpiry", &gc_log_expire);
159 git_config_get_ulong("gc.bigpackthreshold", &big_pack_threshold);
160 git_config_get_ulong("pack.deltacachesize", &max_delta_cache_size);
162 git_config(git_default_config, NULL);
165 struct maintenance_run_opts;
166 static int maintenance_task_pack_refs(MAYBE_UNUSED struct maintenance_run_opts *opts)
168 struct strvec pack_refs_cmd = STRVEC_INIT;
169 strvec_pushl(&pack_refs_cmd, "pack-refs", "--all", "--prune", NULL);
171 return run_command_v_opt(pack_refs_cmd.v, RUN_GIT_CMD);
174 static int too_many_loose_objects(void)
177 * Quickly check if a "gc" is needed, by estimating how
178 * many loose objects there are. Because SHA-1 is evenly
179 * distributed, we can check only one and get a reasonable
180 * estimate.
182 DIR *dir;
183 struct dirent *ent;
184 int auto_threshold;
185 int num_loose = 0;
186 int needed = 0;
187 const unsigned hexsz_loose = the_hash_algo->hexsz - 2;
189 dir = opendir(git_path("objects/17"));
190 if (!dir)
191 return 0;
193 auto_threshold = DIV_ROUND_UP(gc_auto_threshold, 256);
194 while ((ent = readdir(dir)) != NULL) {
195 if (strspn(ent->d_name, "0123456789abcdef") != hexsz_loose ||
196 ent->d_name[hexsz_loose] != '\0')
197 continue;
198 if (++num_loose > auto_threshold) {
199 needed = 1;
200 break;
203 closedir(dir);
204 return needed;
207 static struct packed_git *find_base_packs(struct string_list *packs,
208 unsigned long limit)
210 struct packed_git *p, *base = NULL;
212 for (p = get_all_packs(the_repository); p; p = p->next) {
213 if (!p->pack_local)
214 continue;
215 if (limit) {
216 if (p->pack_size >= limit)
217 string_list_append(packs, p->pack_name);
218 } else if (!base || base->pack_size < p->pack_size) {
219 base = p;
223 if (base)
224 string_list_append(packs, base->pack_name);
226 return base;
229 static int too_many_packs(void)
231 struct packed_git *p;
232 int cnt;
234 if (gc_auto_pack_limit <= 0)
235 return 0;
237 for (cnt = 0, p = get_all_packs(the_repository); p; p = p->next) {
238 if (!p->pack_local)
239 continue;
240 if (p->pack_keep)
241 continue;
243 * Perhaps check the size of the pack and count only
244 * very small ones here?
246 cnt++;
248 return gc_auto_pack_limit < cnt;
251 static uint64_t total_ram(void)
253 #if defined(HAVE_SYSINFO)
254 struct sysinfo si;
256 if (!sysinfo(&si))
257 return si.totalram;
258 #elif defined(HAVE_BSD_SYSCTL) && (defined(HW_MEMSIZE) || defined(HW_PHYSMEM))
259 int64_t physical_memory;
260 int mib[2];
261 size_t length;
263 mib[0] = CTL_HW;
264 # if defined(HW_MEMSIZE)
265 mib[1] = HW_MEMSIZE;
266 # else
267 mib[1] = HW_PHYSMEM;
268 # endif
269 length = sizeof(int64_t);
270 if (!sysctl(mib, 2, &physical_memory, &length, NULL, 0))
271 return physical_memory;
272 #elif defined(GIT_WINDOWS_NATIVE)
273 MEMORYSTATUSEX memInfo;
275 memInfo.dwLength = sizeof(MEMORYSTATUSEX);
276 if (GlobalMemoryStatusEx(&memInfo))
277 return memInfo.ullTotalPhys;
278 #endif
279 return 0;
282 static uint64_t estimate_repack_memory(struct packed_git *pack)
284 unsigned long nr_objects = approximate_object_count();
285 size_t os_cache, heap;
287 if (!pack || !nr_objects)
288 return 0;
291 * First we have to scan through at least one pack.
292 * Assume enough room in OS file cache to keep the entire pack
293 * or we may accidentally evict data of other processes from
294 * the cache.
296 os_cache = pack->pack_size + pack->index_size;
297 /* then pack-objects needs lots more for book keeping */
298 heap = sizeof(struct object_entry) * nr_objects;
300 * internal rev-list --all --objects takes up some memory too,
301 * let's say half of it is for blobs
303 heap += sizeof(struct blob) * nr_objects / 2;
305 * and the other half is for trees (commits and tags are
306 * usually insignificant)
308 heap += sizeof(struct tree) * nr_objects / 2;
309 /* and then obj_hash[], underestimated in fact */
310 heap += sizeof(struct object *) * nr_objects;
311 /* revindex is used also */
312 heap += (sizeof(off_t) + sizeof(uint32_t)) * nr_objects;
314 * read_sha1_file() (either at delta calculation phase, or
315 * writing phase) also fills up the delta base cache
317 heap += delta_base_cache_limit;
318 /* and of course pack-objects has its own delta cache */
319 heap += max_delta_cache_size;
321 return os_cache + heap;
324 static int keep_one_pack(struct string_list_item *item, void *data)
326 strvec_pushf(&repack, "--keep-pack=%s", basename(item->string));
327 return 0;
330 static void add_repack_all_option(struct string_list *keep_pack)
332 if (prune_expire && !strcmp(prune_expire, "now"))
333 strvec_push(&repack, "-a");
334 else {
335 strvec_push(&repack, "-A");
336 if (prune_expire)
337 strvec_pushf(&repack, "--unpack-unreachable=%s", prune_expire);
340 if (keep_pack)
341 for_each_string_list(keep_pack, keep_one_pack, NULL);
344 static void add_repack_incremental_option(void)
346 strvec_push(&repack, "--no-write-bitmap-index");
349 static int need_to_gc(void)
352 * Setting gc.auto to 0 or negative can disable the
353 * automatic gc.
355 if (gc_auto_threshold <= 0)
356 return 0;
359 * If there are too many loose objects, but not too many
360 * packs, we run "repack -d -l". If there are too many packs,
361 * we run "repack -A -d -l". Otherwise we tell the caller
362 * there is no need.
364 if (too_many_packs()) {
365 struct string_list keep_pack = STRING_LIST_INIT_NODUP;
367 if (big_pack_threshold) {
368 find_base_packs(&keep_pack, big_pack_threshold);
369 if (keep_pack.nr >= gc_auto_pack_limit) {
370 big_pack_threshold = 0;
371 string_list_clear(&keep_pack, 0);
372 find_base_packs(&keep_pack, 0);
374 } else {
375 struct packed_git *p = find_base_packs(&keep_pack, 0);
376 uint64_t mem_have, mem_want;
378 mem_have = total_ram();
379 mem_want = estimate_repack_memory(p);
382 * Only allow 1/2 of memory for pack-objects, leave
383 * the rest for the OS and other processes in the
384 * system.
386 if (!mem_have || mem_want < mem_have / 2)
387 string_list_clear(&keep_pack, 0);
390 add_repack_all_option(&keep_pack);
391 string_list_clear(&keep_pack, 0);
392 } else if (too_many_loose_objects())
393 add_repack_incremental_option();
394 else
395 return 0;
397 if (run_hook_le(NULL, "pre-auto-gc", NULL))
398 return 0;
399 return 1;
402 /* return NULL on success, else hostname running the gc */
403 static const char *lock_repo_for_gc(int force, pid_t* ret_pid)
405 struct lock_file lock = LOCK_INIT;
406 char my_host[HOST_NAME_MAX + 1];
407 struct strbuf sb = STRBUF_INIT;
408 struct stat st;
409 uintmax_t pid;
410 FILE *fp;
411 int fd;
412 char *pidfile_path;
414 if (is_tempfile_active(pidfile))
415 /* already locked */
416 return NULL;
418 if (xgethostname(my_host, sizeof(my_host)))
419 xsnprintf(my_host, sizeof(my_host), "unknown");
421 pidfile_path = git_pathdup("gc.pid");
422 fd = hold_lock_file_for_update(&lock, pidfile_path,
423 LOCK_DIE_ON_ERROR);
424 if (!force) {
425 static char locking_host[HOST_NAME_MAX + 1];
426 static char *scan_fmt;
427 int should_exit;
429 if (!scan_fmt)
430 scan_fmt = xstrfmt("%s %%%ds", "%"SCNuMAX, HOST_NAME_MAX);
431 fp = fopen(pidfile_path, "r");
432 memset(locking_host, 0, sizeof(locking_host));
433 should_exit =
434 fp != NULL &&
435 !fstat(fileno(fp), &st) &&
437 * 12 hour limit is very generous as gc should
438 * never take that long. On the other hand we
439 * don't really need a strict limit here,
440 * running gc --auto one day late is not a big
441 * problem. --force can be used in manual gc
442 * after the user verifies that no gc is
443 * running.
445 time(NULL) - st.st_mtime <= 12 * 3600 &&
446 fscanf(fp, scan_fmt, &pid, locking_host) == 2 &&
447 /* be gentle to concurrent "gc" on remote hosts */
448 (strcmp(locking_host, my_host) || !kill(pid, 0) || errno == EPERM);
449 if (fp != NULL)
450 fclose(fp);
451 if (should_exit) {
452 if (fd >= 0)
453 rollback_lock_file(&lock);
454 *ret_pid = pid;
455 free(pidfile_path);
456 return locking_host;
460 strbuf_addf(&sb, "%"PRIuMAX" %s",
461 (uintmax_t) getpid(), my_host);
462 write_in_full(fd, sb.buf, sb.len);
463 strbuf_release(&sb);
464 commit_lock_file(&lock);
465 pidfile = register_tempfile(pidfile_path);
466 free(pidfile_path);
467 return NULL;
471 * Returns 0 if there was no previous error and gc can proceed, 1 if
472 * gc should not proceed due to an error in the last run. Prints a
473 * message and returns with a non-[01] status code if an error occurred
474 * while reading gc.log
476 static int report_last_gc_error(void)
478 struct strbuf sb = STRBUF_INIT;
479 int ret = 0;
480 ssize_t len;
481 struct stat st;
482 char *gc_log_path = git_pathdup("gc.log");
484 if (stat(gc_log_path, &st)) {
485 if (errno == ENOENT)
486 goto done;
488 ret = die_message_errno(_("cannot stat '%s'"), gc_log_path);
489 goto done;
492 if (st.st_mtime < gc_log_expire_time)
493 goto done;
495 len = strbuf_read_file(&sb, gc_log_path, 0);
496 if (len < 0)
497 ret = die_message_errno(_("cannot read '%s'"), gc_log_path);
498 else if (len > 0) {
500 * A previous gc failed. Report the error, and don't
501 * bother with an automatic gc run since it is likely
502 * to fail in the same way.
504 warning(_("The last gc run reported the following. "
505 "Please correct the root cause\n"
506 "and remove %s\n"
507 "Automatic cleanup will not be performed "
508 "until the file is removed.\n\n"
509 "%s"),
510 gc_log_path, sb.buf);
511 ret = 1;
513 strbuf_release(&sb);
514 done:
515 free(gc_log_path);
516 return ret;
519 static void gc_before_repack(void)
522 * We may be called twice, as both the pre- and
523 * post-daemonized phases will call us, but running these
524 * commands more than once is pointless and wasteful.
526 static int done = 0;
527 if (done++)
528 return;
530 if (pack_refs && maintenance_task_pack_refs(NULL))
531 die(FAILED_RUN, "pack-refs");
533 if (prune_reflogs && run_command_v_opt(reflog.v, RUN_GIT_CMD))
534 die(FAILED_RUN, reflog.v[0]);
537 int cmd_gc(int argc, const char **argv, const char *prefix)
539 int aggressive = 0;
540 int auto_gc = 0;
541 int quiet = 0;
542 int force = 0;
543 const char *name;
544 pid_t pid;
545 int daemonized = 0;
546 int keep_largest_pack = -1;
547 timestamp_t dummy;
549 struct option builtin_gc_options[] = {
550 OPT__QUIET(&quiet, N_("suppress progress reporting")),
551 { OPTION_STRING, 0, "prune", &prune_expire, N_("date"),
552 N_("prune unreferenced objects"),
553 PARSE_OPT_OPTARG, NULL, (intptr_t)prune_expire },
554 OPT_BOOL(0, "aggressive", &aggressive, N_("be more thorough (increased runtime)")),
555 OPT_BOOL_F(0, "auto", &auto_gc, N_("enable auto-gc mode"),
556 PARSE_OPT_NOCOMPLETE),
557 OPT_BOOL_F(0, "force", &force,
558 N_("force running gc even if there may be another gc running"),
559 PARSE_OPT_NOCOMPLETE),
560 OPT_BOOL(0, "keep-largest-pack", &keep_largest_pack,
561 N_("repack all other packs except the largest pack")),
562 OPT_END()
565 if (argc == 2 && !strcmp(argv[1], "-h"))
566 usage_with_options(builtin_gc_usage, builtin_gc_options);
568 strvec_pushl(&reflog, "reflog", "expire", "--all", NULL);
569 strvec_pushl(&repack, "repack", "-d", "-l", NULL);
570 strvec_pushl(&prune, "prune", "--expire", NULL);
571 strvec_pushl(&prune_worktrees, "worktree", "prune", "--expire", NULL);
572 strvec_pushl(&rerere, "rerere", "gc", NULL);
574 /* default expiry time, overwritten in gc_config */
575 gc_config();
576 if (parse_expiry_date(gc_log_expire, &gc_log_expire_time))
577 die(_("failed to parse gc.logexpiry value %s"), gc_log_expire);
579 if (pack_refs < 0)
580 pack_refs = !is_bare_repository();
582 argc = parse_options(argc, argv, prefix, builtin_gc_options,
583 builtin_gc_usage, 0);
584 if (argc > 0)
585 usage_with_options(builtin_gc_usage, builtin_gc_options);
587 if (prune_expire && parse_expiry_date(prune_expire, &dummy))
588 die(_("failed to parse prune expiry value %s"), prune_expire);
590 if (aggressive) {
591 strvec_push(&repack, "-f");
592 if (aggressive_depth > 0)
593 strvec_pushf(&repack, "--depth=%d", aggressive_depth);
594 if (aggressive_window > 0)
595 strvec_pushf(&repack, "--window=%d", aggressive_window);
597 if (quiet)
598 strvec_push(&repack, "-q");
600 if (auto_gc) {
602 * Auto-gc should be least intrusive as possible.
604 if (!need_to_gc())
605 return 0;
606 if (!quiet) {
607 if (detach_auto)
608 fprintf(stderr, _("Auto packing the repository in background for optimum performance.\n"));
609 else
610 fprintf(stderr, _("Auto packing the repository for optimum performance.\n"));
611 fprintf(stderr, _("See \"git help gc\" for manual housekeeping.\n"));
613 if (detach_auto) {
614 int ret = report_last_gc_error();
616 if (ret == 1)
617 /* Last gc --auto failed. Skip this one. */
618 return 0;
619 else if (ret)
620 /* an I/O error occurred, already reported */
621 return ret;
623 if (lock_repo_for_gc(force, &pid))
624 return 0;
625 gc_before_repack(); /* dies on failure */
626 delete_tempfile(&pidfile);
629 * failure to daemonize is ok, we'll continue
630 * in foreground
632 daemonized = !daemonize();
634 } else {
635 struct string_list keep_pack = STRING_LIST_INIT_NODUP;
637 if (keep_largest_pack != -1) {
638 if (keep_largest_pack)
639 find_base_packs(&keep_pack, 0);
640 } else if (big_pack_threshold) {
641 find_base_packs(&keep_pack, big_pack_threshold);
644 add_repack_all_option(&keep_pack);
645 string_list_clear(&keep_pack, 0);
648 name = lock_repo_for_gc(force, &pid);
649 if (name) {
650 if (auto_gc)
651 return 0; /* be quiet on --auto */
652 die(_("gc is already running on machine '%s' pid %"PRIuMAX" (use --force if not)"),
653 name, (uintmax_t)pid);
656 if (daemonized) {
657 hold_lock_file_for_update(&log_lock,
658 git_path("gc.log"),
659 LOCK_DIE_ON_ERROR);
660 dup2(get_lock_file_fd(&log_lock), 2);
661 sigchain_push_common(process_log_file_on_signal);
662 atexit(process_log_file_at_exit);
665 gc_before_repack();
667 if (!repository_format_precious_objects) {
668 if (run_command_v_opt(repack.v,
669 RUN_GIT_CMD | RUN_CLOSE_OBJECT_STORE))
670 die(FAILED_RUN, repack.v[0]);
672 if (prune_expire) {
673 strvec_push(&prune, prune_expire);
674 if (quiet)
675 strvec_push(&prune, "--no-progress");
676 if (has_promisor_remote())
677 strvec_push(&prune,
678 "--exclude-promisor-objects");
679 if (run_command_v_opt(prune.v, RUN_GIT_CMD))
680 die(FAILED_RUN, prune.v[0]);
684 if (prune_worktrees_expire) {
685 strvec_push(&prune_worktrees, prune_worktrees_expire);
686 if (run_command_v_opt(prune_worktrees.v, RUN_GIT_CMD))
687 die(FAILED_RUN, prune_worktrees.v[0]);
690 if (run_command_v_opt(rerere.v, RUN_GIT_CMD))
691 die(FAILED_RUN, rerere.v[0]);
693 report_garbage = report_pack_garbage;
694 reprepare_packed_git(the_repository);
695 if (pack_garbage.nr > 0) {
696 close_object_store(the_repository->objects);
697 clean_pack_garbage();
700 prepare_repo_settings(the_repository);
701 if (the_repository->settings.gc_write_commit_graph == 1)
702 write_commit_graph_reachable(the_repository->objects->odb,
703 !quiet && !daemonized ? COMMIT_GRAPH_WRITE_PROGRESS : 0,
704 NULL);
706 if (auto_gc && too_many_loose_objects())
707 warning(_("There are too many unreachable loose objects; "
708 "run 'git prune' to remove them."));
710 if (!daemonized)
711 unlink(git_path("gc.log"));
713 return 0;
716 static const char *const builtin_maintenance_run_usage[] = {
717 N_("git maintenance run [--auto] [--[no-]quiet] [--task=<task>] [--schedule]"),
718 NULL
721 enum schedule_priority {
722 SCHEDULE_NONE = 0,
723 SCHEDULE_WEEKLY = 1,
724 SCHEDULE_DAILY = 2,
725 SCHEDULE_HOURLY = 3,
728 static enum schedule_priority parse_schedule(const char *value)
730 if (!value)
731 return SCHEDULE_NONE;
732 if (!strcasecmp(value, "hourly"))
733 return SCHEDULE_HOURLY;
734 if (!strcasecmp(value, "daily"))
735 return SCHEDULE_DAILY;
736 if (!strcasecmp(value, "weekly"))
737 return SCHEDULE_WEEKLY;
738 return SCHEDULE_NONE;
741 static int maintenance_opt_schedule(const struct option *opt, const char *arg,
742 int unset)
744 enum schedule_priority *priority = opt->value;
746 if (unset)
747 die(_("--no-schedule is not allowed"));
749 *priority = parse_schedule(arg);
751 if (!*priority)
752 die(_("unrecognized --schedule argument '%s'"), arg);
754 return 0;
757 struct maintenance_run_opts {
758 int auto_flag;
759 int quiet;
760 enum schedule_priority schedule;
763 /* Remember to update object flag allocation in object.h */
764 #define SEEN (1u<<0)
766 struct cg_auto_data {
767 int num_not_in_graph;
768 int limit;
771 static int dfs_on_ref(const char *refname,
772 const struct object_id *oid, int flags,
773 void *cb_data)
775 struct cg_auto_data *data = (struct cg_auto_data *)cb_data;
776 int result = 0;
777 struct object_id peeled;
778 struct commit_list *stack = NULL;
779 struct commit *commit;
781 if (!peel_iterated_oid(oid, &peeled))
782 oid = &peeled;
783 if (oid_object_info(the_repository, oid, NULL) != OBJ_COMMIT)
784 return 0;
786 commit = lookup_commit(the_repository, oid);
787 if (!commit)
788 return 0;
789 if (parse_commit(commit) ||
790 commit_graph_position(commit) != COMMIT_NOT_FROM_GRAPH)
791 return 0;
793 data->num_not_in_graph++;
795 if (data->num_not_in_graph >= data->limit)
796 return 1;
798 commit_list_append(commit, &stack);
800 while (!result && stack) {
801 struct commit_list *parent;
803 commit = pop_commit(&stack);
805 for (parent = commit->parents; parent; parent = parent->next) {
806 if (parse_commit(parent->item) ||
807 commit_graph_position(parent->item) != COMMIT_NOT_FROM_GRAPH ||
808 parent->item->object.flags & SEEN)
809 continue;
811 parent->item->object.flags |= SEEN;
812 data->num_not_in_graph++;
814 if (data->num_not_in_graph >= data->limit) {
815 result = 1;
816 break;
819 commit_list_append(parent->item, &stack);
823 free_commit_list(stack);
824 return result;
827 static int should_write_commit_graph(void)
829 int result;
830 struct cg_auto_data data;
832 data.num_not_in_graph = 0;
833 data.limit = 100;
834 git_config_get_int("maintenance.commit-graph.auto",
835 &data.limit);
837 if (!data.limit)
838 return 0;
839 if (data.limit < 0)
840 return 1;
842 result = for_each_ref(dfs_on_ref, &data);
844 repo_clear_commit_marks(the_repository, SEEN);
846 return result;
849 static int run_write_commit_graph(struct maintenance_run_opts *opts)
851 struct child_process child = CHILD_PROCESS_INIT;
853 child.git_cmd = child.close_object_store = 1;
854 strvec_pushl(&child.args, "commit-graph", "write",
855 "--split", "--reachable", NULL);
857 if (opts->quiet)
858 strvec_push(&child.args, "--no-progress");
860 return !!run_command(&child);
863 static int maintenance_task_commit_graph(struct maintenance_run_opts *opts)
865 prepare_repo_settings(the_repository);
866 if (!the_repository->settings.core_commit_graph)
867 return 0;
869 if (run_write_commit_graph(opts)) {
870 error(_("failed to write commit-graph"));
871 return 1;
874 return 0;
877 static int fetch_remote(struct remote *remote, void *cbdata)
879 struct maintenance_run_opts *opts = cbdata;
880 struct child_process child = CHILD_PROCESS_INIT;
882 if (remote->skip_default_update)
883 return 0;
885 child.git_cmd = 1;
886 strvec_pushl(&child.args, "fetch", remote->name,
887 "--prefetch", "--prune", "--no-tags",
888 "--no-write-fetch-head", "--recurse-submodules=no",
889 NULL);
891 if (opts->quiet)
892 strvec_push(&child.args, "--quiet");
894 return !!run_command(&child);
897 static int maintenance_task_prefetch(struct maintenance_run_opts *opts)
899 git_config_set_multivar_gently("log.excludedecoration",
900 "refs/prefetch/",
901 "refs/prefetch/",
902 CONFIG_FLAGS_FIXED_VALUE |
903 CONFIG_FLAGS_MULTI_REPLACE);
905 if (for_each_remote(fetch_remote, opts)) {
906 error(_("failed to prefetch remotes"));
907 return 1;
910 return 0;
913 static int maintenance_task_gc(struct maintenance_run_opts *opts)
915 struct child_process child = CHILD_PROCESS_INIT;
917 child.git_cmd = child.close_object_store = 1;
918 strvec_push(&child.args, "gc");
920 if (opts->auto_flag)
921 strvec_push(&child.args, "--auto");
922 if (opts->quiet)
923 strvec_push(&child.args, "--quiet");
924 else
925 strvec_push(&child.args, "--no-quiet");
927 return run_command(&child);
930 static int prune_packed(struct maintenance_run_opts *opts)
932 struct child_process child = CHILD_PROCESS_INIT;
934 child.git_cmd = 1;
935 strvec_push(&child.args, "prune-packed");
937 if (opts->quiet)
938 strvec_push(&child.args, "--quiet");
940 return !!run_command(&child);
943 struct write_loose_object_data {
944 FILE *in;
945 int count;
946 int batch_size;
949 static int loose_object_auto_limit = 100;
951 static int loose_object_count(const struct object_id *oid,
952 const char *path,
953 void *data)
955 int *count = (int*)data;
956 if (++(*count) >= loose_object_auto_limit)
957 return 1;
958 return 0;
961 static int loose_object_auto_condition(void)
963 int count = 0;
965 git_config_get_int("maintenance.loose-objects.auto",
966 &loose_object_auto_limit);
968 if (!loose_object_auto_limit)
969 return 0;
970 if (loose_object_auto_limit < 0)
971 return 1;
973 return for_each_loose_file_in_objdir(the_repository->objects->odb->path,
974 loose_object_count,
975 NULL, NULL, &count);
978 static int bail_on_loose(const struct object_id *oid,
979 const char *path,
980 void *data)
982 return 1;
985 static int write_loose_object_to_stdin(const struct object_id *oid,
986 const char *path,
987 void *data)
989 struct write_loose_object_data *d = (struct write_loose_object_data *)data;
991 fprintf(d->in, "%s\n", oid_to_hex(oid));
993 return ++(d->count) > d->batch_size;
996 static int pack_loose(struct maintenance_run_opts *opts)
998 struct repository *r = the_repository;
999 int result = 0;
1000 struct write_loose_object_data data;
1001 struct child_process pack_proc = CHILD_PROCESS_INIT;
1004 * Do not start pack-objects process
1005 * if there are no loose objects.
1007 if (!for_each_loose_file_in_objdir(r->objects->odb->path,
1008 bail_on_loose,
1009 NULL, NULL, NULL))
1010 return 0;
1012 pack_proc.git_cmd = 1;
1014 strvec_push(&pack_proc.args, "pack-objects");
1015 if (opts->quiet)
1016 strvec_push(&pack_proc.args, "--quiet");
1017 strvec_pushf(&pack_proc.args, "%s/pack/loose", r->objects->odb->path);
1019 pack_proc.in = -1;
1021 if (start_command(&pack_proc)) {
1022 error(_("failed to start 'git pack-objects' process"));
1023 return 1;
1026 data.in = xfdopen(pack_proc.in, "w");
1027 data.count = 0;
1028 data.batch_size = 50000;
1030 for_each_loose_file_in_objdir(r->objects->odb->path,
1031 write_loose_object_to_stdin,
1032 NULL,
1033 NULL,
1034 &data);
1036 fclose(data.in);
1038 if (finish_command(&pack_proc)) {
1039 error(_("failed to finish 'git pack-objects' process"));
1040 result = 1;
1043 return result;
1046 static int maintenance_task_loose_objects(struct maintenance_run_opts *opts)
1048 return prune_packed(opts) || pack_loose(opts);
1051 static int incremental_repack_auto_condition(void)
1053 struct packed_git *p;
1054 int incremental_repack_auto_limit = 10;
1055 int count = 0;
1057 prepare_repo_settings(the_repository);
1058 if (!the_repository->settings.core_multi_pack_index)
1059 return 0;
1061 git_config_get_int("maintenance.incremental-repack.auto",
1062 &incremental_repack_auto_limit);
1064 if (!incremental_repack_auto_limit)
1065 return 0;
1066 if (incremental_repack_auto_limit < 0)
1067 return 1;
1069 for (p = get_packed_git(the_repository);
1070 count < incremental_repack_auto_limit && p;
1071 p = p->next) {
1072 if (!p->multi_pack_index)
1073 count++;
1076 return count >= incremental_repack_auto_limit;
1079 static int multi_pack_index_write(struct maintenance_run_opts *opts)
1081 struct child_process child = CHILD_PROCESS_INIT;
1083 child.git_cmd = 1;
1084 strvec_pushl(&child.args, "multi-pack-index", "write", NULL);
1086 if (opts->quiet)
1087 strvec_push(&child.args, "--no-progress");
1089 if (run_command(&child))
1090 return error(_("failed to write multi-pack-index"));
1092 return 0;
1095 static int multi_pack_index_expire(struct maintenance_run_opts *opts)
1097 struct child_process child = CHILD_PROCESS_INIT;
1099 child.git_cmd = child.close_object_store = 1;
1100 strvec_pushl(&child.args, "multi-pack-index", "expire", NULL);
1102 if (opts->quiet)
1103 strvec_push(&child.args, "--no-progress");
1105 if (run_command(&child))
1106 return error(_("'git multi-pack-index expire' failed"));
1108 return 0;
1111 #define TWO_GIGABYTES (INT32_MAX)
1113 static off_t get_auto_pack_size(void)
1116 * The "auto" value is special: we optimize for
1117 * one large pack-file (i.e. from a clone) and
1118 * expect the rest to be small and they can be
1119 * repacked quickly.
1121 * The strategy we select here is to select a
1122 * size that is one more than the second largest
1123 * pack-file. This ensures that we will repack
1124 * at least two packs if there are three or more
1125 * packs.
1127 off_t max_size = 0;
1128 off_t second_largest_size = 0;
1129 off_t result_size;
1130 struct packed_git *p;
1131 struct repository *r = the_repository;
1133 reprepare_packed_git(r);
1134 for (p = get_all_packs(r); p; p = p->next) {
1135 if (p->pack_size > max_size) {
1136 second_largest_size = max_size;
1137 max_size = p->pack_size;
1138 } else if (p->pack_size > second_largest_size)
1139 second_largest_size = p->pack_size;
1142 result_size = second_largest_size + 1;
1144 /* But limit ourselves to a batch size of 2g */
1145 if (result_size > TWO_GIGABYTES)
1146 result_size = TWO_GIGABYTES;
1148 return result_size;
1151 static int multi_pack_index_repack(struct maintenance_run_opts *opts)
1153 struct child_process child = CHILD_PROCESS_INIT;
1155 child.git_cmd = child.close_object_store = 1;
1156 strvec_pushl(&child.args, "multi-pack-index", "repack", NULL);
1158 if (opts->quiet)
1159 strvec_push(&child.args, "--no-progress");
1161 strvec_pushf(&child.args, "--batch-size=%"PRIuMAX,
1162 (uintmax_t)get_auto_pack_size());
1164 if (run_command(&child))
1165 return error(_("'git multi-pack-index repack' failed"));
1167 return 0;
1170 static int maintenance_task_incremental_repack(struct maintenance_run_opts *opts)
1172 prepare_repo_settings(the_repository);
1173 if (!the_repository->settings.core_multi_pack_index) {
1174 warning(_("skipping incremental-repack task because core.multiPackIndex is disabled"));
1175 return 0;
1178 if (multi_pack_index_write(opts))
1179 return 1;
1180 if (multi_pack_index_expire(opts))
1181 return 1;
1182 if (multi_pack_index_repack(opts))
1183 return 1;
1184 return 0;
1187 typedef int maintenance_task_fn(struct maintenance_run_opts *opts);
1190 * An auto condition function returns 1 if the task should run
1191 * and 0 if the task should NOT run. See needs_to_gc() for an
1192 * example.
1194 typedef int maintenance_auto_fn(void);
1196 struct maintenance_task {
1197 const char *name;
1198 maintenance_task_fn *fn;
1199 maintenance_auto_fn *auto_condition;
1200 unsigned enabled:1;
1202 enum schedule_priority schedule;
1204 /* -1 if not selected. */
1205 int selected_order;
1208 enum maintenance_task_label {
1209 TASK_PREFETCH,
1210 TASK_LOOSE_OBJECTS,
1211 TASK_INCREMENTAL_REPACK,
1212 TASK_GC,
1213 TASK_COMMIT_GRAPH,
1214 TASK_PACK_REFS,
1216 /* Leave as final value */
1217 TASK__COUNT
1220 static struct maintenance_task tasks[] = {
1221 [TASK_PREFETCH] = {
1222 "prefetch",
1223 maintenance_task_prefetch,
1225 [TASK_LOOSE_OBJECTS] = {
1226 "loose-objects",
1227 maintenance_task_loose_objects,
1228 loose_object_auto_condition,
1230 [TASK_INCREMENTAL_REPACK] = {
1231 "incremental-repack",
1232 maintenance_task_incremental_repack,
1233 incremental_repack_auto_condition,
1235 [TASK_GC] = {
1236 "gc",
1237 maintenance_task_gc,
1238 need_to_gc,
1241 [TASK_COMMIT_GRAPH] = {
1242 "commit-graph",
1243 maintenance_task_commit_graph,
1244 should_write_commit_graph,
1246 [TASK_PACK_REFS] = {
1247 "pack-refs",
1248 maintenance_task_pack_refs,
1249 NULL,
1253 static int compare_tasks_by_selection(const void *a_, const void *b_)
1255 const struct maintenance_task *a = a_;
1256 const struct maintenance_task *b = b_;
1258 return b->selected_order - a->selected_order;
1261 static int maintenance_run_tasks(struct maintenance_run_opts *opts)
1263 int i, found_selected = 0;
1264 int result = 0;
1265 struct lock_file lk;
1266 struct repository *r = the_repository;
1267 char *lock_path = xstrfmt("%s/maintenance", r->objects->odb->path);
1269 if (hold_lock_file_for_update(&lk, lock_path, LOCK_NO_DEREF) < 0) {
1271 * Another maintenance command is running.
1273 * If --auto was provided, then it is likely due to a
1274 * recursive process stack. Do not report an error in
1275 * that case.
1277 if (!opts->auto_flag && !opts->quiet)
1278 warning(_("lock file '%s' exists, skipping maintenance"),
1279 lock_path);
1280 free(lock_path);
1281 return 0;
1283 free(lock_path);
1285 for (i = 0; !found_selected && i < TASK__COUNT; i++)
1286 found_selected = tasks[i].selected_order >= 0;
1288 if (found_selected)
1289 QSORT(tasks, TASK__COUNT, compare_tasks_by_selection);
1291 for (i = 0; i < TASK__COUNT; i++) {
1292 if (found_selected && tasks[i].selected_order < 0)
1293 continue;
1295 if (!found_selected && !tasks[i].enabled)
1296 continue;
1298 if (opts->auto_flag &&
1299 (!tasks[i].auto_condition ||
1300 !tasks[i].auto_condition()))
1301 continue;
1303 if (opts->schedule && tasks[i].schedule < opts->schedule)
1304 continue;
1306 trace2_region_enter("maintenance", tasks[i].name, r);
1307 if (tasks[i].fn(opts)) {
1308 error(_("task '%s' failed"), tasks[i].name);
1309 result = 1;
1311 trace2_region_leave("maintenance", tasks[i].name, r);
1314 rollback_lock_file(&lk);
1315 return result;
1318 static void initialize_maintenance_strategy(void)
1320 char *config_str;
1322 if (git_config_get_string("maintenance.strategy", &config_str))
1323 return;
1325 if (!strcasecmp(config_str, "incremental")) {
1326 tasks[TASK_GC].schedule = SCHEDULE_NONE;
1327 tasks[TASK_COMMIT_GRAPH].enabled = 1;
1328 tasks[TASK_COMMIT_GRAPH].schedule = SCHEDULE_HOURLY;
1329 tasks[TASK_PREFETCH].enabled = 1;
1330 tasks[TASK_PREFETCH].schedule = SCHEDULE_HOURLY;
1331 tasks[TASK_INCREMENTAL_REPACK].enabled = 1;
1332 tasks[TASK_INCREMENTAL_REPACK].schedule = SCHEDULE_DAILY;
1333 tasks[TASK_LOOSE_OBJECTS].enabled = 1;
1334 tasks[TASK_LOOSE_OBJECTS].schedule = SCHEDULE_DAILY;
1335 tasks[TASK_PACK_REFS].enabled = 1;
1336 tasks[TASK_PACK_REFS].schedule = SCHEDULE_WEEKLY;
1340 static void initialize_task_config(int schedule)
1342 int i;
1343 struct strbuf config_name = STRBUF_INIT;
1344 gc_config();
1346 if (schedule)
1347 initialize_maintenance_strategy();
1349 for (i = 0; i < TASK__COUNT; i++) {
1350 int config_value;
1351 char *config_str;
1353 strbuf_reset(&config_name);
1354 strbuf_addf(&config_name, "maintenance.%s.enabled",
1355 tasks[i].name);
1357 if (!git_config_get_bool(config_name.buf, &config_value))
1358 tasks[i].enabled = config_value;
1360 strbuf_reset(&config_name);
1361 strbuf_addf(&config_name, "maintenance.%s.schedule",
1362 tasks[i].name);
1364 if (!git_config_get_string(config_name.buf, &config_str)) {
1365 tasks[i].schedule = parse_schedule(config_str);
1366 free(config_str);
1370 strbuf_release(&config_name);
1373 static int task_option_parse(const struct option *opt,
1374 const char *arg, int unset)
1376 int i, num_selected = 0;
1377 struct maintenance_task *task = NULL;
1379 BUG_ON_OPT_NEG(unset);
1381 for (i = 0; i < TASK__COUNT; i++) {
1382 if (tasks[i].selected_order >= 0)
1383 num_selected++;
1384 if (!strcasecmp(tasks[i].name, arg)) {
1385 task = &tasks[i];
1389 if (!task) {
1390 error(_("'%s' is not a valid task"), arg);
1391 return 1;
1394 if (task->selected_order >= 0) {
1395 error(_("task '%s' cannot be selected multiple times"), arg);
1396 return 1;
1399 task->selected_order = num_selected + 1;
1401 return 0;
1404 static int maintenance_run(int argc, const char **argv, const char *prefix)
1406 int i;
1407 struct maintenance_run_opts opts;
1408 struct option builtin_maintenance_run_options[] = {
1409 OPT_BOOL(0, "auto", &opts.auto_flag,
1410 N_("run tasks based on the state of the repository")),
1411 OPT_CALLBACK(0, "schedule", &opts.schedule, N_("frequency"),
1412 N_("run tasks based on frequency"),
1413 maintenance_opt_schedule),
1414 OPT_BOOL(0, "quiet", &opts.quiet,
1415 N_("do not report progress or other information over stderr")),
1416 OPT_CALLBACK_F(0, "task", NULL, N_("task"),
1417 N_("run a specific task"),
1418 PARSE_OPT_NONEG, task_option_parse),
1419 OPT_END()
1421 memset(&opts, 0, sizeof(opts));
1423 opts.quiet = !isatty(2);
1425 for (i = 0; i < TASK__COUNT; i++)
1426 tasks[i].selected_order = -1;
1428 argc = parse_options(argc, argv, prefix,
1429 builtin_maintenance_run_options,
1430 builtin_maintenance_run_usage,
1431 PARSE_OPT_STOP_AT_NON_OPTION);
1433 if (opts.auto_flag && opts.schedule)
1434 die(_("use at most one of --auto and --schedule=<frequency>"));
1436 initialize_task_config(opts.schedule);
1438 if (argc != 0)
1439 usage_with_options(builtin_maintenance_run_usage,
1440 builtin_maintenance_run_options);
1441 return maintenance_run_tasks(&opts);
1444 static char *get_maintpath(void)
1446 struct strbuf sb = STRBUF_INIT;
1447 const char *p = the_repository->worktree ?
1448 the_repository->worktree : the_repository->gitdir;
1450 strbuf_realpath(&sb, p, 1);
1451 return strbuf_detach(&sb, NULL);
1454 static int maintenance_register(void)
1456 int rc;
1457 char *config_value;
1458 struct child_process config_set = CHILD_PROCESS_INIT;
1459 struct child_process config_get = CHILD_PROCESS_INIT;
1460 char *maintpath = get_maintpath();
1462 /* Disable foreground maintenance */
1463 git_config_set("maintenance.auto", "false");
1465 /* Set maintenance strategy, if unset */
1466 if (!git_config_get_string("maintenance.strategy", &config_value))
1467 free(config_value);
1468 else
1469 git_config_set("maintenance.strategy", "incremental");
1471 config_get.git_cmd = 1;
1472 strvec_pushl(&config_get.args, "config", "--global", "--get",
1473 "--fixed-value", "maintenance.repo", maintpath, NULL);
1474 config_get.out = -1;
1476 if (start_command(&config_get)) {
1477 rc = error(_("failed to run 'git config'"));
1478 goto done;
1481 /* We already have this value in our config! */
1482 if (!finish_command(&config_get)) {
1483 rc = 0;
1484 goto done;
1487 config_set.git_cmd = 1;
1488 strvec_pushl(&config_set.args, "config", "--add", "--global", "maintenance.repo",
1489 maintpath, NULL);
1491 rc = run_command(&config_set);
1493 done:
1494 free(maintpath);
1495 return rc;
1498 static int maintenance_unregister(void)
1500 int rc;
1501 struct child_process config_unset = CHILD_PROCESS_INIT;
1502 char *maintpath = get_maintpath();
1504 config_unset.git_cmd = 1;
1505 strvec_pushl(&config_unset.args, "config", "--global", "--unset",
1506 "--fixed-value", "maintenance.repo", maintpath, NULL);
1508 rc = run_command(&config_unset);
1509 free(maintpath);
1510 return rc;
1513 static const char *get_frequency(enum schedule_priority schedule)
1515 switch (schedule) {
1516 case SCHEDULE_HOURLY:
1517 return "hourly";
1518 case SCHEDULE_DAILY:
1519 return "daily";
1520 case SCHEDULE_WEEKLY:
1521 return "weekly";
1522 default:
1523 BUG("invalid schedule %d", schedule);
1528 * get_schedule_cmd` reads the GIT_TEST_MAINT_SCHEDULER environment variable
1529 * to mock the schedulers that `git maintenance start` rely on.
1531 * For test purpose, GIT_TEST_MAINT_SCHEDULER can be set to a comma-separated
1532 * list of colon-separated key/value pairs where each pair contains a scheduler
1533 * and its corresponding mock.
1535 * * If $GIT_TEST_MAINT_SCHEDULER is not set, return false and leave the
1536 * arguments unmodified.
1538 * * If $GIT_TEST_MAINT_SCHEDULER is set, return true.
1539 * In this case, the *cmd value is read as input.
1541 * * if the input value *cmd is the key of one of the comma-separated list
1542 * item, then *is_available is set to true and *cmd is modified and becomes
1543 * the mock command.
1545 * * if the input value *cmd isn’t the key of any of the comma-separated list
1546 * item, then *is_available is set to false.
1548 * Ex.:
1549 * GIT_TEST_MAINT_SCHEDULER not set
1550 * +-------+-------------------------------------------------+
1551 * | Input | Output |
1552 * | *cmd | return code | *cmd | *is_available |
1553 * +-------+-------------+-------------------+---------------+
1554 * | "foo" | false | "foo" (unchanged) | (unchanged) |
1555 * +-------+-------------+-------------------+---------------+
1557 * GIT_TEST_MAINT_SCHEDULER set to “foo:./mock_foo.sh,bar:./mock_bar.sh”
1558 * +-------+-------------------------------------------------+
1559 * | Input | Output |
1560 * | *cmd | return code | *cmd | *is_available |
1561 * +-------+-------------+-------------------+---------------+
1562 * | "foo" | true | "./mock.foo.sh" | true |
1563 * | "qux" | true | "qux" (unchanged) | false |
1564 * +-------+-------------+-------------------+---------------+
1566 static int get_schedule_cmd(const char **cmd, int *is_available)
1568 char *testing = xstrdup_or_null(getenv("GIT_TEST_MAINT_SCHEDULER"));
1569 struct string_list_item *item;
1570 struct string_list list = STRING_LIST_INIT_NODUP;
1572 if (!testing)
1573 return 0;
1575 if (is_available)
1576 *is_available = 0;
1578 string_list_split_in_place(&list, testing, ',', -1);
1579 for_each_string_list_item(item, &list) {
1580 struct string_list pair = STRING_LIST_INIT_NODUP;
1582 if (string_list_split_in_place(&pair, item->string, ':', 2) != 2)
1583 continue;
1585 if (!strcmp(*cmd, pair.items[0].string)) {
1586 *cmd = pair.items[1].string;
1587 if (is_available)
1588 *is_available = 1;
1589 string_list_clear(&list, 0);
1590 UNLEAK(testing);
1591 return 1;
1595 string_list_clear(&list, 0);
1596 free(testing);
1597 return 1;
1600 static int is_launchctl_available(void)
1602 const char *cmd = "launchctl";
1603 int is_available;
1604 if (get_schedule_cmd(&cmd, &is_available))
1605 return is_available;
1607 #ifdef __APPLE__
1608 return 1;
1609 #else
1610 return 0;
1611 #endif
1614 static char *launchctl_service_name(const char *frequency)
1616 struct strbuf label = STRBUF_INIT;
1617 strbuf_addf(&label, "org.git-scm.git.%s", frequency);
1618 return strbuf_detach(&label, NULL);
1621 static char *launchctl_service_filename(const char *name)
1623 char *expanded;
1624 struct strbuf filename = STRBUF_INIT;
1625 strbuf_addf(&filename, "~/Library/LaunchAgents/%s.plist", name);
1627 expanded = interpolate_path(filename.buf, 1);
1628 if (!expanded)
1629 die(_("failed to expand path '%s'"), filename.buf);
1631 strbuf_release(&filename);
1632 return expanded;
1635 static char *launchctl_get_uid(void)
1637 return xstrfmt("gui/%d", getuid());
1640 static int launchctl_boot_plist(int enable, const char *filename)
1642 const char *cmd = "launchctl";
1643 int result;
1644 struct child_process child = CHILD_PROCESS_INIT;
1645 char *uid = launchctl_get_uid();
1647 get_schedule_cmd(&cmd, NULL);
1648 strvec_split(&child.args, cmd);
1649 strvec_pushl(&child.args, enable ? "bootstrap" : "bootout", uid,
1650 filename, NULL);
1652 child.no_stderr = 1;
1653 child.no_stdout = 1;
1655 if (start_command(&child))
1656 die(_("failed to start launchctl"));
1658 result = finish_command(&child);
1660 free(uid);
1661 return result;
1664 static int launchctl_remove_plist(enum schedule_priority schedule)
1666 const char *frequency = get_frequency(schedule);
1667 char *name = launchctl_service_name(frequency);
1668 char *filename = launchctl_service_filename(name);
1669 int result = launchctl_boot_plist(0, filename);
1670 unlink(filename);
1671 free(filename);
1672 free(name);
1673 return result;
1676 static int launchctl_remove_plists(void)
1678 return launchctl_remove_plist(SCHEDULE_HOURLY) ||
1679 launchctl_remove_plist(SCHEDULE_DAILY) ||
1680 launchctl_remove_plist(SCHEDULE_WEEKLY);
1683 static int launchctl_list_contains_plist(const char *name, const char *cmd)
1685 struct child_process child = CHILD_PROCESS_INIT;
1687 strvec_split(&child.args, cmd);
1688 strvec_pushl(&child.args, "list", name, NULL);
1690 child.no_stderr = 1;
1691 child.no_stdout = 1;
1693 if (start_command(&child))
1694 die(_("failed to start launchctl"));
1696 /* Returns failure if 'name' doesn't exist. */
1697 return !finish_command(&child);
1700 static int launchctl_schedule_plist(const char *exec_path, enum schedule_priority schedule)
1702 int i, fd;
1703 const char *preamble, *repeat;
1704 const char *frequency = get_frequency(schedule);
1705 char *name = launchctl_service_name(frequency);
1706 char *filename = launchctl_service_filename(name);
1707 struct lock_file lk = LOCK_INIT;
1708 static unsigned long lock_file_timeout_ms = ULONG_MAX;
1709 struct strbuf plist = STRBUF_INIT, plist2 = STRBUF_INIT;
1710 struct stat st;
1711 const char *cmd = "launchctl";
1713 get_schedule_cmd(&cmd, NULL);
1714 preamble = "<?xml version=\"1.0\"?>\n"
1715 "<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
1716 "<plist version=\"1.0\">"
1717 "<dict>\n"
1718 "<key>Label</key><string>%s</string>\n"
1719 "<key>ProgramArguments</key>\n"
1720 "<array>\n"
1721 "<string>%s/git</string>\n"
1722 "<string>--exec-path=%s</string>\n"
1723 "<string>for-each-repo</string>\n"
1724 "<string>--config=maintenance.repo</string>\n"
1725 "<string>maintenance</string>\n"
1726 "<string>run</string>\n"
1727 "<string>--schedule=%s</string>\n"
1728 "</array>\n"
1729 "<key>StartCalendarInterval</key>\n"
1730 "<array>\n";
1731 strbuf_addf(&plist, preamble, name, exec_path, exec_path, frequency);
1733 switch (schedule) {
1734 case SCHEDULE_HOURLY:
1735 repeat = "<dict>\n"
1736 "<key>Hour</key><integer>%d</integer>\n"
1737 "<key>Minute</key><integer>0</integer>\n"
1738 "</dict>\n";
1739 for (i = 1; i <= 23; i++)
1740 strbuf_addf(&plist, repeat, i);
1741 break;
1743 case SCHEDULE_DAILY:
1744 repeat = "<dict>\n"
1745 "<key>Day</key><integer>%d</integer>\n"
1746 "<key>Hour</key><integer>0</integer>\n"
1747 "<key>Minute</key><integer>0</integer>\n"
1748 "</dict>\n";
1749 for (i = 1; i <= 6; i++)
1750 strbuf_addf(&plist, repeat, i);
1751 break;
1753 case SCHEDULE_WEEKLY:
1754 strbuf_addstr(&plist,
1755 "<dict>\n"
1756 "<key>Day</key><integer>0</integer>\n"
1757 "<key>Hour</key><integer>0</integer>\n"
1758 "<key>Minute</key><integer>0</integer>\n"
1759 "</dict>\n");
1760 break;
1762 default:
1763 /* unreachable */
1764 break;
1766 strbuf_addstr(&plist, "</array>\n</dict>\n</plist>\n");
1768 if (safe_create_leading_directories(filename))
1769 die(_("failed to create directories for '%s'"), filename);
1771 if ((long)lock_file_timeout_ms < 0 &&
1772 git_config_get_ulong("gc.launchctlplistlocktimeoutms",
1773 &lock_file_timeout_ms))
1774 lock_file_timeout_ms = 150;
1776 fd = hold_lock_file_for_update_timeout(&lk, filename, LOCK_DIE_ON_ERROR,
1777 lock_file_timeout_ms);
1780 * Does this file already exist? With the intended contents? Is it
1781 * registered already? Then it does not need to be re-registered.
1783 if (!stat(filename, &st) && st.st_size == plist.len &&
1784 strbuf_read_file(&plist2, filename, plist.len) == plist.len &&
1785 !strbuf_cmp(&plist, &plist2) &&
1786 launchctl_list_contains_plist(name, cmd))
1787 rollback_lock_file(&lk);
1788 else {
1789 if (write_in_full(fd, plist.buf, plist.len) < 0 ||
1790 commit_lock_file(&lk))
1791 die_errno(_("could not write '%s'"), filename);
1793 /* bootout might fail if not already running, so ignore */
1794 launchctl_boot_plist(0, filename);
1795 if (launchctl_boot_plist(1, filename))
1796 die(_("failed to bootstrap service %s"), filename);
1799 free(filename);
1800 free(name);
1801 strbuf_release(&plist);
1802 strbuf_release(&plist2);
1803 return 0;
1806 static int launchctl_add_plists(void)
1808 const char *exec_path = git_exec_path();
1810 return launchctl_schedule_plist(exec_path, SCHEDULE_HOURLY) ||
1811 launchctl_schedule_plist(exec_path, SCHEDULE_DAILY) ||
1812 launchctl_schedule_plist(exec_path, SCHEDULE_WEEKLY);
1815 static int launchctl_update_schedule(int run_maintenance, int fd)
1817 if (run_maintenance)
1818 return launchctl_add_plists();
1819 else
1820 return launchctl_remove_plists();
1823 static int is_schtasks_available(void)
1825 const char *cmd = "schtasks";
1826 int is_available;
1827 if (get_schedule_cmd(&cmd, &is_available))
1828 return is_available;
1830 #ifdef GIT_WINDOWS_NATIVE
1831 return 1;
1832 #else
1833 return 0;
1834 #endif
1837 static char *schtasks_task_name(const char *frequency)
1839 struct strbuf label = STRBUF_INIT;
1840 strbuf_addf(&label, "Git Maintenance (%s)", frequency);
1841 return strbuf_detach(&label, NULL);
1844 static int schtasks_remove_task(enum schedule_priority schedule)
1846 const char *cmd = "schtasks";
1847 int result;
1848 struct strvec args = STRVEC_INIT;
1849 const char *frequency = get_frequency(schedule);
1850 char *name = schtasks_task_name(frequency);
1852 get_schedule_cmd(&cmd, NULL);
1853 strvec_split(&args, cmd);
1854 strvec_pushl(&args, "/delete", "/tn", name, "/f", NULL);
1856 result = run_command_v_opt(args.v, 0);
1858 strvec_clear(&args);
1859 free(name);
1860 return result;
1863 static int schtasks_remove_tasks(void)
1865 return schtasks_remove_task(SCHEDULE_HOURLY) ||
1866 schtasks_remove_task(SCHEDULE_DAILY) ||
1867 schtasks_remove_task(SCHEDULE_WEEKLY);
1870 static int schtasks_schedule_task(const char *exec_path, enum schedule_priority schedule)
1872 const char *cmd = "schtasks";
1873 int result;
1874 struct child_process child = CHILD_PROCESS_INIT;
1875 const char *xml;
1876 struct tempfile *tfile;
1877 const char *frequency = get_frequency(schedule);
1878 char *name = schtasks_task_name(frequency);
1879 struct strbuf tfilename = STRBUF_INIT;
1881 get_schedule_cmd(&cmd, NULL);
1883 strbuf_addf(&tfilename, "%s/schedule_%s_XXXXXX",
1884 get_git_common_dir(), frequency);
1885 tfile = xmks_tempfile(tfilename.buf);
1886 strbuf_release(&tfilename);
1888 if (!fdopen_tempfile(tfile, "w"))
1889 die(_("failed to create temp xml file"));
1891 xml = "<?xml version=\"1.0\" ?>\n"
1892 "<Task version=\"1.4\" xmlns=\"http://schemas.microsoft.com/windows/2004/02/mit/task\">\n"
1893 "<Triggers>\n"
1894 "<CalendarTrigger>\n";
1895 fputs(xml, tfile->fp);
1897 switch (schedule) {
1898 case SCHEDULE_HOURLY:
1899 fprintf(tfile->fp,
1900 "<StartBoundary>2020-01-01T01:00:00</StartBoundary>\n"
1901 "<Enabled>true</Enabled>\n"
1902 "<ScheduleByDay>\n"
1903 "<DaysInterval>1</DaysInterval>\n"
1904 "</ScheduleByDay>\n"
1905 "<Repetition>\n"
1906 "<Interval>PT1H</Interval>\n"
1907 "<Duration>PT23H</Duration>\n"
1908 "<StopAtDurationEnd>false</StopAtDurationEnd>\n"
1909 "</Repetition>\n");
1910 break;
1912 case SCHEDULE_DAILY:
1913 fprintf(tfile->fp,
1914 "<StartBoundary>2020-01-01T00:00:00</StartBoundary>\n"
1915 "<Enabled>true</Enabled>\n"
1916 "<ScheduleByWeek>\n"
1917 "<DaysOfWeek>\n"
1918 "<Monday />\n"
1919 "<Tuesday />\n"
1920 "<Wednesday />\n"
1921 "<Thursday />\n"
1922 "<Friday />\n"
1923 "<Saturday />\n"
1924 "</DaysOfWeek>\n"
1925 "<WeeksInterval>1</WeeksInterval>\n"
1926 "</ScheduleByWeek>\n");
1927 break;
1929 case SCHEDULE_WEEKLY:
1930 fprintf(tfile->fp,
1931 "<StartBoundary>2020-01-01T00:00:00</StartBoundary>\n"
1932 "<Enabled>true</Enabled>\n"
1933 "<ScheduleByWeek>\n"
1934 "<DaysOfWeek>\n"
1935 "<Sunday />\n"
1936 "</DaysOfWeek>\n"
1937 "<WeeksInterval>1</WeeksInterval>\n"
1938 "</ScheduleByWeek>\n");
1939 break;
1941 default:
1942 break;
1945 xml = "</CalendarTrigger>\n"
1946 "</Triggers>\n"
1947 "<Principals>\n"
1948 "<Principal id=\"Author\">\n"
1949 "<LogonType>InteractiveToken</LogonType>\n"
1950 "<RunLevel>LeastPrivilege</RunLevel>\n"
1951 "</Principal>\n"
1952 "</Principals>\n"
1953 "<Settings>\n"
1954 "<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>\n"
1955 "<Enabled>true</Enabled>\n"
1956 "<Hidden>true</Hidden>\n"
1957 "<UseUnifiedSchedulingEngine>true</UseUnifiedSchedulingEngine>\n"
1958 "<WakeToRun>false</WakeToRun>\n"
1959 "<ExecutionTimeLimit>PT72H</ExecutionTimeLimit>\n"
1960 "<Priority>7</Priority>\n"
1961 "</Settings>\n"
1962 "<Actions Context=\"Author\">\n"
1963 "<Exec>\n"
1964 "<Command>\"%s\\git.exe\"</Command>\n"
1965 "<Arguments>--exec-path=\"%s\" for-each-repo --config=maintenance.repo maintenance run --schedule=%s</Arguments>\n"
1966 "</Exec>\n"
1967 "</Actions>\n"
1968 "</Task>\n";
1969 fprintf(tfile->fp, xml, exec_path, exec_path, frequency);
1970 strvec_split(&child.args, cmd);
1971 strvec_pushl(&child.args, "/create", "/tn", name, "/f", "/xml",
1972 get_tempfile_path(tfile), NULL);
1973 close_tempfile_gently(tfile);
1975 child.no_stdout = 1;
1976 child.no_stderr = 1;
1978 if (start_command(&child))
1979 die(_("failed to start schtasks"));
1980 result = finish_command(&child);
1982 delete_tempfile(&tfile);
1983 free(name);
1984 return result;
1987 static int schtasks_schedule_tasks(void)
1989 const char *exec_path = git_exec_path();
1991 return schtasks_schedule_task(exec_path, SCHEDULE_HOURLY) ||
1992 schtasks_schedule_task(exec_path, SCHEDULE_DAILY) ||
1993 schtasks_schedule_task(exec_path, SCHEDULE_WEEKLY);
1996 static int schtasks_update_schedule(int run_maintenance, int fd)
1998 if (run_maintenance)
1999 return schtasks_schedule_tasks();
2000 else
2001 return schtasks_remove_tasks();
2004 MAYBE_UNUSED
2005 static int check_crontab_process(const char *cmd)
2007 struct child_process child = CHILD_PROCESS_INIT;
2009 strvec_split(&child.args, cmd);
2010 strvec_push(&child.args, "-l");
2011 child.no_stdin = 1;
2012 child.no_stdout = 1;
2013 child.no_stderr = 1;
2014 child.silent_exec_failure = 1;
2016 if (start_command(&child))
2017 return 0;
2018 /* Ignore exit code, as an empty crontab will return error. */
2019 finish_command(&child);
2020 return 1;
2023 static int is_crontab_available(void)
2025 const char *cmd = "crontab";
2026 int is_available;
2028 if (get_schedule_cmd(&cmd, &is_available))
2029 return is_available;
2031 #ifdef __APPLE__
2033 * macOS has cron, but it requires special permissions and will
2034 * create a UI alert when attempting to run this command.
2036 return 0;
2037 #else
2038 return check_crontab_process(cmd);
2039 #endif
2042 #define BEGIN_LINE "# BEGIN GIT MAINTENANCE SCHEDULE"
2043 #define END_LINE "# END GIT MAINTENANCE SCHEDULE"
2045 static int crontab_update_schedule(int run_maintenance, int fd)
2047 const char *cmd = "crontab";
2048 int result = 0;
2049 int in_old_region = 0;
2050 struct child_process crontab_list = CHILD_PROCESS_INIT;
2051 struct child_process crontab_edit = CHILD_PROCESS_INIT;
2052 FILE *cron_list, *cron_in;
2053 struct strbuf line = STRBUF_INIT;
2055 get_schedule_cmd(&cmd, NULL);
2056 strvec_split(&crontab_list.args, cmd);
2057 strvec_push(&crontab_list.args, "-l");
2058 crontab_list.in = -1;
2059 crontab_list.out = dup(fd);
2060 crontab_list.git_cmd = 0;
2062 if (start_command(&crontab_list))
2063 return error(_("failed to run 'crontab -l'; your system might not support 'cron'"));
2065 /* Ignore exit code, as an empty crontab will return error. */
2066 finish_command(&crontab_list);
2069 * Read from the .lock file, filtering out the old
2070 * schedule while appending the new schedule.
2072 cron_list = fdopen(fd, "r");
2073 rewind(cron_list);
2075 strvec_split(&crontab_edit.args, cmd);
2076 crontab_edit.in = -1;
2077 crontab_edit.git_cmd = 0;
2079 if (start_command(&crontab_edit))
2080 return error(_("failed to run 'crontab'; your system might not support 'cron'"));
2082 cron_in = fdopen(crontab_edit.in, "w");
2083 if (!cron_in) {
2084 result = error(_("failed to open stdin of 'crontab'"));
2085 goto done_editing;
2088 while (!strbuf_getline_lf(&line, cron_list)) {
2089 if (!in_old_region && !strcmp(line.buf, BEGIN_LINE))
2090 in_old_region = 1;
2091 else if (in_old_region && !strcmp(line.buf, END_LINE))
2092 in_old_region = 0;
2093 else if (!in_old_region)
2094 fprintf(cron_in, "%s\n", line.buf);
2096 strbuf_release(&line);
2098 if (run_maintenance) {
2099 struct strbuf line_format = STRBUF_INIT;
2100 const char *exec_path = git_exec_path();
2102 fprintf(cron_in, "%s\n", BEGIN_LINE);
2103 fprintf(cron_in,
2104 "# The following schedule was created by Git\n");
2105 fprintf(cron_in, "# Any edits made in this region might be\n");
2106 fprintf(cron_in,
2107 "# replaced in the future by a Git command.\n\n");
2109 strbuf_addf(&line_format,
2110 "%%s %%s * * %%s \"%s/git\" --exec-path=\"%s\" for-each-repo --config=maintenance.repo maintenance run --schedule=%%s\n",
2111 exec_path, exec_path);
2112 fprintf(cron_in, line_format.buf, "0", "1-23", "*", "hourly");
2113 fprintf(cron_in, line_format.buf, "0", "0", "1-6", "daily");
2114 fprintf(cron_in, line_format.buf, "0", "0", "0", "weekly");
2115 strbuf_release(&line_format);
2117 fprintf(cron_in, "\n%s\n", END_LINE);
2120 fflush(cron_in);
2121 fclose(cron_in);
2122 close(crontab_edit.in);
2124 done_editing:
2125 if (finish_command(&crontab_edit))
2126 result = error(_("'crontab' died"));
2127 else
2128 fclose(cron_list);
2129 return result;
2132 static int real_is_systemd_timer_available(void)
2134 struct child_process child = CHILD_PROCESS_INIT;
2136 strvec_pushl(&child.args, "systemctl", "--user", "list-timers", NULL);
2137 child.no_stdin = 1;
2138 child.no_stdout = 1;
2139 child.no_stderr = 1;
2140 child.silent_exec_failure = 1;
2142 if (start_command(&child))
2143 return 0;
2144 if (finish_command(&child))
2145 return 0;
2146 return 1;
2149 static int is_systemd_timer_available(void)
2151 const char *cmd = "systemctl";
2152 int is_available;
2154 if (get_schedule_cmd(&cmd, &is_available))
2155 return is_available;
2157 return real_is_systemd_timer_available();
2160 static char *xdg_config_home_systemd(const char *filename)
2162 return xdg_config_home_for("systemd/user", filename);
2165 static int systemd_timer_enable_unit(int enable,
2166 enum schedule_priority schedule)
2168 const char *cmd = "systemctl";
2169 struct child_process child = CHILD_PROCESS_INIT;
2170 const char *frequency = get_frequency(schedule);
2173 * Disabling the systemd unit while it is already disabled makes
2174 * systemctl print an error.
2175 * Let's ignore it since it means we already are in the expected state:
2176 * the unit is disabled.
2178 * On the other hand, enabling a systemd unit which is already enabled
2179 * produces no error.
2181 if (!enable)
2182 child.no_stderr = 1;
2184 get_schedule_cmd(&cmd, NULL);
2185 strvec_split(&child.args, cmd);
2186 strvec_pushl(&child.args, "--user", enable ? "enable" : "disable",
2187 "--now", NULL);
2188 strvec_pushf(&child.args, "git-maintenance@%s.timer", frequency);
2190 if (start_command(&child))
2191 return error(_("failed to start systemctl"));
2192 if (finish_command(&child))
2194 * Disabling an already disabled systemd unit makes
2195 * systemctl fail.
2196 * Let's ignore this failure.
2198 * Enabling an enabled systemd unit doesn't fail.
2200 if (enable)
2201 return error(_("failed to run systemctl"));
2202 return 0;
2205 static int systemd_timer_delete_unit_templates(void)
2207 int ret = 0;
2208 char *filename = xdg_config_home_systemd("git-maintenance@.timer");
2209 if (unlink(filename) && !is_missing_file_error(errno))
2210 ret = error_errno(_("failed to delete '%s'"), filename);
2211 FREE_AND_NULL(filename);
2213 filename = xdg_config_home_systemd("git-maintenance@.service");
2214 if (unlink(filename) && !is_missing_file_error(errno))
2215 ret = error_errno(_("failed to delete '%s'"), filename);
2217 free(filename);
2218 return ret;
2221 static int systemd_timer_delete_units(void)
2223 return systemd_timer_enable_unit(0, SCHEDULE_HOURLY) ||
2224 systemd_timer_enable_unit(0, SCHEDULE_DAILY) ||
2225 systemd_timer_enable_unit(0, SCHEDULE_WEEKLY) ||
2226 systemd_timer_delete_unit_templates();
2229 static int systemd_timer_write_unit_templates(const char *exec_path)
2231 char *filename;
2232 FILE *file;
2233 const char *unit;
2235 filename = xdg_config_home_systemd("git-maintenance@.timer");
2236 if (safe_create_leading_directories(filename)) {
2237 error(_("failed to create directories for '%s'"), filename);
2238 goto error;
2240 file = fopen_or_warn(filename, "w");
2241 if (file == NULL)
2242 goto error;
2244 unit = "# This file was created and is maintained by Git.\n"
2245 "# Any edits made in this file might be replaced in the future\n"
2246 "# by a Git command.\n"
2247 "\n"
2248 "[Unit]\n"
2249 "Description=Optimize Git repositories data\n"
2250 "\n"
2251 "[Timer]\n"
2252 "OnCalendar=%i\n"
2253 "Persistent=true\n"
2254 "\n"
2255 "[Install]\n"
2256 "WantedBy=timers.target\n";
2257 if (fputs(unit, file) == EOF) {
2258 error(_("failed to write to '%s'"), filename);
2259 fclose(file);
2260 goto error;
2262 if (fclose(file) == EOF) {
2263 error_errno(_("failed to flush '%s'"), filename);
2264 goto error;
2266 free(filename);
2268 filename = xdg_config_home_systemd("git-maintenance@.service");
2269 file = fopen_or_warn(filename, "w");
2270 if (file == NULL)
2271 goto error;
2273 unit = "# This file was created and is maintained by Git.\n"
2274 "# Any edits made in this file might be replaced in the future\n"
2275 "# by a Git command.\n"
2276 "\n"
2277 "[Unit]\n"
2278 "Description=Optimize Git repositories data\n"
2279 "\n"
2280 "[Service]\n"
2281 "Type=oneshot\n"
2282 "ExecStart=\"%s/git\" --exec-path=\"%s\" for-each-repo --config=maintenance.repo maintenance run --schedule=%%i\n"
2283 "LockPersonality=yes\n"
2284 "MemoryDenyWriteExecute=yes\n"
2285 "NoNewPrivileges=yes\n"
2286 "RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6\n"
2287 "RestrictNamespaces=yes\n"
2288 "RestrictRealtime=yes\n"
2289 "RestrictSUIDSGID=yes\n"
2290 "SystemCallArchitectures=native\n"
2291 "SystemCallFilter=@system-service\n";
2292 if (fprintf(file, unit, exec_path, exec_path) < 0) {
2293 error(_("failed to write to '%s'"), filename);
2294 fclose(file);
2295 goto error;
2297 if (fclose(file) == EOF) {
2298 error_errno(_("failed to flush '%s'"), filename);
2299 goto error;
2301 free(filename);
2302 return 0;
2304 error:
2305 free(filename);
2306 systemd_timer_delete_unit_templates();
2307 return -1;
2310 static int systemd_timer_setup_units(void)
2312 const char *exec_path = git_exec_path();
2314 int ret = systemd_timer_write_unit_templates(exec_path) ||
2315 systemd_timer_enable_unit(1, SCHEDULE_HOURLY) ||
2316 systemd_timer_enable_unit(1, SCHEDULE_DAILY) ||
2317 systemd_timer_enable_unit(1, SCHEDULE_WEEKLY);
2318 if (ret)
2319 systemd_timer_delete_units();
2320 return ret;
2323 static int systemd_timer_update_schedule(int run_maintenance, int fd)
2325 if (run_maintenance)
2326 return systemd_timer_setup_units();
2327 else
2328 return systemd_timer_delete_units();
2331 enum scheduler {
2332 SCHEDULER_INVALID = -1,
2333 SCHEDULER_AUTO,
2334 SCHEDULER_CRON,
2335 SCHEDULER_SYSTEMD,
2336 SCHEDULER_LAUNCHCTL,
2337 SCHEDULER_SCHTASKS,
2340 static const struct {
2341 const char *name;
2342 int (*is_available)(void);
2343 int (*update_schedule)(int run_maintenance, int fd);
2344 } scheduler_fn[] = {
2345 [SCHEDULER_CRON] = {
2346 .name = "crontab",
2347 .is_available = is_crontab_available,
2348 .update_schedule = crontab_update_schedule,
2350 [SCHEDULER_SYSTEMD] = {
2351 .name = "systemctl",
2352 .is_available = is_systemd_timer_available,
2353 .update_schedule = systemd_timer_update_schedule,
2355 [SCHEDULER_LAUNCHCTL] = {
2356 .name = "launchctl",
2357 .is_available = is_launchctl_available,
2358 .update_schedule = launchctl_update_schedule,
2360 [SCHEDULER_SCHTASKS] = {
2361 .name = "schtasks",
2362 .is_available = is_schtasks_available,
2363 .update_schedule = schtasks_update_schedule,
2367 static enum scheduler parse_scheduler(const char *value)
2369 if (!value)
2370 return SCHEDULER_INVALID;
2371 else if (!strcasecmp(value, "auto"))
2372 return SCHEDULER_AUTO;
2373 else if (!strcasecmp(value, "cron") || !strcasecmp(value, "crontab"))
2374 return SCHEDULER_CRON;
2375 else if (!strcasecmp(value, "systemd") ||
2376 !strcasecmp(value, "systemd-timer"))
2377 return SCHEDULER_SYSTEMD;
2378 else if (!strcasecmp(value, "launchctl"))
2379 return SCHEDULER_LAUNCHCTL;
2380 else if (!strcasecmp(value, "schtasks"))
2381 return SCHEDULER_SCHTASKS;
2382 else
2383 return SCHEDULER_INVALID;
2386 static int maintenance_opt_scheduler(const struct option *opt, const char *arg,
2387 int unset)
2389 enum scheduler *scheduler = opt->value;
2391 BUG_ON_OPT_NEG(unset);
2393 *scheduler = parse_scheduler(arg);
2394 if (*scheduler == SCHEDULER_INVALID)
2395 return error(_("unrecognized --scheduler argument '%s'"), arg);
2396 return 0;
2399 struct maintenance_start_opts {
2400 enum scheduler scheduler;
2403 static enum scheduler resolve_scheduler(enum scheduler scheduler)
2405 if (scheduler != SCHEDULER_AUTO)
2406 return scheduler;
2408 #if defined(__APPLE__)
2409 return SCHEDULER_LAUNCHCTL;
2411 #elif defined(GIT_WINDOWS_NATIVE)
2412 return SCHEDULER_SCHTASKS;
2414 #elif defined(__linux__)
2415 if (is_systemd_timer_available())
2416 return SCHEDULER_SYSTEMD;
2417 else if (is_crontab_available())
2418 return SCHEDULER_CRON;
2419 else
2420 die(_("neither systemd timers nor crontab are available"));
2422 #else
2423 return SCHEDULER_CRON;
2424 #endif
2427 static void validate_scheduler(enum scheduler scheduler)
2429 if (scheduler == SCHEDULER_INVALID)
2430 BUG("invalid scheduler");
2431 if (scheduler == SCHEDULER_AUTO)
2432 BUG("resolve_scheduler should have been called before");
2434 if (!scheduler_fn[scheduler].is_available())
2435 die(_("%s scheduler is not available"),
2436 scheduler_fn[scheduler].name);
2439 static int update_background_schedule(const struct maintenance_start_opts *opts,
2440 int enable)
2442 unsigned int i;
2443 int result = 0;
2444 struct lock_file lk;
2445 char *lock_path = xstrfmt("%s/schedule", the_repository->objects->odb->path);
2447 if (hold_lock_file_for_update(&lk, lock_path, LOCK_NO_DEREF) < 0) {
2448 free(lock_path);
2449 return error(_("another process is scheduling background maintenance"));
2452 for (i = 1; i < ARRAY_SIZE(scheduler_fn); i++) {
2453 if (enable && opts->scheduler == i)
2454 continue;
2455 if (!scheduler_fn[i].is_available())
2456 continue;
2457 scheduler_fn[i].update_schedule(0, get_lock_file_fd(&lk));
2460 if (enable)
2461 result = scheduler_fn[opts->scheduler].update_schedule(
2462 1, get_lock_file_fd(&lk));
2464 rollback_lock_file(&lk);
2466 free(lock_path);
2467 return result;
2470 static const char *const builtin_maintenance_start_usage[] = {
2471 N_("git maintenance start [--scheduler=<scheduler>]"),
2472 NULL
2475 static int maintenance_start(int argc, const char **argv, const char *prefix)
2477 struct maintenance_start_opts opts = { 0 };
2478 struct option options[] = {
2479 OPT_CALLBACK_F(
2480 0, "scheduler", &opts.scheduler, N_("scheduler"),
2481 N_("scheduler to trigger git maintenance run"),
2482 PARSE_OPT_NONEG, maintenance_opt_scheduler),
2483 OPT_END()
2486 argc = parse_options(argc, argv, prefix, options,
2487 builtin_maintenance_start_usage, 0);
2488 if (argc)
2489 usage_with_options(builtin_maintenance_start_usage, options);
2491 opts.scheduler = resolve_scheduler(opts.scheduler);
2492 validate_scheduler(opts.scheduler);
2494 if (maintenance_register())
2495 warning(_("failed to add repo to global config"));
2496 return update_background_schedule(&opts, 1);
2499 static int maintenance_stop(void)
2501 return update_background_schedule(NULL, 0);
2504 static const char builtin_maintenance_usage[] = N_("git maintenance <subcommand> [<options>]");
2506 int cmd_maintenance(int argc, const char **argv, const char *prefix)
2508 if (argc < 2 ||
2509 (argc == 2 && !strcmp(argv[1], "-h")))
2510 usage(builtin_maintenance_usage);
2512 if (!strcmp(argv[1], "run"))
2513 return maintenance_run(argc - 1, argv + 1, prefix);
2514 if (!strcmp(argv[1], "start"))
2515 return maintenance_start(argc - 1, argv + 1, prefix);
2516 if (!strcmp(argv[1], "stop"))
2517 return maintenance_stop();
2518 if (!strcmp(argv[1], "register"))
2519 return maintenance_register();
2520 if (!strcmp(argv[1], "unregister"))
2521 return maintenance_unregister();
2523 die(_("invalid subcommand: %s"), argv[1]);