2244 Commits

Author SHA1 Message Date
Nathan Moinvaziri
76c41af936 Updated codecov.io badge on readme. 2022-10-15 16:19:20 -07:00
Nathan Moinvaziri
13bf319cf5 Remove codacy badge from readme. 2022-10-15 16:19:08 -07:00
Nathan Moinvaziri
2414288862 Version 3.0.7. 3.0.7 2022-10-15 15:55:45 -07:00
Nathan Moinvaziri
9333ea834e Don't use pthreads on Windows for Google framework. 2022-10-15 15:55:40 -07:00
Nathan Moinvaziri
c1d56554d6 Remove strawberry perl due to issues with gtest. 2022-10-15 13:12:04 -07:00
Nathan Moinvaziri
ba51421317 Turn off liblzma tests which run even with EXCLUDE_FROM_ALL. 2022-10-15 10:21:45 -07:00
Nathan Moinvaziri
97707624a6 Turn off ZSTD programs to prevent playTest.sh from running. 2022-10-15 10:21:45 -07:00
Nathan Moinvaziri
29bf850b55 Remove unused variables in mz_stream_ioapi_seek. 2022-10-13 09:51:47 -07:00
Nathan Moinvaziri
d03ca72a25 Implement Google test framework. 2022-10-13 09:51:47 -07:00
Sam James
03613f46f8 Switch getrandom() and arc4random_buf() usage order
We need to match the order of inclusions at the top of the file
otherwise we might end up trying to use arc4random_buf() when
available (because HAVE_ARC4RANODM_BUF is set) even though
we hit HAVE_GETRANDOM first above and only included
<sys/random.h> because of it.

Besides, if getrandom() is available, we should really prefer
it anyway.

Fixes an implicit function declaration:
```
minizip-ng-3.0.6/mz_os_posix.c:124:5: error: implicit declaration of function 'arc4random_buf' [-Werror=implicit-function-declaration]
```

Signed-off-by: Sam James <sam@gentoo.org>
2022-10-08 14:56:14 -07:00
Jeremy Bernstein
15ebdb7b22 mz_zip.c: perform bitshift when converting POSIX to win32 attributes. See #652 2022-10-08 14:55:33 -07:00
Rosen Penev
387ade34c6 build with libbsd-overlay
Simplifies the code. Upstream also recommends it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-10-08 14:52:40 -07:00
Nathan Moinvaziri
7b2784110f Fixed GCC build compilation with ctest due to missing zlib.h
When running ctest it also builds and runs example and example64 from zlib.
The GCC CI builds were failing because example and example64 could not find
the header file zlib.h.
2022-08-06 09:12:12 -07:00
Nathan Moinvaziri
19287cd0d8 Clean up GitHub actions yaml. 2022-08-06 09:08:58 -07:00
Nathan Moinvaziri
6005ae7fbb Fixed writing backslashes in zip on Windows.
All slashes should be written as forward slashes according
to the zip app note section 4.4.17.1.

Co-authored-by: jeremybernstein@users.noreply.github.com
2022-08-06 08:12:36 -07:00
Nathan Moinvaziri
27b9dde455 Change third-party library directory to third-party. 2022-08-06 11:05:07 -07:00
Nathan Moinvaziri
20b0a97ac4 Mention support for ZIP64 on features list. #639 2022-08-06 07:55:00 -07:00
Alnoor Allidina
91c9e269f1 Fix handle leak in low memory situations. 2022-08-06 06:31:51 -07:00
hekkihek
15e2bb7eef Fix "unused function" compiler warning if !HAVE_PKCRYPT 2022-07-16 09:39:07 -07:00
Nathan Moinvaziri
0aca9f0011 Set default startup project to minizip_cmd when using MZ_BUILD_TESTS. 2022-06-11 10:54:39 -07:00
Nathan Moinvaziri
6261d6f5ec Generate test files in binary temp directory. 2022-06-11 10:36:42 -07:00
Nathan Moinvaziri
b89927c81d Fixed casing in test_get_file_date 2022-05-10 16:13:37 -07:00
Peter Harris
01af9bfb91 Add a test for mz_os_get_file_date 2022-05-10 16:13:37 -07:00
Peter Harris
c3e0ce31a2 Revert "Fixed improper null termination in mz_os_get_file_date. #601"
This reverts commit fe36527157ff96226f5309a99c806475ee0b75d2, which
changed the POSIX mz_os_get_file_date to always remove the last
character from the filename before calling stat() (regardless of whether
the filename ended in a slash).

