/usr/share/perl5/Net/Frame/Dump.pm is in libnet-frame-dump-perl 1.14-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# $Id: Dump.pm 364 2014-11-30 11:26:27Z gomor $
#
package Net::Frame::Dump;
use strict;
use warnings;
our $VERSION = '1.14';
use base qw(Class::Gomor::Array Exporter);
our %EXPORT_TAGS = (
consts => [qw(
NF_DUMP_LAYER_NULL
NF_DUMP_LAYER_ETH
NF_DUMP_LAYER_RAW
NF_DUMP_LAYER_SLL
NF_DUMP_LAYER_PPP
NF_DUMP_LAYER_80211_RADIOTAP
NF_DUMP_LAYER_80211
NF_DUMP_LAYER_ERF
)],
);
our @EXPORT_OK = (
@{$EXPORT_TAGS{consts}},
);
use constant NF_DUMP_LAYER_NULL => 0;
use constant NF_DUMP_LAYER_ETH => 1;
use constant NF_DUMP_LAYER_PPP => 9;
use constant NF_DUMP_LAYER_RAW => 12;
use constant NF_DUMP_LAYER_80211 => 105;
use constant NF_DUMP_LAYER_SLL => 113;
use constant NF_DUMP_LAYER_80211_RADIOTAP => 127;
use constant NF_DUMP_LAYER_ERF => 175;
our @AS = qw(
file
filter
overwrite
firstLayer
isRunning
keepTimestamp
_framesStored
_pcapd
_dumper
);
our @AA = qw(
frames
);
__PACKAGE__->cgBuildIndices;
__PACKAGE__->cgBuildAccessorsScalar(\@AS);
__PACKAGE__->cgBuildAccessorsArray(\@AA);
use Net::Pcap;
use Time::HiRes qw(gettimeofday);
use Net::Frame::Layer qw(:consts :subs);
sub new {
my $self = shift->SUPER::new(
filter => '',
overwrite => 0,
isRunning => 0,
keepTimestamp => 0,
frames => [],
_framesStored => {},
@_,
);
if (!defined($self->file)) {
my $int = getRandom32bitsInt();
$self->file("netframe-tmp-$$.$int.pcap");
}
return $self;
}
sub flush {
my $self = shift;
$self->frames([]);
$self->_framesStored({});
}
sub _addStore {
my $self = shift;
my ($oSimple) = @_;
# If parameter, we store it
if ($oSimple) {
my $key = $oSimple->getKey;
push @{$self->_framesStored->{$key}}, $oSimple;
# If it is ICMPv4, we store a second time
if (exists $oSimple->ref->{ICMPv4}) {
push @{$self->_framesStored->{$oSimple->ref->{ICMPv4}->getKey}},
$oSimple;
}
}
# We return the hash ref
return $self->_framesStored;
}
sub store {
my $self = shift;
my ($oSimple) = @_;
$self->_addStore($oSimple);
my @frames = $self->frames;
push @frames, $oSimple;
return $self->frames(\@frames);
}
sub _getTimestamp {
my $self = shift;
my ($hdr) = @_;
$hdr->{tv_sec}.'.'.sprintf("%06d", $hdr->{tv_usec});
}
sub _setTimestamp {
my $self = shift;
my @time = Time::HiRes::gettimeofday();
$time[0].'.'.sprintf("%06d", $time[1]);
}
my $mapLinks = {
NF_DUMP_LAYER_NULL() => 'NULL',
NF_DUMP_LAYER_ETH() => 'ETH',
NF_DUMP_LAYER_RAW() => 'RAW',
NF_DUMP_LAYER_SLL() => 'SLL',
NF_DUMP_LAYER_PPP() => 'PPP',
NF_DUMP_LAYER_80211() => '80211',
NF_DUMP_LAYER_80211_RADIOTAP() => '80211::Radiotap',
NF_DUMP_LAYER_ERF() => 'ERF',
};
sub getFirstLayer {
my $self = shift;
my $link = Net::Pcap::datalink($self->_pcapd);
$self->firstLayer($mapLinks->{$link} || NF_LAYER_UNKNOWN);
}
sub next {
my $self = shift;
my %hdr;
if (my $raw = Net::Pcap::next($self->_pcapd, \%hdr)) {
my $ts = $self->keepTimestamp ? $self->_getTimestamp(\%hdr)
: $self->_setTimestamp;
return {
firstLayer => $self->firstLayer,
timestamp => $ts,
raw => $raw,
};
}
return;
}
sub nextEx {
my $self = shift;
my %hdr;
my $raw;
my $r = Net::Pcap::next_ex($self->_pcapd, \%hdr, \$raw);
if ($r > 0) {
my $ts = $self->keepTimestamp ? $self->_getTimestamp(\%hdr)
: $self->_setTimestamp;
return {
firstLayer => $self->firstLayer,
timestamp => $ts,
raw => $raw,
};
}
return $r;
}
sub getFramesFor {
my $self = shift;
my ($oSimple) = @_;
my $results;
my $key = $oSimple->getKeyReverse;
push @$results, @{$self->_framesStored->{$key}}
if exists $self->_framesStored->{$key};
# Add also ICMPv4
if (exists $self->_framesStored->{ICMPv4}) {
push @$results, @{$self->_framesStored->{ICMPv4}};
}
return $results ? @$results : ();
}
1;
__END__
=head1 NAME
Net::Frame::Dump - base-class for a tcpdump like implementation
=head1 DESCRIPTION
B<Net::Frame::Dump> is the base class for all dump modules. With them, you can open a device for live capture, for offline analysis, or for creating a pcap file.
See B<Net::Frame::Dump::Offline>, B<Net::Frame::Dump::Online>, B<Net::Frame::Dump::Writer> for specific usage.
=head1 METHODS
=over 4
=item B<new> (%h)
Base-class object constructor.
=back
=head1 CONSTANTS
Load them: use Net::Frame::Dump qw(:consts);
=over 4
=item B<NF_DUMP_LAYER_NULL>
=item B<NF_DUMP_LAYER_ETH>
=item B<NF_DUMP_LAYER_RAW>
=item B<NF_DUMP_LAYER_SLL>
=item B<NF_DUMP_LAYER_PPP>
=item B<NF_DUMP_LAYER_80211_RADIOTAP>
=item B<NF_DUMP_LAYER_80211>
Various supported link layers.
=back
=head1 SEE ALSO
L<Net::Frame::Dump::Online>, L<Net::Frame::Dump::Offline>, L<Net::Frame::Dump::Writer>
=head1 AUTHOR
Patrice E<lt>GomoRE<gt> Auffret
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2006-2014, Patrice E<lt>GomoRE<gt> Auffret
You may distribute this module under the terms of the Artistic license.
See LICENSE.Artistic file in the source distribution archive.
=cut
|