| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
Add NFC netlink descriptions and improve socket descriptions a bit.
|
| |
|
|
| |
It requires SOCK_SEQPACKET not SOCK_STREAM.
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
| |
open is not present on arm64, only openat.
accept is not present on 386, only accept4.
Duplicate all open/accept specializations with
corresponding openat/accept4 specializations
to enable testing on 386/arm64.
|
| |
|
|
| |
Contol len is in bytes, not array elements.
|
| |
|