Tagged Questions

7
votes
1answer
107 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 ...
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
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
893 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
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
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
82 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
181 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
4answers
694 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
961 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
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
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
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
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
120 views

What encoding do strings found in the Mach-O __DATA segment, __cfstring section use?

I'm wondering how to properly read strings from a specific section of a Mach-O binary. (This is a binary for iOS.) I'm curious about the strings found in the __DATA segment, __cfstring section. ...
0
votes
2answers
203 views

What library is needed for mach-o/nlist.h (Mac OS X)

I seem to have trouble finding the correct library to #include in my source code. Searched all over the web and my manpages... No result :'( Does anyone have a clue?
0
votes
1answer
187 views

OS X: Do sections in the __TEXT segment get modified by other programs?

Does it happen that some program (or even the OS itself) changes the contents of an executable's __TEXT segment, for whatever reason? Note: Here, I'm referring to the "__TEXT" segment, not the ...