Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * honggfuzz - display statistics |
| 4 | * ----------------------------------------- |
| 5 | * |
| 6 | * Author: Robert Swiecki <swiecki@google.com> |
| 7 | * |
| 8 | * Copyright 2010-2015 by Google Inc. All Rights Reserved. |
| 9 | * |
| 10 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 11 | * not use this file except in compliance with the License. You may obtain |
| 12 | * a copy of the License at |
| 13 | * |
| 14 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | * |
| 16 | * Unless required by applicable law or agreed to in writing, software |
| 17 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 19 | * implied. See the License for the specific language governing |
| 20 | * permissions and limitations under the License. |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #define _WITH_DPRINTF |
| 25 | |
| 26 | #include "common.h" |
| 27 | #include "display.h" |
| 28 | |
| 29 | #include <string.h> |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 30 | #include <stdarg.h> |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 31 | #include <stdio.h> |
| 32 | #include <unistd.h> |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 33 | #include <inttypes.h> |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 34 | |
| 35 | #include "log.h" |
Robert Swiecki | 81c6a0d | 2015-09-08 15:43:20 +0200 | [diff] [blame] | 36 | #include "util.h" |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 37 | |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 38 | #define ESC_CLEAR "\033[H\033[2J" |
| 39 | #define ESC_NAV(x,y) "\033["#x";"#y"H" |
Jagger | 76b11bc | 2015-09-06 02:11:44 +0200 | [diff] [blame] | 40 | #define ESC_BOLD "\033[1m" |
| 41 | #define ESC_RESET "\033[0m" |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 42 | |
Robert Swiecki | 508b19a | 2016-08-31 17:26:45 +0200 | [diff] [blame] | 43 | #if defined(_HF_ARCH_LINUX) |
| 44 | #define _HF_MONETARY_MOD "'" |
| 45 | #else |
| 46 | #define _HF_MONETARY_MOD "" |
| 47 | #endif |
| 48 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 49 | static void display_put(const char *fmt, ...) |
| 50 | { |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 51 | va_list args; |
| 52 | va_start(args, fmt); |
Jagger | ff4a420 | 2016-03-22 12:41:41 +0100 | [diff] [blame] | 53 | vdprintf(STDOUT_FILENO, fmt, args); |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 54 | va_end(args); |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 55 | } |
| 56 | |
Jagger | a7d893d | 2016-08-30 23:43:28 +0200 | [diff] [blame] | 57 | static void display_printKMG(uint64_t val) |
| 58 | { |
| 59 | if (val >= 1000000000UL) { |
| 60 | display_put(" [%.2lfG]", (double)val / 1000000.0); |
| 61 | } else if (val >= 1000000UL) { |
| 62 | display_put(" [%.2lfM]", (double)val / 1000000.0); |
| 63 | } else if (val >= 1000UL) { |
| 64 | display_put(" [%.2lfk]", (double)val / 1000.0); |
| 65 | } |
| 66 | } |
| 67 | |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 68 | static void display_displayLocked(honggfuzz_t * hfuzz) |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 69 | { |
wifiadmin | 4aef957 | 2016-05-15 11:02:07 +0800 | [diff] [blame] | 70 | unsigned long elapsed_second = (unsigned long)(time(NULL) - hfuzz->timeStart); |
wifiadmin | 4aef957 | 2016-05-15 11:02:07 +0800 | [diff] [blame] | 71 | |
Jagger | 286413c | 2016-05-15 14:58:24 +0200 | [diff] [blame] | 72 | unsigned int day, hour, min, second; |
| 73 | char time_elapsed_str[64]; |
| 74 | |
| 75 | if (elapsed_second < 24 * 3600) { |
| 76 | hour = elapsed_second / 3600; |
| 77 | min = (elapsed_second - 3600 * hour) / 60; |
| 78 | second = elapsed_second - hour * 3600 - min * 60; |
| 79 | snprintf(time_elapsed_str, sizeof(time_elapsed_str), "%u hrs %u min %u sec", hour, min, |
| 80 | second); |
| 81 | } else { |
| 82 | day = elapsed_second / 24 / 3600; |
| 83 | elapsed_second = elapsed_second - day * 24 * 3600; |
| 84 | hour = elapsed_second / 3600; |
| 85 | min = (elapsed_second - 3600 * hour) / 60; |
| 86 | second = elapsed_second - hour * 3600 - min * 60; |
| 87 | snprintf(time_elapsed_str, sizeof(time_elapsed_str), "%u days %u hrs %u min %u sec", day, |
| 88 | hour, min, second); |
wifiadmin | 4aef957 | 2016-05-15 11:02:07 +0800 | [diff] [blame] | 89 | } |
Robert Swiecki | 81c6a0d | 2015-09-08 15:43:20 +0200 | [diff] [blame] | 90 | |
Jagger | d34417d | 2016-03-16 01:26:54 +0100 | [diff] [blame] | 91 | size_t curr_exec_cnt = ATOMIC_GET(hfuzz->mutationsCnt); |
Robert Swiecki | 81c6a0d | 2015-09-08 15:43:20 +0200 | [diff] [blame] | 92 | /* |
| 93 | * We increase the mutation counter unconditionally in threads, but if it's |
| 94 | * above hfuzz->mutationsMax we don't really execute the fuzzing loop. |
| 95 | * Therefore at the end of fuzzing, the mutation counter might be higher |
| 96 | * than hfuzz->mutationsMax |
| 97 | */ |
| 98 | if (hfuzz->mutationsMax > 0 && curr_exec_cnt > hfuzz->mutationsMax) { |
| 99 | curr_exec_cnt = hfuzz->mutationsMax; |
| 100 | } |
Robert Swiecki | 4eab0b5 | 2016-07-26 16:56:38 +0200 | [diff] [blame] | 101 | float exeProgress = 0.0f; |
| 102 | if (hfuzz->mutationsMax > 0) { |
| 103 | exeProgress = ((float)curr_exec_cnt * 100 / hfuzz->mutationsMax); |
| 104 | } |
| 105 | |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 106 | static size_t prev_exec_cnt = 0UL; |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 107 | uintptr_t exec_per_sec = curr_exec_cnt - prev_exec_cnt; |
| 108 | prev_exec_cnt = curr_exec_cnt; |
| 109 | |
Robert Swiecki | 0212d69 | 2016-08-30 16:45:33 +0200 | [diff] [blame] | 110 | MX_SCOPED_LOCK(logMutexGet()); |
| 111 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 112 | display_put("%s", ESC_CLEAR); |
Robert Swiecki | 837c1d4 | 2016-04-12 12:01:00 +0200 | [diff] [blame] | 113 | display_put("==================================== STAT ====================================\n"); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 114 | |
Robert Swiecki | 508b19a | 2016-08-31 17:26:45 +0200 | [diff] [blame] | 115 | display_put("Iterations: " ESC_BOLD "%" _HF_MONETARY_MOD "zu" ESC_RESET, curr_exec_cnt); |
Jagger | a7d893d | 2016-08-30 23:43:28 +0200 | [diff] [blame] | 116 | display_printKMG(curr_exec_cnt); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 117 | if (hfuzz->mutationsMax) { |
Robert Swiecki | 4eab0b5 | 2016-07-26 16:56:38 +0200 | [diff] [blame] | 118 | display_put(" (out of: " ESC_BOLD "%zu" ESC_RESET " [" ESC_BOLD "%.2f%%" ESC_RESET "])", |
| 119 | hfuzz->mutationsMax, exeProgress); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 120 | } |
Jagger | bcd5785 | 2015-09-06 23:10:44 +0200 | [diff] [blame] | 121 | display_put("\n"); |
Jagger | 56ed764 | 2015-09-06 04:06:57 +0200 | [diff] [blame] | 122 | |
Robert Swiecki | 81c6a0d | 2015-09-08 15:43:20 +0200 | [diff] [blame] | 123 | char start_time_str[128]; |
| 124 | util_getLocalTime("%F %T", start_time_str, sizeof(start_time_str), hfuzz->timeStart); |
Jagger | 59b4d89 | 2016-08-30 23:49:19 +0200 | [diff] [blame] | 125 | display_put("Run time: " ESC_BOLD "%s" ESC_RESET " (since: " ESC_BOLD "%s" ESC_RESET ")\n", |
| 126 | time_elapsed_str, start_time_str); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 127 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 128 | display_put("Input file/dir: '" ESC_BOLD "%s" ESC_RESET "'\n", hfuzz->inputFile); |
Robert Swiecki | 72d2bef | 2016-01-19 14:39:26 +0100 | [diff] [blame] | 129 | display_put("Fuzzed cmd: '" ESC_BOLD "%s" ESC_RESET "'\n", hfuzz->cmdline_txt); |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 130 | if (hfuzz->linux.pid > 0) { |
Anestis Bechtsoudis | 7c88d7a | 2016-02-09 17:55:38 +0200 | [diff] [blame] | 131 | display_put("Remote cmd [" ESC_BOLD "%d" ESC_RESET "]: '" ESC_BOLD "%s" ESC_RESET "'\n", |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 132 | hfuzz->linux.pid, hfuzz->linux.pidCmd); |
Anestis Bechtsoudis | 7c88d7a | 2016-02-09 17:55:38 +0200 | [diff] [blame] | 133 | } |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 134 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 135 | display_put("Fuzzing threads: " ESC_BOLD "%zu" ESC_RESET "\n", hfuzz->threadsMax); |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 136 | display_put("%s per second: " ESC_BOLD "% " _HF_MONETARY_MOD "zu" ESC_RESET " (avg: " ESC_BOLD |
| 137 | "%" _HF_MONETARY_MOD "zu" ESC_RESET ")\n", hfuzz->persistent ? "Rounds" : "Execs", |
| 138 | exec_per_sec, elapsed_second ? (curr_exec_cnt / elapsed_second) : 0); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 139 | |
Anestis Bechtsoudis | 46ea10e | 2015-11-07 18:16:25 +0200 | [diff] [blame] | 140 | /* If dry run, print also the input file count */ |
Robert Swiecki | a96d78d | 2016-03-14 16:50:50 +0100 | [diff] [blame] | 141 | if (hfuzz->origFlipRate == 0.0L && hfuzz->useVerifier) { |
Jagger | 55a54a0 | 2016-08-31 21:41:05 +0200 | [diff] [blame^] | 142 | display_put("Input Files: '" ESC_BOLD "%" _HF_MONETARY_MOD "zu" ESC_RESET "'\n", |
| 143 | hfuzz->fileCnt); |
Anestis Bechtsoudis | 46ea10e | 2015-11-07 18:16:25 +0200 | [diff] [blame] | 144 | } |
| 145 | |
Anestis Bechtsoudis | d59af69 | 2015-09-21 15:15:05 +0300 | [diff] [blame] | 146 | display_put("Crashes: " ESC_BOLD "%zu" ESC_RESET " (unique: " ESC_BOLD "%zu" ESC_RESET |
Anestis Bechtsoudis | 79b799e | 2015-11-01 00:02:25 +0200 | [diff] [blame] | 147 | ", blacklist: " ESC_BOLD "%zu" ESC_RESET ", verified: " ESC_BOLD "%zu" ESC_RESET |
Anestis Bechtsoudis | bfcba12 | 2016-04-28 10:55:20 +0300 | [diff] [blame] | 148 | ")\n", ATOMIC_GET(hfuzz->crashesCnt), |
Jagger | d34417d | 2016-03-16 01:26:54 +0100 | [diff] [blame] | 149 | ATOMIC_GET(hfuzz->uniqueCrashesCnt), |
| 150 | ATOMIC_GET(hfuzz->blCrashesCnt), ATOMIC_GET(hfuzz->verifiedCrashesCnt)); |
Jagger | 55a54a0 | 2016-08-31 21:41:05 +0200 | [diff] [blame^] | 151 | display_put("Timeouts (%" _HF_MONETARY_MOD "zu sec): " ESC_BOLD "%" _HF_MONETARY_MOD "zu" |
| 152 | ESC_RESET "\n", hfuzz->tmOut, ATOMIC_GET(hfuzz->timeoutedCnt)); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 153 | |
Anestis Bechtsoudis | 02b99be | 2015-12-27 11:53:01 +0200 | [diff] [blame] | 154 | /* Feedback data sources are enabled. Start with common headers. */ |
| 155 | if (hfuzz->dynFileMethod != _HF_DYNFILE_NONE || hfuzz->useSanCov) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 156 | display_put("File corpus size: " ESC_BOLD "%" _HF_MONETARY_MOD "zu" ESC_RESET "\n", |
| 157 | hfuzz->dynfileqCnt); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 158 | display_put("Coverage (max):\n"); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 159 | } |
Anestis Bechtsoudis | 02b99be | 2015-12-27 11:53:01 +0200 | [diff] [blame] | 160 | |
| 161 | /* HW perf specific counters */ |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 162 | if (hfuzz->dynFileMethod & _HF_DYNFILE_INSTR_COUNT) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 163 | display_put(" - instructions: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 164 | ATOMIC_GET(hfuzz->linux.hwCnts.cpuInstrCnt)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 165 | } |
| 166 | if (hfuzz->dynFileMethod & _HF_DYNFILE_BRANCH_COUNT) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 167 | display_put(" - branches: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 168 | ATOMIC_GET(hfuzz->linux.hwCnts.cpuBranchCnt)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 169 | } |
Jagger | 3abc560 | 2016-02-04 00:53:43 +0100 | [diff] [blame] | 170 | if (hfuzz->dynFileMethod & _HF_DYNFILE_BTS_BLOCK) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 171 | display_put(" - BTS blocks: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 172 | ATOMIC_GET(hfuzz->linux.hwCnts.bbCnt)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 173 | } |
Jagger | 3abc560 | 2016-02-04 00:53:43 +0100 | [diff] [blame] | 174 | if (hfuzz->dynFileMethod & _HF_DYNFILE_BTS_EDGE) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 175 | display_put(" - BTS edges: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 176 | ATOMIC_GET(hfuzz->linux.hwCnts.bbCnt)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 177 | } |
Jagger | a2addb6 | 2016-02-04 03:53:53 +0100 | [diff] [blame] | 178 | if (hfuzz->dynFileMethod & _HF_DYNFILE_IPT_BLOCK) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 179 | display_put(" - PT blocks: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 180 | ATOMIC_GET(hfuzz->linux.hwCnts.bbCnt)); |
Jagger | a2addb6 | 2016-02-04 03:53:53 +0100 | [diff] [blame] | 181 | } |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 182 | if (hfuzz->dynFileMethod & _HF_DYNFILE_CUSTOM) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 183 | display_put(" - custom counter: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | 247c3b4 | 2016-03-21 23:24:05 +0100 | [diff] [blame] | 184 | ATOMIC_GET(hfuzz->linux.hwCnts.customCnt)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 185 | } |
Jagger | b01aaae | 2016-08-20 03:35:38 +0200 | [diff] [blame] | 186 | if (hfuzz->dynFileMethod & _HF_DYNFILE_SOFT) { |
Robert Swiecki | ba08c89 | 2016-08-31 17:31:23 +0200 | [diff] [blame] | 187 | display_put(" - functions seen: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | b01aaae | 2016-08-20 03:35:38 +0200 | [diff] [blame] | 188 | ATOMIC_GET(hfuzz->linux.hwCnts.softCnt)); |
| 189 | } |
Anestis Bechtsoudis | 02b99be | 2015-12-27 11:53:01 +0200 | [diff] [blame] | 190 | |
| 191 | /* Sanitizer coverage specific counters */ |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 192 | if (hfuzz->useSanCov) { |
Jagger | d34417d | 2016-03-16 01:26:54 +0100 | [diff] [blame] | 193 | uint64_t hitBB = ATOMIC_GET(hfuzz->sanCovCnts.hitBBCnt); |
Jagger | 66e5460 | 2016-08-17 01:07:24 +0200 | [diff] [blame] | 194 | uint64_t totalBB = ATOMIC_GET(hfuzz->sanCovCnts.totalBBCnt); |
| 195 | float covPer = totalBB ? (((float)hitBB * 100) / totalBB) : 0.0; |
Jagger | 55a54a0 | 2016-08-31 21:41:05 +0200 | [diff] [blame^] | 196 | display_put(" - total hit #bb: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET |
| 197 | " (coverage " ESC_BOLD "%.2f%%" ESC_RESET ")\n", hitBB, covPer); |
Jagger | ed28227 | 2016-08-31 20:00:33 +0200 | [diff] [blame] | 198 | display_put(" - total #dso: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET |
Jagger | 66e5460 | 2016-08-17 01:07:24 +0200 | [diff] [blame] | 199 | " (instrumented only)\n", ATOMIC_GET(hfuzz->sanCovCnts.iDsoCnt)); |
Jagger | ed28227 | 2016-08-31 20:00:33 +0200 | [diff] [blame] | 200 | display_put(" - discovered #bb: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET |
Jagger | 66e5460 | 2016-08-17 01:07:24 +0200 | [diff] [blame] | 201 | " (new from input seed)\n", ATOMIC_GET(hfuzz->sanCovCnts.newBBCnt)); |
Jagger | ed28227 | 2016-08-31 20:00:33 +0200 | [diff] [blame] | 202 | display_put(" - crashes: " ESC_BOLD "%" _HF_MONETARY_MOD PRIu64 ESC_RESET "\n", |
Jagger | 66e5460 | 2016-08-17 01:07:24 +0200 | [diff] [blame] | 203 | ATOMIC_GET(hfuzz->sanCovCnts.crashesCnt)); |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 204 | } |
Robert Swiecki | 837c1d4 | 2016-04-12 12:01:00 +0200 | [diff] [blame] | 205 | display_put("==================================== LOGS ====================================\n"); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 206 | } |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 207 | |
| 208 | extern void display_display(honggfuzz_t * hfuzz) |
| 209 | { |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 210 | display_displayLocked(hfuzz); |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 211 | } |