forked from cseagle/blc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparamid.hh
82 lines (76 loc) · 2.79 KB
/
paramid.hh
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
/* ###
* IP: GHIDRA
*
* 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
*
* http://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 __PARAMID_HH__
#define __PARAMID_HH__
#include "funcdata.hh"
namespace ghidra {
extern ElementId ELEM_PARAMMEASURES; ///< Marshaling element \<parammeasures>
extern ElementId ELEM_PROTO; ///< Marshaling element \<proto>
extern ElementId ELEM_RANK; ///< Marshaling element \<rank>
class ParamMeasure {
public:
enum ParamIDIO {
INPUT = 0,
OUTPUT = 1
};
enum ParamRank {
BESTRANK = 1,
DIRECTWRITEWITHOUTREAD = 1, //Output
DIRECTREAD = 2, //Input. Must be same as DIRECTWRITEWITHREAD so that walkforward as part of walkbackward works
// for detecting(not that DIRECTREAD is lower rank that DIRECTWRITEWITHOUTREAD)
DIRECTWRITEWITHREAD = 2, //Output
DIRECTWRITEUNKNOWNREAD = 3, //Output
SUBFNPARAM = 4, //Input
THISFNPARAM = 4, //Output
SUBFNRETURN = 5, //Output
THISFNRETURN = 5, //Input
INDIRECT = 6, //Input or Output
WORSTRANK = 7
};
struct WalkState {
bool best;
int4 depth;
ParamRank terminalrank;
};
private:
VarnodeData vndata;
Datatype *vntype;
ParamRank rank;
ParamIDIO io;
int4 numcalls;
void walkforward( WalkState &state, PcodeOp *ignoreop, Varnode *vn );
void walkbackward( WalkState &state, PcodeOp *ignoreop,Varnode *vn );
void updaterank( ParamRank rank_in,bool best ) { rank = (best==true) ? min( rank, rank_in ) : max( rank, rank_in ); }
public:
ParamMeasure( const Address &addr, int4 sz, Datatype *dt, ParamIDIO io_in) {
vndata.space=addr.getSpace(); vndata.offset=addr.getOffset(); vndata.size = sz; vntype=dt; io = io_in; rank=WORSTRANK; }
void calculateRank(bool best,Varnode *basevn,PcodeOp *ignoreop);
void encode( Encoder &encoder,ElementId &tag,bool moredetail ) const;
void savePretty( ostream &s,bool moredetail ) const;
int4 getMeasure(void) const { return (int4) rank; }
};
class ParamIDAnalysis
{
Funcdata *fd;
list<ParamMeasure> InputParamMeasures;
list<ParamMeasure> OutputParamMeasures;
public:
ParamIDAnalysis( Funcdata *fd_in, bool justproto );
void encode( Encoder &encoder, bool moredetail ) const;
void savePretty( ostream &s, bool moredetail ) const;
};
} // End namespace ghidra
#endif //ifndef __PARAMID_HH__