Class: PacketGen::Header::IGMPv3::GroupRecord

Inherits:
Types::Fields show all
Includes:
Types::Fieldable
Defined in:
lib/packetgen/header/igmpv3/group_record.rb

Overview

Class to handle IGMPv3 Group Records.

A Group Record is a block of fields containing information pertaining to the sender’s membership in a single multicast group on the interface from which the Report is sent.

A Group Record has the following format:

 0                   1                   2                   3
 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|  Record Type  |  Aux Data Len |     Number of Sources (N)     |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Multicast Address                       |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                       Source Address [1]                      |
+-                                                             -+
|                       Source Address [2]                      |
+-                                                             -+
.                               .                               .
.                               .                               .
.                               .                               .
+-                                                             -+
|                       Source Address [N]                      |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|                                                               |
.                                                               .
.                         Auxiliary Data                        .
.                                                               .
|                                                               |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

Author:

  • Sylvain Daubert

Since:

  • 2.4.0

Constant Summary collapse

RECORD_TYPES =

Known record types

Since:

  • 2.4.0

{
  'MODE_IS_INCLUDE' => 1,
  'MODE_IS_EXCLUDE' => 2,
  'CHANGE_TO_INCLUDE_MODE' => 3,
  'CHANGE_TO_EXCLUDE_MODE' => 4,
  'ALLOW_NEW_SOURCES' => 5,
  'BLOCK_OLD_SOURCES' => 6
}.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Types::Fieldable

#format_inspect, #read, #sz, #to_s, #type_name

Methods inherited from Types::Fields

#[], #[]=, #bits_on, define_bit_fields_on, define_field, define_field_after, define_field_before, #fields, fields, inherited, #initialize, #inspect, #offset_of, #optional?, #optional_fields, #present?, #read, remove_bit_fields_on, remove_field, #sz, #to_h, #to_s, update_field

Constructor Details

This class inherits a constructor from PacketGen::Types::Fields

Instance Attribute Details

#aux_dataString

Returns:

  • (String)


79
80
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 79

define_field :aux_data, Types::String,
builder: ->(h, t) { t.new(length_from: -> { h[:aux_data_len].to_i * 4 }) }

#aux_data_lenInteger

8-bit length of of the Auxiliary Data field (#aux_data), in unit of 32-bit words

Returns:

  • (Integer)


63
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 63

define_field :aux_data_len, Types::Int8, default: 0

#multicast_addrIP::Addr

IP multicast address to which this Group Record pertains

Returns:



71
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 71

define_field :multicast_addr, IP::Addr, default: '0.0.0.0'

#number_of_sourcesInteger

16-bit Number of source addresses in #source_addr

Returns:

  • (Integer)


67
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 67

define_field :number_of_sources, Types::Int16, default: 0

#source_addrIP::ArrayOfAddr

Array of source addresses

Returns:



75
76
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 75

define_field :source_addr, IP::ArrayOfAddr,
builder: ->(h, t) { t.new(counter: h[:number_of_sources]) }

#typeInteger

8-bit record type

Returns:

  • (Integer)


58
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 58

define_field :type, Types::Int8Enum, enum: RECORD_TYPES

Instance Method Details

#human_typeObject

Since:

  • 2.4.0



82
83
84
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 82

def human_type
  self[:type].to_human
end

#to_humanObject

Since:

  • 2.4.0



86
87
88
# File 'lib/packetgen/header/igmpv3/group_record.rb', line 86

def to_human
  "#{human_type}(ma:#{multicast_addr}|src:#{source_addr.to_human})"
end