Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-29 | Merge 599136b2 (automated) | gVisor bot | |
2019-08-29 | Merge f048c8be (automated) | gVisor bot | |
2019-08-29 | Merge 06ae3618 (automated) | gVisor bot | |
2019-08-28 | Merge 24ecce5d (automated) | gVisor bot | |
2019-08-28 | Merge 784f48a7 (automated) | gVisor bot | |
2019-08-28 | Merge 313c767b (automated) | gVisor bot | |
2019-08-27 | Merge f64d9a7d (automated) | gVisor bot | |
2019-08-27 | Merge 9679f989 (automated) | gVisor bot | |
2019-08-27 | Fix comment typo | Michael Pratt | |
PiperOrigin-RevId: 265731735 | |||
2019-08-27 | Merge c3956433 (automated) | gVisor bot | |
2019-08-27 | Fix sendfile(2) error code | Fabricio Voznika | |
When output file is in append mode, sendfile(2) should fail with EINVAL and not EBADF. Closes #721 PiperOrigin-RevId: 265718958 | |||
2019-08-27 | Mount volumes as super user | Fabricio Voznika | |
This used to be the case, but regressed after a recent change. Also made a few fixes around it and clean up the code a bit. Closes #720 PiperOrigin-RevId: 265717496 | |||
2019-08-27 | Merge b4cdaef4 (automated) | gVisor bot | |
2019-08-26 | Merge 1fdefd41 (automated) | gVisor bot | |
2019-08-26 | Merge 7206202b (automated) | gVisor bot | |
2019-08-26 | Merge ac2200b8 (automated) | gVisor bot | |
2019-08-26 | Merge c9c52c02 (automated) | gVisor bot | |
2019-08-24 | Merge a5d01159 (automated) | gVisor bot | |
2019-08-23 | Merge e75a12e8 (automated) | gVisor bot | |
2019-08-23 | Merge f225fdbb (automated) | gVisor bot | |
2019-08-22 | Ensure yield-equivalent with an already-expired timeout. | Adin Scannell | |
PiperOrigin-RevId: 264920977 | |||
2019-08-22 | Merge 52e674b4 (automated) | gVisor bot | |
2019-08-22 | Merge 8d9276ed (automated) | gVisor bot | |
2019-08-22 | Merge 5fd63d1c (automated) | gVisor bot | |
2019-08-21 | Merge 573e6e4b (automated) | gVisor bot | |
2019-08-21 | Use tcpip.Subnet in tcpip.Route | Tamir Duberstein | |
This is the first step in replacing some of the redundant types with the standard library equivalents. PiperOrigin-RevId: 264706552 | |||
2019-08-21 | Merge 7609da6c (automated) | gVisor bot | |
2019-08-21 | Merge 8b7e7a04 (automated) | gVisor bot | |
2019-08-20 | Merge 6c3a2421 (automated) | gVisor bot | |
2019-08-20 | Merge 3d0715b3 (automated) | gVisor bot | |
2019-08-20 | Merge cf8a689b (automated) | gVisor bot | |
2019-08-19 | Merge 67d7864f (automated) | gVisor bot | |
2019-08-19 | Document RWF_HIPRI not implemented for preadv2/pwritev2. | Zach Koopmans | |
Document limitation of no reasonable implementation for RWF_HIPRI flag (High Priority Read/Write for block-based file systems). PiperOrigin-RevId: 264237589 | |||
2019-08-19 | Merge 3ffbdffd (automated) | gVisor bot | |
2019-08-19 | hostinet: fix parsing route netlink message | Jianfeng Tan | |
We wrongly parses output interface as gateway address. The fix is straightforward. Fixes #638 Signed-off-by: Jianfeng Tan <henry.tjf@antfin.com> Change-Id: Ia4bab31f3c238b0278ea57ab22590fad00eaf061 COPYBARA_INTEGRATE_REVIEW=https://github.com/google/gvisor/pull/684 from tanjianfeng:fix-638 b940e810367ad1273519bfa594f4371bdd293e83 PiperOrigin-RevId: 264211336 | |||
2019-08-19 | Read iptables via sockopts. | Kevin Krakauer | |
PiperOrigin-RevId: 264180125 | |||
2019-08-16 | netstack: disconnect an unix socket only if the address family is AF_UNSPEC | Andrei Vagin | |
Linux allows to call connect for ANY and the zero port. PiperOrigin-RevId: 263892534 | |||
2019-08-17 | Merge 2a130335 (automated) | gVisor bot | |
2019-08-16 | procfs: Migrate seqfile implementations. | Ayush Ranjan | |
Migrates all (except 3) seqfile implementations to the vfs.DynamicBytesSource interface. There should not be any change in functionality due to this migration itself. Please note that the following seqfile implementations have not been migrated: - /proc/filesystems in proc/filesystems.go - /proc/[pid]/mountinfo in proc/mounts.go - /proc/[pid]/mounts in proc/mounts.go This is because these depend on pending changes in /pkg/senty/vfs. PiperOrigin-RevId: 263880719 | |||
2019-08-16 | ptrace: detect if a stub process exited unexpectedly | Andrei Vagin | |
PiperOrigin-RevId: 263880577 | |||
2019-08-16 | Merge f7114e0a (automated) | gVisor bot | |
2019-08-16 | Merge d60d99cb (automated) | gVisor bot | |
2019-08-16 | Merge 4bab7d7f (automated) | gVisor bot | |
2019-08-16 | vfs: Remove vfs.DefaultDirectoryFD from embedding vfs.DefaultFD. | Ayush Ranjan | |
This fixes the implementation ambiguity issues when a filesystem implementation embeds vfs.DefaultDirectoryFD to its directory FD along with an internal common fileDescription utility. For similar reasons also removes FileDescriptionDefaultImpl from DynamicBytesFileDescriptionImpl. PiperOrigin-RevId: 263795513 | |||
2019-08-15 | Merge ef045b91 (automated) | gVisor bot | |
2019-08-15 | Merge 816a9211 (automated) | gVisor bot | |
2019-08-14 | Merge d81d94ac (automated) | gVisor bot | |
2019-08-14 | Replace uinptr with int64 when returning lengths | Tamir Duberstein | |
This is in accordance with newer parts of the standard library. PiperOrigin-RevId: 263449916 | |||
2019-08-14 | Merge 69d1414a (automated) | gVisor bot | |
2019-08-14 | Merge 570fb1db (automated) | gVisor bot | |