December 2018
- Fixed a non-convergence issue in the fixpoint iterator
- Upgraded LLVM from 4.0.x to 7.0.x
- Implemented ikos-scan, a tool to analyze a whole C/C++ project using IKOS
- Added support for Windows using the MinGW compiler
October 2018
- Updated the directory structure:
- Renamed
algorithmstoadt; - Renamed
iteratortofixpoint; - Added subdirectories under
domainandvaluefor each group of domains; - Added a
legacyfolder with unmaintained code. It will be removed in the future.
- Renamed
- Improved abstract domain interfaces using CRTP. Removed all the abstract domain traits.
- Added generic traits:
DumpableTraitsto dump an object on a stream, for debugging purpose;IndexableTraitsto get a unique index representing an object;GraphTraitsto traverse a graph. It replaces the previous control flow graph API.
- Added a faster implementation of Patricia trees.
- Added machine integer abstract domains.
- Added unit tests using Boost.Test.
- Implemented a new pointer constraints system solver, previously called
pta. - Implemented
machine_int::PolymorphicDomain, a machine integer abstract domain using runtime polymorphism that allows to use different abstract domains at runtime. - Implemented
machine_int::NumericDomainAdapter, a machine integer abstract domain wrapping a numeric abstract domain. - Added abstract domain operators to perform widening with a threshold.
- Added a flow-sensitive context-sensitive pointer analysis in
ValueDomain.
- Moved most of the implementation from the header files into the
srcdirectory. - Remove the
--ikos-ppoption. It is recommended not to use optimizations. - Added the
--domainoption, to choose the numerical abstract domain at runtime. - Added the
--hardware-addressesoption, for software using Direct Memory Access (DMA). - Added the
--argcoption, to specify the value ofargcduring the analysis. - Added support for global variable dynamic initialization.
- Added support for the
volatilekeyword. - Fix exception propagation analysis for C++.
- Added
ikos/analyzer/intrinsic.h, a header file with IKOS intrinsics. - Improved database writes by creating a new transaction every 8192 queries.
- Updated the output database schema to store more information about the source code.
- Improved the uninitialized variable analysis.
- Added a pass to find widening hints.
- Improved warning and error messages using LLVM debug information.
- Implemented several checks:
- signed and unsigned integer overflow (sio, uio);
- invalid shift count (shc);
- pointer overflow (poa);
- invalid pointer comparison (pcmp);
- invalid function call (fca);
- dead code (dca);
- double free and lifetime analysis (dfa);
- unsound analysis (sound).
- Implemented a new Abstract Representation, based on the design of LLVM. The main changes are:
- Improved memory management using clear ownership. The context owns types, a bundle owns functions, etc;
- Added
isa<>,cast<>anddyn_cast<>utilities, à la LLVM; - Added integer signedness information in the type system;
- Added overflow and wrapping behaviours for integer operations;
- Added visitors for statements and values;
- Added intrinsics functions;
- Added support for the
volatileattribute; - Added traceability utilities, allowing to attach debug information to an AR object.
- Added a static type checker.
- Removed the branching-opt pass and added the simplify-cfg pass, a simpler version.
- Added the simplify upcast comparison pass.
- Added 3 different optimization levels in ikos-pp (none, basic and aggressive)
- Implemented a new translation from LLVM to Abstract Representation (AR). The main changes are:
- In memory translation instead of writing into a file;
- Attach LLVM debug information to AR;
- Recover integer signedness information from debug information and several heuristics.
- Added the ikos-import tool. It translates LLVM bitcode into AR, useful for debugging.
- Added regression tests for the new translation from LLVM to AR.
- Add a target
checkthat builds and runs all the tests.
- Added ikos-view, a web interface to examine IKOS results.
- Updated the naming convention.
October 2017
- Added an implementation of the Gauge domain.
- Combined the memory domain and the pointer domain, improving the precision for arrays of pointers and virtual tables.
- Improved the documentation
- Added a report generator. The analyzer can now export the results in a gcc-style format, json or csv.
- Added an analysis of unaligned pointers.
- Improved the analysis performance by keeping previous fixpoints of called functions in memory.
- Added the intrinsic function
__ikos_debug(), that dumps the current invariant. - Added support for analyzing variable argument functions (
va_start,va_arg,va_endandva_copy). - Added support for analyzing structures in register (
insertelementandextractelementin LLVM). - Fixed an unsoundness in the exception analysis.
- Added a
settingsandtimestable in the result database, allowing a user to query the analysis options and timing results. - Added special checks that warn about dangerous code patterns (such as casts from integers to pointers).
- Fixed and improved the analysis of bitwise and conversion operators.
- Moved all global variable initializations into the internal function
__ikos_init_globals, also fixing the initialization of global objects in C++.
- Added support for C variable-length arrays (VLA).
- Upgraded to LLVM 4.0.x
October 2016
- Added an abstract domain to handle C++ exceptions.
- Implemented a proper C++ exception propagation handling using abstract interpretation. IKOS correctly handles C++ code with exceptions.
- Improved the analysis of string-related functions (such as strlen, strcpy and strcat).
- Fixed the precision of the null dereference analysis.
- Removed AR_Unwind as it is no longer generated by LLVM since LLVM 3.1
- Added APIs to set and retrieve the "resume" basic block in an AR_Code.
September 2016
- Added interfaces for abstract domains, nullity domains, uninitialized variables domains, pointer domains and memory domains.
- Moved the pointer domain, the value domain and the summary domain under IKOS core.
- Added a pass to unify exit nodes.
- Added APIs to set and retrieve "unreachable" and "unwind" basic blocks in an AR_Code
August 2016
- Added a pass
branching-optto optimize all Control Flow Graphs of the AR, before the analysis. The pass detects unreachable paths in the graphs and removes them.
- Improved the precision of the interval domain on most binary operators.
- Added a wrapper for APRON.
- Improved the bootstrap script. It is now able to build and install zlib, ncurses, libedit, GMP, SQLite and Python.
- Added installation instructions for Archlinux, CentOS, Debian, Fedora, Mac OS X, Red Hat and Ubuntu.
- Added support for gcc 4.9.2 and boost 1.55.0.
June 2016
- Added the ability to demangle C++ function names.
- We now handle
calloc()correctly. In IKOS 1.0.0, the function call was just ignored. - Added the runtime options
--display-invariantsand--display-checks. - Added a column called
columnto the result tables in the output database, containing the column number in the source code. - Added a column called
stmt_uidto the result tables in the output database, containing the UID of the checked statement. - Performance improvement (the analysis is 70% faster in average).
- Bug fixes.
The LLVM frontend now supports both LLVM 3.7 and 3.8.
ARBOS now gives the column number in addition to the line number in AR_Source_Location.
May 2016
In this release we upgraded our LLVM frontend from version 2.9 to 3.7.
To have a C/C++ program fully represented in AR, there are several code transformation we had to handle with the frontend's intermediate representation. When using the LLVM framework as the frontend, we transform the following LLVM instructions so they can be expressed in AR:
phiinstructiongetelementptrinstructioninsertvalueandextractvalueinstructionsi/fcmpandselectinstructions- removed
br constantexprand its subclasses- translation of intrinsic calls to AR-supported intrinsic calls. We currently support
memset,memcpy,memmove,vastart,vaend,va_arg, andvacopy.
In the previous release v0.0.1 we handled all transformation in ARBOS. The previous tool chain architecture defined another intermediate representation, called AIR, that served as a direct translation from the LLVM bitcode to an S-expression format that was fed into ARBOS. ARBOS then parsed and transformed AIR to AR in memory.
This release removes AIR entirely. All transformation are done in LLVMAR, while ABROS only parses the AR and makes it available in memory for ARBOS analysis plugins to traverse and perform analysis on it.
- Each
AR_Global_Variablemay contain an initializer represented asAR_Code. In the previous release we dedicated an initializer function for each global variable. These initializer functions were individually invoked inmain(). In this release, analyzers need to dive into the initializer of anAR_Global_Variableto analyze the initializer code. - Differentiates between store vs. real sizes of an
AR_Type. - Supports
varagsintrinsic calls in the AR. This was not supported in the previous release. - Function pointers are now available in the AR model; they were misinterpreted and were not available in the previous release.