The wrapper clears shadow for anything written by recvmsg.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Unit Tests
Time | Test | |
---|---|---|
70 ms | x64 windows > LLVM.CodeGen/XCore::threads.ll |
Event Timeline
compiler-rt/lib/dfsan/dfsan_custom.cpp | ||
---|---|---|
894 | If msg is from users' inputs, can iov_len be < 0? https://linux.die.net/man/2/recvmsg does not say what happens in this case. |
compiler-rt/lib/dfsan/dfsan_custom.cpp | ||
---|---|---|
894 | iov_len is size_t, which is never negative. |
If msg is from users' inputs, can iov_len be < 0?
https://linux.die.net/man/2/recvmsg does not say what happens in this case.