blob: 217f5e57182a8e306f36e0ae2a4becd11b48bb04 [file] [log] [blame]
Benoît Ganne87e64c92019-11-29 17:28:30 +01001.. _sanitizer:
2
John DeNiscoa273ce62020-01-24 14:04:41 -05003*****************
Benoît Ganne87e64c92019-11-29 17:28:30 +01004Google Sanitizers
John DeNiscoa273ce62020-01-24 14:04:41 -05005*****************
Benoît Ganne87e64c92019-11-29 17:28:30 +01006
7VPP is instrumented to support `Google Sanitizers <https://github.com/google/sanitizers>`_.
8As of today, only `AddressSanitizer <https://github.com/google/sanitizers/wiki/AddressSanitizer>`_
Damjan Marioncea46522020-05-21 16:47:05 +02009is supported, both for GCC and clang.
Benoît Ganne87e64c92019-11-29 17:28:30 +010010
11AddressSanitizer
John DeNiscoa273ce62020-01-24 14:04:41 -050012================
Benoît Ganne87e64c92019-11-29 17:28:30 +010013
14`AddressSanitizer <https://github.com/google/sanitizers/wiki/AddressSanitizer>`_ (aka ASan) is a memory
15error detector for C/C++. Think Valgrind but much faster.
16
17In order to use it, VPP must be recompiled with ASan support. It is implemented as a cmake
18build option, so all VPP targets should be supported. For example:
19
20.. code-block:: console
21
22 # build a debug image with ASan support:
Damjan Marioncea46522020-05-21 16:47:05 +020023 $ make rebuild VPP_EXTRA_CMAKE_ARGS=-DVPP_ENABLE_SANITIZE_ADDR=ON
Benoît Ganne87e64c92019-11-29 17:28:30 +010024 ....
25
26 # build a release image with ASan support:
Damjan Marioncea46522020-05-21 16:47:05 +020027 $ make rebuild-release VPP_EXTRA_CMAKE_ARGS=-DVPP_ENABLE_SANITIZE_ADDR=ON
Benoît Ganne87e64c92019-11-29 17:28:30 +010028 ....
29
30 # build packages in debug mode with ASan support:
Damjan Marioncea46522020-05-21 16:47:05 +020031 $ make pkg-deb-debug VPP_EXTRA_CMAKE_ARGS=-DVPP_ENABLE_SANITIZE_ADDR=ON
Benoît Ganne87e64c92019-11-29 17:28:30 +010032 ....
33
34 # run GBP plugin tests in debug mode with ASan
Damjan Marioncea46522020-05-21 16:47:05 +020035 $ make test-debug TEST=test_gbp VPP_EXTRA_CMAKE_ARGS=-DVPP_ENABLE_SANITIZE_ADDR=ON
Benoît Ganne87e64c92019-11-29 17:28:30 +010036 ....
37
Benoît Ganne332bc082020-04-21 19:25:14 +020038Once VPP has been built with ASan support you can use it as usual including
39under gdb:
John DeNiscod52820d2020-05-29 08:56:38 -040040
Benoît Ganne87e64c92019-11-29 17:28:30 +010041.. code-block:: console
42
Benoît Ganne332bc082020-04-21 19:25:14 +020043 $ gdb --args $PWD/build-root/install-vpp_debug-native/vpp/bin/vpp "unix { interactive }"
Benoît Ganne87e64c92019-11-29 17:28:30 +010044 ....
45