-
Notifications
You must be signed in to change notification settings - Fork 83
/
bagit.py
executable file
·1603 lines (1275 loc) · 53.4 KB
/
bagit.py
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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse
import codecs
import gettext
import hashlib
import logging
import multiprocessing
import os
import re
import signal
import sys
import tempfile
import unicodedata
import warnings
from collections import defaultdict
from datetime import date
from functools import partial
try:
from importlib.metadata import version
except ImportError:
from importlib_metadata import version
try:
from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse
def find_locale_dir():
for prefix in (os.path.dirname(__file__), sys.prefix):
locale_dir = os.path.join(prefix, "locale")
if os.path.isdir(locale_dir):
return locale_dir
TRANSLATION_CATALOG = gettext.translation(
"bagit-python", localedir=find_locale_dir(), fallback=True
)
_ = TRANSLATION_CATALOG.gettext
MODULE_NAME = "bagit" if __name__ == "__main__" else __name__
LOGGER = logging.getLogger(MODULE_NAME)
VERSION = version(MODULE_NAME)
if not VERSION:
VERSION = "0.0.dev0"
PROJECT_URL = "https://github.com/LibraryOfCongress/bagit-python"
__doc__ = (
_(
"""
BagIt is a directory, filename convention for bundling an arbitrary set of
files with a manifest, checksums, and additional metadata. More about BagIt
can be found at:
http://purl.org/net/bagit
bagit.py is a pure python drop in library and command line tool for creating,
and working with BagIt directories.
Command-Line Usage:
Basic usage is to give bagit.py a directory to bag up:
$ bagit.py my_directory
This does a bag-in-place operation where the current contents will be moved
into the appropriate BagIt structure and the metadata files will be created.
You can bag multiple directories if you wish:
$ bagit.py directory1 directory2
Optionally you can provide metadata which will be stored in bag-info.txt:
$ bagit.py --source-organization "Library of Congress" directory
You can also select which manifest algorithms will be used:
$ bagit.py --sha1 --md5 --sha256 --sha512 directory
Using BagIt from your Python code:
import bagit
bag = bagit.make_bag('example-directory', {'Contact-Name': 'Ed Summers'})
print(bag.entries)
For more information or to contribute to bagit-python's development, please
visit %(PROJECT_URL)s
"""
)
% globals()
)
# standard bag-info.txt metadata
STANDARD_BAG_INFO_HEADERS = [
"Source-Organization",
"Organization-Address",
"Contact-Name",
"Contact-Phone",
"Contact-Email",
"External-Description",
"External-Identifier",
"Bag-Size",
"Bag-Group-Identifier",
"Bag-Count",
"Internal-Sender-Identifier",
"Internal-Sender-Description",
"BagIt-Profile-Identifier",
# Bagging-Date is autogenerated
# Payload-Oxum is autogenerated
]
try:
CHECKSUM_ALGOS = hashlib.algorithms_guaranteed
except AttributeError:
# FIXME: remove when we drop Python 2 (https://github.com/LibraryOfCongress/bagit-python/issues/102)
# Python 2.7.0-2.7.8
CHECKSUM_ALGOS = set(hashlib.algorithms)
DEFAULT_CHECKSUMS = ["sha256", "sha512"]
#: Block size used when reading files for hashing:
HASH_BLOCK_SIZE = 512 * 1024
#: Convenience function used everywhere we want to open a file to read text
#: rather than undecoded bytes:
open_text_file = partial(codecs.open, encoding="utf-8", errors="strict")
# This is the same as decoding the byte values in codecs.BOM:
UNICODE_BYTE_ORDER_MARK = "\ufeff"
def make_bag(
bag_dir, bag_info=None, processes=1, checksums=None, checksum=None, encoding="utf-8"
):
"""
Convert a given directory into a bag. You can pass in arbitrary
key/value pairs to put into the bag-info.txt metadata file as
the bag_info dictionary.
"""
if checksum is not None:
warnings.warn(
_(
"The `checksum` argument for `make_bag` should be replaced with `checksums`"
),
DeprecationWarning,
)
checksums = checksum
if checksums is None:
checksums = DEFAULT_CHECKSUMS
bag_dir = os.path.abspath(bag_dir)
cwd = os.path.abspath(os.path.curdir)
if cwd.startswith(bag_dir) and cwd != bag_dir:
raise RuntimeError(
_("Bagging a parent of the current directory is not supported")
)
LOGGER.info(_("Creating bag for directory %s"), bag_dir)
if not os.path.isdir(bag_dir):
LOGGER.error(_("Bag directory %s does not exist"), bag_dir)
raise RuntimeError(_("Bag directory %s does not exist") % bag_dir)
# FIXME: we should do the permissions checks before changing directories
old_dir = os.path.abspath(os.path.curdir)
try:
# TODO: These two checks are currently redundant since an unreadable directory will also
# often be unwritable, and this code will require review when we add the option to
# bag to a destination other than the source. It would be nice if we could avoid
# walking the directory tree more than once even if most filesystems will cache it
unbaggable = _can_bag(bag_dir)
if unbaggable:
LOGGER.error(
_("Unable to write to the following directories and files:\n%s"),
unbaggable,
)
raise BagError(_("Missing permissions to move all files and directories"))
unreadable_dirs, unreadable_files = _can_read(bag_dir)
if unreadable_dirs or unreadable_files:
if unreadable_dirs:
LOGGER.error(
_("The following directories do not have read permissions:\n%s"),
unreadable_dirs,
)
if unreadable_files:
LOGGER.error(
_("The following files do not have read permissions:\n%s"),
unreadable_files,
)
raise BagError(
_("Read permissions are required to calculate file fixities")
)
else:
LOGGER.info(_("Creating data directory"))
# FIXME: if we calculate full paths we won't need to deal with changing directories
os.chdir(bag_dir)
cwd = os.getcwd()
temp_data = tempfile.mkdtemp(dir=cwd)
for f in os.listdir("."):
if os.path.abspath(f) == temp_data:
continue
new_f = os.path.join(temp_data, f)
LOGGER.info(
_("Moving %(source)s to %(destination)s"),
{"source": f, "destination": new_f},
)
os.rename(f, new_f)
LOGGER.info(
_("Moving %(source)s to %(destination)s"),
{"source": temp_data, "destination": "data"},
)
os.rename(temp_data, "data")
# permissions for the payload directory should match those of the
# original directory
os.chmod("data", os.stat(cwd).st_mode)
total_bytes, total_files = make_manifests(
"data", processes, algorithms=checksums, encoding=encoding
)
LOGGER.info(_("Creating bagit.txt"))
txt = """BagIt-Version: 0.97\nTag-File-Character-Encoding: UTF-8\n"""
with open_text_file("bagit.txt", "w") as bagit_file:
bagit_file.write(txt)
LOGGER.info(_("Creating bag-info.txt"))
if bag_info is None:
bag_info = {}
# allow 'Bagging-Date' and 'Bag-Software-Agent' to be overidden
if "Bagging-Date" not in bag_info:
bag_info["Bagging-Date"] = date.strftime(date.today(), "%Y-%m-%d")
if "Bag-Software-Agent" not in bag_info:
bag_info["Bag-Software-Agent"] = "bagit.py v%s <%s>" % (
VERSION,
PROJECT_URL,
)
bag_info["Payload-Oxum"] = "%s.%s" % (total_bytes, total_files)
_make_tag_file("bag-info.txt", bag_info)
for c in checksums:
_make_tagmanifest_file(c, bag_dir, encoding="utf-8")
except Exception:
LOGGER.exception(_("An error occurred creating a bag in %s"), bag_dir)
raise
finally:
os.chdir(old_dir)
return Bag(bag_dir)
class Bag(object):
"""A representation of a bag."""
valid_files = ["bagit.txt", "fetch.txt"]
valid_directories = ["data"]
def __init__(self, path):
super(Bag, self).__init__()
self.tags = {}
self.info = {}
#: Dictionary of manifest entries and the checksum values for each
#: algorithm:
self.entries = {}
# To reliably handle Unicode normalization differences, we maintain
# lookup dictionaries in both directions for the filenames read from
# the filesystem and the manifests so we can handle cases where the
# normalization form changed between the bag being created and read.
# See https://github.com/LibraryOfCongress/bagit-python/issues/51.
#: maps Unicode-normalized values to the raw value from the filesystem
self.normalized_filesystem_names = {}
#: maps Unicode-normalized values to the raw value in the manifest
self.normalized_manifest_names = {}
self.algorithms = []
self.tag_file_name = None
self.path = os.path.abspath(path)
self._open()
def __str__(self):
# FIXME: develop a more informative string representation for a Bag
return self.path
@property
def algs(self):
warnings.warn(_("Use Bag.algorithms instead of Bag.algs"), DeprecationWarning)
return self.algorithms
@property
def version(self):
warnings.warn(
_("Use the Bag.version_info tuple instead of Bag.version"),
DeprecationWarning,
)
return self._version
def _open(self):
# Open the bagit.txt file, and load any tags from it, including
# the required version and encoding.
bagit_file_path = os.path.join(self.path, "bagit.txt")
if not os.path.isfile(bagit_file_path):
raise BagError(_("Expected bagit.txt does not exist: %s") % bagit_file_path)
self.tags = tags = _load_tag_file(bagit_file_path)
required_tags = ("BagIt-Version", "Tag-File-Character-Encoding")
missing_tags = [i for i in required_tags if i not in tags]
if missing_tags:
raise BagError(
_("Missing required tag in bagit.txt: %s") % ", ".join(missing_tags)
)
# To avoid breaking existing code we'll leave self.version as the string
# and parse it into a numeric version_info tuple. In version 2.0 we can
# break that.
self._version = tags["BagIt-Version"]
try:
self.version_info = tuple(int(i) for i in self._version.split(".", 1))
except ValueError:
raise BagError(
_("Bag version numbers must be MAJOR.MINOR numbers, not %s")
% self._version
)
if (0, 93) <= self.version_info <= (0, 95):
self.tag_file_name = "package-info.txt"
elif (0, 96) <= self.version_info < (2,):
self.tag_file_name = "bag-info.txt"
else:
raise BagError(_("Unsupported bag version: %s") % self._version)
self.encoding = tags["Tag-File-Character-Encoding"]
try:
codecs.lookup(self.encoding)
except LookupError:
raise BagValidationError(_("Unsupported encoding: %s") % self.encoding)
info_file_path = os.path.join(self.path, self.tag_file_name)
if os.path.exists(info_file_path):
self.info = _load_tag_file(info_file_path, encoding=self.encoding)
self._load_manifests()
def manifest_files(self):
for filename in ["manifest-%s.txt" % a for a in CHECKSUM_ALGOS]:
f = os.path.join(self.path, filename)
if os.path.isfile(f):
yield f
def tagmanifest_files(self):
for filename in ["tagmanifest-%s.txt" % a for a in CHECKSUM_ALGOS]:
f = os.path.join(self.path, filename)
if os.path.isfile(f):
yield f
def compare_manifests_with_fs(self):
"""
Compare the filenames in the manifests to the filenames present on the
local filesystem and returns two lists of the files which are only
present in the manifests and the files which are only present on the
local filesystem, respectively.
"""
# We compare the filenames after Unicode normalization so we can
# reliably detect normalization changes after bag creation:
files_on_fs = set(normalize_unicode(i) for i in self.payload_files())
files_in_manifest = set(
normalize_unicode(i) for i in self.payload_entries().keys()
)
if self.version_info >= (0, 97):
files_in_manifest.update(self.missing_optional_tagfiles())
only_on_fs = list()
only_in_manifest = list()
for i in files_on_fs.difference(files_in_manifest):
only_on_fs.append(self.normalized_filesystem_names[i])
for i in files_in_manifest.difference(files_on_fs):
only_in_manifest.append(self.normalized_manifest_names[i])
return only_in_manifest, only_on_fs
def compare_fetch_with_fs(self):
"""Compares the fetch entries with the files actually
in the payload, and returns a list of all the files
that still need to be fetched.
"""
files_on_fs = set(self.payload_files())
files_in_fetch = set(self.files_to_be_fetched())
return list(files_in_fetch - files_on_fs)
def payload_files(self):
"""Returns a list of filenames which are present on the local filesystem"""
payload_dir = os.path.join(self.path, "data")
for dirpath, _, filenames in os.walk(payload_dir):
for f in filenames:
# Jump through some hoops here to make the payload files are
# returned with the directory structure relative to the base
# directory rather than the
normalized_f = os.path.normpath(f)
rel_path = os.path.relpath(
os.path.join(dirpath, normalized_f), start=self.path
)
self.normalized_filesystem_names[normalize_unicode(rel_path)] = rel_path
yield rel_path
def payload_entries(self):
"""Return a dictionary of items"""
# Don't use dict comprehension (compatibility with Python < 2.7)
return dict(
(key, value)
for (key, value) in self.entries.items()
if key.startswith("data" + os.sep)
)
def save(self, processes=1, manifests=False):
"""
save will persist any changes that have been made to the bag
metadata (self.info).
If you have modified the payload of the bag (added, modified,
removed files in the data directory) and want to regenerate manifests
set the manifests parameter to True. The default is False since you
wouldn't want a save to accidentally create a new manifest for
a corrupted bag.
If you want to control the number of processes that are used when
recalculating checksums use the processes parameter.
"""
# Error checking
if not self.path:
raise BagError(_("Bag.save() called before setting the path!"))
if not os.access(self.path, os.R_OK | os.W_OK | os.X_OK):
raise BagError(
_("Cannot save bag to non-existent or inaccessible directory %s")
% self.path
)
unbaggable = _can_bag(self.path)
if unbaggable:
LOGGER.error(
_(
"Missing write permissions for the following directories and files:\n%s"
),
unbaggable,
)
raise BagError(_("Missing permissions to move all files and directories"))
unreadable_dirs, unreadable_files = _can_read(self.path)
if unreadable_dirs or unreadable_files:
if unreadable_dirs:
LOGGER.error(
_("The following directories do not have read permissions:\n%s"),
unreadable_dirs,
)
if unreadable_files:
LOGGER.error(
_("The following files do not have read permissions:\n%s"),
unreadable_files,
)
raise BagError(
_("Read permissions are required to calculate file fixities")
)
# Change working directory to bag directory so helper functions work
old_dir = os.path.abspath(os.path.curdir)
os.chdir(self.path)
# Generate new manifest files
if manifests:
total_bytes, total_files = make_manifests(
"data", processes, algorithms=self.algorithms, encoding=self.encoding
)
# Update Payload-Oxum
LOGGER.info(_("Updating Payload-Oxum in %s"), self.tag_file_name)
self.info["Payload-Oxum"] = "%s.%s" % (total_bytes, total_files)
_make_tag_file(self.tag_file_name, self.info)
# Update tag-manifest for changes to manifest & bag-info files
for alg in self.algorithms:
_make_tagmanifest_file(alg, self.path, encoding=self.encoding)
# Reload the manifests
self._load_manifests()
os.chdir(old_dir)
def tagfile_entries(self):
return dict(
(key, value)
for (key, value) in self.entries.items()
if not key.startswith("data" + os.sep)
)
def missing_optional_tagfiles(self):
"""
From v0.97 we need to validate any tagfiles listed
in the optional tagmanifest(s). As there is no mandatory
directory structure for additional tagfiles we can
only check for entries with missing files (not missing
entries for existing files).
"""
for tagfilepath in self.tagfile_entries().keys():
if not os.path.isfile(os.path.join(self.path, tagfilepath)):
yield tagfilepath
def fetch_entries(self):
"""Load fetch.txt if present and iterate over its contents
yields (url, size, filename) tuples
raises BagError for errors such as an unsafe filename referencing
data outside of the bag directory
"""
fetch_file_path = os.path.join(self.path, "fetch.txt")
if os.path.isfile(fetch_file_path):
with open_text_file(
fetch_file_path, "r", encoding=self.encoding
) as fetch_file:
for line in fetch_file:
url, file_size, filename = line.strip().split(None, 2)
if self._path_is_dangerous(filename):
raise BagError(
_('Path "%(payload_file)s" in "%(source_file)s" is unsafe')
% {
"payload_file": filename,
"source_file": os.path.join(self.path, "fetch.txt"),
}
)
yield url, file_size, filename
def files_to_be_fetched(self):
"""
Convenience wrapper for fetch_entries which returns only the
local filename
"""
for url, file_size, filename in self.fetch_entries():
yield filename
def has_oxum(self):
return "Payload-Oxum" in self.info
def validate(self, processes=1, fast=False, completeness_only=False):
"""Checks the structure and contents are valid.
If you supply the parameter fast=True the Payload-Oxum (if present) will
be used to check that the payload files are present and accounted for,
instead of re-calculating fixities and comparing them against the
manifest. By default validate() will re-calculate fixities (fast=False).
"""
self._validate_structure()
self._validate_bagittxt()
self.validate_fetch()
self._validate_contents(
processes=processes, fast=fast, completeness_only=completeness_only
)
return True
def is_valid(self, processes=1, fast=False, completeness_only=False):
"""Returns validation success or failure as boolean.
Optional processes and fast parameters passed directly to validate().
"""
try:
self.validate(
processes=processes, fast=fast, completeness_only=completeness_only
)
except BagError:
return False
return True
def _load_manifests(self):
self.entries = {}
manifests = list(self.manifest_files())
if self.version_info >= (0, 97):
# v0.97+ requires that optional tagfiles are verified.
manifests += list(self.tagmanifest_files())
for manifest_filename in manifests:
if manifest_filename.find("tagmanifest-") != -1:
search = "tagmanifest-"
else:
search = "manifest-"
alg = (
os.path.basename(manifest_filename)
.replace(search, "")
.replace(".txt", "")
)
if alg not in self.algorithms:
self.algorithms.append(alg)
with open_text_file(
manifest_filename, "r", encoding=self.encoding
) as manifest_file:
if manifest_file.encoding.startswith("UTF"):
# We'll check the first character to see if it's a BOM:
if manifest_file.read(1) == UNICODE_BYTE_ORDER_MARK:
# We'll skip it either way by letting line decoding
# happen at the new offset but we will issue a warning
# for UTF-8 since the presence of a BOM is contrary to
# the BagIt specification:
if manifest_file.encoding == "UTF-8":
LOGGER.warning(
_(
"%s is encoded using UTF-8 but contains an unnecessary"
" byte-order mark, which is not in compliance with the"
" BagIt RFC"
),
manifest_file.name,
)
else:
manifest_file.seek(0) # Pretend the first read never happened
for line in manifest_file:
line = line.strip()
# Ignore blank lines and comments.
if line == "" or line.startswith("#"):
continue
entry = line.split(None, 1)
# Format is FILENAME *CHECKSUM
if len(entry) != 2:
LOGGER.error(
_(
"%(bag)s: Invalid %(algorithm)s manifest entry: %(line)s"
),
{"bag": self, "algorithm": alg, "line": line},
)
continue
entry_hash = entry[0]
entry_path = os.path.normpath(entry[1].lstrip("*"))
entry_path = _decode_filename(entry_path)
if self._path_is_dangerous(entry_path):
raise BagError(
_(
'Path "%(payload_file)s" in manifest "%(manifest_file)s" is unsafe'
)
% {
"payload_file": entry_path,
"manifest_file": manifest_file.name,
}
)
entry_hashes = self.entries.setdefault(entry_path, {})
if alg in entry_hashes:
warning_ctx = {
"bag": self,
"algorithm": alg,
"filename": entry_path,
}
if entry_hashes[alg] == entry_hash:
msg = _(
"%(bag)s: %(algorithm)s manifest lists %(filename)s"
" multiple times with the same value"
)
if self.version_info >= (1,):
raise BagError(msg % warning_ctx)
else:
LOGGER.warning(msg, warning_ctx)
else:
raise BagError(
_(
"%(bag)s: %(algorithm)s manifest lists %(filename)s"
" multiple times with conflicting values"
)
% warning_ctx
)
entry_hashes[alg] = entry_hash
self.normalized_manifest_names.update(
(normalize_unicode(i), i) for i in self.entries.keys()
)
def _validate_structure(self):
"""
Checks the structure of the bag to determine whether it conforms to the
BagIt spec. Returns true on success, otherwise it will raise a
BagValidationError exception.
"""
self._validate_structure_payload_directory()
self._validate_structure_tag_files()
def _validate_structure_payload_directory(self):
data_dir_path = os.path.join(self.path, "data")
if not os.path.isdir(data_dir_path):
raise BagValidationError(
_("Expected data directory %s does not exist") % data_dir_path
)
def _validate_structure_tag_files(self):
# Note: we deviate somewhat from v0.96 of the spec in that it allows
# other files and directories to be present in the base directory
if not list(self.manifest_files()):
raise BagValidationError(_("No manifest files found"))
if "bagit.txt" not in os.listdir(self.path):
raise BagValidationError(
_('Expected %s to contain "bagit.txt"') % self.path
)
def validate_fetch(self):
"""Validate the fetch.txt file
Raises `BagError` for errors and otherwise returns no value
"""
for url, file_size, filename in self.fetch_entries():
# fetch_entries will raise a BagError for unsafe filenames
# so at this point we will check only that the URL is minimally
# well formed:
parsed_url = urlparse(url)
# each parsed url must resolve to a scheme and point to a netloc
# if the scheme is file, netloc is not necessary
if not (
all((parsed_url.scheme, parsed_url.netloc))
or parsed_url.scheme == "file"
):
raise BagError(_("Malformed URL in fetch.txt: %s") % url)
def _validate_contents(self, processes=1, fast=False, completeness_only=False):
if fast and not self.has_oxum():
raise BagValidationError(
_("Fast validation requires bag-info.txt to include Payload-Oxum")
)
# Perform the fast file count + size check so we can fail early:
self._validate_oxum()
if fast:
return
self._validate_completeness()
if completeness_only:
return
self._validate_entries(processes)
def _validate_oxum(self):
oxum = self.info.get("Payload-Oxum")
if oxum is None:
return
# If multiple Payload-Oxum tags (bad idea)
# use the first listed in bag-info.txt
if isinstance(oxum, list):
LOGGER.warning(_("bag-info.txt defines multiple Payload-Oxum values!"))
oxum = oxum[0]
oxum_byte_count, oxum_file_count = oxum.split(".", 1)
if not oxum_byte_count.isdigit() or not oxum_file_count.isdigit():
raise BagError(_("Malformed Payload-Oxum value: %s") % oxum)
oxum_byte_count = int(oxum_byte_count)
oxum_file_count = int(oxum_file_count)
total_bytes = 0
total_files = 0
for payload_file in self.payload_files():
payload_file = os.path.join(self.path, payload_file)
total_bytes += os.stat(payload_file).st_size
total_files += 1
if oxum_file_count != total_files or oxum_byte_count != total_bytes:
raise BagValidationError(
_(
"Payload-Oxum validation failed."
" Expected %(oxum_file_count)d files and %(oxum_byte_count)d bytes"
" but found %(found_file_count)d files and %(found_byte_count)d bytes"
)
% {
"found_file_count": total_files,
"found_byte_count": total_bytes,
"oxum_file_count": oxum_file_count,
"oxum_byte_count": oxum_byte_count,
}
)
def _validate_completeness(self):
"""
Verify that the actual file manifests match the files in the data directory
"""
errors = list()
# First we'll make sure there's no mismatch between the filesystem
# and the list of files in the manifest(s)
only_in_manifests, only_on_fs = self.compare_manifests_with_fs()
for path in only_in_manifests:
e = FileMissing(path)
LOGGER.warning(str(e))
errors.append(e)
for path in only_on_fs:
e = UnexpectedFile(path)
LOGGER.warning(str(e))
errors.append(e)
if errors:
raise BagValidationError(_("Bag is incomplete"), errors)
def _validate_entries(self, processes):
"""
Verify that the actual file contents match the recorded hashes stored in the manifest files
"""
errors = list()
if os.name == "posix":
worker_init = posix_multiprocessing_worker_initializer
else:
worker_init = None
args = (
(
self.path,
self.normalized_filesystem_names.get(rel_path, rel_path),
hashes,
self.algorithms,
)
for rel_path, hashes in self.entries.items()
)
try:
if processes == 1:
hash_results = [_calc_hashes(i) for i in args]
else:
pool = multiprocessing.Pool(
processes if processes else None, initializer=worker_init
)
hash_results = pool.map(_calc_hashes, args)
pool.close()
pool.join()
# Any unhandled exceptions are probably fatal
except:
LOGGER.exception(_("Unable to calculate file hashes for %s"), self)
raise
for rel_path, f_hashes, hashes in hash_results:
for alg, computed_hash in f_hashes.items():
stored_hash = hashes[alg]
if stored_hash.lower() != computed_hash:
e = ChecksumMismatch(
rel_path, alg, stored_hash.lower(), computed_hash
)
LOGGER.warning(str(e))
errors.append(e)
if errors:
raise BagValidationError(_("Bag validation failed"), errors)
def _validate_bagittxt(self):
"""
Verify that bagit.txt conforms to specification
"""
bagit_file_path = os.path.join(self.path, "bagit.txt")
# Note that we are intentionally opening this file in binary mode so we can confirm
# that it does not start with the UTF-8 byte-order-mark
with open(bagit_file_path, "rb") as bagit_file:
first_line = bagit_file.read(4)
if first_line.startswith(codecs.BOM_UTF8):
raise BagValidationError(
_("bagit.txt must not contain a byte-order mark")
)
def _path_is_dangerous(self, path):
"""
Return true if path looks dangerous, i.e. potentially operates
outside the bagging directory structure, e.g. ~/.bashrc, ../../../secrets.json,
\\\\?\\c:\\, D:\\sys32\\cmd.exe
"""
if os.path.isabs(path):
return True
if os.path.expanduser(path) != path:
return True
if os.path.expandvars(path) != path:
return True
real_path = os.path.realpath(os.path.join(self.path, path))
real_path = os.path.normpath(real_path)
bag_path = os.path.realpath(self.path)
bag_path = os.path.normpath(bag_path)
common = os.path.commonprefix((bag_path, real_path))
return not (common == bag_path)
class BagError(Exception):
pass
class BagValidationError(BagError):
def __init__(self, message, details=None):
super(BagValidationError, self).__init__()
if details is None:
details = []
self.message = message
self.details = details
def __str__(self):
if len(self.details) > 0:
details = "; ".join([str(e) for e in self.details])
return "%s: %s" % (self.message, details)
return self.message
class ManifestErrorDetail(BagError):
def __init__(self, path):
super(ManifestErrorDetail, self).__init__()
self.path = path
class ChecksumMismatch(ManifestErrorDetail):
def __init__(self, path, algorithm=None, expected=None, found=None):
super(ChecksumMismatch, self).__init__(path)
self.path = path
self.algorithm = algorithm
self.expected = expected
self.found = found
def __str__(self):
return _(
'%(path)s %(algorithm)s validation failed: expected="%(expected)s" found="%(found)s"'
) % {
"path": str(self.path),
"algorithm": self.algorithm,
"expected": self.expected,
"found": self.found,
}
class FileMissing(ManifestErrorDetail):
def __str__(self):
return _("%s exists in manifest but was not found on filesystem") % str(
self.path
)
class UnexpectedFile(ManifestErrorDetail):