mail.sh: suppress new branch diffstat for root+merge
[girocco.git] / jobd / gc.sh
blob935fa9995847566fb05211a69beedfa967c323f4
1 #!/bin/sh
3 # NOTE: additional options can be passed to git repack by specifying
4 # them after the project name, for example:
5 # gc.sh my-project -f
7 . @basedir@/shlib.sh
9 set -e
11 if [ $# -lt 1 ]; then
12 echo "Usage: gc.sh projname [extra-repack-args]" >&2
13 exit 1
16 # packing options
17 packopts="--depth=50 --window=50 --window-memory=${var_window_memory:-1g}"
18 quiet=; [ -n "$show_progress" ] || quiet=-q
20 umask 002
21 [ "$cfg_permission_control" != "Hooks" ] || umask 000
22 clean_git_env
24 pidactive() {
25 if _result="$(kill -0 "$1" 2>&1)"; then
26 # process exists and we have permission to signal it
27 return 0
29 case "$_result" in *"not permitted"*)
30 # we do not have permission to signal the process
31 return 0
32 esac
33 # process does not exist
34 return 1
37 createlock() {
38 # A .lock file should only exist for much less than a second.
39 # If we see a stale lock file (> 1h old), remove it and then,
40 # just in case, wait 30 seconds for any process whose .lock
41 # we might have just removed (it's racy) to finish doing what
42 # should take much less than a second to do.
43 _stalelock="$(find "$1.lock" -maxdepth 1 -mmin +60 -print 2>/dev/null || :)"
44 if [ -n "$_stalelock" ]; then
45 rm -f "$_stalelock"
46 sleep 30
48 for _try in p p n; do
49 if (set -C; > "$1.lock") 2>/dev/null; then
50 echo "$1.lock"
51 return 0
53 # delay and try again
54 [ "$_try" != "p" ] || sleep 1
55 done
56 # cannot create lock file
57 return 1
60 # The pre-receive script creates one ref log file per push but we want them to
61 # be coalesced into one ref log file per day. We are guaranteed that any files
62 # we find to coalesce are NOT currently being written to since they are always
63 # written first as temporary files and then moved into place. We attempt to
64 # transfer the most recent modification time to the coalesced log file which
65 # would step on its mod time if it were being written to directly, but if we
66 # find per-process ref log files then it must be a push project and the only
67 # thing that would write directly to the main per-day log file would be a
68 # mirror project so there's actually no conflict.
69 # Also, if the clock is wonky (or was futzed with) we may have both YYYYMMDD
70 # and YYYYMMDD.gz present in which case combine them into YYYYMMDD
71 coalesce_reflogs() {
72 [ -d reflogs ] || return 0
73 rm -f .gc_failed
74 find reflogs -maxdepth 1 -type f -name "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]" -print |
75 while read -r rname; do
76 if [ -e "$rname.gz" ]; then
77 if [ -s "$rname" ]; then
78 # Presumably the .gz file must have been created before the non-gz
79 # file since it had to be uncompressed at some point therefore
80 # we need to append the non-gz contents to it but keep the non-gz
81 # contents timestamp so we rename to YYYYMMDD_ which will sort first
82 # and be picked up in the next step if we are interrupted in the middle.
83 # If a YYYYMMDD_ file already exists we append to it and transfer the
84 # timestamp. Finally we transfer the YYYYMMDD_ timestamp to the result
85 # and remove the YYYYMMDD_ temporary file leaving the result uncompressed.
86 if [ -e "${rname}_" ]; then
87 cat "$rname" >>"${rname}_"
88 touch -r "$rname" "${rname}_"
89 rm -f "$rname"
90 ! [ -e "$rname" ]
91 else
92 mv "$rname" "${rname}_"
94 gzip -d "$rname.gz" </dev/null
95 [ -e "$rname" ] && ! [ -e "$rname.gz" ]
96 cat "${rname}_" >>"$rname"
97 touch -r "${rname}_" "$rname"
98 rm -f "${rname}_"
99 else
100 # Just remove the empty file to resolve the problem
101 rm -f "$rname"
104 done
105 find reflogs -maxdepth 1 -type f -name "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]_*" -print | LC_ALL=C sort |
106 while read -r rname; do
107 logname="${rname%%_*}"
108 # If someone's been futzing with the date, the file we want to
109 # append to could already have been compressed, so we just uncompress
110 # it here. The previous block guarantees we do not have both a compressed
111 # and uncompressed version present at the same time.
112 if [ -e "$logname.gz" ]; then
113 gzip -d "$logname.gz" </dev/null
114 [ -e "$logname" ] && ! [ -e "$logname.gz" ]
116 cat "$rname" >>"$logname"
117 touch -r "$rname" "$logname"
118 rm -f "$rname"
119 if [ -e "$rname" ]; then
120 >.gc_failed
121 echo "! [$proj] failed to remove $rname" >&2
122 exit 1 # will only exit subshell created by "|"
124 done
125 ! [ -e .gc_failed ]
128 # Remove any files in reflogs that are older than $cfg_reflogs_lifetime days
129 prune_reflogs() {
130 [ -d reflogs ] || return 0
131 exp="$(( ${cfg_reflogs_lifetime:-1} * 1440 ))"
132 [ $exp -gt 0 ] || exp=1440
133 [ $exp -le 43200 ] || exp=43200
134 find reflogs -maxdepth 1 -type f -mmin "+$exp" -print0 | xargs -0 rm -f
137 # Compact any reflogs that are not today's UTC date unless a .gz version exists
138 compact_reflogs() {
139 [ -d reflogs ] || return 0
140 _td="reflogs/$(TZ=UTC date '+%Y%m%d')"
141 find reflogs -maxdepth 1 -type f -name "[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]" -print |
142 while read -r rname; do
143 [ "$rname" != "$_td" ] || continue
144 ! [ -e "$rname.gz" ] || continue
145 gzip -9 "$rname" </dev/null
146 done
149 # return true if there's more than one objects/pack-<sha>.pack file or
150 # ANY sha-1 files in objects
151 is_dirty() {
152 _packs=$(find objects/pack -type f -name "pack-$octet20.pack" -print | head -n 2 | LC_ALL=C wc -l)
153 if [ $_packs != 1 ] && [ $_packs != 0 ]; then
154 return 0
156 _objs=$(find objects/$octet -type f -name "$octet19" -print 2>/dev/null | head -n 1 | LC_ALL=C wc -l)
157 [ $_objs -ne 0 ]
160 # make sure combine-packs uses the correct Git executable
161 run_combine_packs() {
162 PATH="$var_git_exec_path:$cfg_basedir/bin:$PATH" @basedir@/jobd/combine-packs.sh "$@"
165 # combine the input pack(s) into a new pack (or possibly packs if packSizeLimit set)
166 # input pack names are read from standard input one per line delimited by the first
167 # ':', ' ' or '\n' character on the line (which allows gfi-packs to be read directly)
168 # all arguments, if any, are passed to pack-objects as additional options
169 # returns non-zero on failure AND creates .gc_failed in that case
170 combine_packs() {
171 rm -f .gc_failed
172 find objects/pack -maxdepth 1 -type f -name '*.zap*' -print0 | xargs -0 rm -f
173 run_combine_packs --replace "$@" $packopts --all-progress-implied $quiet --non-empty || {
174 >.gc_failed
175 return 1
177 return 0
180 # if the current directory is_gfi_mirror then repack all packs listed in gfi-packs
181 repack_gfi_packs() {
182 [ -n "$gfi_mirror" ] || return 0
183 [ -d objects/pack ] || { rm -f gfi-packs; return 0; }
184 progress "~ [$proj] redeltifying poor quality git fast-import packs"
185 combine_packs --ignore-missing --no-reuse-delta <gfi-packs
186 rm -f gfi-packs
187 return 0
190 # combine small packs into larger pack(s)
191 # we avoid any keep, bndl or bitmap packs
192 # if the optional argument is non-empty even a single small pack will be redeltad
193 combine_small_packs() {
194 _didprogress=
195 _minsmallpacks=2
196 if [ -n "$1" ] && [ -n "$noreusedeltaopt" ]; then
197 _minsmallpacks=1
199 _lpo="--exclude-no-idx --exclude-keep --exclude-bitmap --exclude-bndl --quiet"
200 _lpo="$_lpo --object-limit $var_redelta_threshold objects/pack"
201 while
202 _cnt="$(list_packs --count $_lpo || :)"
203 test "${_cnt:-0}" -ge $_minsmallpacks
205 [ -n "$_didprogress" ] || {
206 progress "~ [$proj] combining small packs into a single larger pack"
207 _didprogress=1
209 _newp="$(list_packs $_lpo | combine_packs --names $noreusedeltaopt)"
210 _newc="$(echo $(echo "$_newp" | LC_ALL=C wc -w))"
211 # be paranoid and exit the loop if we haven't reduced the number of packs
212 [ $_newc -lt $_cnt ] || break
213 _minsmallpacks=2
214 done
215 return 0
218 # Unfortunately git-svn lacks the ability to store newly fetched revisions as a pack.
219 # However, the fetch code conveniently sets .svnpack just before it runs git-svn fetch
220 # so that it's easy to find all the objects that have been fetched by git-svn and
221 # combine them into a pack. The --no-reuse-delta option is meaningless here since
222 # everything to be packed is a loose object and therefore not a delta so deltification
223 # will always take place.
224 make_svn_pack() {
225 [ -f .svnpack ] && [ -n "$svn_mirror" ] || return 0
226 rm -f .svnpackgc
227 mv -f .svnpack .svnpackgc
228 progress "~ [$proj] combining loose git-svn objects into a pack"
229 _newp="$(find objects/$octet -maxdepth 1 -type f -newer .svnpackgc -name "$octet19" -print 2>/dev/null |
230 LC_ALL=C awk -F / '{print $2 $3}' |
231 run_combine_packs --objects --names $packopts --incremental --all-progress-implied $quiet --non-empty)" || {
232 mv -f .svnpackgc .svnpack
233 >.gc_failed
234 return 1
236 if [ -n "$_newp" ]; then
237 # remove the now-redundant loose objects -- this is always safe
238 # even during a concurrent push because a reprepare_packed_git
239 # will be triggered if an object that should be there is not
240 # found thereby finding it in the new pack instead
241 git prune-packed $quiet
243 rm -f .svnpackgc
246 # HEADSHA="$(pack_is_complete /full/path/to/some.pack /full/path/to/packed-refs "$(cat HEAD)")"
247 pack_is_complete() {
248 # Must have a matching .idx file and a non-empty packed-refs file
249 [ -s "${1%.pack}.idx" ] || return 1
250 [ -s "$2" ] || return 1
251 _headsha=
252 case "$3" in
253 $octet20)
254 _headsha="$3"
256 "ref: refs/"?*|"ref:refs/"?*|"refs/"?*)
257 _headmatch="${3#ref:}"
258 _headmatch="${_headmatch# }"
259 _headmatchpat="$(echo "$_headmatch" | LC_ALL=C sed -e 's/\([.$]\)/\\\1/g')"
260 _headsha="$(LC_ALL=C grep -e "^$octet20 $_headmatchpat\$" < "$2" | \
261 LC_ALL=C cut -d ' ' -f 1)"
262 case "$_headsha" in $octet20) :;; *)
263 return 1
264 esac
267 # bad HEAD
268 return 1
269 esac
270 rm -rf pack_is_complete_test
271 mkdir pack_is_complete_test
272 mkdir pack_is_complete_test/refs
273 mkdir pack_is_complete_test/objects
274 mkdir pack_is_complete_test/objects/pack
275 echo "$_headsha" > pack_is_complete_test/HEAD
276 ln -s "$1" pack_is_complete_test/objects/pack/
277 ln -s "${1%.pack}.idx" pack_is_complete_test/objects/pack/
278 ln -s "$2" pack_is_complete_test/packed-refs
279 _count="$(git --git-dir=pack_is_complete_test rev-list --count --all 2>/dev/null || :)"
280 rm -rf pack_is_complete_test
281 [ -n "$_count" ] || return 1
282 [ "$_count" -gt 0 ] 2>/dev/null || return 1
283 echo "$_headsha"
286 # On return a "$lockf" will have been created that must be removed when gc is done
287 lock_gc() {
288 # be compatibile with gc.pid file from newer Git releases
289 lockf=gc.pid
290 hn="$(hostname)"
291 active=
292 if [ "$(createlock "$lockf")" ]; then
293 # If $lockf is:
294 # 1) less than 12 hours old
295 # 2) contains two fields (pid hostname) NO trailing NL
296 # 3) the hostname is different OR the pid is still alive
297 # then we exit as another active process is holding the lock
298 if [ "$(find "$lockf" -maxdepth 1 -mmin -720 -print 2>/dev/null)" ]; then
299 apid=
300 ahost=
301 read -r apid ahost ajunk < "$lockf" || :
302 if [ "$apid" ] && [ "$ahost" ]; then
303 if [ "$ahost" != "$hn" ] || pidactive "$apid"; then
304 active=1
308 else
309 echo >&2 "[$proj] unable to create gc.pid.lock file"
310 exit 1
312 if [ -n "$active" ]; then
313 rm -f "$lockf.lock"
314 echo >&2 "[$proj] gc already running on machine '$ahost' pid '$apid'"
315 exit 1
317 printf "%s %s" "$$" "$hn" > "$lockf.lock"
318 chmod 0664 "$lockf.lock"
319 mv -f "$lockf.lock" "$lockf"
322 # Remove any crud that's been left behind by interrupted operations
323 # that did not clean up after themselves
324 remove_crud() {
325 # Remove any existing FETCH_HEAD
326 # There can only be a FETCH_HEAD if we've been fetching, not if we've been
327 # receiving pushes (those never create a FETCH_HEAD).
328 # And if we're fetching because we're a mirror, we know we're not fetching right
329 # now since jobd.pl never runs a project's fetch simultaneously with its gc.
330 # Therefore any existing FETCH_HEAD is junk. And it may be many megabytes if
331 # there were a lot of refs.
332 rm -f FETCH_HEAD
334 # Remove any stale pack remnants that are more than an hour old.
335 # Stale pack fragments are defined as any pack-<sha1>.ext where .ext is NOT
336 # .pack AND the corresponding .pack DOES NOT exist. A bunch of stale
337 # pack-<sha1>.idx files without their corresponding .pack files are worthless
338 # and just waste space. Normally there shouldn't be any remnants but actually
339 # this can happen when things are interrupted at just the wrong time.
340 # Note that the objects/pack directory is created by git init and should
341 # always exist.
342 find objects/pack -maxdepth 1 -type f -mmin +60 -name "pack-$octet20.?*" -print | \
343 LC_ALL=C sed -e 's/^objects\/pack\/pack-//; s/\..*$//' | LC_ALL=C sort -u | \
344 while read packsha; do
345 [ ! -e "objects/pack/pack-$packsha.pack" ] || continue
346 rm -f "objects/pack/pack-$packsha".?*
347 done
349 # Remove any stale tmp reflogs files that are more than one hour old.
350 # Since they are created only while the pre-receive hook is running and
351 # all it does is process a bunch of refs passed to it on standard input
352 # it's inconceivable that it would ever take as much as an hour to run.
353 if [ -d reflogs ]; then
354 find reflogs -maxdepth 1 -type f -mmin +60 -name "tmp_*" -print0 | xargs -0 rm -f
357 # Remove any stale pack .keep files that are more than 12 hours old.
358 # We don't do anything to create any permanent pack .keep files, so they must
359 # be remnants from some failed push or something. Removing the .keep will
360 # allow the pack to be properly repacked.
361 find objects/pack -maxdepth 1 -type f -mmin +720 -name "pack-$octet20.keep" -print0 | xargs -0 rm -f
363 # Remove any stale tmp_pack_*, tmp_idx_*, tmp_bitmap_*, packtmp-* or .tmp-*-pack files
364 # that are more than 12 hours old.
365 find objects/pack -maxdepth 1 -type f -mmin +720 \( \
366 -name "tmp_pack_?*" -o -name "tmp_idx_?*" -o -name "tmp_bitmap_?*" -o \
367 -name "packtmp-?*" -o -name ".tmp-?*-pack" \
368 \) -print0 | xargs -0 rm -f
370 # Remove any stale shallow_* files that are more than 12 hours old.
371 # These can be left behind by Git >= 1.8.4.2 and < 2.0.0 when a client
372 # requests a shallow clone.
373 find . -maxdepth 1 -type f -mmin +720 -name "shallow_?*" -print0 | xargs -0 rm -f
375 # Remove any stale *.temp files in the objects area that are more than 12 hours old.
376 # This can be stale sha1.temp, or stale *.pack.temp so we kill all stale *.temp.
377 find objects -type f -mmin +720 -name "*.temp" -print0 | xargs -0 rm -f
379 # Remove any stale *.lock files in the htmlcache area that might have been left
380 # behind after an abnormal exit during an attempt to update a cached file and
381 # are more than 1 hour old.
382 ! [ -d htmlcache ] || find htmlcache -type f -mmin +60 -name "*.lock" -print0 | xargs -0 rm -f
384 # Remove any stale git-svn temp files that are more than 12 hours old.
385 # The git-svn process creates temp files with random 10 character names
386 # in the root of $GIT_DIR. Unfortunately they do not have a recognizable
387 # prefix, so we just have to kill any files with a 10-character name. We
388 # do this only for git-svn mirrors. All characters are chosen from
389 # [A-Za-z0-9_] so we can at least check that and fortunately the only
390 # collision is 'FETCH_HEAD' but that shouldn't matter.
391 # There may also be temp files with a Git_ prefix as well.
392 if [ -n "$svn_mirror" ]; then
393 _randchar='[A-Za-z0-9_]'
394 _randchar2="$_randchar$_randchar"
395 _randchar4="$_randchar2$_randchar2"
396 _randchar10="$_randchar4$_randchar4$_randchar2"
397 find . -maxdepth 1 -type f -mmin +720 -name "$_randchar10" -print0 | xargs -0 rm -f
398 find . -maxdepth 1 -type f -mmin +720 -name "Git_*" -print0 | xargs -0 rm -f
401 # Remove any stale fast_import_crash_<pid> files that are more than 3 days old.
402 if [ -n "$gfi_mirror" ]; then
403 find . -maxdepth 1 -type f -mmin +4320 -name "fast_import_crash_?*" -print0 | xargs -0 rm -f
408 ## Garbage Collection Types
410 ## There are two kinds of possible garbage collection (gc) operations:
412 ## 1. A normal, full gc
413 ## 2. A "mini" gc
415 ## If the full garbage collection interval has expired (or gc has never been
416 ## run), then a normal, full gc will take place. Otherwise, a "mini" gc will
417 ## take place if the file .needsgc exists.
419 ## A "mini" gc is similar to "git gc --auto" in that it may not end up actually
420 ## doing anything unless the right conditions are present so it's not a burden
421 ## to run it often. If the file .needsgc exists, a "mini" gc will occur at
422 ## the next opportunity.
424 ## Note, however, that the .nogc file suppresses ALL gc activity (normal or mini).
427 proj="${1%.git}"
428 shift
429 cd "$cfg_reporoot/$proj.git"
430 [ -d objects/pack ] || { rm -f gfi-packs; mkdir -p objects/pack; }
431 mirror_url="$(get_mirror_url)"
432 svn_mirror=
433 ! is_svn_mirror_url "$mirror_url" || svn_mirror=1
434 gfi_mirror=
435 if [ -f gfi-packs -a -s gfi-packs ] && is_gfi_mirror_url "$mirror_url"; then
436 gfi_mirror=1
439 # If git config --bool --get girocco.redelta is explicitly false then automatic
440 # redelta when there are less than $var_redelta_threshold objects will be suppressed.
441 # On the other hand, if git config --get girocco.redelta is "always" then, on a full
442 # gc only, for the final repack, deltas will always be recomputed.
443 # This can be set on a per-project basis to avoid unusual pathological gc behavior.
444 # Setting this will hurt efficiency of the affected repository.
445 # Note that fast-import packs ALWAYS get new deltas regardless of this setting.
446 noreusedeltaopt="--no-reuse-delta"
447 [ "$(git config --bool --get girocco.redelta 2>/dev/null || :)" != "false" ] || noreusedeltaopt=
448 alwaysredelta=
449 [ "$(git config --get girocco.redelta 2>/dev/null || :)" != "always" ] || alwaysredelta=1
451 trap 'e=$?; rm -f .gc_in_progress; if [ $e != 0 ]; then echo "gc failed dir: $PWD" >&2; fi' EXIT
452 trap 'exit 130' INT
453 trap 'exit 143' TERM
455 # date -R is linux-only, POSIX equivalent is '+%a, %d %b %Y %T %z'
456 datefmt='+%a, %d %b %Y %T %z'
458 isminigc=
459 if check_interval lastgc $cfg_min_gc_interval; then
460 if [ -e .needsgc ]; then
461 isminigc=1
462 else
463 progress "= [$proj] garbage check skip (last at $(config_get lastgc))"
464 exit 0
467 if [ -e .nogc ]; then
468 progress "x [$proj] garbage check disabled"
469 exit 0
472 if [ -n "$isminigc" ]; then
473 # Perform a "mini" gc
474 # Note that .delaygc is ignored here as that's only intended for full gc
475 lock_gc
476 rm -f .allowgc .needsgc
477 remove_crud
478 coalesce_reflogs
479 prune_reflogs
480 compact_reflogs
481 miniactive=
482 if [ -f .svnpack ] && [ -n "$svn_mirror" ]; then
483 miniactive=1
484 progress "+ [$proj] mini garbage check (`date`)"
485 make_svn_pack
487 if [ -z "$cfg_delay_gfi_redelta" ] && [ -n "$gfi_mirror" ]; then
488 # $Girocco::Config::delay_gfi_redelta is false, force redeltification now
489 if [ -z "$miniactive" ]; then
490 miniactive=1
491 progress "+ [$proj] mini garbage check (`date`)"
493 repack_gfi_packs
495 # If there aren't at least 10 non-keep, non-bitmap, non-bndl packs then
496 # don't actually process them yet
497 lpo="--exclude-no-idx --exclude-keep --exclude-bitmap --exclude-bndl --quiet"
498 packcnt="$(list_packs --count $lpo objects/pack || :)"
499 if [ "${packcnt:-0}" -ge 10 ]; then
500 if [ -z "$miniactive" ]; then
501 miniactive=1
502 progress "+ [$proj] mini garbage check (`date`)"
504 if [ -n "$gfi_mirror" ]; then
505 repack_gfi_packs
506 packcnt="$(list_packs --count $lpo objects/pack || :)"
508 # if repack_gfi_packs dropped the pack count to < 10 don't combine
509 if [ "${packcnt:-0}" -ge 10 ]; then
510 combine_small_packs
511 packcnt="$(list_packs --count $lpo objects/pack || :)"
513 # if we still have more than 10 packs trigger a full gc
514 if [ "${packcnt:-0}" -ge 10 ]; then
515 # We shouldn't be in a .delaygc state at this point, but if
516 # we are then nuke it because we really need a full gc now
517 rm -f .delaygc
518 git config --unset gitweb.lastgc
519 rm -f "$lockf"
520 progress "- [$proj] mini garbage check triggering full gc too many packs (`date`)"
521 exit 0
524 rm -f "$lockf"
525 if [ -n "$miniactive" ]; then
526 git update-server-info
527 progress "- [$proj] mini garbage check (`date`)"
528 else
529 progress "= [$proj] mini garbage check nothing but crud removal to do (`date`)"
531 exit 0
534 # Avoid unnecessary garbage collections:
535 # 1. If lastreceive is set and is older than lastgc
536 # -AND-
537 # 2. We are not a fork (! -s alternates) -OR- lastparentgc is older than lastgc
539 # If lastgc is NOT set or lastreceive is NOT set we MUST run gc
540 # If we are a fork and lastparentgc is NOT set we MUST run gc
542 # If the repo is dirty after removing any crud we MUST run gc
544 gcstart="$(date "$datefmt")"
545 skipgc=
546 isfork=
547 [ -s objects/info/alternates ] && isfork=1
548 lastparentgcsecs=
549 [ -n "$isfork" ] && lastparentgcsecs="$(config_get_date_seconds lastparentgc || :)"
550 lastreceivesecs=
551 if lastreceivesecs="$(config_get_date_seconds lastreceive)" && \
552 lastgcsecs="$(config_get_date_seconds lastgc)" && \
553 [ $lastreceivesecs -lt $lastgcsecs ]; then
554 # We've run gc since we last received, so maybe we can skip,
555 # check if not fork or fork and lastparentgc < lastgc
556 if [ -n "$isfork" ]; then
557 if [ -n "$lastparentgcsecs" ] && \
558 [ $lastparentgcsecs -lt $lastgcsecs ]; then
559 # We've run gc since our parent ran gc so we can skip
560 skipgc=1
562 else
563 # We don't have any alternates (we're not a forK) so we can skip
564 skipgc=1
568 # Prevent any other simultaneous gc operations
569 lock_gc
571 # At this point, if .allowgc exists, it's now crud to be removed
572 rm -f .allowgc
574 # Ideally we would do this in post-receive, but that would mean duplicating the
575 # logic so it's available in the chroot jail and that's highly undesirable
576 # Instead, since the first gc will be triggered immediately following the first
577 # push, we do the check here as it's quick and harmless if HEAD is already valid
578 check_and_set_head || :
580 # Always get rid of crud
581 remove_crud
583 # Always perform reflogs maintenance
584 coalesce_reflogs
585 prune_reflogs
586 compact_reflogs
588 # Run 'git svn gc' now for svn mirrors
589 if [ -n "$svn_mirror" ]; then
590 git svn gc || :
593 # Skip the actual gc if .delaygc is set
594 if [ -e .delaygc ]; then
595 progress "x [$proj] garbage check delayed (except for crud removal)"
596 rm -f "$lockf"
597 exit 0
600 # Do not skip gc if the repo is dirty
601 if [ -n "$skipgc" ] && ! is_dirty; then
602 progress "= [$proj] garbage check nothing but crud removal to do (`date`)"
603 config_set lastgc "$gcstart"
604 rm -f "$lockf"
605 exit 0
608 bumptime=
609 if [ -n "$isfork" ] && [ -z "$lastparentgcsecs" ]; then
610 # set lastparentgc and then update gcstart to be at least 1 second later
611 config_set lastparentgc "$gcstart"
612 bumptime=1
614 if [ -z "$lastreceivesecs" ]; then
615 # set lastreceive and then update gcstart to be at least 1 second later
616 config_set lastreceive "$gcstart"
617 bumptime=1
619 if [ -n "$bumptime" ]; then
620 sleep 1
621 gcstart="$(date "$datefmt")"
624 progress "+ [$proj] garbage check (`date`)"
626 newdeltas=
627 [ -z "$alwaysredelta" ] || newdeltas=-f
628 if [ -z "$newdeltas" ] && [ -n "$gfi_mirror" ]; then
629 if [ $(list_packs --exclude-no-idx --count objects/pack) -le \
630 $(list_packs --exclude-no-idx --count --quiet --only gfi-packs) ]; then
631 # Don't bother with repack_gfi_packs since everything's being repacked
632 newdeltas=-f
635 if [ -z "$newdeltas" ] && [ -n "$noreusedeltaopt" ] && \
636 [ $(list_packs --exclude-no-idx --count-objects objects/pack) -le $var_redelta_threshold ]; then
637 # There aren't enough objects to worry about so just redelta to get the best pack
638 newdeltas=-f
640 if [ -z "$newdeltas" ]; then
641 # Since we're not going to recompute deltas overall, we need to do the
642 # "mini" maintenance so that we can get more optimal deltas
643 [ -z "$noreusedeltaopt" ] || make_svn_pack
644 repack_gfi_packs
645 force_single_pack_redelta=
646 [ -n "$gfi_mirror" ] || [ -n "$svn_mirror" ] || force_single_pack_redelta=1
647 [ -z "$noreusedeltaopt" ] || combine_small_packs $force_single_pack_redelta
651 ## Safe Pruning In Forks
653 ## We are about to perform garbage collection. We do NOT use the "git gc"
654 ## command directly as it does not provide enough control over the fine details
655 ## that we require. However, we DO maintain a "gc.pid" file during our garbage
656 ## collection so that a simultaneous "git gc" by an administrator will be
657 ## blocked (and similarly we refuse to start garbage collection if we cannot
658 ## create the "gc.pid" file). When we say "gc" in the below description we are
659 ## referring to our "gc.sh" script, NOT the "git gc" command.
661 ## If the project we are running garbage collection (gc) on has any forks we
662 ## must be careful not to remove any objects that while no longer referenced by
663 ## this project (the parent) are still referenced by one or more forks (the
664 ## children) otherwise the children will become corrupt and we can't abide
665 ## corrupt children.
667 ## One way to accomplish this is to simply hard-link all currently existing
668 ## loose objects and packs in the parent into all the children that refer to the
669 ## parent (via a line in their objects/info/alternates file) before beginning
670 ## the gc operation and then relying on a subsequent gc in the child to clean up
671 ## any excess objects/packs. We used to use this strategy but it's very
672 ## inefficient because:
674 ## 1. The disk space used by the old pack(s)/object(s) will not be reclaimed
675 ## until all children (and their children, if any) run gc by which time
676 ## it's quite possible the topmost parent will have run gc again and
677 ## hard-linked yet another old pack down to its children (not to mention
678 ## loose objects).
680 ## 2. As we are now using the "-A" option with "git repack", any new objects
681 ## in the parent that are not referenced by children will continually get
682 ## exploded out of the hard-linked pack in the children whenever the
683 ## children run gc.
685 ## 3. To avoid suboptimal and/or unnecessarily many packs being hard-linked
686 ## into child forks, we must run the "mini" gc maintenance before we
687 ## perform the hard-linking into the children which provides yet another
688 ## source of inefficiency.
690 ## Since we are using the "-A" option to "git repack" (that was not always the
691 ## case) to guarantee we can access old ref values for long enough to send out
692 ## a meaningful mail.sh notification, we now have another, more efficient,
693 ## option available to prevent corruption of child forks that continue to refer
694 ## to objects that are no longer reachable from any ref in the parent.
696 ## The only things that need be copied (or hard-linked) into the child fork(s)
697 ## are those objects that have become unreachable from any ref in the parent.
698 ## They are the only things that could ever be removed by "git prune" and
699 ## therefore the only things we need to prevent the loss of in order to avoid
700 ## corruption of the child fork(s).
702 ## Therefore we now use the following strategy instead to avoid excessive disk
703 ## use and lots of unnecessary loose objects in child forks:
705 ## 1. Run "git repack -A -d -l" in the parent BEFORE doing anything about
706 ## child forks.
708 ## 2. Hard-link all remaining existing loose objects in the parent into the
709 ## immediate child forks.
711 ## 3. Now run "git prune" in the parent.
713 ## With this new strategy we avoid the need to run any "mini" gc maintenance
714 ## before copying (or hard-linking) anything down to the child forks.
715 ## Furthermore, only when the parent performs a non-fast-forward update will
716 ## anything ever be transferred to the children leaving them unperturbed in the
717 ## vast majority of cases. Finally, even if the parent references objects the
718 ## children do not, those objects will no longer continually end up in the
719 ## children as unreachable loose objects after the children run gc.
722 git pack-refs --all
723 touch .gc_in_progress
724 rm -f .gc_failed bundles/*
725 rm -f objects/pack/pack-*.bndl
726 # We use the -A option with git repack so that unreachable objects can live
727 # on for a time as loose objects. This is particularly helpful if we just
728 # happen to be in the process of sending out a ref update for a ref that was
729 # force updated and the old ref value would have otherwise been removed by
730 # repack because it was now unreachable. Admittedly the window for gc to run
731 # and do that before we manage to send out the ref update is not large, but
732 # it would not be difficult to create such a situation. Unfortunately, when
733 # Git unpacks these unreachable objects it will give them the modification
734 # time of the *.pack file they came out of. This could be very, very old.
735 # If that happens, the subsequent git prune --expire some_time_ago will still
736 # remove the object(s) and our pending ref update will still lose out.
737 # To prevent this from happening and to get the behavior we want, we now
738 # touch the modification time of all pack-<sha>.pack files so that any
739 # loosened objects get a current time. Git does not provide any other
740 # mechanism to do this. We do not want to just touch all loose objects
741 # left after the repack because that would cause objects that were loosened
742 # previously to live on which we definitely do not want.
743 list_packs --exclude-no-idx objects/pack | xargs touch -c 2>/dev/null || :
744 # We wish to keep deltas from our last full pack so if we're not redeltaing
745 # then make sure the .pack associated with the .bitmap has a newer mod time
746 # (If there is no .bitmap then touch the pack with the most objects instead.)
747 if [ -z "$newdeltas" ]; then
748 bmpack="$(list_packs --exclude-no-bitmap --exclude-no-idx --max-matches 1 objects/pack)"
749 [ -n "$bmpack" ] || bmpack="$(list_packs --exclude-no-idx --max-matches 1 --object-limit -1 --include-boundary objects/pack)"
750 if [ -n "$bmpack" ] && [ -f "$bmpack" -a -s "$bmpack" ]; then
751 sleep 1
752 touch -c "$bmpack" 2>/dev/null || :
755 # The git repack command only supports bitmaps if all objects are being packed.
756 # While it is theoretically possible that a project with a non-empty alternates
757 # file ends up packing all objects (because it does not actually use any of the
758 # objects found in the alternates), it's very unlikely. And, in the unlikely
759 # event that did occur, clients would see a message about only using one bitmap
760 # because Git can only use one bitmap at a time and at least one of the
761 # alternates is bound to have a bitmap. Therefore if we see a non-empty
762 # alternates file, we disable writing bitmaps which avoids the warning and any
763 # possibility of a client warning as well.
764 nobm=
765 [ -z "$var_have_git_172" ] || ! [ -s objects/info/alternates ] || \
766 nobm='-c repack.writebitmaps=false -c pack.writebitmaps=false'
767 progress "~ [$proj] running full gc repack${nobm:+ (bitmaps disabled)}"
768 git $nobm repack $packopts -A -d -l $quiet $newdeltas $@
769 [ ! -e .gc_failed ] || exit 1
770 # These, if they exist, are now meaningless and need to be removed
771 rm -f gfi-packs .needsgc .svnpack .svnpackgc
772 allpacks="$(echo objects/pack/pack-$octet20.pack)"
773 curhead="$(cat HEAD)"
774 pkrf=
775 [ ! -e packed-refs ] || pkrf=packed-refs
776 eval "reposizek=$(( $(echo 0 $(du -k $pkrf $allpacks 2>/dev/null | LC_ALL=C awk '{print $1}') | \
777 LC_ALL=C sed -e 's/ / + /g') ))"
778 git update-server-info
779 # The -A option to `git repack` may have caused some loose objects to pop
780 # out of their packs. We must make these objects group writable so that they
781 # can be freshened by other pushers. Technically we need only do this for
782 # push projects but to enable mirror projects to be more easily converted to
783 # push projects, we go ahead and do it for all projects.
784 { find objects/$octet -type f -name "$octet19" -print0 | xargs -0 chmod ug+w || :; } 2>/dev/null
786 if has_forks "$proj"; then
787 progress "~ [$proj] hard-linking loose objects into immediate child forks"
788 # We have to update the lastparentgc time in the child forks even if they do not get any
789 # new "loose objects" because they need to run gc just in case the parent now has some
790 # objects that used to only be in the child so they can be removed from the child.
791 # For example, a "patch" might be developed first in a fork and then later accepted into
792 # the parent in which case the objects making up the patch in the child fork are now
793 # redundant (since they're now in the parent as well) and need to be removed from the
794 # child fork which can only happen if the child fork runs gc.
795 forkdir="$proj"
796 # It is enough to copy objects just one level down and get_repo_list
797 # takes a regular expression (which is automatically prefixed with '^')
798 # so we can easily match forks exactly one level down from this project
799 get_repo_list "$forkdir/[^/]*:" |
800 while read fork; do
801 # Ignore forks that do not exist or are symbolic links
802 [ ! -L "$cfg_reporoot/$fork.git" -a -d "$cfg_reporoot/$fork.git" ] || \
803 continue
804 # Or do not have a non-zero length alternates file
805 [ -s "$cfg_reporoot/$fork.git/objects/info/alternates" ] || \
806 continue
807 # Match objects in parent project
808 for d in objects/$octet; do
809 [ "$d" != "objects/$octet" ] || continue
810 mkdir -p "$cfg_reporoot/$fork.git/$d"
811 find "$d" -maxdepth 1 -type f -name "$octet19" -print0 |
812 xargs -0 "$var_sh_bin" -c 'ln -f "$@" '"'$cfg_reporoot/$fork.git/$d/'" sh || :
813 done
814 # Update the fork's lastparentgc date (must be current, not $gcstart)
815 git --git-dir="$cfg_reporoot/$fork.git" config \
816 gitweb.lastparentgc "$(date "$datefmt")"
817 done
820 # The git prune command does not take a -q or --quiet but started outputting
821 # 'Checking connectivity' progress messages in v1.7.9. However, we can
822 # suppress those by piping through cat as it only activates the progress
823 # messages when stderr is a tty. We only expire loose objects older than one
824 # day just in case there's some pending action (such as sending out a ref
825 # update) in progress that might want to examine them. This may leave us with
826 # loose objects. That's okay because at the next gc interval, we will always
827 # run gc if we see any loose objects regardless of whether or not we've seen
828 # any updates or we've received new linked objects from our parent. Note that
829 # in order to keep loose objects that just recently became unreferenced but
830 # have a very old modification date around we rely on some help from both the
831 # update.sh and hooks/pre-receive scripts. Furthermore, since Git v2.2.0
832 # (d3038d22 prune: keep objects reachable from recent objects) an unreachable
833 # object that would otherwise be pruned (because it's too old) will be kept
834 # alive by an unreachable object that refers to it that's not old enough to
835 # be pruned yet.
836 prunecmd='git prune --expire 1_day_ago'
837 [ -n "$show_progress" ] || \
838 prunecmd="{ $prunecmd 2>&1 || touch .gc_failed; } | cat"
839 progress "~ [$proj] pruning expired unreachable loose objects"
840 eval "$prunecmd"
841 [ ! -e .gc_failed ] || exit 1
843 # darcs:// mirrors have a xxx.log file that will grow endlessly
844 # if this is a mirror and the file exists, shorten it to 10000 lines
845 # also take this opportunity to optimize the darcs repo
846 if [ ! -e .nofetch ] && [ -n "$cfg_mirror" ]; then
847 url="$(config_get baseurl || :)"
848 case "$url" in darcs://*)
849 if [ -n "$cfg_mirror_darcs" ]; then
850 url="${url%/}"
851 basedarcs="$(basename "${url#darcs:/}")"
852 if [ -f "$basedarcs.log" ]; then
853 tail -n 10000 "$basedarcs.log" > "$basedarcs.log.$$"
854 mv -f "$basedarcs.log.$$" "$basedarcs.log"
856 if [ -d "$basedarcs.darcs" ]; then
858 cd "$basedarcs.darcs"
859 # without show_progress suppress non-error output
860 [ -n "$show_progress" ] || exec >/dev/null
861 # Note that this does not optimize _darcs/inventories/ :(
862 darcs optimize || :
866 esac
869 # Create a matching .bndl header file for the all-in-one pack we just created
870 # but only if we're not a fork (otherwise the bundle would not be complete)
871 # and we are running at least Git version 1.7.2 (pack_is_complete always fails otherwise)
872 if [ ! -s objects/info/alternates ] && [ -n "$var_have_git_172" ]; then
873 # There should only be one pack in $allpacks but if there was a
874 # simultaneous push...
875 # The one we just created will have a .idx and will NOT have a .keep
876 progress "~ [$proj] creating downloadble bundle header"
877 pkfound=
878 pkhead=
879 for pk in $allpacks; do
880 [ -s "$pk" ] || continue
881 pkbase="${pk%.pack}"
882 [ -s "$pkbase.idx" ] || continue
883 [ ! -e "$pkbase.keep" ] || continue
884 if pkhead="$(pack_is_complete "$PWD/$pk" "$PWD/packed-refs" "$curhead")"; then
885 pkfound="$pkbase"
886 break;
888 done
889 if [ -n "$pkfound" -a -n "$pkhead" ]; then
891 echo "# v2 git bundle"
892 LC_ALL=C sed -ne "/^$octet20 refs\/[^ $tab]*\$/ p" < packed-refs
893 echo "$pkhead HEAD"
894 echo ""
895 } > "$pkbase.bndl"
896 bndletag="$("$cfg_basedir/bin/rangecgi" --etag -m 1 "$pkbase.bndl" "$pkbase.pack" || :)"
897 bndlsha="$(printf '%s' "$bndletag" | git hash-object --stdin || :)"
898 if [ -n "$bndletag" ]; then
899 case "$bndlsha" in $octet20)
900 bndlshatrailer="${bndlsha#????????}"
901 bndlshaprefix="${bndlsha%$bndlshatrailer}"
902 bndlname="$(TZ=UTC date +%Y%m%d_%H%M%S)-${bndlshaprefix:-0}"
903 [ -d bundles ] || mkdir bundles
904 echo "${pkbase#objects/pack/}.bndl" > "bundles/$bndlname"
905 echo "${pkbase#objects/pack/}.pack" >> "bundles/$bndlname"
906 ln -s -f -n "$bndlname" bundles/latest
907 esac
912 # Record the size of this repo as the sum of its *.pack sizes as 1024-byte blocks
913 config_set_raw girocco.reposizek "${reposizek:-0}"
915 # We use $gcstart here to avoid a race where a push occurs during the gc itself
916 # and the next future gc could be incorrectly skipped if we used the current
917 # timestamp here instead
918 config_set lastgc "$gcstart"
919 rm -f "$lockf"
921 progress "- [$proj] garbage check (`date`)"