-
Notifications
You must be signed in to change notification settings - Fork 210
/
plugin.cpp
609 lines (507 loc) · 23.9 KB
/
plugin.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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
// Copyright (c) 2015-2024 Vector 35 Inc
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
#include "binaryninjaapi.h"
#include "lowlevelilinstruction.h"
#include "mediumlevelilinstruction.h"
#include "highlevelilinstruction.h"
using namespace BinaryNinja;
using namespace std;
PluginCommandContext::PluginCommandContext()
{
address = length = 0;
instrIndex = BN_INVALID_EXPR;
}
PluginCommand::PluginCommand(const BNPluginCommand& cmd)
{
m_command = cmd;
m_command.name = BNAllocString(cmd.name);
m_command.description = BNAllocString(cmd.description);
}
PluginCommand::PluginCommand(const PluginCommand& cmd)
{
m_command = cmd.m_command;
m_command.name = BNAllocString(cmd.m_command.name);
m_command.description = BNAllocString(cmd.m_command.description);
}
PluginCommand::~PluginCommand()
{
BNFreeString(m_command.name);
BNFreeString(m_command.description);
}
PluginCommand& PluginCommand::operator=(const PluginCommand& cmd)
{
BNFreeString(m_command.name);
BNFreeString(m_command.description);
m_command = cmd.m_command;
m_command.name = BNAllocString(cmd.m_command.name);
m_command.description = BNAllocString(cmd.m_command.description);
return *this;
}
void PluginCommand::DefaultPluginCommandActionCallback(void* ctxt, BNBinaryView* view)
{
RegisteredDefaultCommand* cmd = (RegisteredDefaultCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
cmd->action(viewObject);
}
void PluginCommand::AddressPluginCommandActionCallback(void* ctxt, BNBinaryView* view, uint64_t addr)
{
RegisteredAddressCommand* cmd = (RegisteredAddressCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
cmd->action(viewObject, addr);
}
void PluginCommand::RangePluginCommandActionCallback(void* ctxt, BNBinaryView* view, uint64_t addr, uint64_t len)
{
RegisteredRangeCommand* cmd = (RegisteredRangeCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
cmd->action(viewObject, addr, len);
}
void PluginCommand::FunctionPluginCommandActionCallback(void* ctxt, BNBinaryView* view, BNFunction* func)
{
RegisteredFunctionCommand* cmd = (RegisteredFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<Function> funcObject = new Function(BNNewFunctionReference(func));
cmd->action(viewObject, funcObject);
}
void PluginCommand::LowLevelILFunctionPluginCommandActionCallback(
void* ctxt, BNBinaryView* view, BNLowLevelILFunction* func)
{
RegisteredLowLevelILFunctionCommand* cmd = (RegisteredLowLevelILFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<LowLevelILFunction> funcObject = new LowLevelILFunction(BNNewLowLevelILFunctionReference(func));
cmd->action(viewObject, funcObject);
}
void PluginCommand::LowLevelILInstructionPluginCommandActionCallback(
void* ctxt, BNBinaryView* view, BNLowLevelILFunction* func, size_t instr)
{
RegisteredLowLevelILInstructionCommand* cmd = (RegisteredLowLevelILInstructionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<LowLevelILFunction> funcObject = new LowLevelILFunction(BNNewLowLevelILFunctionReference(func));
LowLevelILInstruction instrObject = funcObject->GetInstruction(instr);
cmd->action(viewObject, instrObject);
}
void PluginCommand::MediumLevelILFunctionPluginCommandActionCallback(
void* ctxt, BNBinaryView* view, BNMediumLevelILFunction* func)
{
RegisteredMediumLevelILFunctionCommand* cmd = (RegisteredMediumLevelILFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<MediumLevelILFunction> funcObject = new MediumLevelILFunction(BNNewMediumLevelILFunctionReference(func));
cmd->action(viewObject, funcObject);
}
void PluginCommand::MediumLevelILInstructionPluginCommandActionCallback(
void* ctxt, BNBinaryView* view, BNMediumLevelILFunction* func, size_t instr)
{
RegisteredMediumLevelILInstructionCommand* cmd = (RegisteredMediumLevelILInstructionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<MediumLevelILFunction> funcObject = new MediumLevelILFunction(BNNewMediumLevelILFunctionReference(func));
MediumLevelILInstruction instrObject = funcObject->GetInstruction(instr);
cmd->action(viewObject, instrObject);
}
void PluginCommand::HighLevelILFunctionPluginCommandActionCallback(
void* ctxt, BNBinaryView* view, BNHighLevelILFunction* func)
{
RegisteredHighLevelILFunctionCommand* cmd = (RegisteredHighLevelILFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<HighLevelILFunction> funcObject = new HighLevelILFunction(BNNewHighLevelILFunctionReference(func));
cmd->action(viewObject, funcObject);
}
void PluginCommand::HighLevelILInstructionPluginCommandActionCallback(
void* ctxt, BNBinaryView* view, BNHighLevelILFunction* func, size_t instr)
{
RegisteredHighLevelILInstructionCommand* cmd = (RegisteredHighLevelILInstructionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<HighLevelILFunction> funcObject = new HighLevelILFunction(BNNewHighLevelILFunctionReference(func));
HighLevelILInstruction instrObject = funcObject->GetInstruction(instr);
cmd->action(viewObject, instrObject);
}
bool PluginCommand::DefaultPluginCommandIsValidCallback(void* ctxt, BNBinaryView* view)
{
RegisteredDefaultCommand* cmd = (RegisteredDefaultCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
return cmd->isValid(viewObject);
}
bool PluginCommand::AddressPluginCommandIsValidCallback(void* ctxt, BNBinaryView* view, uint64_t addr)
{
RegisteredAddressCommand* cmd = (RegisteredAddressCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
return cmd->isValid(viewObject, addr);
}
bool PluginCommand::RangePluginCommandIsValidCallback(void* ctxt, BNBinaryView* view, uint64_t addr, uint64_t len)
{
RegisteredRangeCommand* cmd = (RegisteredRangeCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
return cmd->isValid(viewObject, addr, len);
}
bool PluginCommand::FunctionPluginCommandIsValidCallback(void* ctxt, BNBinaryView* view, BNFunction* func)
{
RegisteredFunctionCommand* cmd = (RegisteredFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<Function> funcObject = new Function(BNNewFunctionReference(func));
return cmd->isValid(viewObject, funcObject);
}
bool PluginCommand::LowLevelILFunctionPluginCommandIsValidCallback(
void* ctxt, BNBinaryView* view, BNLowLevelILFunction* func)
{
RegisteredLowLevelILFunctionCommand* cmd = (RegisteredLowLevelILFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<LowLevelILFunction> funcObject = new LowLevelILFunction(BNNewLowLevelILFunctionReference(func));
return cmd->isValid(viewObject, funcObject);
}
bool PluginCommand::LowLevelILInstructionPluginCommandIsValidCallback(
void* ctxt, BNBinaryView* view, BNLowLevelILFunction* func, size_t instr)
{
RegisteredLowLevelILInstructionCommand* cmd = (RegisteredLowLevelILInstructionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<LowLevelILFunction> funcObject = new LowLevelILFunction(BNNewLowLevelILFunctionReference(func));
LowLevelILInstruction instrObject = funcObject->GetInstruction(instr);
return cmd->isValid(viewObject, instrObject);
}
bool PluginCommand::MediumLevelILFunctionPluginCommandIsValidCallback(
void* ctxt, BNBinaryView* view, BNMediumLevelILFunction* func)
{
RegisteredMediumLevelILFunctionCommand* cmd = (RegisteredMediumLevelILFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<MediumLevelILFunction> funcObject = new MediumLevelILFunction(BNNewMediumLevelILFunctionReference(func));
return cmd->isValid(viewObject, funcObject);
}
bool PluginCommand::MediumLevelILInstructionPluginCommandIsValidCallback(
void* ctxt, BNBinaryView* view, BNMediumLevelILFunction* func, size_t instr)
{
RegisteredMediumLevelILInstructionCommand* cmd = (RegisteredMediumLevelILInstructionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<MediumLevelILFunction> funcObject = new MediumLevelILFunction(BNNewMediumLevelILFunctionReference(func));
MediumLevelILInstruction instrObject = funcObject->GetInstruction(instr);
return cmd->isValid(viewObject, instrObject);
}
bool PluginCommand::HighLevelILFunctionPluginCommandIsValidCallback(
void* ctxt, BNBinaryView* view, BNHighLevelILFunction* func)
{
RegisteredHighLevelILFunctionCommand* cmd = (RegisteredHighLevelILFunctionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<HighLevelILFunction> funcObject = new HighLevelILFunction(BNNewHighLevelILFunctionReference(func));
return cmd->isValid(viewObject, funcObject);
}
bool PluginCommand::HighLevelILInstructionPluginCommandIsValidCallback(
void* ctxt, BNBinaryView* view, BNHighLevelILFunction* func, size_t instr)
{
RegisteredHighLevelILInstructionCommand* cmd = (RegisteredHighLevelILInstructionCommand*)ctxt;
Ref<BinaryView> viewObject = new BinaryView(BNNewViewReference(view));
Ref<HighLevelILFunction> funcObject = new HighLevelILFunction(BNNewHighLevelILFunctionReference(func));
HighLevelILInstruction instrObject = funcObject->GetInstruction(instr);
return cmd->isValid(viewObject, instrObject);
}
void PluginCommand::Register(
const string& name, const string& description, const function<void(BinaryView* view)>& action)
{
Register(name, description, action, [](BinaryView*) { return true; });
}
void PluginCommand::Register(const string& name, const string& description,
const function<void(BinaryView* view)>& action, const function<bool(BinaryView* view)>& isValid)
{
RegisteredDefaultCommand* cmd = new RegisteredDefaultCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommand(name.c_str(), description.c_str(), DefaultPluginCommandActionCallback,
DefaultPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForAddress(
const string& name, const string& description, const function<void(BinaryView* view, uint64_t addr)>& action)
{
RegisterForAddress(name, description, action, [](BinaryView*, uint64_t) { return true; });
}
void PluginCommand::RegisterForAddress(const string& name, const string& description,
const function<void(BinaryView* view, uint64_t addr)>& action,
const function<bool(BinaryView* view, uint64_t addr)>& isValid)
{
RegisteredAddressCommand* cmd = new RegisteredAddressCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForAddress(name.c_str(), description.c_str(), AddressPluginCommandActionCallback,
AddressPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForRange(const string& name, const string& description,
const function<void(BinaryView* view, uint64_t addr, uint64_t len)>& action)
{
RegisterForRange(name, description, action, [](BinaryView*, uint64_t, uint64_t) { return true; });
}
void PluginCommand::RegisterForRange(const string& name, const string& description,
const function<void(BinaryView* view, uint64_t addr, uint64_t len)>& action,
const function<bool(BinaryView* view, uint64_t addr, uint64_t len)>& isValid)
{
RegisteredRangeCommand* cmd = new RegisteredRangeCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForRange(
name.c_str(), description.c_str(), RangePluginCommandActionCallback, RangePluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForFunction(
const string& name, const string& description, const function<void(BinaryView* view, Function* func)>& action)
{
RegisterForFunction(name, description, action, [](BinaryView*, Function*) { return true; });
}
void PluginCommand::RegisterForFunction(const string& name, const string& description,
const function<void(BinaryView* view, Function* func)>& action,
const function<bool(BinaryView* view, Function* func)>& isValid)
{
RegisteredFunctionCommand* cmd = new RegisteredFunctionCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForFunction(name.c_str(), description.c_str(), FunctionPluginCommandActionCallback,
FunctionPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForLowLevelILFunction(const string& name, const string& description,
const function<void(BinaryView* view, LowLevelILFunction* func)>& action)
{
RegisterForLowLevelILFunction(name, description, action, [](BinaryView*, LowLevelILFunction*) { return true; });
}
void PluginCommand::RegisterForLowLevelILFunction(const string& name, const string& description,
const function<void(BinaryView* view, LowLevelILFunction* func)>& action,
const function<bool(BinaryView* view, LowLevelILFunction* func)>& isValid)
{
RegisteredLowLevelILFunctionCommand* cmd = new RegisteredLowLevelILFunctionCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForLowLevelILFunction(name.c_str(), description.c_str(),
LowLevelILFunctionPluginCommandActionCallback, LowLevelILFunctionPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForLowLevelILInstruction(const string& name, const string& description,
const function<void(BinaryView* view, const LowLevelILInstruction& instr)>& action)
{
RegisterForLowLevelILInstruction(
name, description, action, [](BinaryView*, const LowLevelILInstruction&) { return true; });
}
void PluginCommand::RegisterForLowLevelILInstruction(const string& name, const string& description,
const function<void(BinaryView* view, const LowLevelILInstruction& instr)>& action,
const function<bool(BinaryView* view, const LowLevelILInstruction& instr)>& isValid)
{
RegisteredLowLevelILInstructionCommand* cmd = new RegisteredLowLevelILInstructionCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForLowLevelILInstruction(name.c_str(), description.c_str(),
LowLevelILInstructionPluginCommandActionCallback, LowLevelILInstructionPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForMediumLevelILFunction(const string& name, const string& description,
const function<void(BinaryView* view, MediumLevelILFunction* func)>& action)
{
RegisterForMediumLevelILFunction(
name, description, action, [](BinaryView*, MediumLevelILFunction*) { return true; });
}
void PluginCommand::RegisterForMediumLevelILFunction(const string& name, const string& description,
const function<void(BinaryView* view, MediumLevelILFunction* func)>& action,
const function<bool(BinaryView* view, MediumLevelILFunction* func)>& isValid)
{
RegisteredMediumLevelILFunctionCommand* cmd = new RegisteredMediumLevelILFunctionCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForMediumLevelILFunction(name.c_str(), description.c_str(),
MediumLevelILFunctionPluginCommandActionCallback, MediumLevelILFunctionPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForMediumLevelILInstruction(const string& name, const string& description,
const function<void(BinaryView* view, const MediumLevelILInstruction& instr)>& action)
{
RegisterForMediumLevelILInstruction(
name, description, action, [](BinaryView*, const MediumLevelILInstruction&) { return true; });
}
void PluginCommand::RegisterForMediumLevelILInstruction(const string& name, const string& description,
const function<void(BinaryView* view, const MediumLevelILInstruction& instr)>& action,
const function<bool(BinaryView* view, const MediumLevelILInstruction& instr)>& isValid)
{
RegisteredMediumLevelILInstructionCommand* cmd = new RegisteredMediumLevelILInstructionCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForMediumLevelILInstruction(name.c_str(), description.c_str(),
MediumLevelILInstructionPluginCommandActionCallback, MediumLevelILInstructionPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForHighLevelILFunction(const string& name, const string& description,
const function<void(BinaryView* view, HighLevelILFunction* func)>& action)
{
RegisterForHighLevelILFunction(name, description, action, [](BinaryView*, HighLevelILFunction*) { return true; });
}
void PluginCommand::RegisterForHighLevelILFunction(const string& name, const string& description,
const function<void(BinaryView* view, HighLevelILFunction* func)>& action,
const function<bool(BinaryView* view, HighLevelILFunction* func)>& isValid)
{
RegisteredHighLevelILFunctionCommand* cmd = new RegisteredHighLevelILFunctionCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForHighLevelILFunction(name.c_str(), description.c_str(),
HighLevelILFunctionPluginCommandActionCallback, HighLevelILFunctionPluginCommandIsValidCallback, cmd);
}
void PluginCommand::RegisterForHighLevelILInstruction(const string& name, const string& description,
const function<void(BinaryView* view, const HighLevelILInstruction& instr)>& action)
{
RegisterForHighLevelILInstruction(
name, description, action, [](BinaryView*, const HighLevelILInstruction&) { return true; });
}
void PluginCommand::RegisterForHighLevelILInstruction(const string& name, const string& description,
const function<void(BinaryView* view, const HighLevelILInstruction& instr)>& action,
const function<bool(BinaryView* view, const HighLevelILInstruction& instr)>& isValid)
{
RegisteredHighLevelILInstructionCommand* cmd = new RegisteredHighLevelILInstructionCommand;
cmd->action = action;
cmd->isValid = isValid;
BNRegisterPluginCommandForHighLevelILInstruction(name.c_str(), description.c_str(),
HighLevelILInstructionPluginCommandActionCallback, HighLevelILInstructionPluginCommandIsValidCallback, cmd);
}
vector<PluginCommand> PluginCommand::GetList()
{
vector<PluginCommand> result;
size_t count;
BNPluginCommand* commands = BNGetAllPluginCommands(&count);
result.reserve(count);
for (size_t i = 0; i < count; i++)
result.emplace_back(commands[i]);
BNFreePluginCommandList(commands);
return result;
}
vector<PluginCommand> PluginCommand::GetValidList(const PluginCommandContext& ctxt)
{
vector<PluginCommand> commands = GetList();
vector<PluginCommand> result;
for (auto& i : commands)
{
if (i.IsValid(ctxt))
result.push_back(i);
}
return result;
}
bool PluginCommand::IsValid(const PluginCommandContext& ctxt) const
{
if (!ctxt.binaryView)
return false;
switch (m_command.type)
{
case DefaultPluginCommand:
if (!m_command.defaultIsValid)
return true;
return m_command.defaultIsValid(m_command.context, ctxt.binaryView->GetObject());
case AddressPluginCommand:
if (!m_command.addressIsValid)
return true;
return m_command.addressIsValid(m_command.context, ctxt.binaryView->GetObject(), ctxt.address);
case RangePluginCommand:
if (ctxt.length == 0)
return false;
if (!m_command.rangeIsValid)
return true;
return m_command.rangeIsValid(m_command.context, ctxt.binaryView->GetObject(), ctxt.address, ctxt.length);
case FunctionPluginCommand:
if (!ctxt.function)
return false;
if (!m_command.functionIsValid)
return true;
return m_command.functionIsValid(m_command.context, ctxt.binaryView->GetObject(), ctxt.function->GetObject());
case LowLevelILFunctionPluginCommand:
if (!ctxt.lowLevelILFunction)
return false;
if (!m_command.lowLevelILFunctionIsValid)
return true;
return m_command.lowLevelILFunctionIsValid(
m_command.context, ctxt.binaryView->GetObject(), ctxt.lowLevelILFunction->GetObject());
case LowLevelILInstructionPluginCommand:
if (!ctxt.lowLevelILFunction)
return false;
if (ctxt.instrIndex == BN_INVALID_EXPR)
return false;
if (!m_command.lowLevelILInstructionIsValid)
return true;
return m_command.lowLevelILInstructionIsValid(
m_command.context, ctxt.binaryView->GetObject(), ctxt.lowLevelILFunction->GetObject(), ctxt.instrIndex);
case MediumLevelILFunctionPluginCommand:
if (!ctxt.mediumLevelILFunction)
return false;
if (!m_command.mediumLevelILFunctionIsValid)
return true;
return m_command.mediumLevelILFunctionIsValid(
m_command.context, ctxt.binaryView->GetObject(), ctxt.mediumLevelILFunction->GetObject());
case MediumLevelILInstructionPluginCommand:
if (!ctxt.mediumLevelILFunction)
return false;
if (ctxt.instrIndex == BN_INVALID_EXPR)
return false;
if (!m_command.mediumLevelILInstructionIsValid)
return true;
return m_command.mediumLevelILInstructionIsValid(
m_command.context, ctxt.binaryView->GetObject(), ctxt.mediumLevelILFunction->GetObject(), ctxt.instrIndex);
case HighLevelILFunctionPluginCommand:
if (!ctxt.highLevelILFunction)
return false;
if (!m_command.highLevelILFunctionIsValid)
return true;
return m_command.highLevelILFunctionIsValid(
m_command.context, ctxt.binaryView->GetObject(), ctxt.highLevelILFunction->GetObject());
case HighLevelILInstructionPluginCommand:
if (!ctxt.highLevelILFunction)
return false;
if (ctxt.instrIndex == BN_INVALID_EXPR)
return false;
if (!m_command.highLevelILInstructionIsValid)
return true;
return m_command.highLevelILInstructionIsValid(
m_command.context, ctxt.binaryView->GetObject(), ctxt.highLevelILFunction->GetObject(), ctxt.instrIndex);
default:
return false;
}
}
void PluginCommand::Execute(const PluginCommandContext& ctxt) const
{
if (!IsValid(ctxt))
return;
switch (m_command.type)
{
case DefaultPluginCommand:
m_command.defaultCommand(m_command.context, ctxt.binaryView->GetObject());
break;
case AddressPluginCommand:
m_command.addressCommand(m_command.context, ctxt.binaryView->GetObject(), ctxt.address);
break;
case RangePluginCommand:
m_command.rangeCommand(m_command.context, ctxt.binaryView->GetObject(), ctxt.address, ctxt.length);
break;
case FunctionPluginCommand:
m_command.functionCommand(m_command.context, ctxt.binaryView->GetObject(), ctxt.function->GetObject());
break;
case LowLevelILFunctionPluginCommand:
m_command.lowLevelILFunctionCommand(
m_command.context, ctxt.binaryView->GetObject(), ctxt.lowLevelILFunction->GetObject());
break;
case LowLevelILInstructionPluginCommand:
m_command.lowLevelILInstructionCommand(
m_command.context, ctxt.binaryView->GetObject(), ctxt.lowLevelILFunction->GetObject(), ctxt.instrIndex);
break;
case MediumLevelILFunctionPluginCommand:
m_command.mediumLevelILFunctionCommand(
m_command.context, ctxt.binaryView->GetObject(), ctxt.mediumLevelILFunction->GetObject());
break;
case MediumLevelILInstructionPluginCommand:
m_command.mediumLevelILInstructionCommand(
m_command.context, ctxt.binaryView->GetObject(), ctxt.mediumLevelILFunction->GetObject(), ctxt.instrIndex);
break;
case HighLevelILFunctionPluginCommand:
m_command.highLevelILFunctionCommand(
m_command.context, ctxt.binaryView->GetObject(), ctxt.highLevelILFunction->GetObject());
break;
case HighLevelILInstructionPluginCommand:
m_command.highLevelILInstructionCommand(
m_command.context, ctxt.binaryView->GetObject(), ctxt.highLevelILFunction->GetObject(), ctxt.instrIndex);
break;
default:
break;
}
}