Class: PacketGen::Types::Fields Abstract
- Inherits:
-
Object
- Object
- PacketGen::Types::Fields
- Defined in:
- lib/packetgen/types/fields.rb
Overview
Set of fields
This class is a base class to define headers or anything else with a binary format containing multiple fields.
Basics
A Fields subclass is generaly composed of multiple binary fields. These fields have each a given type. All types from PacketGen::Types module are supported, and all Fields subclasses may also be used as field type.
To define a new subclass, it has to inherit from Fields. And some class methods have to be used to declare attributes/fields:
class MyBinaryStructure < PacketGen::Types::Fields
# define a first Int8 attribute, with default value: 1
define_field :attr1, PacketGen::Types::Int8, default: 1
#define a second attribute, of kind Int32
define_field :attr2, PacketGen::Types::Int32
end
These defintions create 4 methods: #attr1, #attr1=, #attr2 and #attr2=. All these methods take and/or return Integers.
Fields may also be accessed through #[] ans #[]=. These methods give access to type object:
mybs = MyBinaryStructure.new
mybs.attr1 # => Integer
mybs[:attr1] # => PacketGen::Types::Int8
#initialize accepts an option hash to populate attributes. Keys are attribute name symbols, and values are those expected by writer accessor.
#read is able to populate object from a binary string.
#to_s returns binary string from object.
Add Fields
Fields.define_field adds a field to Fields subclass. A lot of field types may be defined: integer types, string types (to handle a stream of bytes). More complex field types may be defined using others Fields subclasses:
# define a 16-bit little-endian integer field, named type
define_field :type, PacketGen::Types::Int16le
# define a string field
define_field :body, PacketGen::Types::String
# define afield using a complex type (Fields subclass)
define_field :mac_addr, PacketGen::Eth::MacAddr
This example creates six methods on our Fields subclass: #type, #type=, #body, #body=, #mac_addr and #mac_addr=.
Fields.define_field has many options (third optional Hash argument):
-
:defaultgives default field value. It may be a simple value (an Integer for an Int field, for example) or a lambda, -
:builderto give a builder/constructor lambda to create field. The lambda takes one argument: Fields subclass object owning field, -
:optionalto define this field as optional. This option takes a lambda parameter used to say if this field is present or not, -
:enumto define Hash enumeration for an Enum type.
For example:
# 32-bit integer field defaulting to 1
define_field :type, PacketGen::Types::Int32, default: 1
# 16-bit integer field, created with a random value. Each instance of this
# object will have a different value.
define_field :id, PacketGen::Types::Int16, default: ->{ rand(65535) }
# a size field
define_field :body_size, PacketGen::Types::Int16
# String field which length is taken from body_size field
define_field :body, PacketGen::Types::String, builder: ->(obj, type) { type.new('', length_from: obj[:body_size]) }
# 16-bit enumeration type. As :default not specified, default to first value of enum
define_field :type_class, PacketGen::Types::Int16Enum, enum: { 'class1' => 1, 'class2' => 2}
# optional field. Only present if another field has a certain value
define_field :opt1, PacketGen::Types::Int16, optional: ->(h) { h.type == 42 }
Fields.define_field_before and Fields.define_field_after are also defined to relatively create a field from anoher one (for example, when adding a field in a subclass).
Generating bit fields
Fields.define_bit_fields_on creates a bit field on a previuously declared integer field. For example, frag field in IP header:
define_field :frag, Types::Int16, default: 0
define_bit_fields_on :frag, :flag_rsv, :flag_df, :flag_mf, :fragment_offset, 13
This example generates methods:
-
#fragand#frag=to accessfragfield as a 16-bit integer, -
#flag_rsv?,#flag_rsv=,#flag_df?,#flag_df=,#flag_mf?and#flag_mf=to access Boolean RSV, MF and DF flags fromfragfield, -
#fragment_offsetand#fragment_offset=to access 13-bit integer fragment offset subfield fromfragfield.
Direct Known Subclasses
Header::Base, Header::DHCPv6::DUID, Header::DHCPv6::Option, Header::Eth::MacAddr, Header::IGMPv3::GroupRecord, Header::IKE::Attribute, Header::IKE::SAProposal, Header::IKE::TrafficSelector, Header::IKE::Transform, Header::IP::Addr, Header::IP::Option, Header::IPv6::Addr, Header::IPv6::Pad1, Header::MLDv2::McastAddressRecord, Header::OSPFv2::External, Header::OSPFv2::LSAHeader, Header::OSPFv2::LSR, Header::OSPFv2::Link, Header::OSPFv2::TosMetric, Header::OSPFv3::IPv6Prefix, Header::OSPFv3::LSAHeader, Header::OSPFv3::LSR, Header::OSPFv3::Link, PcapNG::Block, OUI, TLV
Class Method Summary collapse
-
.define_bit_fields_on(attr, *args) ⇒ void
Define a bitfield on given attribute class MyHeader < PacketGen::Types::Fields define_field :flags, Types::Int16 # define a bit field on :flag attribute: # flag1, flag2 and flag3 are 1-bit fields # type and stype are 3-bit fields.
-
.define_field(name, type, options = {}) ⇒ void
Define a field in class class BinaryStruct < PacketGen::Types::Fields # 8-bit value define_field :value1, Types::Int8 # 16-bit value define_field :value2, Types::Int16 # specific class, may use a specific constructor define_field :value3, MyClass, builder: ->(obj, type) { type.new(obj) } end.
-
.define_field_after(other, name, type, options = {}) ⇒ void
Define a field, after another one.
-
.define_field_before(other, name, type, options = {}) ⇒ void
Define a field, before another one.
-
.delete_field(name) ⇒ void
Delete a previously defined field.
-
.inherited(klass) ⇒ void
On inheritage, create @field_defs class variable.
Instance Method Summary collapse
-
#[](field) ⇒ Object
Get field object.
-
#[]=(field, obj) ⇒ Object
Set field object.
-
#bits_on(field) ⇒ Hash?
Get bit fields definition for given field.
-
#body=(value) ⇒ void
Used to set body as value of body object.
-
#fields ⇒ Array<Symbol>
Get all field names.
-
#force_binary(str) ⇒ String
Force str to binary encoding.
-
#initialize(options = {}) ⇒ Fields
constructor
Create a new header object.
-
#inspect ⇒ String
Common inspect method for headers.
-
#is_optional?(field) ⇒ Boolean
deprecated
Deprecated.
Use #optional? instead.
-
#is_present?(field) ⇒ Boolean
Say if an optional field is present.
-
#offset_of(field) ⇒ Integer
Get offset of given field in Fields structure.
-
#optional?(field) ⇒ Boolean
Say if this field is optional.
-
#optional_fields ⇒ Object
Get all optional field name.
-
#present?(field) ⇒ Boolean
Say if an optional field is present.
-
#read(str) ⇒ Fields
Populate object from a binary string.
-
#sz ⇒ nteger
Size of object as binary string.
-
#to_h ⇒ Hash
Return object as a hash.
-
#to_s ⇒ String
Return object as a binary string.
Constructor Details
#initialize(options = {}) ⇒ Fields
Create a new header object
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 |
# File 'lib/packetgen/types/fields.rb', line 302 def initialize(={}) @fields = {} @optional_fields = {} self.class.class_eval { @field_defs }.each do |field, ary| type, default, builder, optional, enum, = ary default = default.to_proc.call(self) if default.is_a?(Proc) @fields[field] = if builder builder.call(self, type) elsif enum type.new(enum) elsif !.empty? type.new() else type.new end value = [field] || default if value.class <= type @fields[field] = value elsif type < Types::Enum case value when ::String @fields[field].value = value else @fields[field].read(value) end elsif type < Types::Int @fields[field].read(value) elsif type <= Types::String @fields[field].read(value) elsif @fields[field].respond_to? :from_human @fields[field].from_human(value) end @optional_fields[field] = optional if optional end self.class.class_eval { @bit_fields }.each do |_, hsh| hsh.each_key do |bit_field| self.send "#{bit_field}=", [bit_field] if [bit_field] end end end |
Class Method Details
.define_bit_fields_on(attr, *args) ⇒ void
This method returns an undefined value.
Define a bitfield on given attribute
class MyHeader < PacketGen::Types::Fields
define_field :flags, Types::Int16
# define a bit field on :flag attribute:
# flag1, flag2 and flag3 are 1-bit fields
# type and stype are 3-bit fields. reserved is a 6-bit field
define_bit_fields_on :flags, :flag1, :flag2, :flag3, :type, 3, :stype, 3, :reserved, 7
end
A bitfield of size 1 bit defines 2 methods:
-
#field?which returns a Boolean, -
#field=which takes and returns a Boolean.
A bitfield of more bits defines 2 methods:
-
#fieldwhich returns an Integer, -
#field=which takes and returns an Integer.
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 |
# File 'lib/packetgen/types/fields.rb', line 240 def self.define_bit_fields_on(attr, *args) attr_def = @field_defs[attr] raise ArgumentError, "unknown #{attr} field" if attr_def.nil? type = attr_def.first unless type < Types::Int raise TypeError, "#{attr} is not a PacketGen::Types::Int" end total_size = type.new.width * 8 idx = total_size - 1 field = args.shift while field next unless field.is_a? Symbol size = if args.first.is_a? Integer args.shift else 1 end unless field == :_ shift = idx - (size - 1) field_mask = (2**size - 1) << shift clear_mask = (2**total_size - 1) & (~field_mask & (2**total_size - 1)) if size == 1 class_eval <<-METHODS def #{field}? val = (self[:#{attr}].to_i & #{field_mask}) >> #{shift} val != 0 end def #{field}=(v) val = v ? 1 : 0 self[:#{attr}].value = self[:#{attr}].to_i & #{clear_mask} self[:#{attr}].value |= val << #{shift} end METHODS else class_eval <<-METHODS def #{field} (self[:#{attr}].to_i & #{field_mask}) >> #{shift} end def #{field}=(v) self[:#{attr}].value = self[:#{attr}].to_i & #{clear_mask} self[:#{attr}].value |= (v & #{2**size - 1}) << #{shift} end METHODS end @bit_fields[attr] = {} if @bit_fields[attr].nil? @bit_fields[attr][field] = size end idx -= size field = args.shift end end |
.define_field(name, type, options = {}) ⇒ void
This method returns an undefined value.
Define a field in class
class BinaryStruct < PacketGen::Types::Fields
# 8-bit value
define_field :value1, Types::Int8
# 16-bit value
define_field :value2, Types::Int16
# specific class, may use a specific constructor
define_field :value3, MyClass, builder: ->(obj, type) { type.new(obj) }
end
bs = BinaryStruct.new
bs[value1] # => Types::Int8
bs.value1 # => Integer
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 |
# File 'lib/packetgen/types/fields.rb', line 145 def self.define_field(name, type, ={}) define = [] if type < Types::Enum define << "def #{name}; self[:#{name}].to_i; end" define << "def #{name}=(val) self[:#{name}].value = val; end" elsif type < Types::Int define << "def #{name}; self[:#{name}].to_i; end" define << "def #{name}=(val) self[:#{name}].read val; end" elsif type.instance_methods.include?(:to_human) && type.instance_methods.include?(:from_human) define << "def #{name}; self[:#{name}].to_human; end" define << "def #{name}=(val) self[:#{name}].from_human val; end" else define << "def #{name}; self[:#{name}]; end\n" define << "def #{name}=(val) self[:#{name}].read val; end" end define.delete(1) if type.instance_methods.include? "#{name}=".to_sym define.delete(0) if type.instance_methods.include? name class_eval define.join("\n") @field_defs[name] = [type, .delete(:default), .delete(:builder), .delete(:optional), .delete(:enum), ] @ordered_fields << name end |
.define_field_after(other, name, type, options = {}) ⇒ void
This method returns an undefined value.
Define a field, after another one
200 201 202 203 204 205 206 207 208 209 |
# File 'lib/packetgen/types/fields.rb', line 200 def self.define_field_after(other, name, type, ={}) define_field name, type, return if other.nil? @ordered_fields.delete name idx = @ordered_fields.index(other) raise ArgumentError, "unknown #{other} field" if idx.nil? @ordered_fields[idx + 1, 0] = name end |
.define_field_before(other, name, type, options = {}) ⇒ void
This method returns an undefined value.
Define a field, before another one
181 182 183 184 185 186 187 188 189 190 |
# File 'lib/packetgen/types/fields.rb', line 181 def self.define_field_before(other, name, type, ={}) define_field name, type, return if other.nil? @ordered_fields.delete name idx = @ordered_fields.index(other) raise ArgumentError, "unknown #{other} field" if idx.nil? @ordered_fields[idx, 0] = name end |
.delete_field(name) ⇒ void
This method returns an undefined value.
Delete a previously defined field
214 215 216 217 218 219 |
# File 'lib/packetgen/types/fields.rb', line 214 def self.delete_field(name) @ordered_fields.delete name @field_defs.delete name undef_method name undef_method "#{name}=" end |
.inherited(klass) ⇒ void
This method returns an undefined value.
On inheritage, create @field_defs class variable
107 108 109 110 111 112 113 114 115 116 |
# File 'lib/packetgen/types/fields.rb', line 107 def self.inherited(klass) ordered = @ordered_fields.clone field_defs = @field_defs.clone bf = @bit_fields.clone klass.class_eval do @ordered_fields = ordered @field_defs = field_defs @bit_fields = bf end end |
Instance Method Details
#[](field) ⇒ Object
Get field object
349 350 351 |
# File 'lib/packetgen/types/fields.rb', line 349 def [](field) @fields[field] end |
#[]=(field, obj) ⇒ Object
Set field object
357 358 359 |
# File 'lib/packetgen/types/fields.rb', line 357 def []=(field, obj) @fields[field] = obj end |
#bits_on(field) ⇒ Hash?
Get bit fields definition for given field.
508 509 510 |
# File 'lib/packetgen/types/fields.rb', line 508 def bits_on(field) self.class.class_eval { @bit_fields }[field] end |
#body=(value) ⇒ void
This method returns an undefined value.
Used to set body as value of body object.
466 467 468 469 470 471 472 473 474 475 476 477 478 479 |
# File 'lib/packetgen/types/fields.rb', line 466 def body=(value) raise BodyError, 'no body field' unless @fields.key? :body case body when ::String self[:body].read value when Int, Fields self[:body] = value when NilClass self[:body] = Types::String.new.read('') else raise ArgumentError, "Can't cram a #{body.class} in a :body field" end end |
#fields ⇒ Array<Symbol>
Get all field names
363 364 365 |
# File 'lib/packetgen/types/fields.rb', line 363 def fields @ordered_fields ||= self.class.class_eval { @ordered_fields } end |
#force_binary(str) ⇒ String
Force str to binary encoding
484 485 486 |
# File 'lib/packetgen/types/fields.rb', line 484 def force_binary(str) PacketGen.force_binary(str) end |
#inspect ⇒ String
Common inspect method for headers
431 432 433 434 435 436 437 438 439 440 |
# File 'lib/packetgen/types/fields.rb', line 431 def inspect str = Inspect.dashed_line(self.class, 1) fields.each do |attr| next if attr == :body next unless present?(attr) str << Inspect.inspect_attribute(attr, self[attr], 1) end str end |
#is_optional?(field) ⇒ Boolean
Use #optional? instead.
379 380 381 382 |
# File 'lib/packetgen/types/fields.rb', line 379 def is_optional?(field) Deprecation.deprecated(self.class, __method__, 'optional?', klass_method: true) optional? field end |
#is_present?(field) ⇒ Boolean
Say if an optional field is present
394 395 396 397 |
# File 'lib/packetgen/types/fields.rb', line 394 def is_present?(field) Deprecation.deprecated(self.class, __method__, 'present?', klass_method: true) present? field end |
#offset_of(field) ⇒ Integer
Get offset of given field in PacketGen::Types::Fields structure.
492 493 494 495 496 497 498 499 500 501 502 |
# File 'lib/packetgen/types/fields.rb', line 492 def offset_of(field) raise ArgumentError, "#{field} is an unknown field of #{self.class}" unless @fields.include?(field) offset = 0 fields.each do |f| break offset if f == field next unless present?(f) offset += self[f].sz end end |
#optional?(field) ⇒ Boolean
Say if this field is optional
374 375 376 |
# File 'lib/packetgen/types/fields.rb', line 374 def optional?(field) @optional_fields.key? field end |
#optional_fields ⇒ Object
Get all optional field name
368 369 370 |
# File 'lib/packetgen/types/fields.rb', line 368 def optional_fields @optional_fields.keys end |
#present?(field) ⇒ Boolean
Say if an optional field is present
386 387 388 389 390 |
# File 'lib/packetgen/types/fields.rb', line 386 def present?(field) return true unless optional?(field) @optional_fields[field].call(self) end |
#read(str) ⇒ Fields
Populate object from a binary string
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
# File 'lib/packetgen/types/fields.rb', line 402 def read(str) return self if str.nil? force_binary str start = 0 fields.each do |field| next unless present?(field) obj = nil if self[field].respond_to? :width width = self[field].width obj = self[field].read str[start, width] start += width elsif self[field].respond_to? :sz obj = self[field].read str[start..-1] size = self[field].sz start += size else obj = self[field].read str[start..-1] start = str.size end self[field] = obj unless obj == self[field] end self end |
#sz ⇒ nteger
Size of object as binary string
451 452 453 |
# File 'lib/packetgen/types/fields.rb', line 451 def sz to_s.size end |
#to_h ⇒ Hash
Return object as a hash
457 458 459 |
# File 'lib/packetgen/types/fields.rb', line 457 def to_h Hash[fields.map { |f| [f, @fields[f].to_human] }] end |
#to_s ⇒ String
Return object as a binary string
444 445 446 447 |
# File 'lib/packetgen/types/fields.rb', line 444 def to_s fields.select { |f| present?(f) } .map! { |f| force_binary @fields[f].to_s }.join end |