-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.cpp
113 lines (95 loc) · 2.38 KB
/
main.cpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <iostream>
#include <fstream>
#include <string>
#include <cstring>
#include <stdexcept>
#include <vector>
#include <map>
#include <capstone/capstone.h>
#include "wrapper.h"
#include "functions.h"
using namespace std;
typedef map<string, string> param_map;
//parse argv's arguments of type --name=val to a nice map
pair< param_map, vector<string> > get_parameters(const vector<string>& argv, param_map pars = param_map())
{
vector<string> others;
for (auto param : argv)
{
if (param.size() > 2 && param[0] == '-' && param[1] == '-')
{
auto eq_index = param.find_first_of('=');
auto name_len = eq_index - 2;
auto name = param.substr(2, name_len);
auto value = param.substr(eq_index + 1);
pars[name] = value;
}
else
{
others.push_back(param);
}
}
return make_pair(pars, others);
}
void print_usage(const char* prgname)
{
cerr <<"Usage: " <<prgname <<" FILENAME ADDRESS [ADDRESS ...]" <<endl;
return;
}
int main(int argc, char** __argv)
{
if (argc < 3)
{
print_usage(__argv[0]);
return 0;
}
vector<string> argv (__argv + 1, __argv + argc);
param_map default_params = {
{"arch", "32"}
};
auto t = get_parameters(argv, default_params);
auto parameters = t.first;
auto args = t.second;
//parse parameters to useful values
auto ARCH = stoi(parameters["arch"]);
//the syntax is that filename comes first
auto file_name = args.front();
//set iteration at second string
auto iter = args.begin(); ++iter;
for (; iter != args.end(); ++iter)
{
try
{
auto addr = stoull(*iter, nullptr, 16);
auto v_addr = addr + 0x400000; //a wild guess
OneStepDisasm d (file_name, ARCH, addr, v_addr);
auto type = determine(d);
switch (type)
{
case cdecl:
cout << "Function at " << *iter << ": cdecl" << endl;
break;
case stdcall:
cout << "Function at " << *iter << ": stdcall" << endl;
break;
case msfastcall:
cout << "Function at " << *iter << ": msfastcall" << endl;
break;
default:
cout <<"whatever, idc\n";
}
}
catch (const invalid_argument& e)
{
cerr << "Could not convert \"" << *iter << "\"to address: " << e.what() << endl;
}
catch (const bad_alloc& e)
{
cerr << "Could not allocate space for file " << file_name << endl;
}
catch (const runtime_error& e)
{
cerr << "Exception caught when parsing argument \"" << *iter << "\": " << e.what() <<endl;
}
}
}