Tagged Questions
Executable file format utilized by Darwin.
13
votes
1answer
2k views
Apple Mach-O linker (id) warning : building for MacOSX, but linking against dylib built for iOS
Starting from some point in the past xCode 4 in complaining about linker problems:
ld: warning: building for MacOSX, but linking against dylib built for iOS: ...
7
votes
1answer
108 views
Mach-O's two-level namespace symbol resolution in ELF/linux
Anyone know of an equivalent to Mach-O's two-level namespace symbol resolution in ELF/linux? I want code that links to lib+sym, not sym.
I'm trying to do what could best be described as ...
7
votes
1answer
341 views
How do I embed data into a Mac OS X mach-o binary file's TEXT Section?
I have a Mac OS X command-line tool that would benefit from having some data embedded in the binary file itself.
I know mach-o files support multiple segments, some of which can be used for storing ...
6
votes
3answers
1k views
Editing assembly on Mac OS X
I'm currently disassembling a Mach-O executable(the executable runs on Mac OS X, to be specific) in IDA Pro on windows. I have one instruction which I want to change, but it doesn't seem that IDA Pro ...
6
votes
4answers
25k views
How do I create a dynamic library (dylib) with Xcode?
I'm building few command-line utilities in Xcode (plain C, no Cocoa). I want all of them to use my customized version of libpng, and I want to save space by sharing one copy of the library among all ...
4
votes
1answer
109 views
iPhone Mach-O binaries, string storage, __TEXT/__DATA
I am attempting to read constant (or initilization) strings from an iPhone Mach-O binary file. I understand that the 3 relevant segment.sections are _TEXT._cstring _TEXT._ustring and _DATA._cfstring. ...
3
votes
1answer
93 views
Mach-O symbol stubs (IOS)
I am trying to understand how Mach-o files work, and have made a good deal of progress with the online resources available (In particular, the Apple page here: ...
3
votes
2answers
177 views
Using Objective-C Metadata to Generate Class Dependency Graph
This guy came up with a pretty neat tool to generate a class dependency graph - however, it relies on parsing your source code and looking for #import directives.
...
3
votes
2answers
179 views
Assembler Error: Mach-O 64 bit does not support absolute 32 bit addresses
So I'm learning x86_64 nasm assembly on my mac for fun. After hello world and some basic arithmetic, I tried copying a slightly more advanced hello world program from this site and modifying it for 64 ...
3
votes
2answers
1k views
Apple Mach-O Linker (Id) Error PDColoredProgressView
I'm trying to use PDColoredProgressView from here. It was working, but for some reason, XCode decided it wasn't having it and throws up 27 Apple Mach-O Linker (Id) Errors. Huh? Can anyone decode this? ...
3
votes
2answers
248 views
How does Mach-O loader loads different NSString objects?
I have known that If you define a bunch of @"" NSString objects in the source code in Mac OS. These NSStrings will be stored in a segment in the Mach-O library.
Section
sectname __ustring
segname ...
3
votes
2answers
894 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 ...
2
votes
2answers
54 views
Linux Mach-O Disassembler
Are there any Linux programs that can disassemble an OSX universal x86/x86_64 fat Mach-O binary like objdump? GNU binutils' objdump supports ELF and Windows PE files but not Mach-O.
2
votes
1answer
545 views
Apple Mach-O Librarian (libtool) error with no specific error
I've had to deal with plenty of libtool errors previously, but I really don't know what to do with one that doesn't give me a hint.
Here is the full error:
Libtool ...
2
votes
3answers
5k views
Apple Mach-O Linker (Id) error
Got this error for the first time, I have looked around and cannot find a solution to help me, I have cleaned my build and also checked to make sure I am compiling for the latest firmware.
This ...
2
votes
1answer
133 views
Uncaught exception - debuging techniques (C++)
I have encountered a curious scenario in which the following unlikely code:
try{
throw Core::ValueError();
}
catch (Core::Error &e){
...
}
(ValueError inherits from Error inherits from ...
2
votes
0answers
137 views
Remove dependent shared library from a dylib?
I know that I can use the -change option of install_name_tool to change the name of a dependent shared library stored in a dylib, but is there a way to remove a dependent shared library, which I ...
2
votes
1answer
279 views
Mach-O binaries using FASM
is anybody using FASM to produce Mach-O binaries?
it's my assembler of choice and I thought it would be nice to learn whether that's possible to accomplish and whether somebody is already doing it.
...
2
votes
1answer
286 views
reconstructing symbols stripped from Mach-O binary
Using Mac OS X 10.5 I'm trying to figure out how to use dtrace to track the execution of a Mach-O binary. However, it seems the symbols have all be stripped out so any attempts to put use probes ...
2
votes
2answers
282 views
Mac OS X: What is the best way to estimate the code & static data size of program?
I want to be able to get an estimate of how much code & static data is used by my C++ program?
Is there a way to find this out by looking at the executable or object files? Or perhaps something ...
1
vote
2answers
47 views
How to create raw binary from assembler “as” command
Is there any way to get raw binary output from "as" command in max os x?
When I assemble some simple assembly file it outputs Mach-O object file with its headers and some symbol information.
I want ...
1
vote
1answer
155 views
Apple Mach-O linker (ld) error using freenect library
When trying to compile the following file in xcode:
http://openkinect.org/wiki/C%2B%2BOpenCvExample
I get these errors:
Ld build/Debug/KinectOpenCV normal x86_64
cd ...
1
vote
2answers
144 views
Can a hex editor be used to edit the instructions in an executable binary?
If I have a binary executable containing compiled C code, can I use a hex editor to edit that binary and change a specific instruction into another one, such as nop or jmp? How can I know the offset ...
1
vote
1answer
95 views
fork Cocoa process and re-init Cocoa. how?
I tried to fork() a Cocoa process and setup a new Cocoa/ObjC environment but I get the error:
The process has forked and you cannot use this CoreFoundation functionality safely. You MUST exec().
...
1
vote
1answer
65 views
MacOSX: find out if a process (given a PID) is running in 32bit or in 64bit Intel mode
I have a PID and I want to find out if the process is running in 32bit or in 64bit Intel mode. How?
1
vote
1answer
83 views
Get __TEXT and __DATA Dyld address mapping from within an executable
To find the dyld address mapping of __TEXT and __DATA for my mach-o executable I set the environment variable DYLD_PRINT_SEGMENTS=1. This logs on the console where in memory the executable is mapped.
...
1
vote
1answer
2k views
Apple Mach-O Linker (ld) Error for using Switch statement?
I am creating an Objective-C program that when calling a C function, it will try to convert a number and return a string. However this caused an Apple Mach-O Linker (ld) Error when I tried to compile.
...
1
vote
1answer
182 views
How do I create a Cocoa (Obj-C) Dynamic Library for OS X?
So basically I want to create a Dynamic Library in OS X that is built utilizing Cocoa (In Obj-C, not C or C++). My question is - how do I do this?
Ultimately I want the library to be loaded by ...
1
vote
2answers
226 views
How can I modify the strings of a binary(Mach-O) file?
Is there any way to (easily) modify a string in a Mach-O binary? I want to extend the length of a pre-existing string.
1
vote
4answers
697 views
Parser for 32-bit and 64-bit Mach-O binary/executable formats in C++
I'm looking for a C++ library that can parse 32-bit and 64-bit Mach-O binary format. I don't need anything fancy, just a disassembly and splitting the file into its sections, so no decompilation, name ...
1
vote
1answer
962 views
Mach-O binary editor for OSX?
py-macholib does not work properly on osx (using darwin ports). I have not found any other alternative.
Any ideas?
0
votes
2answers
49 views
Apple Mach O Linker warning
I am getting this annoying warning
Apple Mach-O Linker Warning
Alignment lost in merging tentative definition _searchFlag
i have declared the search flag in the constant.h file like this
BOOL ...
0
votes
1answer
20 views
How to infer imported method names from IOS Mach-O binary
When using a disassembler to analyze IOS binaries (Mach-O) files, I see that method names are annotated for functions in external libraries, even for C-style function calls in release binaries. I ...
0
votes
0answers
27 views
Add load command to mach-o binary
Is it possible to add an LC_LOAD_DYLIB to a binary? There has been protection against DYLD_INSERT_LIBRARIES being used so I need another to load a dylib into an app
0
votes
1answer
25 views
Mach-O Error using drawGlossAndGradient()
Got this error:
Undefined symbols for architecture i386:
"_drawGlossAndGradient", referenced from:
-[CustomHeader drawRect:] in CustomHeader.o
ld: symbol(s) not found for architecture i386
clang: ...
0
votes
1answer
99 views
What's the meaning of dylib files?
My C++ compiler creates "dylib" files which contain dynamic libraries. Whats the difference between .dylib and .so files?
And what is the difference between files in Mach-O format and files in an ...
0
votes
1answer
77 views
How to run a simple HelloWorld program on jailbreak iphone ?
I created a HelloWorld program, and compile it to a mach-o file. Then, I uploaded it to my jailbreak iphone via SSH.
I login with root account. Then, I tried to execute this program by running ...
0
votes
1answer
63 views
Which are the Mach-O files in my Xcode project?
Can anybody give me some examples of Mach-O files in an Xcode project, or any framework's Mach-O file?
0
votes
0answers
108 views
iPhone executable (MACH-O) decryption
I've been playing around with/debugging/disassembling binaries on the iPhone.
The first obstacle is that the binaries are encrypted and dissembler can not read them. This can be overcome by dumping ...
0
votes
0answers
33 views
Linker problem: symbols resolved by wrong library
I have written a dynamic library, let me call it "libX", which uses a dynamic openSSL library and another dynamic library "libY". The latter one is obviously statically linked against openSSL.
When I ...
0
votes
1answer
242 views
Mac Application archiving - Apple Mach-O Linker (Id) Error
I've a Mac application that uses frameworks like Obectiveflickr, PHFacebook etc.These frameworks are copied in Library/Frameworks and these are linked to the application from there.The application ...
0
votes
0answers
39 views
I'm missing methods in Mach-O 64bit disassembly, why?
I'm curious why when I disassemble my own program which is a fat binary (using otx), once for the i386 arch, and again for the x86_64 arch - I cannot find certain methods which are contained in the ...
0
votes
1answer
99 views
mach_vm_region_recurse, mapping memory and shared libraries on osx
I'm using vm_region_recurse_64 to map out the memory for a given process, vmmap style.
Trying to get a complete list of shared libraries loaded by the application by examining each library's Mach-O ...
0
votes
1answer
105 views
Xcode 4 mach-o error
I coded an OSX application (not for iphone) on top of another, changed the name properly (I was even asked if I wanted to rename all instances of the original name, and did). It compiles perfectly ...
0
votes
1answer
266 views
task_for_pid always returns (os/kern) failure on darwin in C
For some reasons I cannot get anything to come out of task_for_pid()
I can't find very much information but what I am trying to do it attach to another process and search its memory, but every time I ...
0
votes
1answer
775 views
Apple Mach-O Linker (ld) Error (OpenCV)
The following is the detailed error message I got while compiling a OpenCV project. Please help me out. Thanks a lot!
Undefined symbols for architecture x86_64:
"_cvFindFundamentalMat", referenced ...
0
votes
0answers
162 views
iPhone Mach-O error when using CMBlockBufferRef
I am getting mach-O linker errors while trying to extract a music file into its PCM form using AVAsset.
while (reader.status == AVAssetReaderStatusReading){
AVAssetReaderTrackOutput * ...
0
votes
1answer
86 views
Patch links in a Mach-O file?
I have a Mach-O binary which is very old and linked to a bunch of old frameworks than no longer exist or incompatible.
My aim is to abstract the components from these frameworks without replacing my ...
0
votes
1answer
128 views
iPhone 3.1.3 GDB dyld: Symbol not found
I'm trying to just get gdb to break at 0x2000 in a iphone application. The problem is that it requirers a shared library that's for iOS 4. I have tried to set sysroot and set solib-absolute-path in ...
0
votes
1answer
60 views
What is the point of padding?
In particular, I'm reading into the Mach-O binary file format for Intel 32 on OS X. After the FAT header there is a whole bunch of padding before the offset of the first archive. What is the point of ...