]>
Commit | Line | Data |
---|---|---|
1 | import argparse | |
2 | import configparser | |
3 | import filecmp | |
4 | import functools | |
5 | import getpass | |
6 | import hashlib | |
7 | import operator | |
8 | import os | |
9 | import os.path | |
10 | import shlex | |
11 | import shutil | |
12 | import subprocess | |
13 | import sys | |
14 | import tempfile | |
15 | import types | |
16 | import urllib.parse | |
17 | import urllib.request | |
18 | import xml.dom.minidom | |
19 | ||
20 | from typing import ( | |
21 | Dict, | |
22 | Iterable, | |
23 | List, | |
24 | NewType, | |
25 | Tuple, | |
26 | ) | |
27 | ||
28 | Digest16 = NewType('Digest16', str) | |
29 | Digest32 = NewType('Digest32', str) | |
30 | ||
31 | ||
32 | class ChannelTableEntry(types.SimpleNamespace): | |
33 | absolute_url: str | |
34 | digest: Digest16 | |
35 | file: str | |
36 | size: int | |
37 | url: str | |
38 | ||
39 | ||
40 | class Channel(types.SimpleNamespace): | |
41 | alias_of: str | |
42 | channel_html: bytes | |
43 | channel_url: str | |
44 | forwarded_url: str | |
45 | git_ref: str | |
46 | git_repo: str | |
47 | git_revision: str | |
48 | old_git_revision: str | |
49 | release_name: str | |
50 | table: Dict[str, ChannelTableEntry] | |
51 | ||
52 | ||
53 | class VerificationError(Exception): | |
54 | pass | |
55 | ||
56 | ||
57 | class Verification: | |
58 | ||
59 | def __init__(self) -> None: | |
60 | self.line_length = 0 | |
61 | ||
62 | def status(self, s: str) -> None: | |
63 | print(s, end=' ', file=sys.stderr, flush=True) | |
64 | self.line_length += 1 + len(s) # Unicode?? | |
65 | ||
66 | @staticmethod | |
67 | def _color(s: str, c: int) -> str: | |
68 | return '\033[%2dm%s\033[00m' % (c, s) | |
69 | ||
70 | def result(self, r: bool) -> None: | |
71 | message, color = {True: ('OK ', 92), False: ('FAIL', 91)}[r] | |
72 | length = len(message) | |
73 | cols = shutil.get_terminal_size().columns | |
74 | pad = (cols - (self.line_length + length)) % cols | |
75 | print(' ' * pad + self._color(message, color), file=sys.stderr) | |
76 | self.line_length = 0 | |
77 | if not r: | |
78 | raise VerificationError() | |
79 | ||
80 | def check(self, s: str, r: bool) -> None: | |
81 | self.status(s) | |
82 | self.result(r) | |
83 | ||
84 | def ok(self) -> None: | |
85 | self.result(True) | |
86 | ||
87 | ||
88 | def compare(a: str, b: str) -> Tuple[List[str], List[str], List[str]]: | |
89 | ||
90 | def throw(error: OSError) -> None: | |
91 | raise error | |
92 | ||
93 | def join(x: str, y: str) -> str: | |
94 | return y if x == '.' else os.path.join(x, y) | |
95 | ||
96 | def recursive_files(d: str) -> Iterable[str]: | |
97 | all_files: List[str] = [] | |
98 | for path, dirs, files in os.walk(d, onerror=throw): | |
99 | rel = os.path.relpath(path, start=d) | |
100 | all_files.extend(join(rel, f) for f in files) | |
101 | for dir_or_link in dirs: | |
102 | if os.path.islink(join(path, dir_or_link)): | |
103 | all_files.append(join(rel, dir_or_link)) | |
104 | return all_files | |
105 | ||
106 | def exclude_dot_git(files: Iterable[str]) -> Iterable[str]: | |
107 | return (f for f in files if not f.startswith('.git/')) | |
108 | ||
109 | files = functools.reduce( | |
110 | operator.or_, (set( | |
111 | exclude_dot_git( | |
112 | recursive_files(x))) for x in [a, b])) | |
113 | return filecmp.cmpfiles(a, b, files, shallow=False) | |
114 | ||
115 | ||
116 | def fetch(v: Verification, channel: Channel) -> None: | |
117 | v.status('Fetching channel') | |
118 | request = urllib.request.urlopen(channel.channel_url, timeout=10) | |
119 | channel.channel_html = request.read() | |
120 | channel.forwarded_url = request.geturl() | |
121 | v.result(request.status == 200) | |
122 | v.check('Got forwarded', channel.channel_url != channel.forwarded_url) | |
123 | ||
124 | ||
125 | def parse_channel(v: Verification, channel: Channel) -> None: | |
126 | v.status('Parsing channel description as XML') | |
127 | d = xml.dom.minidom.parseString(channel.channel_html) | |
128 | v.ok() | |
129 | ||
130 | v.status('Extracting release name:') | |
131 | title_name = d.getElementsByTagName( | |
132 | 'title')[0].firstChild.nodeValue.split()[2] | |
133 | h1_name = d.getElementsByTagName('h1')[0].firstChild.nodeValue.split()[2] | |
134 | v.status(title_name) | |
135 | v.result(title_name == h1_name) | |
136 | channel.release_name = title_name | |
137 | ||
138 | v.status('Extracting git commit:') | |
139 | git_commit_node = d.getElementsByTagName('tt')[0] | |
140 | channel.git_revision = git_commit_node.firstChild.nodeValue | |
141 | v.status(channel.git_revision) | |
142 | v.ok() | |
143 | v.status('Verifying git commit label') | |
144 | v.result(git_commit_node.previousSibling.nodeValue == 'Git commit ') | |
145 | ||
146 | v.status('Parsing table') | |
147 | channel.table = {} | |
148 | for row in d.getElementsByTagName('tr')[1:]: | |
149 | name = row.childNodes[0].firstChild.firstChild.nodeValue | |
150 | url = row.childNodes[0].firstChild.getAttribute('href') | |
151 | size = int(row.childNodes[1].firstChild.nodeValue) | |
152 | digest = Digest16(row.childNodes[2].firstChild.firstChild.nodeValue) | |
153 | channel.table[name] = ChannelTableEntry( | |
154 | url=url, digest=digest, size=size) | |
155 | v.ok() | |
156 | ||
157 | ||
158 | def digest_string(s: bytes) -> Digest16: | |
159 | return Digest16(hashlib.sha256(s).hexdigest()) | |
160 | ||
161 | ||
162 | def digest_file(filename: str) -> Digest16: | |
163 | hasher = hashlib.sha256() | |
164 | with open(filename, 'rb') as f: | |
165 | # pylint: disable=cell-var-from-loop | |
166 | for block in iter(lambda: f.read(4096), b''): | |
167 | hasher.update(block) | |
168 | return Digest16(hasher.hexdigest()) | |
169 | ||
170 | ||
171 | def to_Digest16(v: Verification, digest32: Digest32) -> Digest16: | |
172 | v.status('Converting digest to base16') | |
173 | process = subprocess.run( | |
174 | ['nix', 'to-base16', '--type', 'sha256', digest32], capture_output=True) | |
175 | v.result(process.returncode == 0) | |
176 | return Digest16(process.stdout.decode().strip()) | |
177 | ||
178 | ||
179 | def to_Digest32(v: Verification, digest16: Digest16) -> Digest32: | |
180 | v.status('Converting digest to base32') | |
181 | process = subprocess.run( | |
182 | ['nix', 'to-base32', '--type', 'sha256', digest16], capture_output=True) | |
183 | v.result(process.returncode == 0) | |
184 | return Digest32(process.stdout.decode().strip()) | |
185 | ||
186 | ||
187 | def fetch_with_nix_prefetch_url( | |
188 | v: Verification, | |
189 | url: str, | |
190 | digest: Digest16) -> str: | |
191 | v.status('Fetching %s' % url) | |
192 | process = subprocess.run( | |
193 | ['nix-prefetch-url', '--print-path', url, digest], capture_output=True) | |
194 | v.result(process.returncode == 0) | |
195 | prefetch_digest, path, empty = process.stdout.decode().split('\n') | |
196 | assert empty == '' | |
197 | v.check("Verifying nix-prefetch-url's digest", | |
198 | to_Digest16(v, Digest32(prefetch_digest)) == digest) | |
199 | v.status("Verifying file digest") | |
200 | file_digest = digest_file(path) | |
201 | v.result(file_digest == digest) | |
202 | return path | |
203 | ||
204 | ||
205 | def fetch_resources(v: Verification, channel: Channel) -> None: | |
206 | for resource in ['git-revision', 'nixexprs.tar.xz']: | |
207 | fields = channel.table[resource] | |
208 | fields.absolute_url = urllib.parse.urljoin( | |
209 | channel.forwarded_url, fields.url) | |
210 | fields.file = fetch_with_nix_prefetch_url( | |
211 | v, fields.absolute_url, fields.digest) | |
212 | v.status('Verifying git commit on main page matches git commit in table') | |
213 | v.result( | |
214 | open( | |
215 | channel.table['git-revision'].file).read(999) == channel.git_revision) | |
216 | ||
217 | ||
218 | def git_cachedir(git_repo: str) -> str: | |
219 | # TODO: Consider using pyxdg to find this path. | |
220 | return os.path.expanduser( | |
221 | '~/.cache/pinch/git/%s' % | |
222 | digest_string( | |
223 | git_repo.encode())) | |
224 | ||
225 | ||
226 | def verify_git_ancestry(v: Verification, channel: Channel) -> None: | |
227 | cachedir = git_cachedir(channel.git_repo) | |
228 | v.status('Verifying rev is an ancestor of ref') | |
229 | process = subprocess.run(['git', | |
230 | '-C', | |
231 | cachedir, | |
232 | 'merge-base', | |
233 | '--is-ancestor', | |
234 | channel.git_revision, | |
235 | channel.git_ref]) | |
236 | v.result(process.returncode == 0) | |
237 | ||
238 | if hasattr(channel, 'old_git_revision'): | |
239 | v.status( | |
240 | 'Verifying rev is an ancestor of previous rev %s' % | |
241 | channel.old_git_revision) | |
242 | process = subprocess.run(['git', | |
243 | '-C', | |
244 | cachedir, | |
245 | 'merge-base', | |
246 | '--is-ancestor', | |
247 | channel.old_git_revision, | |
248 | channel.git_revision]) | |
249 | v.result(process.returncode == 0) | |
250 | ||
251 | ||
252 | def git_fetch(v: Verification, channel: Channel) -> None: | |
253 | # It would be nice if we could share the nix git cache, but as of the time | |
254 | # of writing it is transitioning from gitv2 (deprecated) to gitv3 (not ready | |
255 | # yet), and trying to straddle them both is too far into nix implementation | |
256 | # details for my comfort. So we re-implement here half of nix.fetchGit. | |
257 | # :( | |
258 | ||
259 | cachedir = git_cachedir(channel.git_repo) | |
260 | if not os.path.exists(cachedir): | |
261 | v.status("Initializing git repo") | |
262 | process = subprocess.run( | |
263 | ['git', 'init', '--bare', cachedir]) | |
264 | v.result(process.returncode == 0) | |
265 | ||
266 | v.status('Fetching ref "%s" from %s' % (channel.git_ref, channel.git_repo)) | |
267 | # We don't use --force here because we want to abort and freak out if forced | |
268 | # updates are happening. | |
269 | process = subprocess.run(['git', | |
270 | '-C', | |
271 | cachedir, | |
272 | 'fetch', | |
273 | channel.git_repo, | |
274 | '%s:%s' % (channel.git_ref, | |
275 | channel.git_ref)]) | |
276 | v.result(process.returncode == 0) | |
277 | ||
278 | if hasattr(channel, 'git_revision'): | |
279 | v.status('Verifying that fetch retrieved this rev') | |
280 | process = subprocess.run( | |
281 | ['git', '-C', cachedir, 'cat-file', '-e', channel.git_revision]) | |
282 | v.result(process.returncode == 0) | |
283 | else: | |
284 | channel.git_revision = open( | |
285 | os.path.join( | |
286 | cachedir, | |
287 | 'refs', | |
288 | 'heads', | |
289 | channel.git_ref)).read(999).strip() | |
290 | ||
291 | verify_git_ancestry(v, channel) | |
292 | ||
293 | ||
294 | def ensure_git_rev_available(v: Verification, channel: Channel) -> None: | |
295 | cachedir = git_cachedir(channel.git_repo) | |
296 | if os.path.exists(cachedir): | |
297 | v.status('Checking if we already have this rev:') | |
298 | process = subprocess.run( | |
299 | ['git', '-C', cachedir, 'cat-file', '-e', channel.git_revision]) | |
300 | if process.returncode == 0: | |
301 | v.status('yes') | |
302 | if process.returncode == 1: | |
303 | v.status('no') | |
304 | v.result(process.returncode == 0 or process.returncode == 1) | |
305 | if process.returncode == 0: | |
306 | verify_git_ancestry(v, channel) | |
307 | return | |
308 | git_fetch(v, channel) | |
309 | ||
310 | ||
311 | def compare_tarball_and_git( | |
312 | v: Verification, | |
313 | channel: Channel, | |
314 | channel_contents: str, | |
315 | git_contents: str) -> None: | |
316 | v.status('Comparing channel tarball with git checkout') | |
317 | match, mismatch, errors = compare(os.path.join( | |
318 | channel_contents, channel.release_name), git_contents) | |
319 | v.ok() | |
320 | v.check('%d files match' % len(match), len(match) > 0) | |
321 | v.check('%d files differ' % len(mismatch), len(mismatch) == 0) | |
322 | expected_errors = [ | |
323 | '.git-revision', | |
324 | '.version-suffix', | |
325 | 'nixpkgs', | |
326 | 'programs.sqlite', | |
327 | 'svn-revision'] | |
328 | benign_errors = [] | |
329 | for ee in expected_errors: | |
330 | if ee in errors: | |
331 | errors.remove(ee) | |
332 | benign_errors.append(ee) | |
333 | v.check( | |
334 | '%d unexpected incomparable files' % | |
335 | len(errors), | |
336 | len(errors) == 0) | |
337 | v.check( | |
338 | '(%d of %d expected incomparable files)' % | |
339 | (len(benign_errors), | |
340 | len(expected_errors)), | |
341 | len(benign_errors) == len(expected_errors)) | |
342 | ||
343 | ||
344 | def extract_tarball(v: Verification, channel: Channel, dest: str) -> None: | |
345 | v.status('Extracting tarball %s' % | |
346 | channel.table['nixexprs.tar.xz'].file) | |
347 | shutil.unpack_archive( | |
348 | channel.table['nixexprs.tar.xz'].file, | |
349 | dest) | |
350 | v.ok() | |
351 | ||
352 | ||
353 | def git_checkout(v: Verification, channel: Channel, dest: str) -> None: | |
354 | v.status('Checking out corresponding git revision') | |
355 | git = subprocess.Popen(['git', | |
356 | '-C', | |
357 | git_cachedir(channel.git_repo), | |
358 | 'archive', | |
359 | channel.git_revision], | |
360 | stdout=subprocess.PIPE) | |
361 | tar = subprocess.Popen( | |
362 | ['tar', 'x', '-C', dest, '-f', '-'], stdin=git.stdout) | |
363 | if git.stdout: | |
364 | git.stdout.close() | |
365 | tar.wait() | |
366 | git.wait() | |
367 | v.result(git.returncode == 0 and tar.returncode == 0) | |
368 | ||
369 | ||
370 | def git_get_tarball(v: Verification, channel: Channel) -> str: | |
371 | with tempfile.TemporaryDirectory() as output_dir: | |
372 | output_filename = os.path.join( | |
373 | output_dir, channel.release_name + '.tar.xz') | |
374 | with open(output_filename, 'w') as output_file: | |
375 | v.status( | |
376 | 'Generating tarball for git revision %s' % | |
377 | channel.git_revision) | |
378 | git = subprocess.Popen(['git', | |
379 | '-C', | |
380 | git_cachedir(channel.git_repo), | |
381 | 'archive', | |
382 | '--prefix=%s/' % channel.release_name, | |
383 | channel.git_revision], | |
384 | stdout=subprocess.PIPE) | |
385 | xz = subprocess.Popen(['xz'], stdin=git.stdout, stdout=output_file) | |
386 | xz.wait() | |
387 | git.wait() | |
388 | v.result(git.returncode == 0 and xz.returncode == 0) | |
389 | ||
390 | v.status('Putting tarball in Nix store') | |
391 | process = subprocess.run( | |
392 | ['nix-store', '--add', output_filename], capture_output=True) | |
393 | v.result(process.returncode == 0) | |
394 | return process.stdout.decode().strip() | |
395 | ||
396 | ||
397 | def check_channel_metadata( | |
398 | v: Verification, | |
399 | channel: Channel, | |
400 | channel_contents: str) -> None: | |
401 | v.status('Verifying git commit in channel tarball') | |
402 | v.result( | |
403 | open( | |
404 | os.path.join( | |
405 | channel_contents, | |
406 | channel.release_name, | |
407 | '.git-revision')).read(999) == channel.git_revision) | |
408 | ||
409 | v.status( | |
410 | 'Verifying version-suffix is a suffix of release name %s:' % | |
411 | channel.release_name) | |
412 | version_suffix = open( | |
413 | os.path.join( | |
414 | channel_contents, | |
415 | channel.release_name, | |
416 | '.version-suffix')).read(999) | |
417 | v.status(version_suffix) | |
418 | v.result(channel.release_name.endswith(version_suffix)) | |
419 | ||
420 | ||
421 | def check_channel_contents(v: Verification, channel: Channel) -> None: | |
422 | with tempfile.TemporaryDirectory() as channel_contents, \ | |
423 | tempfile.TemporaryDirectory() as git_contents: | |
424 | ||
425 | extract_tarball(v, channel, channel_contents) | |
426 | check_channel_metadata(v, channel, channel_contents) | |
427 | ||
428 | git_checkout(v, channel, git_contents) | |
429 | ||
430 | compare_tarball_and_git(v, channel, channel_contents, git_contents) | |
431 | ||
432 | v.status('Removing temporary directories') | |
433 | v.ok() | |
434 | ||
435 | ||
436 | def pin_channel(v: Verification, channel: Channel) -> None: | |
437 | fetch(v, channel) | |
438 | parse_channel(v, channel) | |
439 | fetch_resources(v, channel) | |
440 | ensure_git_rev_available(v, channel) | |
441 | check_channel_contents(v, channel) | |
442 | ||
443 | ||
444 | def git_revision_name(v: Verification, channel: Channel) -> str: | |
445 | v.status('Getting commit date') | |
446 | process = subprocess.run(['git', | |
447 | '-C', | |
448 | git_cachedir(channel.git_repo), | |
449 | 'lo', | |
450 | '-n1', | |
451 | '--format=%ct-%h', | |
452 | '--abbrev=11', | |
453 | channel.git_revision], | |
454 | capture_output=True) | |
455 | v.result(process.returncode == 0 and process.stdout != b'') | |
456 | return '%s-%s' % (os.path.basename(channel.git_repo), | |
457 | process.stdout.decode().strip()) | |
458 | ||
459 | ||
460 | def read_config(filename: str) -> configparser.ConfigParser: | |
461 | config = configparser.ConfigParser() | |
462 | config.read_file(open(filename), filename) | |
463 | return config | |
464 | ||
465 | ||
466 | def pin(args: argparse.Namespace) -> None: | |
467 | v = Verification() | |
468 | config = read_config(args.channels_file) | |
469 | for section in config.sections(): | |
470 | if args.channels and section not in args.channels: | |
471 | continue | |
472 | ||
473 | channel = Channel(**dict(config[section].items())) | |
474 | ||
475 | if hasattr(channel, 'alias_of'): | |
476 | assert not hasattr(channel, 'git_repo') | |
477 | continue | |
478 | ||
479 | if hasattr(channel, 'git_revision'): | |
480 | channel.old_git_revision = channel.git_revision | |
481 | del channel.git_revision | |
482 | ||
483 | if 'channel_url' in config[section]: | |
484 | pin_channel(v, channel) | |
485 | config[section]['release_name'] = channel.release_name | |
486 | config[section]['tarball_url'] = channel.table['nixexprs.tar.xz'].absolute_url | |
487 | config[section]['tarball_sha256'] = channel.table['nixexprs.tar.xz'].digest | |
488 | else: | |
489 | git_fetch(v, channel) | |
490 | config[section]['release_name'] = git_revision_name(v, channel) | |
491 | config[section]['git_revision'] = channel.git_revision | |
492 | ||
493 | with open(args.channels_file, 'w') as configfile: | |
494 | config.write(configfile) | |
495 | ||
496 | ||
497 | def update(args: argparse.Namespace) -> None: | |
498 | v = Verification() | |
499 | config = configparser.ConfigParser() | |
500 | exprs: Dict[str, str] = {} | |
501 | configs = [read_config(filename) for filename in args.channels_file] | |
502 | for config in configs: | |
503 | for section in config.sections(): | |
504 | ||
505 | if 'alias_of' in config[section]: | |
506 | assert 'git_repo' not in config[section] | |
507 | continue | |
508 | ||
509 | if 'channel_url' in config[section]: | |
510 | tarball = fetch_with_nix_prefetch_url( | |
511 | v, config[section]['tarball_url'], Digest16( | |
512 | config[section]['tarball_sha256'])) | |
513 | else: | |
514 | channel = Channel(**dict(config[section].items())) | |
515 | ensure_git_rev_available(v, channel) | |
516 | tarball = git_get_tarball(v, channel) | |
517 | ||
518 | if section in exprs: | |
519 | raise Exception('Duplicate channel "%s"' % section) | |
520 | exprs[section] = ( | |
521 | 'f: f { name = "%s"; channelName = "%%s"; src = builtins.storePath "%s"; }' % | |
522 | (config[section]['release_name'], tarball)) | |
523 | ||
524 | for config in configs: | |
525 | for section in config.sections(): | |
526 | if 'alias_of' in config[section]: | |
527 | if section in exprs: | |
528 | raise Exception('Duplicate channel "%s"' % section) | |
529 | exprs[section] = exprs[str(config[section]['alias_of'])] | |
530 | ||
531 | command = [ | |
532 | 'nix-env', | |
533 | '--profile', | |
534 | '/nix/var/nix/profiles/per-user/%s/channels' % | |
535 | getpass.getuser(), | |
536 | '--show-trace', | |
537 | '--file', | |
538 | '<nix/unpack-channel.nix>', | |
539 | '--install', | |
540 | '--from-expression'] + [exprs[name] % name for name in sorted(exprs.keys())] | |
541 | if args.dry_run: | |
542 | print(' '.join(map(shlex.quote, command))) | |
543 | else: | |
544 | v.status('Installing channels with nix-env') | |
545 | process = subprocess.run(command) | |
546 | v.result(process.returncode == 0) | |
547 | ||
548 | ||
549 | def main() -> None: | |
550 | parser = argparse.ArgumentParser(prog='pinch') | |
551 | subparsers = parser.add_subparsers(dest='mode', required=True) | |
552 | parser_pin = subparsers.add_parser('pin') | |
553 | parser_pin.add_argument('channels_file', type=str) | |
554 | parser_pin.add_argument('channels', type=str, nargs='*') | |
555 | parser_pin.set_defaults(func=pin) | |
556 | parser_update = subparsers.add_parser('update') | |
557 | parser_update.add_argument('--dry-run', action='store_true') | |
558 | parser_update.add_argument('channels_file', type=str, nargs='+') | |
559 | parser_update.set_defaults(func=update) | |
560 | args = parser.parse_args() | |
561 | args.func(args) | |
562 | ||
563 | ||
564 | main() |