summaryrefslogtreecommitdiff
path: root/rust/src
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-06-05 18:32:19 -0400
committerMason Reed <mason@vector35.com>2025-06-13 16:43:01 -0400
commit607ca37184716da4641aa178cf0cf2dc3c95f116 (patch)
tree07c0a208c34581d1fac0aae79f8b4aa9ac70371c /rust/src
parent255d616d33004a042b773e2ea3cbedefd76db3ab (diff)
Require a default platform to create functions for a given Binary View
This affects mainly users creating an empty raw view headlessly and adding a function.
Diffstat (limited to 'rust/src')
-rw-r--r--rust/src/binary_view.rs114
1 files changed, 84 insertions, 30 deletions
diff --git a/rust/src/binary_view.rs b/rust/src/binary_view.rs
index a5d3ea6b..822c421a 100644
--- a/rust/src/binary_view.rs
+++ b/rust/src/binary_view.rs
@@ -947,29 +947,36 @@ pub trait BinaryViewExt: BinaryViewBase {
MemoryMap::new(self.as_ref().to_owned())
}
- fn add_auto_function(&self, plat: &Platform, addr: u64) -> Option<Ref<Function>> {
- unsafe {
- let handle = BNAddFunctionForAnalysis(
- self.as_ref().handle,
- plat.handle,
- addr,
- false,
- std::ptr::null_mut(),
- );
-
- if handle.is_null() {
- return None;
- }
+ /// Add an auto function at the given `address` with the views default platform.
+ ///
+ /// Use [`BinaryViewExt::add_auto_function_with_platform`] if you wish to specify a platform.
+ ///
+ /// NOTE: The default platform **must** be set for this view!
+ fn add_auto_function(&self, address: u64) -> Option<Ref<Function>> {
+ let platform = self.default_platform()?;
+ self.add_auto_function_with_platform(address, &platform)
+ }
- Some(Function::ref_from_raw(handle))
- }
+ /// Add an auto function at the given `address` with the `platform`.
+ ///
+ /// Use [`BinaryViewExt::add_auto_function_ext`] if you wish to specify a function type.
+ ///
+ /// NOTE: If the view's default platform is not set, this will set it to `platform`.
+ fn add_auto_function_with_platform(
+ &self,
+ address: u64,
+ platform: &Platform,
+ ) -> Option<Ref<Function>> {
+ self.add_auto_function_ext(address, platform, None)
}
- fn add_function_with_type(
+ /// Add an auto function at the given `address` with the `platform` and function type.
+ ///
+ /// NOTE: If the view's default platform is not set, this will set it to `platform`.
+ fn add_auto_function_ext(
&self,
- plat: &Platform,
- addr: u64,
- auto_discovered: bool,
+ address: u64,
+ platform: &Platform,
func_type: Option<&Type>,
) -> Option<Ref<Function>> {
unsafe {
@@ -980,9 +987,9 @@ pub trait BinaryViewExt: BinaryViewBase {
let handle = BNAddFunctionForAnalysis(
self.as_ref().handle,
- plat.handle,
- addr,
- auto_discovered,
+ platform.handle,
+ address,
+ true,
func_type,
);
@@ -994,28 +1001,75 @@ pub trait BinaryViewExt: BinaryViewBase {
}
}
- fn add_entry_point(&self, plat: &Platform, addr: u64) {
+ /// Remove an auto function from the view.
+ ///
+ /// Pass `true` for `update_refs` to update all references of the function.
+ ///
+ /// NOTE: Unlike [`BinaryViewExt::remove_user_function`], this will NOT prohibit the function from
+ /// being re-added in the future, use [`BinaryViewExt::remove_user_function`] to blacklist the
+ /// function from being automatically created.
+ fn remove_auto_function(&self, func: &Function, update_refs: bool) {
unsafe {
- BNAddEntryPointForAnalysis(self.as_ref().handle, plat.handle, addr);
+ BNRemoveAnalysisFunction(self.as_ref().handle, func.handle, update_refs);
}
}
- fn create_user_function(&self, plat: &Platform, addr: u64) -> Result<Ref<Function>> {
- unsafe {
- let func = BNCreateUserFunction(self.as_ref().handle, plat.handle, addr);
+ /// Add a user function at the given `address` with the views default platform.
+ ///
+ /// Use [`BinaryViewExt::add_user_function_with_platform`] if you wish to specify a platform.
+ ///
+ /// NOTE: The default platform **must** be set for this view!
+ fn add_user_function(&self, addr: u64) -> Option<Ref<Function>> {
+ let platform = self.default_platform()?;
+ self.add_user_function_with_platform(addr, &platform)
+ }
+ /// Add an auto function at the given `address` with the `platform`.
+ ///
+ /// NOTE: If the view's default platform is not set, this will set it to `platform`.
+ fn add_user_function_with_platform(
+ &self,
+ addr: u64,
+ platform: &Platform,
+ ) -> Option<Ref<Function>> {
+ unsafe {
+ let func = BNCreateUserFunction(self.as_ref().handle, platform.handle, addr);
if func.is_null() {
- return Err(());
+ return None;
}
-
- Ok(Function::ref_from_raw(func))
+ Some(Function::ref_from_raw(func))
}
}
+ /// Removes the function from the view and blacklists it from being created automatically.
+ ///
+ /// NOTE: If you call [`BinaryViewExt::add_user_function`], it will override the blacklist.
+ fn remove_user_function(&self, func: &Function) {
+ unsafe { BNRemoveUserFunction(self.as_ref().handle, func.handle) }
+ }
+
fn has_functions(&self) -> bool {
unsafe { BNHasFunctions(self.as_ref().handle) }
}
+ /// Add an entry point at the given `address` with the view's default platform.
+ ///
+ /// NOTE: The default platform **must** be set for this view!
+ fn add_entry_point(&self, addr: u64) {
+ if let Some(platform) = self.default_platform() {
+ self.add_entry_point_with_platform(addr, &platform);
+ }
+ }
+
+ /// Add an entry point at the given `address` with the `platform`.
+ ///
+ /// NOTE: If the view's default platform is not set, this will set it to `platform`.
+ fn add_entry_point_with_platform(&self, addr: u64, platform: &Platform) {
+ unsafe {
+ BNAddEntryPointForAnalysis(self.as_ref().handle, platform.handle, addr);
+ }
+ }
+
fn entry_point_function(&self) -> Option<Ref<Function>> {
unsafe {
let raw_func_ptr = BNGetAnalysisEntryPoint(self.as_ref().handle);