binaryninja/file_metadata.rs
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
// Copyright 2021-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.
use crate::binary_view::BinaryView;
use crate::database::Database;
use crate::rc::*;
use crate::string::*;
use binaryninjacore_sys::{
BNBeginUndoActions, BNCloseFile, BNCommitUndoActions, BNCreateDatabase, BNCreateFileMetadata,
BNFileMetadata, BNFileMetadataGetSessionId, BNFreeFileMetadata, BNGetCurrentOffset,
BNGetCurrentView, BNGetExistingViews, BNGetFileMetadataDatabase, BNGetFileViewOfType,
BNGetFilename, BNGetProjectFile, BNIsAnalysisChanged, BNIsBackedByDatabase, BNIsFileModified,
BNMarkFileModified, BNMarkFileSaved, BNNavigate, BNNewFileReference,
BNOpenDatabaseForConfiguration, BNOpenExistingDatabase, BNRedo, BNRevertUndoActions,
BNSaveAutoSnapshot, BNSetFilename, BNUndo,
};
use binaryninjacore_sys::{BNCreateDatabaseWithProgress, BNOpenExistingDatabaseWithProgress};
use std::ffi::c_void;
use std::fmt::Debug;
use std::path::Path;
use crate::progress::ProgressCallback;
use crate::project::file::ProjectFile;
use std::ptr::{self, NonNull};
#[derive(PartialEq, Eq, Hash)]
pub struct FileMetadata {
pub(crate) handle: *mut BNFileMetadata,
}
impl FileMetadata {
pub(crate) fn from_raw(handle: *mut BNFileMetadata) -> Self {
Self { handle }
}
pub(crate) fn ref_from_raw(handle: *mut BNFileMetadata) -> Ref<Self> {
unsafe { Ref::new(Self { handle }) }
}
pub fn new() -> Ref<Self> {
Self::ref_from_raw(unsafe { BNCreateFileMetadata() })
}
pub fn with_filename(name: &str) -> Ref<Self> {
let ret = FileMetadata::new();
ret.set_filename(name);
ret
}
pub fn close(&self) {
unsafe {
BNCloseFile(self.handle);
}
}
pub fn session_id(&self) -> usize {
unsafe { BNFileMetadataGetSessionId(self.handle) }
}
pub fn filename(&self) -> String {
unsafe {
let raw = BNGetFilename(self.handle);
BnString::into_string(raw)
}
}
pub fn set_filename(&self, name: &str) {
let name = name.to_cstr();
unsafe {
BNSetFilename(self.handle, name.as_ptr());
}
}
pub fn modified(&self) -> bool {
unsafe { BNIsFileModified(self.handle) }
}
pub fn mark_modified(&self) {
unsafe {
BNMarkFileModified(self.handle);
}
}
pub fn mark_saved(&self) {
unsafe {
BNMarkFileSaved(self.handle);
}
}
pub fn is_analysis_changed(&self) -> bool {
unsafe { BNIsAnalysisChanged(self.handle) }
}
pub fn is_database_backed(&self) -> bool {
self.is_database_backed_for_view_type("")
}
pub fn is_database_backed_for_view_type(&self, view_type: &str) -> bool {
let view_type = view_type.to_cstr();
unsafe { BNIsBackedByDatabase(self.handle, view_type.as_ref().as_ptr() as *const _) }
}
/// Runs a failable function where the failure state will revert any undo actions that occurred
/// during the time of the function's execution.
///
/// NOTE: This will commit or undo any actions that occurred on **any** thread as this state is not thread local.
///
/// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
/// and the thread executing this function, you can deadlock. You should also never call this function
/// on multiple threads at a time. See the following issues:
/// - <https://github.com/Vector35/binaryninja-api/issues/6289>
/// - <https://github.com/Vector35/binaryninja-api/issues/6325>
pub fn run_undoable_transaction<F: FnOnce() -> Result<T, E>, T, E>(
&self,
func: F,
) -> Result<T, E> {
let undo = self.begin_undo_actions(false);
let result = func();
match result {
Ok(t) => {
self.commit_undo_actions(&undo);
Ok(t)
}
Err(e) => {
self.revert_undo_actions(&undo);
Err(e)
}
}
}
/// Creates a new undo entry, any undo actions after this will be added to this entry.
///
/// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
/// and the thread executing this function, you can deadlock. You should also never call this function
/// on multiple threads at a time. See the following issues:
/// - <https://github.com/Vector35/binaryninja-api/issues/6289>
/// - <https://github.com/Vector35/binaryninja-api/issues/6325>
pub fn begin_undo_actions(&self, anonymous_allowed: bool) -> String {
unsafe { BnString::into_string(BNBeginUndoActions(self.handle, anonymous_allowed)) }
}
/// Commits the undo entry with the id to the undo buffer.
///
/// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
/// and the thread executing this function, you can deadlock. You should also never call this function
/// on multiple threads at a time. See the following issues:
/// - <https://github.com/Vector35/binaryninja-api/issues/6289>
/// - <https://github.com/Vector35/binaryninja-api/issues/6325>
pub fn commit_undo_actions(&self, id: &str) {
let id = id.to_cstr();
unsafe {
BNCommitUndoActions(self.handle, id.as_ref().as_ptr() as *const _);
}
}
/// Reverts the undo actions committed in the undo entry.
///
/// NOTE: This is **NOT** thread safe, if you are holding any locks that might be held by both the main thread
/// and the thread executing this function, you can deadlock. You should also never call this function
/// on multiple threads at a time. See the following issues:
/// - <https://github.com/Vector35/binaryninja-api/issues/6289>
/// - <https://github.com/Vector35/binaryninja-api/issues/6325>
pub fn revert_undo_actions(&self, id: &str) {
let id = id.to_cstr();
unsafe {
BNRevertUndoActions(self.handle, id.as_ref().as_ptr() as *const _);
}
}
pub fn undo(&self) {
unsafe {
BNUndo(self.handle);
}
}
pub fn redo(&self) {
unsafe {
BNRedo(self.handle);
}
}
pub fn current_view(&self) -> String {
unsafe { BnString::into_string(BNGetCurrentView(self.handle)) }
}
pub fn current_offset(&self) -> u64 {
unsafe { BNGetCurrentOffset(self.handle) }
}
/// Navigate to an offset for a specific view.
///
/// # Example
///
/// ```no_run
/// use binaryninja::file_metadata::FileMetadata;
/// # let file: FileMetadata = unimplemented!();
/// file.navigate_to("Linear:Raw", 0x0).expect("Linear:Raw should always be present");
/// ```
pub fn navigate_to(&self, view: &str, offset: u64) -> Result<(), ()> {
let view = view.to_cstr();
unsafe {
if BNNavigate(self.handle, view.as_ref().as_ptr() as *const _, offset) {
Ok(())
} else {
Err(())
}
}
}
/// Get the [`BinaryView`] for the view type.
///
/// # Example
///
/// ```no_run
/// use binaryninja::file_metadata::FileMetadata;
/// # let file: FileMetadata = unimplemented!();
/// file.view_of_type("Raw").expect("Raw type should always be present");
/// ```
pub fn view_of_type(&self, view: &str) -> Option<Ref<BinaryView>> {
let view = view.to_cstr();
unsafe {
let raw_view_ptr = BNGetFileViewOfType(self.handle, view.as_ref().as_ptr() as *const _);
match raw_view_ptr.is_null() {
false => Some(BinaryView::ref_from_raw(raw_view_ptr)),
true => None,
}
}
}
pub fn view_types(&self) -> Array<BnString> {
let mut count = 0;
unsafe {
let types = BNGetExistingViews(self.handle, &mut count);
Array::new(types, count, ())
}
}
/// Get the [`ProjectFile`] for the [`FileMetadata`].
pub fn project_file(&self) -> Option<Ref<ProjectFile>> {
unsafe {
let res = NonNull::new(BNGetProjectFile(self.handle))?;
Some(ProjectFile::ref_from_raw(res))
}
}
pub fn create_database(&self, file_path: impl AsRef<Path>) -> bool {
// Databases are created with the root view (Raw).
let Some(raw_view) = self.view_of_type("Raw") else {
return false;
};
let file_path = file_path.as_ref().to_cstr();
unsafe {
BNCreateDatabase(
raw_view.handle,
file_path.as_ptr() as *mut _,
ptr::null_mut(),
)
}
}
// TODO: Pass settings?
pub fn create_database_with_progress<P: ProgressCallback>(
&self,
file_path: impl AsRef<Path>,
mut progress: P,
) -> bool {
// Databases are created with the root view (Raw).
let Some(raw_view) = self.view_of_type("Raw") else {
return false;
};
let file_path = file_path.as_ref().to_cstr();
unsafe {
BNCreateDatabaseWithProgress(
raw_view.handle,
file_path.as_ptr() as *mut _,
&mut progress as *mut P as *mut c_void,
Some(P::cb_progress_callback),
ptr::null_mut(),
)
}
}
pub fn save_auto_snapshot(&self) -> bool {
// Snapshots are saved with the root view (Raw).
let Some(raw_view) = self.view_of_type("Raw") else {
return false;
};
unsafe { BNSaveAutoSnapshot(raw_view.handle, ptr::null_mut() as *mut _) }
}
pub fn open_database_for_configuration(&self, file: &Path) -> Result<Ref<BinaryView>, ()> {
let file = file.to_cstr();
unsafe {
let bv =
BNOpenDatabaseForConfiguration(self.handle, file.as_ref().as_ptr() as *const _);
if bv.is_null() {
Err(())
} else {
Ok(BinaryView::ref_from_raw(bv))
}
}
}
pub fn open_database(&self, file: &Path) -> Result<Ref<BinaryView>, ()> {
let file = file.to_cstr();
let view = unsafe { BNOpenExistingDatabase(self.handle, file.as_ptr()) };
if view.is_null() {
Err(())
} else {
Ok(unsafe { BinaryView::ref_from_raw(view) })
}
}
pub fn open_database_with_progress<P: ProgressCallback>(
&self,
file: &Path,
mut progress: P,
) -> Result<Ref<BinaryView>, ()> {
let file = file.to_cstr();
let view = unsafe {
BNOpenExistingDatabaseWithProgress(
self.handle,
file.as_ptr(),
&mut progress as *mut P as *mut c_void,
Some(P::cb_progress_callback),
)
};
if view.is_null() {
Err(())
} else {
Ok(unsafe { BinaryView::ref_from_raw(view) })
}
}
/// Get the current database
pub fn database(&self) -> Option<Ref<Database>> {
let result = unsafe { BNGetFileMetadataDatabase(self.handle) };
NonNull::new(result).map(|handle| unsafe { Database::ref_from_raw(handle) })
}
}
impl Debug for FileMetadata {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("FileMetadata")
.field("filename", &self.filename())
.field("session_id", &self.session_id())
.field("modified", &self.modified())
.field("is_analysis_changed", &self.is_analysis_changed())
.field("current_view_type", &self.current_view())
.field("current_offset", &self.current_offset())
.field("view_types", &self.view_types().to_vec())
.finish()
}
}
unsafe impl Send for FileMetadata {}
unsafe impl Sync for FileMetadata {}
impl ToOwned for FileMetadata {
type Owned = Ref<Self>;
fn to_owned(&self) -> Self::Owned {
unsafe { RefCountable::inc_ref(self) }
}
}
unsafe impl RefCountable for FileMetadata {
unsafe fn inc_ref(handle: &Self) -> Ref<Self> {
Ref::new(Self {
handle: BNNewFileReference(handle.handle),
})
}
unsafe fn dec_ref(handle: &Self) {
BNFreeFileMetadata(handle.handle);
}
}