| OLD | NEW |
| 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 #include "chrome/app/nacl_fork_delegate_linux.h" | 5 #include "chrome/app/nacl_fork_delegate_linux.h" |
| 6 | 6 |
| 7 #include <signal.h> | 7 #include <signal.h> |
| 8 #include <stdlib.h> | 8 #include <stdlib.h> |
| 9 #include <sys/resource.h> | 9 #include <sys/resource.h> |
| 10 #include <sys/socket.h> | 10 #include <sys/socket.h> |
| 11 | 11 |
| 12 #include <set> | 12 #include <set> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/command_line.h" | 15 #include "base/command_line.h" |
| 16 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
| 17 #include "base/logging.h" | 17 #include "base/logging.h" |
| 18 #include "base/path_service.h" | 18 #include "base/path_service.h" |
| 19 #include "base/posix/eintr_wrapper.h" | 19 #include "base/posix/eintr_wrapper.h" |
| 20 #include "base/posix/unix_domain_socket_linux.h" | 20 #include "base/posix/unix_domain_socket_linux.h" |
| 21 #include "base/process_util.h" | 21 #include "base/process_util.h" |
| 22 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" | 22 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" |
| 23 #include "chrome/common/chrome_paths.h" | 23 #include "chrome/common/chrome_paths.h" |
| 24 #include "chrome/common/chrome_switches.h" | |
| 25 #include "chrome/common/nacl_helper_linux.h" | 24 #include "chrome/common/nacl_helper_linux.h" |
| 25 #include "chrome/nacl/nacl_switches.h" |
| 26 | 26 |
| 27 NaClForkDelegate::NaClForkDelegate() | 27 NaClForkDelegate::NaClForkDelegate() |
| 28 : status_(kNaClHelperUnused), | 28 : status_(kNaClHelperUnused), |
| 29 fd_(-1) {} | 29 fd_(-1) {} |
| 30 | 30 |
| 31 // Note these need to match up with their counterparts in nacl_helper_linux.c | 31 // Note these need to match up with their counterparts in nacl_helper_linux.c |
| 32 // and nacl_helper_bootstrap_linux.c. | 32 // and nacl_helper_bootstrap_linux.c. |
| 33 const char kNaClHelperReservedAtZero[] = | 33 const char kNaClHelperReservedAtZero[] = |
| 34 "--reserved_at_zero=0xXXXXXXXXXXXXXXXX"; | 34 "--reserved_at_zero=0xXXXXXXXXXXXXXXXX"; |
| 35 const char kNaClHelperRDebug[] = "--r_debug=0xXXXXXXXXXXXXXXXX"; | 35 const char kNaClHelperRDebug[] = "--r_debug=0xXXXXXXXXXXXXXXXX"; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 | 155 |
| 156 bool NaClForkDelegate::AckChild(const int fd, | 156 bool NaClForkDelegate::AckChild(const int fd, |
| 157 const std::string& channel_switch) { | 157 const std::string& channel_switch) { |
| 158 int nwritten = HANDLE_EINTR(write(fd, channel_switch.c_str(), | 158 int nwritten = HANDLE_EINTR(write(fd, channel_switch.c_str(), |
| 159 channel_switch.length())); | 159 channel_switch.length())); |
| 160 if (nwritten != static_cast<int>(channel_switch.length())) { | 160 if (nwritten != static_cast<int>(channel_switch.length())) { |
| 161 return false; | 161 return false; |
| 162 } | 162 } |
| 163 return true; | 163 return true; |
| 164 } | 164 } |
| OLD | NEW |