program
Program
This is the main class of Quokka. It deals with the most common abstraction, the Program.
Program
Bases: dict
Program
The program is quokka main abstraction.
It represents the full binary and is in itself a mapping of functions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
export_file
|
Path | str
|
Path towards the export file (e.g. .quokka) |
required |
exec_path
|
Path | str
|
Path towards the binary file |
required |
Attributes:
| Name | Type | Description |
|---|---|---|
proto |
Quokka
|
Contains the protobuf data. This should not be used directly. However, if you don't find another way of accessing some information, feel free to open an issue. |
export_file |
Path
|
The path to the export file (e.g. the .quokka) |
mode |
ExporterMode
|
Export mode (LIGHT, NORMAL or FULL) |
base_address |
AddressT
|
Program base address |
isa |
ArchEnum
|
Instruction set |
address_size |
int
|
Default pointer size |
arch |
Type[QuokkaArch]
|
Program architecture |
endianness |
Endianness
|
Program endianness |
executable |
An object to manage the binary file |
|
references |
The reference manager |
|
data |
The data manager |
|
fun_names |
dict[str, Function]
|
A mapping of function names to functions |
Raises:
| Type | Description |
|---|---|
QuokkaError
|
If the loading is not successful. |
Source code in bindings/python/quokka/program.py
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 | |
base_address
property
Program base address
call_graph
cached
property
Compute the Call Graph of the binary
Every node in the call graph is a function.
:return: A Call Graph (a networkx DiGraph)
capstone
cached
property
Compute a capstone context
enums
cached
property
Enums accessor
Allows to retrieve the different enums of a program (as defined by the disassembler).
Returns:
| Type | Description |
|---|---|
Iterable[EnumType]
|
A list of enums |
functions
property
Functions accessor
Allows to retrieve the different functions of a program (as defined by the disassembler).
Returns:
| Type | Description |
|---|---|
Iterable[Function]
|
A list of functions |
hash
property
Returns the hash value of the binary (either sha256 or MD5).
headers
property
Returns C-style headers of the binary
name
property
Returns the underlying binary name
orphaned_blocks
cached
property
Orphaned blocks
Orphaned blocks are blocks that are not attached to any function. They can be useful to analyze code that is not in functions (e.g. hand-written assembly or jump tables).
Returns:
| Type | Description |
|---|---|
Iterable[Block]
|
A list of orphaned blocks. |
pypcode
cached
property
Generate the Pypcode context.
segments
cached
property
Returns the list of segments defined in the program.
structures
property
Structures accessor
Allows to retrieve the different structures of a program (as defined by the disassembler).
Returns:
| Type | Description |
|---|---|
Iterable[StructureType]
|
A list of structures |
types
property
Types in the program
Returns:
| Type | Description |
|---|---|
Iterable[TypeT]
|
Iterable of types in the Program (excludes user-added types) |
__hash__()
Hash of the Program (use the hash from the exported file)
Source code in bindings/python/quokka/program.py
186 187 188 | |
__init__(export_file, exec_path)
Constructor
Source code in bindings/python/quokka/program.py
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 | |
__repr__()
Program representation
Source code in bindings/python/quokka/program.py
645 646 647 | |
__str__()
Program representation
Source code in bindings/python/quokka/program.py
649 650 651 | |
add_type(type)
Add a new user-defined type to the program.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
type
|
str
|
A C type declaration string
(e.g. |
required |
Raises:
| Type | Description |
|---|---|
QuokkaError
|
If a type with the same name already exists. |
Source code in bindings/python/quokka/program.py
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 | |
address_to_offset(address)
Converts a program offset to a file offset.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
AddressT
|
A virtual address |
required |
Returns:
| Type | Description |
|---|---|
int
|
A file offset |
Source code in bindings/python/quokka/program.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | |
commit(database_file=None, ida_path=None, overwrite=True, timeout=600)
Write the .quokka and apply edits to the disassembler database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database_file
|
'Path|str|None'
|
Path to the |
None
|
ida_path
|
'Path|str|None'
|
Optional IDA installation path (IDA only). |
None
|
overwrite
|
bool
|
Allow modifying an existing database (IDA only). |
True
|
timeout
|
int
|
IDA timeout in seconds (IDA only). |
600
|
Returns:
| Type | Description |
|---|---|
int
|
The number of apply errors (0 = success). |
Raises:
| Type | Description |
|---|---|
ValueError
|
If database_file is not provided for an IDA program. |
Source code in bindings/python/quokka/program.py
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 | |
find_function_by_address(address)
Get a function by any address.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
AddressT
|
AddressT: within the function |
required |
Returns:
| Type | Description |
|---|---|
Function | None
|
A |
Source code in bindings/python/quokka/program.py
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | |
find_type(name)
Find a type by its name
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Name of the type to find |
required |
Returns:
| Type | Description |
|---|---|
TypeT | None
|
The corresponding type, None if not found |
Source code in bindings/python/quokka/program.py
446 447 448 449 450 451 452 453 454 455 456 457 458 | |
from_binary(exec_path, output_file=None, database_file=None, decompiled=False, debug=False, override=True, timeout=0, mode=ExporterMode.LIGHT, disassembler=Disassembler.UNKNOWN)
staticmethod
Generate an export file directly from the binary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exec_path
|
Path | str
|
Binary to export. |
required |
output_file
|
Path | str | None
|
Where to store the result (by default: near the executable) |
None
|
database_file
|
Path | str | None
|
Where to store IDA database (by default: near the executable) |
None
|
decompiled
|
bool
|
Whether to export decompiled code (default: False) |
False
|
timeout
|
int | None
|
How long should we wait for the export to finish (default: 10 min) |
0
|
debug
|
bool
|
Activate the debug output |
False
|
mode
|
ExporterMode
|
Export mode (LIGHT or FULL) |
LIGHT
|
disassembler
|
Disassembler
|
Backend to use (auto-detect if UNKNOWN) |
UNKNOWN
|
Returns:
| Type | Description |
|---|---|
Program | None
|
A Program instance or None |
Raises:
| Type | Description |
|---|---|
QuokkaError
|
If the export fails |
FileNotFoundError
|
If the executable is not found |
Source code in bindings/python/quokka/program.py
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 | |
generate(exec_path, output_file=None, database_file=None, decompiled=False, debug=False, override=True, timeout=600, mode=ExporterMode.LIGHT, disassembler=Disassembler.UNKNOWN)
staticmethod
Generate an export file directly from the binary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exec_path
|
Path | str
|
Binary to export. |
required |
output_file
|
Path | str | None
|
Where to store the result (by default: near the executable) |
None
|
database_file
|
Path | str | None
|
Where to store IDA database (by default: near the executable) |
None
|
decompiled
|
bool
|
Whether to export decompiled code (default: False) |
False
|
timeout
|
int | None
|
How long should we wait for the export to finish (default: 10 min) |
600
|
debug
|
bool
|
Activate the debug output |
False
|
mode
|
ExporterMode
|
Export mode (LIGHT or FULL) |
LIGHT
|
disassembler
|
Disassembler
|
Backend to use (auto-detect if UNKNOWN) |
UNKNOWN
|
Returns:
| Type | Description |
|---|---|
Path
|
Path to the generated .quokka file. |
Raises:
| Type | Description |
|---|---|
QuokkaError
|
If the export fails |
FileNotFoundError
|
If the executable is not found |
Source code in bindings/python/quokka/program.py
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 | |
get_data(address)
Get data by address
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
AddressT
|
Address to query |
required |
Returns:
| Type | Description |
|---|---|
Data
|
A data at the address |
Raises:
| Type | Description |
|---|---|
ValueError
|
When no data is found at the address |
Source code in bindings/python/quokka/program.py
631 632 633 634 635 636 637 638 639 640 641 642 643 | |
get_function(name, approximative=False, normal=False)
Find a function in a program by its name
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
Function name |
required |
approximative
|
bool
|
Should the name exactly match or allow partial matches? |
False
|
normal
|
bool
|
Return only FunctionType.NORMAL functions |
False
|
Returns:
| Type | Description |
|---|---|
Function
|
A function matching the research criteria |
Raises:
| Type | Description |
|---|---|
ValueError
|
When no function is found |
Source code in bindings/python/quokka/program.py
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 | |
get_instruction(address)
Get an instruction by its address
Note: the address must be the head of the instruction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
AddressT
|
AddressT: Address to query |
required |
Returns:
| Type | Description |
|---|---|
Instruction
|
A |
Raises:
| Type | Description |
|---|---|
IndexError
|
When no instruction is found at this address |
Source code in bindings/python/quokka/program.py
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 | |
get_item(addr)
Get a function, block or instruction by its address
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
addr
|
AddressT
|
Address to query |
required |
Returns:
| Type | Description |
|---|---|
Function | Instruction
|
A function, block or instruction at the address |
Raises:
| Type | Description |
|---|---|
KeyError
|
When no item is found at the address |
Source code in bindings/python/quokka/program.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | |
get_segment(address)
Get a Segment by an address
The address must be in [segment.start, segment.end) to be found.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
address
|
AddressT
|
Segment's address |
required |
Returns:
| Type | Description |
|---|---|
Segment
|
The corresponding Segment |
Raises:
| Type | Description |
|---|---|
KeyError
|
When the segment is not found |
Source code in bindings/python/quokka/program.py
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | |
get_struct_member(struct_index, member_index)
Get a structure member by its index
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
struct_index
|
Index
|
Index of the structure in the proto |
required |
member_index
|
Index
|
Index of the member in the structure (starting from 0) |
required |
Returns:
| Type | Description |
|---|---|
StructureTypeMember
|
The corresponding structure member |
Raises:
| Type | Description |
|---|---|
KeyError
|
When the structure or the member is not found |
Source code in bindings/python/quokka/program.py
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | |
get_type(type_index, member_index=-1)
Get a type by its index with strict typing. For struct or enum members, returns the underlying type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
type_index
|
Index
|
Index of the type in the proto |
required |
Returns:
| Type | Description |
|---|---|
TypeT
|
The corresponding type |
Raises:
| Type | Description |
|---|---|
KeyError
|
When the type is not found |
ValueError
|
When the type is not of the expected type |
Source code in bindings/python/quokka/program.py
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | |
get_type_reference(type_index, member_index=-1)
Get a type by its index
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
type_index
|
Index
|
Index of the type in the proto |
required |
member_index
|
int
|
Index of the member in the type (if applicable) |
-1
|
Returns:
| Type | Description |
|---|---|
TypeReference
|
The corresponding type |
Raises:
| Type | Description |
|---|---|
KeyError
|
When the type is not found or is a user-added type |
Source code in bindings/python/quokka/program.py
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 | |
get_type_resolved(type_index)
Get a type by index, resolving through any typedef chains.
This is equivalent to calling get_type() and then resolve() on the result if it is a TypedefType. Useful for consumers that do not care about typedef names and want the concrete type directly.
Source code in bindings/python/quokka/program.py
460 461 462 463 464 465 466 467 468 469 470 | |
open(export_file, exec_file)
staticmethod
Open a BinExport file and return an instance of Program.
:param export_file: BinExport file path :param exec_file: Path to the executable file :return: an instance of Program
Source code in bindings/python/quokka/program.py
703 704 705 706 707 708 709 710 711 712 | |
read_bytes(v_addr, size)
Read raw bytes from a virtual address
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
v_addr
|
AddressT
|
Virtual address of the data to read |
required |
size
|
int
|
Size of the data to read |
required |
Returns:
| Type | Description |
|---|---|
bytes
|
The raw data at the specified address |
Source code in bindings/python/quokka/program.py
616 617 618 619 620 621 622 623 624 625 626 627 628 629 | |
regenerate(database_file=None, ida_path=None, overwrite=False, timeout=600)
Apply edits, re-export, and return a fresh Program.
Calls :meth:commit to apply edits, then :meth:generate to
produce a new .quokka file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database_file
|
'Path|str|None'
|
Path to the |
None
|
ida_path
|
'Path|str|None'
|
Optional IDA installation path. |
None
|
overwrite
|
bool
|
Allow modifying an existing database. |
False
|
timeout
|
int
|
IDA timeout in seconds. |
600
|
Returns:
| Type | Description |
|---|---|
'Program'
|
A new Program instance with the updated data. |
Raises:
| Type | Description |
|---|---|
QuokkaError
|
If applying changes or regenerating fails. |
Source code in bindings/python/quokka/program.py
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 | |
virtual_address(seg_id, seg_offset)
Converts an offset in the file to an absolute address
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seg_id
|
int
|
Segment ID |
required |
seg_offset
|
int
|
Byte offset in the segment |
required |
Returns:
| Type | Description |
|---|---|
AddressT
|
An absolute address |
Source code in bindings/python/quokka/program.py
254 255 256 257 258 259 260 261 262 263 264 | |
write(output_file=None)
Write the program to a file
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
output_file
|
Path | str | None
|
Where to write the program |
None
|
Source code in bindings/python/quokka/program.py
980 981 982 983 984 985 986 987 988 989 | |