Marcel Cornu
07bca509e7
tools: use clang-format for style checking
...
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
2024-04-22 11:35:03 +02:00
Taiju Yamada
7b30857e20
Run macos-13 (actual x86_64 latest) and macos-14 (arm64) CIs
...
Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
2024-03-25 15:34:01 +00:00
Taiju Yamada
38279f5e9e
Avoid using x18 register
...
Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
2024-03-25 15:34:01 +00:00
Taiju Yamada
14ec878aae
enable macOS extended test
...
Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
2024-03-21 09:58:33 +00:00
Taiju Yamada
4b74fb2204
tools: replace echo -n with printf
...
Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
2024-03-21 09:58:33 +00:00
Pablo de Lara
69d4a8a081
Add CI/Coverity/OpenSSF scorecard badges
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-03-19 21:30:50 +00:00
Pablo de Lara
8c2ff41c7f
build: allow alternative compiler
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-03-14 13:41:41 +00:00
orbea
37005a00fc
tools: fix shebang
...
This causes a build failure with slibtool.
Gentoo issue: https://bugs.gentoo.org/829500
Signed-off-by: orbea <orbea@riseup.net>
2024-03-12 14:25:16 +00:00
Taiju Yamada
f1b144bbab
Fix mach compilation again; fold_constant has to be the same section as crc16_t10dif_copy_pmull
...
Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
2024-03-07 10:10:51 +00:00
Taiju Yamada
4be96e2437
Fixed isal_deflate_icf_finish_lvl1 dispatcher
...
Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
2024-03-07 10:10:39 +00:00
Taiju Yamada
f36d1ede78
add libtool dependency for MacOS CI
...
Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
2024-03-01 11:37:29 +00:00
Colin Ian King
1500db751d
Fix a handful of spelling mistakes and typos
...
There are quite a few spelling mistakes and typos in comments and
user facing message literal strings as found using codespell. Fix
these.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-02-06 15:03:14 +00:00
Pablo de Lara
ffc16330d8
makefile: add spellcheck
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-02-06 15:03:14 +00:00
Mattias Ellert
1b1ee1e18f
erasure_code: fix wrong return type
...
erasure_code/ppc64le/gf_vect_mul_vsx.c: In function '_gf_vect_mul_base':
erasure_code/ppc64le/gf_vect_mul_vsx.c:14:16: error: 'return' with a value, in function returning void [-Wreturn-mismatch]
14 | return 0;
| ^
erasure_code/ppc64le/gf_vect_mul_vsx.c:6:13: note: declared here
6 | static void _gf_vect_mul_base(int len, unsigned char *a, unsigned char *src,
| ^~~~~~~~~~~~~~~~~
Signed-off-by: Mattias Ellert <mattias.ellert@physics.uu.se>
2024-01-23 12:01:14 +00:00
Pablo de Lara
bd22637502
Bump version to v2.31
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-18 18:27:24 +00:00
Pablo de Lara
d4e1c21acb
lib: add missing structure documentation
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-15 16:58:43 +00:00
Pablo de Lara
4997190ab3
Update release notes for v2.31
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-15 16:55:28 +00:00
Greg Tucker
479b3f84f9
build: fix CET default in unix Makefile
...
CET default flag was clobbering CFLAGS.
Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
2024-01-15 16:53:04 +00:00
Pablo de Lara
e0fd782974
erasure_code: use internal gf_vect_mul_base for ppc64le encoding
...
gf_vect_mul_base is expected to work for all buffer sizes.
However, this function is checking for size alignment to 32 bytes,
to follow the other gf_vect_mul implementations.
Therefore, another implementation for this function is included
inside ppc64le folder to be used by the encoding functions.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-15 15:48:14 +00:00
Pablo de Lara
b8d5633e51
erasure_code: check for size alignment on powerpc gf_vect_mul_vsx implementation
...
Follows the rest of the gf_vect_mul implementations for other architectures,
and checks for size alignment, stated in the documentation.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-15 15:48:14 +00:00
Pablo de Lara
91e7906f3f
erasure_code: check for size on gf_vect_mul_sse/avx
...
gf_vect_mul requires length to be multiple of 32 bytes,
so this check is added in the SSE/AVX implementations.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-15 13:52:08 +00:00
liuqinfei
275977156d
gf_vect_mul_sve: fix error and enable unit tests for aarch64
...
Signed-off-by: liuqinfei <lucas.liuqinfei@huawei.com>
2024-01-12 15:18:37 +00:00
Pablo de Lara
e0fffbe48b
erasure_code: disable unit tests temporarily for aarch64/ppc64le
...
Some aarch64 and ppc64le implementations of gf_vect_mul do not check
for invalid sizes, so the unit test checking for negative return value
from this function is disabled temporarily on these architectures.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-10 15:53:14 +00:00
Pablo de Lara
7145c7f8b4
Makefile: add architecture to CFLAGS
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-10 15:53:14 +00:00
Pablo de Lara
455fdded4e
erasure_code: add missing aarch64 and powerpc interface for ec_init_tables
...
ec_init_tables is now a multi-implementation function,
so it requires a dispatcher for all architectures.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-09 13:38:43 +00:00
Pablo de Lara
ae0a688051
Update License file
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2024-01-09 09:42:48 +00:00
Tomasz Kantecki
75af1c4d4e
build: detect availability of -z now, relro and noexecstack linker options
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2024-01-05 14:45:12 +00:00
Pablo de Lara
71575ae434
raid: [example] fix memory leak in CRC64 example
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-22 09:35:37 +00:00
Pablo de Lara
9ee34ec0f5
crc: use macro to print 64-bit value
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-22 09:35:37 +00:00
Pablo de Lara
cf967e5a37
README: add section for DLL injection attack mitigations
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-21 16:05:52 +00:00
Pablo de Lara
29d99fce26
igzip: add zlib header init function
...
Add isal_zlib_hdr_init() function to initialize
the isal_zlib_header structure to all 0.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-20 14:05:52 +00:00
Tomasz Kantecki
6ef2abe80e
igzip: fix issues reported by static code analysis
...
compute_dist_code() and compute_dist_icf_code() in huffman.h:
Correct `assert(msb >= 1)` to `assert(msb >= 2)`.
`msb` cannot be lower than 2 as it would result in corrupt computations.
get_dist_code() in huffman.h:
Remove dead `if` statement at the beginning of the function.
`dist` must be equal 1 or above in this function.
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-19 20:36:39 +00:00
Tomasz Kantecki
402bd4f773
erasure_code: various fixes for static code analysis issues
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-19 20:36:39 +00:00
Tomasz Kantecki
ac2ee91cdb
mem_zero_detect_test: fix for issue reported by static code analysis
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-19 20:36:39 +00:00
Tomasz Kantecki
5a00eaec33
igzip: several fixes for issues reported by static code analysis
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-19 20:36:39 +00:00
Pablo de Lara
c83771eeec
mem: [test] fix memory leak
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-18 14:25:22 +00:00
Pablo de Lara
a3e260436a
erasure_code: [test] fix memory leak
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-18 14:25:22 +00:00
Pablo de Lara
abd80d3c5a
erasure_code: check for size in gf_Xvect_mad_avx512_gfni
...
Length of data was not checked in implementation with AVX512+GFNI,
at the start of the gf_Xvect_mad_avx512_gfni functions, resulting
in buffer overflow if length was less than 64 bytes.
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-18 14:25:22 +00:00
Pablo de Lara
c06db0c60a
igzip: [test] fix memory leak
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-18 14:25:22 +00:00
Pablo de Lara
d65d2b5572
crc: [test] fix memory leak
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-18 14:25:22 +00:00
Pablo de Lara
54d1153a61
raid: [test] fix memory leak
...
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2023-12-18 14:25:22 +00:00
Tomasz Kantecki
c183961175
build: enable full read-only relocations and control flow integrity for hardening check
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-18 10:47:23 +00:00
Tomasz Kantecki
809f536265
igzip_cli: add missing 'void' keyword to some function prototypes
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-18 10:47:23 +00:00
Marcel Cornu
561a419bc8
erasure_code: fix modules using incorrect unsigned jump
...
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
2023-12-14 17:55:49 +00:00
Marcel Cornu
a53a20ea2a
erasure_code: add AVX2 5vect mad with GFNI implementation
...
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
2023-12-14 17:55:49 +00:00
Marcel Cornu
47ed2847af
erasure_code: add AVX2 4vect mad with GFNI implementation
...
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
2023-12-14 17:55:49 +00:00
Marcel Cornu
22b7f33d68
erasure_code: add AVX2 3vect mad with GFNI implementation
...
Signed-off-by: Marcel Cornu <marcel.d.cornu@intel.com>
2023-12-14 17:55:49 +00:00
Tomasz Kantecki
a139dd7302
igzip_cli: improve get_posix_filetime() to deal with potential fstat() errors
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-14 13:55:52 +00:00
Tomasz Kantecki
08f021c43f
igzip_cli: fix for potential buffer overrun on 'outfile_name' buffer with strncat()
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-14 13:55:52 +00:00
Tomasz Kantecki
722144ee75
igzip_cli: simplify fopen_safe() by replacing access() calls with detailed error message after failed fopen()
...
Signed-off-by: Tomasz Kantecki <tomasz.kantecki@intel.com>
2023-12-14 13:55:52 +00:00