Go to file
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
.github/workflows build: Add top-level read-only permissions to ci actions 2022-10-28 17:05:01 -07:00
crc crc: use macro to print 64-bit value 2023-12-22 09:35:37 +00:00
doc doc: Add notes on reentrancy and threading 2023-07-19 13:11:43 -07:00
erasure_code erasure_code: add missing aarch64 and powerpc interface for ec_init_tables 2024-01-09 13:38:43 +00:00
examples ex: Add crc combine example for multiple polynomials 2023-02-10 15:41:35 -07:00
igzip igzip: add zlib header init function 2023-12-20 14:05:52 +00:00
include igzip: add zlib header init function 2023-12-20 14:05:52 +00:00
mem mem_zero_detect_test: fix for issue reported by static code analysis 2023-12-19 20:36:39 +00:00
programs igzip_cli: add missing 'void' keyword to some function prototypes 2023-12-18 10:47:23 +00:00
raid raid: [example] fix memory leak in CRC64 example 2023-12-22 09:35:37 +00:00
tests/fuzz igzip: several fixes for issues reported by static code analysis 2023-12-19 20:36:39 +00:00
tools tools: check code style first 2023-12-11 15:23:56 +00:00
.gitignore build: Add gitignore 2019-05-01 16:48:10 -07:00
.travis.yml build: Change travis osx to use std brew 2021-05-21 19:44:39 -07:00
autogen.sh Ignore obsolete warnings when using autoreconf 2023-12-07 13:29:03 +00:00
configure.ac build: detect availability of -z now, relro and noexecstack linker options 2024-01-05 14:45:12 +00:00
CONTRIBUTING.md doc: Update mailing list link 2019-10-16 17:13:54 -07:00
Doxyfile doc: Add security policy file 2022-07-18 19:53:53 -07:00
isa-l.def igzip: add zlib header init function 2023-12-20 14:05:52 +00:00
isa-l.rc build: Add ms rc file to put extra metatdata on dll 2021-09-02 18:27:51 -07:00
libisal.pc.in Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
LICENSE Update License file 2024-01-09 09:42:48 +00:00
make.inc build: enable full read-only relocations and control flow integrity for hardening check 2023-12-18 10:47:23 +00:00
Makefile.am Properly add .note.gnu.property section to assembly codes 2022-01-20 12:23:30 -07:00
Makefile.nmake Update License file 2024-01-09 09:42:48 +00:00
Makefile.unx build: Add auto regenerate of nmake file 2020-03-10 14:00:05 -07:00
README.md README: add section for DLL injection attack mitigations 2023-12-21 16:05:52 +00:00
Release_notes.txt Update release notes for v2.30 additions 2020-11-04 14:59:33 -07:00
SECURITY.md doc: Add security policy file 2022-07-18 19:53:53 -07:00

Intel(R) Intelligent Storage Acceleration Library

Build Status Package on conda-forge

ISA-L is a collection of optimized low-level functions targeting storage applications. ISA-L includes:

  • Erasure codes - Fast block Reed-Solomon type erasure codes for any encode/decode matrix in GF(2^8).
  • CRC - Fast implementations of cyclic redundancy check. Six different polynomials supported.
    • iscsi32, ieee32, t10dif, ecma64, iso64, jones64, rocksoft64.
  • Raid - calculate and operate on XOR and P+Q parity found in common RAID implementations.
  • Compression - Fast deflate-compatible data compression.
  • De-compression - Fast inflate-compatible data compression.
  • igzip - A command line application like gzip, accelerated with ISA-L.

Also see:

Building ISA-L

Prerequisites

  • Make: GNU 'make' or 'nmake' (Windows).
  • Optional: Building with autotools requires autoconf/automake/libtool packages.
  • Optional: Manual generation requires help2man package.

x86_64:

  • Assembler: nasm. Version 2.15 or later suggested (other versions of nasm and yasm may build but with limited function support).
  • Compiler: gcc, clang, icc or VC compiler.

aarch64:

  • Assembler: gas v2.24 or later.
  • Compiler: gcc v4.7 or later.

other:

  • Compiler: Portable base functions are available that build with most C compilers.

Autotools

To build and install the library with autotools it is usually sufficient to run:

./autogen.sh
./configure
make
sudo make install

Makefile

To use a standard makefile run:

make -f Makefile.unx

Windows

On Windows use nmake to build dll and static lib:

nmake -f Makefile.nmake

or see details on setting up environment here.

Other make targets

Other targets include:

  • make check : create and run tests
  • make tests : create additional unit tests
  • make perfs : create included performance tests
  • make ex : build examples
  • make other : build other utilities such as compression file tests
  • make doc : build API manual

DLL Injection Attack

Problem

The Windows OS has an insecure predefined search order and set of defaults when trying to locate a resource. If the resource location is not specified by the software, an attacker need only place a malicious version in one of the locations Windows will search, and it will be loaded instead. Although this weakness can occur with any resource, it is especially common with DLL files.

Solutions

Applications using libisal DLL library may need to apply one of the solutions to prevent from DLL injection attack.

Two solutions are available:

  • Using a Fully Qualified Path is the most secure way to load a DLL
  • Signature verification of the DLL

Resources and Solution Details