forked from Vector35/workflow_objc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInfoHandler.h
77 lines (63 loc) · 2.46 KB
/
InfoHandler.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
/*
* Copyright (c) 2022-2023 Jon Palmisciano. All rights reserved.
*
* Use of this source code is governed by the BSD 3-Clause license; the full
* terms of the license can be found in the LICENSE.txt file.
*/
#pragma once
#include "Core/AnalysisInfo.h"
#include "BinaryNinja.h"
using SharedAnalysisInfo = std::shared_ptr<ObjectiveNinja::AnalysisInfo>;
/**
* Utility class for applying collected AnalysisInfo to a database.
*
* InfoHandler is meant to be used after all analyzers intended to run on a
* database have finished. The resulting AnalysisInfo will then be used to
* create data variables, symbols, etc. in the database.
*/
class InfoHandler {
/**
* Sanitize a string by searching for series of alphanumeric characters and
* concatenating the matches. The input string will first be truncated.
*/
static std::string sanitizeText(const std::string&);
/**
* Sanitize a selector so that it round-trips the type parser. Colon
* characters will be replaced underscores.
*/
static std::string sanitizeSelector(const std::string&);
/**
* Get the type with the given name defined inside the BinaryView.
*/
static inline TypeRef namedType(BinaryViewRef, const std::string&);
/**
* Create a type for a string (character array) of the given size.
*/
static inline TypeRef stringType(size_t);
/**
* Shorthand function for defining a user data variable.
*/
static inline void defineVariable(BinaryViewRef, uint64_t, TypeRef);
/**
* Shorthand function for defining a user symbol, with an optional prefix.
*/
static inline void defineSymbol(BinaryViewRef, uint64_t,
const std::string& name, const std::string& prefix = "",
BNSymbolType type = DataSymbol);
/**
* Shorthand function for defining a user data reference.
*/
static inline void defineReference(BinaryViewRef bv, uint64_t from, uint64_t to);
/**
* Create a symbol and apply return/argument types for a method.
*/
static void applyMethodType(BinaryViewRef, const ObjectiveNinja::ClassInfo&,
const BinaryNinja::QualifiedName& classTypeName, const ObjectiveNinja::MethodInfo&);
static BinaryNinja::QualifiedName createClassType(BinaryViewRef,
const ObjectiveNinja::ClassInfo&, const ObjectiveNinja::IvarListInfo&);
public:
/**
* Apply AnalysisInfo to a BinaryView.
*/
static void applyInfoToView(SharedAnalysisInfo, BinaryViewRef);
};