74 Commits

Author SHA1 Message Date
Dmitry Vyukov
64b6c0724d sys/windows: add more descriptions 2017-09-27 20:17:09 +02:00
Dmitry Vyukov
9de22c7d8b docs: update syz-stress command line for fuchsia
-cover=0 is the default for syz-stress, remove it.
2017-09-27 19:04:31 +02:00
Andrey Konovalov
aba8ad090a Update found_bugs.md 2017-09-27 16:38:25 +02:00
Andrey Konovalov
075cdcd5ea Update found_bugs.md 2017-09-26 14:04:48 +02:00
Andrey Konovalov
64247dd4cb Update found_bugs.md 2017-09-26 13:57:43 +02:00
Dmitry Vyukov
e2f1c7ed36 Makefile: add fuchsia support 2017-09-25 15:40:58 +02:00
Dmitry Vyukov
af442a22d9 executor, sys/windows: initial windows support 2017-09-25 15:19:06 +02:00
Andrey Konovalov
0ecebdccc6 Update found_bugs.md 2017-09-25 14:43:30 +02:00
Dmitry Vyukov
e9c477a5b3 sys/syz-extract: support fuchsia 2017-09-25 08:47:48 +02:00
Dmitry Vyukov
8f8cf20bd2 syz-manager: make vmlinux optional
It's currently both optional and non optional.
We require it to be non-empty, but at the same time allow fake "-"
which effectively means "no vmlinux". Make it optional.
2017-09-23 10:02:53 +02:00
Andrey Konovalov
9bfa33a7b5 Update found_bugs.md 2017-09-22 19:05:14 +02:00
Andrey Konovalov
c429674a42 Update found_bugs.md 2017-09-22 14:58:06 +02:00
Andrey Konovalov
c26ea367cf Update found_bugs.md 2017-09-21 18:44:14 +02:00
Andrey Konovalov
91b202e9fc Update found_bugs.md 2017-09-21 17:41:48 +02:00
Andrey Konovalov
dc1c172fee Update found_bugs.md 2017-09-20 21:19:01 +02:00
Andrey Konovalov
a5bc45dbda Update found_bugs.md 2017-09-20 21:04:05 +02:00
Andrey Konovalov
6005b65aa6 Update found_bugs.md 2017-09-20 20:54:39 +02:00
Andrey Konovalov
a17ab57b02 Update found_bugs.md 2017-09-20 20:38:23 +02:00
Andrey Konovalov
b494464f32 Update found_bugs.md 2017-09-20 16:46:47 +02:00
Dmitry Vyukov
62114d6064 Makefile: build target binaries into separate dirs
We currently build binaries for all targets into bin.
This makes mess in bin/ and does not allow testing of different archs.
Build target binaries into bin/OS_ARCH/ subdirs.

Host binaries are still built into bin/.

Update #333
Update #324
Update #191
2017-09-19 16:44:54 +02:00
Andrey Konovalov
2bab8ad847 Update found_bugs.md 2017-09-18 19:34:56 +02:00
Dmitry Vyukov
25f4fe0662 vm/qemu: tune some qemu arguments based on target arch 2017-09-15 16:02:37 +02:00
Dmitry Vyukov
f7b1163afb syz-manager/mgrconfig: explicitly specify target in config
Add target config parameter (e.g. linux/amd64) which controls target OS/arch.
No more explicit assumptions about target.
2017-09-15 16:02:37 +02:00
Dmitry Vyukov
013a8d4c00 Update syscall_descriptions_syntax.md 2017-09-13 08:51:28 +02:00
Andrey Konovalov
c12eb94a84 Update found_bugs.md 2017-09-12 20:55:22 +02:00
Andrey Konovalov
0bd6a0a57a Update found_bugs.md 2017-09-12 19:10:57 +02:00
Andrey Konovalov
449b6f15c3 Update found_bugs.md 2017-09-11 17:52:44 +02:00
Andrey Konovalov
1ae12bb849 Update found_bugs.md 2017-09-11 17:48:16 +02:00
Andrey Konovalov
d18bfda0d4 Update setup_ubuntu-host_qemu-vm_x86-64-kernel.md 2017-09-08 13:24:54 +02:00
Li-Wen Hsu
22f8272a4b
docs: add more prerequisites on ubuntu 2017-09-08 09:10:02 +08:00
Andrey Konovalov
fbc5f27a13 Update found_bugs.md 2017-09-05 16:23:00 +02:00
Dmitry Vyukov
08c91ab698 sys: support ptr64 type
ptr64 is like ptr, but always takes 8 bytes of space.
Needed for some APIs. Unfortunately, most of these APIs
use buffer type, so we can't use ptr64 immidiately.
2017-09-02 13:44:28 +02:00
Dmitry Vyukov
a7206b24ca pkg/compiler: check and generate types
Move most of the logic from sysgen to pkg/compiler.

