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 <unistd.h> | 18 #include <unistd.h> |
18 | 19 |
20 #include "base/files/file_path.h" | |
19 #include "base/logging.h" | 21 #include "base/logging.h" |
20 #include "base/numerics/safe_conversions.h" | 22 #include "base/numerics/safe_conversions.h" |
21 #include "base/posix/eintr_wrapper.h" | 23 #include "base/posix/eintr_wrapper.h" |
22 | 24 |
23 namespace { | 25 namespace { |
24 | 26 |
25 struct ReadTraits { | 27 struct ReadTraits { |
26 using VoidBufferType = void*; | 28 using VoidBufferType = void*; |
27 using CharBufferType = char*; | 29 using CharBufferType = char*; |
28 static ssize_t Operate(int fd, CharBufferType buffer, size_t size) { | 30 static ssize_t Operate(int fd, CharBufferType buffer, size_t size) { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
67 namespace crashpad { | 69 namespace crashpad { |
68 | 70 |
69 ssize_t ReadFile(FileHandle file, void* buffer, size_t size) { | 71 ssize_t ReadFile(FileHandle file, void* buffer, size_t size) { |
70 return ReadOrWrite<ReadTraits>(file, buffer, size); | 72 return ReadOrWrite<ReadTraits>(file, buffer, size); |
71 } | 73 } |
72 | 74 |
73 ssize_t WriteFile(FileHandle file, const void* buffer, size_t size) { | 75 ssize_t WriteFile(FileHandle file, const void* buffer, size_t size) { |
74 return ReadOrWrite<WriteTraits>(file, buffer, size); | 76 return ReadOrWrite<WriteTraits>(file, buffer, size); |
75 } | 77 } |
76 | 78 |
79 FileHandle LoggingOpenFileForWrite(const base::FilePath& path, | |
80 FileWriteMode mode, | |
81 bool world_readable) { | |
82 int flags = O_WRONLY; | |
Mark Mentovai
2014/12/18 21:52:32
This should be O_WRONLY | O_CREAT, because we alwa
scottmg
2014/12/18 22:12:44
Done.
| |
83 switch (mode) { | |
84 case FileWriteMode::kAppend: | |
85 // Nothing to add. | |
86 break; | |
87 case FileWriteMode::kCreate: | |
88 flags |= O_CREAT | O_TRUNC; | |
89 break; | |
90 case FileWriteMode::kCreateNew: | |
91 flags |= O_CREAT | O_EXCL; | |
92 break; | |
93 } | |
94 int fd = HANDLE_EINTR( | |
95 open(path.value().c_str(), flags, world_readable ? 0644 : 0600)); | |
96 PLOG_IF(ERROR, fd < 0) << "open " << path.value(); | |
97 return fd; | |
98 } | |
99 | |
100 FileHandle LoggingOpenFileForRead(const base::FilePath& path) { | |
101 int fd = HANDLE_EINTR(open(path.value().c_str(), O_RDONLY)); | |
102 PLOG_IF(ERROR, fd < 0) << "open " << path.value(); | |
103 return fd; | |
104 } | |
105 | |
77 bool LoggingCloseFile(FileHandle file) { | 106 bool LoggingCloseFile(FileHandle file) { |
78 int rv = IGNORE_EINTR(close(file)); | 107 int rv = IGNORE_EINTR(close(file)); |
79 PLOG_IF(ERROR, rv != 0) << "close"; | 108 PLOG_IF(ERROR, rv != 0) << "close"; |
80 return rv == 0; | 109 return rv == 0; |
81 } | 110 } |
82 | 111 |
83 } // namespace crashpad | 112 } // namespace crashpad |
OLD | NEW |