-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'GP-2008_ryanmkurtz_macho-exports' (Closes #2932)
- Loading branch information
Showing
14 changed files
with
679 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
.../Base/src/main/java/ghidra/app/util/bin/format/macho/commands/DyldExportsTrieCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* ### | ||
* IP: GHIDRA | ||
* | ||
* 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. | ||
*/ | ||
package ghidra.app.util.bin.format.macho.commands; | ||
|
||
import java.io.IOException; | ||
|
||
import ghidra.app.util.bin.BinaryReader; | ||
|
||
/** | ||
* Represents a LC_DYLD_EXPORTS_TRIE command | ||
* | ||
* @see <a href="https://opensource.apple.com/source/xnu/xnu-7195.81.3/EXTERNAL_HEADERS/mach-o/loader.h.auto.html">mach-o/loader.h</a> | ||
*/ | ||
public class DyldExportsTrieCommand extends LinkEditDataCommand { | ||
|
||
private ExportTrie exportTrie; | ||
|
||
/** | ||
* Creates and parses a new {@link DyldExportsTrieCommand} | ||
* | ||
* @param loadCommandReader A {@link BinaryReader reader} that points to the start of the load | ||
* command | ||
* @param dataReader A {@link BinaryReader reader} that can read the data that the load command | ||
* references. Note that this might be in a different underlying provider. | ||
* @throws IOException if an IO-related error occurs while parsing | ||
*/ | ||
DyldExportsTrieCommand(BinaryReader loadCommandReader, BinaryReader dataReader) | ||
throws IOException { | ||
super(loadCommandReader, dataReader); | ||
exportTrie = dataoff > 0 && datasize > 0 ? new ExportTrie(dataReader) : new ExportTrie(); | ||
} | ||
|
||
/** | ||
* Gets the {@link ExportTrie} | ||
* | ||
* @return The {@link ExportTrie} | ||
*/ | ||
public ExportTrie getExportTrie() { | ||
return exportTrie; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.