-
Notifications
You must be signed in to change notification settings - Fork 18
/
safe_git.sh
executable file
·491 lines (440 loc) · 16.3 KB
/
safe_git.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
#!/bin/sh
# This script lets you run various high-level git operations in a
# "safe" way. For instance, destructive_checkout() does
# `git reset --hard` + `git clean`, in both the main repo and
# all submodules. This is a very "safe" reset! Similarly for
# other operations, which do pull, push, merge, and clone, all
# in a way that's super-safe (though not super-speedy).
#
# This script also automatically uses "alternates":
# http://dustin.sallings.org/2008/12/30/git-alternates.html
# https://mirrors.edge.kernel.org/pub/software/scm/git/docs/gitrepository-layout.html
# to save space by using the same 'objects' dir for all our webapp
# workspaces.
#
# USAGE: safe_git.sh <command> <args>, where <command> is one
# of the function names defined below. While we don't enforce
# this, you should not use a command that starts with an
# underscore; those are private to this file.
set -ex
: ${WORKSPACE_ROOT:=.}
# Make this path absolute, so clients can chdir with impunity.
WORKSPACE_ROOT=`cd "$WORKSPACE_ROOT" && pwd`
# Where the shared git objects (used by the "alternates" file) live.
: ${REPOS_ROOT:=/var/lib/jenkins/repositories}
# Default Slack channel to use for alerting.
: ${SLACK_CHANNEL:=#bot-testing}
# By default, do not send to a Slack thread; can be set to a slack thread
# timestamp if we want to reply.
: ${SLACK_THREAD:=}
# Alias needed for OS X.
type timeout >/dev/null 2>&1 || timeout() { gtimeout "$@"; }
# Sanity check that we're in the right place, the working directory
# above the website source directory. This is hard to do in general
# -- the make-check-worker workspace, in particular, doesn't look like
# any of the others -- so we try to catch the most common error, that
# we're inside some git repo or another.
(
cd "$WORKSPACE_ROOT"
if git rev-parse 2>/dev/null; then
echo "$WORKSPACE_ROOT is a git repo, not the workspace dir"
exit 1
fi
) || exit 1
# Send an alert to Slack and the logs. You must have secrets decrypted.
# The alertlib subrepo in webapp must be checked out for this to work.
# $1: severity level
# $2+: message
# If $DEPLOYER_USERNAME is set, then that is prepended to the alert message.
_alert() {
severity="$1"
shift
if echo "$@" | grep -q '<[^ ].*>'; then # a hack, but a pretty good one
html=--html
else
html=
fi
if [ -n "$DEPLOYER_USERNAME" ]; then
msg="$DEPLOYER_USERNAME: $@"
else
msg="$@"
fi
if [ -n "$SLACK_THREAD" ]; then
thread_flag="--slack-thread=$SLACK_THREAD"
else
thread_flag=
fi
echo "$msg" \
| "$WORKSPACE_ROOT"/jenkins-jobs/alertlib/alert.py \
--severity="$severity" $html \
--slack "$SLACK_CHANNEL" $thread_flag --logs
}
# Call this from within the repo that you want to do the fetching.
_fetch() {
timeout 120m git fetch --tags --prune --prune-tags --force --progress origin
}
# Like fetch, but call from the workspace root.
# $1: the repo directory
simple_fetch() {
( cd "$1" && _fetch )
}
# Clean out all branches but master/main (and the current branch).
# This useful because sometimes branches can become dangling (due to
# force-pushes) and that will break git-fetch. In situations where
# you don't care about existing branches, this is a way to fix that.
# Call from the workspace-root.
# $1: the repo directory
clean_branches() {
(
cd "$1"
git branch \
| grep -v -e '\*' -e '^ *master *$' -e '^ *main *$' \
| xargs -r --verbose git branch -D
)
}
# $1: the branch we're in. We assume this branch also exists on the remote.
_rebase() {
timeout 10m git rebase "origin/$1" || {
timeout 10m git rebase --abort
exit 1
}
}
# $1: the commit-ish to check out to.
# NOTE: this does a bunch of 'git reset --hard's and equivalent.
# Do not call this if you have stuff you want to commit.
_destructive_checkout() {
if ! timeout 10m git checkout -f "$1" -- ; then
_alert error "'$1' is not a valid git revision"
exit 1
fi
timeout 2m git clean -ffd
# When we are cleaning out a submodule, *and* that submodule
# disappeared as part of this `git checkout -f`, *and* that
# submodule had a .gitignored file in it (such as a .pyc file)
# then the clean above won't totally delete this submodule
# because it will leave around the .pyc file. BUT it will
# delete the .gitignore, so a subsequent git clean -ffd will
# delete it. We always just clean twice to be safe.
# TODO(csilvers): is it faster to check when we need to the
# second clean?
# TODO(csilvers): this scheme doesn't work for files excluded
# via a global .gitignore, rather than a local one. Come up
# with a plan for that as well.
timeout 1m git clean -ffd
# No need to init, or resync, or recurse here: we just want to
# make sure that when we visit changed subrepos, they're at the
# right version. (We handle the recursion ourselves below.)
# However, the first time this is called it might need to check
# out all the submodules, so we give it a bit of time.
timeout 10m git submodule update -f
# Now we need to clean up subrepos. Most subrepos are usually ok,
# so I use `git status` to only clean up the ones that need it. I
# use `status -z` so git doesn't try to shell-escape for us.
timeout 10m git status --porcelain -z | tr '\0' '\012' | cut -b4- \
| while read f; do
if [ -d "$f" ]; then
( cd "$f" && _destructive_checkout HEAD )
fi
done
}
# $* (optional): submodules to update. If left out, update all submodules.
# If the string 'no_submodules', update no submodules. Can be a
# directory, in which case we update all submodules under that dir.
_update_submodules() {
if [ "$*" = "no_submodules" ]; then
return
fi
# If we ourselves are a submodule, we don't have any submodules to update.
if git rev-parse --git-dir | fgrep -q .git/modules; then
return
fi
timeout 10m git submodule sync --recursive
timeout 60m git submodule update --init --recursive -- "$@"
}
# Clone the given repo if it doesn't already exist.
# This is just like git clone, except we set up "alternates" to point
# to a central repo.
# $1: repo to clone (a la sync_to)
# $2: directory into which to clone it
# $2: commit-ish to check out at. Note that we don't do submodules
# or the like; that's up to you.
clone() {
repo="$1"
shift
repo_workspace="$1"
shift
commit="$1"
shift
(
if ! [ -d "$repo_workspace" ]; then
# The git objects/etc live under REPOS_ROOT (all workspaces
# share the same objects).
repo_dir="$REPOS_ROOT/`basename "$repo"`"
# Clone or update into repo-dir, the canonical home.
if [ -d "$repo_dir" ]; then
clean_branches "$repo_dir"
( cd "$repo_dir" && _fetch )
else
timeout 60m git clone "$repo" "$repo_dir"
fi
# Now clone locally as well.
# TODO(csilvers): figure out how to use `git clone -s` but still
# have our version point to the correct remote.
timeout 60m git clone "$repo" "$repo_workspace"
cd "$repo_workspace"
# This is the magic that makes all our repos share an "objects" dir.
echo "$repo_dir/.git/objects" > .git/objects/info/alternates
# Force our new repo to share the objects too.
timeout 60m git gc
timeout 10m git checkout -f "$commit"
fi
)
}
# checks out the given commit-ish, fetching (or cloning) first.
# The repo is always checked out under $WORKSPACE_ROOT and there
# is no way to specially set the directory name.
# $1: repo to clone
# $2: commit-ish to check out at. If necessary, does a pull from
# origin first.
# $3+ (optional): submodules to update to that commit as well. If
# left out, update all submodules. If the string 'no_submodules',
# update no submodules.
sync_to() {
repo="$1"
shift
commit="$1"
shift
(
repo_workspace="$WORKSPACE_ROOT/`basename "$repo"`"
if [ -d "$repo_workspace" ]; then
clean_branches "$repo_workspace" # avoids dangling-ref problems
cd "$repo_workspace"
_fetch
_destructive_checkout "$commit"
else
clone "$repo" "$repo_workspace" "$commit"
cd "$repo_workspace"
fi
# Merge from origin if need be.
if timeout 10m git ls-remote --exit-code . origin/"$commit"; then
_rebase "$commit"
fi
_update_submodules "$@"
)
}
# Like sync_to, but if the commit-ish exists on origin -- e.g.
# it's a branch that's been pushed to github -- sync to origin/commit
# and set commit to be that. This is useful when we only care about
# what exists on github, because no local changes are expected.
# $1: repo to clone
# $2: commit-ish to check out at. If origin/commit-ish exists,
# sync to that instead of commit-ish. (This is usually true,
# especially when commit-ish is a branch name.)
# $3+ (optional): submodules to update to that commit as well. If
# left out, update all submodules. If the string 'no_submodules',
# update no submodules.
sync_to_origin() {
repo="$1"
shift
commit="$1"
shift
repo_workspace="$WORKSPACE_ROOT/`basename "$repo"`"
if timeout 10m \
git ls-remote --exit-code "$repo_workspace" origin/"$commit"; then
orig_commit="$commit" # sync_to overwrites '$commit', ugh
sync_to "$repo" "origin/$commit" "$@"
# Make it so our local branch matches what's on origin
(
cd "$repo_workspace"
git branch -f "$orig_commit" origin/"$orig_commit"
git checkout "$orig_commit"
)
else
sync_to "$repo" "$commit" "$@"
fi
}
# $1: directory to run the pull in (can be in a sub-repo)
# $2: branch to pull
# $3+ (optional): submodules to pull as well. If left out, update all
# submodules. If the string 'no_submodules', update no submodules.
# NOTE: this does a git reset, and always changes the branch to master!
# It also always inits and updates listed subrepos.
pull_in_branch() {
(
cd "$1"
shift
branch="$1"
shift
_destructive_checkout "$branch"
_fetch
_rebase "$branch"
_update_submodules "$@"
)
}
# Does a pull after switching to the 'master' branch.
# $1: directory to run the pull in (can be in a sub-repo)
pull() {
dir="$1"
shift
pull_in_branch "$dir" "master" "$@"
}
# $1: directory to run the push in (can be in a sub-repo)
push() {
(
cd "$1"
branch=`git rev-parse --symbolic-full-name HEAD | sed 's,^.*/,,'`
# In case there have been any changes since the script began, we
# do 'pull; push'. On failure, we undo all our work.
_fetch
_rebase "$branch" || {
timeout 10m git reset --hard HEAD^
exit 1
}
_update_submodules
# Ensure we push using SSH to use Jenkins' configured SSH keys.
ssh_origin=`git config --get remote.origin.url | sed 's,^https://github.com/,[email protected]:,'`
timeout 60m git push "$ssh_origin" "$branch" || {
timeout 10m git reset --hard HEAD^
exit 1
}
)
}
# This updates our repo to point to the current master of the given subrepo.
# $1: the directory of the repository
# $2: the directory of the submodule relative to "$1"
update_submodule_pointer_to_master() {
(
cd "$1"
shift
dir="$1"
shift
branch=`git rev-parse --symbolic-full-name HEAD | sed 's,^.*/,,'`
pull_in_branch . "$branch"
( cd "$dir" && timeout 10m git checkout master )
timeout 10m git add "$dir"
if git commit --dry-run | grep -q -e 'no changes added' -e 'nothing to commit' -e 'nothing added'; then
echo "No need to update substate for $dir: no new content created"
else
timeout 10m git commit -m "$dir substate [auto]"
push .
fi
)
}
# $1: the directory to commit in (can be in a sub-repo)
# $2+: arguments to 'git commit'
# If "$1" is a sub-repo, this function *must* be called from within
# the main repo that includes the sub-repo.
# NOTE: you must be sure to `git add` any new files first!
commit_and_push() {
dir="$1"
shift
(
cd "$dir"
if [ -z "`git status --porcelain | head -n 1`" ]; then
echo "No changes, skipping commit"
else
timeout 10m git commit "$@"
fi
)
push "$dir"
}
# $1: the directory of the main repository
# $2: the directory of the submodule relative to "$1"
# $3+: arguments to 'git commit'
commit_and_push_submodule() {
repo_dir=$1
shift
submodule_dir=$1
shift
commit_and_push "$repo_dir/$submodule_dir" "$@"
update_submodule_pointer_to_master "$repo_dir" "$submodule_dir"
}
# Merge one branch into another.
# $1: the directory to run the merge in
# $2: the commit-ish (branch or sha1) into which to merge the other branch.
# If it's a sha1, it must be a superset of "branch" ($3). We check out
# $2 in the working dir $1 in order to do the merge.
# $3: the commit-ish (branch or sha1) to merge into $2.
# $4+ (optional): submodules to update after the merge. If left out, update
# all submodules. If the string 'no_submodules', update no submodules.
# If $2 is not HEAD, then we push it to master
# TODO(benkraft): wrap this whole assembly in failure-handling, so that if
# something unexpected fails, at least it doesn't fail silently.
merge_from_branch() {
dir="$1"
shift
merge_into="$1"
shift
merge_from="$1"
shift
(
cd "$dir"
# If merge-from is a commit-ish, we'll use the version at origin.
if git ls-remote --exit-code . "origin/$merge_from"; then
git fetch origin "+refs/heads/$merge_from:refs/remotes/origin/$merge_from"
merge_from="origin/$merge_from"
fi
# Set our local merge_into to be the same as the origin merge_into. This
# is needed in cases when a previous deploy set the local (jenkins)
# merge_into to commit X, but subsequent commits have moved the remote
# (github) version of the merge_into to commit Y. This also moves us
# from a (potentially) detached-head state to a head-at-branch state.
# Finally, it makes sure the ref exists locally, so we can do
# 'git rev-parse branch' rather than 'git rev-parse origin/branch'
# (though only if we're given a branch rather than a commit as $2).
if [ "$merge_into" != "HEAD" ] && \
git ls-remote --exit-code . "origin/$merge_into"; then
git fetch origin "+refs/heads/$merge_into:refs/remotes/origin/$merge_into"
# The '--' is needed if merge_into is both a branch and
# directory, e.g. 'sat'. '--' says 'treat it as a branch'.
git checkout "$merge_into" --
git reset --hard "origin/$merge_into"
else
if ! git checkout "$merge_into" -- ; then
_alert error "'$merge_into' is not a valid git revision"
exit 1
fi
fi
head_commit="`git rev-parse HEAD`"
merge_from_commit="`git rev-parse "$merge_from"`"
# Sanity check: HEAD should be at the revision we want to deploy from.
if [ "$head_commit" != "`git rev-parse "$merge_into"`" ]; then
_alert error "HEAD unexpectedly at '$head_commit', not '$merge_into'"
exit 1
fi
# If the current commit is a super-set of merge_from, we're done, yay!
base="`git merge-base "$merge_into" "$merge_from_commit"`"
if [ "$base" = "$merge_from_commit" ]; then
echo "$merge_into is a superset of $merge_from, no need to merge"
exit 0
fi
# The merge exits with rc > 0 if there were conflicts
echo "Merging $merge_from into $merge_into"
if ! git merge "$merge_from"; then
git merge --abort
_alert error "Merge conflict: must merge $merge_from into $merge_into manually."
exit 1
fi
# There's a race condition if someone commits to this branch while
# this script is running, so check for that.
if [ "$merge_into" != "HEAD" ]; then
if ! git push origin "$merge_into"; then
git reset --hard "$head_commit"
_alert error "Someone committed to $merge_into while we've been deploying!"
exit 1
fi
fi
_update_submodules "$@"
echo "Done merging $merge_from into $merge_into"
)
}
# Checks out a branch and merges master into it
merge_from_master() {
dir="$1"
shift
git_revision="$1"
shift
merge_from_branch "$dir" "$git_revision" "master" "$@"
}
[ -n "$1" ] || { echo "USAGE: $0 <command> <args>"; exit 1; }
"$@"