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
|
# gemato: CLI routines
# vim:fileencoding=utf-8
# (c) 2017-2018 Michał Górny
# Licensed under the terms of 2-clause BSD license
from __future__ import print_function
import argparse
import datetime
import io
import logging
import multiprocessing
import os.path
import sys
import timeit
import gemato.find_top_level
import gemato.profile
import gemato.recursiveloader
def verify_failure(e):
logging.error(str(e))
return False
def do_verify(args, argp):
ret = True
for p in args.paths:
tlm = gemato.find_top_level.find_top_level_manifest(p)
if tlm is None:
logging.error('Top-level Manifest not found in {}'.format(p))
return 1
init_kwargs = {}
kwargs = {}
if args.jobs is not None:
if args.jobs < 1:
argp.error('--jobs must be positive')
init_kwargs['max_jobs'] = args.jobs
if args.keep_going:
kwargs['fail_handler'] = verify_failure
if not args.openpgp_verify:
init_kwargs['verify_openpgp'] = False
# use isolated environment if key is specified;
# system environment otherwise
if args.openpgp_key is not None:
env_class = gemato.openpgp.OpenPGPEnvironment
else:
env_class = gemato.openpgp.OpenPGPSystemEnvironment
with env_class() as env:
if args.openpgp_key is not None:
with io.open(args.openpgp_key, 'rb') as f:
env.import_key(f)
# always refresh keys to check for revocation
# (unless user specifically asked us not to)
if args.refresh_keys:
logging.info('Refreshing keys from keyserver...')
env.refresh_keys()
logging.info('Keys refreshed.')
init_kwargs['openpgp_env'] = env
start = timeit.default_timer()
try:
m = gemato.recursiveloader.ManifestRecursiveLoader(tlm, **init_kwargs)
except gemato.exceptions.OpenPGPNoImplementation as e:
logging.error(str(e))
return 1
except gemato.exceptions.OpenPGPVerificationFailure as e:
logging.error(str(e))
return 1
if args.require_signed_manifest and not m.openpgp_signed:
logging.error('Top-level Manifest {} is not OpenPGP signed'.format(tlm))
return 1
if m.openpgp_signed:
logging.info('Valid OpenPGP signature found:')
logging.info('- primary key: {}'.format(
m.openpgp_signature.primary_key_fingerprint))
logging.info('- subkey: {}'.format(
m.openpgp_signature.fingerprint))
logging.info('- timestamp: {}'.format(
m.openpgp_signature.timestamp))
logging.info('Verifying {}...'.format(p))
relpath = os.path.relpath(p, os.path.dirname(tlm))
if relpath == '.':
relpath = ''
try:
ret &= m.assert_directory_verifies(relpath, **kwargs)
except gemato.exceptions.ManifestCrossDevice as e:
logging.error(str(e))
return 1
except gemato.exceptions.ManifestIncompatibleEntry as e:
logging.error(str(e))
return 1
except gemato.exceptions.ManifestMismatch as e:
logging.error(str(e))
return 1
stop = timeit.default_timer()
logging.info('{} verified in {:.2f} seconds'.format(p, stop - start))
return 0 if ret else 1
def do_update(args, argp):
for p in args.paths:
tlm = gemato.find_top_level.find_top_level_manifest(p)
if tlm is None:
logging.error('Top-level Manifest not found in {}'.format(p))
return 1
init_kwargs = {}
save_kwargs = {}
update_kwargs = {}
if args.hashes is not None:
init_kwargs['hashes'] = args.hashes.split()
if args.compress_watermark is not None:
if args.compress_watermark < 0:
argp.error('--compress-watermark must not be negative!')
init_kwargs['compress_watermark'] = args.compress_watermark
if args.compress_format is not None:
init_kwargs['compress_format'] = args.compress_format
if args.force_rewrite:
save_kwargs['force'] = True
if args.jobs is not None:
if args.jobs < 1:
argp.error('--jobs must be positive')
init_kwargs['max_jobs'] = args.jobs
if args.openpgp_id is not None:
init_kwargs['openpgp_keyid'] = args.openpgp_id
if args.profile is not None:
init_kwargs['profile'] = gemato.profile.get_profile_by_name(
args.profile)
if args.sign is not None:
init_kwargs['sign_openpgp'] = args.sign
# use isolated environment if key is specified;
# system environment otherwise
if args.openpgp_key is not None:
env_class = gemato.openpgp.OpenPGPEnvironment
else:
env_class = gemato.openpgp.OpenPGPSystemEnvironment
with env_class() as env:
if args.openpgp_key is not None:
with io.open(args.openpgp_key, 'rb') as f:
env.import_key(f)
init_kwargs['openpgp_env'] = env
start = timeit.default_timer()
try:
m = gemato.recursiveloader.ManifestRecursiveLoader(tlm,
**init_kwargs)
except gemato.exceptions.OpenPGPNoImplementation as e:
logging.error(str(e))
return 1
except gemato.exceptions.OpenPGPVerificationFailure as e:
logging.error(str(e))
return 1
# if not specified by user, profile must set it
if m.hashes is None:
argp.error('--hashes must be specified if not implied by --profile')
relpath = os.path.relpath(p, os.path.dirname(tlm))
if relpath == '.':
relpath = ''
if args.timestamp and relpath != '':
argp.error('Timestamp can only be updated if doing full-tree update')
if args.incremental:
if relpath != '':
argp.error('Incremental works only for full-tree update')
last_ts = m.find_timestamp()
if last_ts is None:
argp.error('Incremental specified but no timestamp in Manifest')
update_kwargs['last_mtime'] = last_ts.ts.timestamp()
logging.info('Updating Manifests in {}...'.format(p))
try:
start_ts = datetime.datetime.utcnow()
m.update_entries_for_directory(relpath, **update_kwargs)
# write TIMESTAMP if requested, or if already there
if relpath != '':
# skip timestamp if not doing full update
pass
elif args.timestamp:
m.set_timestamp(start_ts)
else:
ts = m.find_timestamp()
if ts is not None:
ts.ts = start_ts
m.save_manifests(**save_kwargs)
except gemato.exceptions.ManifestCrossDevice as e:
logging.error(str(e))
return 1
except gemato.exceptions.ManifestInvalidPath as e:
logging.error(str(e))
return 1
except gemato.exceptions.ManifestInvalidFilename as e:
logging.error(str(e))
return 1
stop = timeit.default_timer()
logging.info('{} updated in {:.2f} seconds'.format(p, stop - start))
return 0
def do_create(args, argp):
for p in args.paths:
init_kwargs = {}
save_kwargs = {}
init_kwargs['allow_create'] = True
if args.hashes is not None:
init_kwargs['hashes'] = args.hashes.split()
if args.compress_watermark is not None:
if args.compress_watermark < 0:
argp.error('--compress-watermark must not be negative!')
init_kwargs['compress_watermark'] = args.compress_watermark
if args.compress_format is not None:
init_kwargs['compress_format'] = args.compress_format
if args.force_rewrite:
save_kwargs['force'] = True
if args.jobs is not None:
if args.jobs < 1:
argp.error('--jobs must be positive')
init_kwargs['max_jobs'] = args.jobs
if args.openpgp_id is not None:
init_kwargs['openpgp_keyid'] = args.openpgp_id
if args.profile is not None:
init_kwargs['profile'] = gemato.profile.get_profile_by_name(
args.profile)
if args.sign is not None:
init_kwargs['sign_openpgp'] = args.sign
# use isolated environment if key is specified;
# system environment otherwise
if args.openpgp_key is not None:
env_class = gemato.openpgp.OpenPGPEnvironment
else:
env_class = gemato.openpgp.OpenPGPSystemEnvironment
with env_class() as env:
if args.openpgp_key is not None:
with io.open(args.openpgp_key, 'rb') as f:
env.import_key(f)
init_kwargs['openpgp_env'] = env
start = timeit.default_timer()
try:
m = gemato.recursiveloader.ManifestRecursiveLoader(
os.path.join(p, 'Manifest'), **init_kwargs)
except gemato.exceptions.OpenPGPNoImplementation as e:
logging.error(str(e))
return 1
except gemato.exceptions.OpenPGPVerificationFailure as e:
logging.error(str(e))
return 1
# if not specified by user, profile must set it
if m.hashes is None:
argp.error('--hashes must be specified if not implied by --profile')
logging.info('Creating Manifests in {}...'.format(p))
try:
start_ts = datetime.datetime.utcnow()
m.update_entries_for_directory()
# write TIMESTAMP if requested, or if already there
if args.timestamp:
m.set_timestamp(start_ts)
m.save_manifests(**save_kwargs)
except gemato.exceptions.ManifestCrossDevice as e:
logging.error(str(e))
return 1
except gemato.exceptions.ManifestInvalidPath as e:
logging.error(str(e))
return 1
except gemato.exceptions.ManifestInvalidFilename as e:
logging.error(str(e))
return 1
stop = timeit.default_timer()
logging.info('{} updated in {:.2f} seconds'.format(p, stop - start))
return 0
def main(argv):
argp = argparse.ArgumentParser(
prog=argv[0],
description='Gentoo Manifest Tool')
subp = argp.add_subparsers()
verify = subp.add_parser('verify',
help='Verify one or more directories against Manifests')
verify.add_argument('paths', nargs='*', default=['.'],
help='Paths to verify (defaults to "." if none specified)')
verify.add_argument('-j', '--jobs', type=int,
help='Specify the maximum number of parallel jobs to use (default: {})'
.format(multiprocessing.cpu_count()))
verify.add_argument('-k', '--keep-going', action='store_true',
help='Continue reporting errors rather than terminating on the first failure')
verify.add_argument('-K', '--openpgp-key',
help='Use only the OpenPGP key(s) from a specific file')
verify.add_argument('-P', '--no-openpgp-verify', action='store_false',
dest='openpgp_verify',
help='Disable OpenPGP verification of signed Manifests')
verify.add_argument('-R', '--no-refresh-keys', action='store_false',
dest='refresh_keys',
help='Disable refreshing OpenPGP key (prevents network access, applicable '
+'when using -K only)')
verify.add_argument('-s', '--require-signed-manifest', action='store_true',
help='Require that the top-level Manifest is OpenPGP signed')
verify.set_defaults(func=do_verify)
update = subp.add_parser('update',
help='Update the Manifest entries for one or more directory trees')
update.add_argument('paths', nargs='*', default=['.'],
help='Paths to update (defaults to "." if none specified)')
update.add_argument('-c', '--compress-watermark', type=int,
help='Minimum Manifest size for files to be compressed')
update.add_argument('-C', '--compress-format',
help='Format for compressed files (e.g. "gz", "bz2"...)')
update.add_argument('-f', '--force-rewrite', action='store_true',
help='Force rewriting all the Manifests, even if they did not change')
update.add_argument('-H', '--hashes',
help='Whitespace-separated list of hashes to use')
update.add_argument('-i', '--incremental', action='store_true',
help='Perform incremental update by comparing mtimes against TIMESTAMP')
update.add_argument('-j', '--jobs', type=int,
help='Specify the maximum number of parallel jobs to use (default: {})'
.format(multiprocessing.cpu_count()))
update.add_argument('-k', '--openpgp-id',
help='Use the specified OpenPGP key (by ID or user)')
update.add_argument('-K', '--openpgp-key',
help='Use only the OpenPGP key(s) from a specific file')
update.add_argument('-p', '--profile',
help='Use the specified profile ("default", "ebuild", "old-ebuild"...)')
signgroup = update.add_mutually_exclusive_group()
signgroup.add_argument('-s', '--sign', action='store_true',
default=None,
help='Force signing the top-level Manifest')
signgroup.add_argument('-S', '--no-sign', action='store_false',
dest='sign',
help='Disable signing the top-level Manifest')
update.add_argument('-t', '--timestamp', action='store_true',
help='Include TIMESTAMP entry in Manifest')
update.set_defaults(func=do_update)
create = subp.add_parser('create',
help='Create a Manifest tree starting at the specified file')
create.add_argument('paths', nargs='*', default=['.'],
help='Paths to create (defaults to "Manifest" if none specified)')
create.add_argument('-c', '--compress-watermark', type=int,
help='Minimum Manifest size for files to be compressed')
create.add_argument('-C', '--compress-format',
help='Format for compressed files (e.g. "gz", "bz2"...)')
create.add_argument('-f', '--force-rewrite', action='store_true',
help='Force rewriting all the Manifests, even if they did not change')
create.add_argument('-H', '--hashes',
help='Whitespace-separated list of hashes to use')
create.add_argument('-j', '--jobs', type=int,
help='Specify the maximum number of parallel jobs to use (default: {})'
.format(multiprocessing.cpu_count()))
create.add_argument('-k', '--openpgp-id',
help='Use the specified OpenPGP key (by ID or user)')
create.add_argument('-K', '--openpgp-key',
help='Use only the OpenPGP key(s) from a specific file')
create.add_argument('-p', '--profile',
help='Use the specified profile ("default", "ebuild", "old-ebuild"...)')
signgroup = create.add_mutually_exclusive_group()
signgroup.add_argument('-s', '--sign', action='store_true',
default=None,
help='Force signing the top-level Manifest')
signgroup.add_argument('-S', '--no-sign', action='store_false',
dest='sign',
help='Disable signing the top-level Manifest')
create.add_argument('-t', '--timestamp', action='store_true',
help='Include TIMESTAMP entry in Manifest')
create.set_defaults(func=do_create)
vals = argp.parse_args(argv[1:])
if not hasattr(vals, 'func'):
argp.error('No function specified')
return vals.func(vals, argp)
def setuptools_main():
logging.getLogger().setLevel(logging.INFO)
sys.exit(main(sys.argv))
|