Commit graph

397 commits

Author SHA1 Message Date
Chris Hennick
88b4ae30b4
fix: Fix bugs involving alignment padding and Unicode extra fields 2024-06-13 20:52:45 -07:00
Chris Hennick
0bd2fe11d7
fix: Parse the extra field and reject it if invalid 2024-06-13 17:48:54 -07:00
Chris Hennick
14c590740e
style: Remove unneeded mut 2024-06-13 14:52:46 -07:00
Chris Hennick
3eb2a0464b
perf: Skip searching for the ZIP32 header if a valid ZIP64 header is present (#189) 2024-06-13 14:18:36 -07:00
Chris Hennick
77e718864d
fix: Incorrect behavior following a rare combination of merge_archive, abort_file and deep_copy_file. As well, we now return an error when a file is being copied to itself. 2024-06-13 13:49:27 -07:00
Chris Hennick
73396be9f9
chore: Fix: may need the absolute start as tiebreaker to ensure deterministic behavior 2024-06-08 15:13:09 -07:00
Chris Hennick
894e0ad44c
fix: Fix an issue where the central directory could be incorrectly detected 2024-06-08 15:10:08 -07:00
Chris Hennick
fce5e0a2d3
test: Add regression tests for #159 2024-06-04 09:29:33 -07:00
Chris Hennick
97245ad68d
chore: Fix a new Clippy warning 2024-06-02 22:04:40 -07:00
Chris Hennick
eacc320fe0
chore: Add check for wrong-length blocks, and incorporate fixed-size requirement into the trait name 2024-06-02 21:48:21 -07:00
Chris Hennick
fb781e0517
chore: Add feature gate for new unit test 2024-06-02 18:53:27 -07:00
Chris Hennick
c8d1cb905f
Merge branch 'master' into utf8_extra_fields 2024-06-02 17:52:04 -07:00
Chris Hennick
847e537e86
test: Add unit test for UTF8 extra-field handling 2024-06-02 17:46:55 -07:00
Chris Hennick
2a131e67a9
fix: Use deflate-flate2 flag to guard import 2024-06-02 17:29:49 -07:00
Chris Hennick
7530ce5000
style: Cargo fmt --all 2024-06-02 11:56:46 -07:00
Chris Hennick
e3c81023a7
fix: Decode Zip-Info UTF8 name and comment fields (#159) 2024-06-02 11:52:20 -07:00
Alex Franchuk
a8875b0226
feat: Allow the archive offset behavior of the reader to be configured.
Aside from supporting the current behavior which allows archives to be
preceded by arbitrary data (added in fc749a09), this also allows
detection of the offset to use by checking whether a central directory
header is at the expected location. This is configurable because if the
behavior were based only on detection, there could be false positives if
archive data happened to contain a central directory header at the right
spot.
2024-05-29 13:59:20 -04:00
Danny McClanahan
a769e9410e
Revert "interpose ZipRawValues into ZipFileData"
This reverts commit d8d4dee5cec372878259380fa347c0ffc6cca044.
2024-05-24 08:00:04 -04:00
Danny McClanahan
fe663b9ee6
tiny fix 2024-05-24 07:58:06 -04:00
Danny McClanahan
4a784b5636
interpose ZipRawValues into ZipFileData 2024-05-24 07:58:05 -04:00
Danny McClanahan
d852c222fc
review comments 1 2024-05-24 07:54:40 -04:00
Danny McClanahan
a7fd5874cf
reduce visibility for all the blocks 2024-05-24 07:54:40 -04:00
Danny McClanahan
3d6c4d1ae4
fix fuzz failure 2024-05-24 07:54:05 -04:00
Danny McClanahan
8fbc4039a8
lean more on the ::MAGIC trait constants 2024-05-24 07:54:04 -04:00
Danny McClanahan
cf2d980612
expose pub(crate) methods to convert compression methods 2024-05-24 07:53:15 -04:00
Danny McClanahan
08385d52e1
implement find_content() by parsing with blocks 2024-05-24 07:52:31 -04:00
Danny McClanahan
3fa0d84554
make Magic into a wrapper struct 2024-05-24 07:52:31 -04:00
Danny McClanahan
46c42c7f82
review comments 1 2024-05-24 07:52:30 -04:00
Danny McClanahan
ea308499af
bulk parsing and bulk writing
- use blocks for reading individual file headers
- remove unnecessary option wrapping for stream entries
- create Block trait
- add coerce method to reduce some boilerplate
- add serialize method to reduce more boilerplate
- use to_le! and from_le!
- add test case
- add some docs
- rename a few structs to clarify zip32-only
2024-05-24 07:52:25 -04:00
Danny McClanahan
7a55945743
add benchmarks 2024-05-24 07:39:54 -04:00
Chris Hennick
6d1b5f7d6c
Merge pull request #143 from agourlay/expose-aes-info
feat: Expose AES information
2024-05-23 22:53:58 +00:00
Chris Hennick
7d61377503
refactor: Change type of last_modified_time to Option<DateTime> 2024-05-23 14:15:38 -07:00
Chris Hennick
492a6b9d12
chore: Guard AesInfo behind #[cfg(feature = "aes-crypto")]
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-23 13:04:31 -07:00
Chris Hennick
74c604f29c
Need aes-crypto feature to use crate::aes::PWD_VERIFY_LENGTH
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-23 12:42:35 -07:00
Arnaud Gourlay
6db572ce65
review & clippy 2024-05-23 20:14:01 +02:00
Arnaud Gourlay
6da1faa4f1
code review 2024-05-23 20:14:00 +02:00
Arnaud Gourlay
985d3a7809
Expose AES information 2024-05-23 20:14:00 +02:00
Chris Hennick
b0c666aa0c
chore: Continue to accept archives with invalid DateTime, and use now_utc() as default only when writing, not reading 2024-05-23 09:44:06 -07:00
Chris Hennick
7a34aa5f41
refactor!: Rename from_msdos to from_msdos_unchecked, make it unsafe, and add try_from_msdos (#145) 2024-05-23 09:04:53 -07:00
Chris Hennick
89b9b668ec
refactor: Reject encrypted and using_data_descriptor files slightly faster in read_zipfile_from_stream 2024-05-19 16:53:56 -07:00
Chris Hennick
fbf111ef97
style: cargo fmt --all 2024-05-15 17:09:12 -07:00
Chris Hennick
3e06f6433a
chore: Fix borrow-of-moved-value 2024-05-15 17:08:40 -07:00
Chris Hennick
633a6733e6
refactor: Check if archive contains a symlink's target, without borrowing both at the same time 2024-05-15 17:06:57 -07:00
Chris Hennick
17fee7938a
refactor: Eliminate a clone that's no longer necessary 2024-05-15 16:57:37 -07:00
Chris Hennick
7536a98da1
chore: Box<str> doesn't directly convert to PathBuf, so convert back to String first 2024-05-15 16:55:00 -07:00
Chris Hennick
d78f127039
chore: contains_key needs a Box<str>, so generify is_dir to accept one 2024-05-15 16:49:05 -07:00
Chris Hennick
b7ac989013
refactor: is_dir only needs to look at the filename 2024-05-15 16:44:59 -07:00
Chris Hennick
1e574a961a
chore: Fix another Windows-specific error 2024-05-15 16:14:57 -07:00
Chris Hennick
91dcf305d7
chore: More bug fixes for Windows-specific symlink code 2024-05-15 16:11:37 -07:00
Chris Hennick
ce818e4df1
chore: More bug fixes for Windows-specific symlink code 2024-05-15 16:08:39 -07:00