232 Commits

Author SHA1 Message Date
Dmitry Vyukov
e511d9f8d8 docs: add found_bugs for akaros 2017-11-01 20:41:02 +03:00
Magicansk
e775312e81 Update troubleshooting.md
Fixed MD syntax.
2017-11-01 10:51:24 +03:00
Wei Wei
5b3a76c9f8 docs: choose iproute2 to use *ip neigh add* command when connecting VM with buildroot v2017.02.6 2017-10-30 14:45:26 +01:00
Andrey Konovalov
a35d18d5c5
Update external_fuzzing_network.md 2017-10-30 13:06:16 +01:00
Andrey Konovalov
a9b8c06dee
Update external_fuzzing_network.md 2017-10-30 13:05:13 +01:00
Andrey Konovalov
80c748800e docs: assorted improvements 2017-10-27 15:39:00 +02:00
Andrey Konovalov
06a268ea21 docs: add doc on external network fuzzing 2017-10-27 15:39:00 +02:00
Andrey Konovalov
127b1dd85c docs: move linux kernel specific docs to docs/linux/ dir 2017-10-27 10:04:34 +02:00
Andrey Konovalov
26d265c811 docs, tools: add local link checker
This commit adds tools/check_links.py script, that checks that all local
links from documentation files are valid; fixes some of the invalid links
that we had; and makes travis buildbot check them as well.
2017-10-27 10:04:34 +02:00
Dmitry Vyukov
0a4d6e56b9 Update syzbot.md 2017-10-26 18:12:36 +02:00
Dmitry Vyukov
75cdcbe159 Update syzbot.md 2017-10-26 10:29:03 +02:00
Andrey Konovalov
0c732b810d Update setup_ubuntu-host_qemu-vm_x86-64-kernel.md 2017-10-26 00:03:50 +02:00
Utkarsh Anand
3f955eba7f Lots of changes to sys/netbsd (#397)
* Lots of changes to sys/netbsd:
- Removed a few syscalls that did not have proper constants defined.
- Autogenerated *.const files.
- Removed a few types like uid and gid, that were not available.
- Ran make generate

* Few changes for NetBSD support:
- Added sys/netbsd/init.go
- Added netbsd to sys/sys.go

* Fix order in sys/sys.go

* Update documentation for NetBSD
2017-10-25 09:27:47 +02:00
Andrey Konovalov
3d7d860fba Update found_bugs_usb.md 2017-10-24 17:03:46 +02:00
Dmitry Vyukov
01191dcf5d Update syzbot.md 2017-10-24 13:30:53 +02:00
Andrey Konovalov
7a28007ebe Update found_bugs_usb.md 2017-10-24 13:20:00 +02:00
Dmitry Vyukov
5009f8ec62 Update syzbot.md 2017-10-24 13:17:14 +02:00
Andrey Konovalov
92f543f08a Update found_bugs_usb.md 2017-10-23 16:43:19 +02:00
Utkarsh Anand
9a70df4192 Added documentation for NetBSD.
- Added a new file that documents the image preparation and running instructions for NetBSD.
2017-10-23 16:14:46 +02:00
Andrey Konovalov
afeb98ca65 Update found_bugs_usb.md 2017-10-23 13:25:21 +02:00
LeadroyaL
4d9c071338 use absolute link 2017-10-20 10:27:24 +02:00
LeadroyaL
534e07edeb docs: fix configuration documentation 2017-10-20 10:27:24 +02:00
Dmitry Vyukov
355f57c5fb Update freebsd.md 2017-10-19 14:34:48 +02:00
Dmitry Vyukov
b8d21896b6 Delete issue_template.md 2017-10-19 14:27:44 +02:00
Dmitry Vyukov
d1fdae0c34 Create issue_template.txt 2017-10-19 14:27:36 +02:00
Dmitry Vyukov
f7e3d40e6f Update freebsd.md 2017-10-19 13:31:40 +02:00
Dmitry Vyukov
d629e2b7fe Update freebsd.md 2017-10-19 13:28:49 +02:00
Andrey Konovalov
10c53cfcdb Update found_bugs_usb.md 2017-10-19 13:13:56 +02:00
Andrey Konovalov
5776783af1 Update found_bugs_usb.md 2017-10-18 14:16:38 +02:00
Dmitry Vyukov
0c3dda40b8 Update contributing.md 2017-10-18 12:31:05 +02:00
Dmitry Vyukov
7ba02b7e21 Update pull_request_template.txt 2017-10-18 12:26:12 +02:00
Dmitry Vyukov
21c4900972 Update pull_request_template.txt 2017-10-18 12:25:15 +02:00
Dmitry Vyukov
1ba1282960 Create pull_request_template.txt 2017-10-18 12:23:12 +02:00
Dmitry Vyukov
7fdc7eba93 Create issue_template.md 2017-10-18 12:14:53 +02:00
Dmitry Vyukov
83d9b33c5b Update contributing.md 2017-10-18 12:07:21 +02:00
Willem de Bruijn
b69d27d17e docs: minor updates to x86_64 ubuntu setup instruction 2017-10-17 15:26:15 +02:00
Dmitry Vyukov
a1bdb604cc syz-manager: extend periodic messages
Add coverage and number of reproducing programs to the periodic messages.
When all machines are busy reproducing crashes, it appears that
syz-manager hanged as number of executed programs does not increase.
Coverage is just a nice characteristic.
Also print machine check message, it appears once and contains useful info.
2017-10-17 15:00:01 +02:00
Dmitry Vyukov
493f7afa4b docs: add some info about freebsd 2017-10-17 13:56:29 +02:00
Dmitry Vyukov
85b1f93f8d executor, pkg/ipc: unify ipc protocol between linux and other OSes
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.
2017-10-16 14:21:54 +02:00
Dmitry Vyukov
d158fb9d3b executor: add akaros support
Does not work yet, also needs ipc changes.
2017-10-16 14:21:54 +02:00
Dmitry Vyukov
2647772874 sys/akaros: add akaros support 2017-10-16 14:21:54 +02:00
Andrey Konovalov
f5c3010743 Update found_bugs_usb.md 2017-10-11 12:31:27 +02:00
Andrey Konovalov
abb0204238 Update found_bugs_usb.md 2017-10-10 15:36:37 +02:00
Dmitry Vyukov
3874fcc323 Update setup_linux-host_qemu-vm_arm64-kernel.md 2017-10-10 14:19:49 +02:00
Andrey Konovalov
9a2368f5f5 Update found_bugs_usb.md 2017-10-10 13:31:42 +02:00
Dmitry Vyukov
7dabf63f14 Update setup_linux-host_android-device_arm64-kernel.md 2017-10-10 12:10:38 +02:00
Andrey Konovalov
2ef9fcaf18 Update found_bugs_usb.md 2017-10-09 20:01:39 +02:00
Andrey Konovalov
215ea05dec Update found_bugs_usb.md 2017-10-09 19:59:03 +02:00
Andrey Konovalov
6dd3a4f915 Update found_bugs_usb.md 2017-10-09 19:54:44 +02:00
Andrey Konovalov
059272bbad Update found_bugs_usb.md 2017-10-09 14:25:29 +02:00