Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-04 | Merge release-20200818.0-122-gb6d6a120d (automated) | gVisor bot | |
2020-09-03 | Merge release-20200818.0-120-g76e51c8b9 (automated) | gVisor bot | |
2020-09-03 | Merge release-20200818.0-119-g30c20df76 (automated) | gVisor bot | |
2020-09-03 | Merge release-20200818.0-118-g319ce6736 (automated) | gVisor bot | |
2020-09-03 | Merge release-20200818.0-117-ga8c174c04 (automated) | gVisor bot | |
2020-09-03 | Merge release-20200818.0-115-gb69352245 (automated) | gVisor bot | |
2020-09-02 | Fix Accept to not return error for sockets in accept queue. | Bhasker Hariharan | |
Accept on gVisor will return an error if a socket in the accept queue was closed before Accept() was called. Linux will return the new fd even if the returned socket is already closed by the peer say due to a RST being sent by the peer. This seems to be intentional in linux more details on the github issue. Fixes #3780 PiperOrigin-RevId: 329828404 | |||
2020-09-02 | Merge release-20200818.0-113-g0ca0d8e01 (automated) | gVisor bot | |
2020-09-02 | Merge release-20200818.0-112-g5c6601120 (automated) | gVisor bot | |
2020-09-02 | Merge release-20200818.0-110-gb9b6660dc (automated) | gVisor bot | |
2020-09-02 | Merge release-20200818.0-109-g8ab08cdc0 (automated) | gVisor bot | |
2020-09-02 | Merge release-20200818.0-108-ga0e431038 (automated) | gVisor bot | |
2020-09-02 | Merge release-20200818.0-106-g563f28b7d (automated) | gVisor bot | |
2020-09-02 | Merge release-20200818.0-103-gc67d8ece0 (automated) | gVisor bot | |
2020-09-01 | Merge release-20200818.0-102-g2eaf54dd5 (automated) | gVisor bot | |
2020-09-01 | Merge release-20200818.0-101-g04c284f8c (automated) | gVisor bot | |
2020-09-01 | Merge release-20200818.0-100-g723fb5c11 (automated) | gVisor bot | |
2020-09-01 | Merge release-20200818.0-99-g71589b7f7 (automated) | gVisor bot | |
2020-09-01 | Merge release-20200818.0-98-g0eae08bc9 (automated) | gVisor bot | |
2020-09-01 | Automated rollback of changelist 328350576 | Nayana Bidari | |
PiperOrigin-RevId: 329526153 | |||
2020-09-01 | Merge release-20200818.0-97-gf4be726fd (automated) | gVisor bot | |
2020-09-01 | Merge release-20200818.0-96-g674843849 (automated) | gVisor bot | |
2020-09-01 | Merge release-20200818.0-95-g101c97d6f (automated) | gVisor bot | |
2020-08-31 | Merge release-20200818.0-94-g170560cec (automated) | gVisor bot | |
2020-08-31 | Merge release-20200818.0-93-g6cdfa4fee (automated) | gVisor bot | |
2020-08-31 | Merge release-20200818.0-92-g9d0d82088 (automated) | gVisor bot | |
2020-08-31 | Merge release-20200818.0-89-ga3d189301 (automated) | gVisor bot | |
2020-08-29 | Merge release-20200818.0-88-g3bee863ae (automated) | gVisor bot | |
2020-08-29 | Merge release-20200818.0-87-gf6ddcbefa (automated) | gVisor bot | |
2020-08-28 | Fix kernfs.Dentry reference leak. | Nicolas Lacasse | |
PiperOrigin-RevId: 329036994 | |||
2020-08-28 | Merge release-20200818.0-86-gd3057717d (automated) | gVisor bot | |
2020-08-28 | Merge release-20200818.0-85-gd5787f628 (automated) | gVisor bot | |
2020-08-28 | Merge release-20200818.0-84-gb4820e598 (automated) | gVisor bot | |
2020-08-28 | Merge release-20200818.0-83-gbdd5996a7 (automated) | gVisor bot | |
2020-08-28 | Merge release-20200818.0-80-g7bc9f9b47 (automated) | gVisor bot | |
2020-08-28 | Merge release-20200818.0-79-g8ae0ab722 (automated) | gVisor bot | |
2020-08-28 | Merge release-20200818.0-78-g421e35020 (automated) | gVisor bot | |
2020-08-28 | Merge release-20200818.0-77-g84f04909c (automated) | gVisor bot | |
2020-08-27 | Merge release-20200818.0-75-g57877b420 (automated) | gVisor bot | |
2020-08-27 | Merge release-20200818.0-74-g6f8fb7e0d (automated) | gVisor bot | |
2020-08-27 | Improve type safety for socket options | Ghanan Gowripalan | |
The existing implementation for {G,S}etSockOpt take arguments of an empty interface type which all types (implicitly) implement; any type may be passed to the functions. This change introduces marker interfaces for socket options that may be set or queried which socket option types implement to ensure that invalid types are caught at compile time. Different interfaces are used to allow the compiler to enforce read-only or set-only socket options. Fixes #3714. RELNOTES: n/a PiperOrigin-RevId: 328832161 | |||
2020-08-27 | Merge release-20200818.0-73-g29d528399 (automated) | gVisor bot | |
2020-08-27 | Merge release-20200818.0-71-g26c588f06 (automated) | gVisor bot | |
2020-08-27 | Merge release-20200818.0-69-gdc81eb9c3 (automated) | gVisor bot | |
2020-08-27 | Add function to get error from a tcpip.Endpoint | Ghanan Gowripalan | |
In an upcoming CL, socket option types are made to implement a marker interface with pointer receivers. Since this results in calling methods of an interface with a pointer, we incur an allocation when attempting to get an Endpoint's last error with the current implementation. When calling the method of an interface, the compiler is unable to determine what the interface implementation does with the pointer (since calling a method on an interface uses virtual dispatch at runtime so the compiler does not know what the interface method will do) so it allocates on the heap to be safe incase an implementation continues to hold the pointer after the functioon returns (the reference escapes the scope of the object). In the example below, the compiler does not know what b.foo does with the reference to a it allocates a on the heap as the reference to a may escape the scope of a. ``` var a int var b someInterface b.foo(&a) ``` This change removes the opportunity for that allocation. RELNOTES: n/a PiperOrigin-RevId: 328796559 | |||
2020-08-27 | Merge release-20200818.0-68-g01a35a2f1 (automated) | gVisor bot | |
2020-08-27 | ip6tables: (de)serialize ip6tables structs | Kevin Krakauer | |
More implementation+testing to follow. #3549. PiperOrigin-RevId: 328770160 | |||
2020-08-27 | Merge release-20200818.0-67-g140ffb600 (automated) | gVisor bot | |
2020-08-27 | Merge release-20200818.0-66-g32e7a54f7 (automated) | gVisor bot | |
2020-08-27 | Merge release-20200818.0-65-ga4b1c6f5a (automated) | gVisor bot | |