summaryrefslogtreecommitdiff
path: root/rust
AgeCommit message (Collapse)Author
2024-01-19DWARF Import : Detect and resolve trivial infinite abstract origin cyclesKyleMiles
2024-01-19DWARF Import : Remove a bunch of CString overheadKyleMiles
2024-01-19Add support for components in debug infoKyleMiles
2024-01-09DWARF Export : Fix compatibility with other tools (no longer using DWO names ↵KyleMiles
for DWO sections)
2024-01-08update copyright yearJordan Wiens
2024-01-04Add local label symbol type to always prioritize normal local symbols over ↵Rusty Wagner
compiler generated labels
2024-01-04Add GetRelocationsAt APIRusty Wagner
2024-01-04Use unwrap_or_else to avoid running error path code when there isn't an errorRusty Wagner
2024-01-04Support function recognizers in Rust architecture pluginsRusty Wagner
2024-01-04Support relocations in Rust architecture pluginsRusty Wagner
2024-01-04Support patching in Rust architecture pluginsRusty Wagner
2024-01-04Support assemble callback in Rust architecture pluginsRusty Wagner
2024-01-04Support register stacks in Rust architecture pluginsRusty Wagner
2024-01-04Support intrinsics in Rust architecture pluginsRusty Wagner
2023-12-22add more documentation about specifying the full path for install_api.pyJordan Wiens
2023-12-06Add LLIL/MLIL instructions to describe integer vs. floating point argument usageRusty Wagner
2023-12-06DWARF Import : Check if functions already exist at parsed addresses and copy ↵KyleMiles
their platform info if they do. Resolves #4798
2023-12-05Fix cmake dependency for dwarf import/exportKyleMiles
2023-12-05Resolves #3714: Adds core initialization/shutdown wrapper object (to the ↵KyleMiles
Rust API) that you can initialize at the top of your script and it'll auto-cleanup at the end of your script. Also some misc doc fixes.
2023-12-04Rust API : Fix some clippy warningsKyleMiles
2023-12-04Resolves #4774: Lifetimes were causing strings to get garbage collected ↵KyleMiles
before use in SymbolBuilder::create (Rust API)
2023-11-24Add Symbolic symbols type.Brian Potchik
2023-11-21remove unecessary lock fileRubens Brandao
2023-11-21add mlil to rustRubens Brandao
2023-11-10Fix ARM64 Linux buildRusty Wagner
2023-11-06Type ContainersGlenn Smith
2023-10-25DWARF Import : Better detection and handling of malformed DWARF info; ↵KyleMiles
Resolves #4682
2023-10-17BNGetVariablesForParameters register list also works for float regsRusty Wagner
2023-09-29DWARF Import : Misc code cleanup, improvements, and enabling by default changesKyleMiles
This includes: Gracefully handle missing DIE references Partially revert 7849cda Misc DWARFv5 Fixes Speed Improvements Fix crash on unexpected EOF Partially revert 0d5fe9ec8963a26361b8bf1af17e029afc87f952 and Correctly initialize DWARF Import plugin
2023-09-28Fix demo build issue on Linux due to failure to create symlink for ↵Xusheng
libbinaryninjacore.so.1
2023-09-20Rust API: Fix load settings not being the right load settingsGlenn Smith
There is a distinction between *default* load settings and just load settings. Rust did not have this distinction and was using the default settings for a function that was not labelled default.
2023-09-20Rust API : FFI Fix, was leaking some non-null-terminated strings to the ↵KyleMiles
core..fix passing a nullptr to `load`
2023-09-19fix the rust API get_form_input bugJordan Wiens
2023-09-11Fix memory leak in functions calling BNCreateUserFunctionXusheng
2023-08-30DWARF Import : >450,000% Performance ImprovementKyleMiles
2023-08-25DWARF Import : Fix crash on recursively defined function type that contains ↵KyleMiles
itself as a parameter
2023-08-25DWARF Import : More optimizationsKyleMiles
2023-08-25DWARF Import : Introduce fastpath for compilation unit handlingKyleMiles
2023-08-25DWARF Import : Correctly track parsing progressKyleMiles
2023-08-24Commit cargo.lock files for rust apiGlenn Smith
2023-08-22Change how DWARF Import initializes to enable unit testsKyleMiles
2023-08-22DWARF Import : Improved Cross-Compilation-Unit HandlingKyleMiles
2023-08-22DWARF : Update gimli dependencyKyleMiles
2023-08-22Recover parameter names even when type parsing fails (this could be a bad idea)KyleMiles
2023-08-22DWARF Import : Prevent another crash related to #4547KyleMiles
2023-08-17Rust API: Add Structure::base_structures and fix type on ↵Glenn Smith
StructureBuilder::base_structures Now Result<Vec<BaseStructure>> since it could technically return nullptr if you have invalid usage... Probably not possible but the other functions in Structure do similar so this is for consistency.
2023-08-17Rust API: Stop using NamedTypeReference::from_raw directlyGlenn Smith
Now using ref_from_raw instead because you really should not have a direct reference to a bare NTR type (that doesn't make sense outside of core).
2023-08-16Add DefineUserTypes to Rust/Python (+ fix return type)Glenn Smith
2023-08-07[Rust API] Fix format string bug in BNLogGlenn Smith
You would think we, a security company, would not have format string vulns in $current_year. Yet, here we are.
2023-08-04DWARF Import : Fix crash / Bandaid fix for #4547KyleMiles