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 "base/linux_util.h" | 5 #include "base/linux_util.h" |
6 | 6 |
7 #include <dirent.h> | 7 #include <dirent.h> |
8 #include <errno.h> | 8 #include <errno.h> |
9 #include <fcntl.h> | 9 #include <fcntl.h> |
10 #include <stdlib.h> | 10 #include <stdlib.h> |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 DIR* fd = opendir(buf); | 224 DIR* fd = opendir(buf); |
225 if (!fd) | 225 if (!fd) |
226 continue; | 226 continue; |
227 | 227 |
228 while ((dent = readdir(fd))) { | 228 while ((dent = readdir(fd))) { |
229 if (snprintf(buf, sizeof(buf), "/proc/%d/fd/%s", current_pid, | 229 if (snprintf(buf, sizeof(buf), "/proc/%d/fd/%s", current_pid, |
230 dent->d_name) >= static_cast<int>(sizeof(buf))) { | 230 dent->d_name) >= static_cast<int>(sizeof(buf))) { |
231 continue; | 231 continue; |
232 } | 232 } |
233 | 233 |
234 ino_t fd_inode; | 234 ino_t fd_inode = static_cast<ino_t>(-1); |
235 if (ProcPathGetInode(&fd_inode, buf)) { | 235 if (ProcPathGetInode(&fd_inode, buf)) { |
236 if (fd_inode == socket_inode) { | 236 if (fd_inode == socket_inode) { |
237 if (already_found) { | 237 if (already_found) { |
238 closedir(fd); | 238 closedir(fd); |
239 return false; | 239 return false; |
240 } | 240 } |
241 | 241 |
242 already_found = true; | 242 already_found = true; |
243 *pid_out = current_pid; | 243 *pid_out = current_pid; |
244 break; | 244 break; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 | 295 |
296 if (0 == strncmp(expected_data.c_str(), syscall_data.get(), | 296 if (0 == strncmp(expected_data.c_str(), syscall_data.get(), |
297 expected_data.length())) { | 297 expected_data.length())) { |
298 return current_tid; | 298 return current_tid; |
299 } | 299 } |
300 } | 300 } |
301 return -1; | 301 return -1; |
302 } | 302 } |
303 | 303 |
304 } // namespace base | 304 } // namespace base |
OLD | NEW |