Class: MachO::SegmentCommand64

Inherits:
LoadCommand show all
Defined in:
lib/macho/load_commands.rb

Overview

A load command indicating that part of this file is to be mapped into the task’s address space. Corresponds to LC_SEGMENT_64.

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #offset

Instance Method Summary collapse

Methods inherited from LoadCommand

new_from_bin, #to_s

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(offset, cmd, cmdsize, segname, vmaddr, vmsize, fileoff, filesize, maxprot, initprot, nsects, flags) ⇒ SegmentCommand64

Returns a new instance of SegmentCommand64.



442
443
444
445
446
447
448
449
450
451
452
453
454
# File 'lib/macho/load_commands.rb', line 442

def initialize(offset, cmd, cmdsize, segname, vmaddr, vmsize, fileoff,
		filesize, maxprot, initprot, nsects, flags)
	super(offset, cmd, cmdsize)
	@segname = segname
	@vmaddr = vmaddr
	@vmsize = vmsize
	@fileoff = fileoff
	@filesize = filesize
	@maxprot = maxprot
	@initprot = initprot
	@nsects = nsects
	@flags = flags
end

Instance Attribute Details

#fileoffFixnum (readonly)

Returns the file offset of the segment.

Returns:

  • (Fixnum)

    the file offset of the segment



421
422
423
# File 'lib/macho/load_commands.rb', line 421

def fileoff
  @fileoff
end

#filesizeFixnum (readonly)

Returns the amount to map from the file.

Returns:

  • (Fixnum)

    the amount to map from the file



424
425
426
# File 'lib/macho/load_commands.rb', line 424

def filesize
  @filesize
end

#flagsFixnum (readonly)

Returns any flags associated with the segment.

Returns:

  • (Fixnum)

    any flags associated with the segment



436
437
438
# File 'lib/macho/load_commands.rb', line 436

def flags
  @flags
end

#initprotFixnum (readonly)

Returns the initial VM protection.

Returns:

  • (Fixnum)

    the initial VM protection



430
431
432
# File 'lib/macho/load_commands.rb', line 430

def initprot
  @initprot
end

#maxprotFixnum (readonly)

Returns the maximum VM protection.

Returns:

  • (Fixnum)

    the maximum VM protection



427
428
429
# File 'lib/macho/load_commands.rb', line 427

def maxprot
  @maxprot
end

#nsectsFixnum (readonly)

Returns the number of sections in the segment.

Returns:

  • (Fixnum)

    the number of sections in the segment



433
434
435
# File 'lib/macho/load_commands.rb', line 433

def nsects
  @nsects
end

#segnameString (readonly)

Returns the name of the segment, including null padding bytes.

Returns:

  • (String)

    the name of the segment, including null padding bytes



412
413
414
# File 'lib/macho/load_commands.rb', line 412

def segname
  @segname
end

#vmaddrFixnum (readonly)

Returns the memory address of the segment.

Returns:

  • (Fixnum)

    the memory address of the segment



415
416
417
# File 'lib/macho/load_commands.rb', line 415

def vmaddr
  @vmaddr
end

#vmsizeFixnum (readonly)

Returns the memory size of the segment.

Returns:

  • (Fixnum)

    the memory size of the segment



418
419
420
# File 'lib/macho/load_commands.rb', line 418

def vmsize
  @vmsize
end

Instance Method Details

#segment_nameString

Returns the segment’s name, with any trailing NULL characters removed.

Returns:

  • (String)

    the segment’s name, with any trailing NULL characters removed



457
458
459
# File 'lib/macho/load_commands.rb', line 457

def segment_name
	@segname.delete("\x00")
end