hardening the c standard template library
play

Hardening the C++ Standard Template Library Marshall Clow Qualcomm - PowerPoint PPT Presentation

Hardening the C++ Standard Template Library Marshall Clow Qualcomm Euro LLVM, April 17, 2018 Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 1 / 16 About me I work for Qualcomm in San Diego. I


  1. Hardening the C++ Standard Template Library Marshall Clow Qualcomm Euro LLVM, April 17, 2018 Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 1 / 16

  2. About me I work for Qualcomm in San Diego. I have been working on LLVM for eight years, and on libc++ for about six, and I am the “code owner” for libc++. I am also the chairman of the Library Working Group of the C++ Standards Committee. Contact info: 1 Email: mclow.lists@gmail.com 2 Slack: marshall 3 IRC: mclow Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 2 / 16

  3. What is libc++? Libc++ (https://libcxx.llvm.org) is an implementation of the C++ standard library for LLVM/clang. It contains (among other things) commonly used facilities like vector , shared_ptr , sort and so on. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 3 / 16

  4. Why do we care about hardening the standard library? Every C++ program depends on a standard library implementation. For LLVM users, this means that libc++ is at the “bottom” of their dependency graph. It is vital that this library be correct and performant. Some of the techniques we use are: 1 A comprehensive test suite 2 Warning eradication 3 Precondition checking 4 Static analysis 5 Dynamic analysis 6 Fuzzing Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 4 / 16

  5. Test Suite Who would think of developing a software package today that does not include a reasonably comprehensive test suite? libc++ is no exception here. The libc++ test suite can best described as “a good start”. We also have a build bot that generates coverage metrics from the test suite. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 5 / 16

  6. Warning Eradication Users of libc++ have many requirements; some of them don’t care about errors, others compile with -Werror -Wall -Wextra . Our goal is to support all of these users. This is an ongoing job; people are adding warnings to clang all the time. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 6 / 16

  7. Precondition checking Most of the calls in the standard library have preconditions. Some of these preconditions are cheap to check. Others are expensive. Others are not possible to check at all. libc++ has a macro named _LIBCPP_ASSERT , which is defined to expand to nothing. Users can define this macro themselves to catch some precondition violations. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 7 / 16

  8. Precondition checking - easy template <class T> T& vector <T>:: front (); R equires: *this shall not be empty. _LIBCPP_ASSERT (! empty(), "front ()␣called␣for␣empty␣vector"); Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 8 / 16

  9. Precondition checking - expensive template <class RanIter , class Compare > void sort(RanIter first , RanIter last , Compare comp ); R equires: comp shall induce a strict weak ordering on the values. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 9 / 16

  10. Precondition checking - not possible template <class InIter > typename iterator_traits <InIter >:: difference_type distance(InIter first , InIter last ); R equires: last shall be reachable from first . Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 10 / 16

  11. Static analysis We don’t do near as much static analysis as I would like. The current static analysis tools that we’ve tried are very “noisy”; reporting many of problems, most of which are false positives. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 11 / 16

  12. Dynamic analysis libc++ was an early user of the sanitizers. See http://blog.llvm.org/2013/03/testing-libc-with-address-sanitizer.html and http://blog.llvm.org/2013/04/testing-libc-with-fsanitizeundefined.html The have caught many bugs that would have plagued users in the field. libc++ also has ASAN integration for std::vector , so ASAN can tell if you read or write off the end of the vector (even if its not off the end of the memory block that vector manages) Now we have bots that run the tests under ASAN/UBSAN all the time. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 12 / 16

  13. Fuzzing libc++ is an excellent target for fuzzing; it has many (independent) entry points. Last year, I did some fuzzing experiments, and found a few bugs in libc++. Now we use OSS-Fuzz https://github.com/google/oss-fuzz for this. Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 13 / 16

  14. Fuzzing example (4) int test_partition(const uint8_t *data , size_t size) { vector <uint8_t > working(data , data + size ); auto iter = partition(working.begin(), working.end(), is_even <uint8_t >()); if (! all_of (working.begin(), iter , is_even <uint8_t >())) return 1; if (! none_of(iter , working.end(), is_even <uint8_t >())) return 2; if (! is_permutation(data , data + size , working.cbegin ())) return 99; return 0; } Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 14 / 16

  15. Questions? Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 15 / 16

  16. Thank you Marshall Clow (Qualcomm) Hardening the C++ Standard Template Library Euro LLVM, April 17, 2018 16 / 16

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend