| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | sys: add basic netlink support for real | Dmitry Vyukov | 2016-01-23 | 1 | -0/+48 |
| | | |||||
| * | executor: restore nodropprivs mode | Dmitry Vyukov | 2016-01-23 | 1 | -15/+24 |
| | | |||||
| * | sys: use kernel headers instead of host headers | Dmitry Vyukov | 2016-01-22 | 1 | -15/+965 |
| | | | | | | | | | This solves several problems: - host usually have outdates headers, so previously we need to define missing consts - host may not have some headers at all - generation depends on linux distribution and version - some of the consts cannot be defined at all (e.g. ioctls that use struct arguments) | ||||
| * | executor: new namespace-based sandbox | Dmitry Vyukov | 2016-01-22 | 1 | -73/+208 |
| | | |||||
| * | vm/adb: use a more reliable way to reboot devices | Dmitry Vyukov | 2016-01-20 | 1 | -1/+6 |
| | | |||||
| * | executor: start moving sandboxing code into executor | Dmitry Vyukov | 2016-01-20 | 1 | -0/+14 |
| | | |||||
| * | executor: adopt for new kcov | Dmitry Vyukov | 2016-01-19 | 1 | -14/+16 |
| | | | | | Now kcov exposes only uintptr-sized PCs. | ||||
| * | sys: describe more dri syscalls | Dmitry Vyukov | 2016-01-16 | 2 | -0/+98 |
| | | |||||
| * | sys: support /dev/input/event ioctls | Dmitry Vyukov | 2016-01-15 | 1 | -0/+72 |
| | | |||||
| * | executor: reportat after clang-format bug fix | Dmitry Vyukov | 2016-01-15 | 1 | -30/+12 |
| | | | | | http://reviews.llvm.org/rL257763 | ||||
| * | sys: support /dev/input/{mouse,mice,event} | Dmitry Vyukov | 2016-01-13 | 1 | -0/+2 |
| | | |||||
| * | executor: don't create all threads when spot a root syscall | Dmitry Vyukov | 2016-01-13 | 1 | -1/+1 |
| | | |||||
| * | executor: don't print all waitpid debug messages | Dmitry Vyukov | 2016-01-13 | 1 | -2/+5 |
| | | |||||
| * | sys: introduce a generic syz_open_dev helper syscall | Dmitry Vyukov | 2016-01-13 | 2 | -44/+38 |
| | | |||||
| * | sys: add support for /dev/snd/control | Dmitry Vyukov | 2016-01-13 | 2 | -1/+68 |
| | | |||||
| * | sys: add support for /dev/snd/timer | Dmitry Vyukov | 2016-01-12 | 1 | -0/+30 |
| | | |||||
| * | sys: support /dev/snd/seq | Dmitry Vyukov | 2016-01-11 | 2 | -0/+72 |
| | | |||||
| * | executor: use mknodat instead of mknod (the latter is not implemented on ↵ | Dmitry Vyukov | 2016-01-11 | 1 | -1/+1 |
| | | | | | android) | ||||
| * | sys: add kvm support | Dmitry Vyukov | 2016-01-08 | 2 | -17/+203 |
| | | |||||
| * | executor: fix some bugs found by clang | Dmitry Vyukov | 2015-12-31 | 1 | -1/+4 |
| | | |||||
| * | sys: add sctp support | Dmitry Vyukov | 2015-12-30 | 1 | -12/+96 |
| | | |||||
| * | sys: add union type | Dmitry Vyukov | 2015-12-29 | 1 | -2/+2 |
| | | |||||
| * | sys: support for AF_UNIX sockets | Dmitry Vyukov | 2015-12-28 | 1 | -2/+42 |
| | | |||||
| * | sys: move more subsystems into separate files | Dmitry Vyukov | 2015-12-28 | 1 | -394/+394 |
| | | |||||
| * | sys: split syscall description into several files | Dmitry Vyukov | 2015-12-28 | 1 | -34/+34 |
| | | |||||
| * | host: detect unsupported syscalls | Dmitry Vyukov | 2015-12-27 | 1 | -0/+4 |
| | | | | | | | Also detect transitively unsupported syscalls, that is, syscalls for which all syscalls that can create input arguments are disabled. | ||||
| * | sysgen: fix syscall number assignment for syzkalls | Dmitry Vyukov | 2015-12-24 | 1 | -8/+8 |
| | | |||||
| * | executor: get rid of sigtimedwait | Dmitry Vyukov | 2015-12-24 | 1 | -43/+18 |
| | | | | | | Wait with spin loop instead. See the comment for explanation. | ||||
| * | executor: don't use WUNTRACED in wait | Dmitry Vyukov | 2015-12-24 | 1 | -3/+3 |
| | | | | | | | | WUNTRACED wait returns when child has stopped. That's not what we want to wait for. If it's stopped we need to timeout wait and kill the stopped child. | ||||
| * | sysgen: pull in syscall numbers from kernel headers | Dmitry Vyukov | 2015-12-24 | 1 | -1784/+1284 |
| | | | | | | | | | Syscall numbers for different architectures are now pulled in from kernel headers. This solves 2 problems: - we don't need to hardcode numbers for new syscalls (that don't present in typical distro headers) - we have correct number for different archs (previously hardcoded numbers were for x86_64) This also makes syscall numbers available for Go code, which can be useful. | ||||
| * | prog: remove padding checking | Dmitry Vyukov | 2015-12-23 | 1 | -54/+2 |
| | | | | | | So far it has found only false positives. Let's leave this to KMSAN. | ||||
| * | sys: expose new syscall numbers programmatically | Dmitry Vyukov | 2015-12-23 | 1 | -17/+1144 |
| | | | | | This will be required for reproduction tool. | ||||
| * | executor: fix collide mode | Dmitry Vyukov | 2015-12-23 | 1 | -1/+1 |
| | | | | | Don't wait for every other call. | ||||
| * | add a flag to disable setpgid syscall | Dmitry Vyukov | 2015-12-17 | 1 | -46/+46 |
| | | | | | It is broken on some of our test systems. | ||||
| * | executor: export syscall execution results | Dmitry Vyukov | 2015-12-17 | 1 | -0/+7 |
| | | | | | Errno can be used to guide fuzzing, or detect not implemented syscalls. | ||||
| * | sys: fix typos | Dmitry Vyukov | 2015-12-17 | 1 | -1/+1 |
| | | |||||
| * | sys: add bluetooth support | Dmitry Vyukov | 2015-12-17 | 1 | -0/+60 |
| | | |||||
| * | executor: allow to wait for child processes without sigtimedwait | Dmitry Vyukov | 2015-12-17 | 1 | -1/+24 |
| | | | | | We've hit 2 systems that mishandle sigtimedwait. | ||||
| * | sys: add PF_NFC support | Dmitry Vyukov | 2015-12-17 | 1 | -0/+11 |
| | | |||||
| * | sys: automatically add padding to structs | Dmitry Vyukov | 2015-12-17 | 1 | -9/+68 |
| | | |||||
| * | sys: add support for PF_ALG | Dmitry Vyukov | 2015-12-17 | 1 | -0/+9 |
| | | |||||
| * | executor: switch to ioctl's instead of writes | Dmitry Vyukov | 2015-12-03 | 1 | -10/+13 |
| | | |||||
| * | sys: describe some additional syscalls | Dmitry Vyukov | 2015-12-03 | 1 | -0/+18 |
| | | |||||
| * | executor: execute mount under root | Dmitry Vyukov | 2015-11-30 | 1 | -0/+2 |
| | | |||||
| * | sys: add userfaultfd syscall | Dmitry Vyukov | 2015-11-30 | 1 | -0/+10 |
| | | |||||
| * | add perf ioctl's | Dmitry Vyukov | 2015-11-29 | 1 | -0/+9 |
| | | |||||
| * | add support for perf events | Dmitry Vyukov | 2015-11-29 | 1 | -0/+1 |
| | | |||||
| * | add support for bpf syscall | Dmitry Vyukov | 2015-11-29 | 1 | -0/+14 |
| | | |||||
| * | executor: fix build | Dmitry Vyukov | 2015-11-29 | 1 | -7/+5 |
| | | |||||
| * | executor: switch to new coverage | Dmitry Vyukov | 2015-11-28 | 1 | -54/+62 |
| | | |||||
