aboutsummaryrefslogtreecommitdiffstats
path: root/AUTHORS
Commit message (Collapse)AuthorAgeFilesLines
* AUTHORS, CONTRIBUTORS: add IBM contributorsAndrew Donnellan2025-12-111-0/+1
| | | | | | | Add IBM to the AUTHORS list and myself, Alexander and Alexey to the CONTRIBUTORS list. Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
* dashboard/app/templates: fix incorrect use of *Sort functionJeongjun Park2025-04-291-0/+1
| | | | | | | | | We are using incorrect *Sort functions when using some sortTable functions. Also, this is causing the current syz repro sort to not work. Thereforce we need to modify it to use the correct *Sort functions and remove unnecessary tab spaces to pass the intended text to the *Sort functions.
* dashboard/config/linux/bits: reenable KASAN_INLINE for riscv64Alexandre Ghiti2025-02-131-0/+1
| | | | | | | | | | | KASAN_INLINE was fixed back in early 2023 in the riscv kernel, see merge commit 2667e3673f70 ("Merge patch series "RISC-V kasan rework"). It happens that the riscv configuration was already using KASAN_INLINE so this is simply a cleanup. Since this is my first commit in syzkaller, I also added myself and Rivos in the AUTHORS/CONTRIBUTORS files.
* CONTRIBUTORS: add Piotr Siminski and Elektrobit as copyright holderLukas Bulwahn2023-12-201-0/+1
|
* dashboard/config/linux: add support for Android 6.1Tudor Ambarus2023-05-041-0/+1
| | | | | | | Add support for Android 6.1. The configs are for 'android14-6.1', there's no android-6.1-lts available yet. Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
* CONTRIBUTORS: add myself and update Intel CorporationPengfei Xu2023-03-141-0/+1
| | | | Signed-off-by: Pengfei Xu <pengfei.xu@intel.com>
* CONTRIBUTORS: add myself under Arm LtdAndrew Turner2023-03-011-1/+2
|
* CONTRIBUTORS: add myself and update MellanoxJason Gunthorpe2022-11-101-1/+1
| | | | | NVIDIA has purchased Mellanox, our guidance from Legal is to use "NVIDIA Corporation & Affiliates" to refer to the combined company.
* fix: "mmap_alloc_size"->"cov->mmap_alloc_size"aiQG_2022-02-211-0/+1
|
* dashboard/config/linux: support back-ported KASAN_STACK{_ENABLE} rename in ↵Lee Jones2021-10-201-0/+1
| | | | | | | | | | | | Android KASAN_STACK_ENABLE was renamed to KASAN_STACK in kernel version v5.11. This change was also back-ported to android12-5.10, so we need to provide support for that here too or else `make configs` will complain that KASAN_STACK_ENABLE is not enabled. Signed-off-by: Lee Jones <lee.jones@linaro.org>
* executor: initialize scope in fault_ioc_infoChuck Silvers2021-07-021-0/+1
| | | | | The "scope" field of struct fault_ioc_info is an input to the ioctl, so initialize it to FAULT_SCOPE_LWP to match other fault_ioc_* usage.
* sys/linux: add Landlock syscallsMickaël Salaün2021-03-191-0/+1
| | | | | | | | | Based on Linux next-20210319: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=f00397ee41c79b6155b9b44abd0055b2c0621349 Co-developed-by: Vincent Dagonneau <vincent.dagonneau@ssi.gouv.fr> Signed-off-by: Vincent Dagonneau <vincent.dagonneau@ssi.gouv.fr> Signed-off-by: Mickaël Salaün <mic@linux.microsoft.com>
* docs: fix scp command in instructionsmusamaanjum2021-03-181-0/+1
| | | | | | | | | | | 'scp' command needs 10022 port number specified to establish connection over which vm is listening. If it isn't specified, scp tries to connect over port 22 and connection fails. The other docs write machine as 'root@localhost'. Replace it here to avoid confusion. Collon is necessary at the end for the command to work.
* contributors: add myselfMickaël Salaün2021-03-051-0/+1
| | | | | | | Add myself to contributors given that I didn't update this file since my first contribution: commit 4cc276ec62f6 ("sys/linux: add fork syscall"). Signed-off-by: Mickaël Salaün <mic@linux.microsoft.com>
* pkg/mgrconfig: add a value to the json config fileJohannes Wellhöfer2021-03-041-0/+1
| | | | | | | Add a configureable value for the maximum number of logs stored per crash to the json config format. syz-manager: use the new config value
* contributors: add myselfChristian Brauner2021-03-011-0/+1
| | | | | | | | | Apparently I've never done this before even though I've contributed patches to syzkaller before. 5be3a391ba78 ("sys/linux: add new pidfd_getfd syscall" bc992c0ee464 ("sys/linux: add new arguments to struct clone_args for clone3()" Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
* docs: clarify coverage point in different compliersHeyuan Shi2020-09-151-0/+1
|
* tools/syz-crush: Add feature to run C-programJukka Kaartinen2020-06-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | usage: syz-crush -config=config.json creprog.c Produced output is same as syz-manager produces. New directory called reproduced_with is added that lists all the reproducers that triggered the crash. Example: ~/workdir/crashes $ tree . ├── 2a8fff76c6267ecfeaf3530a602ed48afbc4a151 │   ├── description │   ├── log0 │   ├── log1 │   ├── log2 │   ├── report0 │   ├── report1 │   ├── report2 │   └── reproduced_with │   └── 17a6ed226769660f3e5dad7b22b13466b938e290.c ├── 2b6b921457afe8cebd0a96ca40f8569e6ee95174 │   ├── description │   ├── log0 │   ├── log1 │   ├── log2 │   ├── log3 │   ├── log4 │   ├── log5 │   ├── report0 │   ├── report1 │   ├── report2 │   ├── report3 │   ├── report4 │   ├── report5 │   └── reproduced_with │   ├── 9fb2f5b37bf4428382334e336bbbb201634c7c4c.c │   └── ab27002b46d19cafb1ebb8b040f0a3b0f8f88974.c Signed-off-by: Jukka Kaartinen <jukka.kaartinen@unikie.com>
* sys/linux: add new FUTEX_WAIT_MULTIPLE operationAndré Almeida2020-02-171-0/+1
| | | | | | Create individual file for futex syscall and add description for the new operation FUTEX_WAIT_MULTIPLE. Signed-off-by: André Almeida <andrealmeid@collabora.com>
* tools/create-image.sh: add a new option seekZwb2019-10-151-0/+1
| | | | | | | | | | | | | | | | The usage of current create-image.sh: ``` ./create-image.sh -d=stretch -f=minimal --add-perf The options are in the following: -d, --distribution Set on which debian distribution to create -f, --feature Check what packages to install in the image, options are minimal, full -s, --seek Image size (MB), default 2048 (2G) -p, --add-perf Add perf support with this option enabled The default image size may too small (2G) in some debugging scenarios, so change it to configurable.
* sys/freebsd: Add support for fuzzing FreeBSD/i386Andrew Turner2019-05-291-0/+1
| | | | Add support to fuzz 32 bit FreeBSD system calls.
* executor: change syscall argument type to intptr_tmunjinoo2019-05-071-0/+1
| | | | | The type size of long depends on compiler. Therefore, changing to intptr_t makes it depends on architecture.
* sys/targets: fix arm target compiler prefixCody Holliday2019-04-041-0/+1
| | | sys/targets/targets.go: Change 'arm-linux-gnueabihf-' to 'arm-linux-gnueabi-' in the arm target since target ISA is armv6 and armhf is armv7+.
* AUTHORS: mention Mellanox TechnologiesDmitry Vyukov2019-03-271-0/+1
|
* AUTHORS/CONTRIBUTORS: register myself as an author and a contributorMark Johnston2019-03-071-0/+1
|
* sys/linux: add NDISC packet formats to vnet.txtDan Robertson2019-02-111-0/+1
| | | | Add the basic NDISC (RFC 4861) packet formats to sys/linux/vnet.txt.
* docs/netbsd.md: updated documentation for NetBSDSiddharth M2019-01-141-0/+1
| | | Refactored the document and updated the changes.
* AUTHORS/CONTRIBUTORS: register myself as an author and a contributorKamil Rytarowski2019-01-091-0/+1
|
* vm/qemu: improve debug outputMichael Tüxen2018-11-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | * vm/qemu: Improve debug output. When running in debug mode, the number of VMs is reduced to 1. State this in the debug output. * vm/qemu: Don't start debug output with a capital letter. As requested by Dimitry. * vm: Provide debug message when reduing number of VMs. Apply this change to all affected platforms for consistency. Suggested by Dmitry. * Add myself to AUTHORS/CONTRIBUTORS files. * vm: Fix compilation issues missed in earlier commit. * vm: Use logging to write debug message.
* sys/linux: add additional constants for trace2syzshankarapailoor2018-10-301-0/+1
|
* tools/create-openbsd-gce-ci.sh: image for build machineGreg Steuck2018-09-101-0/+1
| | | | | Mostly derived from Go buildlet generator with blessing from bradfitz@. Update #712
* vm/vmm: support for vmm found on OpenBSD (#678)Anton Lindqvist2018-08-181-0/+1
| | | vm/vmm: add vmm implementation found on OpenBSD
* sys/linux: add rtc descriptionChi Pham2018-07-021-0/+1
|
* AUTHORS: sync with CONTRIBUTORSDmitry Vyukov2018-06-061-0/+2
| | | | Sometimes people forget to add themselves to AUTHORS.
* sys/linux: add i2c generic descriptionDenis Efremov2018-04-191-0/+1
| | | | Basic description of i2c from SIL2LinuxMP workshop.
* sys/linux: add netlink generic team descriptionsHangbin Liu2018-04-061-0/+1
| | | | Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
* Update AUTHORS and CONTRIBUTORS filesMitchell Horne2018-04-051-0/+1
|
* netbsd.md: Changes made in file about missing clarity (#535)Sumukha Pk2018-03-131-0/+1
| | | | | | | | | | * Changes made in the netbsd.md file, syzkaller made easier to install * Name added to list of contributors * Added name to CONTRIBUTORS file * Changes in file regarding format issues
* Makefile: fix git "modified tree" testEd Maste2017-12-211-0/+1
| | | | | | | | Makefile falsely detected a modified git tree when the first ifeq argument was unquoted. Also switch to the $(shell ... style for consistency. As requested, add myself to AUTHORS and CONTRIBUTORS.
* syz-manager: add simple email supportTim Tianyang Chen2017-12-141-0/+1
| | | | | | | | 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>
* sys/freebsd: add POLLINIGNEOFTobias Klauser2017-11-081-0/+1
|
* Added documentation for NetBSD.Utkarsh Anand2017-10-231-0/+1
| | | | - Added a new file that documents the image preparation and running instructions for NetBSD.
* Parse incdir "incdir" in syscall description file to add custom include ↵Yuzhe Han2017-06-261-0/+1
| | | | | | | | | | | | directories. (#180) * Parse #incdir "incdir" in syscall description file to add custom include directories. * add flagLinux * remove '#' in incdir flag * Update sys/README.md AUTHORS CONTRIBUTORS.
* sys: add ETHTOOL ioctl in socket.txtJB Cayrou2017-06-191-0/+1
| | | | | | Add ioctl$sock_SIOCETHTOOL and ETHTOOL structures defined in uapi/linux/ethtool.h http://elixir.free-electrons.com/linux/latest/source/include/uapi/linux/ethtool.h
* syz-hub: fix copy-paste error in httpSummary()Alexander Popov2017-06-141-0/+1
| | | | Also mention Alexander Popov in AUTHORS and CONTRIBUTORS.
* AUTHORS/CONTRIBUTORS: fixupDmitry Vyukov2017-05-221-0/+1
|
* CONTRIBUTORS: fix an emptyDmitry Vyukov2016-09-061-1/+0
| | | | Baozeng Ding is an individual contributor, fix spacing to make it clear.
* Merge branch 'master' of https://github.com/google/syzkaller into for_submitJeremyHuang2016-07-071-0/+2
|
* Update AUTHORS/CONTRIBUTORS.Lorenzo Stoakes2016-03-061-0/+1
|
* sys: support /dev/random and /dev/net/tunBaozeng Ding2016-01-261-1/+1
|