| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | sys/linux: add ion and ashmem devices support | Dmitry Vyukov | 2018-01-09 | 1 | -1/+10 |
| | | | | | | Note: ion supercedes the old android interface, which is moved to sys/android. | ||||
| * | Update found_bugs.md | Dmitry Vyukov | 2018-01-09 | 1 | -0/+7 |
| | | |||||
| * | Update found_bugs.md | Dmitry Vyukov | 2018-01-09 | 1 | -1/+2 |
| | | |||||
| * | pkg/compiler: add builtin bool type aliases | Dmitry Vyukov | 2018-01-08 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | This adds builtin: type bool8 int8[0:1] type bool16 int16[0:1] type bool32 int32[0:1] type bool64 int64[0:1] type boolptr intptr[0:1] We used to use just int's for bools. But bool types provide several advantages: - make true/false probability equal - improve description expressiveness - reduce search space (we will take advantage of this later) | ||||
| * | sys: support type aliases (aka typedefs) | Dmitry Vyukov | 2018-01-08 | 1 | -0/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | Complex types that are often repeated can be given short type aliases using the following syntax: ``` type identifier underlying_type ``` For example: ``` type signalno int32[0:65] type net_port proc[20000, 4, int16be] ``` Then, type alias can be used instead of the underlying type in any contexts. Underlying type needs to be described as if it's a struct field, that is, with the base type if it's required. However, type alias can be used as syscall arguments as well. Underlying types are currently restricted to integer types, `ptr`, `ptr64`, `const`, `flags` and `proc` types. | ||||
| * | pkg/compiler: add bitsize type | Dmitry Vyukov | 2018-01-06 | 1 | -2/+4 |
| | | | | | This is need for few crypto/xfrm descriptions. | ||||
| * | dashboard/app: extract fixing tags from commits | Dmitry Vyukov | 2017-12-27 | 1 | -4/+6 |
| | | | | | | | | | | | | | | Support the new scheme of associating fixing commits with bugs. Now we provide a tag along the lines of: Reported-by: <syzbot+a4a91f6fc35e102@syzkaller.appspotmail.com> The tag is supposed to be added to the commit. Then we parse commit logs and extract these tags. The final part on the dashboard is not ready yet, but syz-ci should already parse and send the tags. | ||||
| * | syz-manager: enable sending group emails | Tim Tianyang Chen | 2017-12-21 | 1 | -1/+1 |
| | | | | | | | | Email_Addr variable has been changed to Email_Addrs that contains a list of recipient. Signed-off-by: Tim Tianyang Chen <soapcn@gmail.com> | ||||
| * | Makefile: fix Android builds | Dmitry Vyukov | 2017-12-20 | 2 | -9/+2 |
| | | | | | | | | | | | | | | | | There are 2 known problems with current Android support: 1. It does not work with newer NDK (happens on every NDK update). 2. Dynamic Go binaries do not start on Android emulator. Drop special Android support and just build static linux binaries. For context see: https://groups.google.com/forum/#!msg/syzkaller/etg1ZJmTMzg/NYE-yjxxAQAJ https://groups.google.com/d/msg/syzkaller/8KjCYWslTFY/1oTXn5tTAgAJ Fixes #478 | ||||
| * | Update found_bugs.md | Dmitry Vyukov | 2017-12-16 | 1 | -0/+2 |
| | | |||||
| * | syz-manager: add simple email support | Tim Tianyang Chen | 2017-12-14 | 1 | -0/+2 |
| | | | | | | | | | Users can specify an email address to reveive notifications when a bug is discovered for the first time, without setting up a full fledged dashboard. The supported mailer is mailx. Signed-off-by: Tim Tianyang Chen <soapcn@gmail.com> | ||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-12-12 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-12-12 | 1 | -0/+1 |
| | | |||||
| * | Update syzbot.md | Dmitry Vyukov | 2017-12-08 | 1 | -3/+9 |
| | | |||||
| * | docs: clarify what is syzkaller config parameter | Dmitry Vyukov | 2017-12-08 | 1 | -1/+3 |
| | | |||||
| * | docs: use 'c++' to build on FreeBSD | Ed Maste | 2017-11-29 | 1 | -1/+1 |
| | | | | | | | | | Building the executor via `gcc executor/executor_freebsd.cc ...` requires that a GCC package first be installed on the FreeBSD VM image. The FreeBSD base system comes with Clang already installed, so we can build via `c++ executor/executor_freebsd.cc ...` and avoid having to install additional packages. | ||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-23 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-23 | 1 | -2/+2 |
| | | |||||
| * | docs/linux: added and updated docs for ARM32 architecture | Atul Prakash | 2017-11-22 | 2 | -0/+84 |
| | | | | | docs/linux: Also fixed link and spacing in arm32 docs | ||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-21 | 1 | -7/+7 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-21 | 1 | -0/+4 |
| | | |||||
| * | dashboard/app: remember job links | Dmitry Vyukov | 2017-11-19 | 1 | -0/+2 |
| | | | | | | Remember link for jobs. Check that mailing list is in CC when we accept commands. | ||||
| * | dashboard/app: assorted improvements/fixes for patch testing | Dmitry Vyukov | 2017-11-17 | 1 | -0/+7 |
| | | | | | | Fix a bunch of bugs after testing. Also update docs for patch testing. | ||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-08 | 1 | -7/+7 |
| | | |||||
| * | Update contributing.md | Andrey Konovalov | 2017-11-07 | 1 | -6/+7 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-07 | 1 | -2/+2 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-07 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-07 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-07 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-07 | 1 | -1/+1 |
| | | |||||
| * | docs: update path to syz-execprog binary | Dmitry Vyukov | 2017-11-07 | 1 | -7/+10 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-06 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-06 | 1 | -1/+5 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-06 | 1 | -2/+2 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-04 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-04 | 1 | -14/+14 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-03 | 1 | -0/+6 |
| | | |||||
| * | Update contributing.md | Dmitry Vyukov | 2017-11-03 | 1 | -0/+21 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -3/+3 |
| | | |||||
| * | Update external_fuzzing_network.md | Andrey Konovalov | 2017-11-02 | 1 | -0/+38 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs.md | Andrey Konovalov | 2017-11-02 | 1 | -0/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | Update found_bugs_usb.md | Andrey Konovalov | 2017-11-02 | 1 | -1/+1 |
| | | |||||
| * | docs: add found_bugs for akaros | Dmitry Vyukov | 2017-11-01 | 4 | -3/+10 |
| | | |||||
