otool is command line tool of MacOS X that displays info of an object. The otool command displays specified parts of object files or libraries.

learn more… | top users | synonyms

1
vote
0answers
19 views

Why are the first 4 bytes of 64-bit addresses printed as 0x00000001?

I'm looking at the disassembly of some x86_64 code with Apple's otool. Here's a sample of the disassembly, as outputted by otool: 0000000100055de4 movq $0x00000000,%rax Only the last 4 bytes ...
0
votes
2answers
60 views

Running bat file in java not working

I am trying to make a program to decompile a binary this is my current code: try { PrintWriter out = new PrintWriter("Dumps.bat"); out.println("@title Dumping"); ...
0
votes
1answer
61 views

Has anyone used oTool commands through XCode command line tools ?

Has anyone used oTool commands through XCode command line tools ? I want to check Stack protection flag setting using oTool for an iPAd app.
1
vote
1answer
344 views

iOS otool to detect private apis [closed]

I am a first time ios developer and cannot find any documentation on private apis. So I have been searching for some type of tutorial on how to use otool. The only certain thing that I can find is ...
3
votes
1answer
126 views

Wrong method implementation address from otool for armv7?

I'm constantly getting 1 byte offset for implementation address of method shown by 'otool'. For an example 'otool -o' gives 0xe99d5 but 'otool -tvV' gives: +[NSError(SomeCategory) someMethod]: ...
0
votes
1answer
108 views

otool error : is not an object file

I have two files on Mac OS. One Mach-O executable i386 and one data (same exec icon in my Finder). When I execute otool -tV command on the first I have my assembler code printed. But when I write it ...
0
votes
1answer
133 views

iOS app downgrade compatibility requirements

I was wondering if it's possible to downgrade an app from the app store (ARM binary) to a lower version. For example if the app requires iOS 5.0 or 4.3 or later getting it to run on iOS 4.2 or 4.0. I ...
1
vote
2answers
270 views

Getting complete disassembly of an executable binary

Is it possible to get a complete disassembly (which can act as input to an assembler) of an executable? When I use otool -tV a.out I get to see only the text section. Other sections like data aren't ...
0
votes
1answer
122 views

gdb backtrace output and otx (otool) output?

Why are none of the addresses from the gdb backtrace output present in the otx (otool) assembly output of this program? I was under the impression that they corresponded to the offsets in my otool asm ...
0
votes
1answer
280 views

what is the target file for otool -L at detecting non-public API in my xcode project

I'm searching how to use otool for detecting non-public API in my xcode project. I know that should use otool in terminal. But it shows 'can't map file: appname.app (Invalid argument)' when I use ...
0
votes
2answers
1k views

-bash: otool: command not found, Can you teach bash a default location to look for a command?

I can find the tool command in my filesystem under: /Applications/Xcode.app/Contents/Developer/usr/bin/otool If I specify that entire path, otool will work. ...
2
votes
1answer
146 views

List global variables in executable

How can I dump all the global variables and the address offsets in my executable? This is on os x, app developed with xcode compiled with gcc. Thank you
2
votes
1answer
184 views

otool -l shows (0x80000022) Unknown load command on OSX 10.5 when framework was built from OSX 10.6

I built a framework using OSX 10.6 and everything is fine, I have the Base SDK and Deployment SDK set to 10.5. I also am building only a i386 arch. When I bring this framework to a OSX 10.5 and I ...
10
votes
1answer
659 views

Matching up offsets in iOS crash dump to disassembled binary

I'm having trouble matching up the offsets in the stack traces of iOS crash dumps with offsets in the disassembly of the binary as output by otool. Can anybody confirm how in principle I match these ...
10
votes
1answer
1k views

Is it possible to edit and recompile an iOS Binary?

I have decided to ask this question here after a lot of time spending with Google. But I couldn't able to get the answer for my question yet. Here follows the details: I have an application and ...
1
vote
1answer
860 views

XCode 4, dylib & install_name_tool

I'm trying to get a dylib working in my OSX project. Ive been reading a few samples, this one specifically: XCode 4 adding dylib But I still cannot get it to work. Here are the steps I have ...
2
votes
1answer
303 views

How do I resolve dyld imported symbols?

I'm trying to implement some parts of what dyld does and I'm a little bit stuck at stub trampolines. Consider the following ARM instruction: BL 0x2fec It branches with link (subprocedure call) to ...
1
vote
1answer
134 views

A very positive offset relative to EBP

I have a i386 binary and have not an opportunity to execute it. The otool -tv says: some funciton or method: 0001a1e0 pushl %ebp ; just prolog 0001a1e1 movl %esp,%ebp ; ...
6
votes
2answers
4k views

What is your favorite disassembler tool in Mac OS X?

I am using the otool, nm and Fraise text editor to disassemble the Mach-o binaries. My workflow at this point is pretty straightforward: 1. List the existed symbols. nm -g 2. Get the disasm ...
3
votes
1answer
1k views

Can you please help me understand how Mach-O libraries work in Mac Os X?

I am developing a Cocoa Application using the latest version of Xcode 4, I want to link dynamic libraries to my project (dylibs) and I read somewhere that adding the libraries in my project was not ...
2
votes
0answers
299 views

XQuartz dynamic loading error

I updated XQuartz, and now it doesn't load, complaining that: Dyld Error Message: Library not loaded: /opt/X11/lib/libfreetype.6.dylib Referenced from: ...
1
vote
1answer
5k views

Disassemble default iOS apps with otool

When I try to disassemble the stock iOS apps (not app store ones) with otool it isn't split into different methods. It's just one massive section. Here's the command I'm using: otool -tV ...
0
votes
1answer
214 views

xcode is not building static libraries properly (functions are not in them)

Basically I am able to create and compile a static library in xcode4 but the functions are not being read in by otool. I managed to do it once so that it would work but every other time since then it ...
3
votes
2answers
6k views

how to use otool

apple suggested me to use "strings" or "otool" to dect the private api (isinf) in my code , I am totally newbie so any help how to use those tools
1
vote
0answers
171 views

Adding symbol to external names directory of static library

I am confused by the difference in the symbol lists produced by otool and nm for a particular static library. I am trying to link a few static libraries to create the final executable but the linker ...
1
vote
0answers
302 views

howto turn otool output into compilable form?

Greetings, I've created a couple of text files from mac i386 binary (via otx and otool -tV ), but when I try to recompile them again, I fail. I've tried cc -x assembler test.s But I keep getting ...
1
vote
1answer
190 views

Meaning of otool “caps” field

When I run otool -favh some/library.so there are the following fields: Mach header magic cputype cpusubtype caps filetype ncmds sizeofcmds flags MH_MAGIC_64 X86_64 ALL LIB64 ...
1
vote
1answer
148 views

Why is the first column of the results from otool not continuous?

I'm sorry if this is a really noob question. I'm using otool to disassemble a file and this is the result of a method that I'm interested in: _KTDriverIsRunning: 0000000000000d98 pushq %rbp ...
0
votes
1answer
643 views

Problem with understanding arm assembly code structure

code is listed as follows, I want to know in the ending part 0000e0b4 001d22d0 ldrsbeq r2, [sp], -r0 does this do calculation for this line of code since it loads the address defined in the ...
7
votes
2answers
1k views

MacOSX: How to collect dependencies into a local bundle?

I am creating a plugin application (dylib) that depends on several other libraries. These other libraries are installed on my system, but are not guaranteed to be installed on any user's system. So I ...
3
votes
3answers
468 views

How can I determine the location of disassembled code within an executable?

I've got an executable file (C++, i386, compiled under MacOS/X Tiger, if it matters) that contains a bug. The fix for the bug is straightforward -- there's a place in the code where it calls fork() ...
27
votes
5answers
8k views

Building OSX App Bundle

Hi Suppose I have have made a an osX app without using Xcode. After compiling with GCC I get an executable which is linked to several other libraries. Some of those libraries might again be ...
0
votes
1answer
2k views

Using otool (recursively) to find shared libraries needed by an app

I have a Cocoa app that uses otool to find required shared libraries that an app needs to function properly. For example, say I run otool -L on an app that uses QTKit.framework. I get a list of the ...
1
vote
1answer
3k views

What's the trick to use otool on the mac?

I want to see the headers of an application. I try this: myMac:~ me$ /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/otool [-fahlLDtdorSTMRIHvVcXm] /Developer/Platforms/TheIPhoneApplication ...
4
votes
2answers
2k views

How to insert a LC_LOAD_DYLIB command into a Mach-O binary (OSX)

I'm looking to patch a piece of abandonware with some code. The software is carbon based, so I can not use an InputManager (at least, I do not think I can). My idea was to add a dylib reference to ...