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

Unified Diff: util/mach/child_port_handshake.cc

Issue 777573002: ChildPortHandshake: 10.6 fix (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mach/child_port_handshake.cc
diff --git a/util/mach/child_port_handshake.cc b/util/mach/child_port_handshake.cc
index 483c102dbac5a3c691e244bdef42b3a29864d997..0abf1912a3da267ee1f70052219e1b45a6d28167 100644
--- a/util/mach/child_port_handshake.cc
+++ b/util/mach/child_port_handshake.cc
@@ -15,10 +15,10 @@
#include "util/mach/child_port_handshake.h"
#include <errno.h>
-#include <fcntl.h>
#include <pthread.h>
#include <servers/bootstrap.h>
#include <sys/event.h>
+#include <sys/socket.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
@@ -44,16 +44,26 @@ ChildPortHandshake::ChildPortHandshake()
pipe_write_(),
child_port_(MACH_PORT_NULL),
checked_in_(false) {
+ // Use socketpair() instead of pipe(). There is no way to suppress SIGPIPE on
+ // pipes in Mac OS X 10.6, because the F_SETNOSIGPIPE fcntl() command was not
+ // introduced until 10.7.
int pipe_fds[2];
- int rv = pipe(pipe_fds);
- PCHECK(rv == 0) << "pipe";
+ PCHECK(socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe_fds) == 0)
+ << "socketpair";
pipe_read_.reset(pipe_fds[0]);
pipe_write_.reset(pipe_fds[1]);
+ // Simulate pipe() semantics by shutting down the “wrong” sides of the socket.
+ PCHECK(shutdown(pipe_write_.get(), SHUT_RD) == 0) << "shutdown";
+ PCHECK(shutdown(pipe_read_.get(), SHUT_WR) == 0) << "shutdown";
+
// SIGPIPE is undesirable when writing to this pipe. Allow broken-pipe writes
// to fail with EPIPE instead.
- PCHECK(fcntl(pipe_write_.get(), F_SETNOSIGPIPE, 1) == 0) << "fcntl";
+ const int value = 1;
+ PCHECK(setsockopt(
+ pipe_write_.get(), SOL_SOCKET, SO_NOSIGPIPE, &value, sizeof(value)) == 0)
+ << "setsockopt";
}
ChildPortHandshake::~ChildPortHandshake() {
@@ -75,6 +85,7 @@ mach_port_t ChildPortHandshake::RunServer() {
token_ = base::RandUint64();
int pipe_write = pipe_write_owner.get();
if (!LoggingWriteFD(pipe_write, &token_, sizeof(token_))) {
+ LOG(WARNING) << "no client check-in";
return MACH_PORT_NULL;
}
@@ -103,10 +114,12 @@ mach_port_t ChildPortHandshake::RunServer() {
uint32_t service_name_length = service_name.size();
if (!LoggingWriteFD(
pipe_write, &service_name_length, sizeof(service_name_length))) {
+ LOG(WARNING) << "no client check-in";
return MACH_PORT_NULL;
}
if (!LoggingWriteFD(pipe_write, service_name.c_str(), service_name_length)) {
+ LOG(WARNING) << "no client check-in";
return MACH_PORT_NULL;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698