Update #217
2017-09-02 13:06:53 +02:00
Andrey Konovalov
70ab363e79 Update linux_kernel_reporting_bugs.md 2017-09-01 13:58:35 +02:00
Andrey Konovalov
83f1ca5484 Update linux_kernel_reporting_bugs.md 2017-09-01 13:55:37 +02:00
Dmitry Vyukov
5a093b74f6 sys: change proc arguments to the format used by const/flags/len
All other types have optional underlying type as the last argument.
Proc have it as first. This creates very irregular syntax and
complicates parsing. Make type the last argument.

Note: this is a breaking change if you have descriptions on the side.
2017-08-31 14:31:21 +02:00
Zubin Mithra
5857966468 docs: fix syz-headerparser documentation
Remove the --device option from the documentation file
docs/hedaerparser_usage.md
2017-08-27 18:17:00 +02:00
Zubin Mithra
c3631fc789 tools: add headerparser as a tool to assist in writing system call descriptions
The tool can be found inside tools/syz-headerparser. Details on how to use
headerparser can be found inside docs/headerparser_usage.md.
2017-08-25 17:23:52 +02:00
Dmitry Vyukov
2dfba870d0 docs: add landing page for automatically reported bugs 2017-08-17 13:08:38 +02:00
Dmitry Vyukov
6bf1e337a0 Update executing_syzkaller_programs.md 2017-08-09 16:29:35 +02:00
Andrey Konovalov
08a7078aab Update linux_kernel_reporting_bugs.md 2017-08-03 19:11:58 +02:00
Andrey Konovalov
35e1c3cdb5 Update linux_kernel_reporting_bugs.md 2017-08-03 14:36:28 +02:00
Andrey Konovalov
1bf4de5647 docs: small fixes 2017-07-24 18:23:04 +02:00
Dmitry Vyukov
50cd6f06ef Update linux_kernel_configs.md 2017-07-18 14:00:26 +02:00
Thomas Garnier
3fd92b9694 Add Isolated VM
Add a new isolated VM for machines that you cannot easily manage. It
assumes the machine is only available through SSH and create a reverse
proxy to ensure the machine can connect back to syz-manager.

Signed-off-by: Thomas Garnier <thgarnie@google.com>
2017-07-18 09:57:38 +02:00
Andrey Konovalov
bc44358170 Update found_bugs.md 2017-07-06 15:02:30 +02:00
Dmitry Vyukov
c5b6fcddca syz-hub: split client name and manager name
This allows to reduce number of hub clients by grouping managers
and creating one client per such group.
2017-06-29 17:50:44 +02:00
Andrey Konovalov
e71d50711e docs: add instructions on reporting security bugs 2017-06-29 16:01:06 +02:00
Zach Riggle
43f0f8f079 Add 'make android' target and document it (#255) 2017-06-26 15:55:20 +02:00
Zach Riggle
2420edb02e Port console to Darwin (#253)
* Port console to Darwin

* Get syz-executor to build correctly

* Do not export unix and syscall constants

* Add presubmit test

* Add myself to contributors
2017-06-26 15:32:38 +02:00