forked from googleprojectzero/TinyInst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.h
executable file
·85 lines (67 loc) · 2.21 KB
/
common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
Copyright 2020 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https ://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef COMMON_H
#define COMMON_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <list>
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32)
#include <windows.h>
#define ArgvEscape ArgvEscapeWindows
#else
#include <limits.h>
#ifndef MAX_PATH
#define MAX_PATH PATH_MAX
#endif
#include <strings.h>
#define _stricmp strcasecmp
#define ArgvEscape ArgvEscapeMacOS
#endif
enum {
/* 00 */ FAULT_NONE,
/* 01 */ FAULT_TMOUT,
/* 02 */ FAULT_CRASH,
/* 03 */ FAULT_ERROR,
/* 04 */ FAULT_NOINST,
/* 05 */ FAULT_NOBITS
};
#define SAY(...) printf(__VA_ARGS__)
#define WARN(...) do { \
SAY("[!] WARNING: " __VA_ARGS__); \
SAY("\n"); \
} while (0)
#define FATAL(...) do { \
SAY("[-] PROGRAM ABORT : " __VA_ARGS__); \
SAY(" Location : %s(), %s:%u\n\n", \
__FUNCTION__, __FILE__, __LINE__); \
exit(1); \
} while (0)
#define USAGE_CHECK(condition, message) if(!(condition)) FATAL("%s\n", message);
struct AddressRange {
size_t from;
size_t to;
char *data;
};
// gets time in milliseconds
uint64_t GetCurTime(void);
char *GetOption(const char *name, int argc, char** argv);
void GetOptionAll(const char *name, int argc, char** argv, std::list<char *> *results);
bool GetBinaryOption(const char *name, int argc, char** argv, bool default_value);
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32)
DWORD FindProcessId(char * process_name);
#endif
int GetIntOption(const char *name, int argc, char** argv, int default_value);
char *ArgvToCmd(int argc, char** argv);
#endif