Re: [klee-dev] Question on use-after-free detection.

2021-01-02 Thread Frank Busse
Hi, On Sat, 2 Jan 2021 19:31:02 + Cristian Cadar wrote: > You are right, KLEE doesn't catch this use-after-free bug currently, > as it doesn't implement a quarantine. Just a remark: KLEE's deterministic allocation mode (--allocate-determ) implements an el cheapo arena allocator and just

Re: [klee-dev] Question on use-after-free detection.

2021-01-02 Thread Cristian Cadar
You are right, KLEE doesn't catch this use-after-free bug currently, as it doesn't implement a quarantine. It wouldn't it be too hard to add this though (you might want to refer to the ASan paper for details). Best, Cristian On 02/01/2021 18:16, Yoonseok Ko wrote: Hello,  I have an

[klee-dev] Question on use-after-free detection.

2021-01-02 Thread Yoonseok Ko
Hello, I have an additional question on this comment: https://github.com/klee/klee/issues/1254 @ccadar mentioned that KLEE already finds the kind of bugs that AddressSanitizer detects, but I don't clearly understand. For example, consider the