aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/init.go
Commit message (Collapse)AuthorAgeFilesLines
* sys/linux: add AF_NETLINK/NETLINK_CRYPTO descriptionsDmitry Vyukov2018-01-091-0/+1
|
* sys/linux: netlink xfrm supportDmitry Vyukov2017-12-311-4/+6
|
* sys/linux: improve hash generation for KEYCTL_DH_COMPUTEDmitry Vyukov2017-11-271-3/+4
| | | | | | | KEYCTL_DH_COMPUTE used the old fixed list of algorithm names. Use the new code for algorithm generation. + it needs only SHASH algs, but we passed in all alg names. Pass only SHASH algs.
* sys/linux: resolve TODO re argument truncationDmitry Vyukov2017-11-271-4/+2
|
* sys/linux: improve AF_ALG alg name generationDmitry Vyukov2017-11-241-3/+5
| | | | | | | | | There is effectively infinite number of possible crypto algorithm names due to templates. Plus there is tricky relation between algorithms and algorithm type names. This change adds custom mutator for sockaddr_alg struct to improve variance in generated algorithms.
* all: initial support for fuchsiaDmitry Vyukov2017-09-201-120/+41
| | | | | | Nothing works, but builds. Update #191
* syz-manager, syz-fuzzer, executor: ensure that binaries are consistentDmitry Vyukov2017-09-151-1/+2
| | | | | | | Check that manager/fuzzer/executor are build on the same git revision, use the same syscall descriptions and the same target arch. Update #336
* prog: remove special knowledge about "mmap" syscallDmitry Vyukov2017-09-151-0/+1
| | | | Abstract "mmap" away as it can be called differently on another OS.
* sys: compile all supported targets into the packageDmitry Vyukov2017-09-151-47/+136
| | | | | Currently we compile in only GOOS/GOARCH target. Compile in all targets so that they can be selected at runtime.
* sys/linux: rename package from sys to linuxDmitry Vyukov2017-09-151-1/+1
|
* sys: move linux descriptions to sys/linuxDmitry Vyukov2017-09-151-0/+272