Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. | 13 // limitations under the License. |
| 14 | 14 |
| 15 #include "util/file/file_io.h" | 15 #include "util/file/file_io.h" |
| 16 | 16 |
| 17 #include <fcntl.h> | 17 #include <fcntl.h> |
| 18 #include <sys/file.h> | |
| 18 #include <unistd.h> | 19 #include <unistd.h> |
| 19 | 20 |
| 20 #include "base/files/file_path.h" | 21 #include "base/files/file_path.h" |
| 21 #include "base/logging.h" | 22 #include "base/logging.h" |
| 22 #include "base/numerics/safe_conversions.h" | 23 #include "base/numerics/safe_conversions.h" |
| 23 #include "base/posix/eintr_wrapper.h" | 24 #include "base/posix/eintr_wrapper.h" |
| 24 | 25 |
| 25 namespace { | 26 namespace { |
| 26 | 27 |
| 27 struct ReadTraits { | 28 struct ReadTraits { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 93 flags |= O_EXCL; | 94 flags |= O_EXCL; |
| 94 | 95 |
| 95 int fd = HANDLE_EINTR( | 96 int fd = HANDLE_EINTR( |
| 96 open(path.value().c_str(), | 97 open(path.value().c_str(), |
| 97 flags, | 98 flags, |
| 98 permissions == FilePermissions::kWorldReadable ? 0644 : 0600)); | 99 permissions == FilePermissions::kWorldReadable ? 0644 : 0600)); |
| 99 PLOG_IF(ERROR, fd < 0) << "open " << path.value(); | 100 PLOG_IF(ERROR, fd < 0) << "open " << path.value(); |
| 100 return fd; | 101 return fd; |
| 101 } | 102 } |
| 102 | 103 |
| 104 bool LoggingLockFile(FileHandle file, FileLocking locking) { | |
| 105 #if 0 | |
| 106 struct flock fl = {0}; | |
| 107 fl.l_type = (locking == FileLocking::kShared) ? F_RDLCK : F_WRLCK; | |
| 108 fl.l_whence = SEEK_SET; | |
| 109 int rv = HANDLE_EINTR(fcntl(file, F_SETLKW, &fl)); | |
| 110 PLOG_IF(ERROR, rv < 0) << "fcntl F_SETLKW " << fl.l_type; | |
| 111 #else | |
| 112 int operation = locking == FileLocking::kShared ? LOCK_SH : LOCK_EX; | |
| 113 int rv = HANDLE_EINTR(flock(file, operation)); | |
| 114 PLOG_IF(ERROR, rv < 0) << "flock"; | |
| 115 #endif | |
| 116 return rv == 0; | |
| 117 | |
| 118 } | |
| 119 | |
| 120 bool LoggingUnlockFile(FileHandle file) { | |
| 121 #if 0 | |
| 122 struct flock fl = {0}; | |
| 123 fl.l_type = F_UNLCK; | |
| 124 fl.l_whence = SEEK_SET; | |
| 125 int rv = fcntl(file, F_SETLK, &fl); | |
| 126 PLOG_IF(ERROR, rv < 0) << "fcntl F_UNLCK"; | |
| 127 #else | |
| 128 int rv = HANDLE_EINTR(flock(file, LOCK_UN)); | |
|
Mark Mentovai
2015/03/20 15:03:55
Shouldn’t need to HANDLE_EINTR for an unlock (alth
scottmg
2015/03/20 21:07:34
Done.
| |
| 129 PLOG_IF(ERROR, rv < 0) << "flock"; | |
| 130 #endif | |
| 131 return rv == 0; | |
| 132 } | |
| 133 | |
| 103 FileOffset LoggingSeekFile(FileHandle file, FileOffset offset, int whence) { | 134 FileOffset LoggingSeekFile(FileHandle file, FileOffset offset, int whence) { |
| 104 off_t rv = lseek(file, offset, whence); | 135 off_t rv = lseek(file, offset, whence); |
| 105 PLOG_IF(ERROR, rv < 0) << "lseek"; | 136 PLOG_IF(ERROR, rv < 0) << "lseek"; |
| 106 return rv; | 137 return rv; |
| 107 } | 138 } |
| 108 | 139 |
| 109 bool LoggingCloseFile(FileHandle file) { | 140 bool LoggingCloseFile(FileHandle file) { |
| 110 int rv = IGNORE_EINTR(close(file)); | 141 int rv = IGNORE_EINTR(close(file)); |
| 111 PLOG_IF(ERROR, rv != 0) << "close"; | 142 PLOG_IF(ERROR, rv != 0) << "close"; |
| 112 return rv == 0; | 143 return rv == 0; |
| 113 } | 144 } |
| 114 | 145 |
| 115 } // namespace crashpad | 146 } // namespace crashpad |
| OLD | NEW |