Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Unified Diff: net/disk_cache/rankings.cc

Issue 10148001: Disk Cache: Add more corruption tracking histograms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/rankings.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/rankings.cc
===================================================================
--- net/disk_cache/rankings.cc (revision 133063)
+++ net/disk_cache/rankings.cc (working copy)
@@ -724,14 +724,6 @@
control_data_->operation = 0;
}
-bool Rankings::CheckEntry(CacheRankingsBlock* rankings) {
- if (rankings->VerifyHash())
- return true;
-
- // If this entry is not dirty, it is a serious problem.
- return backend_->GetCurrentEntryId() != rankings->Data()->dirty;
-}
-
bool Rankings::CheckLinks(CacheRankingsBlock* node, CacheRankingsBlock* prev,
CacheRankingsBlock* next, List* list) {
CacheAddr node_addr = node->address().value();
@@ -787,44 +779,120 @@
}
int Rankings::CheckList(List list) {
- Addr& my_head = heads_[list];
- Addr& my_tail = tails_[list];
- if (!my_head.is_initialized()) {
- if (!my_tail.is_initialized())
- return 0;
- // If there is no head, having a tail is an error.
- return ERR_INVALID_TAIL;
+ Addr last1, last2;
+ int head_items;
+ int rv = CheckListSection(list, last1, last2, true, // Head to tail.
rvargas (doing something else) 2012/04/30 22:03:01 How about this then. No name to mess, no changing
+ &last1, &last2, &head_items);
+ if (rv == 0)
+ return head_items;
+
+ Addr last3, last4;
+ int tail_items;
+ int rv2 = CheckListSection(list, last1, last2, false, // Tail to head.
+ &last3, &last4, &tail_items);
+
+ if (!head_items && rv != ERR_INVALID_NEXT)
+ rv = ERR_INVALID_HEAD;
+
+ if (!tail_items && rv2 != ERR_INVALID_NEXT)
+ rv2 = ERR_INVALID_HEAD;
+
+ int expected = control_data_->sizes[list];
+ int total_items = head_items + tail_items;
+
+ if (!count_lists_) {
+ // There's no expected value, so we'll use something else. If it looks like
+ // we can rebuild the list, we lost at least one entry.
+ if (last3 == last1 || last3 == last2 || last4 == last1 || last4 == last2)
+ expected = total_items + 1;
}
- // If there is no tail, having a head is an error.
- if (!my_tail.is_initialized())
- return ERR_INVALID_HEAD;
- if (my_tail.is_separate_file())
- return ERR_INVALID_TAIL;
+ if (expected) {
+ // This histogram has an offset so that we can see small negative values. In
+ // practice, it is linear from -9 to +8.
+ UMA_HISTOGRAM_CUSTOM_COUNTS("DiskCache.LostItems(Plus10)",
+ expected - total_items + 10, 0, 2000, 75);
+ }
- if (my_head.is_separate_file())
+ const int kInvalidHead = 1;
+ const int kInvalidTail = 2;
+ const int kInvalidHeadAndTail = 3;
+ const int kOneInvalidEntry = 4;
+ const int kTwoInvalidEntries = 5;
+ const int kOneInvalidLink = 6;
+ const int kTwoInvalidLinks = 7;
+ const int kOneInvalidEntryOneInvalidLink = 8;
+
+ int error = list * 10;
+ if (rv == ERR_INVALID_HEAD && rv2 != ERR_INVALID_HEAD) {
+ error += kInvalidHead;
+ } else if (rv == ERR_INVALID_HEAD && rv2 == ERR_INVALID_HEAD) {
+ error += kInvalidHeadAndTail;
+ } else if (rv != ERR_INVALID_HEAD && rv2 == ERR_INVALID_HEAD) {
+ error += kInvalidTail;
+ } else if (rv == ERR_INVALID_ENTRY && rv2 == ERR_INVALID_ENTRY) {
+ error += kTwoInvalidEntries;
+ } else if (rv == ERR_INVALID_ENTRY && rv2 == 0) {
+ error += kOneInvalidEntry;
+ } else if (rv == ERR_INVALID_ENTRY || rv2 == ERR_INVALID_ENTRY) {
+ error += kOneInvalidEntryOneInvalidLink;
+ } else if (rv2 != 0) {
+ error += kTwoInvalidLinks;
+ } else {
+ error += kOneInvalidLink;
+ }
+ CACHE_UMA(CACHE_ERROR, "ListError", 0, error);
+
+ return rv;
+}
+
+// Note that the returned error codes assume a forward walk (from head to tail)
+// so they have to be adjusted accordingly by the caller. We use two stop values
+// to be able to detect a corrupt node at the end that is not linked going back.
+int Rankings::CheckListSection(List list, Addr end1, Addr end2,
+ ListDirection dir,
+ Addr* last, Addr* second_last, int* num_items) {
+ Addr current = (dir == FORWARD) ? heads_[list] : tails_[list];
+ *last = *second_last = current;
+ *num_items = 0;
+ if (!current.is_initialized())
+ return ERR_NO_ERROR;
+
+ if (!current.SanityCheckForRankings())
return ERR_INVALID_HEAD;
- int num_items = 0;
- Addr address(my_head.value());
- Addr prev(my_head.value());
scoped_ptr<CacheRankingsBlock> node;
+ Addr prev_addr(current);
do {
- node.reset(new CacheRankingsBlock(backend_->File(address), address));
+ node.reset(new CacheRankingsBlock(backend_->File(current), current));
node->Load();
- if (node->Data()->prev != prev.value())
- return ERR_INVALID_PREV;
- if (!CheckEntry(node.get()))
+ if (!SanityCheck(node.get(), true))
return ERR_INVALID_ENTRY;
- prev.set_value(address.value());
- address.set_value(node->Data()->next);
- if (!address.is_initialized() || address.is_separate_file())
+ CacheAddr next = (dir == FORWARD) ? node->Data()->next : node->Data()->prev;
+ CacheAddr prev = (dir == FORWARD) ? node->Data()->prev : node->Data()->next;
+
+ if (prev != prev_addr.value())
+ return ERR_INVALID_PREV;
+
+ Addr next_addr(next);
+ if (!next_addr.SanityCheckForRankings())
return ERR_INVALID_NEXT;
- num_items++;
- } while (node->address().value() != address.value());
- return num_items;
+ prev_addr = current;
+ current = next_addr;
+ *second_last = *last;
+ *last = current;
+ (*num_items)++;
+
+ if (next_addr == prev_addr) {
+ Addr last = (dir == FORWARD) ? tails_[list] : heads_[list];
+ if (next_addr == last)
+ return ERR_NO_ERROR;
+ return ERR_INVALID_TAIL;
+ }
+ } while (current != end1 && current != end2);
+ return ERR_NO_ERROR;
}
bool Rankings::IsHead(CacheAddr addr, List* list) const {
« no previous file with comments | « net/disk_cache/rankings.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698