// Copyright 2021-2022 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 binaryninjacore_sys::{ BNBeginUndoActions, BNCloseFile, BNCloseProject, BNCommitUndoActions, BNCreateDatabase, BNCreateFileMetadata, BNFileMetadata, BNFreeFileMetadata, BNGetCurrentOffset, BNGetCurrentView, BNGetFileViewOfType, BNGetFilename, BNIsAnalysisChanged, BNIsBackedByDatabase, //BNSetFileMetadataNavigationHandler, BNIsFileModified, BNIsProjectOpen, BNMarkFileModified, BNMarkFileSaved, BNNavigate, BNNewFileReference, BNOpenDatabaseForConfiguration, BNOpenExistingDatabase, BNOpenProject, BNRedo, BNSaveAutoSnapshot, BNSetFilename, BNUndo, }; use crate::binaryview::BinaryView; use crate::rc::*; use crate::string::*; use std::ptr; #[derive(PartialEq, Eq, Hash)] pub struct FileMetadata { pub(crate) handle: *mut BNFileMetadata, } unsafe impl Send for FileMetadata {} unsafe impl Sync for FileMetadata {} impl FileMetadata { pub(crate) fn from_raw(handle: *mut BNFileMetadata) -> Self { Self { handle } } pub fn new() -> Ref { unsafe { Ref::new(Self { handle: BNCreateFileMetadata(), }) } } pub fn with_filename(name: S) -> Ref { let ret = FileMetadata::new(); ret.set_filename(name); ret } pub fn close(&self) { unsafe { BNCloseFile(self.handle); } } pub fn filename(&self) -> BnString { unsafe { let raw = BNGetFilename(self.handle); BnString::from_raw(raw) } } pub fn set_filename(&self, name: S) { let name = name.into_bytes_with_nul(); unsafe { BNSetFilename(self.handle, name.as_ref().as_ptr() as *mut _); } } 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, view_type: S) -> bool { let view_type = view_type.into_bytes_with_nul(); unsafe { BNIsBackedByDatabase(self.handle, view_type.as_ref().as_ptr() as *const _) } } pub fn begin_undo_actions(&self) { unsafe { BNBeginUndoActions(self.handle); } } pub fn commit_undo_actions(&self) { unsafe { BNCommitUndoActions(self.handle); } } pub fn undo(&self) { unsafe { BNUndo(self.handle); } } pub fn redo(&self) { unsafe { BNRedo(self.handle); } } pub fn current_view(&self) -> BnString { unsafe { BnString::from_raw(BNGetCurrentView(self.handle)) } } pub fn current_offset(&self) -> u64 { unsafe { BNGetCurrentOffset(self.handle) } } pub fn navigate_to(&self, view: S, offset: u64) -> Result<(), ()> { let view = view.into_bytes_with_nul(); unsafe { if BNNavigate(self.handle, view.as_ref().as_ptr() as *const _, offset) { Ok(()) } else { Err(()) } } } pub fn get_view_of_type(&self, view: S) -> Result, ()> { let view = view.into_bytes_with_nul(); unsafe { let res = BNGetFileViewOfType(self.handle, view.as_ref().as_ptr() as *const _); if res.is_null() { Err(()) } else { Ok(BinaryView::from_raw(res)) } } } pub fn create_database(&self, filename: S) -> bool { let filename = filename.into_bytes_with_nul(); let raw = "Raw".into_bytes_with_nul(); unsafe { BNCreateDatabase( BNGetFileViewOfType(self.handle, raw.as_ptr() as *mut _), filename.as_ref().as_ptr() as *mut _, ptr::null_mut() as *mut _, ) } } pub fn save_auto_snapshot(&self) -> bool { let raw = "Raw".into_bytes_with_nul(); unsafe { BNSaveAutoSnapshot( BNGetFileViewOfType(self.handle, raw.as_ptr() as *mut _), ptr::null_mut() as *mut _, ) } } pub fn open_database_for_configuration( &self, filename: S, ) -> Result, ()> { let filename = filename.into_bytes_with_nul(); unsafe { let bv = BNOpenDatabaseForConfiguration(self.handle, filename.as_ref().as_ptr() as *const _); if bv.is_null() { Err(()) } else { Ok(BinaryView::from_raw(bv)) } } } pub fn open_database(&self, filename: S) -> Result, ()> { let filename = filename.into_bytes_with_nul(); let filename_ptr = filename.as_ref().as_ptr() as *mut _; let view = unsafe { BNOpenExistingDatabase(self.handle, filename_ptr) }; // TODO : add optional progress function // let view = match progress_func { // None => BNOpenExistingDatabase(self.handle, filename_ptr), // _ => BNOpenExistingDatabaseWithProgress(self.handle, str(filename), None, ctypes.CFUNCTYPE(ctypes.c_bool, ctypes.c_void_p, ctypes.c_ulonglong, ctypes.c_ulonglong)(lambda ctxt, cur, total: progress_func(cur, total))) // }; if view.is_null() { Err(()) } else { Ok(unsafe { BinaryView::from_raw(view) }) } } pub fn open_project(&self) -> bool { unsafe { BNOpenProject(self.handle) } } pub fn close_project(&self) { unsafe { BNCloseProject(self.handle); } } pub fn is_project_open(&self) -> bool { unsafe { BNIsProjectOpen(self.handle) } } } impl ToOwned for FileMetadata { type Owned = Ref; fn to_owned(&self) -> Self::Owned { unsafe { RefCountable::inc_ref(self) } } } unsafe impl RefCountable for FileMetadata { unsafe fn inc_ref(handle: &Self) -> Ref { Ref::new(Self { handle: BNNewFileReference(handle.handle), }) } unsafe fn dec_ref(handle: &Self) { BNFreeFileMetadata(handle.handle); } } /* BNCreateDatabase, BNCreateDatabaseWithProgress, */