• Stars
    star
    169
  • Rank 216,541 (Top 5 %)
  • Language
    C
  • License
    MIT License
  • Created about 9 years ago
  • Updated about 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

collection of C/C++ programs that try to get compilers to exploit undefined behavior
-------------------------------------------------------------------------------

UB Canaries: A collection of C/C++ programs that detect undefined
behavior exploitation by compilers.

-------------------------------------------------------------------------------

To run all tests, type:

  run-canaries

For a complete list of command line options:

  run-canaries --help

-------------------------------------------------------------------------------

Each directory documents and tests an expectation: something a developer might
-- perhaps unreasonably! -- expect the compiler to do when faced with undefined
behavior. For example, the "uninitialized-variable" directory tests the
expectation that an uninitialized scalar variable will consistently return some
value that is legal for the variable's type.

If any test program in a directory does not display the expected behavior (for a
given compiler version + flags), then that compiler is considered to violate
that expectation.

The toplevel script run-canaries tests the expectations for a
specified collection of compilers and compiler flags. For now, you
need to edit that file to change the set of compilers and flags.

The output of run-canaries is, for each compiler / flag / canary
combination, a bit that tells us whether that compiler has been
observed to exploit that particular UB (in other words, whether it has
been observed violating the expectation). So here, for example, clang
has been seen to exploit signed integer overflows and uninitialized
variables, but not signed left shifts:

clang -O3 signed-left-shift 0
clang -O3 signed-integer-overflow 1
clang -O3 uninitialized-variable 1

-------------------------------------------------------------------------------

Guidelines for writing tests:

- Each test program should be entirely contained (except for standard header
  files) in a single compilation unit.

- An expectation should only be tested by looking at a program's stdout, never
  by looking at its assembly code or observing its memory usage or execution
  time.

- A test program foo.c may have one or more outputs corresponding to the
  "expected" case where the compiler does not exploit that UB. If there is one
  such file it should be called foo.output. If there are multiple files they
  should be called foo.output1, foo.output2, etc. If the actual output does not
  match any of these files, the compiler is assumed to have exploited the UB.

- Every test program must test only a single UB. In other words, each test
  program is written in a dialect of C that is completely standard except that a
  single behavior (signed integer overflow or whatever) is actually defined
  instead of undefined.

- Reliance on implementation-defined behavior is unavoidable, but please avoid
  gratuitous reliance such as assuming a particular size for int or long. It is
  OK to use the fixed-width types such as int32_t.

- A tricky issue to how much to expose to the optimizer and how much to hide.
  There are no particular good rules of thumb that I am aware of, you just have
  to try different things.

- An easier issue is *how* to hide from the optimizer. I suggest introducing a
  dependency on argc or on the value loaded from a volatile. Tests may assume
  that argc == 1.

-------------------------------------------------------------------------------

More Repositories

1

itc-benchmarks

static analysis benchmarks from Toyota ITC
C
106
star
2

compiler-crashes

60 artisanal compiler crashes
C++
39
star
3

opt-fuzz

llvm opt fuzzer and bounded exhaustive test generator
C++
36
star
4

nibble-sort

Many functions in C for sorting the nibbles in an 8-byte word
C
32
star
5

pldi22-llvm-tutorial

outline and links for PLDI 2022 tutorial
17
star
6

rb_tree_demo

code accompanying a blog post about fuzzing a red-black tree implementation: http://blog.regehr.org/archives/896
C
17
star
7

llvm-dataflow-info

print information from LLVM dataflow analyses
C++
13
star
8

sudo-1.8.13

sudo for compiler bug demo
C
12
star
9

solid_code_class

shared files for U of Utah CS 5959: Writing Solid Code
C
11
star
10

str2long_contest

code corresponding to a coding contest posted here: http://blog.regehr.org/archives/909
C
10
star
11

const_time

empirical measurement of code constructs that seem like they should have constant execution time regardless of values of inputs
C
9
star
12

llvm-pass-template

minimal out-of-tree LLVM pass
C++
8
star
13

guided-tree-search

heuristically and dynamically sample (more) uniformly from large decision trees of unknown shape
C++
8
star
14

fs-fuzz

two simple fuzzers, one for UNIX filesystem operations, the other for C streams
C
8
star
15

random-testing-book

C
6
star
16

rc4-poc

proof of concept for local OpenSSL RC4 buffer overrun bug
C
5
star
17

cost-model

looking into devising good cost models for optimizing LLVM IR
C++
5
star
18

optimizer-eval

compiler optimizer evaluation
C
4
star
19

python_rb_tree_demo

demonstration of fuzzing a red-black tree in Python for a blog entry
Python
4
star
20

isolating-a-miscompilation

code accompanying a blog post about a compiler bug
C
4
star
21

sudoku

brute-force sudoku solver in C
C
3
star
22

llvm-dataflow-research

experimenting with better interval transfer functions for LLVM
C++
3
star
23

advanced_os_class

shared repo for U of Utah CS 5962 spring 2014
Assembly
3
star
24

assert_quiz

A quick quiz about how assertions should be used.
2
star
25

parse-arm

C++
2
star
26

calc-compiler

tiny language compiler for class
LLVM
2
star
27

llvm-test-lvi

LLVM pass for testing the soundness of the LazyValueInfo analysis pass
C++
2
star
28

llvm-mc-info

just playing with llvm-mca
C++
1
star
29

llvm-stress

fork of llvm-stress
C++
1
star
30

cs6015-webscrapers

web scraper assignment for Utah CS 6015 Spring 2018
Python
1
star
31

knownbits-compare

C++
1
star
32

cs6960-fall17

repo for advanced OS, fall 2017, U of Utah
C
1
star