18 import xml
.dom
.minidom
28 Digest16
= NewType('Digest16', str)
29 Digest32
= NewType('Digest32', str)
32 class ChannelTableEntry(types
.SimpleNamespace
):
40 class Channel(types
.SimpleNamespace
):
50 table
: Dict
[str, ChannelTableEntry
]
53 class VerificationError(Exception):
59 def __init__(self
) -> None:
62 def status(self
, s
: str) -> None:
63 print(s
, end
=' ', file=sys
.stderr
, flush
=True)
64 self
.line_length
+= 1 + len(s
) # Unicode??
67 def _color(s
: str, c
: int) -> str:
68 return '\033[%2dm%s\033[00m' % (c
, s
)
70 def result(self
, r
: bool) -> None:
71 message
, color
= {True: ('OK ', 92), False: ('FAIL', 91)}
[r
]
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
)
78 raise VerificationError()
80 def check(self
, s
: str, r
: bool) -> None:
88 def compare(a
: str, b
: str) -> Tuple
[List
[str], List
[str], List
[str]]:
90 def throw(error
: OSError) -> None:
93 def join(x
: str, y
: str) -> str:
94 return y
if x
== '.' else os
.path
.join(x
, y
)
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
))
106 def exclude_dot_git(files
: Iterable
[str]) -> Iterable
[str]:
107 return (f
for f
in files
if not f
.startswith('.git/'))
109 files
= functools
.reduce(
112 recursive_files(x
))) for x
in [a
, b
]))
113 return filecmp
.cmpfiles(a
, b
, files
, shallow
=False)
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
)
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
)
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]
135 v
.result(title_name
== h1_name
)
136 channel
.release_name
= title_name
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
)
143 v
.status('Verifying git commit label')
144 v
.result(git_commit_node
.previousSibling
.nodeValue
== 'Git commit ')
146 v
.status('Parsing 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
)
158 def digest_string(s
: bytes) -> Digest16
:
159 return Digest16(hashlib
.sha256(s
).hexdigest())
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
''):
168 return Digest16(hasher
.hexdigest())
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())
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())
187 def fetch_with_nix_prefetch_url(
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')
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
)
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')
215 channel
.table
['git-revision'].file).read(999) == channel
.git_revision
)
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' %
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',
234 channel
.git_revision
,
236 v
.result(process
.returncode
== 0)
238 if hasattr(channel
, 'old_git_revision'):
240 'Verifying rev is an ancestor of previous rev %s' %
241 channel
.old_git_revision
)
242 process
= subprocess
.run(['git',
247 channel
.old_git_revision
,
248 channel
.git_revision
])
249 v
.result(process
.returncode
== 0)
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.
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)
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',
274 '%s:%s' % (channel
.git_ref
,
276 v
.result(process
.returncode
== 0)
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)
284 channel
.git_revision
= open(
289 channel
.git_ref
)).read(999).strip()
291 verify_git_ancestry(v
, channel
)
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:
302 if process
.returncode
== 1:
304 v
.result(process
.returncode
== 0 or process
.returncode
== 1)
305 if process
.returncode
== 0:
306 verify_git_ancestry(v
, channel
)
308 git_fetch(v
, channel
)
311 def compare_tarball_and_git(
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
)
320 v
.check('%d files match' % len(match
), len(match
) > 0)
321 v
.check('%d files differ' % len(mismatch
), len(mismatch
) == 0)
329 for ee
in expected_errors
:
332 benign_errors
.append(ee
)
334 '%d unexpected incomparable files' %
338 '(%d of %d expected incomparable files)' %
340 len(expected_errors
)),
341 len(benign_errors
) == len(expected_errors
))
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,
353 def git_checkout(v
: Verification
, channel
: Channel
, dest
: str) -> None:
354 v
.status('Checking out corresponding git revision')
355 git
= subprocess
.Popen(['git',
357 git_cachedir(channel
.git_repo
),
359 channel
.git_revision
],
360 stdout
=subprocess
.PIPE
)
361 tar
= subprocess
.Popen(
362 ['tar', 'x', '-C', dest
, '-f', '-'], stdin
=git
.stdout
)
366 v
.result(git
.returncode
== 0 and tar
.returncode
== 0)
369 def git_get_tarball(v
: Verification
, channel
: Channel
) -> str:
370 with tempfile
.TemporaryDirectory() as output_dir
:
371 output_filename
= os
.path
.join(
372 output_dir
, channel
.release_name
+ '.tar.xz')
373 with open(output_filename
, 'w') as output_file
:
375 'Generating tarball for git revision %s' %
376 channel
.git_revision
)
377 git
= subprocess
.Popen(['git',
379 git_cachedir(channel
.git_repo
),
381 '--prefix=%s/' % channel
.release_name
,
382 channel
.git_revision
],
383 stdout
=subprocess
.PIPE
)
384 xz
= subprocess
.Popen(['xz'], stdin
=git
.stdout
, stdout
=output_file
)
387 v
.result(git
.returncode
== 0 and xz
.returncode
== 0)
389 v
.status('Putting tarball in Nix store')
390 process
= subprocess
.run(
391 ['nix-store', '--add', output_filename
], capture_output
=True)
392 v
.result(process
.returncode
== 0)
393 return process
.stdout
.decode().strip()
396 def check_channel_metadata(
399 channel_contents
: str) -> None:
400 v
.status('Verifying git commit in channel tarball')
405 channel
.release_name
,
406 '.git-revision')).read(999) == channel
.git_revision
)
409 'Verifying version-suffix is a suffix of release name %s:' %
410 channel
.release_name
)
411 version_suffix
= open(
414 channel
.release_name
,
415 '.version-suffix')).read(999)
416 v
.status(version_suffix
)
417 v
.result(channel
.release_name
.endswith(version_suffix
))
420 def check_channel_contents(v
: Verification
, channel
: Channel
) -> None:
421 with tempfile
.TemporaryDirectory() as channel_contents
, \
422 tempfile
.TemporaryDirectory() as git_contents
:
424 extract_tarball(v
, channel
, channel_contents
)
425 check_channel_metadata(v
, channel
, channel_contents
)
427 git_checkout(v
, channel
, git_contents
)
429 compare_tarball_and_git(v
, channel
, channel_contents
, git_contents
)
431 v
.status('Removing temporary directories')
435 def pin_channel(v
: Verification
, channel
: Channel
) -> None:
437 parse_channel(v
, channel
)
438 fetch_resources(v
, channel
)
439 ensure_git_rev_available(v
, channel
)
440 check_channel_contents(v
, channel
)
443 def git_revision_name(v
: Verification
, channel
: Channel
) -> str:
444 v
.status('Getting commit date')
445 process
= subprocess
.run(['git',
447 git_cachedir(channel
.git_repo
),
452 channel
.git_revision
],
454 v
.result(process
.returncode
== 0 and process
.stdout
!= '')
455 return '%s-%s' % (os
.path
.basename(channel
.git_repo
),
456 process
.stdout
.decode().strip())
459 def pin(args
: argparse
.Namespace
) -> None:
461 config
= configparser
.ConfigParser()
462 config
.read_file(open(args
.channels_file
), args
.channels_file
)
463 for section
in config
.sections():
464 if args
.channels
and section
not in args
.channels
:
467 channel
= Channel(**dict(config
[section
].items()))
469 if hasattr(channel
, 'alias_of'):
470 assert not hasattr(channel
, 'git_repo')
473 if hasattr(channel
, 'git_revision'):
474 channel
.old_git_revision
= channel
.git_revision
475 del channel
.git_revision
477 if 'channel_url' in config
[section
]:
478 pin_channel(v
, channel
)
479 config
[section
]['release_name'] = channel
.release_name
480 config
[section
]['tarball_url'] = channel
.table
['nixexprs.tar.xz'].absolute_url
481 config
[section
]['tarball_sha256'] = channel
.table
['nixexprs.tar.xz'].digest
483 git_fetch(v
, channel
)
484 config
[section
]['release_name'] = git_revision_name(v
, channel
)
485 config
[section
]['git_revision'] = channel
.git_revision
487 with open(args
.channels_file
, 'w') as configfile
:
488 config
.write(configfile
)
491 def update(args
: argparse
.Namespace
) -> None:
493 config
= configparser
.ConfigParser()
494 config
.read_file(open(args
.channels_file
), args
.channels_file
)
496 for section
in config
.sections():
498 if 'alias_of' in config
[section
]:
499 assert 'git_repo' not in config
[section
]
502 if 'channel_url' in config
[section
]:
503 tarball
= fetch_with_nix_prefetch_url(
504 v
, config
[section
]['tarball_url'], Digest16(
505 config
[section
]['tarball_sha256']))
507 channel
= Channel(**dict(config
[section
].items()))
508 ensure_git_rev_available(v
, channel
)
509 tarball
= git_get_tarball(v
, channel
)
512 'f: f { name = "%s"; channelName = "%%s"; src = builtins.storePath "%s"; }' %
513 (config
[section
]['release_name'], tarball
))
515 for section
in config
.sections():
516 if 'alias_of' in config
[section
]:
517 exprs
[section
] = exprs
[str(config
[section
]['alias_of'])]
522 '/nix/var/nix/profiles/per-user/%s/channels' %
526 '<nix/unpack-channel.nix>',
528 '--from-expression'] + [exprs
[name
] % name
for name
in sorted(exprs
.keys())]
530 print(' '.join(map(shlex
.quote
, command
)))
532 v
.status('Installing channels with nix-env')
533 process
= subprocess
.run(command
)
534 v
.result(process
.returncode
== 0)
538 parser
= argparse
.ArgumentParser(prog
='pinch')
539 subparsers
= parser
.add_subparsers(dest
='mode', required
=True)
540 parser_pin
= subparsers
.add_parser('pin')
541 parser_pin
.add_argument('channels_file', type=str)
542 parser_pin
.add_argument('channels', type=str, nargs
='*')
543 parser_pin
.set_defaults(func
=pin
)
544 parser_update
= subparsers
.add_parser('update')
545 parser_update
.add_argument('--dry-run', action
='store_true')
546 parser_update
.add_argument('channels_file', type=str)
547 parser_update
.set_defaults(func
=update
)
548 args
= parser
.parse_args()