Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-13 | Merge release-20191213.0-113-gdebd213 (automated) | gVisor bot | |
2020-01-13 | Allow dual stack sockets to operate on AF_INET | Tamir Duberstein | |
Fixes #1490 Fixes #1495 PiperOrigin-RevId: 289523250 | |||
2020-01-13 | Merge release-20191213.0-111-gb30cfb1 (automated) | gVisor bot | |
2020-01-13 | Merge pull request #1528 from kevinGC:iptables-write | gVisor bot | |
PiperOrigin-RevId: 289479774 | |||
2020-01-10 | Merge release-20191213.0-96-g27500d5 (automated) | gVisor bot | |
2020-01-09 | New sync package. | Ian Gudger | |
* Rename syncutil to sync. * Add aliases to sync types. * Replace existing usage of standard library sync package. This will make it easier to swap out synchronization primitives. For example, this will allow us to use primitives from github.com/sasha-s/go-deadlock to check for lock ordering violations. Updates #1472 PiperOrigin-RevId: 289033387 | |||
2020-01-09 | Merge release-20191213.0-88-gee3158f (automated) | gVisor bot | |
2020-01-09 | Merge pull request #1423 from xiaobo55x:strace | gVisor bot | |
PiperOrigin-RevId: 288965915 | |||
2020-01-09 | Merge release-20191213.0-86-g8643933 (automated) | gVisor bot | |
2020-01-09 | Change BindToDeviceOption to store NICID | Eyal Soha | |
This makes it possible to call the sockopt from go even when the NIC has no name. PiperOrigin-RevId: 288955236 | |||
2020-01-09 | Merge release-20191213.0-84-g290908f (automated) | gVisor bot | |
2020-01-09 | Merge release-20191213.0-82-gfbb2c00 (automated) | gVisor bot | |
2020-01-08 | More GH comments. | Kevin Krakauer | |
2020-01-08 | Return correct length with MSG_TRUNC for unix sockets. | Ian Lewis | |
This change calls a new Truncate method on the EndpointReader in RecvMsg for both netlink and unix sockets. This allows readers such as sockets to peek at the length of data without actually reading it to a buffer. Fixes #993 #1240 PiperOrigin-RevId: 288800167 | |||
2020-01-08 | Define sizes for extent headers and entries separately to improve clarity. | Dean Deng | |
PiperOrigin-RevId: 288799694 | |||
2020-01-09 | Merge release-20191213.0-80-gb3ae8a6 (automated) | gVisor bot | |
2020-01-08 | Addressed GH comments | Kevin Krakauer | |
2020-01-08 | Fix slice bounds out of range panic in parsing socket control message. | Ting-Yu Wang | |
Panic found by syzakller. PiperOrigin-RevId: 288799046 | |||
2020-01-08 | Merge release-20191213.0-78-gd530df2 (automated) | gVisor bot | |
2020-01-08 | Introduce tcpip.SockOptBool | Tamir Duberstein | |
...and port V6OnlyOption to it. PiperOrigin-RevId: 288789451 | |||
2020-01-08 | Merge release-20191213.0-76-ga271bcc (automated) | gVisor bot | |
2020-01-08 | Rename tcpip.SockOpt{,Int} | Tamir Duberstein | |
PiperOrigin-RevId: 288772878 | |||
2020-01-08 | Merge release-20191213.0-74-gbb96f52 (automated) | gVisor bot | |
2020-01-08 | Merge pull request #1273 from lubinszARM:pr_ring_3 | gVisor bot | |
PiperOrigin-RevId: 288743614 | |||
2020-01-08 | Comment cleanup. | Kevin Krakauer | |
2020-01-08 | Minor fixes to comments and logging | Kevin Krakauer | |
2020-01-08 | Make /proc/[pid] offset start at TGID_OFFSET | Fabricio Voznika | |
Updates #1195 PiperOrigin-RevId: 288725745 | |||
2020-01-08 | Write simple ACCEPT rules to the filter table. | Kevin Krakauer | |
This gets us closer to passing the iptables tests and opens up iptables so it can be worked on by multiple people. A few restrictions are enforced for security (i.e. we don't want to let users write a bunch of iptables rules and then just not enforce them): - Only the filter table is writable. - Only ACCEPT rules with no matching criteria can be added. | |||
2020-01-08 | Merge release-20191213.0-69-ga53ac73 (automated) | gVisor bot | |
2020-01-07 | fs/splice: don't report a partialResult error if there is no data loss | Andrei Vagin | |
PiperOrigin-RevId: 288642552 | |||
2020-01-07 | Merge release-20191213.0-63-g17c1824 (automated) | gVisor bot | |
2020-01-06 | platform/syscall: use syscall + int3 to execute a system call in a stub process | Andrei Vagin | |
Right now, we need to call ptrace(PTRACE_SYSCALL) and wait() twice to execute one system call in a stub process. With these changes, we will need to call ptrace + wait only once. In addition, this allows to workaround the kernel bug when a stub process doesn't stop on syscall-exit-stop and starts executing the next system call. Reported-by: syzbot+37143cafa8dc3b5008ee@syzkaller.appspotmail.com PiperOrigin-RevId: 288393029 | |||
2020-01-06 | Merge release-20191213.0-62-g51f3ab8 (automated) | gVisor bot | |
2020-01-06 | Convert memfs into proto-tmpfs. | Nicolas Lacasse | |
- Renamed memfs to tmpfs. - Copied fileRangeSet bits from fs/fsutil/ to fsimpl/tmpfs/ - Changed tmpfs to be backed by filemem instead of byte slice. - regularFileReadWriter uses a sync.Pool, similar to gofer client. PiperOrigin-RevId: 288356380 | |||
2020-01-06 | Merge release-20191213.0-61-g354a15a (automated) | gVisor bot | |
2020-01-06 | Implement rseq(2) | Michael Pratt | |
PiperOrigin-RevId: 288342928 | |||
2020-01-06 | Merge release-20191213.0-60-g6410387 (automated) | gVisor bot | |
2020-01-06 | Cleanup Shm reference handling | Michael Pratt | |
Currently, shm.Registry.FindByID will return Shm instances without taking an additional reference on them, making it possible for them to disappear. More explicitly handle references. All callers hold a reference for the duration that they hold the instance. Registry.shms may transitively hold Shms with no references, so it must TryIncRef to determine if they are still valid. PiperOrigin-RevId: 288314529 | |||
2020-01-04 | Merge release-20191213.0-58-gbf53d32 (automated) | gVisor bot | |
2020-01-03 | Remove FIXME comments to close old bug. | Zach Koopmans | |
PiperOrigin-RevId: 288075400 | |||
2019-12-30 | Merge release-20191213.0-56-g1f384ac (automated) | gVisor bot | |
2019-12-30 | Add VFS2 support for device special files. | Jamie Liu | |
- Add FileDescriptionOptions.UseDentryMetadata, which reduces the amount of boilerplate needed for device FDs and the like between filesystems. - Switch back to having FileDescription.Init() take references on the Mount and Dentry; otherwise managing refcounts around failed calls to OpenDeviceSpecialFile() / Device.Open() is tricky. PiperOrigin-RevId: 287575574 | |||
2019-12-27 | Merge release-20191213.0-55-g796f53c (automated) | gVisor bot | |
2019-12-27 | Add VFS2 support for /proc/filesystems. | Jamie Liu | |
Updates #1195 PiperOrigin-RevId: 287269106 | |||
2019-12-26 | Merge release-20191213.0-54-g3c125eb (automated) | gVisor bot | |
2019-12-26 | Initial procfs implementation in VFSv2 | Fabricio Voznika | |
Updates #1195 PiperOrigin-RevId: 287227722 | |||
2019-12-26 | Merge release-20191213.0-53-g5b9034c (automated) | gVisor bot | |
2019-12-26 | Merge pull request #1461 from xiaobo55x:ptrace_sysemu | gVisor bot | |
PiperOrigin-RevId: 287225250 | |||
2019-12-26 | Merge release-20191213.0-51-g7b5a59d (automated) | gVisor bot | |
2019-12-26 | Merge pull request #1460 from lubinszARM:pr_clean_code1 | gVisor bot | |
PiperOrigin-RevId: 287221280 |