mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	Summary: This adds a SHA1 implementation taken from public domain code. The change is trivial, but as it involves third-party code I'd like a second pair of eyes before commit. LibFuzzer can not use SHA1 from openssl because openssl may not be available and because we may be fuzzing openssl itself. Using sha1sum via a pipe is too slow. Test Plan: n/a Reviewers: chandlerc Reviewed By: chandlerc Subscribers: majnemer, llvm-commits Differential Revision: http://reviews.llvm.org/D9733 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237400 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===- FuzzerUtil.cpp - Misc utils ----------------------------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
// Misc utils.
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "FuzzerInternal.h"
 | 
						|
#include <sstream>
 | 
						|
#include <iomanip>
 | 
						|
#include <iostream>
 | 
						|
#include <sys/time.h>
 | 
						|
#include <cassert>
 | 
						|
#include <cstring>
 | 
						|
#include <signal.h>
 | 
						|
#include <unistd.h>
 | 
						|
 | 
						|
namespace fuzzer {
 | 
						|
 | 
						|
void Print(const Unit &v, const char *PrintAfter) {
 | 
						|
  for (auto x : v)
 | 
						|
    std::cerr << "0x" << std::hex << (unsigned) x << std::dec << ",";
 | 
						|
  std::cerr << PrintAfter;
 | 
						|
}
 | 
						|
 | 
						|
void PrintASCII(const Unit &U, const char *PrintAfter) {
 | 
						|
  for (auto X : U) {
 | 
						|
    if (isprint(X))
 | 
						|
      std::cerr << X;
 | 
						|
    else
 | 
						|
      std::cerr << "\\x" << std::hex << (int)(unsigned)X << std::dec;
 | 
						|
  }
 | 
						|
  std::cerr << PrintAfter;
 | 
						|
}
 | 
						|
 | 
						|
std::string Hash(const Unit &U) {
 | 
						|
  uint8_t Hash[kSHA1NumBytes];
 | 
						|
  ComputeSHA1(U.data(), U.size(), Hash);
 | 
						|
  std::stringstream SS;
 | 
						|
  for (int i = 0; i < kSHA1NumBytes; i++)
 | 
						|
    SS << std::hex << std::setfill('0') << std::setw(2) << (unsigned)Hash[i];
 | 
						|
  return SS.str();
 | 
						|
}
 | 
						|
 | 
						|
static void AlarmHandler(int, siginfo_t *, void *) {
 | 
						|
  Fuzzer::StaticAlarmCallback();
 | 
						|
}
 | 
						|
 | 
						|
void SetTimer(int Seconds) {
 | 
						|
  struct itimerval T {{Seconds, 0}, {Seconds, 0}};
 | 
						|
  std::cerr << "SetTimer " << Seconds << "\n";
 | 
						|
  int Res = setitimer(ITIMER_REAL, &T, nullptr);
 | 
						|
  assert(Res == 0);
 | 
						|
  struct sigaction sigact;
 | 
						|
  memset(&sigact, 0, sizeof(sigact));
 | 
						|
  sigact.sa_sigaction = AlarmHandler;
 | 
						|
  Res = sigaction(SIGALRM, &sigact, 0);
 | 
						|
  assert(Res == 0);
 | 
						|
}
 | 
						|
 | 
						|
int NumberOfCpuCores() {
 | 
						|
  FILE *F = popen("nproc", "r");
 | 
						|
  int N = 0;
 | 
						|
  fscanf(F, "%d", &N);
 | 
						|
  fclose(F);
 | 
						|
  return N;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace fuzzer
 |