OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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. |
| 4 |
| 5 #include "chrome/common/multi_process_lock.h" |
| 6 |
| 7 #include <sys/socket.h> |
| 8 #include <sys/un.h> |
| 9 #include <unistd.h> |
| 10 |
| 11 #include "base/eintr_wrapper.h" |
| 12 #include "base/logging.h" |
| 13 |
| 14 class MultiProcessLockLinux : public MultiProcessLock { |
| 15 public: |
| 16 explicit MultiProcessLockLinux(const std::string& name) |
| 17 : name_(name), fd_(-1), count_(0) { } |
| 18 |
| 19 virtual ~MultiProcessLockLinux() { |
| 20 if (count_ > 0) { |
| 21 Unlock(); |
| 22 } |
| 23 } |
| 24 |
| 25 virtual bool TryLock() { |
| 26 if (count_ > 0) { |
| 27 count_ += 1; |
| 28 return true; |
| 29 } |
| 30 |
| 31 struct sockaddr_un address; |
| 32 // +2 because: 1 for terminator, and 1 for \0 at the front that makes |
| 33 // this an abstract name port. |
| 34 if (name_.length() + 2 > sizeof(address.sun_path)) { |
| 35 DLOG(ERROR) << "Socket name too long " << name_; |
| 36 return false; |
| 37 } |
| 38 memset(&address, 0, sizeof(address)); |
| 39 memcpy(&address.sun_path[1], name_.data(), name_.length()); |
| 40 address.sun_family = AF_LOCAL; |
| 41 int socket_fd = socket(AF_LOCAL, SOCK_STREAM, 0); |
| 42 if (socket_fd < 0) { |
| 43 PLOG(ERROR) << "Couldn't create socket"; |
| 44 return false; |
| 45 } |
| 46 if (bind(socket_fd, |
| 47 reinterpret_cast<sockaddr *>(&address), |
| 48 sizeof(address)) == 0) { |
| 49 fd_ = socket_fd; |
| 50 count_ = 1; |
| 51 return true; |
| 52 } else { |
| 53 NOTREACHED() << "Couldn't bind socket to " << address.sun_path; |
| 54 HANDLE_EINTR(close(socket_fd)); |
| 55 return false; |
| 56 } |
| 57 } |
| 58 |
| 59 virtual void Unlock() { |
| 60 if (count_ == 0) { |
| 61 DLOG(ERROR) << "Over unlocked MultiProcessLock " << name_; |
| 62 return; |
| 63 } |
| 64 count_ -= 1; |
| 65 if (count_ == 0) { |
| 66 HANDLE_EINTR(close(fd_)); |
| 67 fd_ = -1; |
| 68 } |
| 69 } |
| 70 |
| 71 private: |
| 72 std::string name_; |
| 73 int fd_; |
| 74 int count_; |
| 75 DISALLOW_COPY_AND_ASSIGN(MultiProcessLockLinux); |
| 76 }; |
| 77 |
| 78 MultiProcessLock* MultiProcessLock::Create(const std::string &name) { |
| 79 return new MultiProcessLockLinux(name); |
| 80 } |
OLD | NEW |