-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsig.hpp
179 lines (143 loc) · 3.61 KB
/
sig.hpp
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
Patchdiff2
Portions (C) 2010 - 2011 Nicolas Pouvesle
Portions (C) 2007 - 2009 Tenable Network Security, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SIG_H__
#define __SIG_H__
#include "precomp.hpp"
#define DIFF_UNMATCHED -1
#define CLASS_SIG 0xACDCACDC
#define SIG_PRED 1
#define SIG_SUCC 2
#define CHECK_REF 0
#define DO_NOT_CHECK_REF 1
#ifdef _WINDOWS
#define OS_CDECL __cdecl
#else
#define OS_CDECL
#endif
typedef struct signature psig_t;
typedef struct dc_sig * pdc_sig;
struct dc_sig
{
psig_t * sig;
bool removed;
pdc_sig prev;
pdc_sig next;
};
typedef struct dc_sig dpsig_t;
struct c_list
{
size_t num;
dpsig_t * pos; // position in sigs list
dpsig_t * sigs; // chained list
size_t nmatch; // number of matched element
dpsig_t * msigs; // matched list
};
typedef struct c_list clist_t;
typedef struct fct_ref * pfct_ref;
struct fct_ref
{
ea_t ea;
int type;
char rtype;
pfct_ref next;
};
typedef struct fct_ref fref_t;
struct fct_refs
{
int num;
fref_t * list;
};
typedef struct fct_refs frefs_t;
struct dline
{
int num;
int available;
char * lines;
};
typedef struct dline dline_t;
typedef struct signature * psignature;
struct signature
{
char * name;
ea_t startEA;
ea_t matchedEA;
int mtype;
psignature msig;
int node;
int id_crc;
int nfile;
int type;
int flag;
unsigned long sig;
unsigned long hash;
unsigned long hash2;
unsigned long crc_hash;
unsigned long str_hash;
unsigned long lines;
frefs_t * prefs;
frefs_t * srefs;
clist_t * cp;
clist_t * cs;
dline_t dl;
};
typedef struct sig_list * psig_list;
struct sig_list
{
size_t num;
size_t org_num;
char * file;
bool dclk;
graph_viewer_t *gv;
bool unique;
psig_list msl;
psig_t ** sigs;
};
typedef struct sig_list slist_t;
void siglist_free(slist_t *);
void siglist_partial_free(slist_t *);
int siglist_save(slist_t *, const char *);
slist_t * siglist_load(const char *);
slist_t * siglist_init(size_t, char *);
psig_t * sig_generate(size_t, qvector<ea_t> &);
psig_t * sig_class_generate(ea_t);
void clist_free(clist_t *);
void siglist_free(slist_t **);
bool siglist_realloc(slist_t *, size_t);
void siglist_add(slist_t *, psig_t *);
void siglist_remove(slist_t *, size_t);
void siglist_sort(slist_t *);
ea_t sig_get_start(psig_t * );
void sig_set_nfile(psig_t *, int);
void sig_set_matched_sig(psig_t *, psig_t *, int);
psig_t * sig_get_matched_sig(psig_t *);
void sig_set_matched_ea(psig_t *, ea_t);
ea_t sig_get_matched_ea(psig_t *);
int sig_get_matched_type(psig_t *);
frefs_t * sig_get_preds(psig_t *);
frefs_t * sig_get_succs(psig_t *);
int sig_add_pref(psig_t *, ea_t, int, char);
int sig_add_sref(psig_t *, ea_t, int, char);
clist_t * sig_get_crefs(psig_t *, int);
void sig_set_crefs(psig_t *, int, clist_t *);
int OS_CDECL sig_compare(const void *, const void *);
psig_t * sig_init();
int sig_add_block(psig_t *, short *, ea_t, ea_t, bool, char);
void sig_set_start(psig_t *, ea_t);
void sig_set_name(psig_t *, const char *);
int sig_calc_sighash(psig_t *, short *, int);
void sig_free(psig_t *);
bool sig_is_class(psig_t *);
char * pget_func_name(ea_t, char *, size_t);
#endif