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
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_
6 #define CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_
8 #include "base/files/scoped_file.h"
9 #include "build/build_config.h"
10 #include "content/common/content_export.h"
11 #include "ipc/ipc_channel_proxy.h"
23 class ChildProcessHostDelegate
;
25 // This represents a non-browser process. This can include traditional child
26 // processes like plugins, or an embedder could even use this for long lived
27 // processes that run independent of the browser process.
28 class CONTENT_EXPORT ChildProcessHost
: public IPC::Sender
{
30 ~ChildProcessHost() override
{}
32 // This is a value never returned as the unique id of any child processes of
33 // any kind, including the values returned by RenderProcessHost::GetID().
34 static int kInvalidUniqueID
;
36 // Used to create a child process host. The delegate must outlive this object.
37 static ChildProcessHost
* Create(ChildProcessHostDelegate
* delegate
);
39 // These flags may be passed to GetChildPath in order to alter its behavior,
40 // causing it to return a child path more suited to a specific task.
42 // No special behavior requested.
46 // Indicates that the child execed after forking may be execced from
47 // /proc/self/exe rather than using the "real" app path. This prevents
48 // autoupdate from confusing us if it changes the file out from under us.
49 // You will generally want to set this on Linux, except when there is an
50 // override to the command line (for example, we're forking a renderer in
51 // gdb). In this case, you'd use GetChildPath to get the real executable
52 // file name, and then prepend the GDB command to the command line.
53 CHILD_ALLOW_SELF
= 1 << 0,
54 #elif defined(OS_MACOSX)
56 // Requests that the child run in a process that does not have the
57 // PIE (position-independent executable) bit set, effectively disabling
58 // ASLR. For process types that need to allocate a large contiguous
59 // region, ASLR may not leave a large enough "hole" for the purpose. This
60 // option should be used sparingly, and only when absolutely necessary.
61 // This option is currently incompatible with CHILD_ALLOW_HEAP_EXECUTION.
62 CHILD_NO_PIE
= 1 << 1,
64 // Requests that the child run in a process that does not protect the
65 // heap against execution. Normally, heap pages may be made executable
66 // with mprotect, so this mode should be used sparingly. It is intended
67 // for processes that may host plugins that expect an executable heap
68 // without having to call mprotect. This option is currently incompatible
70 CHILD_ALLOW_HEAP_EXECUTION
= 1 << 2,
74 // Returns the pathname to be used for a child process. If a subprocess
75 // pathname was specified on the command line, that will be used. Otherwise,
76 // the default child process pathname will be returned. On most platforms,
77 // this will be the same as the currently-executing process.
79 // The |flags| argument accepts one or more flags such as CHILD_ALLOW_SELF
80 // and CHILD_ALLOW_HEAP_EXECUTION as defined above. Pass only CHILD_NORMAL
81 // if none of these special behaviors are required.
83 // On failure, returns an empty FilePath.
84 static base::FilePath
GetChildPath(int flags
);
86 // Send the shutdown message to the child process.
87 // Does not check with the delegate's CanShutdown.
88 virtual void ForceShutdown() = 0;
90 // Creates the IPC channel. Returns the channel id if it succeeded, an
91 // empty string otherwise
92 virtual std::string
CreateChannel() = 0;
94 // Returns true iff the IPC channel is currently being opened;
95 virtual bool IsChannelOpening() = 0;
97 // Adds an IPC message filter. A reference will be kept to the filter.
98 virtual void AddFilter(IPC::MessageFilter
* filter
) = 0;
100 #if defined(OS_POSIX)
101 // See IPC::Channel::TakeClientFileDescriptor.
102 virtual base::ScopedFD
TakeClientFileDescriptor() = 0;
106 }; // namespace content
108 #endif // CONTENT_PUBLIC_COMMON_CHILD_PROCESS_HOST_H_