| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | executor: proceed even if /dev/net/tun is not available | Andrey Konovalov | 2017-11-08 | 1 | -2/+12 |
| | | | | | | | | | | For some racy bugs syzkaller can generate a C reproducer with tun enabled, when it's not actuallly required to trigger the bug. Some kernel developers (that don't have CONFIG_TUN=y on their setups) complain about such C repros. When tun is not available, instead of exiting, print a message that tun initialization failed and proceed. | ||||
| * | executor: fix build breakages due to doexit | Dmitry Vyukov | 2017-10-19 | 1 | -5/+5 |
| | | | | | | Some standard libraries contain "using ::exit;", which breaks with the current redefinition of exit. | ||||
| * | executor, pkg/ipc: unify ipc protocol between linux and other OSes | Dmitry Vyukov | 2017-10-16 | 1 | -6/+8 |
| | | | | | | | | | | | | | | | | | | We currently use more complex and functional protocol on linux, and a simple ad-hoc protocol on other OSes. This leads to code duplication in both ipc and executor. Linux supports coverage, shared memory communication and fork server, which would also be useful for most other OSes. Unify communication protocol and parametrize it by (1) use of shmem or only pipes, (2) use of fork server. This reduces duplication in ipc and executor and will allow to support the useful features for other OSes easily. Finally, this fixes akaros support as it currently uses syz-stress running on host (linux) and executor running on akaros. | ||||
| * | pkg/csource: support akaros | Dmitry Vyukov | 2017-10-16 | 1 | -0/+2042 |
