Class: Caper::CaptureWrapper

Inherits:
CommonWrapper show all
Includes:
Enumerable
Defined in:
lib/caper/capture_wrapper.rb

Overview

A superclass for both offline and live interfaces, but not dead interfaces This class provides all the features necessary for receiving packets through libpcap.

The loop and dispatch methods default to using a CopyHandler object when preparing values to the callback block. This is done to safely provide references to packets outside of the callback blocks.

See CopyHandler for more information.

Note that for performance reasons, you may not need or want to incur the extra overhead of creating a copy for every Packet. You can supply a nil value for the loop handler which will simply pass volatile references to packets directly to your block. You can also write custom handlers which implement the ‘receive_pcap’ method and implement custom defined behaviors.

Direct Known Subclasses

Live, Offline

Instance Attribute Summary collapse

Attributes inherited from CommonWrapper

#pcap

Instance Method Summary collapse

Methods inherited from CommonWrapper

#close, #closed?, #compile, #datalink, #geterr, #open_dump, #ready?, #snaplen, #supported_datalinks, #to_ptr

Constructor Details

#initialize(pcap, opts = {}, &block) ⇒ CaptureWrapper

Adds an extra parameter :handler for specifying a capture handler when using loop or dispatch. The handler defaults to CopyHandler, which always yields a copy of each packet to a block. Setting :handler to nil will pass packets directly to a block without copying them, which may be desirable if the packets are only ever processed within the block, and code does not need to retain a reference to them elsewhere.



33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/caper/capture_wrapper.rb', line 33

def initialize(pcap, opts={}, &block)
  if opts.has_key?(opts[:handler])
    @handler = opts[:handler]
  else
    @handler = CopyHandler
  end

  trap('INT') {stop(); close(); raise(SignalException, 'INT')}
  trap('TERM') {stop(); close(); raise(SignalException, 'TERM')}

  super(pcap, opts, &block)
end

Instance Attribute Details

#handlerObject

Returns the value of attribute handler.



24
25
26
# File 'lib/caper/capture_wrapper.rb', line 24

def handler
  @handler
end

Instance Method Details

#breakloopObject Also known as: stop

Sets a flag that will force dispatch() or loop() to return rather than looping; they will return the number of packets that have been processed so far, or nil if no packets have been processed so far.

breakloop does not guarantee that no further packets will be processed by dispatch() or loop() after it is called. At most one more packet may be processed.



245
246
247
# File 'lib/caper/capture_wrapper.rb', line 245

def breakloop
  Caper.pcap_breakloop(_pcap)
end

#dispatch(opts = {}) {|self, pkt| ... } ⇒ Integer?

Processes packets from a live capture or savefile until cnt packets are processed, the end of the current bufferful of packets is reached when doing a live capture, the end of the savefile is reached (when reading from a savefile), pcap_breakloop() is called, or an error occurs.

Thus, when doing a live capture, cnt is the maximum number of packets to process before returning, but is not a minimum number; when reading a live capture, only one bufferful of packets is read at a time, so fewer than cnt packets may be processed. A value of -1 or 0 for cnt causes all the packets received in one buffer to be processed when reading a live capture, and causes all the packets in the file to be processed when reading a savefile.

Note: In older versions of libpcap, the behavior when cnt was 0 was undefined; different platforms and devices behaved differently, so code that must work with older versions of libpcap should use -1, nor 0, as the value of cnt.

Yields:

  • (self, pkt)

Yield Parameters:

  • self (CaptureWrapper)

    A reference to self is passed to the block.

  • pkt (Packet)

    A packet object is yielded which references the header and bytes.

Returns:

  • (Integer, nil)

    Returns the number of packets processed on success; this can be 0 if no packets were read from a live capture or if no more packets are available in a savefile. It returns nil if the loop terminated due to a call to CommonWrapper.stop() before any packets were processed.

Raises:

  • (ReadError)

    An exception is raised if an error occurs or if libpcap returns an unexpected value.



164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'lib/caper/capture_wrapper.rb', line 164

def dispatch(opts={}, &block)
  cnt = opts[:count] || -1 # default to infinite loop
  h = opts[:handler]

  ret = Caper.pcap_loop(_pcap, cnt, _wrap_callback(h, block),nil)
  if ret == -1
    raise(ReadError, "pcap_dispatch(): #{geterr()}")
  elsif ret -2
    return nil
  elsif ret > -1
    return ret
  else
    raise(ReadError, "unexpected return from pcap_dispatch() -> #{ret}")
  end
