Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-27 | Merge release-20200115.0-110-g0e2f1b7 (automated) | gVisor bot | |
2020-01-27 | Update package locations. | Adin Scannell | |
Because the abi will depend on the core types for marshalling (usermem, context, safemem, safecopy), these need to be flattened from the sentry directory. These packages contain no sentry-specific details. PiperOrigin-RevId: 291811289 | |||
2020-01-27 | Merge release-20200115.0-107-g90ec596 (automated) | gVisor bot | |
2020-01-27 | Fix licenses. | Adin Scannell | |
The preferred Copyright holder is "The gVisor Authors". PiperOrigin-RevId: 291786657 | |||
2020-01-27 | Merge release-20200115.0-105-g13c1f38 (automated) | gVisor bot | |
2020-01-27 | Update bug number for supporting extended attribute namespaces. | Dean Deng | |
PiperOrigin-RevId: 291774815 | |||
2020-01-27 | Standardize on tools directory. | Adin Scannell | |
PiperOrigin-RevId: 291745021 | |||
2020-01-24 | Add support for device special files to VFS2 tmpfs. | Jamie Liu | |
PiperOrigin-RevId: 291471892 | |||
2020-01-24 | Merge release-20200115.0-98-gd135b5a (automated) | gVisor bot | |
2020-01-24 | Add anonymous device number allocation to VFS2. | Jamie Liu | |
Note that in VFS2, filesystem device numbers are per-vfs.FilesystemImpl rather than global, avoiding the need for a "registry" type to handle save/restore. (This is more consistent with Linux anyway: compare e.g. mm/shmem.c:shmem_mount() => fs/super.c:mount_nodev() => (indirectly) set_anon_super().) PiperOrigin-RevId: 291425193 | |||
2020-01-24 | Merge release-20200115.0-96-g390bb9c (automated) | gVisor bot | |
2020-01-24 | Ignore external SIGURG | Michael Pratt | |
Go 1.14+ sends SIGURG to Ms to attempt asynchronous preemption of a G. Since it can't guarantee that a SIGURG is only related to preemption, it continues to forward them to signal.Notify (see runtime.sighandler). We should ignore these signals, as applications shouldn't receive them. Note that this means that truly external SIGURG can no longer be sent to the application (as with SIGCHLD). PiperOrigin-RevId: 291415357 | |||
2020-01-24 | Merge release-20200115.0-94-g3db3173 (automated) | gVisor bot | |
2020-01-23 | Remove epoll entry from map when dropping it. | Nicolas Lacasse | |
This pattern (delete from map when dropping) is also used in epoll.RemoveEntry, and seems like generally a good idea. PiperOrigin-RevId: 291268208 | |||
2020-01-23 | Merge release-20200115.0-93-g3d10edc (automated) | gVisor bot | |
2020-01-23 | Merge pull request #1617 from kevinGC:iptables-write-filter-proto | gVisor bot | |
PiperOrigin-RevId: 291249314 | |||
2020-01-23 | Merge release-20200115.0-81-g7a79715 (automated) | gVisor bot | |
2020-01-23 | Check for EINTR from KVM_CREATE_VM | Michael Pratt | |
The kernel may return EINTR from: kvm_create_vm kvm_init_mmu_notifier mmu_notifier_register do_mmu_notifier_register mm_take_all_locks Go 1.14's preemptive scheduling signals make hitting this much more likely. PiperOrigin-RevId: 291212669 | |||
2020-01-22 | De-duplicate common test functionality for VFS2 filesystems. | Rahat Mahmood | |
PiperOrigin-RevId: 291041576 | |||
2020-01-22 | Merge release-20200115.0-72-g5ab1213 (automated) | gVisor bot | |
2020-01-22 | Move VFS2 handling of FD readability/writability to vfs.FileDescription. | Jamie Liu | |
PiperOrigin-RevId: 291006713 | |||
2020-01-22 | Merge release-20200115.0-71-g1599923 (automated) | gVisor bot | |
2020-01-22 | Merge release-20200115.0-69-g6a59e7f (automated) | gVisor bot | |
2020-01-21 | Rename DowngradableRWMutex to RWmutex. | Ian Gudger | |
Also renames TMutex to Mutex. These custom mutexes aren't any worse than the standard library versions (same code), so having both seems redundant. PiperOrigin-RevId: 290873587 | |||
2020-01-22 | Merge release-20200115.0-65-gf6225b1 (automated) | gVisor bot | |
2020-01-21 | Merge pull request #1609 from xiaobo55x:uname | gVisor bot | |
PiperOrigin-RevId: 290849438 | |||
2020-01-22 | Merge release-20200115.0-58-gb3405a7 (automated) | gVisor bot | |
2020-01-21 | Merge pull request #1275 from lubinszARM:pr_ring0_5 | gVisor bot | |
PiperOrigin-RevId: 290839263 | |||
2020-01-21 | Merge release-20200115.0-56-g7e6fbc6 (automated) | gVisor bot | |
2020-01-21 | Add a new TCP stat for current open connections. | Mithun Iyer | |
Such a stat accounts for all connections that are currently established and not yet transitioned to close state. Also fix bug in double increment of CurrentEstablished stat. Fixes #1579 PiperOrigin-RevId: 290827365 | |||
2020-01-21 | Implement sysfs. | Rahat Mahmood | |
PiperOrigin-RevId: 290822487 | |||
2020-01-21 | Merge release-20200115.0-52-g16694ad (automated) | gVisor bot | |
2020-01-21 | Merge pull request #1274 from lubinszARM:pr_ring0_4 | gVisor bot | |
PiperOrigin-RevId: 290811598 | |||
2020-01-21 | More little fixes. | Kevin Krakauer | |
2020-01-21 | Merge release-20200115.0-50-gd46c397 (automated) | gVisor bot | |
2020-01-21 | Fixing stuff | Kevin Krakauer | |
2020-01-21 | Add line break to /proc/net files | Fabricio Voznika | |
Some files were missing the last line break. PiperOrigin-RevId: 290808898 | |||
2020-01-21 | Merge branch 'master' into iptables-write-filter-proto | Kevin Krakauer | |
2020-01-21 | Merge release-20200115.0-49-g2ba6198 (automated) | gVisor bot | |
2020-01-21 | Add syscalls for lgetxattr, fgetxattr, lsetxattr, and fsetxattr. | Dean Deng | |
Note that these simply will use the same logic as getxattr and setxattr, which is not yet implemented for most filesystems. PiperOrigin-RevId: 290800960 | |||
2020-01-21 | Merge release-20200115.0-48-g5f82f09 (automated) | gVisor bot | |
2020-01-21 | Merge pull request #1558 from kevinGC:iptables-write-input-drop | gVisor bot | |
PiperOrigin-RevId: 290793754 | |||
2020-01-20 | Enable uname syscall support on arm64. | Haibo Xu | |
Signed-off-by: Haibo Xu <haibo.xu@arm.com> Change-Id: I206f38416a64d7c6a8531d8eb305c6ea239616b8 | |||
2020-01-18 | Merge release-20200115.0-34-g1040159 (automated) | gVisor bot | |
2020-01-18 | Include the cgroup name in the superblock options in /proc/self/mountinfo. | Nicolas Lacasse | |
Java 11 parses /proc/self/mountinfo for cgroup information. Java 11.0.4 uses the mount path to determine what cgroups existed, but Java 11.0.5 reads the cgroup names from the superblock options. This CL adds the cgroup name to the superblock options if the filesystem type is "cgroup". Since gVisor doesn't actually support cgroups yet, we just infer the cgroup name from the path. PiperOrigin-RevId: 290434323 | |||
2020-01-18 | Merge release-20200115.0-33-g47d8525 (automated) | gVisor bot | |
2020-01-17 | Filter out received packets with a local source IP address. | Eyal Soha | |
CERT Advisory CA-96.21 III. Solution advises that devices drop packets which could not have correctly arrived on the wire, such as receiving a packet where the source IP address is owned by the device that sent it. Fixes #1507 PiperOrigin-RevId: 290378240 | |||
2020-01-17 | Merge release-20200115.0-32-gf1a5178 (automated) | gVisor bot | |
2020-01-17 | Fix data race in MountNamespace.resolve. | Nicolas Lacasse | |
We must hold fs.renameMu to access Dirent.parent. PiperOrigin-RevId: 290340804 | |||
2020-01-17 | Merge release-20200115.0-29-g80d0f93 (automated) | gVisor bot | |