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