diff options
author | Mike Frysinger <vapier@google.com> | 2020-02-20 15:13:51 -0500 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-21 05:20:58 +0000 |
commit | 8c268c0e7bd18d1e2f4f526cd406c569312a5f23 (patch) | |
tree | e10fd5adc97ec9321c6a351134a1d031e1ac0adf | |
parent | d9254599f9bb47632313ecb90c5f281ceca5da3a (diff) | |
download | git-repo-8c268c0e7bd18d1e2f4f526cd406c569312a5f23.tar.gz |
release: import some helper scripts for managing official releases
Change-Id: I9abebfef5ad19f6a637bc3b12effea9dd6d0269d
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/256234
Tested-by: Mike Frysinger <vapier@google.com>
Reviewed-by: David Pursehouse <dpursehouse@collab.net>
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | release/README.md | 2 | ||||
-rwxr-xr-x | release/sign-launcher.py | 114 | ||||
-rwxr-xr-x | release/sign-tag.py | 135 | ||||
-rw-r--r-- | release/util.py | 73 |
5 files changed, 325 insertions, 0 deletions
@@ -1,3 +1,4 @@ | |||
1 | *.asc | ||
1 | *.egg-info/ | 2 | *.egg-info/ |
2 | *.log | 3 | *.log |
3 | *.pyc | 4 | *.pyc |
diff --git a/release/README.md b/release/README.md new file mode 100644 index 00000000..3b81d532 --- /dev/null +++ b/release/README.md | |||
@@ -0,0 +1,2 @@ | |||
1 | These are helper tools for managing official releases. | ||
2 | See the [release process](../docs/release-process.md) document for more details. | ||
diff --git a/release/sign-launcher.py b/release/sign-launcher.py new file mode 100755 index 00000000..ba5e490c --- /dev/null +++ b/release/sign-launcher.py | |||
@@ -0,0 +1,114 @@ | |||
1 | #!/usr/bin/env python3 | ||
2 | # Copyright (C) 2020 The Android Open Source Project | ||
3 | # | ||
4 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
5 | # you may not use this file except in compliance with the License. | ||
6 | # You may obtain a copy of the License at | ||
7 | # | ||
8 | # http://www.apache.org/licenses/LICENSE-2.0 | ||
9 | # | ||
10 | # Unless required by applicable law or agreed to in writing, software | ||
11 | # distributed under the License is distributed on an "AS IS" BASIS, | ||
12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
13 | # See the License for the specific language governing permissions and | ||
14 | # limitations under the License. | ||
15 | |||
16 | """Helper tool for signing repo launcher scripts correctly. | ||
17 | |||
18 | This is intended to be run only by the official Repo release managers. | ||
19 | """ | ||
20 | |||
21 | import argparse | ||
22 | import os | ||
23 | import subprocess | ||
24 | import sys | ||
25 | |||
26 | import util | ||
27 | |||
28 | |||
29 | def sign(opts): | ||
30 | """Sign the launcher!""" | ||
31 | output = '' | ||
32 | for key in opts.keys: | ||
33 | # We use ! at the end of the key so that gpg uses this specific key. | ||
34 | # Otherwise it uses the key as a lookup into the overall key and uses the | ||
35 | # default signing key. i.e. It will see that KEYID_RSA is a subkey of | ||
36 | # another key, and use the primary key to sign instead of the subkey. | ||
37 | cmd = ['gpg', '--homedir', opts.gpgdir, '-u', f'{key}!', '--batch', '--yes', | ||
38 | '--armor', '--detach-sign', '--output', '-', opts.launcher] | ||
39 | ret = util.run(opts, cmd, encoding='utf-8', stdout=subprocess.PIPE) | ||
40 | output += ret.stdout | ||
41 | |||
42 | # Save the combined signatures into one file. | ||
43 | with open(f'{opts.launcher}.asc', 'w', encoding='utf-8') as fp: | ||
44 | fp.write(output) | ||
45 | |||
46 | |||
47 | def check(opts): | ||
48 | """Check the signature.""" | ||
49 | util.run(opts, ['gpg', '--verify', f'{opts.launcher}.asc']) | ||
50 | |||
51 | |||
52 | def postmsg(opts): | ||
53 | """Helpful info to show at the end for release manager.""" | ||
54 | print(f""" | ||
55 | Repo launcher bucket: | ||
56 | gs://git-repo-downloads/ | ||
57 | |||
58 | To upload this launcher directly: | ||
59 | gsutil cp -a public-read {opts.launcher} {opts.launcher}.asc gs://git-repo-downloads/ | ||
60 | |||
61 | NB: You probably want to upload it with a specific version first, e.g.: | ||
62 | gsutil cp -a public-read {opts.launcher} gs://git-repo-downloads/repo-3.0 | ||
63 | gsutil cp -a public-read {opts.launcher}.asc gs://git-repo-downloads/repo-3.0.asc | ||
64 | """) | ||
65 | |||
66 | |||
67 | def get_parser(): | ||
68 | """Get a CLI parser.""" | ||
69 | parser = argparse.ArgumentParser(description=__doc__) | ||
70 | parser.add_argument('-n', '--dry-run', | ||
71 | dest='dryrun', action='store_true', | ||
72 | help='show everything that would be done') | ||
73 | parser.add_argument('--gpgdir', | ||
74 | default=os.path.join(util.HOMEDIR, '.gnupg', 'repo'), | ||
75 | help='path to dedicated gpg dir with release keys ' | ||
76 | '(default: ~/.gnupg/repo/)') | ||
77 | parser.add_argument('--keyid', dest='keys', default=[], action='append', | ||
78 | help='alternative signing keys to use') | ||
79 | parser.add_argument('launcher', | ||
80 | default=os.path.join(util.TOPDIR, 'repo'), nargs='?', | ||
81 | help='the launcher script to sign') | ||
82 | return parser | ||
83 | |||
84 | |||
85 | def main(argv): | ||
86 | """The main func!""" | ||
87 | parser = get_parser() | ||
88 | opts = parser.parse_args(argv) | ||
89 | |||
90 | if not os.path.exists(opts.gpgdir): | ||
91 | parser.error(f'--gpgdir does not exist: {opts.gpgdir}') | ||
92 | if not os.path.exists(opts.launcher): | ||
93 | parser.error(f'launcher does not exist: {opts.launcher}') | ||
94 | |||
95 | opts.launcher = os.path.relpath(opts.launcher) | ||
96 | print(f'Signing "{opts.launcher}" launcher script and saving to ' | ||
97 | f'"{opts.launcher}.asc"') | ||
98 | |||
99 | if opts.keys: | ||
100 | print(f'Using custom keys to sign: {" ".join(opts.keys)}') | ||
101 | else: | ||
102 | print('Using official Repo release keys to sign') | ||
103 | opts.keys = [util.KEYID_DSA, util.KEYID_RSA, util.KEYID_ECC] | ||
104 | util.import_release_key(opts) | ||
105 | |||
106 | sign(opts) | ||
107 | check(opts) | ||
108 | postmsg(opts) | ||
109 | |||
110 | return 0 | ||
111 | |||
112 | |||
113 | if __name__ == '__main__': | ||
114 | sys.exit(main(sys.argv[1:])) | ||
diff --git a/release/sign-tag.py b/release/sign-tag.py new file mode 100755 index 00000000..7b4b4cab --- /dev/null +++ b/release/sign-tag.py | |||
@@ -0,0 +1,135 @@ | |||
1 | #!/usr/bin/env python3 | ||
2 | # Copyright (C) 2020 The Android Open Source Project | ||
3 | # | ||
4 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
5 | # you may not use this file except in compliance with the License. | ||
6 | # You may obtain a copy of the License at | ||
7 | # | ||
8 | # http://www.apache.org/licenses/LICENSE-2.0 | ||
9 | # | ||
10 | # Unless required by applicable law or agreed to in writing, software | ||
11 | # distributed under the License is distributed on an "AS IS" BASIS, | ||
12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
13 | # See the License for the specific language governing permissions and | ||
14 | # limitations under the License. | ||
15 | |||
16 | """Helper tool for signing repo release tags correctly. | ||
17 | |||
18 | This is intended to be run only by the official Repo release managers. | ||
19 | """ | ||
20 | |||
21 | import argparse | ||
22 | import os | ||
23 | import re | ||
24 | import subprocess | ||
25 | import sys | ||
26 | |||
27 | import util | ||
28 | |||
29 | |||
30 | # We currently sign with the old DSA key as it's been around the longest. | ||
31 | # We should transition to RSA by Jun 2020, and ECC by Jun 2021. | ||
32 | KEYID = util.KEYID_DSA | ||
33 | |||
34 | # Regular expression to validate tag names. | ||
35 | RE_VALID_TAG = r'^v([0-9]+[.])+[0-9]+$' | ||
36 | |||
37 | |||
38 | def sign(opts): | ||
39 | """Tag the commit & sign it!""" | ||
40 | # We use ! at the end of the key so that gpg uses this specific key. | ||
41 | # Otherwise it uses the key as a lookup into the overall key and uses the | ||
42 | # default signing key. i.e. It will see that KEYID_RSA is a subkey of | ||
43 | # another key, and use the primary key to sign instead of the subkey. | ||
44 | cmd = ['git', 'tag', '-s', opts.tag, '-u', f'{opts.key}!', | ||
45 | '-m', f'repo {opts.tag}', opts.commit] | ||
46 | |||
47 | key = 'GNUPGHOME' | ||
48 | print('+', f'export {key}="{opts.gpgdir}"') | ||
49 | oldvalue = os.getenv(key) | ||
50 | os.putenv(key, opts.gpgdir) | ||
51 | util.run(opts, cmd) | ||
52 | if oldvalue is None: | ||
53 | os.unsetenv(key) | ||
54 | else: | ||
55 | os.putenv(key, oldvalue) | ||
56 | |||
57 | |||
58 | def check(opts): | ||
59 | """Check the signature.""" | ||
60 | util.run(opts, ['git', 'tag', '--verify', opts.tag]) | ||
61 | |||
62 | |||
63 | def postmsg(opts): | ||
64 | """Helpful info to show at the end for release manager.""" | ||
65 | cmd = ['git', 'rev-parse', 'remotes/origin/stable'] | ||
66 | ret = util.run(opts, cmd, encoding='utf-8', stdout=subprocess.PIPE) | ||
67 | current_release = ret.stdout.strip() | ||
68 | |||
69 | cmd = ['git', 'log', '--format=%h (%aN) %s', '--no-merges', | ||
70 | f'remotes/origin/stable..{opts.tag}'] | ||
71 | ret = util.run(opts, cmd, encoding='utf-8', stdout=subprocess.PIPE) | ||
72 | shortlog = ret.stdout.strip() | ||
73 | |||
74 | print(f""" | ||
75 | Here's the short log since the last release. | ||
76 | {shortlog} | ||
77 | |||
78 | To push release to the public: | ||
79 | git push origin {opts.commit}:stable {opts.tag} -n | ||
80 | NB: People will start upgrading to this version immediately. | ||
81 | |||
82 | To roll back a release: | ||
83 | git push origin --force {current_release}:stable -n | ||
84 | """) | ||
85 | |||
86 | |||
87 | def get_parser(): | ||
88 | """Get a CLI parser.""" | ||
89 | parser = argparse.ArgumentParser(description=__doc__) | ||
90 | parser.add_argument('-n', '--dry-run', | ||
91 | dest='dryrun', action='store_true', | ||
92 | help='show everything that would be done') | ||
93 | parser.add_argument('--gpgdir', | ||
94 | default=os.path.join(util.HOMEDIR, '.gnupg', 'repo'), | ||
95 | help='path to dedicated gpg dir with release keys ' | ||
96 | '(default: ~/.gnupg/repo/)') | ||
97 | parser.add_argument('-f', '--force', action='store_true', | ||
98 | help='force signing of any tag') | ||
99 | parser.add_argument('--keyid', dest='key', | ||
100 | help='alternative signing key to use') | ||
101 | parser.add_argument('tag', | ||
102 | help='the tag to create (e.g. "v2.0")') | ||
103 | parser.add_argument('commit', default='HEAD', nargs='?', | ||
104 | help='the commit to tag') | ||
105 | return parser | ||
106 | |||
107 | |||
108 | def main(argv): | ||
109 | """The main func!""" | ||
110 | parser = get_parser() | ||
111 | opts = parser.parse_args(argv) | ||
112 | |||
113 | if not os.path.exists(opts.gpgdir): | ||
114 | parser.error(f'--gpgdir does not exist: {opts.gpgdir}') | ||
115 | |||
116 | if not opts.force and not re.match(RE_VALID_TAG, opts.tag): | ||
117 | parser.error(f'tag "{opts.tag}" does not match regex "{RE_VALID_TAG}"; ' | ||
118 | 'use --force to sign anyways') | ||
119 | |||
120 | if opts.key: | ||
121 | print(f'Using custom key to sign: {opts.key}') | ||
122 | else: | ||
123 | print('Using official Repo release key to sign') | ||
124 | opts.key = KEYID | ||
125 | util.import_release_key(opts) | ||
126 | |||
127 | sign(opts) | ||
128 | check(opts) | ||
129 | postmsg(opts) | ||
130 | |||
131 | return 0 | ||
132 | |||
133 | |||
134 | if __name__ == '__main__': | ||
135 | sys.exit(main(sys.argv[1:])) | ||
diff --git a/release/util.py b/release/util.py new file mode 100644 index 00000000..9d0eb1dc --- /dev/null +++ b/release/util.py | |||
@@ -0,0 +1,73 @@ | |||
1 | # Copyright (C) 2020 The Android Open Source Project | ||
2 | # | ||
3 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
4 | # you may not use this file except in compliance with the License. | ||
5 | # You may obtain a copy of the License at | ||
6 | # | ||
7 | # http://www.apache.org/licenses/LICENSE-2.0 | ||
8 | # | ||
9 | # Unless required by applicable law or agreed to in writing, software | ||
10 | # distributed under the License is distributed on an "AS IS" BASIS, | ||
11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
12 | # See the License for the specific language governing permissions and | ||
13 | # limitations under the License. | ||
14 | |||
15 | """Random utility code for release tools.""" | ||
16 | |||
17 | import os | ||
18 | import re | ||
19 | import subprocess | ||
20 | import sys | ||
21 | |||
22 | |||
23 | assert sys.version_info >= (3, 6), 'This module requires Python 3.6+' | ||
24 | |||
25 | |||
26 | TOPDIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | ||
27 | HOMEDIR = os.path.expanduser('~') | ||
28 | |||
29 | |||
30 | # These are the release keys we sign with. | ||
31 | KEYID_DSA = '8BB9AD793E8E6153AF0F9A4416530D5E920F5C65' | ||
32 | KEYID_RSA = 'A34A13BE8E76BFF46A0C022DA2E75A824AAB9624' | ||
33 | KEYID_ECC = 'E1F9040D7A3F6DAFAC897CD3D3B95DA243E48A39' | ||
34 | |||
35 | |||
36 | def cmdstr(cmd): | ||
37 | """Get a nicely quoted shell command.""" | ||
38 | ret = [] | ||
39 | for arg in cmd: | ||
40 | if not re.match(r'^[a-zA-Z0-9/_.=-]+$', arg): | ||
41 | arg = f'"{arg}"' | ||
42 | ret.append(arg) | ||
43 | return ' '.join(ret) | ||
44 | |||
45 | |||
46 | def run(opts, cmd, check=True, **kwargs): | ||
47 | """Helper around subprocess.run to include logging.""" | ||
48 | print('+', cmdstr(cmd)) | ||
49 | if opts.dryrun: | ||
50 | cmd = ['true', '--'] + cmd | ||
51 | try: | ||
52 | return subprocess.run(cmd, check=check, **kwargs) | ||
53 | except subprocess.CalledProcessError as e: | ||
54 | print(f'aborting: {e}', file=sys.stderr) | ||
55 | sys.exit(1) | ||
56 | |||
57 | |||
58 | def import_release_key(opts): | ||
59 | """Import the public key of the official release repo signing key.""" | ||
60 | # Extract the key from our repo launcher. | ||
61 | launcher = getattr(opts, 'launcher', os.path.join(TOPDIR, 'repo')) | ||
62 | print(f'Importing keys from "{launcher}" launcher script') | ||
63 | with open(launcher, encoding='utf-8') as fp: | ||
64 | data = fp.read() | ||
65 | |||
66 | keys = re.findall( | ||
67 | r'\n-----BEGIN PGP PUBLIC KEY BLOCK-----\n[^-]*' | ||
68 | r'\n-----END PGP PUBLIC KEY BLOCK-----\n', data, flags=re.M) | ||
69 | run(opts, ['gpg', '--import'], input='\n'.join(keys).encode('utf-8')) | ||
70 | |||
71 | print('Marking keys as fully trusted') | ||
72 | run(opts, ['gpg', '--import-ownertrust'], | ||
73 | input=f'{KEYID_DSA}:6:\n'.encode('utf-8')) | ||