Commit Graph

1694 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
Dmitry Vyukov
2de9b5257d dashboard/app: preserve template in Reported-by tag 2017-10-31 12:14:07 +01:00
Dmitry Vyukov
9d867540c8 dashboard/app: don't spam about updates to closed bugs
Updates about closed bugs are confusing and non-actionable for users.
E.g. fixing commit update after we've already closed the bug with
the previous fixing commmit (closure is irreversible anyway).
2017-10-31 10:36:37 +01:00
Dmitry Vyukov
dfe2b5c40e dashboard/app: update email bug template 2017-10-31 10:16:53 +01:00
Dmitry Vyukov
6ddaf205ad dashboard/app: email fixes
1. Allows sending emails upstream.
2. Filter out duplicate emails coming from our mailing lists.
3. Increase retry attempts for email commands
   (don't want them to fail due to concurrent crash reports from managers).
2017-10-31 10:06:02 +01:00
Utkarsh Anand
edfd374bd6 Changing the types of members of struct stat
As defined in the header files.
2017-10-30 18:57:38 +01:00
Utkarsh Anand
4b567b4940 Added a few more syscall descriptions, consts
and other related files.
2017-10-30 18:57:38 +01:00
Utkarsh Anand
9b42a968df Add two new syscalls shmctl and msgctl 2017-10-30 18:57:38 +01:00
Utkarsh Anand
d84e0ffaec Fix the SYS_SEMCTL value issue for NetBSD 2017-10-30 18:57:38 +01: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
BALAJI.J.B
e276672b6b Update README.md (#404) 2017-10-30 14:40:32 +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
4a7de22d60 docs: add links to new OS support docs 2017-10-27 10:04:34 +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
636a4dbf38 pkg/csource: add freebsd/netbsd support 2017-10-26 15:31:23 +02:00
Dmitry Vyukov
6fd57ceb7d vm/vmimpl: add netbsd console stub 2017-10-26 11:53:10 +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
Dmitry Vyukov
83d9c30252 sys/netbsd: fix mmap signature
mmap syscall has 7 arguments (one unused padding)
2017-10-25 18:36:49 +02:00
Dmitry Vyukov
bc5423304f executor: small fixes for netbsd
RLIMIT_AS auses frequent random aborts on netbsd.
Reason unknown. Disable it for now.

Documentation says that __syscall should be used
for syscalls with 64-bit arguments. On amd64 most
syscalls have 64-bit arguments (incl mmap),
so switch to it.
2017-10-25 18:36:49 +02:00
Dmitry Vyukov
644a9f03f9 sys/freebsd: fix const name 2017-10-25 18:36:49 +02:00
Dmitry Vyukov
0038451914 pkg/report: add netbsd stub 2017-10-25 18:36:49 +02:00
Dmitry Vyukov
9bf63a7b2b Update README.md 2017-10-25 09:55:24 +02:00
Dmitry Vyukov
031174c310 executor: fix netbsd syscalls
executor_netbsd.cc was including syscalls_freebsd.h,
which completely messed up syscall numbers and names.
Include the right syscalls header.
2017-10-25 09:45:05 +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
Dmitry Vyukov
88999972bf executor: fix mkdtemp return value check
mkdtemp return NULL on failure.
2017-10-25 07:44:06 +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
Utkarsh Anand
3b95a1e305 Added 4 files containing syscall descriptions (#396)
* Added 4 files containing syscall descriptions
- Initial additions for peer review.

* Removed a flag:
- Because it was failing to compile.
2017-10-24 11:54:37 +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
Dmitry Vyukov
f6a5463e58 Makefile: build netbsd binaries so that we don't regress 2017-10-23 10:19:56 +02:00
Dmitry Vyukov
da63ec6526 vm/qemu: support netbsd 2017-10-23 10:19:38 +02:00
Dmitry Vyukov
e729550825 all: basic building on netbsd
This just makes make TARGETOS=netbsd succeed.
We don't yet have prog target for netbsd.
2017-10-23 10:10:05 +02:00
Dmitry Vyukov
632b86c938 dashboard/app: better errors from bug update command
Provide better errors from bug update command.
In particular, distinguish between bad updates and internal errors.
Also better messages.
Allow duping onto closed bugs.
Don't allow unduping from closed bugs.
2017-10-23 09:59:39 +02:00
Dmitry Vyukov
8fa0c867d4 syz-fuzzer: generates hints only for the call that gave new coverage
During smashing we know what call gave new coverage,
so we can concentrate just on it.
This helps to reduce amount of hints generated (we have too many of them).
2017-10-23 09:59:39 +02:00
Dmitry Vyukov
5044885ca2 prog: add a TODO for hints 2017-10-23 09:59:39 +02:00
Dmitry Vyukov
54ae9c6db3 tools/syz-execprog: print total number of comps/hints 2017-10-23 09:59:39 +02:00
Dmitry Vyukov
4f9fc95501 prog: fix bugs in hints generation
Add a random hints test and fix bugs it uncovers.
2017-10-23 09:59:39 +02:00
Dmitry Vyukov
a3789f831f syz-fuzzer: fix crash during hints processing
info can be nil on hard executor failures
2017-10-23 09:59:39 +02:00
Dmitry Vyukov
baecf7a955 syz-fuzzer: make -v=1 logging more useful
We currently print programs with -v=1, this leads to too verbose output.
This was used during syzkaller bootstrapping and is not so useful anymore.
Don't print programs with -v=1. Instead give more insignt into what fuzzer
is doing.
2017-10-23 09:59:39 +02:00