Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | from __future__ import absolute_import, division, print_function from builtins import range from builtins import object import macholib from macholib import MachO as macho from collections import namedtuple import six import uuid import sys # # Defines segment/section descriptions that can be used by external users # like kext management to keep track about memory layout. To avoid the need # to keep full Mach-O instance around. # MachOSegment = namedtuple( 'MachOSegment', 'name vmaddr vmsize fileoff filesize sections' ) MachOSection = namedtuple( 'MachOSection', 'sectname addr size fileoff' ) # # The Mach-O library loads data for each section in a Mach-O. # This breaks our macros in few ways: # - It is slow and no one is really using it. # - File offsets in fileset KC points outside of the file window reported # by OSkext API. # # Until macholib gets some optin to avoid reading section data we have to # patch it here. # # !!! Note. This works only with the latest lib 1.15.1 !!! if macholib.__version__ == "1.15.2": from macholib.mach_o import ( LC_ID_DYLIB, LC_REGISTRY, LC_SEGMENT, LC_SEGMENT_64, S_ZEROFILL, load_command, section, section_64, ) from macholib.ptypes import sizeof from macholib.util import fileview # !!! This is the actual patch for macholib 1.15.2 !!! # # 1. MemMachOHeader subclasses macho.MachOHeader # 2. Overloaded load() method is copy/paste of the original load() with # small patch added that disables section contents loading. # 3. The new MemMachOHeader is injected back into library and used # in place of macho.MachOHeader. # # This code should not ever exist in the first place. So the plan is to # remove it when macholib gets improved or abandoned by our own # implementation. class MemMachOHeader(macho.MachOHeader): """ Mach-O header parser that does not try to load section data. """ def load(self, fh): fh = fileview(fh, self.offset, self.size) fh.seek(0) self.sizediff = 0 kw = {"_endian_": self.endian} header = self.mach_header.from_fileobj(fh, **kw) self.header = header # If header.magic != self.MH_MAGIC: # raise ValueError("header has magic %08x, expecting %08x" % ( # header.magic, self.MH_MAGIC)) cmd = self.commands = [] self.filetype = self.get_filetype_shortname(header.filetype) read_bytes = 0 low_offset = sys.maxsize for i in range(header.ncmds): # read the load command cmd_load = load_command.from_fileobj(fh, **kw) # read the specific command klass = LC_REGISTRY.get(cmd_load.cmd, None) if klass is None: raise ValueError("Unknown load command: %d" % (cmd_load.cmd,)) cmd_cmd = klass.from_fileobj(fh, **kw) if cmd_load.cmd == LC_ID_DYLIB: # remember where this command was if self.id_cmd is not None: raise ValueError("This dylib already has an id") self.id_cmd = i if cmd_load.cmd in (LC_SEGMENT, LC_SEGMENT_64): # for segment commands, read the list of segments segs = [] # assert that the size makes sense if cmd_load.cmd == LC_SEGMENT: section_cls = section else: # LC_SEGMENT_64 section_cls = section_64 expected_size = ( sizeof(klass) + sizeof(load_command) + (sizeof(section_cls) * cmd_cmd.nsects) ) if cmd_load.cmdsize != expected_size: raise ValueError("Segment size mismatch") # this is a zero block or something # so the beginning is wherever the fileoff of this command is if cmd_cmd.nsects == 0: if cmd_cmd.filesize != 0: low_offset = min(low_offset, cmd_cmd.fileoff) else: # this one has multiple segments for _j in range(cmd_cmd.nsects): # read the segment seg = section_cls.from_fileobj(fh, **kw) # If the segment has a size and is not zero filled # then its beginning is the offset of this segment not_zerofill = (seg.flags & S_ZEROFILL) != S_ZEROFILL if seg.offset > 0 and seg.size > 0 and not_zerofill: low_offset = min(low_offset, seg.offset) # Do NOT read section data. It is not required and # does not work well with filset KC offsets. """ if not_zerofill: c = fh.tell() fh.seek(seg.offset) sd = fh.read(seg.size) seg.add_section_data(sd) fh.seek(c) """ segs.append(seg) # data is a list of segments cmd_data = segs else: # data is a raw str data_size = cmd_load.cmdsize - sizeof(klass) - sizeof(load_command) cmd_data = fh.read(data_size) cmd.append((cmd_load, cmd_cmd, cmd_data)) read_bytes += cmd_load.cmdsize # make sure the header made sense if read_bytes != header.sizeofcmds: raise ValueError( "Read %d bytes, header reports %d bytes" % (read_bytes, header.sizeofcmds) ) self.total_size = sizeof(self.mach_header) + read_bytes self.low_offset = low_offset # Patch the library to use our own header class instead. macho.MachOHeader = MemMachOHeader class MemMachO(macho.MachO): """ Mach-O implementation that accepts I/O stream instead of file. """ def __init__(self, file): """ Creates Mach-O parser on top of provided I/O. """ # Figured out file size from the I/O. file.seek(0, 2) size = file.tell() file.seek(0, 0) # supports the ObjectGraph protocol self.graphident = 'mem:%d//'.format(size) self.filename = 'mem:%d//'.format(size) self.loader_path = "<no-path>" # initialized by load self.fat = None self.headers = [] self.load(file) @staticmethod def make_seg(seg, sects): """ Constructs MachOSegment from input. """ # Wrap all sections in MachOSection tuple. segsec = [ MachOSection( sectname = six.ensure_str(s.segname[:s.segname.find(b'\x00')]), addr = s.addr, fileoff = s.offset, size = s.size ) for s in sects ] # Return MachOSegment return MachOSegment( name=six.ensure_str(seg.segname[:seg.segname.find(b'\x00')]), vmaddr = seg.vmaddr, vmsize = seg.vmsize, fileoff = seg.fileoff, filesize = seg.filesize, sections = segsec ) @property def segments(self): """ Constructs section/segment descriptors. Values are cached in an instance attribute. """ if hasattr(self, '_segments'): return self._segments # Wrap all segments/sections into a MachOSegment/MachOSection. self._segments = [ self.make_seg(seg, sec) for h in self.headers for _, seg, sec in h.commands if isinstance(seg, SEGMENT_TYPES) ] return self._segments @property def uuid(self): """ Returns UUID of the Mach-O. """ if hasattr(self, '_uuid'): return self._uuid for h in self.headers: for cmd in h.commands: # cmds is [(load_command, segment, [sections..])] (_, segment, _) = cmd if isinstance(segment, macholib.mach_o.uuid_command): self._uuid = str(uuid.UUID(bytes=segment.uuid)).upper() return self._uuid # some fixups in macholib that are required for kext support macholib.mach_o.MH_KEXT_BUNDLE = 0xB macholib.mach_o.MH_FILETYPE_NAMES[macholib.mach_o.MH_KEXT_BUNDLE] = "kext bundle" macholib.mach_o.MH_FILETYPE_SHORTNAMES[macholib.mach_o.MH_KEXT_BUNDLE] = "kext" SEGMENT_TYPES = (macholib.mach_o.segment_command_64, macholib.mach_o.segment_command) if six.PY3: # Use newer macholib interface on Python 3. def get_load_command_human_name(lc): return lc.get_cmd_name() else: def get_load_command_human_name(lc): """ return string name of LC_LOAD_DYLIB => "load_dylib" "<unknown>" if not found """ retval = "<unknown>" if lc.cmd in macho.LC_REGISTRY: retval = macho.LC_REGISTRY[lc.cmd].__name__ retval = retval.replace("_command", "") return retval class VisualMachoMap(object): KB_1 = 1024 KB_16 = 16 * 1024 MB_1 = 1 * 1024 * 1024 GB_1 = 1 * 1024 * 1024 * 1024 def __init__(self, name, width=40): self.name = name self.width = 40 self.default_side_padding = 2 def get_header_line(self): return '+' + '-' * (self.width - 2) + '+' def get_space_line(self): return '|' + ' ' * (self.width - 2) + '|' def get_dashed_line(self): return '|' + '-' * (self.width - 2) + '|' def get_dotted_line(self): return '|' + '.' * (self.width - 2) + '|' def center_text_in_line(self, line, text): even_length = bool(len(text) % 2 == 0) if len(text) > len(line) - 2: raise ValueError("text is larger than line of text") lbreak_pos = (len(line) // 2) - (len(text) // 2) if not even_length: lbreak_pos -= 1 out = line[:lbreak_pos] + text return out + line[len(out):] def get_separator_lines(self): return ['/' + ' ' * (self.width - 2) + '/', '/' + ' ' * (self.width - 2) + '/'] def printMachoMap(self, mobj): MapBlock = namedtuple('MapBlock', 'name vmaddr vmsize fileoff filesize extra_info is_segment') outstr = self.name + '\n' other_cmds = '' blocks = [] for hdr in mobj.headers: cmd_index = 0 for cmd in hdr.commands: # cmds is [(load_command, segment, [sections..])] (lc, segment, sections) = cmd lc_cmd_str = get_load_command_human_name(lc) lc_str_rep = "\n\t LC: {:s} size:{:d} nsects:{:d}".format(lc_cmd_str, lc.cmdsize, len(sections)) # print lc_str_rep if isinstance(segment, SEGMENT_TYPES): segname = six.ensure_str(segment.segname[:segment.segname.find(b'\x00')]) # print "\tsegment: {:s} vmaddr: {:x} vmsize:{:d} fileoff: {:x} filesize: {:d}".format( # segname, segment.vmaddr, segment.vmsize, segment.fileoff, segment.filesize) blocks.append(MapBlock(segname, segment.vmaddr, segment.vmsize, segment.fileoff, segment.filesize, ' LC:{} : {} init:{:#0X} max:{:#0X}'.format(lc_cmd_str, segname, segment.initprot, segment.maxprot), True)) for section in sections: section_name = six.ensure_str(section.sectname[:section.sectname.find(b'\x00')]) blocks.append(MapBlock(section_name, section.addr, section.size, section.offset, section.size, 'al:{} flags:{:#0X}'.format(section.align, section.flags), False)) #print "\t\tsection:{:s} addr:{:x} off:{:x} size:{:d}".format(section_name, section.addr, section.offset, section.size) elif isinstance(segment, macholib.mach_o.uuid_command): other_cmds += "\n\t uuid: {:s}".format(str(uuid.UUID(bytes=segment.uuid)).upper()) elif isinstance(segment, macholib.mach_o.rpath_command): other_cmds += "\n\t rpath: {:s}".format(segment.path) elif isinstance(segment, macholib.mach_o.dylib_command): other_cmds += "\n\t dylib: {:s} ({:s})".format(str(sections[:sections.find(b'\x00')]), str(segment.current_version)) else: other_cmds += lc_str_rep cmd_index += 1 # fixup the self.width param for _b in blocks: if self.default_side_padding + len(_b.name) + 2 > self.width: self.width = self.default_side_padding + len(_b.name) + 2 if self.width % 2 != 0: self.width += 1 sorted_blocks = sorted(blocks, key=lambda b: b.vmaddr) mstr = [self.get_header_line()] prev_block = MapBlock('', 0, 0, 0, 0, '', False) for b in sorted_blocks: # TODO add separator blocks if vmaddr is large from prev_block if b.is_segment: s = self.get_dashed_line() else: s = self.get_dotted_line() s = self.center_text_in_line(s, b.name) line = "{:s} {: <#020X} ({: <10d}) floff:{: <#08x} {}".format(s, b.vmaddr, b.vmsize, b.fileoff, b.extra_info) if (b.vmaddr - prev_block.vmaddr) > VisualMachoMap.KB_16: mstr.append(self.get_space_line()) mstr.append(self.get_space_line()) mstr.append(line) if b.vmsize > VisualMachoMap.MB_1: mstr.append(self.get_space_line()) mstr.extend(self.get_separator_lines()) mstr.append(self.get_space_line()) #mstr.append(self.get_space_line()) prev_block = b mstr.append(self.get_space_line()) if prev_block.vmsize > VisualMachoMap.KB_16: mstr.append(self.get_space_line()) mstr.append(self.get_header_line()) print(outstr) print("\n".join(mstr)) print("\n\n=============== Other Load Commands ===============") print(other_cmds) if __name__ == '__main__': import sys if len(sys.argv) < 2: print("Usage: {} /path/to/macho_binary".format(sys.argv[0])) sys.exit(1) with open(sys.argv[-1], 'rb') as fp: mobject = MemMachO(fp) p = VisualMachoMap(sys.argv[-1]) p.printMachoMap(mobject) sys.exit(0) |