| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | sys/linux: move {i,fa}notify into own files | Dmitry Vyukov | 2019-02-07 | 1 | -54/+0 |
| | | |||||
| * | all: detect extra coverage support | Andrey Konovalov | 2019-01-16 | 1 | -0/+1 |
| | | | | | Based on whether the kernel supports KCOV_REMOTE_ENABLE ioctl. | ||||
| * | sys/linux: prohibit SNAPSHOT_FREEZE | Dmitry Vyukov | 2019-01-06 | 1 | -0/+2 |
| | | | | | SNAPSHOT_FREEZE freezes all processes and leaves the machine dead. | ||||
| * | sys: consistently mark all paddings as const[0] | Dmitry Vyukov | 2018-12-10 | 1 | -0/+1 |
| | | |||||
| * | removing trace2syz constants and moving rand_addr as the first ipv4_addr option | Shankara Pailoor | 2018-11-30 | 1 | -42/+0 |
| | | |||||
| * | removing trace2syz constants | Shankara Pailoor | 2018-11-24 | 1 | -64/+0 |
| | | |||||
| * | sys/linux: move prctl to a separate file | Dmitry Vyukov | 2018-11-17 | 1 | -68/+0 |
| | | |||||
| * | sys/linux: fix up descriptions | Dmitry Vyukov | 2018-10-30 | 1 | -2/+2 |
| | | | | | | | | 1. Extract consts on the latest linux tree. 2. Don't manually define O_TMPFILE/O_ACCMODE/_LINUX_CAPABILITY_VERSION_N, they are defined in kernel headers. 3. Don't use CLOCK_SGI_CYCLE as clock id, it's not implemented. | ||||
| * | sys/linux: add additional constants for trace2syz | shankarapailoor | 2018-10-30 | 1 | -2/+165 |
| | | |||||
| * | sys/syz-extract: support missing arch headers | Dmitry Vyukov | 2018-10-28 | 1 | -6/+6 |
| | | | | | | | | | The latest Linux kernel misses some arch-specific headers on some archs: asm/a.out.h asm/prctl.h asm/mce.h Support that. | ||||
| * | sys/linux: add MFD_HUGETLB | Tobias Klauser | 2018-09-19 | 1 | -0/+1 |
| | | |||||
| * | sys/linux: add MCL_ONFAULT | Tobias Klauser | 2018-09-19 | 1 | -0/+1 |
| | | |||||
| * | sys/linux: add ext4 ioctls and overlayfs | Dmitry Vyukov | 2018-08-29 | 1 | -11/+0 |
| | | | | | Update #533 | ||||
| * | sys/linux: add few assorted new flags/ioctls | Dmitry Vyukov | 2018-08-26 | 1 | -0/+2 |
| | | |||||
| * | sys/linux: add rseq syscall | Dmitry Vyukov | 2018-06-12 | 1 | -0/+4 |
| | | |||||
| * | sys/linux: add more fs ioctls | Dmitry Vyukov | 2018-06-08 | 1 | -0/+14 |
| | | |||||
| * | sys/linux: move aio descriptions into separate file | Dmitry Vyukov | 2018-06-08 | 1 | -13/+0 |
| | | |||||
| * | sys/linux: add MAP_FIXED_NOREPLACE const | Dmitry Vyukov | 2018-05-18 | 1 | -0/+1 |
| | | |||||
| * | sys/linux: a bunch of assorted improvements | Dmitry Vyukov | 2018-04-27 | 1 | -0/+1 |
| | | |||||
| * | sys/linux: extend namespace desciptions | Dmitry Vyukov | 2018-04-27 | 1 | -2/+0 |
| | | | | | | Slightly extend namespace descriptions and move them to a separate file. | ||||
| * | syz-fuzzer: clean up after probing coverage | Dmitry Vyukov | 2018-04-27 | 1 | -0/+1 |
| | | | | | We left mmap memory and comparison tracing enabled. | ||||
| * | sys/linux: test various binfmt's in execve | Dmitry Vyukov | 2018-04-02 | 1 | -2/+0 |
| | | |||||
| * | sys/linux: add support for mounting filesystem images | Dmitry Vyukov | 2018-03-30 | 1 | -29/+0 |
| | | |||||
| * | sys/linux: use size attributes on structs | Dmitry Vyukov | 2018-03-05 | 1 | -0/+1 |
| | | | | | | | | | | | | 1. Add size attribte on sockaddr. 2. Remove sockaddr's that are larger than 16 bytes from sockaddr. 3. Add size attribute on sockaddr_storage which wasn't actually 128 bytes. 4. Add size attribute to ifreq. 5. Fix ifmap field types as uncovered by the size attributes. 6. Fix sockaddr_storage_tcp from struct to union which is should be. 7. Make sockaddr_un_file fixed size as it should be. 8. Fix some explicit paddings that were only correct for 64 bits. | ||||
| * | sys/linux: a bunch of assorted improvements and fixes | Dmitry Vyukov | 2018-03-05 | 1 | -19/+0 |
| | | |||||
| * | sys/linux: few assorted additions | Dmitry Vyukov | 2018-02-26 | 1 | -1/+4 |
| | | |||||
| * | sys/linux: improve netfilter descriptions | Dmitry Vyukov | 2018-02-09 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | Put the underflow entry at the end. Entries must end on an unconditional, non-goto entry, otherwise fallthrough from the last entry is invalid. Add arp tables support. Split unspec matches/targets to unspec and inet. Reset ipv6 and arp tables in executor. Fix number of counters in tables. Plus a bunch of assorted fixes for matches/targets. | ||||
| * | sys/linux: describe some new 4.16 features | Dmitry Vyukov | 2018-02-01 | 1 | -0/+2 |
| | | |||||
| * | sys/syz-extract: save unsupported consts to the const files | Dmitry Vyukov | 2018-02-01 | 1 | -0/+11 |
| | | | | | | | | | | | | We currently print unsupported consts to console during make extract. But this is not very useful as there are too many output now. This also does not allow to understand what's unsupported in newly checked-in descriptions, or what's unsupported in all current decriptions. Save unsupported consts to the const files instead. This solves all of the above problems. | ||||
| * | sys/linux: assorted improvements | Dmitry Vyukov | 2017-12-29 | 1 | -0/+3 |
| | | | | | Mostly extensions of API in 4.15. | ||||
| * | sys/linux: fix some copy-paste errors | Dmitry Vyukov | 2017-12-28 | 1 | -0/+3 |
| | | |||||
| * | sys/linux: fix splice signature | Dmitry Vyukov | 2017-12-27 | 1 | -0/+1 |
| | | | | | ...was wrong all that time | ||||
| * | sys/linux: assorted improvements to descriptions | Dmitry Vyukov | 2017-11-27 | 1 | -0/+15 |
| | | |||||
| * | sys/linux: remove get_kernel_syms, add quotactl syscall | Dmitry Vyukov | 2017-11-20 | 1 | -1/+2 |
| | | | | | | | get_kernel_syms does not seem to be present upstream. Describe an old quotactl syscall. Also fix umount/umount2 names in kallsyms. | ||||
| * | sys/linux: fix fcntl signature | Dmitry Vyukov | 2017-10-16 | 1 | -0/+1 |
| | | |||||
| * | sys: move linux descriptions to sys/linux | Dmitry Vyukov | 2017-09-15 | 1 | -0/+845 |
