Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: content/public/common/zygote_fork_delegate_linux.h

Issue 1748973003: Revert of Bootstrap Mojo IPC independent of Chrome IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/zygote/zygote_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_COMMON_ZYGOTE_FORK_DELEGATE_LINUX_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_ZYGOTE_FORK_DELEGATE_LINUX_H_
6 #define CONTENT_PUBLIC_COMMON_ZYGOTE_FORK_DELEGATE_LINUX_H_ 6 #define CONTENT_PUBLIC_COMMON_ZYGOTE_FORK_DELEGATE_LINUX_H_
7 7
8 #include <unistd.h> 8 #include <unistd.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 // Indexes of FDs in the vector passed to Fork(). 50 // Indexes of FDs in the vector passed to Fork().
51 enum { 51 enum {
52 // Used to pass in the descriptor for talking to the Browser 52 // Used to pass in the descriptor for talking to the Browser
53 kBrowserFDIndex, 53 kBrowserFDIndex,
54 // The PID oracle is used in the protocol for discovering the 54 // The PID oracle is used in the protocol for discovering the
55 // child process's real PID from within the SUID sandbox. 55 // child process's real PID from within the SUID sandbox.
56 // The child process is required to write to the socket after 56 // The child process is required to write to the socket after
57 // successfully forking. 57 // successfully forking.
58 kPIDOracleFDIndex, 58 kPIDOracleFDIndex,
59 kMojoParentFDIndex,
60 kNumPassedFDs // Number of FDs in the vector passed to Fork(). 59 kNumPassedFDs // Number of FDs in the vector passed to Fork().
61 }; 60 };
62 61
63 // Delegate forks, returning a -1 on failure. Outside the 62 // Delegate forks, returning a -1 on failure. Outside the
64 // suid sandbox, Fork() returns the Linux process ID. 63 // suid sandbox, Fork() returns the Linux process ID.
65 // This method is not aware of any potential pid namespaces, so it'll 64 // This method is not aware of any potential pid namespaces, so it'll
66 // return a raw pid just like fork() would. 65 // return a raw pid just like fork() would.
67 // Delegate is responsible for communicating the channel ID to the 66 // Delegate is responsible for communicating the channel ID to the
68 // newly created child process. 67 // newly created child process.
69 virtual pid_t Fork(const std::string& process_type, 68 virtual pid_t Fork(const std::string& process_type,
70 const std::vector<int>& fds, 69 const std::vector<int>& fds,
71 const std::string& channel_id) = 0; 70 const std::string& channel_id) = 0;
72 71
73 // The fork delegate must also assume the role of waiting for its children 72 // The fork delegate must also assume the role of waiting for its children
74 // since the caller will not be their parents and cannot do it. |pid| here 73 // since the caller will not be their parents and cannot do it. |pid| here
75 // should be a pid that has been returned by the Fork() method. i.e. This 74 // should be a pid that has been returned by the Fork() method. i.e. This
76 // method is completely unaware of eventual PID namespaces due to sandboxing. 75 // method is completely unaware of eventual PID namespaces due to sandboxing.
77 // |known_dead| indicates that the process is already dead and that a 76 // |known_dead| indicates that the process is already dead and that a
78 // blocking wait() should be performed. In this case, GetTerminationStatus() 77 // blocking wait() should be performed. In this case, GetTerminationStatus()
79 // will send a SIGKILL to the target process first. 78 // will send a SIGKILL to the target process first.
80 virtual bool GetTerminationStatus(pid_t pid, bool known_dead, 79 virtual bool GetTerminationStatus(pid_t pid, bool known_dead,
81 base::TerminationStatus* status, 80 base::TerminationStatus* status,
82 int* exit_code) = 0; 81 int* exit_code) = 0;
83 }; 82 };
84 83
85 } // namespace content 84 } // namespace content
86 85
87 #endif // CONTENT_PUBLIC_COMMON_ZYGOTE_FORK_DELEGATE_LINUX_H_ 86 #endif // CONTENT_PUBLIC_COMMON_ZYGOTE_FORK_DELEGATE_LINUX_H_
OLDNEW
« no previous file with comments | « content/public/common/content_switches.cc ('k') | content/zygote/zygote_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698