Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-02-11 | Merge release-20200127.0-127-g0dd9ee0 (automated) | gVisor bot | |
2020-02-10 | Merge pull request #1775 from kevinGC:tcp-matchers-submit | gVisor bot | |
PiperOrigin-RevId: 294340468 | |||
2020-02-10 | Cleanup internal package group. | Adin Scannell | |
PiperOrigin-RevId: 294339229 | |||
2020-02-10 | Merge release-20200127.0-117-g475316e (automated) | gVisor bot | |
2020-02-10 | Refactor getxattr. | Dean Deng | |
Put most of the logic for getxattr in one place for clarity. This simplifies FGetXattr and getXattrFromPath, which are just wrappers for getXattr. PiperOrigin-RevId: 294308332 | |||
2020-02-10 | Merge release-20200127.0-115-g2889ffa (automated) | gVisor bot | |
2020-02-10 | Add context to note. | Adin Scannell | |
PiperOrigin-RevId: 294300040 | |||
2020-02-10 | Merge release-20200127.0-113-ga6f9361 (automated) | gVisor bot | |
2020-02-10 | Add context to comments. | Adin Scannell | |
PiperOrigin-RevId: 294295852 | |||
2020-02-10 | Add contextual comment. | Adin Scannell | |
PiperOrigin-RevId: 294289066 | |||
2020-02-10 | Add contextual note. | Adin Scannell | |
PiperOrigin-RevId: 294285723 | |||
2020-02-10 | Merge release-20200127.0-109-gc9a18b1 (automated) | gVisor bot | |
2020-02-10 | Document MinimumTotalMemoryBytes. | Adin Scannell | |
PiperOrigin-RevId: 294273559 | |||
2020-02-10 | Redirect FIXME to gvisor.dev | Fabricio Voznika | |
PiperOrigin-RevId: 294272755 | |||
2020-02-10 | Merge release-20200127.0-107-g20840bf (automated) | gVisor bot | |
2020-02-10 | Move x86 state definition to its own file. | Brad Burlage | |
PiperOrigin-RevId: 294271541 | |||
2020-02-10 | Update visibility. | Adin Scannell | |
PiperOrigin-RevId: 294265019 | |||
2020-02-10 | Merge release-20200127.0-104-ga03b40c (automated) | gVisor bot | |
2020-02-10 | Merge pull request #1453 from xiaobo55x:cpuid | gVisor bot | |
PiperOrigin-RevId: 294257911 | |||
2020-02-10 | Merge release-20200127.0-102-g223931d (automated) | gVisor bot | |
2020-02-10 | Enable pkg/cpuid support on arm64. | Haibo Xu | |
Fixes #1255 Signed-off-by: Haibo Xu <haibo.xu@arm.com> Change-Id: I8614e6f3ee321c2989567e4e712aa8f28cc9db14 | |||
2020-02-07 | Merge release-20200127.0-99-g17b9f5e (automated) | gVisor bot | |
2020-02-07 | Support listxattr and removexattr syscalls. | Dean Deng | |
Note that these are only implemented for tmpfs, and other impls will still return EOPNOTSUPP. PiperOrigin-RevId: 293899385 | |||
2020-02-07 | Merge release-20200127.0-98-ge1587a2 (automated) | gVisor bot | |
2020-02-07 | Log level, optname, optval and optlen in getsockopt/setsockopt in strace. | Ian Gudger | |
Log 8, 16, and 32 int optvals and dump the memory of other sizes. Updates #1782 PiperOrigin-RevId: 293889388 | |||
2020-02-07 | Address GH comments. | Kevin Krakauer | |
2020-02-07 | Merge release-20200127.0-96-gca30dfa (automated) | gVisor bot | |
2020-02-06 | Send DAD event when DAD resolves immediately | Ghanan Gowripalan | |
Previously, a DAD event would not be sent if DAD was disabled. This allows integrators to do some work when an IPv6 address is bound to a NIC without special logic that checks if DAD is enabled. Without this change, integrators would need to check if a NIC has DAD enabled when an address is auto-generated. If DAD is enabled, it would need to delay the work until the DAD completion event; otherwise, it would need to do the work in the address auto-generated event handler. Test: stack_test.TestDADDisabled PiperOrigin-RevId: 293732914 | |||
2020-02-06 | Merge branch 'master' into tcp-matchers-submit | Kevin Krakauer | |
2020-02-07 | Merge release-20200127.0-94-g3700221 (automated) | gVisor bot | |
2020-02-06 | Auto-generate link-local address as a SLAAC address | Ghanan Gowripalan | |
Auto-generated link-local addresses should have the same lifecycle hooks as global SLAAC addresses. The Stack's NDP dispatcher should be notified when link-local addresses are auto-generated and invalidated. They should also be removed when a NIC is disabled (which will be supported in a later change). Tests: - stack_test.TestNICAutoGenAddrWithOpaque - stack_test.TestNICAutoGenAddr PiperOrigin-RevId: 293706760 | |||
2020-02-07 | Merge release-20200127.0-92-g940d255 (automated) | gVisor bot | |
2020-02-06 | Perform DAD on IPv6 addresses when enabling a NIC | Ghanan Gowripalan | |
Addresses may be added before a NIC is enabled. Make sure DAD is performed on the permanent IPv6 addresses when they get enabled. Test: - stack_test.TestDoDADWhenNICEnabled - stack.TestDisabledRxStatsWhenNICDisabled PiperOrigin-RevId: 293697429 | |||
2020-02-06 | Merge release-20200127.0-90-g736775e (automated) | gVisor bot | |
2020-02-06 | Make gonet consistent both internally and with the net package. | Ian Gudger | |
The types gonet.Conn and gonet.PacketConn were confusingly named as both implemented net.Conn. Further, gonet.Conn was perhaps unexpectedly TCP-specific (net.Conn is not). This change renames them to gonet.TCPConn and gonet.UDPConn. Renames gonet.NewListener to gonet.ListenTCP and adds a new gonet.NewTCPListner function to be consistent with both the gonet.DialXxx and gonet.NewXxxConn functions as well as net.ListenTCP. Updates #1632 PiperOrigin-RevId: 293671303 | |||
2020-02-06 | Merge release-20200127.0-88-g6bd59b4 (automated) | gVisor bot | |
2020-02-06 | Update link address for targets of Neighbor Adverts | Ghanan Gowripalan | |
Get the link address for the target of an NDP Neighbor Advertisement from the NDP Target Link Layer Address option. Tests: - ipv6.TestNeighorAdvertisementWithTargetLinkLayerOption - ipv6.TestNeighorAdvertisementWithInvalidTargetLinkLayerOption PiperOrigin-RevId: 293632609 | |||
2020-02-06 | Merge release-20200127.0-86-g5ff7808 (automated) | gVisor bot | |
2020-02-06 | Move p9.pool to a separate package | Andrei Vagin | |
PiperOrigin-RevId: 293617493 | |||
2020-02-06 | Merge release-20200127.0-85-g1b6a12a (automated) | gVisor bot | |
2020-02-05 | Add notes to relevant tests. | Adin Scannell | |
These were out-of-band notes that can help provide additional context and simplify automated imports. PiperOrigin-RevId: 293525915 | |||
2020-02-06 | Merge release-20200127.0-84-gf3d9560 (automated) | gVisor bot | |
2020-02-05 | recv() on a closed TCP socket returns ENOTCONN | Eyal Soha | |
From RFC 793 s3.9 p58 Event Processing: If RECEIVE Call arrives in CLOSED state and the user has access to such a connection, the return should be "error: connection does not exist" Fixes #1598 PiperOrigin-RevId: 293494287 | |||
2020-02-05 | Merge branch 'master' into tcp-matchers-submit | Kevin Krakauer | |
2020-02-05 | Merge release-20200127.0-82-geea0eee (automated) | gVisor bot | |
2020-02-05 | Disable get/set xattrs until list/remove exist too. | Nicolas Lacasse | |
PiperOrigin-RevId: 293411655 | |||
2020-02-05 | Merge release-20200127.0-80-g665b614 (automated) | gVisor bot | |
2020-02-04 | Support RTM_NEWADDR and RTM_GETLINK in (rt)netlink. | Ting-Yu Wang | |
PiperOrigin-RevId: 293271055 | |||
2020-02-05 | Merge release-20200127.0-79-gb29aeeb (automated) | gVisor bot | |
2020-02-04 | Merge pull request #1683 from kevinGC:ipt-udp-matchers | gVisor bot | |
PiperOrigin-RevId: 293243342 |