display.c revision e83ec672af50d1d882a587da48fadd62add8d60d
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> 30#include <stdarg.h> 31#include <stdio.h> 32#include <unistd.h> 33#include <inttypes.h> 34 35#include "log.h" 36#include "util.h" 37 38#define ESC_CLEAR "\033[H\033[2J" 39#define ESC_NAV(x,y) "\033["#x";"#y"H" 40#define ESC_BOLD "\033[1m" 41#define ESC_RESET "\033[0m" 42 43static void display_put(const char *fmt, ...) 44{ 45 char buf[1024 * 4]; 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 60static void display_displayLocked(honggfuzz_t * hfuzz) 61{ 62 unsigned long elapsed = (unsigned long)(time(NULL) - hfuzz->timeStart); 63 64 size_t curr_exec_cnt = __sync_fetch_and_add(&hfuzz->mutationsCnt, 0UL); 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 } 74 static size_t prev_exec_cnt = 0UL; 75 uintptr_t exec_per_sec = curr_exec_cnt - prev_exec_cnt; 76 prev_exec_cnt = curr_exec_cnt; 77 78 display_put("%s", ESC_CLEAR); 79 display_put("============================== STAT ==============================\n"); 80 81 display_put("Iterations: " ESC_BOLD "%zu" ESC_RESET, curr_exec_cnt); 82 if (hfuzz->mutationsMax) { 83 display_put(" (out of: " ESC_BOLD "%zu" ESC_RESET ")", hfuzz->mutationsMax); 84 } 85 display_put("\n"); 86 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); 91 92 display_put("Input file/dir: '" ESC_BOLD "%s" ESC_RESET "'\n", hfuzz->inputFile); 93 display_put("Fuzzed cmd: '" ESC_BOLD "%s" ESC_RESET "'\n", hfuzz->cmdline[0]); 94 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); 98 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 104 display_put("Crashes: " ESC_BOLD "%zu" ESC_RESET " (unique: " ESC_BOLD "%zu" ESC_RESET 105 ", blacklist: " ESC_BOLD "%zu" ESC_RESET ", verified: " ESC_BOLD "%zu" ESC_RESET 106 ") \n", __sync_fetch_and_add(&hfuzz->crashesCnt, 0UL), 107 __sync_fetch_and_add(&hfuzz->uniqueCrashesCnt, 0UL), 108 __sync_fetch_and_add(&hfuzz->blCrashesCnt, 0UL), 109 __sync_fetch_and_add(&hfuzz->verifiedCrashesCnt, 0UL)); 110 display_put("Timeouts: " ESC_BOLD "%zu" ESC_RESET "\n", 111 __sync_fetch_and_add(&hfuzz->timeoutedCnt, 0UL)); 112 113 if (hfuzz->dynFileMethod != _HF_DYNFILE_NONE) { 114 display_put("Dynamic file size: " ESC_BOLD "%zu" ESC_RESET " (max: " ESC_BOLD "%zu" 115 ESC_RESET ")\n", hfuzz->dynamicFileBestSz, hfuzz->maxFileSz); 116 display_put("Coverage (max):\n"); 117 } 118 if (hfuzz->dynFileMethod & _HF_DYNFILE_INSTR_COUNT) { 119 display_put(" - cpu instructions: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", 120 __sync_fetch_and_add(&hfuzz->hwCnts.cpuInstrCnt, 0UL)); 121 } 122 if (hfuzz->dynFileMethod & _HF_DYNFILE_BRANCH_COUNT) { 123 display_put(" - cpu branches: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", 124 __sync_fetch_and_add(&hfuzz->hwCnts.cpuBranchCnt, 0UL)); 125 } 126 if (hfuzz->dynFileMethod & _HF_DYNFILE_UNIQUE_BLOCK_COUNT) { 127 display_put(" - unique branch targets: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", 128 __sync_fetch_and_add(&hfuzz->hwCnts.pcCnt, 0UL)); 129 } 130 if (hfuzz->dynFileMethod & _HF_DYNFILE_UNIQUE_EDGE_COUNT) { 131 display_put(" - unique branch pairs: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", 132 __sync_fetch_and_add(&hfuzz->hwCnts.pathCnt, 0UL)); 133 } 134 if (hfuzz->dynFileMethod & _HF_DYNFILE_CUSTOM) { 135 display_put(" - custom counter: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", 136 __sync_fetch_and_add(&hfuzz->hwCnts.customCnt, 0UL)); 137 } 138 if (hfuzz->useSanCov) { 139 display_put("Dynamic file size: " ESC_BOLD "%zu" ESC_RESET " (max: " ESC_BOLD "%zu" 140 ESC_RESET ")\n", hfuzz->dynamicFileBestSz, hfuzz->maxFileSz); 141 display_put("Coverage (max):\n"); 142 display_put(" - unique pc: " ESC_BOLD "%" PRIu64 ESC_RESET "\n", 143 __sync_fetch_and_add(&hfuzz->sanCovCnts.pcCnt, 0UL)); 144 } 145 display_put("============================== LOGS ==============================\n"); 146} 147 148extern void display_display(honggfuzz_t * hfuzz) 149{ 150 display_displayLocked(hfuzz); 151} 152