-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathdebuggerinfowidget.cpp
More file actions
1140 lines (953 loc) · 31.1 KB
/
debuggerinfowidget.cpp
File metadata and controls
1140 lines (953 loc) · 31.1 KB
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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright 2020-2025 Vector 35 Inc.
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.
*/
#include <QPainter>
#include <QHeaderView>
#include <QGuiApplication>
#include <QMimeData>
#include <QClipboard>
#include <QMenu>
#include <QAction>
#include <QContextMenuEvent>
#include "ui.h"
#include "debuggerinfowidget.h"
#include "lowlevelilinstruction.h"
#include "mediumlevelilinstruction.h"
#include "highlevelilinstruction.h"
#include "binaryninjaapi.h"
#include "fmt/format.h"
using namespace BinaryNinja;
using namespace std;
DebugInfoSidebarWidget::DebugInfoSidebarWidget(BinaryViewRef data): SidebarWidget("Debugger Info"), m_data(data)
{
m_debugger = DebuggerController::GetController(data);
auto* layout = new QVBoxLayout();
layout->setContentsMargins(0, 0, 0, 0);
m_entryList = new DebuggerInfoTable(data);
layout->addWidget(m_entryList);
setLayout(layout);
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForLLILCalls(LowLevelILFunctionRef llil,
const LowLevelILInstruction &instr)
{
std::vector<DebuggerInfoEntry> result;
if (instr.operation != LLIL_CALL && instr.operation != LLIL_TAILCALL)
return result;
auto dest = instr.GetDestExpr();
if (dest.operation != LLIL_CONST_PTR && dest.operation != LLIL_CONST)
return result;
auto callTarget = dest.GetConstant();
auto functions = m_data->GetAnalysisFunctionsForAddress(callTarget);
if (functions.empty())
return result;
auto func = functions[0];
if (!func)
return result;
auto arch = func->GetArchitecture();
if (!arch)
return result;
for (const auto& param: func->GetParameterVariables().GetValue())
{
switch (param.type)
{
case RegisterVariableSourceType:
{
auto paramName = func->GetVariableName(param);
auto reg = param.storage;
auto regName = arch->GetRegisterName(reg);
auto value = m_debugger->GetRegisterValue(regName);
auto hints = m_debugger->GetAddressInformation(value);
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(LocalVariableToken, paramName);
tokens.emplace_back(TextToken, " @ ");
tokens.emplace_back(RegisterToken, regName);
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
case StackVariableSourceType:
{
auto offset = param.storage;
// Account for the return address on the stack for x64/x86_64, not sure if we should do it for other arch
offset -= arch->GetAddressSize();
auto realOffset = offset + m_debugger->StackPointer();
BinaryReader reader(m_data);
reader.Seek(realOffset);
auto value = reader.ReadPointer();
auto hints = m_debugger->GetAddressInformation(value);
auto paramName = func->GetVariableName(param);
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(LocalVariableToken, paramName);
tokens.emplace_back(TextToken, " @ ");
auto stackReg = arch->GetStackPointerRegister();
auto stackRegName = arch->GetRegisterName(stackReg);
tokens.emplace_back(RegisterToken, stackRegName);
if (offset != 0)
{
tokens.emplace_back(TextToken, " + ");
char buf[64] = {0};
snprintf(buf, sizeof(buf), "%#llx", offset);
tokens.emplace_back(IntegerToken, buf, offset);
}
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
case FlagVariableSourceType:
break;
}
}
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForLLILConditions(LowLevelILFunctionRef llil,
const LowLevelILInstruction &instr)
{
std::vector<DebuggerInfoEntry> result;
if (instr.operation != LLIL_IF)
return result;
auto func = llil->GetFunction();
auto condition = instr.GetConditionExpr<LLIL_IF>();
intx::uint512 value;
if (!m_debugger->ComputeExprValue(llil, condition, value))
return result;
// The value of a conditional expression must be 0 or 1 if it can be evaluated
if ((value != 1) && (value != 0))
return result;
std::vector<InstructionTextToken> tokens;
if (!llil->GetExprText(func->GetArchitecture(), condition.exprIndex, tokens))
return result;
auto trueBranch = instr.GetTrueTarget<LLIL_IF>();
auto falseBranch = instr.GetFalseTarget<LLIL_IF>();
auto targetIL = value == 1 ? trueBranch : falseBranch;
auto il = llil->GetInstruction(targetIL);
auto targetAddr = il.address;
string hints = fmt::format("Branch to {} @ {:#x}", targetIL, targetAddr);
result.emplace_back(tokens, value, hints, instr.instructionIndex, instr.exprIndex, instr.address);
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForLLIL(LowLevelILFunctionRef llil, const LowLevelILInstruction &instr)
{
std::vector<DebuggerInfoEntry> result;
auto func = llil->GetFunction();
for (const auto operand: instr.GetOperands())
{
switch (operand.GetType())
{
case ExprLowLevelOperand:
{
intx::uint512 value;
if (!m_debugger->ComputeExprValue(llil, operand.GetExpr(), value))
continue;
std::vector<InstructionTextToken> tokens;
if (!llil->GetExprText(func->GetArchitecture(), operand.GetExpr().exprIndex, tokens))
continue;
auto hints = m_debugger->GetAddressInformation(value);
result.emplace_back(tokens, value, hints, instr.instructionIndex, operand.GetExpr().exprIndex, instr.address);
break;
}
case RegisterLowLevelOperand:
{
auto reg = operand.GetRegister();
if (LLIL_REG_IS_TEMP(reg))
break;
auto name = func->GetArchitecture()->GetRegisterName(reg);
auto value = m_debugger->GetRegisterValue(name);
auto hints = m_debugger->GetAddressInformation(value);
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(RegisterToken, name);
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
default:
break;
}
}
// Display the info of the function arguments if the current LLIL is a call instruction
auto lines = getInfoForLLILCalls(llil, instr);
if (!lines.empty())
result.insert(result.end(), lines.begin(), lines.end());
// Display the info of the conditional expressions
lines = getInfoForLLILConditions(llil, instr);
if (!lines.empty())
result.insert(result.end(), lines.begin(), lines.end());
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForMLIL(MediumLevelILFunctionRef mlil,
const MediumLevelILInstruction& instr)
{
std::vector<DebuggerInfoEntry> result;
auto func = mlil->GetFunction();
for (const auto operand: instr.GetOperands())
{
switch (operand.GetType())
{
case ExprMediumLevelOperand:
{
intx::uint512 value;
if (!m_debugger->ComputeExprValue(mlil, operand.GetExpr(), value))
continue;
std::vector<InstructionTextToken> tokens;
if (!mlil->GetExprText(func->GetArchitecture(), operand.GetExpr().exprIndex, tokens))
continue;
auto hints = m_debugger->GetAddressInformation(value);
result.emplace_back(tokens, value, hints, instr.instructionIndex, operand.GetExpr().exprIndex, instr.address);
break;
}
case VariableMediumLevelOperand:
{
intx::uint512 value;
auto var = operand.GetVariable();
if (!m_debugger->GetVariableValue(var, instr.address, instr.size, value))
break;
auto hints = m_debugger->GetAddressInformation(value);
std::vector<InstructionTextToken> tokens;
auto name = func->GetVariableName(var);
tokens.emplace_back(LocalVariableToken, name);
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
default:
break;
}
}
// Display the info of the function arguments if the current MLIL is a call instruction
auto lines = getInfoForMLILCalls(mlil, instr);
if (!lines.empty())
result.insert(result.end(), lines.begin(), lines.end());
// Display the info of the conditional expressions
lines = getInfoForMLILConditions(mlil, instr);
if (!lines.empty())
result.insert(result.end(), lines.begin(), lines.end());
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForMLILCalls(MediumLevelILFunctionRef mlil,
const MediumLevelILInstruction &instr)
{
std::vector<DebuggerInfoEntry> result;
if (instr.operation != MLIL_CALL && instr.operation != MLIL_TAILCALL)
return result;
auto dest = instr.GetDestExpr();
if (dest.operation != MLIL_CONST_PTR && dest.operation != MLIL_CONST)
return result;
auto callTarget = dest.GetConstant();
auto functions = m_data->GetAnalysisFunctionsForAddress(callTarget);
if (functions.empty())
return result;
auto func = functions[0];
if (!func)
return result;
auto arch = func->GetArchitecture();
if (!arch)
return result;
for (const auto& param: func->GetParameterVariables().GetValue())
{
switch (param.type)
{
case RegisterVariableSourceType:
{
auto paramName = func->GetVariableName(param);
auto reg = param.storage;
auto regName = arch->GetRegisterName(reg);
auto value = m_debugger->GetRegisterValue(regName);
auto hints = m_debugger->GetAddressInformation(value);
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(LocalVariableToken, paramName);
tokens.emplace_back(TextToken, " @ ");
tokens.emplace_back(RegisterToken, regName);
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
case StackVariableSourceType:
{
auto offset = param.storage;
// Account for the return address on the stack for x64/x86_64, not sure if we should do it for other arch
offset -= arch->GetAddressSize();
auto realOffset = offset + m_debugger->StackPointer();
BinaryReader reader(m_data);
reader.Seek(realOffset);
auto value = reader.ReadPointer();
auto hints = m_debugger->GetAddressInformation(value);
auto paramName = func->GetVariableName(param);
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(LocalVariableToken, paramName);
tokens.emplace_back(TextToken, " @ ");
auto stackReg = arch->GetStackPointerRegister();
auto stackRegName = arch->GetRegisterName(stackReg);
tokens.emplace_back(RegisterToken, stackRegName);
if (offset != 0)
{
tokens.emplace_back(TextToken, " + ");
char buf[64] = {0};
snprintf(buf, sizeof(buf), "%#llx", offset);
tokens.emplace_back(IntegerToken, buf, offset);
}
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
case FlagVariableSourceType:
break;
}
}
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForMLILConditions(MediumLevelILFunctionRef mlil,
const MediumLevelILInstruction &instr)
{
std::vector<DebuggerInfoEntry> result;
if (instr.operation != MLIL_IF)
return result;
auto func = mlil->GetFunction();
auto condition = instr.GetConditionExpr<MLIL_IF>();
intx::uint512 value;
if (!m_debugger->ComputeExprValue(mlil, condition, value))
return result;
// The value of a conditional expression must be 0 or 1 if it can be evaluated
if ((value != 1) && (value != 0))
return result;
std::vector<InstructionTextToken> tokens;
if (!mlil->GetExprText(func->GetArchitecture(), condition.exprIndex, tokens))
return result;
auto trueBranch = instr.GetTrueTarget<MLIL_IF>();
auto falseBranch = instr.GetFalseTarget<MLIL_IF>();
auto targetIL = value == 1 ? trueBranch : falseBranch;
auto il = mlil->GetInstruction(targetIL);
auto targetAddr = il.address;
string hints = fmt::format("Branch to {} @ {:#x}", targetIL, targetAddr);
result.emplace_back(tokens, value, hints, instr.instructionIndex, instr.exprIndex, instr.address);
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForHLIL(HighLevelILFunctionRef hlil,
const HighLevelILInstruction& instr)
{
std::vector<DebuggerInfoEntry> result;
auto func = hlil->GetFunction();
for (const auto operand: instr.GetOperands())
{
switch (operand.GetType())
{
case ExprHighLevelOperand:
{
intx::uint512 value;
if (!m_debugger->ComputeExprValue(hlil, operand.GetExpr(), value))
continue;
std::vector<DisassemblyTextLine> lines = hlil->GetExprText(operand.GetExpr().exprIndex);
if (lines.empty())
continue;
std::vector<InstructionTextToken> tokens;
for (const auto& line: lines)
tokens.insert(tokens.end(), line.tokens.begin(), line.tokens.end());
if (tokens.empty())
continue;
auto hints = m_debugger->GetAddressInformation(value);
result.emplace_back(tokens, value, hints, instr.instructionIndex, operand.GetExpr().exprIndex, instr.address);
break;
}
case VariableHighLevelOperand:
{
intx::uint512 value;
auto var = operand.GetVariable();
if (!m_debugger->GetVariableValue(var, instr.address, instr.size, value))
break;
auto hints = m_debugger->GetAddressInformation(value);
std::vector<InstructionTextToken> tokens;
auto name = func->GetVariableName(var);
tokens.emplace_back(LocalVariableToken, name);
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
default:
break;
}
}
// Display the info of the function arguments if the current HLIL is a call instruction
auto lines = getInfoForHLILCalls(hlil, instr);
if (!lines.empty())
result.insert(result.end(), lines.begin(), lines.end());
// Display the info of the conditional expressions
lines = getInfoForHLILConditions(hlil, instr);
if (!lines.empty())
result.insert(result.end(), lines.begin(), lines.end());
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForHLILCalls(HighLevelILFunctionRef hlil,
const HighLevelILInstruction &instr)
{
std::vector<DebuggerInfoEntry> result;
if (instr.operation != HLIL_CALL && instr.operation != HLIL_TAILCALL)
return result;
auto dest = instr.GetDestExpr();
if (dest.operation != HLIL_CONST_PTR && dest.operation != HLIL_CONST)
return result;
auto callTarget = dest.GetConstant();
auto functions = m_data->GetAnalysisFunctionsForAddress(callTarget);
if (functions.empty())
return result;
auto func = functions[0];
if (!func)
return result;
auto arch = func->GetArchitecture();
if (!arch)
return result;
for (const auto& param: func->GetParameterVariables().GetValue())
{
switch (param.type)
{
case RegisterVariableSourceType:
{
auto paramName = func->GetVariableName(param);
auto reg = param.storage;
auto regName = arch->GetRegisterName(reg);
auto value = m_debugger->GetRegisterValue(regName);
auto hints = m_debugger->GetAddressInformation(value);
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(LocalVariableToken, paramName);
tokens.emplace_back(TextToken, " @ ");
tokens.emplace_back(RegisterToken, regName);
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
case StackVariableSourceType:
{
auto offset = param.storage;
// Account for the return address on the stack for x64/x86_64, not sure if we should do it for other arch
offset -= arch->GetAddressSize();
auto realOffset = offset + m_debugger->StackPointer();
BinaryReader reader(m_data);
reader.Seek(realOffset);
auto value = reader.ReadPointer();
auto hints = m_debugger->GetAddressInformation(value);
auto paramName = func->GetVariableName(param);
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(LocalVariableToken, paramName);
tokens.emplace_back(TextToken, " @ ");
auto stackReg = arch->GetStackPointerRegister();
auto stackRegName = arch->GetRegisterName(stackReg);
tokens.emplace_back(RegisterToken, stackRegName);
if (offset != 0)
{
tokens.emplace_back(TextToken, " + ");
char buf[64] = {0};
snprintf(buf, sizeof(buf), "%#llx", offset);
tokens.emplace_back(IntegerToken, buf, offset);
}
result.emplace_back(tokens, value, hints, instr.instructionIndex, BN_INVALID_EXPR, instr.address);
break;
}
case FlagVariableSourceType:
break;
}
}
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getInfoForHLILConditions(HighLevelILFunctionRef hlil,
const HighLevelILInstruction &instr)
{
std::vector<DebuggerInfoEntry> result;
if (instr.operation != HLIL_IF)
return result;
auto func = hlil->GetFunction();
auto condition = instr.GetConditionExpr<HLIL_IF>();
intx::uint512 value;
if (!m_debugger->ComputeExprValue(hlil, condition, value))
return result;
// The value of a conditional expression must be 0 or 1 if it can be evaluated
if ((value != 1) && (value != 0))
return result;
std::vector<DisassemblyTextLine> lines = hlil->GetExprText(condition.exprIndex);
if (lines.empty())
return result;
std::vector<InstructionTextToken> tokens;
for (const auto& line: lines)
tokens.insert(tokens.end(), line.tokens.begin(), line.tokens.end());
if (tokens.empty())
return result;
auto trueBranch = instr.GetTrueExpr<HLIL_IF>();
auto falseBranch = instr.GetFalseExpr<HLIL_IF>();
auto targetIL = value == 1 ? trueBranch : falseBranch;
string hints = fmt::format("Branch to {} @ {:#x}", targetIL.instructionIndex, targetIL.address);
result.emplace_back(tokens, value, hints, instr.instructionIndex, instr.exprIndex, instr.address);
return result;
}
std::vector<DebuggerInfoEntry> DebuggerInfoTable::getStackInfo(const ViewLocation& location)
{
std::vector<DebuggerInfoEntry> result;
if (!m_debugger->IsConnected())
return result;
auto func = location.getFunction();
if (!func)
return result;
auto arch = func->GetArchitecture();
if (!arch)
return result;
uint64_t stackPointer = m_debugger->StackPointer();
size_t addressSize = arch->GetAddressSize();
// Get stack register name for display
auto stackReg = arch->GetStackPointerRegister();
auto stackRegName = arch->GetRegisterName(stackReg);
// Read stack contents - show configurable number of entries
BinaryReader reader(m_data);
for (int i = 0; i < m_stackEntryCount; i++)
{
ptrdiff_t offset = i * addressSize;
uint64_t stackAddress = stackPointer + offset;
try
{
reader.Seek(stackAddress);
uint64_t value = 0;
switch (addressSize)
{
case 1:
value = reader.Read8();
break;
case 2:
value = reader.Read16();
break;
case 4:
value = reader.Read32();
break;
case 8:
value = reader.Read64();
break;
default:
continue;
}
// Create tokens for stack entry display
std::vector<InstructionTextToken> tokens;
tokens.emplace_back(RegisterToken, stackRegName);
if (offset != 0)
{
tokens.emplace_back(TextToken, " + ");
tokens.emplace_back(IntegerToken, fmt::format("0x{:x}", offset), offset);
}
// Get hint information using the existing API
std::string hint = m_debugger->GetAddressInformation(value);
// Check if this looks like a return address by checking if it's in a function
// and the previous instruction is a call
if (hint.empty() && value != 0)
{
auto targetFunc = m_data->GetAnalysisFunction(m_data->GetDefaultPlatform(), value);
if (targetFunc)
{
// Check if the previous address contains a call instruction
auto prevAddr = value - 1; // Rough approximation
auto callingFunc = m_data->GetAnalysisFunction(m_data->GetDefaultPlatform(), prevAddr);
if (callingFunc)
{
hint = fmt::format("Return address to {}", targetFunc->GetSymbol() ?
targetFunc->GetSymbol()->GetShortName() :
fmt::format("func_{:x}", targetFunc->GetStart()));
}
}
}
// Create stack entry with storage address and stack flag
result.emplace_back(tokens, value, hint, BN_INVALID_EXPR, BN_INVALID_EXPR, stackAddress, stackAddress, true);
}
catch (const std::exception&)
{
// Skip this entry if we can't read it
continue;
}
}
return result;
}
vector<DebuggerInfoEntry> DebuggerInfoTable::getILInfoEntries(const ViewLocation &location)
{
vector<DebuggerInfoEntry> result;
if (!m_debugger->IsConnected())
return result;
switch (location.getILViewType().type)
{
case NormalFunctionGraph:
{
auto func = location.getFunction();
if (!func)
break;
auto addr = location.getOffset();
auto llil = func->GetLowLevelILIfAvailable();
if (!llil)
break;
auto llils = llil->GetInstructionsAt(func->GetArchitecture(), addr);
for (const auto index: llils)
{
auto instr = llil->GetInstruction(index);
auto entries = getInfoForLLIL(llil, instr);
result.insert(result.end(), entries.begin(), entries.end());
}
break;
}
case LowLevelILFunctionGraph:
{
auto func = location.getFunction();
if (!func)
break;
auto llil = func->GetLowLevelILIfAvailable();
if (!llil)
break;
if (location.getInstrIndex() == BN_INVALID_EXPR)
break;
auto instr = llil->GetInstruction(location.getInstrIndex());
auto entries = getInfoForLLIL(llil, instr);
result.insert(result.end(), entries.begin(), entries.end());
break;
}
case MediumLevelILFunctionGraph:
{
auto func = location.getFunction();
if (!func)
break;
auto mlil = func->GetMediumLevelILIfAvailable();
if (!mlil)
break;
if (location.getInstrIndex() == BN_INVALID_EXPR)
break;
auto instr = mlil->GetInstruction(location.getInstrIndex());
auto entries = getInfoForMLIL(mlil, instr);
result.insert(result.end(), entries.begin(), entries.end());
break;
}
case HighLevelILFunctionGraph:
case HighLevelLanguageRepresentationFunctionGraph:
{
auto func = location.getFunction();
if (!func)
break;
auto hlil = func->GetHighLevelILIfAvailable();
if (!hlil)
break;
if (location.getInstrIndex() == BN_INVALID_EXPR)
break;
auto instr = hlil->GetInstruction(location.getInstrIndex());
auto entries = getInfoForHLIL(hlil, instr);
result.insert(result.end(), entries.begin(), entries.end());
break;
}
default:
break;
}
// Add stack information
auto stackEntries = getStackInfo(location);
result.insert(result.end(), stackEntries.begin(), stackEntries.end());
return result;
}
void DebugInfoSidebarWidget::notifyViewLocationChanged(View* view, const ViewLocation& location)
{
m_entryList->updateContents(location);
}
DebugInfoSidebarWidget::~DebugInfoSidebarWidget()
{
}
void DebugInfoSidebarWidget::notifyFontChanged()
{
m_entryList->updateFonts();
}
DebuggerInfoEntryItemDelegate::DebuggerInfoEntryItemDelegate(QWidget* parent): m_render(parent)
{
updateFonts();
}
void DebuggerInfoEntryItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
// Draw the item background, highlighting it if selected.
bool selected = (option.state & QStyle::State_Selected) != 0;
if (selected)
painter->setBrush(getThemeColor(SelectionColor));
else
painter->setBrush(option.backgroundBrush);
auto* entry = qvariant_cast<DebuggerInfoEntry*>(index.data(Qt::DisplayRole));
if (!entry)
{
QStyledItemDelegate::paint(painter, option, index);
return;
}
painter->setPen(Qt::NoPen);
painter->drawRect(option.rect);
painter->setPen(option.palette.text().color());
painter->setFont(m_font);
QRect textRect = option.rect;
// textRect.setLeft(textRect.left() + 8);
switch (index.column())
{
case ExprColumn:
{
HighlightTokenState highlight;
m_render.drawDisassemblyLine(*painter, textRect.left(), textRect.top(), entry->tokens, highlight);
break;
}
case StorageColumn:
if (entry->isStackEntry)
{
painter->setPen(getThemeColor(AddressColor));
painter->drawText(textRect, QString::asprintf("0x%llx", entry->storageAddress));
}
// Draw nothing for non-stack entries (empty column)
break;
case ValueColumn:
painter->setPen(getThemeColor(AddressColor));
painter->drawText(textRect, QString::fromStdString("0x") + QString::fromStdString(intx::hex(entry->value)));
break;
case HintColumn:
painter->setPen(getThemeColor(StringColor));
painter->drawText(textRect, QString::fromStdString(entry->hints));
break;
default:
break;
}
}
void DebuggerInfoEntryItemDelegate::updateFonts()
{
// Get font and compute character sizes
m_font = getMonospaceFont(dynamic_cast<QWidget*>(parent()));
m_font.setKerning(false);
m_baseline = (int)QFontMetricsF(m_font).ascent();
m_charWidth = getFontWidthAndAdjustSpacing(m_font);
m_charHeight = (int)(QFontMetricsF(m_font).height() + getExtraFontSpacing());
m_charOffset = getFontVerticalOffset();
}
QSize DebuggerInfoEntryItemDelegate::sizeHint(const QStyleOptionViewItem& option, const QModelIndex& idx) const
{
auto totalWidth = (idx.data(Qt::SizeHintRole).toInt() + 2) * m_charWidth + 4;
return QSize(totalWidth, m_charHeight + 2);
}
DebuggerInfoEntryItemModel::DebuggerInfoEntryItemModel(QWidget *parent, BinaryViewRef data)
{
}
DebuggerInfoEntryItemModel::~DebuggerInfoEntryItemModel()
{
}
QModelIndex DebuggerInfoEntryItemModel::index(int row, int column, const QModelIndex &parent) const
{
if (row < 0 || (size_t)row >= m_infoEntries.size() || column >= columnCount())
{
return QModelIndex();
}
return createIndex(row, column, (void*)&m_infoEntries[row]);
}
QModelIndex DebuggerInfoEntryItemModel::parent(const QModelIndex &child) const
{
return {};
}
int DebuggerInfoEntryItemModel::rowCount(const QModelIndex &parent) const
{
return m_infoEntries.size();
}
int DebuggerInfoEntryItemModel::columnCount(const QModelIndex &parent) const
{
return 4; // Added StorageColumn
}
QVariant DebuggerInfoEntryItemModel::data(const QModelIndex &index, int role) const
{
if (index.column() >= columnCount() || (size_t)index.row() >= m_infoEntries.size())
return QVariant();
DebuggerInfoEntry* item = static_cast<DebuggerInfoEntry*>(index.internalPointer());
if (!item)
return QVariant();
QVariant result;
if (role == Qt::DisplayRole)
{
switch (index.column())
{
case ExprColumn:
case ValueColumn:
case HintColumn:
case StorageColumn:
result.setValue(item);
break;
default:
break;
}
}
else if (role == Qt::SizeHintRole)
{
switch (index.column())
{
case ExprColumn:
{
std::string expr;
for (const auto& token: item->tokens)
expr += token.text;
result.setValue(expr.size());
break;
}
case StorageColumn:
{
if (item->isStackEntry)
{
auto str = QString::asprintf("0x%llx", item->storageAddress);
result.setValue(str.size());
}
else
{
result.setValue(0); // Empty for non-stack entries
}
break;
}
case ValueColumn:
{
auto str = QString::fromStdString("0x") + QString::fromStdString(intx::hex(item->value));
result.setValue(str.size());
break;
}
case HintColumn:
result.setValue(item->hints.size());
break;
default:
break;
}
}
return result;
}
void DebuggerInfoEntryItemModel::updateRows(std::vector<DebuggerInfoEntry>& newRows)
{
beginResetModel();
m_infoEntries = newRows;
endResetModel();
}
QVariant DebuggerInfoEntryItemModel::headerData(int column, Qt::Orientation orientation, int role) const
{
if (role != Qt::DisplayRole)
return QVariant();
if (orientation == Qt::Vertical)
return QVariant();
switch (column)
{
case ExprColumn:
return "Expr";
case StorageColumn:
return "Storage";
case ValueColumn:
return "Value";
case HintColumn:
return "Hint";
}
return QVariant();
}
DebuggerInfoEntry DebuggerInfoEntryItemModel::getRow(int row) const
{
if ((size_t)row >= m_infoEntries.size())
throw std::runtime_error("row index out-of-bound");
return m_infoEntries[row];
}
DebuggerInfoTable::DebuggerInfoTable(BinaryViewRef data): m_data(data), m_stackEntryCount(16)
{
m_debugger = DebuggerController::GetController(data);
m_model = new DebuggerInfoEntryItemModel(this, data);
m_itemDelegate = new DebuggerInfoEntryItemDelegate(this);
setModel(m_model);
setSelectionMode(QListView::SingleSelection);
setSelectionBehavior(QListView::SelectRows);
setEditTriggers(QListView::NoEditTriggers);
setDragEnabled(false);
setDragDropMode(QListView::NoDragDrop);