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 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 43 | static void display_put(const char *fmt, ...) |
| 44 | { |
Anestis Bechtsoudis | c06f8b3 | 2015-12-26 14:48:05 +0200 | [diff] [blame] | 45 | char buf[1024 * 4]; |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 46 | |
| 47 | va_list args; |
| 48 | va_start(args, fmt); |
| 49 | int ret = vsnprintf(buf, sizeof(buf), fmt, args); |
| 50 | va_end(args); |
| 51 | |
| 52 | if (ret <= 0) { |
| 53 | return; |
| 54 | } |
| 55 | if (write(STDOUT_FILENO, buf, ret) == -1) { |
| 56 | return; |
| 57 | } |
| 58 | } |
| 59 | |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 60 | static void display_displayLocked(honggfuzz_t * hfuzz) |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 61 | { |
Jagger | 269cea5 | 2015-09-06 04:46:07 +0200 | [diff] [blame] | 62 | unsigned long elapsed = (unsigned long)(time(NULL) - hfuzz->timeStart); |
Robert Swiecki | 81c6a0d | 2015-09-08 15:43:20 +0200 | [diff] [blame] | 63 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 64 | size_t curr_exec_cnt = __sync_fetch_and_add(&hfuzz->mutationsCnt, 0UL); |
Robert Swiecki | 81c6a0d | 2015-09-08 15:43:20 +0200 | [diff] [blame] | 65 | /* |
| 66 | * We increase the mutation counter unconditionally in threads, but if it's |
| 67 | * above hfuzz->mutationsMax we don't really execute the fuzzing loop. |
| 68 | * Therefore at the end of fuzzing, the mutation counter might be higher |
| 69 | * than hfuzz->mutationsMax |
| 70 | */ |
| 71 | if (hfuzz->mutationsMax > 0 && curr_exec_cnt > hfuzz->mutationsMax) { |
| 72 | curr_exec_cnt = hfuzz->mutationsMax; |
| 73 | } |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 74 | static size_t prev_exec_cnt = 0UL; |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 75 | uintptr_t exec_per_sec = curr_exec_cnt - prev_exec_cnt; |
| 76 | prev_exec_cnt = curr_exec_cnt; |
| 77 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 78 | display_put("%s", ESC_CLEAR); |
Jagger | 3905f55 | 2015-09-06 21:04:37 +0200 | [diff] [blame] | 79 | display_put("============================== STAT ==============================\n"); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 80 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 81 | display_put("Iterations: " ESC_BOLD "%zu" ESC_RESET, curr_exec_cnt); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 82 | if (hfuzz->mutationsMax) { |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 83 | display_put(" (out of: " ESC_BOLD "%zu" ESC_RESET ")", hfuzz->mutationsMax); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 84 | } |
Jagger | bcd5785 | 2015-09-06 23:10:44 +0200 | [diff] [blame] | 85 | display_put("\n"); |
Jagger | 56ed764 | 2015-09-06 04:06:57 +0200 | [diff] [blame] | 86 | |
Robert Swiecki | 81c6a0d | 2015-09-08 15:43:20 +0200 | [diff] [blame] | 87 | char start_time_str[128]; |
| 88 | util_getLocalTime("%F %T", start_time_str, sizeof(start_time_str), hfuzz->timeStart); |
| 89 | display_put("Start time: " ESC_BOLD "%s" ESC_RESET " (" ESC_BOLD "%lu" |
| 90 | ESC_RESET " seconds elapsed)\n", start_time_str, elapsed); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 91 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 92 | 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^] | 93 | display_put("Fuzzed cmd: '" ESC_BOLD "%s" ESC_RESET "'\n", hfuzz->cmdline_txt); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 94 | |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 95 | display_put("Fuzzing threads: " ESC_BOLD "%zu" ESC_RESET "\n", hfuzz->threadsMax); |
| 96 | display_put("Execs per second: " ESC_BOLD "%zu" ESC_RESET " (avg: " ESC_BOLD "%zu" ESC_RESET |
| 97 | ")\n", exec_per_sec, elapsed ? (curr_exec_cnt / elapsed) : 0); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 98 | |
Anestis Bechtsoudis | 46ea10e | 2015-11-07 18:16:25 +0200 | [diff] [blame] | 99 | /* If dry run, print also the input file count */ |
| 100 | if (hfuzz->flipRate == 0.0L && hfuzz->useVerifier) { |
| 101 | display_put("Input Files: '" ESC_BOLD "%zu" ESC_RESET "'\n", hfuzz->fileCnt); |
| 102 | } |
| 103 | |
Anestis Bechtsoudis | d59af69 | 2015-09-21 15:15:05 +0300 | [diff] [blame] | 104 | 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] | 105 | ", blacklist: " ESC_BOLD "%zu" ESC_RESET ", verified: " ESC_BOLD "%zu" ESC_RESET |
| 106 | ") \n", __sync_fetch_and_add(&hfuzz->crashesCnt, 0UL), |
Anestis Bechtsoudis | d59af69 | 2015-09-21 15:15:05 +0300 | [diff] [blame] | 107 | __sync_fetch_and_add(&hfuzz->uniqueCrashesCnt, 0UL), |
Anestis Bechtsoudis | 79b799e | 2015-11-01 00:02:25 +0200 | [diff] [blame] | 108 | __sync_fetch_and_add(&hfuzz->blCrashesCnt, 0UL), |
| 109 | __sync_fetch_and_add(&hfuzz->verifiedCrashesCnt, 0UL)); |
Jagger | 7acbf2e | 2015-09-06 20:02:32 +0200 | [diff] [blame] | 110 | display_put("Timeouts: " ESC_BOLD "%zu" ESC_RESET "\n", |
| 111 | __sync_fetch_and_add(&hfuzz->timeoutedCnt, 0UL)); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 112 | |
Anestis Bechtsoudis | 02b99be | 2015-12-27 11:53:01 +0200 | [diff] [blame] | 113 | /* Feedback data sources are enabled. Start with common headers. */ |
| 114 | if (hfuzz->dynFileMethod != _HF_DYNFILE_NONE || hfuzz->useSanCov) { |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 115 | display_put("Dynamic file size: " ESC_BOLD "%zu" ESC_RESET " (max: " ESC_BOLD "%zu" |
| 116 | ESC_RESET ")\n", hfuzz->dynamicFileBestSz, hfuzz->maxFileSz); |
Anestis Bechtsoudis | 02b99be | 2015-12-27 11:53:01 +0200 | [diff] [blame] | 117 | display_put("Dynamic file max iterations keep for chosen seed (" ESC_BOLD "%zu" ESC_RESET |
| 118 | "/" ESC_BOLD "%zu" ESC_RESET ")\n", |
| 119 | __sync_fetch_and_add(&hfuzz->dynFileIterExpire, 0UL), _HF_MAX_DYNFILE_ITER); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 120 | display_put("Coverage (max):\n"); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 121 | } |
Anestis Bechtsoudis | 02b99be | 2015-12-27 11:53:01 +0200 | [diff] [blame] | 122 | |
| 123 | /* HW perf specific counters */ |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 124 | if (hfuzz->dynFileMethod & _HF_DYNFILE_INSTR_COUNT) { |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 125 | display_put(" - cpu instructions: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", |
Jagger | 3b51355 | 2015-09-09 02:08:35 +0200 | [diff] [blame] | 126 | __sync_fetch_and_add(&hfuzz->hwCnts.cpuInstrCnt, 0UL)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 127 | } |
| 128 | if (hfuzz->dynFileMethod & _HF_DYNFILE_BRANCH_COUNT) { |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 129 | display_put(" - cpu branches: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", |
Jagger | 3b51355 | 2015-09-09 02:08:35 +0200 | [diff] [blame] | 130 | __sync_fetch_and_add(&hfuzz->hwCnts.cpuBranchCnt, 0UL)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 131 | } |
| 132 | if (hfuzz->dynFileMethod & _HF_DYNFILE_UNIQUE_BLOCK_COUNT) { |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 133 | display_put(" - unique branch targets: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", |
Jagger | 3b51355 | 2015-09-09 02:08:35 +0200 | [diff] [blame] | 134 | __sync_fetch_and_add(&hfuzz->hwCnts.pcCnt, 0UL)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 135 | } |
| 136 | if (hfuzz->dynFileMethod & _HF_DYNFILE_UNIQUE_EDGE_COUNT) { |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 137 | display_put(" - unique branch pairs: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", |
Jagger | 3b51355 | 2015-09-09 02:08:35 +0200 | [diff] [blame] | 138 | __sync_fetch_and_add(&hfuzz->hwCnts.pathCnt, 0UL)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 139 | } |
| 140 | if (hfuzz->dynFileMethod & _HF_DYNFILE_CUSTOM) { |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 141 | display_put(" - custom counter: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", |
Jagger | 3b51355 | 2015-09-09 02:08:35 +0200 | [diff] [blame] | 142 | __sync_fetch_and_add(&hfuzz->hwCnts.customCnt, 0UL)); |
Robert Swiecki | 5395840 | 2015-09-08 16:20:50 +0200 | [diff] [blame] | 143 | } |
Anestis Bechtsoudis | 02b99be | 2015-12-27 11:53:01 +0200 | [diff] [blame] | 144 | |
| 145 | /* Sanitizer coverage specific counters */ |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 146 | if (hfuzz->useSanCov) { |
Anestis Bechtsoudis | 56e360f | 2016-01-11 14:29:17 +0200 | [diff] [blame] | 147 | uint64_t hitBB = __sync_fetch_and_add(&hfuzz->sanCovCnts.hitBBCnt, 0UL); |
| 148 | uint64_t totalBB = __sync_fetch_and_add(&hfuzz->sanCovCnts.totalBBCnt, 0UL); |
| 149 | uint8_t covPer = totalBB ? ((hitBB * 100) / totalBB) : 0; |
| 150 | display_put(" - total hit #bb: " ESC_BOLD "%" PRIu64 ESC_RESET " (coverage %d%%)\n", |
| 151 | hitBB, covPer); |
Anestis Bechtsoudis | a16f70f | 2016-01-03 13:03:21 +0200 | [diff] [blame] | 152 | display_put(" - total #dso: " ESC_BOLD "%" PRIu64 ESC_RESET " (instrumented only)\n", |
| 153 | __sync_fetch_and_add(&hfuzz->sanCovCnts.iDsoCnt, 0UL)); |
Anestis Bechtsoudis | 56e360f | 2016-01-11 14:29:17 +0200 | [diff] [blame] | 154 | display_put(" - discovered #bb: " ESC_BOLD "%" PRIu64 ESC_RESET " (new from input seed)\n", |
| 155 | __sync_fetch_and_add(&hfuzz->sanCovCnts.newBBCnt, 0UL)); |
Anestis Bechtsoudis | a16f70f | 2016-01-03 13:03:21 +0200 | [diff] [blame] | 156 | display_put(" - crashes: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", |
| 157 | __sync_fetch_and_add(&hfuzz->sanCovCnts.crashesCnt, 0UL)); |
Anestis Bechtsoudis | e83ec67 | 2015-12-26 20:28:28 +0200 | [diff] [blame] | 158 | } |
Jagger | 3905f55 | 2015-09-06 21:04:37 +0200 | [diff] [blame] | 159 | display_put("============================== LOGS ==============================\n"); |
Jagger | baa20ea | 2015-09-06 01:12:08 +0200 | [diff] [blame] | 160 | } |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 161 | |
| 162 | extern void display_display(honggfuzz_t * hfuzz) |
| 163 | { |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 164 | display_displayLocked(hfuzz); |
Robert Swiecki | 7353a8d | 2015-09-08 15:53:59 +0200 | [diff] [blame] | 165 | } |