NUL termination was correct before that change, because "len+1" always
includes the NUL byte at the end of the input string (unless you somehow
have a string that consumes the entire address space and len+1
overflows, but then where would the rest of the program data reside?).
2022-05-10 16:13:37 -07:00
degaart
e2e5775aee Avoid writing minizip-config.cmake.in to source dir 2022-05-07 11:09:51 -07:00
degaart
65df63a152 Fix generation of minizip.pc 2022-05-07 11:09:51 -07:00
Nathan Moinvaziri
47b8449fec Version 3.0.6. 3.0.6 2022-04-27 11:16:33 -07:00
Fabrice Fontaine
a4e6591a18
CMakeLists.txt: fix build without C++ (#621)
Fix the following build failure without a working C++ compiler raised
since version 2.0.0 and
d383a5f2fc:

CMake Error at /nvmedata/autobuild/instance-20/output-1/host/share/cmake-3.18/Modules/CMakeTestCXXCompiler.cmake:59 (message):
  The C++ compiler

    "/usr/bin/c++"

  is not able to compile a simple test program.

Fixes:
 - http://autobuild.buildroot.org/results/4452bc35b41414a5e8a0e9831b0854228df5fba4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2022-04-27 11:14:30 -07:00
Nathan Moinvaziri
4ca2ea3f98 Update old references to dev environment. 2022-04-27 10:57:57 -07:00
Nathan Moinvaziri
9e754e5a62 Added mz_zip_entry_get_compress_stream to get the compression stream for an entry. 2022-04-27 10:56:23 -07:00
Nathan Moinvaziri
f9779319a6 Only add OPENSSL_INCLUDE_DIR to include directories if variable is set. 2022-04-26 19:19:45 -07:00
steve green
998a318bc9
memstream delete -> stream delete (18)
Use mz_stream_delete instead of mz_stream_mem_delete.
2022-03-26 12:01:21 -04:00
Nathan Moinvaziri
024a1d4726 Added build directory to public interface when using compat mode. #588. 2022-03-10 08:00:32 -08:00
Nathan Moinvaziri
f3d400e999 Version 3.0.5. 3.0.5 2022-03-05 14:53:32 -08:00
Nathan Moinvaziri
fe36527157 Fixed improper null termination in mz_os_get_file_date. #601 2022-03-05 14:24:57 -08:00
Paweł Iwaneczko
4c886bd5ab Generated files unzip.h and zip.h shall be in build directory. #587
No need for unzip and zip headers in gitignore. #606

Co-authored-by: Nathan Moinvaziri <nathan@nathanm.com>
2022-03-05 14:16:48 -08:00
Mathias Rav
3600a224da Add .gitignore, ignoring MZ_COMPAT generated files
When minizip-ng is used as a git submodule in a project where MZ_COMPAT is enabled, VS Code's Git integration will highlight zip.h and unzip.h as untracked files, which is annoying.
2022-03-05 17:03:21 -05:00
Nathan Moinvaziri
b9236b8942 Default to -ng project suffix when MZ_COMPAT is not enabled. 2022-03-05 14:02:51 -08:00
Nathan Moinvaziri
9e9d8203e5 Change minizip alias name to be consistent. 2022-03-05 14:02:51 -08:00
Nathan Moinvaziri
f3ccc71127 Moved clone_repo cmake function to cmake directory. 2022-03-05 14:02:51 -08:00
Nathan Moinvaziri
4bfd0460b0 Detect whether or not ZLIB_REPOSITORY uses ZLIB_NG/ZLIB_COMPAT or not. #603 2022-03-05 13:46:16 -08:00
Nathan Moinvaziri
8a02ab8c73 Fixed set MINIZIP_DEP_PKG to ZLIBNG when ZLIB_COMPAT not set. #603 2022-03-05 13:23:07 -08:00
Nathan Moinvaziri
17f10044ca Fixed lowercase repository and tag name variables used. #603 2022-03-05 13:18:22 -08:00
Hayden
9184ba1216 Link zlib-ng native if available. #574 2022-03-05 13:17:04 -08:00
Nathan Moinvaziri
7981b63742 Fixed return value from mz_crypt_sha_update when using SHA224. 2022-02-22 15:02:49 -08:00
Peter Harris
27f2ff225f Fix buffer overrun in mz_dir_make
If a path of length 0x10001 is passed into this function, the value of
len after truncating to int16_t will be greater than 0, so the function
will proceed to allocate a 2 byte buffer and copy 65538 bytes into it.

Avoid issues with truncation by keeping len in size_t.
2022-02-17 08:50:35 -08:00
Peter Harris
1fe8d4c2cb Fix directory NUL termination in mz_zip_writer_open_file
strncpy does not guarantee that the buffer ends with an ASCII NUL byte.
Force the last byte of directory to be a 0.
2022-02-17 08:50:35 -08:00
Peter Harris
76de77b2e2 Fix buffer overrun in mz_path_combine
The path may be overrun by two bytes. One because mz_path_append_slash
may append to path without updating path_len, and another one because
strncat always appends a NUL byte after writing N bytes.

Rescan the path length and subtract one from the strncat length parameter
to make sure we stay within max_path.
2022-02-16 10:40:17 -08:00
Wouter Wijsman
6bb97e5e8e Make minizip buildable for PSP
Using the PSPDEV homebrew SDK it is possible to build minizip for the Playstation Portable, but it does not support position independent code.
2022-02-15 22:30:04 -08:00
Sergey Markelov
9896383d2f Add SHA224, SHA384, SHA512 to crypt. 2022-01-18 10:31:11 -08:00