end

#loop(opts = {}) {|self, pkt| ... } ⇒ Integer? Also known as: each

Processes packets from a live capture or savefile until cnt packets are processed, the end of the savefile is reached (when reading from a savefile), pcap_breakloop() is called, or an error occurs.

It does not return when live read timeouts occur. A value of -1 or 0 for cnt is equivalent to infinity, so that packets are processed until another ending condition occurs.

(In older versions of libpcap, the behavior when cnt was 0 was undefined; different platforms and devices behaved differently, so code that must work with older versions of libpcap should use -1, nor 0, as the value of cnt.)

Parameters:

  • opts (Hash) (defaults to: {})

    Receive options.

  • [optional, (Hash)

    a customizable set of options

Yields:

  • (self, pkt)

Yield Parameters:

  • self (CaptureWrapper)

    A reference to self is passed to the block.

  • pkt (Packet)

    A packet object is yielded which references the header and bytes.

Returns:

  • (Integer, nil)

    returns 0 if cnt is exhausted, or nil if the loop terminated due to a call to pcap_breakloop() before any packets were processed. It does not return when live read timeouts occur; instead, it attempts to read more packets.

Raises:

  • (ReadError)

    An exception is raised if an error occurs or if libpcap returns an unexpected value.



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/caper/capture_wrapper.rb', line 108

def loop(opts={}, &block)
  cnt = opts[:count] || -1 # default to infinite loop
  h = opts[:handler]

  ret = Caper.pcap_loop(_pcap, cnt, _wrap_callback(h, block), nil)
  if ret == -1
    raise(ReadError, "pcap_loop(): #{geterr()}")
  elsif ret -2
    return nil
  elsif ret > -1
    return ret
  else
    raise(ReadError, "unexpected return from pcap_loop(): #{ret}")
  end
end

#nextPacket? Also known as: next_extra, next_ex

Reads the next packet from a pcap device and returns a success/failure indication.

Returns:

  • (Packet, nil)

    A packet is returned on success or a nil if the timeout expired or all packets in a dump file have been exhausted when reading from a savefile.

Raises:

  • (ReadError)

    This exception is raised if there was an error calling pcap_next_ex().

  • (TimeoutError)

    This exception is raised if the timeout expires



216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
# File 'lib/caper/capture_wrapper.rb', line 216

def next
  hdr_p = MemoryPointer.new(:pointer)
  buf_p = MemoryPointer.new(:pointer)

  case Caper.pcap_next_ex(_pcap, hdr_p, buf_p)
  when -1 # error
    raise(ReadError, "pcap_next_ex(): #{geterr()}")
  when 0  # live capture read timeout expired
    return nil
  when -2 # savefile packets exhausted
    return nil
  when 1
    hdr = PacketHeader.new( hdr_p.get_pointer(0) )
    return Packet.new(hdr, buf_p.get_pointer(0))
  end
end

#old_nextObject

This method uses the older pcap_next() function which has been deprecated in favor of pcap_next_ex(). It is included only for backward compatability purposes.

Important Note. According to libpcap documentation:

Unfortunately, there is no way to determine whether an error occured or not when using pcap_next().



190
191
192
193
194
195
196
197
198
# File 'lib/caper/capture_wrapper.rb', line 190

def old_next
  header = PacketHeader.new
  bytes = Caper.pcap_next(_pcap, header)
  if bytes.null?
    return nil # or raise an exception?
  else
    return Packet.new(header, bytes)
  end
end

#set_filter(expression, opts = {}) ⇒ Object Also known as: setfilter, filter=

Used to specify a pcap filter for the pcap interface. This method compiles a filter expression and applies it on the wrapped pcap interface.

Parameters:

  • expression (String)

    A pcap filter expression. See pcap-filter(7) manpage for syntax.

  • opts (Hash) (defaults to: {})

    Compile options. See compile()

Raises:

  • (LibError)

    On failure, an exception is raised with the relevant error message from libpcap.



266
267
268
269
270
271
272
# File 'lib/caper/capture_wrapper.rb', line 266

def set_filter(expression, opts={})
  code = compile(expression, opts)
  ret = Caper.pcap_setfilter(_pcap, code)
  code.free!  # done with this, we can free it
  raise(LibError, "pcap_setfilter(): #{geterr()}") if ret < 0
  return expression
end