DISCONTINUATION OF PROJECT
This project will no longer be maintained by Intel.
Intel has ceased development and contributions including, but not limited to, maintenance, bug fixes, new releases, or updates, to this project.
Intel no longer accepts patches to this project.
If you have an ongoing need to use this project, are interested in independently developing it, or would like to maintain patches for the open source software community, please create your own fork of this project.
Contact: webadmin@linux.intel.com Load Value Injection Optimization Plugin for LLVM* Project
*Other names and brands may be claimed as the property of others.
A document describing this mitigation can be found here:
The LVI optimizing plugin has the following dependencies:
- CMake
- SYMPHONY (version 3)
For example, for Ubuntu 16.04+
$ apt install cmake coinor-libsymphony-dev
To obtain and build the plugin:
$ git clone https://github.com/intel/lvi-llvm-optimization-plugin.git
$ cd lvi-llvm-optimization-plugin
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=RELEASE ..
$ make
(Optional) installation:
$ sudo make install
This plugin is intended to be used with LLVM/clang LVI load hardening, for example:
$ clang -O3 -lvi-hardening my_file.c \
-mllvm -x86-lvi-load-opt-plugin=<path-to-plugin-install>/OptimizeCut.so
At the time of this writing, the patch that enables LVI load hardening can be found here: https://reviews.llvm.org/D75938.
When using a DEBUG build (i.e., CMAKE_BUILD_TYPE=DEBUG
), this plugin emits
detailed information about the optimizations it is performing.