Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-13 | Merge 99bf75a6 (automated) | gVisor bot | |
2019-08-13 | Merge 8d97b22a (automated) | gVisor bot | |
2019-08-13 | Merge 691c2f81 (automated) | gVisor bot | |
2019-08-12 | Merge eac690e3 (automated) | gVisor bot | |
2019-08-10 | Merge af90e686 (automated) | gVisor bot | |
2019-08-09 | Merge f2762e8c (automated) | gVisor bot | |
2019-08-09 | Merge 69030811 (automated) | gVisor bot | |
2019-08-08 | Merge 7bfad8eb (automated) | gVisor bot | |
2019-08-08 | Merge 13a98df4 (automated) | gVisor bot | |
2019-08-08 | netstack: Don't start endpoint goroutines too soon on restore. | Rahat Mahmood | |
Endpoint protocol goroutines were previously started as part of loading the endpoint. This is potentially too soon, as resources used by these goroutine may not have been loaded. Protocol goroutines may perform meaningful work as soon as they're started (ex: incoming connect) which can cause them to indirectly access resources that haven't been loaded yet. This CL defers resuming all protocol goroutines until the end of restore. PiperOrigin-RevId: 262409429 | |||
2019-08-08 | Merge 2e45d169 (automated) | gVisor bot | |
2019-08-08 | Merge 08cd5e1d (automated) | gVisor bot | |
2019-08-08 | Merge 40d6d8c1 (automated) | gVisor bot | |
2019-08-07 | Merge 1c9781a4 (automated) | gVisor bot | |
2019-08-07 | Merge 79cc4397 (automated) | gVisor bot | |
2019-08-07 | Merge e70eafc9 (automated) | gVisor bot | |
2019-08-06 | Merge dfbc0b0a (automated) | gVisor bot | |
2019-08-06 | Merge 704f9610 (automated) | gVisor bot | |
2019-08-05 | Merge 23e74043 (automated) | gVisor bot | |
2019-08-02 | Merge 960a5e55 (automated) | gVisor bot | |
2019-08-02 | Merge b6a5b950 (automated) | gVisor bot | |
2019-08-02 | Job control: controlling TTYs and foreground process groups. | Kevin Krakauer | |
(Don't worry, this is mostly tests.) Implemented the following ioctls: - TIOCSCTTY - set controlling TTY - TIOCNOTTY - remove controlling tty, maybe signal some other processes - TIOCGPGRP - get foreground process group. Also enables tcgetpgrp(). - TIOCSPGRP - set foreground process group. Also enabled tcsetpgrp(). Next steps are to actually turn terminal-generated control characters (e.g. C^c) into signals to the proper process groups, and to send SIGTTOU and SIGTTIN when appropriate. PiperOrigin-RevId: 261387276 | |||
2019-08-02 | Merge b461be88 (automated) | gVisor bot | |
2019-08-02 | Merge 2906dffc (automated) | gVisor bot | |
2019-08-02 | Merge aaaefdf9 (automated) | gVisor bot | |
2019-08-02 | Remove kernel.mounts. | Nicolas Lacasse | |
We can get the mount namespace from the CreateProcessArgs in all cases where we need it. This also gets rid of kernel.Destroy method, since the only thing it was doing was DecRefing the mounts. Removing the need to call kernel.SetRootMountNamespace also allowed for some more simplifications in the container fs setup code. PiperOrigin-RevId: 261357060 | |||
2019-08-02 | Merge 3eff0531 (automated) | gVisor bot | |
2019-08-01 | Merge bad43772 (automated) | gVisor bot | |
2019-08-01 | Merge f2b25aea (automated) | gVisor bot | |
2019-08-01 | Merge 0a246fab (automated) | gVisor bot | |
2019-07-31 | Merge cf2b2d97 (automated) | gVisor bot | |
2019-07-31 | Initialize kernel.unimplementedSyscallEmitter with a sync.Once. | Nicolas Lacasse | |
This is initialized lazily on the first unimplemented syscall. Without the sync.Once, this is racy. PiperOrigin-RevId: 260971758 | |||
2019-07-30 | Merge 7369c63e (automated) | gVisor bot | |
2019-07-30 | Merge 93b0917d (automated) | gVisor bot | |
2019-07-30 | Merge e511c0e0 (automated) | gVisor bot | |
2019-07-30 | Add feature to launch Sentry from an open host FD. | Zach Koopmans | |
Adds feature to launch from an open host FD instead of a binary_path. The FD should point to a valid executable and most likely be statically compiled. If the executable is not statically compiled, the loader will search along the interpreter paths, which must be able to be resolved in the Sandbox's file system or start will fail. PiperOrigin-RevId: 260756825 | |||
2019-07-30 | Merge 1decf764 (automated) | gVisor bot | |
2019-07-30 | Merge 8da9f8a1 (automated) | gVisor bot | |
2019-07-30 | Merge ddf25e33 (automated) | gVisor bot | |
2019-07-30 | Merge b765eb45 (automated) | gVisor bot | |
2019-07-30 | Merge 5fdb945a (automated) | gVisor bot | |
2019-07-29 | Rate limit the unimplemented syscall event handler. | Nicolas Lacasse | |
This introduces two new types of Emitters: 1. MultiEmitter, which will forward events to other registered Emitters, and 2. RateLimitedEmitter, which will forward events to a wrapped Emitter, subject to given rate limits. The methods in the eventchannel package itself act like a multiEmitter, but is not actually an Emitter. Now we have a DefaultEmitter, and the methods in eventchannel simply forward calls to the DefaultEmitter. The unimplemented syscall handler now uses a RateLimetedEmitter that wraps the DefaultEmitter. PiperOrigin-RevId: 260612770 | |||
2019-07-29 | Merge f0507e1d (automated) | gVisor bot | |
2019-07-29 | Merge 8e8b6096 (automated) | gVisor bot | |
2019-07-29 | Merge 09be87bb (automated) | gVisor bot | |
2019-07-27 | Merge 4183b902 (automated) | gVisor bot | |
2019-07-26 | Merge 27626926 (automated) | gVisor bot | |
2019-07-26 | Merge b5012237 (automated) | gVisor bot | |
2019-07-26 | Merge pull request #452 from zhangningdlut:chris_test_pidns | gVisor bot | |
PiperOrigin-RevId: 260220279 | |||
2019-07-25 | Merge 7052d21d (automated) | gVisor bot | |