aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/host/host_linux_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/host: split files into syscalls/featuresDmitry Vyukov2019-11-161-151/+0
| | | | | pkg/host does 2 things: detects supported syscalls and supported features. There is enough code for each for a separate file.
* pkg/host: Add test for kallsymsRenameMapAndrew Donnellan2019-05-081-6/+29
| | | | Signed-off-by: Andrew Donnellan <ajd@linux.ibm.com>
* pkg/host: move kallsyms parsing test to host_linux_test.goAndrey Konovalov2019-04-051-0/+77
|
* pkg/host: explain why syscalls are disabledDmitry Vyukov2018-04-061-36/+1
|
* sys/linux: add syz_init_net_socket syscallDmitry Vyukov2018-03-051-2/+2
| | | | | | | | | | | The new pseudo syscall allows opening sockets that can only be created in init net namespace (BLUETOOTH, NFC, LLC). Use it to open these sockets. Unfortunately this only works with sandbox none at the moment. The problem is that setns of a network namespace requires CAP_SYS_ADMIN in the target namespace, and we've lost all privs in the init namespace during creation of a user namespace.
* pkg/host: add fuchsia supportDmitry Vyukov2017-09-201-0/+86