blob: 56a2479fb3850a4e4dac10da15b3eebb1c17614f [file] [log] [blame]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001"""
2Read and write ZIP files.
Guido van Rossumd6ca5462007-05-22 01:29:33 +00003
4XXX references to utf-8 need further investigation.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005"""
Antoine Pitroua32f9a22010-01-27 21:18:57 +00006import io
Barry Warsaw28a691b2010-04-17 00:19:56 +00007import os
Antoine Pitroua32f9a22010-01-27 21:18:57 +00008import re
Brett Cannonb57a0852013-06-15 17:32:30 -04009import importlib.util
Barry Warsaw28a691b2010-04-17 00:19:56 +000010import sys
11import time
12import stat
13import shutil
14import struct
15import binascii
16
Serhiy Storchaka9e777732015-10-10 19:43:32 +030017try:
18 import threading
19except ImportError:
20 import dummy_threading as threading
Guido van Rossum32abe6f2000-03-31 17:30:02 +000021
22try:
Tim Peterse1190062001-01-15 03:34:38 +000023 import zlib # We may need its compression method
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000024 crc32 = zlib.crc32
Brett Cannon260fbe82013-07-04 18:16:15 -040025except ImportError:
Guido van Rossum32abe6f2000-03-31 17:30:02 +000026 zlib = None
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000027 crc32 = binascii.crc32
Guido van Rossum32abe6f2000-03-31 17:30:02 +000028
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020029try:
30 import bz2 # We may need its compression method
Brett Cannon260fbe82013-07-04 18:16:15 -040031except ImportError:
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020032 bz2 = None
33
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020034try:
35 import lzma # We may need its compression method
Brett Cannon260fbe82013-07-04 18:16:15 -040036except ImportError:
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020037 lzma = None
38
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020039__all__ = ["BadZipFile", "BadZipfile", "error",
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020040 "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA",
Georg Brandl4d540882010-10-28 06:42:33 +000041 "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"]
Skip Montanaro40fc1602001-03-01 04:27:19 +000042
Georg Brandl4d540882010-10-28 06:42:33 +000043class BadZipFile(Exception):
Guido van Rossum32abe6f2000-03-31 17:30:02 +000044 pass
Thomas Wouters0e3f5912006-08-11 14:57:12 +000045
46
47class LargeZipFile(Exception):
48 """
49 Raised when writing a zipfile, the zipfile requires ZIP64 extensions
50 and those extensions are disabled.
51 """
52
Georg Brandl4d540882010-10-28 06:42:33 +000053error = BadZipfile = BadZipFile # Pre-3.2 compatibility names
54
Guido van Rossum32abe6f2000-03-31 17:30:02 +000055
Amaury Forgeot d'Arc0c3f8a42009-01-17 16:42:26 +000056ZIP64_LIMIT = (1 << 31) - 1
Serhiy Storchakacfbb3942014-09-23 21:34:24 +030057ZIP_FILECOUNT_LIMIT = (1 << 16) - 1
Martin v. Löwisb09b8442008-07-03 14:13:42 +000058ZIP_MAX_COMMENT = (1 << 16) - 1
Thomas Wouters0e3f5912006-08-11 14:57:12 +000059
Guido van Rossum32abe6f2000-03-31 17:30:02 +000060# constants for Zip file compression methods
61ZIP_STORED = 0
62ZIP_DEFLATED = 8
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020063ZIP_BZIP2 = 12
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020064ZIP_LZMA = 14
Guido van Rossum32abe6f2000-03-31 17:30:02 +000065# Other ZIP compression methods not supported
66
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020067DEFAULT_VERSION = 20
68ZIP64_VERSION = 45
69BZIP2_VERSION = 46
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020070LZMA_VERSION = 63
Martin v. Löwisd099b562012-05-01 14:08:22 +020071# we recognize (but not necessarily support) all features up to that version
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020072MAX_EXTRACT_VERSION = 63
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020073
Martin v. Löwisb09b8442008-07-03 14:13:42 +000074# Below are some formats and associated data for reading/writing headers using
75# the struct module. The names and structures of headers/records are those used
76# in the PKWARE description of the ZIP file format:
77# http://www.pkware.com/documents/casestudies/APPNOTE.TXT
78# (URL valid as of January 2008)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000079
Martin v. Löwisb09b8442008-07-03 14:13:42 +000080# The "end of central directory" structure, magic number, size, and indices
81# (section V.I in the format document)
Georg Brandl2ee470f2008-07-16 12:55:28 +000082structEndArchive = b"<4s4H2LH"
83stringEndArchive = b"PK\005\006"
84sizeEndCentDir = struct.calcsize(structEndArchive)
Martin v. Löwisb09b8442008-07-03 14:13:42 +000085
86_ECD_SIGNATURE = 0
87_ECD_DISK_NUMBER = 1
88_ECD_DISK_START = 2
89_ECD_ENTRIES_THIS_DISK = 3
90_ECD_ENTRIES_TOTAL = 4
91_ECD_SIZE = 5
92_ECD_OFFSET = 6
93_ECD_COMMENT_SIZE = 7
94# These last two indices are not part of the structure as defined in the
95# spec, but they are used internally by this module as a convenience
96_ECD_COMMENT = 8
97_ECD_LOCATION = 9
98
99# The "central directory" structure, magic number, size, and indices
100# of entries in the structure (section V.F in the format document)
101structCentralDir = "<4s4B4HL2L5H2L"
Georg Brandl2ee470f2008-07-16 12:55:28 +0000102stringCentralDir = b"PK\001\002"
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000103sizeCentralDir = struct.calcsize(structCentralDir)
104
Fred Drake3e038e52001-02-28 17:56:26 +0000105# indexes of entries in the central directory structure
106_CD_SIGNATURE = 0
107_CD_CREATE_VERSION = 1
108_CD_CREATE_SYSTEM = 2
109_CD_EXTRACT_VERSION = 3
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000110_CD_EXTRACT_SYSTEM = 4
Fred Drake3e038e52001-02-28 17:56:26 +0000111_CD_FLAG_BITS = 5
112_CD_COMPRESS_TYPE = 6
113_CD_TIME = 7
114_CD_DATE = 8
115_CD_CRC = 9
116_CD_COMPRESSED_SIZE = 10
117_CD_UNCOMPRESSED_SIZE = 11
118_CD_FILENAME_LENGTH = 12
119_CD_EXTRA_FIELD_LENGTH = 13
120_CD_COMMENT_LENGTH = 14
121_CD_DISK_NUMBER_START = 15
122_CD_INTERNAL_FILE_ATTRIBUTES = 16
123_CD_EXTERNAL_FILE_ATTRIBUTES = 17
124_CD_LOCAL_HEADER_OFFSET = 18
125
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000126# The "local file header" structure, magic number, size, and indices
127# (section V.A in the format document)
128structFileHeader = "<4s2B4HL2L2H"
Georg Brandl2ee470f2008-07-16 12:55:28 +0000129stringFileHeader = b"PK\003\004"
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000130sizeFileHeader = struct.calcsize(structFileHeader)
131
Fred Drake3e038e52001-02-28 17:56:26 +0000132_FH_SIGNATURE = 0
133_FH_EXTRACT_VERSION = 1
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000134_FH_EXTRACT_SYSTEM = 2
Fred Drake3e038e52001-02-28 17:56:26 +0000135_FH_GENERAL_PURPOSE_FLAG_BITS = 3
136_FH_COMPRESSION_METHOD = 4
137_FH_LAST_MOD_TIME = 5
138_FH_LAST_MOD_DATE = 6
139_FH_CRC = 7
140_FH_COMPRESSED_SIZE = 8
141_FH_UNCOMPRESSED_SIZE = 9
142_FH_FILENAME_LENGTH = 10
143_FH_EXTRA_FIELD_LENGTH = 11
144
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000145# The "Zip64 end of central directory locator" structure, magic number, and size
Georg Brandl2ee470f2008-07-16 12:55:28 +0000146structEndArchive64Locator = "<4sLQL"
147stringEndArchive64Locator = b"PK\x06\x07"
148sizeEndCentDir64Locator = struct.calcsize(structEndArchive64Locator)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000149
150# The "Zip64 end of central directory" record, magic number, size, and indices
151# (section V.G in the format document)
Georg Brandl2ee470f2008-07-16 12:55:28 +0000152structEndArchive64 = "<4sQ2H2L4Q"
153stringEndArchive64 = b"PK\x06\x06"
154sizeEndCentDir64 = struct.calcsize(structEndArchive64)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000155
156_CD64_SIGNATURE = 0
157_CD64_DIRECTORY_RECSIZE = 1
158_CD64_CREATE_VERSION = 2
159_CD64_EXTRACT_VERSION = 3
160_CD64_DISK_NUMBER = 4
161_CD64_DISK_NUMBER_START = 5
162_CD64_NUMBER_ENTRIES_THIS_DISK = 6
163_CD64_NUMBER_ENTRIES_TOTAL = 7
164_CD64_DIRECTORY_SIZE = 8
165_CD64_OFFSET_START_CENTDIR = 9
166
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000167def _check_zipfile(fp):
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000168 try:
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000169 if _EndRecData(fp):
170 return True # file has correct magic number
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200171 except OSError:
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000172 pass
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000173 return False
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000174
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000175def is_zipfile(filename):
176 """Quickly see if a file is a ZIP file by checking the magic number.
177
178 The filename argument may be a file or file-like object too.
179 """
180 result = False
181 try:
182 if hasattr(filename, "read"):
183 result = _check_zipfile(fp=filename)
184 else:
185 with open(filename, "rb") as fp:
186 result = _check_zipfile(fp)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200187 except OSError:
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000188 pass
189 return result
190
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000191def _EndRecData64(fpin, offset, endrec):
192 """
193 Read the ZIP64 end-of-archive records and use that to update endrec
194 """
Georg Brandl268e4d42010-10-14 06:59:45 +0000195 try:
196 fpin.seek(offset - sizeEndCentDir64Locator, 2)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200197 except OSError:
Georg Brandl268e4d42010-10-14 06:59:45 +0000198 # If the seek fails, the file is not large enough to contain a ZIP64
199 # end-of-archive record, so just return the end record we were given.
200 return endrec
201
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000202 data = fpin.read(sizeEndCentDir64Locator)
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200203 if len(data) != sizeEndCentDir64Locator:
204 return endrec
Georg Brandl2ee470f2008-07-16 12:55:28 +0000205 sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data)
206 if sig != stringEndArchive64Locator:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000207 return endrec
208
209 if diskno != 0 or disks != 1:
Éric Araujoae2d8322010-10-28 13:49:17 +0000210 raise BadZipFile("zipfiles that span multiple disks are not supported")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000211
212 # Assume no 'zip64 extensible data'
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000213 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
214 data = fpin.read(sizeEndCentDir64)
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200215 if len(data) != sizeEndCentDir64:
216 return endrec
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000217 sig, sz, create_version, read_version, disk_num, disk_dir, \
Christian Tismer59202e52013-10-21 03:59:23 +0200218 dircount, dircount2, dirsize, diroffset = \
219 struct.unpack(structEndArchive64, data)
Georg Brandl2ee470f2008-07-16 12:55:28 +0000220 if sig != stringEndArchive64:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000221 return endrec
222
223 # Update the original endrec using data from the ZIP64 record
Antoine Pitrou9e4fdf42008-09-05 23:43:02 +0000224 endrec[_ECD_SIGNATURE] = sig
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000225 endrec[_ECD_DISK_NUMBER] = disk_num
226 endrec[_ECD_DISK_START] = disk_dir
227 endrec[_ECD_ENTRIES_THIS_DISK] = dircount
228 endrec[_ECD_ENTRIES_TOTAL] = dircount2
229 endrec[_ECD_SIZE] = dirsize
230 endrec[_ECD_OFFSET] = diroffset
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000231 return endrec
232
233
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000234def _EndRecData(fpin):
235 """Return data from the "End of Central Directory" record, or None.
236
237 The data is a list of the nine items in the ZIP "End of central dir"
238 record followed by a tenth item, the file seek offset of this record."""
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000239
240 # Determine file size
241 fpin.seek(0, 2)
242 filesize = fpin.tell()
243
244 # Check to see if this is ZIP file with no archive comment (the
245 # "end of central directory" structure should be the last item in the
246 # file if this is the case).
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +0000247 try:
248 fpin.seek(-sizeEndCentDir, 2)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200249 except OSError:
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +0000250 return None
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000251 data = fpin.read()
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200252 if (len(data) == sizeEndCentDir and
253 data[0:4] == stringEndArchive and
254 data[-2:] == b"\000\000"):
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000255 # the signature is correct and there's no comment, unpack structure
Georg Brandl2ee470f2008-07-16 12:55:28 +0000256 endrec = struct.unpack(structEndArchive, data)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000257 endrec=list(endrec)
258
259 # Append a blank comment and record start offset
260 endrec.append(b"")
261 endrec.append(filesize - sizeEndCentDir)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000262
Amaury Forgeot d'Arcd3fb4bb2009-01-18 00:29:02 +0000263 # Try to read the "Zip64 end of central directory" structure
264 return _EndRecData64(fpin, -sizeEndCentDir, endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000265
266 # Either this is not a ZIP file, or it is a ZIP file with an archive
267 # comment. Search the end of the file for the "end of central directory"
268 # record signature. The comment is the last item in the ZIP file and may be
269 # up to 64K long. It is assumed that the "end of central directory" magic
270 # number does not appear in the comment.
271 maxCommentStart = max(filesize - (1 << 16) - sizeEndCentDir, 0)
272 fpin.seek(maxCommentStart, 0)
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000273 data = fpin.read()
Georg Brandl2ee470f2008-07-16 12:55:28 +0000274 start = data.rfind(stringEndArchive)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000275 if start >= 0:
276 # found the magic number; attempt to unpack and interpret
277 recData = data[start:start+sizeEndCentDir]
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200278 if len(recData) != sizeEndCentDir:
279 # Zip file is corrupted.
280 return None
Georg Brandl2ee470f2008-07-16 12:55:28 +0000281 endrec = list(struct.unpack(structEndArchive, recData))
R David Murray4fbb9db2011-06-09 15:50:51 -0400282 commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
283 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
284 endrec.append(comment)
285 endrec.append(maxCommentStart + start)
Amaury Forgeot d'Arcd3fb4bb2009-01-18 00:29:02 +0000286
R David Murray4fbb9db2011-06-09 15:50:51 -0400287 # Try to read the "Zip64 end of central directory" structure
288 return _EndRecData64(fpin, maxCommentStart + start - filesize,
289 endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000290
291 # Unable to find a valid end of central directory structure
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200292 return None
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000293
Fred Drake484d7352000-10-02 21:14:52 +0000294
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000295class ZipInfo (object):
Fred Drake484d7352000-10-02 21:14:52 +0000296 """Class with attributes describing each file in the ZIP archive."""
297
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000298 __slots__ = (
Christian Tismer59202e52013-10-21 03:59:23 +0200299 'orig_filename',
300 'filename',
301 'date_time',
302 'compress_type',
303 'comment',
304 'extra',
305 'create_system',
306 'create_version',
307 'extract_version',
308 'reserved',
309 'flag_bits',
310 'volume',
311 'internal_attr',
312 'external_attr',
313 'header_offset',
314 'CRC',
315 'compress_size',
316 'file_size',
317 '_raw_time',
318 )
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000319
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000320 def __init__(self, filename="NoName", date_time=(1980,1,1,0,0,0)):
Greg Ward8e36d282003-06-18 00:53:06 +0000321 self.orig_filename = filename # Original file name in archive
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000322
323 # Terminate the file name at the first null byte. Null bytes in file
324 # names are used as tricks by viruses in archives.
Greg Ward8e36d282003-06-18 00:53:06 +0000325 null_byte = filename.find(chr(0))
326 if null_byte >= 0:
327 filename = filename[0:null_byte]
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000328 # This is used to ensure paths in generated ZIP files always use
329 # forward slashes as the directory separator, as required by the
330 # ZIP format specification.
331 if os.sep != "/" and os.sep in filename:
Greg Ward8e36d282003-06-18 00:53:06 +0000332 filename = filename.replace(os.sep, "/")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000333
Greg Ward8e36d282003-06-18 00:53:06 +0000334 self.filename = filename # Normalized file name
Tim Peterse1190062001-01-15 03:34:38 +0000335 self.date_time = date_time # year, month, day, hour, min, sec
Senthil Kumaran29fa9d42011-10-20 01:46:00 +0800336
337 if date_time[0] < 1980:
338 raise ValueError('ZIP does not support timestamps before 1980')
339
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000340 # Standard values:
Tim Peterse1190062001-01-15 03:34:38 +0000341 self.compress_type = ZIP_STORED # Type of compression for the file
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000342 self.comment = b"" # Comment for each file
343 self.extra = b"" # ZIP extra data
Martin v. Löwis00756902006-02-05 17:09:41 +0000344 if sys.platform == 'win32':
345 self.create_system = 0 # System which created ZIP archive
346 else:
347 # Assume everything else is unix-y
348 self.create_system = 3 # System which created ZIP archive
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200349 self.create_version = DEFAULT_VERSION # Version which created ZIP archive
350 self.extract_version = DEFAULT_VERSION # Version needed to extract archive
Tim Peterse1190062001-01-15 03:34:38 +0000351 self.reserved = 0 # Must be zero
352 self.flag_bits = 0 # ZIP flag bits
353 self.volume = 0 # Volume number of file header
354 self.internal_attr = 0 # Internal attributes
355 self.external_attr = 0 # External file attributes
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000356 # Other attributes are set by class ZipFile:
Tim Peterse1190062001-01-15 03:34:38 +0000357 # header_offset Byte offset to the file header
Tim Peterse1190062001-01-15 03:34:38 +0000358 # CRC CRC-32 of the uncompressed file
359 # compress_size Size of the compressed file
360 # file_size Size of the uncompressed file
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000361
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200362 def __repr__(self):
363 result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)]
364 if self.compress_type != ZIP_STORED:
365 result.append(' compress_type=%s' %
366 compressor_names.get(self.compress_type,
367 self.compress_type))
368 hi = self.external_attr >> 16
369 lo = self.external_attr & 0xFFFF
370 if hi:
371 result.append(' filemode=%r' % stat.filemode(hi))
372 if lo:
373 result.append(' external_attr=%#x' % lo)
374 isdir = self.filename[-1:] == '/'
375 if not isdir or self.file_size:
376 result.append(' file_size=%r' % self.file_size)
377 if ((not isdir or self.compress_size) and
378 (self.compress_type != ZIP_STORED or
379 self.file_size != self.compress_size)):
380 result.append(' compress_size=%r' % self.compress_size)
381 result.append('>')
382 return ''.join(result)
383
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200384 def FileHeader(self, zip64=None):
Fred Drake484d7352000-10-02 21:14:52 +0000385 """Return the per-file header as a string."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000386 dt = self.date_time
387 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
Tim Peters3caca232001-12-06 06:23:26 +0000388 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000389 if self.flag_bits & 0x08:
Tim Peterse1190062001-01-15 03:34:38 +0000390 # Set these to zero because we write them after the file data
391 CRC = compress_size = file_size = 0
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000392 else:
Tim Peterse1190062001-01-15 03:34:38 +0000393 CRC = self.CRC
394 compress_size = self.compress_size
395 file_size = self.file_size
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000396
397 extra = self.extra
398
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200399 min_version = 0
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200400 if zip64 is None:
401 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
402 if zip64:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000403 fmt = '<HHQQ'
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000404 extra = extra + struct.pack(fmt,
Christian Tismer59202e52013-10-21 03:59:23 +0200405 1, struct.calcsize(fmt)-4, file_size, compress_size)
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200406 if file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT:
407 if not zip64:
408 raise LargeZipFile("Filesize would require ZIP64 extensions")
409 # File is larger than what fits into a 4 byte integer,
410 # fall back to the ZIP64 extension
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000411 file_size = 0xffffffff
412 compress_size = 0xffffffff
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200413 min_version = ZIP64_VERSION
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000414
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200415 if self.compress_type == ZIP_BZIP2:
416 min_version = max(BZIP2_VERSION, min_version)
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200417 elif self.compress_type == ZIP_LZMA:
418 min_version = max(LZMA_VERSION, min_version)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200419
420 self.extract_version = max(min_version, self.extract_version)
421 self.create_version = max(min_version, self.create_version)
Martin v. Löwis8570f6a2008-05-05 17:44:38 +0000422 filename, flag_bits = self._encodeFilenameFlags()
Georg Brandl2ee470f2008-07-16 12:55:28 +0000423 header = struct.pack(structFileHeader, stringFileHeader,
Christian Tismer59202e52013-10-21 03:59:23 +0200424 self.extract_version, self.reserved, flag_bits,
425 self.compress_type, dostime, dosdate, CRC,
426 compress_size, file_size,
427 len(filename), len(extra))
Martin v. Löwis8570f6a2008-05-05 17:44:38 +0000428 return header + filename + extra
429
430 def _encodeFilenameFlags(self):
431 try:
432 return self.filename.encode('ascii'), self.flag_bits
433 except UnicodeEncodeError:
434 return self.filename.encode('utf-8'), self.flag_bits | 0x800
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000435
436 def _decodeExtra(self):
437 # Try to decode the extra field.
438 extra = self.extra
439 unpack = struct.unpack
Gregory P. Smith0af8a862014-05-29 23:42:14 -0700440 while len(extra) >= 4:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000441 tp, ln = unpack('<HH', extra[:4])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000442 if tp == 1:
443 if ln >= 24:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000444 counts = unpack('<QQQ', extra[4:28])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000445 elif ln == 16:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000446 counts = unpack('<QQ', extra[4:20])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000447 elif ln == 8:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000448 counts = unpack('<Q', extra[4:12])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000449 elif ln == 0:
450 counts = ()
451 else:
Collin Winterce36ad82007-08-30 01:19:48 +0000452 raise RuntimeError("Corrupt extra field %s"%(ln,))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000453
454 idx = 0
455
456 # ZIP64 extension (large files and/or large archives)
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000457 if self.file_size in (0xffffffffffffffff, 0xffffffff):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000458 self.file_size = counts[idx]
459 idx += 1
460
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000461 if self.compress_size == 0xFFFFFFFF:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000462 self.compress_size = counts[idx]
463 idx += 1
464
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000465 if self.header_offset == 0xffffffff:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000466 old = self.header_offset
467 self.header_offset = counts[idx]
468 idx+=1
469
470 extra = extra[ln+4:]
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000471
472
Thomas Wouterscf297e42007-02-23 15:07:44 +0000473class _ZipDecrypter:
474 """Class to handle decryption of files stored within a ZIP archive.
475
476 ZIP supports a password-based form of encryption. Even though known
477 plaintext attacks have been found against it, it is still useful
Christian Heimesfdab48e2008-01-20 09:06:41 +0000478 to be able to get data out of such a file.
Thomas Wouterscf297e42007-02-23 15:07:44 +0000479
480 Usage:
481 zd = _ZipDecrypter(mypwd)
482 plain_char = zd(cypher_char)
483 plain_text = map(zd, cypher_text)
484 """
485
486 def _GenerateCRCTable():
487 """Generate a CRC-32 table.
488
489 ZIP encryption uses the CRC32 one-byte primitive for scrambling some
490 internal keys. We noticed that a direct implementation is faster than
491 relying on binascii.crc32().
492 """
493 poly = 0xedb88320
494 table = [0] * 256
495 for i in range(256):
496 crc = i
497 for j in range(8):
498 if crc & 1:
499 crc = ((crc >> 1) & 0x7FFFFFFF) ^ poly
500 else:
501 crc = ((crc >> 1) & 0x7FFFFFFF)
502 table[i] = crc
503 return table
Daniel Holth9dee3042014-01-02 23:17:21 -0500504 crctable = None
Thomas Wouterscf297e42007-02-23 15:07:44 +0000505
506 def _crc32(self, ch, crc):
507 """Compute the CRC32 primitive on one byte."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000508 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ch) & 0xff]
Thomas Wouterscf297e42007-02-23 15:07:44 +0000509
510 def __init__(self, pwd):
Daniel Holth9dee3042014-01-02 23:17:21 -0500511 if _ZipDecrypter.crctable is None:
512 _ZipDecrypter.crctable = _ZipDecrypter._GenerateCRCTable()
Thomas Wouterscf297e42007-02-23 15:07:44 +0000513 self.key0 = 305419896
514 self.key1 = 591751049
515 self.key2 = 878082192
516 for p in pwd:
517 self._UpdateKeys(p)
518
519 def _UpdateKeys(self, c):
520 self.key0 = self._crc32(c, self.key0)
521 self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295
522 self.key1 = (self.key1 * 134775813 + 1) & 4294967295
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000523 self.key2 = self._crc32((self.key1 >> 24) & 255, self.key2)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000524
525 def __call__(self, c):
526 """Decrypt a single character."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000527 assert isinstance(c, int)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000528 k = self.key2 | 2
529 c = c ^ (((k * (k^1)) >> 8) & 255)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000530 self._UpdateKeys(c)
531 return c
532
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200533
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200534class LZMACompressor:
535
536 def __init__(self):
537 self._comp = None
538
539 def _init(self):
Nadeem Vawdaa425c3d2012-06-21 23:36:48 +0200540 props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1})
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200541 self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[
Christian Tismer59202e52013-10-21 03:59:23 +0200542 lzma._decode_filter_properties(lzma.FILTER_LZMA1, props)
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200543 ])
544 return struct.pack('<BBH', 9, 4, len(props)) + props
545
546 def compress(self, data):
547 if self._comp is None:
548 return self._init() + self._comp.compress(data)
549 return self._comp.compress(data)
550
551 def flush(self):
552 if self._comp is None:
553 return self._init() + self._comp.flush()
554 return self._comp.flush()
555
556
557class LZMADecompressor:
558
559 def __init__(self):
560 self._decomp = None
561 self._unconsumed = b''
562 self.eof = False
563
564 def decompress(self, data):
565 if self._decomp is None:
566 self._unconsumed += data
567 if len(self._unconsumed) <= 4:
568 return b''
569 psize, = struct.unpack('<H', self._unconsumed[2:4])
570 if len(self._unconsumed) <= 4 + psize:
571 return b''
572
573 self._decomp = lzma.LZMADecompressor(lzma.FORMAT_RAW, filters=[
Christian Tismer59202e52013-10-21 03:59:23 +0200574 lzma._decode_filter_properties(lzma.FILTER_LZMA1,
575 self._unconsumed[4:4 + psize])
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200576 ])
577 data = self._unconsumed[4 + psize:]
578 del self._unconsumed
579
580 result = self._decomp.decompress(data)
581 self.eof = self._decomp.eof
582 return result
583
584
585compressor_names = {
586 0: 'store',
587 1: 'shrink',
588 2: 'reduce',
589 3: 'reduce',
590 4: 'reduce',
591 5: 'reduce',
592 6: 'implode',
593 7: 'tokenize',
594 8: 'deflate',
595 9: 'deflate64',
596 10: 'implode',
597 12: 'bzip2',
598 14: 'lzma',
599 18: 'terse',
600 19: 'lz77',
601 97: 'wavpack',
602 98: 'ppmd',
603}
604
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200605def _check_compression(compression):
606 if compression == ZIP_STORED:
607 pass
608 elif compression == ZIP_DEFLATED:
609 if not zlib:
610 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200611 "Compression requires the (missing) zlib module")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200612 elif compression == ZIP_BZIP2:
613 if not bz2:
614 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200615 "Compression requires the (missing) bz2 module")
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200616 elif compression == ZIP_LZMA:
617 if not lzma:
618 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200619 "Compression requires the (missing) lzma module")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200620 else:
621 raise RuntimeError("That compression method is not supported")
622
623
624def _get_compressor(compress_type):
625 if compress_type == ZIP_DEFLATED:
626 return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION,
Christian Tismer59202e52013-10-21 03:59:23 +0200627 zlib.DEFLATED, -15)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200628 elif compress_type == ZIP_BZIP2:
629 return bz2.BZ2Compressor()
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200630 elif compress_type == ZIP_LZMA:
631 return LZMACompressor()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200632 else:
633 return None
634
635
636def _get_decompressor(compress_type):
Martin v. Löwisb3260f02012-05-01 08:38:01 +0200637 if compress_type == ZIP_STORED:
638 return None
639 elif compress_type == ZIP_DEFLATED:
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200640 return zlib.decompressobj(-15)
641 elif compress_type == ZIP_BZIP2:
642 return bz2.BZ2Decompressor()
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200643 elif compress_type == ZIP_LZMA:
644 return LZMADecompressor()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200645 else:
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200646 descr = compressor_names.get(compress_type)
Martin v. Löwisb3260f02012-05-01 08:38:01 +0200647 if descr:
648 raise NotImplementedError("compression type %d (%s)" % (compress_type, descr))
649 else:
650 raise NotImplementedError("compression type %d" % (compress_type,))
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200651
652
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200653class _SharedFile:
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200654 def __init__(self, file, pos, close, lock):
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200655 self._file = file
656 self._pos = pos
657 self._close = close
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200658 self._lock = lock
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200659
660 def read(self, n=-1):
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200661 with self._lock:
662 self._file.seek(self._pos)
663 data = self._file.read(n)
664 self._pos = self._file.tell()
665 return data
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200666
667 def close(self):
668 if self._file is not None:
669 fileobj = self._file
670 self._file = None
671 self._close(fileobj)
672
Serhiy Storchaka77d89972015-03-23 01:09:35 +0200673# Provide the tell method for unseekable stream
674class _Tellable:
675 def __init__(self, fp):
676 self.fp = fp
677 self.offset = 0
678
679 def write(self, data):
680 n = self.fp.write(data)
681 self.offset += n
682 return n
683
684 def tell(self):
685 return self.offset
686
687 def flush(self):
688 self.fp.flush()
689
690 def close(self):
691 self.fp.close()
692
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200693
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000694class ZipExtFile(io.BufferedIOBase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000695 """File-like object for reading an archive member.
696 Is returned by ZipFile.open().
697 """
698
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000699 # Max size supported by decompressor.
700 MAX_N = 1 << 31 - 1
Guido van Rossumd8faa362007-04-27 19:54:29 +0000701
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000702 # Read from compressed files in 4k blocks.
703 MIN_READ_SIZE = 4096
Guido van Rossumd8faa362007-04-27 19:54:29 +0000704
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000705 # Search for universal newlines or line chunks.
706 PATTERN = re.compile(br'^(?P<chunk>[^\r\n]+)|(?P<newline>\n|\r\n?)')
707
Łukasz Langae94980a2010-11-22 23:31:26 +0000708 def __init__(self, fileobj, mode, zipinfo, decrypter=None,
709 close_fileobj=False):
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000710 self._fileobj = fileobj
711 self._decrypter = decrypter
Łukasz Langae94980a2010-11-22 23:31:26 +0000712 self._close_fileobj = close_fileobj
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000713
Ezio Melotti92b47432010-01-28 01:44:41 +0000714 self._compress_type = zipinfo.compress_type
Ezio Melotti92b47432010-01-28 01:44:41 +0000715 self._compress_left = zipinfo.compress_size
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200716 self._left = zipinfo.file_size
Ezio Melotti92b47432010-01-28 01:44:41 +0000717
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200718 self._decompressor = _get_decompressor(self._compress_type)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000719
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200720 self._eof = False
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000721 self._readbuffer = b''
722 self._offset = 0
723
724 self._universal = 'U' in mode
725 self.newlines = None
726
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000727 # Adjust read size for encrypted files since the first 12 bytes
728 # are for the encryption/password information.
729 if self._decrypter is not None:
730 self._compress_left -= 12
731
732 self.mode = mode
Guido van Rossumd8faa362007-04-27 19:54:29 +0000733 self.name = zipinfo.filename
734
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000735 if hasattr(zipinfo, 'CRC'):
736 self._expected_crc = zipinfo.CRC
Martin Panterb82032f2015-12-11 05:19:29 +0000737 self._running_crc = crc32(b'')
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000738 else:
739 self._expected_crc = None
740
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200741 def __repr__(self):
742 result = ['<%s.%s' % (self.__class__.__module__,
743 self.__class__.__qualname__)]
744 if not self.closed:
745 result.append(' name=%r mode=%r' % (self.name, self.mode))
746 if self._compress_type != ZIP_STORED:
747 result.append(' compress_type=%s' %
748 compressor_names.get(self._compress_type,
749 self._compress_type))
750 else:
751 result.append(' [closed]')
752 result.append('>')
753 return ''.join(result)
754
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000755 def readline(self, limit=-1):
756 """Read and return a line from the stream.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000757
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000758 If limit is specified, at most limit bytes will be read.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000759 """
Guido van Rossumd8faa362007-04-27 19:54:29 +0000760
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000761 if not self._universal and limit < 0:
762 # Shortcut common case - newline found in buffer.
763 i = self._readbuffer.find(b'\n', self._offset) + 1
764 if i > 0:
765 line = self._readbuffer[self._offset: i]
766 self._offset = i
767 return line
Guido van Rossumd8faa362007-04-27 19:54:29 +0000768
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000769 if not self._universal:
770 return io.BufferedIOBase.readline(self, limit)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000771
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000772 line = b''
773 while limit < 0 or len(line) < limit:
774 readahead = self.peek(2)
775 if readahead == b'':
776 return line
Guido van Rossumd8faa362007-04-27 19:54:29 +0000777
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000778 #
779 # Search for universal newlines or line chunks.
780 #
781 # The pattern returns either a line chunk or a newline, but not
782 # both. Combined with peek(2), we are assured that the sequence
783 # '\r\n' is always retrieved completely and never split into
784 # separate newlines - '\r', '\n' due to coincidental readaheads.
785 #
786 match = self.PATTERN.search(readahead)
787 newline = match.group('newline')
788 if newline is not None:
789 if self.newlines is None:
790 self.newlines = []
791 if newline not in self.newlines:
792 self.newlines.append(newline)
793 self._offset += len(newline)
794 return line + b'\n'
Guido van Rossumd8faa362007-04-27 19:54:29 +0000795
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000796 chunk = match.group('chunk')
797 if limit >= 0:
798 chunk = chunk[: limit - len(line)]
Guido van Rossumd8faa362007-04-27 19:54:29 +0000799
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000800 self._offset += len(chunk)
801 line += chunk
Guido van Rossumd8faa362007-04-27 19:54:29 +0000802
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000803 return line
804
805 def peek(self, n=1):
806 """Returns buffered bytes without advancing the position."""
807 if n > len(self._readbuffer) - self._offset:
808 chunk = self.read(n)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200809 if len(chunk) > self._offset:
810 self._readbuffer = chunk + self._readbuffer[self._offset:]
811 self._offset = 0
812 else:
813 self._offset -= len(chunk)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000814
815 # Return up to 512 bytes to reduce allocation overhead for tight loops.
816 return self._readbuffer[self._offset: self._offset + 512]
817
818 def readable(self):
819 return True
820
821 def read(self, n=-1):
822 """Read and return up to n bytes.
823 If the argument is omitted, None, or negative, data is read and returned until EOF is reached..
Guido van Rossumd8faa362007-04-27 19:54:29 +0000824 """
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200825 if n is None or n < 0:
826 buf = self._readbuffer[self._offset:]
827 self._readbuffer = b''
828 self._offset = 0
829 while not self._eof:
830 buf += self._read1(self.MAX_N)
831 return buf
Guido van Rossumd8faa362007-04-27 19:54:29 +0000832
Antoine Pitrou78157b32012-06-23 16:44:48 +0200833 end = n + self._offset
834 if end < len(self._readbuffer):
835 buf = self._readbuffer[self._offset:end]
836 self._offset = end
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200837 return buf
838
Antoine Pitrou78157b32012-06-23 16:44:48 +0200839 n = end - len(self._readbuffer)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200840 buf = self._readbuffer[self._offset:]
841 self._readbuffer = b''
842 self._offset = 0
843 while n > 0 and not self._eof:
844 data = self._read1(n)
845 if n < len(data):
846 self._readbuffer = data
847 self._offset = n
848 buf += data[:n]
849 break
850 buf += data
851 n -= len(data)
852 return buf
853
854 def _update_crc(self, newdata):
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000855 # Update the CRC using the given data.
856 if self._expected_crc is None:
857 # No need to compute the CRC if we don't have a reference value
858 return
Martin Panterb82032f2015-12-11 05:19:29 +0000859 self._running_crc = crc32(newdata, self._running_crc)
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000860 # Check the CRC if we're at the end of the file
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200861 if self._eof and self._running_crc != self._expected_crc:
Georg Brandl4d540882010-10-28 06:42:33 +0000862 raise BadZipFile("Bad CRC-32 for file %r" % self.name)
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000863
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000864 def read1(self, n):
865 """Read up to n bytes with at most one read() system call."""
Guido van Rossumd8faa362007-04-27 19:54:29 +0000866
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200867 if n is None or n < 0:
868 buf = self._readbuffer[self._offset:]
869 self._readbuffer = b''
870 self._offset = 0
Serhiy Storchakad2c07a52013-09-27 22:11:57 +0300871 while not self._eof:
872 data = self._read1(self.MAX_N)
873 if data:
874 buf += data
875 break
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200876 return buf
Guido van Rossumd8faa362007-04-27 19:54:29 +0000877
Antoine Pitrou78157b32012-06-23 16:44:48 +0200878 end = n + self._offset
879 if end < len(self._readbuffer):
880 buf = self._readbuffer[self._offset:end]
881 self._offset = end
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200882 return buf
883
Antoine Pitrou78157b32012-06-23 16:44:48 +0200884 n = end - len(self._readbuffer)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200885 buf = self._readbuffer[self._offset:]
886 self._readbuffer = b''
887 self._offset = 0
888 if n > 0:
Serhiy Storchakad2c07a52013-09-27 22:11:57 +0300889 while not self._eof:
890 data = self._read1(n)
891 if n < len(data):
892 self._readbuffer = data
893 self._offset = n
894 buf += data[:n]
895 break
896 if data:
897 buf += data
898 break
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200899 return buf
900
901 def _read1(self, n):
902 # Read up to n compressed bytes with at most one read() system call,
903 # decrypt and decompress them.
904 if self._eof or n <= 0:
905 return b''
Guido van Rossumd8faa362007-04-27 19:54:29 +0000906
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000907 # Read from file.
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200908 if self._compress_type == ZIP_DEFLATED:
909 ## Handle unconsumed data.
910 data = self._decompressor.unconsumed_tail
911 if n > len(data):
912 data += self._read2(n - len(data))
913 else:
914 data = self._read2(n)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000915
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200916 if self._compress_type == ZIP_STORED:
917 self._eof = self._compress_left <= 0
918 elif self._compress_type == ZIP_DEFLATED:
919 n = max(n, self.MIN_READ_SIZE)
920 data = self._decompressor.decompress(data, n)
921 self._eof = (self._decompressor.eof or
Christian Tismer59202e52013-10-21 03:59:23 +0200922 self._compress_left <= 0 and
923 not self._decompressor.unconsumed_tail)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200924 if self._eof:
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000925 data += self._decompressor.flush()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200926 else:
927 data = self._decompressor.decompress(data)
928 self._eof = self._decompressor.eof or self._compress_left <= 0
Guido van Rossumd8faa362007-04-27 19:54:29 +0000929
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200930 data = data[:self._left]
931 self._left -= len(data)
932 if self._left <= 0:
933 self._eof = True
934 self._update_crc(data)
935 return data
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000936
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200937 def _read2(self, n):
938 if self._compress_left <= 0:
939 return b''
940
941 n = max(n, self.MIN_READ_SIZE)
942 n = min(n, self._compress_left)
943
944 data = self._fileobj.read(n)
945 self._compress_left -= len(data)
Serhiy Storchaka5ce3f102014-01-09 14:50:20 +0200946 if not data:
947 raise EOFError
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200948
949 if self._decrypter is not None:
950 data = bytes(map(self._decrypter, data))
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000951 return data
Guido van Rossumd8faa362007-04-27 19:54:29 +0000952
Łukasz Langae94980a2010-11-22 23:31:26 +0000953 def close(self):
954 try:
955 if self._close_fileobj:
956 self._fileobj.close()
957 finally:
958 super().close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000959
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000960
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000961class ZipFile:
Tim Petersa19a1682001-03-29 04:36:09 +0000962 """ Class with methods to open, read, write, close, list zip files.
963
Serhiy Storchaka235c5e02013-11-23 15:55:38 +0200964 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=True)
Tim Petersa19a1682001-03-29 04:36:09 +0000965
Fred Drake3d9091e2001-03-26 15:49:24 +0000966 file: Either the path to the file, or a file-like object.
967 If it is a path, the file will be opened and closed by ZipFile.
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +0200968 mode: The mode can be either read 'r', write 'w', exclusive create 'x',
969 or append 'a'.
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200970 compression: ZIP_STORED (no compression), ZIP_DEFLATED (requires zlib),
971 ZIP_BZIP2 (requires bz2) or ZIP_LZMA (requires lzma).
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000972 allowZip64: if True ZipFile will create files with ZIP64 extensions when
973 needed, otherwise it will raise an exception when this would
974 be necessary.
975
Fred Drake3d9091e2001-03-26 15:49:24 +0000976 """
Fred Drake484d7352000-10-02 21:14:52 +0000977
Fred Drake90eac282001-02-28 05:29:34 +0000978 fp = None # Set here since __del__ checks it
Gregory P. Smith09aa7522013-02-03 00:36:32 -0800979 _windows_illegal_name_trans_table = None
Fred Drake90eac282001-02-28 05:29:34 +0000980
Serhiy Storchaka235c5e02013-11-23 15:55:38 +0200981 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True):
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +0200982 """Open the ZIP file with mode read 'r', write 'w', exclusive create 'x',
983 or append 'a'."""
984 if mode not in ('r', 'w', 'x', 'a'):
985 raise RuntimeError("ZipFile requires mode 'r', 'w', 'x', or 'a'")
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000986
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200987 _check_compression(compression)
Guido van Rossumb5a755e2007-07-18 18:15:48 +0000988
989 self._allowZip64 = allowZip64
990 self._didModify = False
Tim Peterse1190062001-01-15 03:34:38 +0000991 self.debug = 0 # Level of printing: 0 through 3
992 self.NameToInfo = {} # Find file info given name
993 self.filelist = [] # List of ZipInfo instances for archive
994 self.compression = compression # Method of compression
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200995 self.mode = mode
Thomas Wouterscf297e42007-02-23 15:07:44 +0000996 self.pwd = None
R David Murrayf50b38a2012-04-12 18:44:58 -0400997 self._comment = b''
Tim Petersa19a1682001-03-29 04:36:09 +0000998
Fred Drake3d9091e2001-03-26 15:49:24 +0000999 # Check if we were passed a file-like object
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001000 if isinstance(file, str):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001001 # No, it's a filename
Fred Drake3d9091e2001-03-26 15:49:24 +00001002 self._filePassed = 0
1003 self.filename = file
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001004 modeDict = {'r' : 'rb', 'w': 'w+b', 'x': 'x+b', 'a' : 'r+b',
1005 'r+b': 'w+b', 'w+b': 'wb', 'x+b': 'xb'}
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001006 filemode = modeDict[mode]
1007 while True:
1008 try:
1009 self.fp = io.open(file, filemode)
1010 except OSError:
1011 if filemode in modeDict:
1012 filemode = modeDict[filemode]
1013 continue
Thomas Wouterscf297e42007-02-23 15:07:44 +00001014 raise
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001015 break
Fred Drake3d9091e2001-03-26 15:49:24 +00001016 else:
1017 self._filePassed = 1
1018 self.fp = file
1019 self.filename = getattr(file, 'name', None)
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001020 self._fileRefCnt = 1
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001021 self._lock = threading.RLock()
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001022 self._seekable = True
Tim Petersa19a1682001-03-29 04:36:09 +00001023
Antoine Pitrou17babc52012-11-17 23:50:08 +01001024 try:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001025 if mode == 'r':
Martin v. Löwis6f6873b2002-10-13 13:54:50 +00001026 self._RealGetContents()
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001027 elif mode in ('w', 'x'):
Georg Brandl268e4d42010-10-14 06:59:45 +00001028 # set the modified flag so central directory gets written
1029 # even if no files are added to the archive
1030 self._didModify = True
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001031 try:
1032 self.start_dir = self.fp.tell()
1033 except (AttributeError, OSError):
1034 self.fp = _Tellable(self.fp)
1035 self.start_dir = 0
1036 self._seekable = False
1037 else:
1038 # Some file-like objects can provide tell() but not seek()
1039 try:
1040 self.fp.seek(self.start_dir)
1041 except (AttributeError, OSError):
1042 self._seekable = False
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001043 elif mode == 'a':
Antoine Pitrou17babc52012-11-17 23:50:08 +01001044 try:
1045 # See if file is a zip file
1046 self._RealGetContents()
1047 # seek to start of directory and overwrite
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001048 self.fp.seek(self.start_dir)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001049 except BadZipFile:
1050 # file is not a zip file, just append
1051 self.fp.seek(0, 2)
1052
1053 # set the modified flag so central directory gets written
1054 # even if no files are added to the archive
1055 self._didModify = True
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001056 self.start_dir = self.fp.tell()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001057 else:
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001058 raise RuntimeError("Mode must be 'r', 'w', 'x', or 'a'")
Antoine Pitrou17babc52012-11-17 23:50:08 +01001059 except:
1060 fp = self.fp
1061 self.fp = None
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001062 self._fpclose(fp)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001063 raise
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001064
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001065 def __enter__(self):
1066 return self
1067
1068 def __exit__(self, type, value, traceback):
1069 self.close()
1070
Serhiy Storchaka51a43702014-10-29 22:42:06 +02001071 def __repr__(self):
1072 result = ['<%s.%s' % (self.__class__.__module__,
1073 self.__class__.__qualname__)]
1074 if self.fp is not None:
1075 if self._filePassed:
1076 result.append(' file=%r' % self.fp)
1077 elif self.filename is not None:
1078 result.append(' filename=%r' % self.filename)
1079 result.append(' mode=%r' % self.mode)
1080 else:
1081 result.append(' [closed]')
1082 result.append('>')
1083 return ''.join(result)
1084
Tim Peters7d3bad62001-04-04 18:56:49 +00001085 def _RealGetContents(self):
Fred Drake484d7352000-10-02 21:14:52 +00001086 """Read in the table of contents for the ZIP file."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001087 fp = self.fp
Georg Brandl268e4d42010-10-14 06:59:45 +00001088 try:
1089 endrec = _EndRecData(fp)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001090 except OSError:
Georg Brandl4d540882010-10-28 06:42:33 +00001091 raise BadZipFile("File is not a zip file")
Martin v. Löwis6f6873b2002-10-13 13:54:50 +00001092 if not endrec:
Georg Brandl4d540882010-10-28 06:42:33 +00001093 raise BadZipFile("File is not a zip file")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001094 if self.debug > 1:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001095 print(endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001096 size_cd = endrec[_ECD_SIZE] # bytes in central directory
1097 offset_cd = endrec[_ECD_OFFSET] # offset of central directory
R David Murrayf50b38a2012-04-12 18:44:58 -04001098 self._comment = endrec[_ECD_COMMENT] # archive comment
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001099
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001100 # "concat" is zero, unless zip was concatenated to another file
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001101 concat = endrec[_ECD_LOCATION] - size_cd - offset_cd
Antoine Pitrou9e4fdf42008-09-05 23:43:02 +00001102 if endrec[_ECD_SIGNATURE] == stringEndArchive64:
1103 # If Zip64 extension structures are present, account for them
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001104 concat -= (sizeEndCentDir64 + sizeEndCentDir64Locator)
1105
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001106 if self.debug > 2:
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001107 inferred = concat + offset_cd
1108 print("given, inferred, offset", offset_cd, inferred, concat)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001109 # self.start_dir: Position of start of central directory
1110 self.start_dir = offset_cd + concat
1111 fp.seek(self.start_dir, 0)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001112 data = fp.read(size_cd)
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001113 fp = io.BytesIO(data)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001114 total = 0
1115 while total < size_cd:
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001116 centdir = fp.read(sizeCentralDir)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001117 if len(centdir) != sizeCentralDir:
1118 raise BadZipFile("Truncated central directory")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001119 centdir = struct.unpack(structCentralDir, centdir)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001120 if centdir[_CD_SIGNATURE] != stringCentralDir:
1121 raise BadZipFile("Bad magic number for central directory")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001122 if self.debug > 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001123 print(centdir)
Fred Drake3e038e52001-02-28 17:56:26 +00001124 filename = fp.read(centdir[_CD_FILENAME_LENGTH])
Martin v. Löwis8570f6a2008-05-05 17:44:38 +00001125 flags = centdir[5]
1126 if flags & 0x800:
1127 # UTF-8 file names extension
1128 filename = filename.decode('utf-8')
1129 else:
1130 # Historical ZIP filename encoding
1131 filename = filename.decode('cp437')
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001132 # Create ZipInfo instance to store file information
Martin v. Löwis8570f6a2008-05-05 17:44:38 +00001133 x = ZipInfo(filename)
Fred Drake3e038e52001-02-28 17:56:26 +00001134 x.extra = fp.read(centdir[_CD_EXTRA_FIELD_LENGTH])
1135 x.comment = fp.read(centdir[_CD_COMMENT_LENGTH])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001136 x.header_offset = centdir[_CD_LOCAL_HEADER_OFFSET]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001137 (x.create_version, x.create_system, x.extract_version, x.reserved,
Christian Tismer59202e52013-10-21 03:59:23 +02001138 x.flag_bits, x.compress_type, t, d,
1139 x.CRC, x.compress_size, x.file_size) = centdir[1:12]
Martin v. Löwisd099b562012-05-01 14:08:22 +02001140 if x.extract_version > MAX_EXTRACT_VERSION:
1141 raise NotImplementedError("zip file version %.1f" %
1142 (x.extract_version / 10))
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001143 x.volume, x.internal_attr, x.external_attr = centdir[15:18]
1144 # Convert date/time code to (year, month, day, hour, min, sec)
Christian Heimesfdab48e2008-01-20 09:06:41 +00001145 x._raw_time = t
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001146 x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F,
Christian Tismer59202e52013-10-21 03:59:23 +02001147 t>>11, (t>>5)&0x3F, (t&0x1F) * 2 )
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001148
1149 x._decodeExtra()
1150 x.header_offset = x.header_offset + concat
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001151 self.filelist.append(x)
1152 self.NameToInfo[x.filename] = x
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001153
1154 # update total bytes read from central directory
1155 total = (total + sizeCentralDir + centdir[_CD_FILENAME_LENGTH]
1156 + centdir[_CD_EXTRA_FIELD_LENGTH]
1157 + centdir[_CD_COMMENT_LENGTH])
1158
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001159 if self.debug > 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001160 print("total", total)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001161
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001162
1163 def namelist(self):
Fred Drake484d7352000-10-02 21:14:52 +00001164 """Return a list of file names in the archive."""
Ezio Melotti006917e2012-04-16 21:34:24 -06001165 return [data.filename for data in self.filelist]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001166
1167 def infolist(self):
Fred Drake484d7352000-10-02 21:14:52 +00001168 """Return a list of class ZipInfo instances for files in the
1169 archive."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001170 return self.filelist
1171
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001172 def printdir(self, file=None):
Fred Drake484d7352000-10-02 21:14:52 +00001173 """Print a table of contents for the zip file."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001174 print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"),
1175 file=file)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001176 for zinfo in self.filelist:
Guido van Rossum7736b5b2008-01-15 21:44:53 +00001177 date = "%d-%02d-%02d %02d:%02d:%02d" % zinfo.date_time[:6]
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001178 print("%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size),
1179 file=file)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001180
1181 def testzip(self):
Fred Drake484d7352000-10-02 21:14:52 +00001182 """Read all the files and check the CRC."""
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00001183 chunk_size = 2 ** 20
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001184 for zinfo in self.filelist:
1185 try:
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00001186 # Read by chunks, to avoid an OverflowError or a
1187 # MemoryError with very large embedded files.
Antoine Pitrou17babc52012-11-17 23:50:08 +01001188 with self.open(zinfo.filename, "r") as f:
1189 while f.read(chunk_size): # Check CRC-32
1190 pass
Georg Brandl4d540882010-10-28 06:42:33 +00001191 except BadZipFile:
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001192 return zinfo.filename
1193
1194 def getinfo(self, name):
Fred Drake484d7352000-10-02 21:14:52 +00001195 """Return the instance of ZipInfo given 'name'."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001196 info = self.NameToInfo.get(name)
1197 if info is None:
1198 raise KeyError(
1199 'There is no item named %r in the archive' % name)
1200
1201 return info
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001202
Thomas Wouterscf297e42007-02-23 15:07:44 +00001203 def setpassword(self, pwd):
1204 """Set default password for encrypted files."""
R. David Murray8d855d82010-12-21 21:53:37 +00001205 if pwd and not isinstance(pwd, bytes):
1206 raise TypeError("pwd: expected bytes, got %s" % type(pwd))
1207 if pwd:
1208 self.pwd = pwd
1209 else:
1210 self.pwd = None
Thomas Wouterscf297e42007-02-23 15:07:44 +00001211
R David Murrayf50b38a2012-04-12 18:44:58 -04001212 @property
1213 def comment(self):
1214 """The comment text associated with the ZIP file."""
1215 return self._comment
1216
1217 @comment.setter
1218 def comment(self, comment):
1219 if not isinstance(comment, bytes):
1220 raise TypeError("comment: expected bytes, got %s" % type(comment))
1221 # check for valid comment length
Serhiy Storchaka9b7a1a12014-01-20 21:57:40 +02001222 if len(comment) > ZIP_MAX_COMMENT:
1223 import warnings
1224 warnings.warn('Archive comment is too long; truncating to %d bytes'
1225 % ZIP_MAX_COMMENT, stacklevel=2)
R David Murrayf50b38a2012-04-12 18:44:58 -04001226 comment = comment[:ZIP_MAX_COMMENT]
1227 self._comment = comment
1228 self._didModify = True
1229
Thomas Wouterscf297e42007-02-23 15:07:44 +00001230 def read(self, name, pwd=None):
Fred Drake484d7352000-10-02 21:14:52 +00001231 """Return file bytes (as a string) for name."""
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001232 with self.open(name, "r", pwd) as fp:
1233 return fp.read()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001234
1235 def open(self, name, mode="r", pwd=None):
1236 """Return file-like object for 'name'."""
1237 if mode not in ("r", "U", "rU"):
Collin Winterce36ad82007-08-30 01:19:48 +00001238 raise RuntimeError('open() requires mode "r", "U", or "rU"')
Serhiy Storchaka6787a382013-11-23 22:12:06 +02001239 if 'U' in mode:
1240 import warnings
1241 warnings.warn("'U' mode is deprecated",
1242 DeprecationWarning, 2)
R. David Murray8d855d82010-12-21 21:53:37 +00001243 if pwd and not isinstance(pwd, bytes):
1244 raise TypeError("pwd: expected bytes, got %s" % type(pwd))
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001245 if not self.fp:
Collin Winterce36ad82007-08-30 01:19:48 +00001246 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +02001247 "Attempt to read ZIP archive that was already closed")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001248
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001249 # Make sure we have an info object
1250 if isinstance(name, ZipInfo):
1251 # 'name' is already an info object
1252 zinfo = name
Guido van Rossumd8faa362007-04-27 19:54:29 +00001253 else:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001254 # Get info object for name
1255 zinfo = self.getinfo(name)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001256
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001257 self._fileRefCnt += 1
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001258 zef_file = _SharedFile(self.fp, zinfo.header_offset, self._fpclose, self._lock)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001259 try:
Antoine Pitrou17babc52012-11-17 23:50:08 +01001260 # Skip the file header:
1261 fheader = zef_file.read(sizeFileHeader)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001262 if len(fheader) != sizeFileHeader:
1263 raise BadZipFile("Truncated file header")
1264 fheader = struct.unpack(structFileHeader, fheader)
1265 if fheader[_FH_SIGNATURE] != stringFileHeader:
Antoine Pitrou17babc52012-11-17 23:50:08 +01001266 raise BadZipFile("Bad magic number for file header")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001267
Antoine Pitrou17babc52012-11-17 23:50:08 +01001268 fname = zef_file.read(fheader[_FH_FILENAME_LENGTH])
1269 if fheader[_FH_EXTRA_FIELD_LENGTH]:
1270 zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001271
Antoine Pitrou8572da52012-11-17 23:52:05 +01001272 if zinfo.flag_bits & 0x20:
1273 # Zip 2.7: compressed patched data
1274 raise NotImplementedError("compressed patched data (flag bit 5)")
Martin v. Löwis2a2ce322012-05-01 08:44:08 +02001275
Antoine Pitrou8572da52012-11-17 23:52:05 +01001276 if zinfo.flag_bits & 0x40:
1277 # strong encryption
1278 raise NotImplementedError("strong encryption (flag bit 6)")
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001279
Antoine Pitrou17babc52012-11-17 23:50:08 +01001280 if zinfo.flag_bits & 0x800:
1281 # UTF-8 filename
1282 fname_str = fname.decode("utf-8")
1283 else:
1284 fname_str = fname.decode("cp437")
Georg Brandl5ba11de2011-01-01 10:09:32 +00001285
Antoine Pitrou17babc52012-11-17 23:50:08 +01001286 if fname_str != zinfo.orig_filename:
1287 raise BadZipFile(
1288 'File name in directory %r and header %r differ.'
1289 % (zinfo.orig_filename, fname))
1290
1291 # check for encrypted flag & handle password
1292 is_encrypted = zinfo.flag_bits & 0x1
1293 zd = None
1294 if is_encrypted:
1295 if not pwd:
1296 pwd = self.pwd
1297 if not pwd:
1298 raise RuntimeError("File %s is encrypted, password "
1299 "required for extraction" % name)
1300
1301 zd = _ZipDecrypter(pwd)
1302 # The first 12 bytes in the cypher stream is an encryption header
1303 # used to strengthen the algorithm. The first 11 bytes are
1304 # completely random, while the 12th contains the MSB of the CRC,
1305 # or the MSB of the file time depending on the header type
1306 # and is used to check the correctness of the password.
1307 header = zef_file.read(12)
1308 h = list(map(zd, header[0:12]))
1309 if zinfo.flag_bits & 0x8:
1310 # compare against the file type from extended local headers
1311 check_byte = (zinfo._raw_time >> 8) & 0xff
1312 else:
1313 # compare against the CRC otherwise
1314 check_byte = (zinfo.CRC >> 24) & 0xff
1315 if h[11] != check_byte:
1316 raise RuntimeError("Bad password for file", name)
1317
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001318 return ZipExtFile(zef_file, mode, zinfo, zd, True)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001319 except:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001320 zef_file.close()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001321 raise
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001322
Christian Heimes790c8232008-01-07 21:14:23 +00001323 def extract(self, member, path=None, pwd=None):
1324 """Extract a member from the archive to the current working directory,
1325 using its full name. Its file information is extracted as accurately
1326 as possible. `member' may be a filename or a ZipInfo object. You can
1327 specify a different directory using `path'.
1328 """
1329 if not isinstance(member, ZipInfo):
1330 member = self.getinfo(member)
1331
1332 if path is None:
1333 path = os.getcwd()
1334
1335 return self._extract_member(member, path, pwd)
1336
1337 def extractall(self, path=None, members=None, pwd=None):
1338 """Extract all members from the archive to the current working
1339 directory. `path' specifies a different directory to extract to.
1340 `members' is optional and must be a subset of the list returned
1341 by namelist().
1342 """
1343 if members is None:
1344 members = self.namelist()
1345
1346 for zipinfo in members:
1347 self.extract(zipinfo, path, pwd)
1348
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001349 @classmethod
1350 def _sanitize_windows_name(cls, arcname, pathsep):
1351 """Replace bad characters and remove trailing dots from parts."""
1352 table = cls._windows_illegal_name_trans_table
1353 if not table:
1354 illegal = ':<>|"?*'
1355 table = str.maketrans(illegal, '_' * len(illegal))
1356 cls._windows_illegal_name_trans_table = table
1357 arcname = arcname.translate(table)
1358 # remove trailing dots
1359 arcname = (x.rstrip('.') for x in arcname.split(pathsep))
1360 # rejoin, removing empty parts.
1361 arcname = pathsep.join(x for x in arcname if x)
1362 return arcname
1363
Christian Heimes790c8232008-01-07 21:14:23 +00001364 def _extract_member(self, member, targetpath, pwd):
1365 """Extract the ZipInfo object 'member' to a physical
1366 file on the path targetpath.
1367 """
1368 # build the destination pathname, replacing
1369 # forward slashes to platform specific separators.
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001370 arcname = member.filename.replace('/', os.path.sep)
Christian Heimes790c8232008-01-07 21:14:23 +00001371
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001372 if os.path.altsep:
1373 arcname = arcname.replace(os.path.altsep, os.path.sep)
1374 # interpret absolute pathname as relative, remove drive letter or
1375 # UNC path, redundant separators, "." and ".." components.
1376 arcname = os.path.splitdrive(arcname)[1]
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001377 invalid_path_parts = ('', os.path.curdir, os.path.pardir)
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001378 arcname = os.path.sep.join(x for x in arcname.split(os.path.sep)
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001379 if x not in invalid_path_parts)
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001380 if os.path.sep == '\\':
Serhiy Storchakae5e64442013-02-02 19:50:59 +02001381 # filter illegal characters on Windows
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001382 arcname = self._sanitize_windows_name(arcname, os.path.sep)
Christian Heimes790c8232008-01-07 21:14:23 +00001383
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001384 targetpath = os.path.join(targetpath, arcname)
Christian Heimes790c8232008-01-07 21:14:23 +00001385 targetpath = os.path.normpath(targetpath)
1386
1387 # Create all upper directories if necessary.
1388 upperdirs = os.path.dirname(targetpath)
1389 if upperdirs and not os.path.exists(upperdirs):
1390 os.makedirs(upperdirs)
1391
Martin v. Löwis59e47792009-01-24 14:10:07 +00001392 if member.filename[-1] == '/':
Martin v. Löwis70ccd162009-05-24 19:47:22 +00001393 if not os.path.isdir(targetpath):
1394 os.mkdir(targetpath)
Martin v. Löwis59e47792009-01-24 14:10:07 +00001395 return targetpath
1396
Antoine Pitrou17babc52012-11-17 23:50:08 +01001397 with self.open(member, pwd=pwd) as source, \
1398 open(targetpath, "wb") as target:
1399 shutil.copyfileobj(source, target)
Christian Heimes790c8232008-01-07 21:14:23 +00001400
1401 return targetpath
1402
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001403 def _writecheck(self, zinfo):
Fred Drake484d7352000-10-02 21:14:52 +00001404 """Check for errors before writing a file to the archive."""
Raymond Hettinger54f02222002-06-01 14:18:47 +00001405 if zinfo.filename in self.NameToInfo:
Serhiy Storchaka9b7a1a12014-01-20 21:57:40 +02001406 import warnings
1407 warnings.warn('Duplicate name: %r' % zinfo.filename, stacklevel=3)
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001408 if self.mode not in ('w', 'x', 'a'):
1409 raise RuntimeError("write() requires mode 'w', 'x', or 'a'")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001410 if not self.fp:
Collin Winterce36ad82007-08-30 01:19:48 +00001411 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +02001412 "Attempt to write ZIP archive that was already closed")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001413 _check_compression(zinfo.compress_type)
Serhiy Storchakacfbb3942014-09-23 21:34:24 +03001414 if not self._allowZip64:
1415 requires_zip64 = None
1416 if len(self.filelist) >= ZIP_FILECOUNT_LIMIT:
1417 requires_zip64 = "Files count"
1418 elif zinfo.file_size > ZIP64_LIMIT:
1419 requires_zip64 = "Filesize"
1420 elif zinfo.header_offset > ZIP64_LIMIT:
1421 requires_zip64 = "Zipfile size"
1422 if requires_zip64:
1423 raise LargeZipFile(requires_zip64 +
1424 " would require ZIP64 extensions")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001425
1426 def write(self, filename, arcname=None, compress_type=None):
Fred Drake484d7352000-10-02 21:14:52 +00001427 """Put the bytes from filename into the archive under the name
1428 arcname."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001429 if not self.fp:
1430 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +02001431 "Attempt to write to ZIP archive that was already closed")
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001432
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001433 st = os.stat(filename)
Martin v. Löwis59e47792009-01-24 14:10:07 +00001434 isdir = stat.S_ISDIR(st.st_mode)
Raymond Hettinger32200ae2002-06-01 19:51:15 +00001435 mtime = time.localtime(st.st_mtime)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001436 date_time = mtime[0:6]
1437 # Create ZipInfo instance to store file information
1438 if arcname is None:
Georg Brandl8f7c54e2006-02-20 08:40:38 +00001439 arcname = filename
1440 arcname = os.path.normpath(os.path.splitdrive(arcname)[1])
1441 while arcname[0] in (os.sep, os.altsep):
1442 arcname = arcname[1:]
Martin v. Löwis59e47792009-01-24 14:10:07 +00001443 if isdir:
1444 arcname += '/'
Georg Brandl8f7c54e2006-02-20 08:40:38 +00001445 zinfo = ZipInfo(arcname, date_time)
Guido van Rossume2a383d2007-01-15 16:59:06 +00001446 zinfo.external_attr = (st[0] & 0xFFFF) << 16 # Unix attributes
Serhiy Storchaka8bc792a2015-11-22 14:49:58 +02001447 if isdir:
1448 zinfo.compress_type = ZIP_STORED
1449 elif compress_type is None:
Tim Peterse1190062001-01-15 03:34:38 +00001450 zinfo.compress_type = self.compression
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001451 else:
Tim Peterse1190062001-01-15 03:34:38 +00001452 zinfo.compress_type = compress_type
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001453
1454 zinfo.file_size = st.st_size
Finn Bock03a3bb82001-09-05 18:40:33 +00001455 zinfo.flag_bits = 0x00
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001456 with self._lock:
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001457 if self._seekable:
1458 self.fp.seek(self.start_dir)
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001459 zinfo.header_offset = self.fp.tell() # Start of header bytes
1460 if zinfo.compress_type == ZIP_LZMA:
1461 # Compressed data includes an end-of-stream (EOS) marker
1462 zinfo.flag_bits |= 0x02
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001463
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001464 self._writecheck(zinfo)
1465 self._didModify = True
Martin v. Löwis59e47792009-01-24 14:10:07 +00001466
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001467 if isdir:
1468 zinfo.file_size = 0
1469 zinfo.compress_size = 0
1470 zinfo.CRC = 0
1471 zinfo.external_attr |= 0x10 # MS-DOS directory flag
1472 self.filelist.append(zinfo)
1473 self.NameToInfo[zinfo.filename] = zinfo
1474 self.fp.write(zinfo.FileHeader(False))
1475 self.start_dir = self.fp.tell()
1476 return
1477
1478 cmpr = _get_compressor(zinfo.compress_type)
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001479 if not self._seekable:
1480 zinfo.flag_bits |= 0x08
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001481 with open(filename, "rb") as fp:
1482 # Must overwrite CRC and sizes with correct data later
1483 zinfo.CRC = CRC = 0
1484 zinfo.compress_size = compress_size = 0
1485 # Compressed size can be larger than uncompressed size
1486 zip64 = self._allowZip64 and \
1487 zinfo.file_size * 1.05 > ZIP64_LIMIT
1488 self.fp.write(zinfo.FileHeader(zip64))
1489 file_size = 0
1490 while 1:
1491 buf = fp.read(1024 * 8)
1492 if not buf:
1493 break
1494 file_size = file_size + len(buf)
Martin Panterb82032f2015-12-11 05:19:29 +00001495 CRC = crc32(buf, CRC)
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001496 if cmpr:
1497 buf = cmpr.compress(buf)
1498 compress_size = compress_size + len(buf)
1499 self.fp.write(buf)
1500 if cmpr:
1501 buf = cmpr.flush()
1502 compress_size = compress_size + len(buf)
1503 self.fp.write(buf)
1504 zinfo.compress_size = compress_size
1505 else:
1506 zinfo.compress_size = file_size
1507 zinfo.CRC = CRC
1508 zinfo.file_size = file_size
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001509 if zinfo.flag_bits & 0x08:
1510 # Write CRC and file sizes after the file data
1511 fmt = '<LQQ' if zip64 else '<LLL'
1512 self.fp.write(struct.pack(fmt, zinfo.CRC, zinfo.compress_size,
1513 zinfo.file_size))
1514 self.start_dir = self.fp.tell()
1515 else:
1516 if not zip64 and self._allowZip64:
1517 if file_size > ZIP64_LIMIT:
1518 raise RuntimeError('File size has increased during compressing')
1519 if compress_size > ZIP64_LIMIT:
1520 raise RuntimeError('Compressed size larger than uncompressed size')
1521 # Seek backwards and write file header (which will now include
1522 # correct CRC and file sizes)
1523 self.start_dir = self.fp.tell() # Preserve current position in file
1524 self.fp.seek(zinfo.header_offset)
1525 self.fp.write(zinfo.FileHeader(zip64))
1526 self.fp.seek(self.start_dir)
Martin v. Löwis59e47792009-01-24 14:10:07 +00001527 self.filelist.append(zinfo)
1528 self.NameToInfo[zinfo.filename] = zinfo
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001529
Ronald Oussorenee5c8852010-02-07 20:24:02 +00001530 def writestr(self, zinfo_or_arcname, data, compress_type=None):
Guido van Rossum85825dc2007-08-27 17:03:28 +00001531 """Write a file into the archive. The contents is 'data', which
1532 may be either a 'str' or a 'bytes' instance; if it is a 'str',
1533 it is encoded as UTF-8 first.
1534 'zinfo_or_arcname' is either a ZipInfo instance or
Just van Rossumb083cb32002-12-12 12:23:32 +00001535 the name of the file in the archive."""
Guido van Rossum85825dc2007-08-27 17:03:28 +00001536 if isinstance(data, str):
1537 data = data.encode("utf-8")
Just van Rossumb083cb32002-12-12 12:23:32 +00001538 if not isinstance(zinfo_or_arcname, ZipInfo):
1539 zinfo = ZipInfo(filename=zinfo_or_arcname,
Guido van Rossum7736b5b2008-01-15 21:44:53 +00001540 date_time=time.localtime(time.time())[:6])
Just van Rossumb083cb32002-12-12 12:23:32 +00001541 zinfo.compress_type = self.compression
Serhiy Storchaka46a34922014-09-23 22:40:23 +03001542 if zinfo.filename[-1] == '/':
1543 zinfo.external_attr = 0o40775 << 16 # drwxrwxr-x
1544 zinfo.external_attr |= 0x10 # MS-DOS directory flag
1545 else:
1546 zinfo.external_attr = 0o600 << 16 # ?rw-------
Just van Rossumb083cb32002-12-12 12:23:32 +00001547 else:
1548 zinfo = zinfo_or_arcname
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001549
1550 if not self.fp:
1551 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +02001552 "Attempt to write to ZIP archive that was already closed")
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001553
Guido van Rossum85825dc2007-08-27 17:03:28 +00001554 zinfo.file_size = len(data) # Uncompressed size
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001555 with self._lock:
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001556 if self._seekable:
Serhiy Storchakaa14f7d22015-01-26 14:01:27 +02001557 self.fp.seek(self.start_dir)
Serhiy Storchakaa14f7d22015-01-26 14:01:27 +02001558 zinfo.header_offset = self.fp.tell() # Start of header data
1559 if compress_type is not None:
1560 zinfo.compress_type = compress_type
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001561 zinfo.header_offset = self.fp.tell() # Start of header data
1562 if compress_type is not None:
1563 zinfo.compress_type = compress_type
1564 if zinfo.compress_type == ZIP_LZMA:
1565 # Compressed data includes an end-of-stream (EOS) marker
1566 zinfo.flag_bits |= 0x02
Ronald Oussorenee5c8852010-02-07 20:24:02 +00001567
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001568 self._writecheck(zinfo)
1569 self._didModify = True
Martin Panterb82032f2015-12-11 05:19:29 +00001570 zinfo.CRC = crc32(data) # CRC-32 checksum
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001571 co = _get_compressor(zinfo.compress_type)
1572 if co:
1573 data = co.compress(data) + co.flush()
1574 zinfo.compress_size = len(data) # Compressed size
1575 else:
1576 zinfo.compress_size = zinfo.file_size
1577 zip64 = zinfo.file_size > ZIP64_LIMIT or \
1578 zinfo.compress_size > ZIP64_LIMIT
1579 if zip64 and not self._allowZip64:
1580 raise LargeZipFile("Filesize would require ZIP64 extensions")
1581 self.fp.write(zinfo.FileHeader(zip64))
1582 self.fp.write(data)
1583 if zinfo.flag_bits & 0x08:
1584 # Write CRC and file sizes after the file data
1585 fmt = '<LQQ' if zip64 else '<LLL'
1586 self.fp.write(struct.pack(fmt, zinfo.CRC, zinfo.compress_size,
1587 zinfo.file_size))
1588 self.fp.flush()
1589 self.start_dir = self.fp.tell()
1590 self.filelist.append(zinfo)
1591 self.NameToInfo[zinfo.filename] = zinfo
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001592
1593 def __del__(self):
Fred Drake484d7352000-10-02 21:14:52 +00001594 """Call the "close()" method in case the user forgot."""
Tim Petersd15f8bb2001-11-28 23:16:40 +00001595 self.close()
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001596
1597 def close(self):
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001598 """Close the file, and for mode 'w', 'x' and 'a' write the ending
Fred Drake484d7352000-10-02 21:14:52 +00001599 records."""
Tim Petersd15f8bb2001-11-28 23:16:40 +00001600 if self.fp is None:
1601 return
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001602
Antoine Pitrou17babc52012-11-17 23:50:08 +01001603 try:
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001604 if self.mode in ('w', 'x', 'a') and self._didModify: # write ending records
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001605 with self._lock:
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001606 if self._seekable:
Serhiy Storchakaa14f7d22015-01-26 14:01:27 +02001607 self.fp.seek(self.start_dir)
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001608 self._write_end_record()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001609 finally:
1610 fp = self.fp
1611 self.fp = None
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001612 self._fpclose(fp)
1613
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001614 def _write_end_record(self):
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001615 for zinfo in self.filelist: # write central directory
1616 dt = zinfo.date_time
1617 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
1618 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
1619 extra = []
1620 if zinfo.file_size > ZIP64_LIMIT \
1621 or zinfo.compress_size > ZIP64_LIMIT:
1622 extra.append(zinfo.file_size)
1623 extra.append(zinfo.compress_size)
1624 file_size = 0xffffffff
1625 compress_size = 0xffffffff
1626 else:
1627 file_size = zinfo.file_size
1628 compress_size = zinfo.compress_size
1629
1630 if zinfo.header_offset > ZIP64_LIMIT:
1631 extra.append(zinfo.header_offset)
1632 header_offset = 0xffffffff
1633 else:
1634 header_offset = zinfo.header_offset
1635
1636 extra_data = zinfo.extra
1637 min_version = 0
1638 if extra:
1639 # Append a ZIP64 field to the extra's
1640 extra_data = struct.pack(
1641 '<HH' + 'Q'*len(extra),
1642 1, 8*len(extra), *extra) + extra_data
1643
1644 min_version = ZIP64_VERSION
1645
1646 if zinfo.compress_type == ZIP_BZIP2:
1647 min_version = max(BZIP2_VERSION, min_version)
1648 elif zinfo.compress_type == ZIP_LZMA:
1649 min_version = max(LZMA_VERSION, min_version)
1650
1651 extract_version = max(min_version, zinfo.extract_version)
1652 create_version = max(min_version, zinfo.create_version)
1653 try:
1654 filename, flag_bits = zinfo._encodeFilenameFlags()
1655 centdir = struct.pack(structCentralDir,
1656 stringCentralDir, create_version,
1657 zinfo.create_system, extract_version, zinfo.reserved,
1658 flag_bits, zinfo.compress_type, dostime, dosdate,
1659 zinfo.CRC, compress_size, file_size,
1660 len(filename), len(extra_data), len(zinfo.comment),
1661 0, zinfo.internal_attr, zinfo.external_attr,
1662 header_offset)
1663 except DeprecationWarning:
1664 print((structCentralDir, stringCentralDir, create_version,
1665 zinfo.create_system, extract_version, zinfo.reserved,
1666 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
1667 zinfo.CRC, compress_size, file_size,
1668 len(zinfo.filename), len(extra_data), len(zinfo.comment),
1669 0, zinfo.internal_attr, zinfo.external_attr,
1670 header_offset), file=sys.stderr)
1671 raise
1672 self.fp.write(centdir)
1673 self.fp.write(filename)
1674 self.fp.write(extra_data)
1675 self.fp.write(zinfo.comment)
1676
1677 pos2 = self.fp.tell()
1678 # Write end-of-zip-archive record
1679 centDirCount = len(self.filelist)
1680 centDirSize = pos2 - self.start_dir
1681 centDirOffset = self.start_dir
1682 requires_zip64 = None
1683 if centDirCount > ZIP_FILECOUNT_LIMIT:
1684 requires_zip64 = "Files count"
1685 elif centDirOffset > ZIP64_LIMIT:
1686 requires_zip64 = "Central directory offset"
1687 elif centDirSize > ZIP64_LIMIT:
1688 requires_zip64 = "Central directory size"
1689 if requires_zip64:
1690 # Need to write the ZIP64 end-of-archive records
1691 if not self._allowZip64:
1692 raise LargeZipFile(requires_zip64 +
1693 " would require ZIP64 extensions")
1694 zip64endrec = struct.pack(
1695 structEndArchive64, stringEndArchive64,
1696 44, 45, 45, 0, 0, centDirCount, centDirCount,
1697 centDirSize, centDirOffset)
1698 self.fp.write(zip64endrec)
1699
1700 zip64locrec = struct.pack(
1701 structEndArchive64Locator,
1702 stringEndArchive64Locator, 0, pos2, 1)
1703 self.fp.write(zip64locrec)
1704 centDirCount = min(centDirCount, 0xFFFF)
1705 centDirSize = min(centDirSize, 0xFFFFFFFF)
1706 centDirOffset = min(centDirOffset, 0xFFFFFFFF)
1707
1708 endrec = struct.pack(structEndArchive, stringEndArchive,
1709 0, 0, centDirCount, centDirCount,
1710 centDirSize, centDirOffset, len(self._comment))
1711 self.fp.write(endrec)
1712 self.fp.write(self._comment)
1713 self.fp.flush()
1714
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001715 def _fpclose(self, fp):
1716 assert self._fileRefCnt > 0
1717 self._fileRefCnt -= 1
1718 if not self._fileRefCnt and not self._filePassed:
1719 fp.close()
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001720
1721
1722class PyZipFile(ZipFile):
Fred Drake484d7352000-10-02 21:14:52 +00001723 """Class to create ZIP archives with Python library files and packages."""
1724
Georg Brandl8334fd92010-12-04 10:26:46 +00001725 def __init__(self, file, mode="r", compression=ZIP_STORED,
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001726 allowZip64=True, optimize=-1):
Georg Brandl8334fd92010-12-04 10:26:46 +00001727 ZipFile.__init__(self, file, mode=mode, compression=compression,
1728 allowZip64=allowZip64)
1729 self._optimize = optimize
1730
Christian Tismer59202e52013-10-21 03:59:23 +02001731 def writepy(self, pathname, basename="", filterfunc=None):
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001732 """Add all files from "pathname" to the ZIP archive.
1733
Fred Drake484d7352000-10-02 21:14:52 +00001734 If pathname is a package directory, search the directory and
1735 all package subdirectories recursively for all *.py and enter
1736 the modules into the archive. If pathname is a plain
1737 directory, listdir *.py and enter all modules. Else, pathname
1738 must be a Python *.py file and the module will be put into the
Brett Cannonf299abd2015-04-13 14:21:02 -04001739 archive. Added modules are always module.pyc.
Fred Drake484d7352000-10-02 21:14:52 +00001740 This method will compile the module.py into module.pyc if
1741 necessary.
Christian Tismer59202e52013-10-21 03:59:23 +02001742 If filterfunc(pathname) is given, it is called with every argument.
1743 When it is False, the file or directory is skipped.
Fred Drake484d7352000-10-02 21:14:52 +00001744 """
Christian Tismer59202e52013-10-21 03:59:23 +02001745 if filterfunc and not filterfunc(pathname):
1746 if self.debug:
Christian Tismer410d9312013-10-22 04:09:28 +02001747 label = 'path' if os.path.isdir(pathname) else 'file'
1748 print('%s "%s" skipped by filterfunc' % (label, pathname))
Christian Tismer59202e52013-10-21 03:59:23 +02001749 return
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001750 dir, name = os.path.split(pathname)
1751 if os.path.isdir(pathname):
1752 initname = os.path.join(pathname, "__init__.py")
1753 if os.path.isfile(initname):
1754 # This is a package directory, add it
1755 if basename:
1756 basename = "%s/%s" % (basename, name)
1757 else:
1758 basename = name
1759 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001760 print("Adding package in", pathname, "as", basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001761 fname, arcname = self._get_codename(initname[0:-3], basename)
1762 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001763 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001764 self.write(fname, arcname)
1765 dirlist = os.listdir(pathname)
1766 dirlist.remove("__init__.py")
1767 # Add all *.py files and package subdirectories
1768 for filename in dirlist:
1769 path = os.path.join(pathname, filename)
1770 root, ext = os.path.splitext(filename)
1771 if os.path.isdir(path):
1772 if os.path.isfile(os.path.join(path, "__init__.py")):
1773 # This is a package directory, add it
Christian Tismer59202e52013-10-21 03:59:23 +02001774 self.writepy(path, basename,
1775 filterfunc=filterfunc) # Recursive call
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001776 elif ext == ".py":
Christian Tismer410d9312013-10-22 04:09:28 +02001777 if filterfunc and not filterfunc(path):
1778 if self.debug:
1779 print('file "%s" skipped by filterfunc' % path)
1780 continue
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001781 fname, arcname = self._get_codename(path[0:-3],
Christian Tismer59202e52013-10-21 03:59:23 +02001782 basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001783 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001784 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001785 self.write(fname, arcname)
1786 else:
1787 # This is NOT a package directory, add its files at top level
1788 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001789 print("Adding files from directory", pathname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001790 for filename in os.listdir(pathname):
1791 path = os.path.join(pathname, filename)
1792 root, ext = os.path.splitext(filename)
1793 if ext == ".py":
Christian Tismer410d9312013-10-22 04:09:28 +02001794 if filterfunc and not filterfunc(path):
1795 if self.debug:
1796 print('file "%s" skipped by filterfunc' % path)
1797 continue
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001798 fname, arcname = self._get_codename(path[0:-3],
Christian Tismer59202e52013-10-21 03:59:23 +02001799 basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001800 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001801 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001802 self.write(fname, arcname)
1803 else:
1804 if pathname[-3:] != ".py":
Collin Winterce36ad82007-08-30 01:19:48 +00001805 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +02001806 'Files added with writepy() must end with ".py"')
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001807 fname, arcname = self._get_codename(pathname[0:-3], basename)
1808 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001809 print("Adding file", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001810 self.write(fname, arcname)
1811
1812 def _get_codename(self, pathname, basename):
1813 """Return (filename, archivename) for the path.
1814
Fred Drake484d7352000-10-02 21:14:52 +00001815 Given a module name path, return the correct file path and
1816 archive name, compiling if necessary. For example, given
1817 /python/lib/string, return (/python/lib/string.pyc, string).
1818 """
Georg Brandl8334fd92010-12-04 10:26:46 +00001819 def _compile(file, optimize=-1):
1820 import py_compile
1821 if self.debug:
1822 print("Compiling", file)
1823 try:
1824 py_compile.compile(file, doraise=True, optimize=optimize)
Serhiy Storchaka45c43752013-01-29 20:10:28 +02001825 except py_compile.PyCompileError as err:
Georg Brandl8334fd92010-12-04 10:26:46 +00001826 print(err.msg)
1827 return False
1828 return True
1829
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001830 file_py = pathname + ".py"
1831 file_pyc = pathname + ".pyc"
Brett Cannonf299abd2015-04-13 14:21:02 -04001832 pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='')
1833 pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1)
1834 pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2)
Georg Brandl8334fd92010-12-04 10:26:46 +00001835 if self._optimize == -1:
1836 # legacy mode: use whatever file is present
Brett Cannonf299abd2015-04-13 14:21:02 -04001837 if (os.path.isfile(file_pyc) and
Georg Brandl8334fd92010-12-04 10:26:46 +00001838 os.stat(file_pyc).st_mtime >= os.stat(file_py).st_mtime):
1839 # Use .pyc file.
1840 arcname = fname = file_pyc
Brett Cannonf299abd2015-04-13 14:21:02 -04001841 elif (os.path.isfile(pycache_opt0) and
1842 os.stat(pycache_opt0).st_mtime >= os.stat(file_py).st_mtime):
Georg Brandl8334fd92010-12-04 10:26:46 +00001843 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
1844 # file name in the archive.
Brett Cannonf299abd2015-04-13 14:21:02 -04001845 fname = pycache_opt0
Georg Brandl8334fd92010-12-04 10:26:46 +00001846 arcname = file_pyc
Brett Cannonf299abd2015-04-13 14:21:02 -04001847 elif (os.path.isfile(pycache_opt1) and
1848 os.stat(pycache_opt1).st_mtime >= os.stat(file_py).st_mtime):
1849 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
Georg Brandl8334fd92010-12-04 10:26:46 +00001850 # file name in the archive.
Brett Cannonf299abd2015-04-13 14:21:02 -04001851 fname = pycache_opt1
1852 arcname = file_pyc
1853 elif (os.path.isfile(pycache_opt2) and
1854 os.stat(pycache_opt2).st_mtime >= os.stat(file_py).st_mtime):
1855 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
1856 # file name in the archive.
1857 fname = pycache_opt2
1858 arcname = file_pyc
Barry Warsaw28a691b2010-04-17 00:19:56 +00001859 else:
Georg Brandl8334fd92010-12-04 10:26:46 +00001860 # Compile py into PEP 3147 pyc file.
1861 if _compile(file_py):
Brett Cannonf299abd2015-04-13 14:21:02 -04001862 if sys.flags.optimize == 0:
1863 fname = pycache_opt0
1864 elif sys.flags.optimize == 1:
1865 fname = pycache_opt1
1866 else:
1867 fname = pycache_opt2
1868 arcname = file_pyc
Georg Brandl8334fd92010-12-04 10:26:46 +00001869 else:
1870 fname = arcname = file_py
1871 else:
1872 # new mode: use given optimization level
1873 if self._optimize == 0:
Brett Cannonf299abd2015-04-13 14:21:02 -04001874 fname = pycache_opt0
Georg Brandl8334fd92010-12-04 10:26:46 +00001875 arcname = file_pyc
1876 else:
Brett Cannonf299abd2015-04-13 14:21:02 -04001877 arcname = file_pyc
1878 if self._optimize == 1:
1879 fname = pycache_opt1
1880 elif self._optimize == 2:
1881 fname = pycache_opt2
1882 else:
1883 msg = "invalid value for 'optimize': {!r}".format(self._optimize)
1884 raise ValueError(msg)
Georg Brandl8334fd92010-12-04 10:26:46 +00001885 if not (os.path.isfile(fname) and
1886 os.stat(fname).st_mtime >= os.stat(file_py).st_mtime):
1887 if not _compile(file_py, optimize=self._optimize):
1888 fname = arcname = file_py
Barry Warsaw28a691b2010-04-17 00:19:56 +00001889 archivename = os.path.split(arcname)[1]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001890 if basename:
1891 archivename = "%s/%s" % (basename, archivename)
1892 return (fname, archivename)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001893
1894
1895def main(args = None):
1896 import textwrap
1897 USAGE=textwrap.dedent("""\
1898 Usage:
1899 zipfile.py -l zipfile.zip # Show listing of a zipfile
1900 zipfile.py -t zipfile.zip # Test if a zipfile is valid
1901 zipfile.py -e zipfile.zip target # Extract zipfile into target dir
1902 zipfile.py -c zipfile.zip src ... # Create zipfile from sources
1903 """)
1904 if args is None:
1905 args = sys.argv[1:]
1906
1907 if not args or args[0] not in ('-l', '-c', '-e', '-t'):
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001908 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001909 sys.exit(1)
1910
1911 if args[0] == '-l':
1912 if len(args) != 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001913 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001914 sys.exit(1)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001915 with ZipFile(args[1], 'r') as zf:
1916 zf.printdir()
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001917
1918 elif args[0] == '-t':
1919 if len(args) != 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001920 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001921 sys.exit(1)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001922 with ZipFile(args[1], 'r') as zf:
1923 badfile = zf.testzip()
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001924 if badfile:
1925 print("The following enclosed file is corrupted: {!r}".format(badfile))
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001926 print("Done testing")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001927
1928 elif args[0] == '-e':
1929 if len(args) != 3:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001930 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001931 sys.exit(1)
1932
Antoine Pitrou17babc52012-11-17 23:50:08 +01001933 with ZipFile(args[1], 'r') as zf:
Serhiy Storchaka97f17ff2014-08-17 15:14:48 +03001934 zf.extractall(args[2])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001935
1936 elif args[0] == '-c':
1937 if len(args) < 3:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001938 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001939 sys.exit(1)
1940
1941 def addToZip(zf, path, zippath):
1942 if os.path.isfile(path):
1943 zf.write(path, zippath, ZIP_DEFLATED)
1944 elif os.path.isdir(path):
Serhiy Storchaka518e71b2014-10-04 13:39:34 +03001945 if zippath:
1946 zf.write(path, zippath)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001947 for nm in os.listdir(path):
1948 addToZip(zf,
Christian Tismer59202e52013-10-21 03:59:23 +02001949 os.path.join(path, nm), os.path.join(zippath, nm))
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001950 # else: ignore
1951
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001952 with ZipFile(args[1], 'w') as zf:
Serhiy Storchaka518e71b2014-10-04 13:39:34 +03001953 for path in args[2:]:
1954 zippath = os.path.basename(path)
1955 if not zippath:
1956 zippath = os.path.basename(os.path.dirname(path))
1957 if zippath in ('', os.curdir, os.pardir):
1958 zippath = ''
1959 addToZip(zf, path, zippath)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001960
1961if __name__ == "__main__":
1962 main()