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.
8 #include <sys/socket.h>
9 #include <sys/syscall.h>
15 #include "base/files/scoped_file.h"
16 #include "base/logging.h"
17 #include "base/memory/scoped_vector.h"
18 #include "base/posix/eintr_wrapper.h"
19 #include "base/posix/unix_domain_socket_linux.h"
20 #include "base/process/process_handle.h"
21 #include "sandbox/linux/services/syscall_wrappers.h"
22 #include "sandbox/linux/tests/unit_tests.h"
24 // Additional tests for base's UnixDomainSocket to make sure it behaves
25 // correctly in the presence of sandboxing functionality (e.g., receiving
26 // PIDs across namespaces).
32 const char kHello
[] = "hello";
34 // If the calling process isn't root, then try using unshare(CLONE_NEWUSER)
37 // If we're already root, then allow test to proceed.
41 // Otherwise hope the kernel supports unprivileged namespaces.
42 if (unshare(CLONE_NEWUSER
) == 0)
45 printf("Permission to use CLONE_NEWPID missing; skipping test.\n");
46 UnitTests::IgnoreThisTest();
49 void WaitForExit(pid_t pid
) {
51 CHECK_EQ(pid
, HANDLE_EINTR(waitpid(pid
, &status
, 0)));
52 CHECK(WIFEXITED(status
));
53 CHECK_EQ(0, WEXITSTATUS(status
));
56 base::ProcessId
GetParentProcessId(base::ProcessId pid
) {
57 // base::GetParentProcessId() is defined as taking a ProcessHandle instead of
58 // a ProcessId, even though it's a POSIX-only function and IDs and Handles
59 // are both simply pid_t on POSIX... :/
60 base::ProcessHandle handle
;
61 CHECK(base::OpenProcessHandle(pid
, &handle
));
62 base::ProcessId ret
= base::GetParentProcessId(pid
);
63 base::CloseProcessHandle(handle
);
67 // SendHello sends a "hello" to socket fd, and then blocks until the recipient
68 // acknowledges it by calling RecvHello.
69 void SendHello(int fd
) {
71 CHECK_EQ(0, pipe(pipe_fds
));
72 base::ScopedFD
read_pipe(pipe_fds
[0]);
73 base::ScopedFD
write_pipe(pipe_fds
[1]);
75 std::vector
<int> send_fds
;
76 send_fds
.push_back(write_pipe
.get());
77 CHECK(UnixDomainSocket::SendMsg(fd
, kHello
, sizeof(kHello
), send_fds
));
81 // Block until receiver closes their end of the pipe.
83 CHECK_EQ(0, HANDLE_EINTR(read(read_pipe
.get(), &ch
, 1)));
86 // RecvHello receives and acknowledges a "hello" on socket fd, and returns the
87 // process ID of the sender in sender_pid. Optionally, write_pipe can be used
88 // to return a file descriptor, and the acknowledgement will be delayed until
89 // the descriptor is closed.
90 // (Implementation details: SendHello allocates a new pipe, sends us the writing
91 // end alongside the "hello" message, and then blocks until we close the writing
93 void RecvHello(int fd
,
94 base::ProcessId
* sender_pid
,
95 base::ScopedFD
* write_pipe
= NULL
) {
96 // Extra receiving buffer space to make sure we really received only
97 // sizeof(kHello) bytes and it wasn't just truncated to fit the buffer.
98 char buf
[sizeof(kHello
) + 1];
99 ScopedVector
<base::ScopedFD
> message_fds
;
100 ssize_t n
= UnixDomainSocket::RecvMsgWithPid(
101 fd
, buf
, sizeof(buf
), &message_fds
, sender_pid
);
102 CHECK_EQ(sizeof(kHello
), static_cast<size_t>(n
));
103 CHECK_EQ(0, memcmp(buf
, kHello
, sizeof(kHello
)));
104 CHECK_EQ(1U, message_fds
.size());
106 write_pipe
->swap(*message_fds
[0]);
109 // Check that receiving PIDs works across a fork().
110 SANDBOX_TEST(UnixDomainSocketTest
, Fork
) {
112 CHECK_EQ(0, socketpair(AF_UNIX
, SOCK_SEQPACKET
, 0, fds
));
113 base::ScopedFD
recv_sock(fds
[0]);
114 base::ScopedFD
send_sock(fds
[1]);
116 CHECK(UnixDomainSocket::EnableReceiveProcessId(recv_sock
.get()));
118 const pid_t pid
= fork();
123 SendHello(send_sock
.get());
130 base::ProcessId sender_pid
;
131 RecvHello(recv_sock
.get(), &sender_pid
);
132 CHECK_EQ(pid
, sender_pid
);
137 // Similar to Fork above, but forking the child into a new pid namespace.
138 SANDBOX_TEST(UnixDomainSocketTest
, Namespace
) {
142 CHECK_EQ(0, socketpair(AF_UNIX
, SOCK_SEQPACKET
, 0, fds
));
143 base::ScopedFD
recv_sock(fds
[0]);
144 base::ScopedFD
send_sock(fds
[1]);
146 CHECK(UnixDomainSocket::EnableReceiveProcessId(recv_sock
.get()));
148 const pid_t pid
= sys_clone(CLONE_NEWPID
| SIGCHLD
, 0, 0, 0, 0);
154 // Check that we think we're pid 1 in our new namespace.
155 CHECK_EQ(1, sys_getpid());
157 SendHello(send_sock
.get());
164 base::ProcessId sender_pid
;
165 RecvHello(recv_sock
.get(), &sender_pid
);
166 CHECK_EQ(pid
, sender_pid
);
171 // Again similar to Fork, but now with nested PID namespaces.
172 SANDBOX_TEST(UnixDomainSocketTest
, DoubleNamespace
) {
176 CHECK_EQ(0, socketpair(AF_UNIX
, SOCK_SEQPACKET
, 0, fds
));
177 base::ScopedFD
recv_sock(fds
[0]);
178 base::ScopedFD
send_sock(fds
[1]);
180 CHECK(UnixDomainSocket::EnableReceiveProcessId(recv_sock
.get()));
182 const pid_t pid
= sys_clone(CLONE_NEWPID
| SIGCHLD
, 0, 0, 0, 0);
188 const pid_t pid2
= sys_clone(CLONE_NEWPID
| SIGCHLD
, 0, 0, 0, 0);
192 // Wait for grandchild to run to completion; see comments below.
195 // Fallthrough once grandchild has sent its hello and exited.
198 // Check that we think we're pid 1.
199 CHECK_EQ(1, sys_getpid());
201 SendHello(send_sock
.get());
208 // We have two messages to receive: first from the grand-child,
209 // then from the child.
210 for (unsigned iteration
= 0; iteration
< 2; ++iteration
) {
211 base::ProcessId sender_pid
;
212 base::ScopedFD pipe_fd
;
213 RecvHello(recv_sock
.get(), &sender_pid
, &pipe_fd
);
215 // We need our child and grandchild processes to both be alive for
216 // GetParentProcessId() to return a valid pid, hence the pipe trickery.
217 // (On the first iteration, grandchild is blocked reading from the pipe
218 // until we close it, and child is blocked waiting for grandchild to exit.)
220 case 0: // Grandchild's message
221 // Check that sender_pid refers to our grandchild by checking that pid
222 // (our child) is its parent.
223 CHECK_EQ(pid
, GetParentProcessId(sender_pid
));
225 case 1: // Child's message
226 CHECK_EQ(pid
, sender_pid
);
236 // Tests that GetPeerPid() returns 0 if the peer does not exist in caller's
238 SANDBOX_TEST(UnixDomainSocketTest
, ImpossiblePid
) {
242 CHECK_EQ(0, socketpair(AF_UNIX
, SOCK_SEQPACKET
, 0, fds
));
243 base::ScopedFD
send_sock(fds
[0]);
244 base::ScopedFD
recv_sock(fds
[1]);
246 CHECK(UnixDomainSocket::EnableReceiveProcessId(recv_sock
.get()));
248 const pid_t pid
= sys_clone(CLONE_NEWPID
| SIGCHLD
, 0, 0, 0, 0);
254 base::ProcessId sender_pid
;
255 RecvHello(recv_sock
.get(), &sender_pid
);
256 CHECK_EQ(0, sender_pid
);
262 SendHello(send_sock
.get());
268 } // namespace sandbox