Merge pull request #612 from maximuska/proposed/deps_log_write_errors_checking
[platform/upstream/ninja.git] / src / deps_log.cc
1 // Copyright 2012 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (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
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "deps_log.h"
16
17 #include <assert.h>
18 #include <stdio.h>
19 #include <errno.h>
20 #include <string.h>
21 #ifndef _WIN32
22 #include <unistd.h>
23 #endif
24
25 #include "graph.h"
26 #include "metrics.h"
27 #include "state.h"
28 #include "util.h"
29
30 // The version is stored as 4 bytes after the signature and also serves as a
31 // byte order mark. Signature and version combined are 16 bytes long.
32 const char kFileSignature[] = "# ninjadeps\n";
33 const int kCurrentVersion = 1;
34
35 // Since the size field is 2 bytes and the top bit marks deps entries, a single
36 // record can be at most 32 kB. Set the buffer size to this and flush the file
37 // buffer after every record to make sure records aren't written partially.
38 const int kMaxBufferSize = 1 << 15;
39
40 // Record size is currently limited to 15 bit
41 const size_t kMaxRecordSize = (1 << 15) - 1;
42
43 DepsLog::~DepsLog() {
44   Close();
45 }
46
47 bool DepsLog::OpenForWrite(const string& path, string* err) {
48   if (needs_recompaction_) {
49     if (!Recompact(path, err))
50       return false;
51   }
52   
53   file_ = fopen(path.c_str(), "ab");
54   if (!file_) {
55     *err = strerror(errno);
56     return false;
57   }
58   setvbuf(file_, NULL, _IOFBF, kMaxBufferSize);
59   SetCloseOnExec(fileno(file_));
60
61   // Opening a file in append mode doesn't set the file pointer to the file's
62   // end on Windows. Do that explicitly.
63   fseek(file_, 0, SEEK_END);
64
65   if (ftell(file_) == 0) {
66     if (fwrite(kFileSignature, sizeof(kFileSignature) - 1, 1, file_) < 1) {
67       *err = strerror(errno);
68       return false;
69     }
70     if (fwrite(&kCurrentVersion, 4, 1, file_) < 1) {
71       *err = strerror(errno);
72       return false;
73     }
74   }
75   if (fflush(file_) != 0) {
76     *err = strerror(errno);
77     return false;
78   }
79   return true;
80 }
81
82 bool DepsLog::RecordDeps(Node* node, TimeStamp mtime,
83                          const vector<Node*>& nodes) {
84   return RecordDeps(node, mtime, nodes.size(),
85                     nodes.empty() ? NULL : (Node**)&nodes.front());
86 }
87
88 bool DepsLog::RecordDeps(Node* node, TimeStamp mtime,
89                          int node_count, Node** nodes) {
90   // Track whether there's any new data to be recorded.
91   bool made_change = false;
92
93   // Assign ids to all nodes that are missing one.
94   if (node->id() < 0) {
95     if (!RecordId(node))
96       return false;
97     made_change = true;
98   }
99   for (int i = 0; i < node_count; ++i) {
100     if (nodes[i]->id() < 0) {
101       if (!RecordId(nodes[i]))
102         return false;
103       made_change = true;
104     }
105   }
106
107   // See if the new data is different than the existing data, if any.
108   if (!made_change) {
109     Deps* deps = GetDeps(node);
110     if (!deps ||
111         deps->mtime != mtime ||
112         deps->node_count != node_count) {
113       made_change = true;
114     } else {
115       for (int i = 0; i < node_count; ++i) {
116         if (deps->nodes[i] != nodes[i]) {
117           made_change = true;
118           break;
119         }
120       }
121     }
122   }
123
124   // Don't write anything if there's no new info.
125   if (!made_change)
126     return true;
127
128   // Update on-disk representation.
129   size_t size = 4 * (1 + 1 + (uint16_t)node_count);
130   if (size > kMaxRecordSize) {
131     errno = ERANGE;
132     return false;
133   }
134   size |= 0x8000;  // Deps record: set high bit.
135   uint16_t size16 = (uint16_t)size;
136   if (fwrite(&size16, 2, 1, file_) < 1)
137     return false;
138   int id = node->id();
139   if (fwrite(&id, 4, 1, file_) < 1)
140     return false;
141   int timestamp = mtime;
142   if (fwrite(&timestamp, 4, 1, file_) < 1)
143     return false;
144   for (int i = 0; i < node_count; ++i) {
145     id = nodes[i]->id();
146     if (fwrite(&id, 4, 1, file_) < 1)
147       return false;
148   }
149   if (fflush(file_) != 0)
150       return false;
151
152   // Update in-memory representation.
153   Deps* deps = new Deps(mtime, node_count);
154   for (int i = 0; i < node_count; ++i)
155     deps->nodes[i] = nodes[i];
156   UpdateDeps(node->id(), deps);
157
158   return true;
159 }
160
161 void DepsLog::Close() {
162   if (file_)
163     fclose(file_);
164   file_ = NULL;
165 }
166
167 bool DepsLog::Load(const string& path, State* state, string* err) {
168   METRIC_RECORD(".ninja_deps load");
169   char buf[32 << 10];
170   FILE* f = fopen(path.c_str(), "rb");
171   if (!f) {
172     if (errno == ENOENT)
173       return true;
174     *err = strerror(errno);
175     return false;
176   }
177
178   bool valid_header = true;
179   int version = 0;
180   if (!fgets(buf, sizeof(buf), f) || fread(&version, 4, 1, f) < 1)
181     valid_header = false;
182   if (!valid_header || strcmp(buf, kFileSignature) != 0 ||
183       version != kCurrentVersion) {
184     *err = "bad deps log signature or version; starting over";
185     fclose(f);
186     unlink(path.c_str());
187     // Don't report this as a failure.  An empty deps log will cause
188     // us to rebuild the outputs anyway.
189     return true;
190   }
191
192   long offset;
193   bool read_failed = false;
194   int unique_dep_record_count = 0;
195   int total_dep_record_count = 0;
196   for (;;) {
197     offset = ftell(f);
198
199     uint16_t size;
200     if (fread(&size, 2, 1, f) < 1) {
201       if (!feof(f))
202         read_failed = true;
203       break;
204     }
205     bool is_deps = (size >> 15) != 0;
206     size = size & 0x7FFF;
207
208     if (fread(buf, size, 1, f) < 1) {
209       read_failed = true;
210       break;
211     }
212
213     if (is_deps) {
214       assert(size % 4 == 0);
215       int* deps_data = reinterpret_cast<int*>(buf);
216       int out_id = deps_data[0];
217       int mtime = deps_data[1];
218       deps_data += 2;
219       int deps_count = (size / 4) - 2;
220
221       Deps* deps = new Deps(mtime, deps_count);
222       for (int i = 0; i < deps_count; ++i) {
223         assert(deps_data[i] < (int)nodes_.size());
224         assert(nodes_[deps_data[i]]);
225         deps->nodes[i] = nodes_[deps_data[i]];
226       }
227
228       total_dep_record_count++;
229       if (!UpdateDeps(out_id, deps))
230         ++unique_dep_record_count;
231     } else {
232       StringPiece path(buf, size);
233       Node* node = state->GetNode(path);
234       assert(node->id() < 0);
235       node->set_id(nodes_.size());
236       nodes_.push_back(node);
237     }
238   }
239
240   if (read_failed) {
241     // An error occurred while loading; try to recover by truncating the
242     // file to the last fully-read record.
243     if (ferror(f)) {
244       *err = strerror(ferror(f));
245     } else {
246       *err = "premature end of file";
247     }
248     fclose(f);
249
250     if (!Truncate(path.c_str(), offset, err))
251       return false;
252
253     // The truncate succeeded; we'll just report the load error as a
254     // warning because the build can proceed.
255     *err += "; recovering";
256     return true;
257   }
258
259   fclose(f);
260
261   // Rebuild the log if there are too many dead records.
262   int kMinCompactionEntryCount = 1000;
263   int kCompactionRatio = 3;
264   if (total_dep_record_count > kMinCompactionEntryCount &&
265       total_dep_record_count > unique_dep_record_count * kCompactionRatio) {
266     needs_recompaction_ = true;
267   }
268
269   return true;
270 }
271
272 DepsLog::Deps* DepsLog::GetDeps(Node* node) {
273   // Abort if the node has no id (never referenced in the deps) or if
274   // there's no deps recorded for the node.
275   if (node->id() < 0 || node->id() >= (int)deps_.size())
276     return NULL;
277   return deps_[node->id()];
278 }
279
280 bool DepsLog::Recompact(const string& path, string* err) {
281   METRIC_RECORD(".ninja_deps recompact");
282   printf("Recompacting deps...\n");
283
284   Close();
285   string temp_path = path + ".recompact";
286
287   // OpenForWrite() opens for append.  Make sure it's not appending to a
288   // left-over file from a previous recompaction attempt that crashed somehow.
289   unlink(temp_path.c_str());
290
291   DepsLog new_log;
292   if (!new_log.OpenForWrite(temp_path, err))
293     return false;
294
295   // Clear all known ids so that new ones can be reassigned.  The new indices
296   // will refer to the ordering in new_log, not in the current log.
297   for (vector<Node*>::iterator i = nodes_.begin(); i != nodes_.end(); ++i)
298     (*i)->set_id(-1);
299   
300   // Write out all deps again.
301   for (int old_id = 0; old_id < (int)deps_.size(); ++old_id) {
302     Deps* deps = deps_[old_id];
303     if (!deps) continue;  // If nodes_[old_id] is a leaf, it has no deps.
304
305     if (!new_log.RecordDeps(nodes_[old_id], deps->mtime,
306                             deps->node_count, deps->nodes)) {
307       new_log.Close();
308       return false;
309     }
310   }
311
312   new_log.Close();
313
314   // All nodes now have ids that refer to new_log, so steal its data.
315   deps_.swap(new_log.deps_);
316   nodes_.swap(new_log.nodes_);
317
318   if (unlink(path.c_str()) < 0) {
319     *err = strerror(errno);
320     return false;
321   }
322
323   if (rename(temp_path.c_str(), path.c_str()) < 0) {
324     *err = strerror(errno);
325     return false;
326   }
327
328   return true;
329 }
330
331 bool DepsLog::UpdateDeps(int out_id, Deps* deps) {
332   if (out_id >= (int)deps_.size())
333     deps_.resize(out_id + 1);
334
335   bool delete_old = deps_[out_id] != NULL;
336   if (delete_old)
337     delete deps_[out_id];
338   deps_[out_id] = deps;
339   return delete_old;
340 }
341
342 bool DepsLog::RecordId(Node* node) {
343   size_t size = node->path().size();
344   if (size > kMaxRecordSize) {
345     errno = ERANGE;
346     return false;
347   }
348   uint16_t size16 = (uint16_t)size;
349   if (fwrite(&size16, 2, 1, file_) < 1)
350     return false;
351   if (fwrite(node->path().data(), node->path().size(), 1, file_) < 1) {
352     assert(node->path().size() > 0);
353     return false;
354   }
355   if (fflush(file_) != 0)
356     return false;
357
358   node->set_id(nodes_.size());
359   nodes_.push_back(node);
360
361   return true;
362 }