Commit graph

1542 commits

Author SHA1 Message Date
Chris
a1f239980e chore: release
Signed-off-by: Chris <4961925+Pr0methean@users.noreply.github.com>
2024-05-06 23:44:12 +00:00
Chris Hennick
f7ab2ae506
fix: Prevent panic when trying to read a file with an unsupported compression method 2024-05-06 16:43:04 -07:00
Chris Hennick
7f46b77da2
ci: Upload leak reports if fuzz fails 2024-05-06 16:11:10 -07:00
Chris Hennick
d13031cc14
fix: Prevent panic after reading an invalid LZMA file 2024-05-06 16:08:41 -07:00
Chris Hennick
8868a11d23
test(fuzz): Fix a fuzz-read bug when finishing LZMA 2024-05-06 15:53:12 -07:00
Chris Hennick
b277298d7f
test(fuzz): Fix: need to accept FileNotFound from abort 2024-05-06 15:14:09 -07:00
Chris Hennick
162c9b7281
test(fuzz): Fix bugs that were breaking the fuzz test 2024-05-06 14:41:51 -07:00
Chris Hennick
447f9c6e4f
refactor: Overhaul impl Arbitrary for FileOptions 2024-05-06 14:20:27 -07:00
Chris Hennick
845c3ec91f
refactor: Remove unused atomic module 2024-05-06 14:14:25 -07:00
Chris Hennick
0e1b1688be
test(fuzz): Cover read_zipfile_from_stream, finish_into_readable and merge_archive in fuzzing 2024-05-06 14:10:40 -07:00
Chris Hennick
0518194ae2
style: cargo fmt --all 2024-05-06 13:07:19 -07:00
Chris Hennick
eb4777c129
fix: Make Stored the default compression method if Deflated isn't available, so that zip files are readable by as much software as possible 2024-05-06 13:00:43 -07:00
Chris Hennick
c8d1be86b3
Merge pull request #80 from kyrias/aes-encryption3
Add AES encryption write support
2024-05-06 18:54:37 +00:00
Chris Hennick
3ff9428e66
Merge branch 'master' into aes-encryption3
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-06 11:44:55 -07:00
Chris Hennick
2cff4ec936
test: Update reference version-needed-to-open in unit tests (cont'd) 2024-05-06 11:43:01 -07:00
Chris Hennick
ad292ffbd2
test: Update reference version-needed-to-open in unit tests 2024-05-06 11:34:25 -07:00
Chris Hennick
61d56318bf
style: Fix fmt and clippy warnings 2024-05-06 11:24:46 -07:00
Chris Hennick
51ef4f0f30
test: Update test_path_normalization to match corrected requirements 2024-05-06 11:17:21 -07:00
Chris Hennick
c2fe20741c
fix: version_needed was wrong when e.g. cfg(bzip2) but current file wasn't bzip2 (#100) 2024-05-06 11:16:16 -07:00
Chris Hennick
e1ef3fc65c
fix: file paths shouldn't start with slashes (#102) 2024-05-06 10:52:52 -07:00
Johannes Löthberg
97ddf84546
Don't try to encrypt directories
Not overriding this works fine for ZipCrypto since it doesn't need to
write any extra data, but AES encrypted files need to store more
metadata even for zero-byte files.

Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
d824fc2088
Make crypto validate methods return ZipError when signifying invalid passwords
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
d096e4dbf1
Add support for writing AES-encrypted files
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
80dc8f2484
Add compression method to AES info
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
a17578990b
Add AesWriter
Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Johannes Löthberg
7c1e21403f
Wrap AesCtrZipKeyStream in inner Cipher enum
Boxing it as we were doing previously lead to the writer not being Send
anymore.

Signed-off-by: Johannes Löthberg <johannes.loethberg@elokon.com>
2024-05-06 16:37:05 +02:00
Chris Hennick
026b26bcdb
Merge pull request #97 from zip-rs/release-plz-2024-05-06T01-31-43Z
chore: release v1.2.0
2024-05-06 07:29:50 -07:00
Chris
3fe87e998e chore: release
Signed-off-by: Chris <4961925+Pr0methean@users.noreply.github.com>
2024-05-06 08:20:05 +00:00
Chris Hennick
d629b364e8
Merge pull request #98 from zip-rs/finish_owned
refactor: Make `ZipWriter::finish()` consume the `ZipWriter`
2024-05-06 06:17:13 +00:00
Chris Hennick
30ef662aa2
Revert "chore: Use panic! rather than abort to ensure the fuzz harness can process the failure"
This reverts commit 0011370fdc.
2024-05-05 20:19:09 -07:00
Chris Hennick
0011370fdc
chore: Use panic! rather than abort to ensure the fuzz harness can process the failure 2024-05-05 20:17:12 -07:00
Chris Hennick
f2b55a1f59
chore: Update fuzz_write to use replace_with 2024-05-05 20:09:23 -07:00
Chris Hennick
52375437dc
fix: Process ZIP files with up to a 65,978-byte comment (https://github.com/zip-rs/zip-old/issues/183) 2024-05-05 19:48:32 -07:00
Chris Hennick
e9d48b7333
style: Remove unnecessary "mut"s in merge_archive benchmarks 2024-05-05 19:39:13 -07:00
Chris Hennick
b59515bbd7
chore: Remove a drop that can no longer be explicit 2024-05-05 19:30:18 -07:00
Chris Hennick
84aa6e8f11
refactor: Make ZipWriter::finish() consume the ZipWriter 2024-05-05 18:55:48 -07:00
Chris Hennick
a8ec016b51
style: cargo fmt --all 2024-05-05 18:43:40 -07:00
Chris Hennick
b3f9170f23
chore: Add #![allow(unexpected_cfgs)] in nightly 2024-05-05 18:42:49 -07:00
Chris Hennick
aa890fa634
feat: Add method decompressed_size() so non-recursive ZIP bombs can be detected 2024-05-05 18:28:17 -07:00
Chris Hennick
e273ff40d5
Merge pull request #94 from zip-rs/release-plz-2024-05-03T20-10-00Z
chore: release v1.1.4
2024-05-04 09:26:31 -07:00
Chris Hennick
a9482ea8ca
Bump version to trigger new release PR
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2024-05-04 09:21:18 -07:00
Chris Hennick
52af9ffd23
Merge pull request #96 from zip-rs/oldpr452
Use clap to parse args and add compression method argument in write_dir example
2024-05-04 05:05:04 +00:00
Chris
62ed5dc61a chore: release
Signed-off-by: Chris <4961925+Pr0methean@users.noreply.github.com>
2024-05-04 03:38:36 +00:00
Chris Hennick
3ccaa3cc85
style: cargo fmt --all & #![allow(dead_code)] 2024-05-03 19:51:23 -07:00
Chris Hennick
de95acc543
style: allow conditionally-unused variables in write_dir.rs 2024-05-03 19:49:33 -07:00
Chris Hennick
c4906cfd59
Merge remote-tracking branch 'allilo/add_compression_algo_arg' into oldpr452
# Conflicts:
#	Cargo.toml
#	examples/write_dir.rs
2024-05-03 19:44:55 -07:00
Chris Hennick
629707c060
Merge pull request #95 from zip-rs/speedup_path_to_string
perf: Speedup path_to_string when path is already in the correct format
2024-05-04 00:57:25 +00:00
Allison Lo
1852e96192
Prelim changes to write_dir
Remove old code and fix match statement

Edit arg names and use PathBuf and Path

Fix path ordering

Fix enum names

Add clap as a dev dependency

Pin clap version
2024-05-03 17:19:30 -07:00
Chris Hennick
1b2c42b199
style: cargo fmt --all 2024-05-03 15:18:31 -07:00
Chris Hennick
74e76a94ca
chore: Refactor: can short-circuit handling of paths that start with MAIN_SEPARATOR, no matter what MAIN_SEPARATOR is 2024-05-03 15:01:43 -07:00