1 // Copyright 2014 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 // http://code.google.com/p/chromium/wiki/LinuxSandboxIPC
7 #ifndef CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_
8 #define CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_
12 #include "base/files/scoped_file.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/pickle.h"
15 #include "content/child/blink_platform_impl.h"
16 #include "skia/ext/skia_utils_base.h"
20 class SandboxIPCProcess
{
22 // lifeline_fd: this is the read end of a pipe which the browser process
23 // holds the other end of. If the browser process dies, its descriptors are
24 // closed and we will noticed an EOF on the pipe. That's our signal to exit.
25 // browser_socket: the browser's end of the sandbox IPC socketpair. From the
26 // point of view of the renderer, it's talking to the browser but this
27 // object actually services the requests.
28 // sandbox_cmd: the path of the sandbox executable.
29 SandboxIPCProcess(int lifeline_fd
,
31 std::string sandbox_cmd
);
37 void EnsureWebKitInitialized();
39 int FindOrAddPath(const SkString
& path
);
41 void HandleRequestFromRenderer(int fd
);
43 void HandleFontMatchRequest(int fd
,
46 const std::vector
<base::ScopedFD
*>& fds
);
48 void HandleFontOpenRequest(int fd
,
51 const std::vector
<base::ScopedFD
*>& fds
);
53 void HandleGetFontFamilyForChar(int fd
,
56 const std::vector
<base::ScopedFD
*>& fds
);
58 void HandleGetStyleForStrike(int fd
,
61 const std::vector
<base::ScopedFD
*>& fds
);
63 void HandleLocaltime(int fd
,
66 const std::vector
<base::ScopedFD
*>& fds
);
68 void HandleGetChildWithInode(int fd
,
71 const std::vector
<base::ScopedFD
*>& fds
);
73 void HandleMakeSharedMemorySegment(int fd
,
76 const std::vector
<base::ScopedFD
*>& fds
);
78 void HandleMatchWithFallback(int fd
,
81 const std::vector
<base::ScopedFD
*>& fds
);
83 void SendRendererReply(const std::vector
<base::ScopedFD
*>& fds
,
87 const int lifeline_fd_
;
88 const int browser_socket_
;
89 std::vector
<std::string
> sandbox_cmd_
;
90 scoped_ptr
<BlinkPlatformImpl
> webkit_platform_support_
;
91 SkTDArray
<SkString
*> paths_
;
93 DISALLOW_COPY_AND_ASSIGN(SandboxIPCProcess
);
96 } // namespace content
98 #endif // CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_H_