Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1 | """ |
| 2 | Read and write ZIP files. |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 3 | |
| 4 | XXX references to utf-8 need further investigation. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 5 | """ |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 6 | import io |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 7 | import os |
Brett Cannon | b57a085 | 2013-06-15 17:32:30 -0400 | [diff] [blame] | 8 | import importlib.util |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 9 | import sys |
| 10 | import time |
| 11 | import stat |
| 12 | import shutil |
| 13 | import struct |
| 14 | import binascii |
Antoine Pitrou | a6a4dc8 | 2017-09-07 18:56:24 +0200 | [diff] [blame] | 15 | import threading |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 16 | |
| 17 | try: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 18 | import zlib # We may need its compression method |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 19 | crc32 = zlib.crc32 |
Brett Cannon | 260fbe8 | 2013-07-04 18:16:15 -0400 | [diff] [blame] | 20 | except ImportError: |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 21 | zlib = None |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 22 | crc32 = binascii.crc32 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 23 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 24 | try: |
| 25 | import bz2 # We may need its compression method |
Brett Cannon | 260fbe8 | 2013-07-04 18:16:15 -0400 | [diff] [blame] | 26 | except ImportError: |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 27 | bz2 = None |
| 28 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 29 | try: |
| 30 | import lzma # We may need its compression method |
Brett Cannon | 260fbe8 | 2013-07-04 18:16:15 -0400 | [diff] [blame] | 31 | except ImportError: |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 32 | lzma = None |
| 33 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 34 | __all__ = ["BadZipFile", "BadZipfile", "error", |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 35 | "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA", |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 36 | "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"] |
Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 37 | |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 38 | class BadZipFile(Exception): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 39 | pass |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 40 | |
| 41 | |
| 42 | class LargeZipFile(Exception): |
| 43 | """ |
| 44 | Raised when writing a zipfile, the zipfile requires ZIP64 extensions |
| 45 | and those extensions are disabled. |
| 46 | """ |
| 47 | |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 48 | error = BadZipfile = BadZipFile # Pre-3.2 compatibility names |
| 49 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 50 | |
Amaury Forgeot d'Arc | 0c3f8a4 | 2009-01-17 16:42:26 +0000 | [diff] [blame] | 51 | ZIP64_LIMIT = (1 << 31) - 1 |
Serhiy Storchaka | cfbb394 | 2014-09-23 21:34:24 +0300 | [diff] [blame] | 52 | ZIP_FILECOUNT_LIMIT = (1 << 16) - 1 |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 53 | ZIP_MAX_COMMENT = (1 << 16) - 1 |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 54 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 55 | # constants for Zip file compression methods |
| 56 | ZIP_STORED = 0 |
| 57 | ZIP_DEFLATED = 8 |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 58 | ZIP_BZIP2 = 12 |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 59 | ZIP_LZMA = 14 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 60 | # Other ZIP compression methods not supported |
| 61 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 62 | DEFAULT_VERSION = 20 |
| 63 | ZIP64_VERSION = 45 |
| 64 | BZIP2_VERSION = 46 |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 65 | LZMA_VERSION = 63 |
Martin v. Löwis | d099b56 | 2012-05-01 14:08:22 +0200 | [diff] [blame] | 66 | # we recognize (but not necessarily support) all features up to that version |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 67 | MAX_EXTRACT_VERSION = 63 |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 68 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 69 | # Below are some formats and associated data for reading/writing headers using |
| 70 | # the struct module. The names and structures of headers/records are those used |
| 71 | # in the PKWARE description of the ZIP file format: |
| 72 | # http://www.pkware.com/documents/casestudies/APPNOTE.TXT |
| 73 | # (URL valid as of January 2008) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 74 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 75 | # The "end of central directory" structure, magic number, size, and indices |
| 76 | # (section V.I in the format document) |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 77 | structEndArchive = b"<4s4H2LH" |
| 78 | stringEndArchive = b"PK\005\006" |
| 79 | sizeEndCentDir = struct.calcsize(structEndArchive) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 80 | |
| 81 | _ECD_SIGNATURE = 0 |
| 82 | _ECD_DISK_NUMBER = 1 |
| 83 | _ECD_DISK_START = 2 |
| 84 | _ECD_ENTRIES_THIS_DISK = 3 |
| 85 | _ECD_ENTRIES_TOTAL = 4 |
| 86 | _ECD_SIZE = 5 |
| 87 | _ECD_OFFSET = 6 |
| 88 | _ECD_COMMENT_SIZE = 7 |
| 89 | # These last two indices are not part of the structure as defined in the |
| 90 | # spec, but they are used internally by this module as a convenience |
| 91 | _ECD_COMMENT = 8 |
| 92 | _ECD_LOCATION = 9 |
| 93 | |
| 94 | # The "central directory" structure, magic number, size, and indices |
| 95 | # of entries in the structure (section V.F in the format document) |
| 96 | structCentralDir = "<4s4B4HL2L5H2L" |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 97 | stringCentralDir = b"PK\001\002" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 98 | sizeCentralDir = struct.calcsize(structCentralDir) |
| 99 | |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 100 | # indexes of entries in the central directory structure |
| 101 | _CD_SIGNATURE = 0 |
| 102 | _CD_CREATE_VERSION = 1 |
| 103 | _CD_CREATE_SYSTEM = 2 |
| 104 | _CD_EXTRACT_VERSION = 3 |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 105 | _CD_EXTRACT_SYSTEM = 4 |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 106 | _CD_FLAG_BITS = 5 |
| 107 | _CD_COMPRESS_TYPE = 6 |
| 108 | _CD_TIME = 7 |
| 109 | _CD_DATE = 8 |
| 110 | _CD_CRC = 9 |
| 111 | _CD_COMPRESSED_SIZE = 10 |
| 112 | _CD_UNCOMPRESSED_SIZE = 11 |
| 113 | _CD_FILENAME_LENGTH = 12 |
| 114 | _CD_EXTRA_FIELD_LENGTH = 13 |
| 115 | _CD_COMMENT_LENGTH = 14 |
| 116 | _CD_DISK_NUMBER_START = 15 |
| 117 | _CD_INTERNAL_FILE_ATTRIBUTES = 16 |
| 118 | _CD_EXTERNAL_FILE_ATTRIBUTES = 17 |
| 119 | _CD_LOCAL_HEADER_OFFSET = 18 |
| 120 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 121 | # The "local file header" structure, magic number, size, and indices |
| 122 | # (section V.A in the format document) |
| 123 | structFileHeader = "<4s2B4HL2L2H" |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 124 | stringFileHeader = b"PK\003\004" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 125 | sizeFileHeader = struct.calcsize(structFileHeader) |
| 126 | |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 127 | _FH_SIGNATURE = 0 |
| 128 | _FH_EXTRACT_VERSION = 1 |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 129 | _FH_EXTRACT_SYSTEM = 2 |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 130 | _FH_GENERAL_PURPOSE_FLAG_BITS = 3 |
| 131 | _FH_COMPRESSION_METHOD = 4 |
| 132 | _FH_LAST_MOD_TIME = 5 |
| 133 | _FH_LAST_MOD_DATE = 6 |
| 134 | _FH_CRC = 7 |
| 135 | _FH_COMPRESSED_SIZE = 8 |
| 136 | _FH_UNCOMPRESSED_SIZE = 9 |
| 137 | _FH_FILENAME_LENGTH = 10 |
| 138 | _FH_EXTRA_FIELD_LENGTH = 11 |
| 139 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 140 | # The "Zip64 end of central directory locator" structure, magic number, and size |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 141 | structEndArchive64Locator = "<4sLQL" |
| 142 | stringEndArchive64Locator = b"PK\x06\x07" |
| 143 | sizeEndCentDir64Locator = struct.calcsize(structEndArchive64Locator) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 144 | |
| 145 | # The "Zip64 end of central directory" record, magic number, size, and indices |
| 146 | # (section V.G in the format document) |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 147 | structEndArchive64 = "<4sQ2H2L4Q" |
| 148 | stringEndArchive64 = b"PK\x06\x06" |
| 149 | sizeEndCentDir64 = struct.calcsize(structEndArchive64) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 150 | |
| 151 | _CD64_SIGNATURE = 0 |
| 152 | _CD64_DIRECTORY_RECSIZE = 1 |
| 153 | _CD64_CREATE_VERSION = 2 |
| 154 | _CD64_EXTRACT_VERSION = 3 |
| 155 | _CD64_DISK_NUMBER = 4 |
| 156 | _CD64_DISK_NUMBER_START = 5 |
| 157 | _CD64_NUMBER_ENTRIES_THIS_DISK = 6 |
| 158 | _CD64_NUMBER_ENTRIES_TOTAL = 7 |
| 159 | _CD64_DIRECTORY_SIZE = 8 |
| 160 | _CD64_OFFSET_START_CENTDIR = 9 |
| 161 | |
Miss Islington (bot) | efdf316 | 2018-09-17 06:08:45 -0700 | [diff] [blame] | 162 | _EXTRA_FIELD_STRUCT = struct.Struct('<HH') |
| 163 | |
| 164 | def _strip_extra(extra, xids): |
| 165 | # Remove Extra Fields with specified IDs. |
| 166 | unpack = _EXTRA_FIELD_STRUCT.unpack |
| 167 | modified = False |
| 168 | buffer = [] |
| 169 | start = i = 0 |
| 170 | while i + 4 <= len(extra): |
| 171 | xid, xlen = unpack(extra[i : i + 4]) |
| 172 | j = i + 4 + xlen |
| 173 | if xid in xids: |
| 174 | if i != start: |
| 175 | buffer.append(extra[start : i]) |
| 176 | start = j |
| 177 | modified = True |
| 178 | i = j |
| 179 | if not modified: |
| 180 | return extra |
| 181 | return b''.join(buffer) |
| 182 | |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 183 | def _check_zipfile(fp): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 184 | try: |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 185 | if _EndRecData(fp): |
| 186 | return True # file has correct magic number |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 187 | except OSError: |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 188 | pass |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 189 | return False |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 190 | |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 191 | def is_zipfile(filename): |
| 192 | """Quickly see if a file is a ZIP file by checking the magic number. |
| 193 | |
| 194 | The filename argument may be a file or file-like object too. |
| 195 | """ |
| 196 | result = False |
| 197 | try: |
| 198 | if hasattr(filename, "read"): |
| 199 | result = _check_zipfile(fp=filename) |
| 200 | else: |
| 201 | with open(filename, "rb") as fp: |
| 202 | result = _check_zipfile(fp) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 203 | except OSError: |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 204 | pass |
| 205 | return result |
| 206 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 207 | def _EndRecData64(fpin, offset, endrec): |
| 208 | """ |
| 209 | Read the ZIP64 end-of-archive records and use that to update endrec |
| 210 | """ |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 211 | try: |
| 212 | fpin.seek(offset - sizeEndCentDir64Locator, 2) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 213 | except OSError: |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 214 | # If the seek fails, the file is not large enough to contain a ZIP64 |
| 215 | # end-of-archive record, so just return the end record we were given. |
| 216 | return endrec |
| 217 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 218 | data = fpin.read(sizeEndCentDir64Locator) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 219 | if len(data) != sizeEndCentDir64Locator: |
| 220 | return endrec |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 221 | sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data) |
| 222 | if sig != stringEndArchive64Locator: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 223 | return endrec |
| 224 | |
| 225 | if diskno != 0 or disks != 1: |
Éric Araujo | ae2d832 | 2010-10-28 13:49:17 +0000 | [diff] [blame] | 226 | raise BadZipFile("zipfiles that span multiple disks are not supported") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 227 | |
| 228 | # Assume no 'zip64 extensible data' |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 229 | fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) |
| 230 | data = fpin.read(sizeEndCentDir64) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 231 | if len(data) != sizeEndCentDir64: |
| 232 | return endrec |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 233 | sig, sz, create_version, read_version, disk_num, disk_dir, \ |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 234 | dircount, dircount2, dirsize, diroffset = \ |
| 235 | struct.unpack(structEndArchive64, data) |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 236 | if sig != stringEndArchive64: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 237 | return endrec |
| 238 | |
| 239 | # Update the original endrec using data from the ZIP64 record |
Antoine Pitrou | 9e4fdf4 | 2008-09-05 23:43:02 +0000 | [diff] [blame] | 240 | endrec[_ECD_SIGNATURE] = sig |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 241 | endrec[_ECD_DISK_NUMBER] = disk_num |
| 242 | endrec[_ECD_DISK_START] = disk_dir |
| 243 | endrec[_ECD_ENTRIES_THIS_DISK] = dircount |
| 244 | endrec[_ECD_ENTRIES_TOTAL] = dircount2 |
| 245 | endrec[_ECD_SIZE] = dirsize |
| 246 | endrec[_ECD_OFFSET] = diroffset |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 247 | return endrec |
| 248 | |
| 249 | |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 250 | def _EndRecData(fpin): |
| 251 | """Return data from the "End of Central Directory" record, or None. |
| 252 | |
| 253 | The data is a list of the nine items in the ZIP "End of central dir" |
| 254 | record followed by a tenth item, the file seek offset of this record.""" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 255 | |
| 256 | # Determine file size |
| 257 | fpin.seek(0, 2) |
| 258 | filesize = fpin.tell() |
| 259 | |
| 260 | # Check to see if this is ZIP file with no archive comment (the |
| 261 | # "end of central directory" structure should be the last item in the |
| 262 | # file if this is the case). |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 263 | try: |
| 264 | fpin.seek(-sizeEndCentDir, 2) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 265 | except OSError: |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 266 | return None |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 267 | data = fpin.read() |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 268 | if (len(data) == sizeEndCentDir and |
| 269 | data[0:4] == stringEndArchive and |
| 270 | data[-2:] == b"\000\000"): |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 271 | # the signature is correct and there's no comment, unpack structure |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 272 | endrec = struct.unpack(structEndArchive, data) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 273 | endrec=list(endrec) |
| 274 | |
| 275 | # Append a blank comment and record start offset |
| 276 | endrec.append(b"") |
| 277 | endrec.append(filesize - sizeEndCentDir) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 278 | |
Amaury Forgeot d'Arc | d3fb4bb | 2009-01-18 00:29:02 +0000 | [diff] [blame] | 279 | # Try to read the "Zip64 end of central directory" structure |
| 280 | return _EndRecData64(fpin, -sizeEndCentDir, endrec) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 281 | |
| 282 | # Either this is not a ZIP file, or it is a ZIP file with an archive |
| 283 | # comment. Search the end of the file for the "end of central directory" |
| 284 | # record signature. The comment is the last item in the ZIP file and may be |
| 285 | # up to 64K long. It is assumed that the "end of central directory" magic |
| 286 | # number does not appear in the comment. |
| 287 | maxCommentStart = max(filesize - (1 << 16) - sizeEndCentDir, 0) |
| 288 | fpin.seek(maxCommentStart, 0) |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 289 | data = fpin.read() |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 290 | start = data.rfind(stringEndArchive) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 291 | if start >= 0: |
| 292 | # found the magic number; attempt to unpack and interpret |
| 293 | recData = data[start:start+sizeEndCentDir] |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 294 | if len(recData) != sizeEndCentDir: |
| 295 | # Zip file is corrupted. |
| 296 | return None |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 297 | endrec = list(struct.unpack(structEndArchive, recData)) |
R David Murray | 4fbb9db | 2011-06-09 15:50:51 -0400 | [diff] [blame] | 298 | commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file |
| 299 | comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize] |
| 300 | endrec.append(comment) |
| 301 | endrec.append(maxCommentStart + start) |
Amaury Forgeot d'Arc | d3fb4bb | 2009-01-18 00:29:02 +0000 | [diff] [blame] | 302 | |
R David Murray | 4fbb9db | 2011-06-09 15:50:51 -0400 | [diff] [blame] | 303 | # Try to read the "Zip64 end of central directory" structure |
| 304 | return _EndRecData64(fpin, maxCommentStart + start - filesize, |
| 305 | endrec) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 306 | |
| 307 | # Unable to find a valid end of central directory structure |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 308 | return None |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 309 | |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 310 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 311 | class ZipInfo (object): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 312 | """Class with attributes describing each file in the ZIP archive.""" |
| 313 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 314 | __slots__ = ( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 315 | 'orig_filename', |
| 316 | 'filename', |
| 317 | 'date_time', |
| 318 | 'compress_type', |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 319 | '_compresslevel', |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 320 | 'comment', |
| 321 | 'extra', |
| 322 | 'create_system', |
| 323 | 'create_version', |
| 324 | 'extract_version', |
| 325 | 'reserved', |
| 326 | 'flag_bits', |
| 327 | 'volume', |
| 328 | 'internal_attr', |
| 329 | 'external_attr', |
| 330 | 'header_offset', |
| 331 | 'CRC', |
| 332 | 'compress_size', |
| 333 | 'file_size', |
| 334 | '_raw_time', |
| 335 | ) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 336 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 337 | def __init__(self, filename="NoName", date_time=(1980,1,1,0,0,0)): |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 338 | self.orig_filename = filename # Original file name in archive |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 339 | |
| 340 | # Terminate the file name at the first null byte. Null bytes in file |
| 341 | # names are used as tricks by viruses in archives. |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 342 | null_byte = filename.find(chr(0)) |
| 343 | if null_byte >= 0: |
| 344 | filename = filename[0:null_byte] |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 345 | # This is used to ensure paths in generated ZIP files always use |
| 346 | # forward slashes as the directory separator, as required by the |
| 347 | # ZIP format specification. |
| 348 | if os.sep != "/" and os.sep in filename: |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 349 | filename = filename.replace(os.sep, "/") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 350 | |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 351 | self.filename = filename # Normalized file name |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 352 | self.date_time = date_time # year, month, day, hour, min, sec |
Senthil Kumaran | 29fa9d4 | 2011-10-20 01:46:00 +0800 | [diff] [blame] | 353 | |
| 354 | if date_time[0] < 1980: |
| 355 | raise ValueError('ZIP does not support timestamps before 1980') |
| 356 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 357 | # Standard values: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 358 | self.compress_type = ZIP_STORED # Type of compression for the file |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 359 | self._compresslevel = None # Level for the compressor |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 360 | self.comment = b"" # Comment for each file |
| 361 | self.extra = b"" # ZIP extra data |
Martin v. Löwis | 0075690 | 2006-02-05 17:09:41 +0000 | [diff] [blame] | 362 | if sys.platform == 'win32': |
| 363 | self.create_system = 0 # System which created ZIP archive |
| 364 | else: |
| 365 | # Assume everything else is unix-y |
| 366 | self.create_system = 3 # System which created ZIP archive |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 367 | self.create_version = DEFAULT_VERSION # Version which created ZIP archive |
| 368 | self.extract_version = DEFAULT_VERSION # Version needed to extract archive |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 369 | self.reserved = 0 # Must be zero |
| 370 | self.flag_bits = 0 # ZIP flag bits |
| 371 | self.volume = 0 # Volume number of file header |
| 372 | self.internal_attr = 0 # Internal attributes |
| 373 | self.external_attr = 0 # External file attributes |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 374 | # Other attributes are set by class ZipFile: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 375 | # header_offset Byte offset to the file header |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 376 | # CRC CRC-32 of the uncompressed file |
| 377 | # compress_size Size of the compressed file |
| 378 | # file_size Size of the uncompressed file |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 379 | |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 380 | def __repr__(self): |
| 381 | result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)] |
| 382 | if self.compress_type != ZIP_STORED: |
| 383 | result.append(' compress_type=%s' % |
| 384 | compressor_names.get(self.compress_type, |
| 385 | self.compress_type)) |
| 386 | hi = self.external_attr >> 16 |
| 387 | lo = self.external_attr & 0xFFFF |
| 388 | if hi: |
| 389 | result.append(' filemode=%r' % stat.filemode(hi)) |
| 390 | if lo: |
| 391 | result.append(' external_attr=%#x' % lo) |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 392 | isdir = self.is_dir() |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 393 | if not isdir or self.file_size: |
| 394 | result.append(' file_size=%r' % self.file_size) |
| 395 | if ((not isdir or self.compress_size) and |
| 396 | (self.compress_type != ZIP_STORED or |
| 397 | self.file_size != self.compress_size)): |
| 398 | result.append(' compress_size=%r' % self.compress_size) |
| 399 | result.append('>') |
| 400 | return ''.join(result) |
| 401 | |
Serhiy Storchaka | 182d7cd | 2013-01-15 00:31:39 +0200 | [diff] [blame] | 402 | def FileHeader(self, zip64=None): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 403 | """Return the per-file header as a string.""" |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 404 | dt = self.date_time |
| 405 | dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] |
Tim Peters | 3caca23 | 2001-12-06 06:23:26 +0000 | [diff] [blame] | 406 | dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 407 | if self.flag_bits & 0x08: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 408 | # Set these to zero because we write them after the file data |
| 409 | CRC = compress_size = file_size = 0 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 410 | else: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 411 | CRC = self.CRC |
| 412 | compress_size = self.compress_size |
| 413 | file_size = self.file_size |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 414 | |
| 415 | extra = self.extra |
| 416 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 417 | min_version = 0 |
Serhiy Storchaka | 182d7cd | 2013-01-15 00:31:39 +0200 | [diff] [blame] | 418 | if zip64 is None: |
| 419 | zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT |
| 420 | if zip64: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 421 | fmt = '<HHQQ' |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 422 | extra = extra + struct.pack(fmt, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 423 | 1, struct.calcsize(fmt)-4, file_size, compress_size) |
Serhiy Storchaka | 182d7cd | 2013-01-15 00:31:39 +0200 | [diff] [blame] | 424 | if file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT: |
| 425 | if not zip64: |
| 426 | raise LargeZipFile("Filesize would require ZIP64 extensions") |
| 427 | # File is larger than what fits into a 4 byte integer, |
| 428 | # fall back to the ZIP64 extension |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 429 | file_size = 0xffffffff |
| 430 | compress_size = 0xffffffff |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 431 | min_version = ZIP64_VERSION |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 432 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 433 | if self.compress_type == ZIP_BZIP2: |
| 434 | min_version = max(BZIP2_VERSION, min_version) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 435 | elif self.compress_type == ZIP_LZMA: |
| 436 | min_version = max(LZMA_VERSION, min_version) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 437 | |
| 438 | self.extract_version = max(min_version, self.extract_version) |
| 439 | self.create_version = max(min_version, self.create_version) |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 440 | filename, flag_bits = self._encodeFilenameFlags() |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 441 | header = struct.pack(structFileHeader, stringFileHeader, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 442 | self.extract_version, self.reserved, flag_bits, |
| 443 | self.compress_type, dostime, dosdate, CRC, |
| 444 | compress_size, file_size, |
| 445 | len(filename), len(extra)) |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 446 | return header + filename + extra |
| 447 | |
| 448 | def _encodeFilenameFlags(self): |
| 449 | try: |
| 450 | return self.filename.encode('ascii'), self.flag_bits |
| 451 | except UnicodeEncodeError: |
| 452 | return self.filename.encode('utf-8'), self.flag_bits | 0x800 |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 453 | |
| 454 | def _decodeExtra(self): |
| 455 | # Try to decode the extra field. |
| 456 | extra = self.extra |
| 457 | unpack = struct.unpack |
Gregory P. Smith | 0af8a86 | 2014-05-29 23:42:14 -0700 | [diff] [blame] | 458 | while len(extra) >= 4: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 459 | tp, ln = unpack('<HH', extra[:4]) |
Serhiy Storchaka | feccdb2 | 2017-03-09 18:34:03 +0200 | [diff] [blame] | 460 | if ln+4 > len(extra): |
| 461 | raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln)) |
| 462 | if tp == 0x0001: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 463 | if ln >= 24: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 464 | counts = unpack('<QQQ', extra[4:28]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 465 | elif ln == 16: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 466 | counts = unpack('<QQ', extra[4:20]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 467 | elif ln == 8: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 468 | counts = unpack('<Q', extra[4:12]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 469 | elif ln == 0: |
| 470 | counts = () |
| 471 | else: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 472 | raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 473 | |
| 474 | idx = 0 |
| 475 | |
| 476 | # ZIP64 extension (large files and/or large archives) |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 477 | if self.file_size in (0xffffffffffffffff, 0xffffffff): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 478 | self.file_size = counts[idx] |
| 479 | idx += 1 |
| 480 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 481 | if self.compress_size == 0xFFFFFFFF: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 482 | self.compress_size = counts[idx] |
| 483 | idx += 1 |
| 484 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 485 | if self.header_offset == 0xffffffff: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 486 | old = self.header_offset |
| 487 | self.header_offset = counts[idx] |
| 488 | idx+=1 |
| 489 | |
| 490 | extra = extra[ln+4:] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 491 | |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 492 | @classmethod |
| 493 | def from_file(cls, filename, arcname=None): |
| 494 | """Construct an appropriate ZipInfo for a file on the filesystem. |
| 495 | |
| 496 | filename should be the path to a file or directory on the filesystem. |
| 497 | |
| 498 | arcname is the name which it will have within the archive (by default, |
| 499 | this will be the same as filename, but without a drive letter and with |
| 500 | leading path separators removed). |
| 501 | """ |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 502 | if isinstance(filename, os.PathLike): |
| 503 | filename = os.fspath(filename) |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 504 | st = os.stat(filename) |
| 505 | isdir = stat.S_ISDIR(st.st_mode) |
| 506 | mtime = time.localtime(st.st_mtime) |
| 507 | date_time = mtime[0:6] |
| 508 | # Create ZipInfo instance to store file information |
| 509 | if arcname is None: |
| 510 | arcname = filename |
| 511 | arcname = os.path.normpath(os.path.splitdrive(arcname)[1]) |
| 512 | while arcname[0] in (os.sep, os.altsep): |
| 513 | arcname = arcname[1:] |
| 514 | if isdir: |
| 515 | arcname += '/' |
| 516 | zinfo = cls(arcname, date_time) |
| 517 | zinfo.external_attr = (st.st_mode & 0xFFFF) << 16 # Unix attributes |
| 518 | if isdir: |
| 519 | zinfo.file_size = 0 |
| 520 | zinfo.external_attr |= 0x10 # MS-DOS directory flag |
| 521 | else: |
| 522 | zinfo.file_size = st.st_size |
| 523 | |
| 524 | return zinfo |
| 525 | |
| 526 | def is_dir(self): |
Serhiy Storchaka | f47fc55 | 2016-05-15 12:27:16 +0300 | [diff] [blame] | 527 | """Return True if this archive member is a directory.""" |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 528 | return self.filename[-1] == '/' |
| 529 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 530 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 531 | # ZIP encryption uses the CRC32 one-byte primitive for scrambling some |
| 532 | # internal keys. We noticed that a direct implementation is faster than |
| 533 | # relying on binascii.crc32(). |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 534 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 535 | _crctable = None |
| 536 | def _gen_crc(crc): |
| 537 | for j in range(8): |
| 538 | if crc & 1: |
| 539 | crc = (crc >> 1) ^ 0xEDB88320 |
| 540 | else: |
| 541 | crc >>= 1 |
| 542 | return crc |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 543 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 544 | # ZIP supports a password-based form of encryption. Even though known |
| 545 | # plaintext attacks have been found against it, it is still useful |
| 546 | # to be able to get data out of such a file. |
| 547 | # |
| 548 | # Usage: |
| 549 | # zd = _ZipDecrypter(mypwd) |
| 550 | # plain_bytes = zd(cypher_bytes) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 551 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 552 | def _ZipDecrypter(pwd): |
| 553 | key0 = 305419896 |
| 554 | key1 = 591751049 |
| 555 | key2 = 878082192 |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 556 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 557 | global _crctable |
| 558 | if _crctable is None: |
| 559 | _crctable = list(map(_gen_crc, range(256))) |
| 560 | crctable = _crctable |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 561 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 562 | def crc32(ch, crc): |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 563 | """Compute the CRC32 primitive on one byte.""" |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 564 | return (crc >> 8) ^ crctable[(crc ^ ch) & 0xFF] |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 565 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 566 | def update_keys(c): |
| 567 | nonlocal key0, key1, key2 |
| 568 | key0 = crc32(c, key0) |
| 569 | key1 = (key1 + (key0 & 0xFF)) & 0xFFFFFFFF |
| 570 | key1 = (key1 * 134775813 + 1) & 0xFFFFFFFF |
| 571 | key2 = crc32(key1 >> 24, key2) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 572 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 573 | for p in pwd: |
| 574 | update_keys(p) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 575 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 576 | def decrypter(data): |
| 577 | """Decrypt a bytes object.""" |
| 578 | result = bytearray() |
| 579 | append = result.append |
| 580 | for c in data: |
| 581 | k = key2 | 2 |
| 582 | c ^= ((k * (k^1)) >> 8) & 0xFF |
| 583 | update_keys(c) |
| 584 | append(c) |
| 585 | return bytes(result) |
| 586 | |
| 587 | return decrypter |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 588 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 589 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 590 | class LZMACompressor: |
| 591 | |
| 592 | def __init__(self): |
| 593 | self._comp = None |
| 594 | |
| 595 | def _init(self): |
Nadeem Vawda | a425c3d | 2012-06-21 23:36:48 +0200 | [diff] [blame] | 596 | props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1}) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 597 | self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[ |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 598 | lzma._decode_filter_properties(lzma.FILTER_LZMA1, props) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 599 | ]) |
| 600 | return struct.pack('<BBH', 9, 4, len(props)) + props |
| 601 | |
| 602 | def compress(self, data): |
| 603 | if self._comp is None: |
| 604 | return self._init() + self._comp.compress(data) |
| 605 | return self._comp.compress(data) |
| 606 | |
| 607 | def flush(self): |
| 608 | if self._comp is None: |
| 609 | return self._init() + self._comp.flush() |
| 610 | return self._comp.flush() |
| 611 | |
| 612 | |
| 613 | class LZMADecompressor: |
| 614 | |
| 615 | def __init__(self): |
| 616 | self._decomp = None |
| 617 | self._unconsumed = b'' |
| 618 | self.eof = False |
| 619 | |
| 620 | def decompress(self, data): |
| 621 | if self._decomp is None: |
| 622 | self._unconsumed += data |
| 623 | if len(self._unconsumed) <= 4: |
| 624 | return b'' |
| 625 | psize, = struct.unpack('<H', self._unconsumed[2:4]) |
| 626 | if len(self._unconsumed) <= 4 + psize: |
| 627 | return b'' |
| 628 | |
| 629 | self._decomp = lzma.LZMADecompressor(lzma.FORMAT_RAW, filters=[ |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 630 | lzma._decode_filter_properties(lzma.FILTER_LZMA1, |
| 631 | self._unconsumed[4:4 + psize]) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 632 | ]) |
| 633 | data = self._unconsumed[4 + psize:] |
| 634 | del self._unconsumed |
| 635 | |
| 636 | result = self._decomp.decompress(data) |
| 637 | self.eof = self._decomp.eof |
| 638 | return result |
| 639 | |
| 640 | |
| 641 | compressor_names = { |
| 642 | 0: 'store', |
| 643 | 1: 'shrink', |
| 644 | 2: 'reduce', |
| 645 | 3: 'reduce', |
| 646 | 4: 'reduce', |
| 647 | 5: 'reduce', |
| 648 | 6: 'implode', |
| 649 | 7: 'tokenize', |
| 650 | 8: 'deflate', |
| 651 | 9: 'deflate64', |
| 652 | 10: 'implode', |
| 653 | 12: 'bzip2', |
| 654 | 14: 'lzma', |
| 655 | 18: 'terse', |
| 656 | 19: 'lz77', |
| 657 | 97: 'wavpack', |
| 658 | 98: 'ppmd', |
| 659 | } |
| 660 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 661 | def _check_compression(compression): |
| 662 | if compression == ZIP_STORED: |
| 663 | pass |
| 664 | elif compression == ZIP_DEFLATED: |
| 665 | if not zlib: |
| 666 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 667 | "Compression requires the (missing) zlib module") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 668 | elif compression == ZIP_BZIP2: |
| 669 | if not bz2: |
| 670 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 671 | "Compression requires the (missing) bz2 module") |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 672 | elif compression == ZIP_LZMA: |
| 673 | if not lzma: |
| 674 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 675 | "Compression requires the (missing) lzma module") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 676 | else: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 677 | raise NotImplementedError("That compression method is not supported") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 678 | |
| 679 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 680 | def _get_compressor(compress_type, compresslevel=None): |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 681 | if compress_type == ZIP_DEFLATED: |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 682 | if compresslevel is not None: |
| 683 | return zlib.compressobj(compresslevel, zlib.DEFLATED, -15) |
| 684 | return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -15) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 685 | elif compress_type == ZIP_BZIP2: |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 686 | if compresslevel is not None: |
| 687 | return bz2.BZ2Compressor(compresslevel) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 688 | return bz2.BZ2Compressor() |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 689 | # compresslevel is ignored for ZIP_LZMA |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 690 | elif compress_type == ZIP_LZMA: |
| 691 | return LZMACompressor() |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 692 | else: |
| 693 | return None |
| 694 | |
| 695 | |
| 696 | def _get_decompressor(compress_type): |
Martin v. Löwis | b3260f0 | 2012-05-01 08:38:01 +0200 | [diff] [blame] | 697 | if compress_type == ZIP_STORED: |
| 698 | return None |
| 699 | elif compress_type == ZIP_DEFLATED: |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 700 | return zlib.decompressobj(-15) |
| 701 | elif compress_type == ZIP_BZIP2: |
| 702 | return bz2.BZ2Decompressor() |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 703 | elif compress_type == ZIP_LZMA: |
| 704 | return LZMADecompressor() |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 705 | else: |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 706 | descr = compressor_names.get(compress_type) |
Martin v. Löwis | b3260f0 | 2012-05-01 08:38:01 +0200 | [diff] [blame] | 707 | if descr: |
| 708 | raise NotImplementedError("compression type %d (%s)" % (compress_type, descr)) |
| 709 | else: |
| 710 | raise NotImplementedError("compression type %d" % (compress_type,)) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 711 | |
| 712 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 713 | class _SharedFile: |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 714 | def __init__(self, file, pos, close, lock, writing): |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 715 | self._file = file |
| 716 | self._pos = pos |
| 717 | self._close = close |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 718 | self._lock = lock |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 719 | self._writing = writing |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 720 | self.seekable = file.seekable |
| 721 | self.tell = file.tell |
| 722 | |
| 723 | def seek(self, offset, whence=0): |
| 724 | with self._lock: |
Miss Islington (bot) | ad4f64d | 2018-07-29 12:57:21 -0700 | [diff] [blame] | 725 | if self._writing(): |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 726 | raise ValueError("Can't reposition in the ZIP file while " |
| 727 | "there is an open writing handle on it. " |
| 728 | "Close the writing handle before trying to read.") |
Miss Islington (bot) | ad4f64d | 2018-07-29 12:57:21 -0700 | [diff] [blame] | 729 | self._file.seek(offset, whence) |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 730 | self._pos = self._file.tell() |
| 731 | return self._pos |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 732 | |
| 733 | def read(self, n=-1): |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 734 | with self._lock: |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 735 | if self._writing(): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 736 | raise ValueError("Can't read from the ZIP file while there " |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 737 | "is an open writing handle on it. " |
| 738 | "Close the writing handle before trying to read.") |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 739 | self._file.seek(self._pos) |
| 740 | data = self._file.read(n) |
| 741 | self._pos = self._file.tell() |
| 742 | return data |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 743 | |
| 744 | def close(self): |
| 745 | if self._file is not None: |
| 746 | fileobj = self._file |
| 747 | self._file = None |
| 748 | self._close(fileobj) |
| 749 | |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 750 | # Provide the tell method for unseekable stream |
| 751 | class _Tellable: |
| 752 | def __init__(self, fp): |
| 753 | self.fp = fp |
| 754 | self.offset = 0 |
| 755 | |
| 756 | def write(self, data): |
| 757 | n = self.fp.write(data) |
| 758 | self.offset += n |
| 759 | return n |
| 760 | |
| 761 | def tell(self): |
| 762 | return self.offset |
| 763 | |
| 764 | def flush(self): |
| 765 | self.fp.flush() |
| 766 | |
| 767 | def close(self): |
| 768 | self.fp.close() |
| 769 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 770 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 771 | class ZipExtFile(io.BufferedIOBase): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 772 | """File-like object for reading an archive member. |
| 773 | Is returned by ZipFile.open(). |
| 774 | """ |
| 775 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 776 | # Max size supported by decompressor. |
| 777 | MAX_N = 1 << 31 - 1 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 778 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 779 | # Read from compressed files in 4k blocks. |
| 780 | MIN_READ_SIZE = 4096 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 781 | |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 782 | # Chunk size to read during seek |
| 783 | MAX_SEEK_READ = 1 << 24 |
| 784 | |
Łukasz Langa | e94980a | 2010-11-22 23:31:26 +0000 | [diff] [blame] | 785 | def __init__(self, fileobj, mode, zipinfo, decrypter=None, |
| 786 | close_fileobj=False): |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 787 | self._fileobj = fileobj |
| 788 | self._decrypter = decrypter |
Łukasz Langa | e94980a | 2010-11-22 23:31:26 +0000 | [diff] [blame] | 789 | self._close_fileobj = close_fileobj |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 790 | |
Ezio Melotti | 92b4743 | 2010-01-28 01:44:41 +0000 | [diff] [blame] | 791 | self._compress_type = zipinfo.compress_type |
Ezio Melotti | 92b4743 | 2010-01-28 01:44:41 +0000 | [diff] [blame] | 792 | self._compress_left = zipinfo.compress_size |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 793 | self._left = zipinfo.file_size |
Ezio Melotti | 92b4743 | 2010-01-28 01:44:41 +0000 | [diff] [blame] | 794 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 795 | self._decompressor = _get_decompressor(self._compress_type) |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 796 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 797 | self._eof = False |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 798 | self._readbuffer = b'' |
| 799 | self._offset = 0 |
| 800 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 801 | self.newlines = None |
| 802 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 803 | # Adjust read size for encrypted files since the first 12 bytes |
| 804 | # are for the encryption/password information. |
| 805 | if self._decrypter is not None: |
| 806 | self._compress_left -= 12 |
| 807 | |
| 808 | self.mode = mode |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 809 | self.name = zipinfo.filename |
| 810 | |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 811 | if hasattr(zipinfo, 'CRC'): |
| 812 | self._expected_crc = zipinfo.CRC |
Martin Panter | b82032f | 2015-12-11 05:19:29 +0000 | [diff] [blame] | 813 | self._running_crc = crc32(b'') |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 814 | else: |
| 815 | self._expected_crc = None |
| 816 | |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 817 | self._seekable = False |
| 818 | try: |
| 819 | if fileobj.seekable(): |
| 820 | self._orig_compress_start = fileobj.tell() |
| 821 | self._orig_compress_size = zipinfo.compress_size |
| 822 | self._orig_file_size = zipinfo.file_size |
| 823 | self._orig_start_crc = self._running_crc |
| 824 | self._seekable = True |
| 825 | except AttributeError: |
| 826 | pass |
| 827 | |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 828 | def __repr__(self): |
| 829 | result = ['<%s.%s' % (self.__class__.__module__, |
| 830 | self.__class__.__qualname__)] |
| 831 | if not self.closed: |
| 832 | result.append(' name=%r mode=%r' % (self.name, self.mode)) |
| 833 | if self._compress_type != ZIP_STORED: |
| 834 | result.append(' compress_type=%s' % |
| 835 | compressor_names.get(self._compress_type, |
| 836 | self._compress_type)) |
| 837 | else: |
| 838 | result.append(' [closed]') |
| 839 | result.append('>') |
| 840 | return ''.join(result) |
| 841 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 842 | def readline(self, limit=-1): |
| 843 | """Read and return a line from the stream. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 844 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 845 | If limit is specified, at most limit bytes will be read. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 846 | """ |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 847 | |
Serhiy Storchaka | e670be2 | 2016-06-11 19:32:44 +0300 | [diff] [blame] | 848 | if limit < 0: |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 849 | # Shortcut common case - newline found in buffer. |
| 850 | i = self._readbuffer.find(b'\n', self._offset) + 1 |
| 851 | if i > 0: |
| 852 | line = self._readbuffer[self._offset: i] |
| 853 | self._offset = i |
| 854 | return line |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 855 | |
Serhiy Storchaka | e670be2 | 2016-06-11 19:32:44 +0300 | [diff] [blame] | 856 | return io.BufferedIOBase.readline(self, limit) |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 857 | |
| 858 | def peek(self, n=1): |
| 859 | """Returns buffered bytes without advancing the position.""" |
| 860 | if n > len(self._readbuffer) - self._offset: |
| 861 | chunk = self.read(n) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 862 | if len(chunk) > self._offset: |
| 863 | self._readbuffer = chunk + self._readbuffer[self._offset:] |
| 864 | self._offset = 0 |
| 865 | else: |
| 866 | self._offset -= len(chunk) |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 867 | |
| 868 | # Return up to 512 bytes to reduce allocation overhead for tight loops. |
| 869 | return self._readbuffer[self._offset: self._offset + 512] |
| 870 | |
| 871 | def readable(self): |
| 872 | return True |
| 873 | |
| 874 | def read(self, n=-1): |
| 875 | """Read and return up to n bytes. |
| 876 | If the argument is omitted, None, or negative, data is read and returned until EOF is reached.. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 877 | """ |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 878 | if n is None or n < 0: |
| 879 | buf = self._readbuffer[self._offset:] |
| 880 | self._readbuffer = b'' |
| 881 | self._offset = 0 |
| 882 | while not self._eof: |
| 883 | buf += self._read1(self.MAX_N) |
| 884 | return buf |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 885 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 886 | end = n + self._offset |
| 887 | if end < len(self._readbuffer): |
| 888 | buf = self._readbuffer[self._offset:end] |
| 889 | self._offset = end |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 890 | return buf |
| 891 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 892 | n = end - len(self._readbuffer) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 893 | buf = self._readbuffer[self._offset:] |
| 894 | self._readbuffer = b'' |
| 895 | self._offset = 0 |
| 896 | while n > 0 and not self._eof: |
| 897 | data = self._read1(n) |
| 898 | if n < len(data): |
| 899 | self._readbuffer = data |
| 900 | self._offset = n |
| 901 | buf += data[:n] |
| 902 | break |
| 903 | buf += data |
| 904 | n -= len(data) |
| 905 | return buf |
| 906 | |
| 907 | def _update_crc(self, newdata): |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 908 | # Update the CRC using the given data. |
| 909 | if self._expected_crc is None: |
| 910 | # No need to compute the CRC if we don't have a reference value |
| 911 | return |
Martin Panter | b82032f | 2015-12-11 05:19:29 +0000 | [diff] [blame] | 912 | self._running_crc = crc32(newdata, self._running_crc) |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 913 | # Check the CRC if we're at the end of the file |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 914 | if self._eof and self._running_crc != self._expected_crc: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 915 | raise BadZipFile("Bad CRC-32 for file %r" % self.name) |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 916 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 917 | def read1(self, n): |
| 918 | """Read up to n bytes with at most one read() system call.""" |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 919 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 920 | if n is None or n < 0: |
| 921 | buf = self._readbuffer[self._offset:] |
| 922 | self._readbuffer = b'' |
| 923 | self._offset = 0 |
Serhiy Storchaka | d2c07a5 | 2013-09-27 22:11:57 +0300 | [diff] [blame] | 924 | while not self._eof: |
| 925 | data = self._read1(self.MAX_N) |
| 926 | if data: |
| 927 | buf += data |
| 928 | break |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 929 | return buf |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 930 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 931 | end = n + self._offset |
| 932 | if end < len(self._readbuffer): |
| 933 | buf = self._readbuffer[self._offset:end] |
| 934 | self._offset = end |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 935 | return buf |
| 936 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 937 | n = end - len(self._readbuffer) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 938 | buf = self._readbuffer[self._offset:] |
| 939 | self._readbuffer = b'' |
| 940 | self._offset = 0 |
| 941 | if n > 0: |
Serhiy Storchaka | d2c07a5 | 2013-09-27 22:11:57 +0300 | [diff] [blame] | 942 | while not self._eof: |
| 943 | data = self._read1(n) |
| 944 | if n < len(data): |
| 945 | self._readbuffer = data |
| 946 | self._offset = n |
| 947 | buf += data[:n] |
| 948 | break |
| 949 | if data: |
| 950 | buf += data |
| 951 | break |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 952 | return buf |
| 953 | |
| 954 | def _read1(self, n): |
| 955 | # Read up to n compressed bytes with at most one read() system call, |
| 956 | # decrypt and decompress them. |
| 957 | if self._eof or n <= 0: |
| 958 | return b'' |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 959 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 960 | # Read from file. |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 961 | if self._compress_type == ZIP_DEFLATED: |
| 962 | ## Handle unconsumed data. |
| 963 | data = self._decompressor.unconsumed_tail |
| 964 | if n > len(data): |
| 965 | data += self._read2(n - len(data)) |
| 966 | else: |
| 967 | data = self._read2(n) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 968 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 969 | if self._compress_type == ZIP_STORED: |
| 970 | self._eof = self._compress_left <= 0 |
| 971 | elif self._compress_type == ZIP_DEFLATED: |
| 972 | n = max(n, self.MIN_READ_SIZE) |
| 973 | data = self._decompressor.decompress(data, n) |
| 974 | self._eof = (self._decompressor.eof or |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 975 | self._compress_left <= 0 and |
| 976 | not self._decompressor.unconsumed_tail) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 977 | if self._eof: |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 978 | data += self._decompressor.flush() |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 979 | else: |
| 980 | data = self._decompressor.decompress(data) |
| 981 | self._eof = self._decompressor.eof or self._compress_left <= 0 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 982 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 983 | data = data[:self._left] |
| 984 | self._left -= len(data) |
| 985 | if self._left <= 0: |
| 986 | self._eof = True |
| 987 | self._update_crc(data) |
| 988 | return data |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 989 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 990 | def _read2(self, n): |
| 991 | if self._compress_left <= 0: |
| 992 | return b'' |
| 993 | |
| 994 | n = max(n, self.MIN_READ_SIZE) |
| 995 | n = min(n, self._compress_left) |
| 996 | |
| 997 | data = self._fileobj.read(n) |
| 998 | self._compress_left -= len(data) |
Serhiy Storchaka | 5ce3f10 | 2014-01-09 14:50:20 +0200 | [diff] [blame] | 999 | if not data: |
| 1000 | raise EOFError |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1001 | |
| 1002 | if self._decrypter is not None: |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 1003 | data = self._decrypter(data) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1004 | return data |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1005 | |
Łukasz Langa | e94980a | 2010-11-22 23:31:26 +0000 | [diff] [blame] | 1006 | def close(self): |
| 1007 | try: |
| 1008 | if self._close_fileobj: |
| 1009 | self._fileobj.close() |
| 1010 | finally: |
| 1011 | super().close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1012 | |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 1013 | def seekable(self): |
| 1014 | return self._seekable |
| 1015 | |
| 1016 | def seek(self, offset, whence=0): |
| 1017 | if not self._seekable: |
| 1018 | raise io.UnsupportedOperation("underlying stream is not seekable") |
| 1019 | curr_pos = self.tell() |
| 1020 | if whence == 0: # Seek from start of file |
| 1021 | new_pos = offset |
| 1022 | elif whence == 1: # Seek from current position |
| 1023 | new_pos = curr_pos + offset |
| 1024 | elif whence == 2: # Seek from EOF |
| 1025 | new_pos = self._orig_file_size + offset |
| 1026 | else: |
| 1027 | raise ValueError("whence must be os.SEEK_SET (0), " |
| 1028 | "os.SEEK_CUR (1), or os.SEEK_END (2)") |
| 1029 | |
| 1030 | if new_pos > self._orig_file_size: |
| 1031 | new_pos = self._orig_file_size |
| 1032 | |
| 1033 | if new_pos < 0: |
| 1034 | new_pos = 0 |
| 1035 | |
| 1036 | read_offset = new_pos - curr_pos |
| 1037 | buff_offset = read_offset + self._offset |
| 1038 | |
| 1039 | if buff_offset >= 0 and buff_offset < len(self._readbuffer): |
| 1040 | # Just move the _offset index if the new position is in the _readbuffer |
| 1041 | self._offset = buff_offset |
| 1042 | read_offset = 0 |
| 1043 | elif read_offset < 0: |
| 1044 | # Position is before the current position. Reset the ZipExtFile |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 1045 | self._fileobj.seek(self._orig_compress_start) |
| 1046 | self._running_crc = self._orig_start_crc |
| 1047 | self._compress_left = self._orig_compress_size |
| 1048 | self._left = self._orig_file_size |
| 1049 | self._readbuffer = b'' |
| 1050 | self._offset = 0 |
Miss Islington (bot) | ad4f64d | 2018-07-29 12:57:21 -0700 | [diff] [blame] | 1051 | self._decompressor = _get_decompressor(self._compress_type) |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 1052 | self._eof = False |
| 1053 | read_offset = new_pos |
| 1054 | |
| 1055 | while read_offset > 0: |
| 1056 | read_len = min(self.MAX_SEEK_READ, read_offset) |
| 1057 | self.read(read_len) |
| 1058 | read_offset -= read_len |
| 1059 | |
| 1060 | return self.tell() |
| 1061 | |
| 1062 | def tell(self): |
| 1063 | if not self._seekable: |
| 1064 | raise io.UnsupportedOperation("underlying stream is not seekable") |
| 1065 | filepos = self._orig_file_size - self._left - len(self._readbuffer) + self._offset |
| 1066 | return filepos |
| 1067 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1068 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1069 | class _ZipWriteFile(io.BufferedIOBase): |
| 1070 | def __init__(self, zf, zinfo, zip64): |
| 1071 | self._zinfo = zinfo |
| 1072 | self._zip64 = zip64 |
| 1073 | self._zipfile = zf |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1074 | self._compressor = _get_compressor(zinfo.compress_type, |
| 1075 | zinfo._compresslevel) |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1076 | self._file_size = 0 |
| 1077 | self._compress_size = 0 |
| 1078 | self._crc = 0 |
| 1079 | |
| 1080 | @property |
| 1081 | def _fileobj(self): |
| 1082 | return self._zipfile.fp |
| 1083 | |
| 1084 | def writable(self): |
| 1085 | return True |
| 1086 | |
| 1087 | def write(self, data): |
Serhiy Storchaka | 4c0d9ea | 2017-04-12 16:03:23 +0300 | [diff] [blame] | 1088 | if self.closed: |
| 1089 | raise ValueError('I/O operation on closed file.') |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1090 | nbytes = len(data) |
| 1091 | self._file_size += nbytes |
| 1092 | self._crc = crc32(data, self._crc) |
| 1093 | if self._compressor: |
| 1094 | data = self._compressor.compress(data) |
| 1095 | self._compress_size += len(data) |
| 1096 | self._fileobj.write(data) |
| 1097 | return nbytes |
| 1098 | |
| 1099 | def close(self): |
Serhiy Storchaka | 4c0d9ea | 2017-04-12 16:03:23 +0300 | [diff] [blame] | 1100 | if self.closed: |
| 1101 | return |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1102 | super().close() |
| 1103 | # Flush any data from the compressor, and update header info |
| 1104 | if self._compressor: |
| 1105 | buf = self._compressor.flush() |
| 1106 | self._compress_size += len(buf) |
| 1107 | self._fileobj.write(buf) |
| 1108 | self._zinfo.compress_size = self._compress_size |
| 1109 | else: |
| 1110 | self._zinfo.compress_size = self._file_size |
| 1111 | self._zinfo.CRC = self._crc |
| 1112 | self._zinfo.file_size = self._file_size |
| 1113 | |
| 1114 | # Write updated header info |
| 1115 | if self._zinfo.flag_bits & 0x08: |
| 1116 | # Write CRC and file sizes after the file data |
| 1117 | fmt = '<LQQ' if self._zip64 else '<LLL' |
| 1118 | self._fileobj.write(struct.pack(fmt, self._zinfo.CRC, |
| 1119 | self._zinfo.compress_size, self._zinfo.file_size)) |
| 1120 | self._zipfile.start_dir = self._fileobj.tell() |
| 1121 | else: |
| 1122 | if not self._zip64: |
| 1123 | if self._file_size > ZIP64_LIMIT: |
| 1124 | raise RuntimeError('File size unexpectedly exceeded ZIP64 ' |
| 1125 | 'limit') |
| 1126 | if self._compress_size > ZIP64_LIMIT: |
| 1127 | raise RuntimeError('Compressed size unexpectedly exceeded ' |
| 1128 | 'ZIP64 limit') |
| 1129 | # Seek backwards and write file header (which will now include |
| 1130 | # correct CRC and file sizes) |
| 1131 | |
| 1132 | # Preserve current position in file |
| 1133 | self._zipfile.start_dir = self._fileobj.tell() |
| 1134 | self._fileobj.seek(self._zinfo.header_offset) |
| 1135 | self._fileobj.write(self._zinfo.FileHeader(self._zip64)) |
| 1136 | self._fileobj.seek(self._zipfile.start_dir) |
| 1137 | |
| 1138 | self._zipfile._writing = False |
| 1139 | |
| 1140 | # Successfully written: Add file to our caches |
| 1141 | self._zipfile.filelist.append(self._zinfo) |
| 1142 | self._zipfile.NameToInfo[self._zinfo.filename] = self._zinfo |
| 1143 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1144 | class ZipFile: |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1145 | """ Class with methods to open, read, write, close, list zip files. |
| 1146 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1147 | z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=True, |
| 1148 | compresslevel=None) |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1149 | |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1150 | file: Either the path to the file, or a file-like object. |
| 1151 | If it is a path, the file will be opened and closed by ZipFile. |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1152 | mode: The mode can be either read 'r', write 'w', exclusive create 'x', |
| 1153 | or append 'a'. |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1154 | compression: ZIP_STORED (no compression), ZIP_DEFLATED (requires zlib), |
| 1155 | ZIP_BZIP2 (requires bz2) or ZIP_LZMA (requires lzma). |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1156 | allowZip64: if True ZipFile will create files with ZIP64 extensions when |
| 1157 | needed, otherwise it will raise an exception when this would |
| 1158 | be necessary. |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1159 | compresslevel: None (default for the given compression type) or an integer |
| 1160 | specifying the level to pass to the compressor. |
| 1161 | When using ZIP_STORED or ZIP_LZMA this keyword has no effect. |
| 1162 | When using ZIP_DEFLATED integers 0 through 9 are accepted. |
| 1163 | When using ZIP_BZIP2 integers 1 through 9 are accepted. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1164 | |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1165 | """ |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1166 | |
Fred Drake | 90eac28 | 2001-02-28 05:29:34 +0000 | [diff] [blame] | 1167 | fp = None # Set here since __del__ checks it |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1168 | _windows_illegal_name_trans_table = None |
Fred Drake | 90eac28 | 2001-02-28 05:29:34 +0000 | [diff] [blame] | 1169 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1170 | def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True, |
| 1171 | compresslevel=None): |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1172 | """Open the ZIP file with mode read 'r', write 'w', exclusive create 'x', |
| 1173 | or append 'a'.""" |
| 1174 | if mode not in ('r', 'w', 'x', 'a'): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1175 | raise ValueError("ZipFile requires mode 'r', 'w', 'x', or 'a'") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1176 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1177 | _check_compression(compression) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1178 | |
| 1179 | self._allowZip64 = allowZip64 |
| 1180 | self._didModify = False |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 1181 | self.debug = 0 # Level of printing: 0 through 3 |
| 1182 | self.NameToInfo = {} # Find file info given name |
| 1183 | self.filelist = [] # List of ZipInfo instances for archive |
| 1184 | self.compression = compression # Method of compression |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1185 | self.compresslevel = compresslevel |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1186 | self.mode = mode |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1187 | self.pwd = None |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1188 | self._comment = b'' |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1189 | |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1190 | # Check if we were passed a file-like object |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1191 | if isinstance(file, os.PathLike): |
| 1192 | file = os.fspath(file) |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 1193 | if isinstance(file, str): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1194 | # No, it's a filename |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1195 | self._filePassed = 0 |
| 1196 | self.filename = file |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1197 | modeDict = {'r' : 'rb', 'w': 'w+b', 'x': 'x+b', 'a' : 'r+b', |
| 1198 | 'r+b': 'w+b', 'w+b': 'wb', 'x+b': 'xb'} |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1199 | filemode = modeDict[mode] |
| 1200 | while True: |
| 1201 | try: |
| 1202 | self.fp = io.open(file, filemode) |
| 1203 | except OSError: |
| 1204 | if filemode in modeDict: |
| 1205 | filemode = modeDict[filemode] |
| 1206 | continue |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1207 | raise |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1208 | break |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1209 | else: |
| 1210 | self._filePassed = 1 |
| 1211 | self.fp = file |
| 1212 | self.filename = getattr(file, 'name', None) |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1213 | self._fileRefCnt = 1 |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1214 | self._lock = threading.RLock() |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1215 | self._seekable = True |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1216 | self._writing = False |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1217 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1218 | try: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1219 | if mode == 'r': |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 1220 | self._RealGetContents() |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1221 | elif mode in ('w', 'x'): |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1222 | # set the modified flag so central directory gets written |
| 1223 | # even if no files are added to the archive |
| 1224 | self._didModify = True |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1225 | try: |
Serhiy Storchaka | 34cba33 | 2017-01-01 19:00:30 +0200 | [diff] [blame] | 1226 | self.start_dir = self.fp.tell() |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1227 | except (AttributeError, OSError): |
| 1228 | self.fp = _Tellable(self.fp) |
Serhiy Storchaka | 34cba33 | 2017-01-01 19:00:30 +0200 | [diff] [blame] | 1229 | self.start_dir = 0 |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1230 | self._seekable = False |
| 1231 | else: |
| 1232 | # Some file-like objects can provide tell() but not seek() |
| 1233 | try: |
| 1234 | self.fp.seek(self.start_dir) |
| 1235 | except (AttributeError, OSError): |
| 1236 | self._seekable = False |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1237 | elif mode == 'a': |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1238 | try: |
| 1239 | # See if file is a zip file |
| 1240 | self._RealGetContents() |
| 1241 | # seek to start of directory and overwrite |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1242 | self.fp.seek(self.start_dir) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1243 | except BadZipFile: |
| 1244 | # file is not a zip file, just append |
| 1245 | self.fp.seek(0, 2) |
| 1246 | |
| 1247 | # set the modified flag so central directory gets written |
| 1248 | # even if no files are added to the archive |
| 1249 | self._didModify = True |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1250 | self.start_dir = self.fp.tell() |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1251 | else: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1252 | raise ValueError("Mode must be 'r', 'w', 'x', or 'a'") |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1253 | except: |
| 1254 | fp = self.fp |
| 1255 | self.fp = None |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1256 | self._fpclose(fp) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1257 | raise |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1258 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1259 | def __enter__(self): |
| 1260 | return self |
| 1261 | |
| 1262 | def __exit__(self, type, value, traceback): |
| 1263 | self.close() |
| 1264 | |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 1265 | def __repr__(self): |
| 1266 | result = ['<%s.%s' % (self.__class__.__module__, |
| 1267 | self.__class__.__qualname__)] |
| 1268 | if self.fp is not None: |
| 1269 | if self._filePassed: |
| 1270 | result.append(' file=%r' % self.fp) |
| 1271 | elif self.filename is not None: |
| 1272 | result.append(' filename=%r' % self.filename) |
| 1273 | result.append(' mode=%r' % self.mode) |
| 1274 | else: |
| 1275 | result.append(' [closed]') |
| 1276 | result.append('>') |
| 1277 | return ''.join(result) |
| 1278 | |
Tim Peters | 7d3bad6 | 2001-04-04 18:56:49 +0000 | [diff] [blame] | 1279 | def _RealGetContents(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1280 | """Read in the table of contents for the ZIP file.""" |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1281 | fp = self.fp |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1282 | try: |
| 1283 | endrec = _EndRecData(fp) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1284 | except OSError: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1285 | raise BadZipFile("File is not a zip file") |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 1286 | if not endrec: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1287 | raise BadZipFile("File is not a zip file") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1288 | if self.debug > 1: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1289 | print(endrec) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1290 | size_cd = endrec[_ECD_SIZE] # bytes in central directory |
| 1291 | offset_cd = endrec[_ECD_OFFSET] # offset of central directory |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1292 | self._comment = endrec[_ECD_COMMENT] # archive comment |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1293 | |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1294 | # "concat" is zero, unless zip was concatenated to another file |
| 1295 | concat = endrec[_ECD_LOCATION] - size_cd - offset_cd |
Antoine Pitrou | 9e4fdf4 | 2008-09-05 23:43:02 +0000 | [diff] [blame] | 1296 | if endrec[_ECD_SIGNATURE] == stringEndArchive64: |
| 1297 | # If Zip64 extension structures are present, account for them |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1298 | concat -= (sizeEndCentDir64 + sizeEndCentDir64Locator) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1299 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1300 | if self.debug > 2: |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1301 | inferred = concat + offset_cd |
| 1302 | print("given, inferred, offset", offset_cd, inferred, concat) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1303 | # self.start_dir: Position of start of central directory |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1304 | self.start_dir = offset_cd + concat |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1305 | fp.seek(self.start_dir, 0) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1306 | data = fp.read(size_cd) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1307 | fp = io.BytesIO(data) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1308 | total = 0 |
| 1309 | while total < size_cd: |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1310 | centdir = fp.read(sizeCentralDir) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 1311 | if len(centdir) != sizeCentralDir: |
| 1312 | raise BadZipFile("Truncated central directory") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1313 | centdir = struct.unpack(structCentralDir, centdir) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 1314 | if centdir[_CD_SIGNATURE] != stringCentralDir: |
| 1315 | raise BadZipFile("Bad magic number for central directory") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1316 | if self.debug > 2: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1317 | print(centdir) |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 1318 | filename = fp.read(centdir[_CD_FILENAME_LENGTH]) |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 1319 | flags = centdir[5] |
| 1320 | if flags & 0x800: |
| 1321 | # UTF-8 file names extension |
| 1322 | filename = filename.decode('utf-8') |
| 1323 | else: |
| 1324 | # Historical ZIP filename encoding |
| 1325 | filename = filename.decode('cp437') |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1326 | # Create ZipInfo instance to store file information |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 1327 | x = ZipInfo(filename) |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 1328 | x.extra = fp.read(centdir[_CD_EXTRA_FIELD_LENGTH]) |
| 1329 | x.comment = fp.read(centdir[_CD_COMMENT_LENGTH]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1330 | x.header_offset = centdir[_CD_LOCAL_HEADER_OFFSET] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1331 | (x.create_version, x.create_system, x.extract_version, x.reserved, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1332 | x.flag_bits, x.compress_type, t, d, |
| 1333 | x.CRC, x.compress_size, x.file_size) = centdir[1:12] |
Martin v. Löwis | d099b56 | 2012-05-01 14:08:22 +0200 | [diff] [blame] | 1334 | if x.extract_version > MAX_EXTRACT_VERSION: |
| 1335 | raise NotImplementedError("zip file version %.1f" % |
| 1336 | (x.extract_version / 10)) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1337 | x.volume, x.internal_attr, x.external_attr = centdir[15:18] |
| 1338 | # Convert date/time code to (year, month, day, hour, min, sec) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1339 | x._raw_time = t |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1340 | x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1341 | t>>11, (t>>5)&0x3F, (t&0x1F) * 2 ) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1342 | |
| 1343 | x._decodeExtra() |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1344 | x.header_offset = x.header_offset + concat |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1345 | self.filelist.append(x) |
| 1346 | self.NameToInfo[x.filename] = x |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1347 | |
| 1348 | # update total bytes read from central directory |
| 1349 | total = (total + sizeCentralDir + centdir[_CD_FILENAME_LENGTH] |
| 1350 | + centdir[_CD_EXTRA_FIELD_LENGTH] |
| 1351 | + centdir[_CD_COMMENT_LENGTH]) |
| 1352 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1353 | if self.debug > 2: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1354 | print("total", total) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1355 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1356 | |
| 1357 | def namelist(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1358 | """Return a list of file names in the archive.""" |
Ezio Melotti | 006917e | 2012-04-16 21:34:24 -0600 | [diff] [blame] | 1359 | return [data.filename for data in self.filelist] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1360 | |
| 1361 | def infolist(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1362 | """Return a list of class ZipInfo instances for files in the |
| 1363 | archive.""" |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1364 | return self.filelist |
| 1365 | |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1366 | def printdir(self, file=None): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1367 | """Print a table of contents for the zip file.""" |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1368 | print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"), |
| 1369 | file=file) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1370 | for zinfo in self.filelist: |
Guido van Rossum | 7736b5b | 2008-01-15 21:44:53 +0000 | [diff] [blame] | 1371 | date = "%d-%02d-%02d %02d:%02d:%02d" % zinfo.date_time[:6] |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1372 | print("%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size), |
| 1373 | file=file) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1374 | |
| 1375 | def testzip(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1376 | """Read all the files and check the CRC.""" |
Benjamin Peterson | 4cd6a95 | 2008-08-17 20:23:46 +0000 | [diff] [blame] | 1377 | chunk_size = 2 ** 20 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1378 | for zinfo in self.filelist: |
| 1379 | try: |
Benjamin Peterson | 4cd6a95 | 2008-08-17 20:23:46 +0000 | [diff] [blame] | 1380 | # Read by chunks, to avoid an OverflowError or a |
| 1381 | # MemoryError with very large embedded files. |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1382 | with self.open(zinfo.filename, "r") as f: |
| 1383 | while f.read(chunk_size): # Check CRC-32 |
| 1384 | pass |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1385 | except BadZipFile: |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1386 | return zinfo.filename |
| 1387 | |
| 1388 | def getinfo(self, name): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1389 | """Return the instance of ZipInfo given 'name'.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1390 | info = self.NameToInfo.get(name) |
| 1391 | if info is None: |
| 1392 | raise KeyError( |
| 1393 | 'There is no item named %r in the archive' % name) |
| 1394 | |
| 1395 | return info |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1396 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1397 | def setpassword(self, pwd): |
| 1398 | """Set default password for encrypted files.""" |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1399 | if pwd and not isinstance(pwd, bytes): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1400 | raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__) |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1401 | if pwd: |
| 1402 | self.pwd = pwd |
| 1403 | else: |
| 1404 | self.pwd = None |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1405 | |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1406 | @property |
| 1407 | def comment(self): |
| 1408 | """The comment text associated with the ZIP file.""" |
| 1409 | return self._comment |
| 1410 | |
| 1411 | @comment.setter |
| 1412 | def comment(self, comment): |
| 1413 | if not isinstance(comment, bytes): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1414 | raise TypeError("comment: expected bytes, got %s" % type(comment).__name__) |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1415 | # check for valid comment length |
Serhiy Storchaka | 9b7a1a1 | 2014-01-20 21:57:40 +0200 | [diff] [blame] | 1416 | if len(comment) > ZIP_MAX_COMMENT: |
| 1417 | import warnings |
| 1418 | warnings.warn('Archive comment is too long; truncating to %d bytes' |
| 1419 | % ZIP_MAX_COMMENT, stacklevel=2) |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1420 | comment = comment[:ZIP_MAX_COMMENT] |
| 1421 | self._comment = comment |
| 1422 | self._didModify = True |
| 1423 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1424 | def read(self, name, pwd=None): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1425 | """Return file bytes (as a string) for name.""" |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1426 | with self.open(name, "r", pwd) as fp: |
| 1427 | return fp.read() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1428 | |
Serhiy Storchaka | f47fc55 | 2016-05-15 12:27:16 +0300 | [diff] [blame] | 1429 | def open(self, name, mode="r", pwd=None, *, force_zip64=False): |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1430 | """Return file-like object for 'name'. |
| 1431 | |
| 1432 | name is a string for the file name within the ZIP file, or a ZipInfo |
| 1433 | object. |
| 1434 | |
| 1435 | mode should be 'r' to read a file already in the ZIP file, or 'w' to |
| 1436 | write to a file newly added to the archive. |
| 1437 | |
| 1438 | pwd is the password to decrypt files (only used for reading). |
| 1439 | |
| 1440 | When writing, if the file size is not known in advance but may exceed |
| 1441 | 2 GiB, pass force_zip64 to use the ZIP64 format, which can handle large |
| 1442 | files. If the size is known in advance, it is best to pass a ZipInfo |
| 1443 | instance for name, with zinfo.file_size set. |
| 1444 | """ |
Serhiy Storchaka | e670be2 | 2016-06-11 19:32:44 +0300 | [diff] [blame] | 1445 | if mode not in {"r", "w"}: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1446 | raise ValueError('open() requires mode "r" or "w"') |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1447 | if pwd and not isinstance(pwd, bytes): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1448 | raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__) |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1449 | if pwd and (mode == "w"): |
| 1450 | raise ValueError("pwd is only supported for reading files") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1451 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1452 | raise ValueError( |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1453 | "Attempt to use ZIP archive that was already closed") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1454 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1455 | # Make sure we have an info object |
| 1456 | if isinstance(name, ZipInfo): |
| 1457 | # 'name' is already an info object |
| 1458 | zinfo = name |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1459 | elif mode == 'w': |
| 1460 | zinfo = ZipInfo(name) |
| 1461 | zinfo.compress_type = self.compression |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1462 | zinfo._compresslevel = self.compresslevel |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1463 | else: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1464 | # Get info object for name |
| 1465 | zinfo = self.getinfo(name) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1466 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1467 | if mode == 'w': |
| 1468 | return self._open_to_write(zinfo, force_zip64=force_zip64) |
| 1469 | |
| 1470 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1471 | raise ValueError("Can't read from the ZIP file while there " |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1472 | "is an open writing handle on it. " |
| 1473 | "Close the writing handle before trying to read.") |
| 1474 | |
| 1475 | # Open for reading: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1476 | self._fileRefCnt += 1 |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1477 | zef_file = _SharedFile(self.fp, zinfo.header_offset, |
| 1478 | self._fpclose, self._lock, lambda: self._writing) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1479 | try: |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1480 | # Skip the file header: |
| 1481 | fheader = zef_file.read(sizeFileHeader) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 1482 | if len(fheader) != sizeFileHeader: |
| 1483 | raise BadZipFile("Truncated file header") |
| 1484 | fheader = struct.unpack(structFileHeader, fheader) |
| 1485 | if fheader[_FH_SIGNATURE] != stringFileHeader: |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1486 | raise BadZipFile("Bad magic number for file header") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1487 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1488 | fname = zef_file.read(fheader[_FH_FILENAME_LENGTH]) |
| 1489 | if fheader[_FH_EXTRA_FIELD_LENGTH]: |
| 1490 | zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1491 | |
Antoine Pitrou | 8572da5 | 2012-11-17 23:52:05 +0100 | [diff] [blame] | 1492 | if zinfo.flag_bits & 0x20: |
| 1493 | # Zip 2.7: compressed patched data |
| 1494 | raise NotImplementedError("compressed patched data (flag bit 5)") |
Martin v. Löwis | 2a2ce32 | 2012-05-01 08:44:08 +0200 | [diff] [blame] | 1495 | |
Antoine Pitrou | 8572da5 | 2012-11-17 23:52:05 +0100 | [diff] [blame] | 1496 | if zinfo.flag_bits & 0x40: |
| 1497 | # strong encryption |
| 1498 | raise NotImplementedError("strong encryption (flag bit 6)") |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1499 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1500 | if zinfo.flag_bits & 0x800: |
| 1501 | # UTF-8 filename |
| 1502 | fname_str = fname.decode("utf-8") |
| 1503 | else: |
| 1504 | fname_str = fname.decode("cp437") |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 1505 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1506 | if fname_str != zinfo.orig_filename: |
| 1507 | raise BadZipFile( |
| 1508 | 'File name in directory %r and header %r differ.' |
| 1509 | % (zinfo.orig_filename, fname)) |
| 1510 | |
| 1511 | # check for encrypted flag & handle password |
| 1512 | is_encrypted = zinfo.flag_bits & 0x1 |
| 1513 | zd = None |
| 1514 | if is_encrypted: |
| 1515 | if not pwd: |
| 1516 | pwd = self.pwd |
| 1517 | if not pwd: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1518 | raise RuntimeError("File %r is encrypted, password " |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1519 | "required for extraction" % name) |
| 1520 | |
| 1521 | zd = _ZipDecrypter(pwd) |
| 1522 | # The first 12 bytes in the cypher stream is an encryption header |
| 1523 | # used to strengthen the algorithm. The first 11 bytes are |
| 1524 | # completely random, while the 12th contains the MSB of the CRC, |
| 1525 | # or the MSB of the file time depending on the header type |
| 1526 | # and is used to check the correctness of the password. |
| 1527 | header = zef_file.read(12) |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 1528 | h = zd(header[0:12]) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1529 | if zinfo.flag_bits & 0x8: |
| 1530 | # compare against the file type from extended local headers |
| 1531 | check_byte = (zinfo._raw_time >> 8) & 0xff |
| 1532 | else: |
| 1533 | # compare against the CRC otherwise |
| 1534 | check_byte = (zinfo.CRC >> 24) & 0xff |
| 1535 | if h[11] != check_byte: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1536 | raise RuntimeError("Bad password for file %r" % name) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1537 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1538 | return ZipExtFile(zef_file, mode, zinfo, zd, True) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1539 | except: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1540 | zef_file.close() |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1541 | raise |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1542 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1543 | def _open_to_write(self, zinfo, force_zip64=False): |
| 1544 | if force_zip64 and not self._allowZip64: |
| 1545 | raise ValueError( |
| 1546 | "force_zip64 is True, but allowZip64 was False when opening " |
| 1547 | "the ZIP file." |
| 1548 | ) |
| 1549 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1550 | raise ValueError("Can't write to the ZIP file while there is " |
| 1551 | "another write handle open on it. " |
| 1552 | "Close the first handle before opening another.") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1553 | |
| 1554 | # Sizes and CRC are overwritten with correct data after processing the file |
| 1555 | if not hasattr(zinfo, 'file_size'): |
| 1556 | zinfo.file_size = 0 |
| 1557 | zinfo.compress_size = 0 |
| 1558 | zinfo.CRC = 0 |
| 1559 | |
| 1560 | zinfo.flag_bits = 0x00 |
| 1561 | if zinfo.compress_type == ZIP_LZMA: |
| 1562 | # Compressed data includes an end-of-stream (EOS) marker |
| 1563 | zinfo.flag_bits |= 0x02 |
| 1564 | if not self._seekable: |
| 1565 | zinfo.flag_bits |= 0x08 |
| 1566 | |
| 1567 | if not zinfo.external_attr: |
| 1568 | zinfo.external_attr = 0o600 << 16 # permissions: ?rw------- |
| 1569 | |
| 1570 | # Compressed size can be larger than uncompressed size |
| 1571 | zip64 = self._allowZip64 and \ |
| 1572 | (force_zip64 or zinfo.file_size * 1.05 > ZIP64_LIMIT) |
| 1573 | |
| 1574 | if self._seekable: |
| 1575 | self.fp.seek(self.start_dir) |
| 1576 | zinfo.header_offset = self.fp.tell() |
| 1577 | |
| 1578 | self._writecheck(zinfo) |
| 1579 | self._didModify = True |
| 1580 | |
| 1581 | self.fp.write(zinfo.FileHeader(zip64)) |
| 1582 | |
| 1583 | self._writing = True |
| 1584 | return _ZipWriteFile(self, zinfo, zip64) |
| 1585 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1586 | def extract(self, member, path=None, pwd=None): |
| 1587 | """Extract a member from the archive to the current working directory, |
| 1588 | using its full name. Its file information is extracted as accurately |
| 1589 | as possible. `member' may be a filename or a ZipInfo object. You can |
| 1590 | specify a different directory using `path'. |
| 1591 | """ |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1592 | if path is None: |
| 1593 | path = os.getcwd() |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1594 | else: |
| 1595 | path = os.fspath(path) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1596 | |
| 1597 | return self._extract_member(member, path, pwd) |
| 1598 | |
| 1599 | def extractall(self, path=None, members=None, pwd=None): |
| 1600 | """Extract all members from the archive to the current working |
| 1601 | directory. `path' specifies a different directory to extract to. |
| 1602 | `members' is optional and must be a subset of the list returned |
| 1603 | by namelist(). |
| 1604 | """ |
| 1605 | if members is None: |
| 1606 | members = self.namelist() |
| 1607 | |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1608 | if path is None: |
| 1609 | path = os.getcwd() |
| 1610 | else: |
| 1611 | path = os.fspath(path) |
| 1612 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1613 | for zipinfo in members: |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1614 | self._extract_member(zipinfo, path, pwd) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1615 | |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1616 | @classmethod |
| 1617 | def _sanitize_windows_name(cls, arcname, pathsep): |
| 1618 | """Replace bad characters and remove trailing dots from parts.""" |
| 1619 | table = cls._windows_illegal_name_trans_table |
| 1620 | if not table: |
| 1621 | illegal = ':<>|"?*' |
| 1622 | table = str.maketrans(illegal, '_' * len(illegal)) |
| 1623 | cls._windows_illegal_name_trans_table = table |
| 1624 | arcname = arcname.translate(table) |
| 1625 | # remove trailing dots |
| 1626 | arcname = (x.rstrip('.') for x in arcname.split(pathsep)) |
| 1627 | # rejoin, removing empty parts. |
| 1628 | arcname = pathsep.join(x for x in arcname if x) |
| 1629 | return arcname |
| 1630 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1631 | def _extract_member(self, member, targetpath, pwd): |
| 1632 | """Extract the ZipInfo object 'member' to a physical |
| 1633 | file on the path targetpath. |
| 1634 | """ |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1635 | if not isinstance(member, ZipInfo): |
| 1636 | member = self.getinfo(member) |
| 1637 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1638 | # build the destination pathname, replacing |
| 1639 | # forward slashes to platform specific separators. |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1640 | arcname = member.filename.replace('/', os.path.sep) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1641 | |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1642 | if os.path.altsep: |
| 1643 | arcname = arcname.replace(os.path.altsep, os.path.sep) |
| 1644 | # interpret absolute pathname as relative, remove drive letter or |
| 1645 | # UNC path, redundant separators, "." and ".." components. |
| 1646 | arcname = os.path.splitdrive(arcname)[1] |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1647 | invalid_path_parts = ('', os.path.curdir, os.path.pardir) |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1648 | arcname = os.path.sep.join(x for x in arcname.split(os.path.sep) |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1649 | if x not in invalid_path_parts) |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1650 | if os.path.sep == '\\': |
Serhiy Storchaka | e5e6444 | 2013-02-02 19:50:59 +0200 | [diff] [blame] | 1651 | # filter illegal characters on Windows |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1652 | arcname = self._sanitize_windows_name(arcname, os.path.sep) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1653 | |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1654 | targetpath = os.path.join(targetpath, arcname) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1655 | targetpath = os.path.normpath(targetpath) |
| 1656 | |
| 1657 | # Create all upper directories if necessary. |
| 1658 | upperdirs = os.path.dirname(targetpath) |
| 1659 | if upperdirs and not os.path.exists(upperdirs): |
| 1660 | os.makedirs(upperdirs) |
| 1661 | |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 1662 | if member.is_dir(): |
Martin v. Löwis | 70ccd16 | 2009-05-24 19:47:22 +0000 | [diff] [blame] | 1663 | if not os.path.isdir(targetpath): |
| 1664 | os.mkdir(targetpath) |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1665 | return targetpath |
| 1666 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1667 | with self.open(member, pwd=pwd) as source, \ |
| 1668 | open(targetpath, "wb") as target: |
| 1669 | shutil.copyfileobj(source, target) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1670 | |
| 1671 | return targetpath |
| 1672 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1673 | def _writecheck(self, zinfo): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1674 | """Check for errors before writing a file to the archive.""" |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 1675 | if zinfo.filename in self.NameToInfo: |
Serhiy Storchaka | 9b7a1a1 | 2014-01-20 21:57:40 +0200 | [diff] [blame] | 1676 | import warnings |
| 1677 | warnings.warn('Duplicate name: %r' % zinfo.filename, stacklevel=3) |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1678 | if self.mode not in ('w', 'x', 'a'): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1679 | raise ValueError("write() requires mode 'w', 'x', or 'a'") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1680 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1681 | raise ValueError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1682 | "Attempt to write ZIP archive that was already closed") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1683 | _check_compression(zinfo.compress_type) |
Serhiy Storchaka | cfbb394 | 2014-09-23 21:34:24 +0300 | [diff] [blame] | 1684 | if not self._allowZip64: |
| 1685 | requires_zip64 = None |
| 1686 | if len(self.filelist) >= ZIP_FILECOUNT_LIMIT: |
| 1687 | requires_zip64 = "Files count" |
| 1688 | elif zinfo.file_size > ZIP64_LIMIT: |
| 1689 | requires_zip64 = "Filesize" |
| 1690 | elif zinfo.header_offset > ZIP64_LIMIT: |
| 1691 | requires_zip64 = "Zipfile size" |
| 1692 | if requires_zip64: |
| 1693 | raise LargeZipFile(requires_zip64 + |
| 1694 | " would require ZIP64 extensions") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1695 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1696 | def write(self, filename, arcname=None, |
| 1697 | compress_type=None, compresslevel=None): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1698 | """Put the bytes from filename into the archive under the name |
| 1699 | arcname.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1700 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1701 | raise ValueError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1702 | "Attempt to write to ZIP archive that was already closed") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1703 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1704 | raise ValueError( |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1705 | "Can't write to ZIP archive while an open writing handle exists" |
| 1706 | ) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1707 | |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 1708 | zinfo = ZipInfo.from_file(filename, arcname) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1709 | |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 1710 | if zinfo.is_dir(): |
| 1711 | zinfo.compress_size = 0 |
| 1712 | zinfo.CRC = 0 |
| 1713 | else: |
| 1714 | if compress_type is not None: |
| 1715 | zinfo.compress_type = compress_type |
| 1716 | else: |
| 1717 | zinfo.compress_type = self.compression |
| 1718 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1719 | if compresslevel is not None: |
| 1720 | zinfo._compresslevel = compresslevel |
| 1721 | else: |
| 1722 | zinfo._compresslevel = self.compresslevel |
| 1723 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1724 | if zinfo.is_dir(): |
| 1725 | with self._lock: |
| 1726 | if self._seekable: |
| 1727 | self.fp.seek(self.start_dir) |
| 1728 | zinfo.header_offset = self.fp.tell() # Start of header bytes |
| 1729 | if zinfo.compress_type == ZIP_LZMA: |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1730 | # Compressed data includes an end-of-stream (EOS) marker |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1731 | zinfo.flag_bits |= 0x02 |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1732 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1733 | self._writecheck(zinfo) |
| 1734 | self._didModify = True |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1735 | |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1736 | self.filelist.append(zinfo) |
| 1737 | self.NameToInfo[zinfo.filename] = zinfo |
| 1738 | self.fp.write(zinfo.FileHeader(False)) |
| 1739 | self.start_dir = self.fp.tell() |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1740 | else: |
| 1741 | with open(filename, "rb") as src, self.open(zinfo, 'w') as dest: |
| 1742 | shutil.copyfileobj(src, dest, 1024*8) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1743 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1744 | def writestr(self, zinfo_or_arcname, data, |
| 1745 | compress_type=None, compresslevel=None): |
Guido van Rossum | 85825dc | 2007-08-27 17:03:28 +0000 | [diff] [blame] | 1746 | """Write a file into the archive. The contents is 'data', which |
| 1747 | may be either a 'str' or a 'bytes' instance; if it is a 'str', |
| 1748 | it is encoded as UTF-8 first. |
| 1749 | 'zinfo_or_arcname' is either a ZipInfo instance or |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1750 | the name of the file in the archive.""" |
Guido van Rossum | 85825dc | 2007-08-27 17:03:28 +0000 | [diff] [blame] | 1751 | if isinstance(data, str): |
| 1752 | data = data.encode("utf-8") |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1753 | if not isinstance(zinfo_or_arcname, ZipInfo): |
| 1754 | zinfo = ZipInfo(filename=zinfo_or_arcname, |
Guido van Rossum | 7736b5b | 2008-01-15 21:44:53 +0000 | [diff] [blame] | 1755 | date_time=time.localtime(time.time())[:6]) |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1756 | zinfo.compress_type = self.compression |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1757 | zinfo._compresslevel = self.compresslevel |
Serhiy Storchaka | 46a3492 | 2014-09-23 22:40:23 +0300 | [diff] [blame] | 1758 | if zinfo.filename[-1] == '/': |
| 1759 | zinfo.external_attr = 0o40775 << 16 # drwxrwxr-x |
| 1760 | zinfo.external_attr |= 0x10 # MS-DOS directory flag |
| 1761 | else: |
| 1762 | zinfo.external_attr = 0o600 << 16 # ?rw------- |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1763 | else: |
| 1764 | zinfo = zinfo_or_arcname |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1765 | |
| 1766 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1767 | raise ValueError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1768 | "Attempt to write to ZIP archive that was already closed") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1769 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1770 | raise ValueError( |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1771 | "Can't write to ZIP archive while an open writing handle exists." |
| 1772 | ) |
| 1773 | |
| 1774 | if compress_type is not None: |
| 1775 | zinfo.compress_type = compress_type |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1776 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1777 | if compresslevel is not None: |
| 1778 | zinfo._compresslevel = compresslevel |
| 1779 | |
Guido van Rossum | 85825dc | 2007-08-27 17:03:28 +0000 | [diff] [blame] | 1780 | zinfo.file_size = len(data) # Uncompressed size |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1781 | with self._lock: |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1782 | with self.open(zinfo, mode='w') as dest: |
| 1783 | dest.write(data) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1784 | |
| 1785 | def __del__(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1786 | """Call the "close()" method in case the user forgot.""" |
Tim Peters | d15f8bb | 2001-11-28 23:16:40 +0000 | [diff] [blame] | 1787 | self.close() |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1788 | |
| 1789 | def close(self): |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1790 | """Close the file, and for mode 'w', 'x' and 'a' write the ending |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1791 | records.""" |
Tim Peters | d15f8bb | 2001-11-28 23:16:40 +0000 | [diff] [blame] | 1792 | if self.fp is None: |
| 1793 | return |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1794 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1795 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1796 | raise ValueError("Can't close the ZIP file while there is " |
| 1797 | "an open writing handle on it. " |
| 1798 | "Close the writing handle before closing the zip.") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1799 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1800 | try: |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1801 | if self.mode in ('w', 'x', 'a') and self._didModify: # write ending records |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1802 | with self._lock: |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1803 | if self._seekable: |
Serhiy Storchaka | a14f7d2 | 2015-01-26 14:01:27 +0200 | [diff] [blame] | 1804 | self.fp.seek(self.start_dir) |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1805 | self._write_end_record() |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1806 | finally: |
| 1807 | fp = self.fp |
| 1808 | self.fp = None |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1809 | self._fpclose(fp) |
| 1810 | |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1811 | def _write_end_record(self): |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1812 | for zinfo in self.filelist: # write central directory |
| 1813 | dt = zinfo.date_time |
| 1814 | dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] |
| 1815 | dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) |
| 1816 | extra = [] |
| 1817 | if zinfo.file_size > ZIP64_LIMIT \ |
| 1818 | or zinfo.compress_size > ZIP64_LIMIT: |
| 1819 | extra.append(zinfo.file_size) |
| 1820 | extra.append(zinfo.compress_size) |
| 1821 | file_size = 0xffffffff |
| 1822 | compress_size = 0xffffffff |
| 1823 | else: |
| 1824 | file_size = zinfo.file_size |
| 1825 | compress_size = zinfo.compress_size |
| 1826 | |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1827 | if zinfo.header_offset > ZIP64_LIMIT: |
| 1828 | extra.append(zinfo.header_offset) |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1829 | header_offset = 0xffffffff |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1830 | else: |
| 1831 | header_offset = zinfo.header_offset |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1832 | |
| 1833 | extra_data = zinfo.extra |
| 1834 | min_version = 0 |
| 1835 | if extra: |
| 1836 | # Append a ZIP64 field to the extra's |
Miss Islington (bot) | efdf316 | 2018-09-17 06:08:45 -0700 | [diff] [blame] | 1837 | extra_data = _strip_extra(extra_data, (1,)) |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1838 | extra_data = struct.pack( |
| 1839 | '<HH' + 'Q'*len(extra), |
| 1840 | 1, 8*len(extra), *extra) + extra_data |
| 1841 | |
| 1842 | min_version = ZIP64_VERSION |
| 1843 | |
| 1844 | if zinfo.compress_type == ZIP_BZIP2: |
| 1845 | min_version = max(BZIP2_VERSION, min_version) |
| 1846 | elif zinfo.compress_type == ZIP_LZMA: |
| 1847 | min_version = max(LZMA_VERSION, min_version) |
| 1848 | |
| 1849 | extract_version = max(min_version, zinfo.extract_version) |
| 1850 | create_version = max(min_version, zinfo.create_version) |
| 1851 | try: |
| 1852 | filename, flag_bits = zinfo._encodeFilenameFlags() |
| 1853 | centdir = struct.pack(structCentralDir, |
| 1854 | stringCentralDir, create_version, |
| 1855 | zinfo.create_system, extract_version, zinfo.reserved, |
| 1856 | flag_bits, zinfo.compress_type, dostime, dosdate, |
| 1857 | zinfo.CRC, compress_size, file_size, |
| 1858 | len(filename), len(extra_data), len(zinfo.comment), |
| 1859 | 0, zinfo.internal_attr, zinfo.external_attr, |
| 1860 | header_offset) |
| 1861 | except DeprecationWarning: |
| 1862 | print((structCentralDir, stringCentralDir, create_version, |
| 1863 | zinfo.create_system, extract_version, zinfo.reserved, |
| 1864 | zinfo.flag_bits, zinfo.compress_type, dostime, dosdate, |
| 1865 | zinfo.CRC, compress_size, file_size, |
| 1866 | len(zinfo.filename), len(extra_data), len(zinfo.comment), |
| 1867 | 0, zinfo.internal_attr, zinfo.external_attr, |
| 1868 | header_offset), file=sys.stderr) |
| 1869 | raise |
| 1870 | self.fp.write(centdir) |
| 1871 | self.fp.write(filename) |
| 1872 | self.fp.write(extra_data) |
| 1873 | self.fp.write(zinfo.comment) |
| 1874 | |
| 1875 | pos2 = self.fp.tell() |
| 1876 | # Write end-of-zip-archive record |
| 1877 | centDirCount = len(self.filelist) |
| 1878 | centDirSize = pos2 - self.start_dir |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1879 | centDirOffset = self.start_dir |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1880 | requires_zip64 = None |
| 1881 | if centDirCount > ZIP_FILECOUNT_LIMIT: |
| 1882 | requires_zip64 = "Files count" |
| 1883 | elif centDirOffset > ZIP64_LIMIT: |
| 1884 | requires_zip64 = "Central directory offset" |
| 1885 | elif centDirSize > ZIP64_LIMIT: |
| 1886 | requires_zip64 = "Central directory size" |
| 1887 | if requires_zip64: |
| 1888 | # Need to write the ZIP64 end-of-archive records |
| 1889 | if not self._allowZip64: |
| 1890 | raise LargeZipFile(requires_zip64 + |
| 1891 | " would require ZIP64 extensions") |
| 1892 | zip64endrec = struct.pack( |
| 1893 | structEndArchive64, stringEndArchive64, |
| 1894 | 44, 45, 45, 0, 0, centDirCount, centDirCount, |
| 1895 | centDirSize, centDirOffset) |
| 1896 | self.fp.write(zip64endrec) |
| 1897 | |
| 1898 | zip64locrec = struct.pack( |
| 1899 | structEndArchive64Locator, |
| 1900 | stringEndArchive64Locator, 0, pos2, 1) |
| 1901 | self.fp.write(zip64locrec) |
| 1902 | centDirCount = min(centDirCount, 0xFFFF) |
| 1903 | centDirSize = min(centDirSize, 0xFFFFFFFF) |
| 1904 | centDirOffset = min(centDirOffset, 0xFFFFFFFF) |
| 1905 | |
| 1906 | endrec = struct.pack(structEndArchive, stringEndArchive, |
| 1907 | 0, 0, centDirCount, centDirCount, |
| 1908 | centDirSize, centDirOffset, len(self._comment)) |
| 1909 | self.fp.write(endrec) |
| 1910 | self.fp.write(self._comment) |
| 1911 | self.fp.flush() |
| 1912 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1913 | def _fpclose(self, fp): |
| 1914 | assert self._fileRefCnt > 0 |
| 1915 | self._fileRefCnt -= 1 |
| 1916 | if not self._fileRefCnt and not self._filePassed: |
| 1917 | fp.close() |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1918 | |
| 1919 | |
| 1920 | class PyZipFile(ZipFile): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1921 | """Class to create ZIP archives with Python library files and packages.""" |
| 1922 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 1923 | def __init__(self, file, mode="r", compression=ZIP_STORED, |
Serhiy Storchaka | 235c5e0 | 2013-11-23 15:55:38 +0200 | [diff] [blame] | 1924 | allowZip64=True, optimize=-1): |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 1925 | ZipFile.__init__(self, file, mode=mode, compression=compression, |
| 1926 | allowZip64=allowZip64) |
| 1927 | self._optimize = optimize |
| 1928 | |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1929 | def writepy(self, pathname, basename="", filterfunc=None): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1930 | """Add all files from "pathname" to the ZIP archive. |
| 1931 | |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1932 | If pathname is a package directory, search the directory and |
| 1933 | all package subdirectories recursively for all *.py and enter |
| 1934 | the modules into the archive. If pathname is a plain |
| 1935 | directory, listdir *.py and enter all modules. Else, pathname |
| 1936 | must be a Python *.py file and the module will be put into the |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1937 | archive. Added modules are always module.pyc. |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1938 | This method will compile the module.py into module.pyc if |
| 1939 | necessary. |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1940 | If filterfunc(pathname) is given, it is called with every argument. |
| 1941 | When it is False, the file or directory is skipped. |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1942 | """ |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1943 | pathname = os.fspath(pathname) |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1944 | if filterfunc and not filterfunc(pathname): |
| 1945 | if self.debug: |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 1946 | label = 'path' if os.path.isdir(pathname) else 'file' |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1947 | print('%s %r skipped by filterfunc' % (label, pathname)) |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1948 | return |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1949 | dir, name = os.path.split(pathname) |
| 1950 | if os.path.isdir(pathname): |
| 1951 | initname = os.path.join(pathname, "__init__.py") |
| 1952 | if os.path.isfile(initname): |
| 1953 | # This is a package directory, add it |
| 1954 | if basename: |
| 1955 | basename = "%s/%s" % (basename, name) |
| 1956 | else: |
| 1957 | basename = name |
| 1958 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1959 | print("Adding package in", pathname, "as", basename) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1960 | fname, arcname = self._get_codename(initname[0:-3], basename) |
| 1961 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1962 | print("Adding", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1963 | self.write(fname, arcname) |
Bernhard M. Wiedemann | 57750be | 2018-01-31 11:17:10 +0100 | [diff] [blame] | 1964 | dirlist = sorted(os.listdir(pathname)) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1965 | dirlist.remove("__init__.py") |
| 1966 | # Add all *.py files and package subdirectories |
| 1967 | for filename in dirlist: |
| 1968 | path = os.path.join(pathname, filename) |
| 1969 | root, ext = os.path.splitext(filename) |
| 1970 | if os.path.isdir(path): |
| 1971 | if os.path.isfile(os.path.join(path, "__init__.py")): |
| 1972 | # This is a package directory, add it |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1973 | self.writepy(path, basename, |
| 1974 | filterfunc=filterfunc) # Recursive call |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1975 | elif ext == ".py": |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 1976 | if filterfunc and not filterfunc(path): |
| 1977 | if self.debug: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1978 | print('file %r skipped by filterfunc' % path) |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 1979 | continue |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1980 | fname, arcname = self._get_codename(path[0:-3], |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1981 | basename) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1982 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1983 | print("Adding", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1984 | self.write(fname, arcname) |
| 1985 | else: |
| 1986 | # This is NOT a package directory, add its files at top level |
| 1987 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1988 | print("Adding files from directory", pathname) |
Bernhard M. Wiedemann | 57750be | 2018-01-31 11:17:10 +0100 | [diff] [blame] | 1989 | for filename in sorted(os.listdir(pathname)): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1990 | path = os.path.join(pathname, filename) |
| 1991 | root, ext = os.path.splitext(filename) |
| 1992 | if ext == ".py": |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 1993 | if filterfunc and not filterfunc(path): |
| 1994 | if self.debug: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1995 | print('file %r skipped by filterfunc' % path) |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 1996 | continue |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1997 | fname, arcname = self._get_codename(path[0:-3], |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1998 | basename) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1999 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2000 | print("Adding", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2001 | self.write(fname, arcname) |
| 2002 | else: |
| 2003 | if pathname[-3:] != ".py": |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 2004 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 2005 | 'Files added with writepy() must end with ".py"') |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2006 | fname, arcname = self._get_codename(pathname[0:-3], basename) |
| 2007 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2008 | print("Adding file", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2009 | self.write(fname, arcname) |
| 2010 | |
| 2011 | def _get_codename(self, pathname, basename): |
| 2012 | """Return (filename, archivename) for the path. |
| 2013 | |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 2014 | Given a module name path, return the correct file path and |
| 2015 | archive name, compiling if necessary. For example, given |
| 2016 | /python/lib/string, return (/python/lib/string.pyc, string). |
| 2017 | """ |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2018 | def _compile(file, optimize=-1): |
| 2019 | import py_compile |
| 2020 | if self.debug: |
| 2021 | print("Compiling", file) |
| 2022 | try: |
| 2023 | py_compile.compile(file, doraise=True, optimize=optimize) |
Serhiy Storchaka | 45c4375 | 2013-01-29 20:10:28 +0200 | [diff] [blame] | 2024 | except py_compile.PyCompileError as err: |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2025 | print(err.msg) |
| 2026 | return False |
| 2027 | return True |
| 2028 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2029 | file_py = pathname + ".py" |
| 2030 | file_pyc = pathname + ".pyc" |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2031 | pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='') |
| 2032 | pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1) |
| 2033 | pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2) |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2034 | if self._optimize == -1: |
| 2035 | # legacy mode: use whatever file is present |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2036 | if (os.path.isfile(file_pyc) and |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2037 | os.stat(file_pyc).st_mtime >= os.stat(file_py).st_mtime): |
| 2038 | # Use .pyc file. |
| 2039 | arcname = fname = file_pyc |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2040 | elif (os.path.isfile(pycache_opt0) and |
| 2041 | os.stat(pycache_opt0).st_mtime >= os.stat(file_py).st_mtime): |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2042 | # Use the __pycache__/*.pyc file, but write it to the legacy pyc |
| 2043 | # file name in the archive. |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2044 | fname = pycache_opt0 |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2045 | arcname = file_pyc |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2046 | elif (os.path.isfile(pycache_opt1) and |
| 2047 | os.stat(pycache_opt1).st_mtime >= os.stat(file_py).st_mtime): |
| 2048 | # Use the __pycache__/*.pyc file, but write it to the legacy pyc |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2049 | # file name in the archive. |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2050 | fname = pycache_opt1 |
| 2051 | arcname = file_pyc |
| 2052 | elif (os.path.isfile(pycache_opt2) and |
| 2053 | os.stat(pycache_opt2).st_mtime >= os.stat(file_py).st_mtime): |
| 2054 | # Use the __pycache__/*.pyc file, but write it to the legacy pyc |
| 2055 | # file name in the archive. |
| 2056 | fname = pycache_opt2 |
| 2057 | arcname = file_pyc |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 2058 | else: |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2059 | # Compile py into PEP 3147 pyc file. |
| 2060 | if _compile(file_py): |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2061 | if sys.flags.optimize == 0: |
| 2062 | fname = pycache_opt0 |
| 2063 | elif sys.flags.optimize == 1: |
| 2064 | fname = pycache_opt1 |
| 2065 | else: |
| 2066 | fname = pycache_opt2 |
| 2067 | arcname = file_pyc |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2068 | else: |
| 2069 | fname = arcname = file_py |
| 2070 | else: |
| 2071 | # new mode: use given optimization level |
| 2072 | if self._optimize == 0: |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2073 | fname = pycache_opt0 |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2074 | arcname = file_pyc |
| 2075 | else: |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2076 | arcname = file_pyc |
| 2077 | if self._optimize == 1: |
| 2078 | fname = pycache_opt1 |
| 2079 | elif self._optimize == 2: |
| 2080 | fname = pycache_opt2 |
| 2081 | else: |
| 2082 | msg = "invalid value for 'optimize': {!r}".format(self._optimize) |
| 2083 | raise ValueError(msg) |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2084 | if not (os.path.isfile(fname) and |
| 2085 | os.stat(fname).st_mtime >= os.stat(file_py).st_mtime): |
| 2086 | if not _compile(file_py, optimize=self._optimize): |
| 2087 | fname = arcname = file_py |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 2088 | archivename = os.path.split(arcname)[1] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2089 | if basename: |
| 2090 | archivename = "%s/%s" % (basename, archivename) |
| 2091 | return (fname, archivename) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2092 | |
| 2093 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2094 | def main(args=None): |
| 2095 | import argparse |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2096 | |
Serhiy Storchaka | 150cd19 | 2017-04-07 18:56:12 +0300 | [diff] [blame] | 2097 | description = 'A simple command-line interface for zipfile module.' |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2098 | parser = argparse.ArgumentParser(description=description) |
Serhiy Storchaka | 150cd19 | 2017-04-07 18:56:12 +0300 | [diff] [blame] | 2099 | group = parser.add_mutually_exclusive_group(required=True) |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2100 | group.add_argument('-l', '--list', metavar='<zipfile>', |
| 2101 | help='Show listing of a zipfile') |
| 2102 | group.add_argument('-e', '--extract', nargs=2, |
| 2103 | metavar=('<zipfile>', '<output_dir>'), |
| 2104 | help='Extract zipfile into target dir') |
| 2105 | group.add_argument('-c', '--create', nargs='+', |
| 2106 | metavar=('<name>', '<file>'), |
| 2107 | help='Create zipfile from sources') |
| 2108 | group.add_argument('-t', '--test', metavar='<zipfile>', |
| 2109 | help='Test if a zipfile is valid') |
| 2110 | args = parser.parse_args(args) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2111 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2112 | if args.test is not None: |
| 2113 | src = args.test |
| 2114 | with ZipFile(src, 'r') as zf: |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 2115 | badfile = zf.testzip() |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 2116 | if badfile: |
| 2117 | print("The following enclosed file is corrupted: {!r}".format(badfile)) |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2118 | print("Done testing") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2119 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2120 | elif args.list is not None: |
| 2121 | src = args.list |
| 2122 | with ZipFile(src, 'r') as zf: |
| 2123 | zf.printdir() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2124 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2125 | elif args.extract is not None: |
| 2126 | src, curdir = args.extract |
| 2127 | with ZipFile(src, 'r') as zf: |
| 2128 | zf.extractall(curdir) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2129 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2130 | elif args.create is not None: |
| 2131 | zip_name = args.create.pop(0) |
| 2132 | files = args.create |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2133 | |
| 2134 | def addToZip(zf, path, zippath): |
| 2135 | if os.path.isfile(path): |
| 2136 | zf.write(path, zippath, ZIP_DEFLATED) |
| 2137 | elif os.path.isdir(path): |
Serhiy Storchaka | 518e71b | 2014-10-04 13:39:34 +0300 | [diff] [blame] | 2138 | if zippath: |
| 2139 | zf.write(path, zippath) |
Bernhard M. Wiedemann | 57750be | 2018-01-31 11:17:10 +0100 | [diff] [blame] | 2140 | for nm in sorted(os.listdir(path)): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2141 | addToZip(zf, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 2142 | os.path.join(path, nm), os.path.join(zippath, nm)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2143 | # else: ignore |
| 2144 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2145 | with ZipFile(zip_name, 'w') as zf: |
| 2146 | for path in files: |
Serhiy Storchaka | 518e71b | 2014-10-04 13:39:34 +0300 | [diff] [blame] | 2147 | zippath = os.path.basename(path) |
| 2148 | if not zippath: |
| 2149 | zippath = os.path.basename(os.path.dirname(path)) |
| 2150 | if zippath in ('', os.curdir, os.pardir): |
| 2151 | zippath = '' |
| 2152 | addToZip(zf, path, zippath) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2153 | |
| 2154 | if __name__ == "__main__": |
| 2155 | main() |