/usr/share/perl5/Net/Frame/Device.pm is in libnet-frame-device-perl 1.11-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 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 298 299 300 301 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 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 | #
# $Id: Device.pm 359 2015-01-04 16:49:32Z gomor $
#
package Net::Frame::Device;
use strict;
use warnings;
our $VERSION = '1.11';
use base qw(Class::Gomor::Array);
our @AS = qw(
dev
mac
ip
ip6
subnet
subnet6
gatewayIp
gatewayIp6
gatewayMac
gatewayMac6
target
target6
_dnet
);
__PACKAGE__->cgBuildIndices;
__PACKAGE__->cgBuildAccessorsScalar(\@AS);
BEGIN {
my $osname = {
cygwin => [ \&_getDevWin32, ],
MSWin32 => [ \&_getDevWin32, ],
};
*_getDev = $osname->{$^O}->[0] || \&_getDevOther;
}
no strict 'vars';
use Data::Dumper;
use Net::Libdnet6;
use Net::IPv4Addr;
use Net::IPv6Addr;
use Net::Pcap;
use Net::Write::Layer2;
use Net::Frame::Dump qw(:consts);
use Net::Frame::Dump::Online2;
use Net::Frame::Layer qw(:subs);
use Net::Frame::Layer::ETH qw(:consts);
use Net::Frame::Layer::ARP qw(:consts);
use Net::Frame::Layer::IPv6 qw(:consts);
use Net::Frame::Layer::ICMPv6 qw(:consts);
use Net::Frame::Layer::ICMPv6::NeighborSolicitation;
use Net::Frame::Simple;
sub new {
my $self = shift->SUPER::new(@_);
$self->[$__target] && return $self->updateFromTarget;
$self->[$__target6] && return $self->updateFromTarget6;
$self->[$__dev] && return $self->updateFromDev;
return $self->updateFromDefault;
}
sub _update {
my $self = shift;
my ($dnet6) = @_;
$self->[$__dev] = $self->_getDev;
$self->[$__mac] = $self->_getMac;
$self->[$__ip] = $self->_getIp;
$self->[$__subnet] = $self->_getSubnet;
$self->[$__gatewayIp] = $self->_getGatewayIp;
$self->[$__gatewayMac] = $self->_getGatewayMac;
if ($dnet6) {
$self->[$___dnet] = $dnet6;
}
$self->[$__ip6] = $self->_getIp6;
$self->[$__subnet6] = $self->_getSubnet6;
$self->[$__gatewayIp6] = $self->_getGatewayIp6;
$self->[$___dnet] = undef;
return $self;
}
# By default, we take outgoing device to Internet
sub updateFromDefault {
my $self = shift;
my $dnet = intf_get_dst('1.1.1.1');
if (! $dnet || keys %$dnet == 0) {
die("Net::Frame::Device: updateFromDefault: unable to get dnet\n");
}
$self->[$___dnet] = $dnet;
my $dnet6 = intf_get6($dnet->{name});
if (! $dnet6 || keys %$dnet6 == 0) {
return $self;
}
return $self->_update($dnet6);
}
sub updateFromDev {
my $self = shift;
my ($dev) = @_;
if (defined($dev)) {
$self->[$__dev] = $dev;
}
else {
$dev = $self->[$__dev];
}
my $dnet = intf_get($dev);
if (! $dnet || keys %$dnet == 0) {
die("Net::Frame::Device: updateFromDev: unable to get dnet\n");
}
$self->[$___dnet] = $dnet;
my $dnet6 = intf_get6($dev);
if (! $dnet6 || keys %$dnet6 == 0) {
return $self;
}
return $self->_update($dnet6);
}
sub updateFromTarget {
my $self = shift;
my ($target) = @_;
if (defined($target)) {
$self->[$__target] = $target;
}
else {
$target = $self->[$__target];
}
my $dnet = intf_get_dst($target);
if (! $dnet || keys %$dnet == 0) {
die("Net::Frame::Device: updateFromTarget: unable to get dnet\n");
}
$self->[$___dnet] = $dnet;
my $dnet6 = intf_get6($dnet->{name});
if (! $dnet6 || keys %$dnet6 == 0) {
return $self;
}
return $self->_update($dnet6);
}
sub updateFromTarget6 {
my $self = shift;
my ($target6) = @_;
$self->[$__target6] = $target6 if $target6;
my @dnetList = intf_get_dst6($self->[$__target6]);
if (@dnetList > 1) {
if (! $self->[$__dev]) {
die("[-] ".__PACKAGE__.": Multiple possible network interface for ".
"target6, choose `dev' manually\n");
}
$self->[$___dnet] = intf_get6($self->[$__dev])
or die("Net::Frame::Device: updateFromTarget6: unable to get dnet\n");
}
elsif (@dnetList == 1) {
$self->[$___dnet] = $dnetList[0];
}
else {
die("Net::Frame::Device: updateFromTarget6: unable to get dnet\n");
}
return $self->_update;
}
# Thanx to Maddingue
sub _toDotQuad {
my ($i) = @_;
($i >> 24 & 255).'.'.($i >> 16 & 255).'.'.($i >> 8 & 255).'.'.($i & 255);
}
sub _getDevWin32 {
my $self = shift;
die("[-] ".__PACKAGE__.": unable to find a suitable device\n")
unless $self->[$___dnet]->{name};
# Get dnet interface name and its subnet
my $dnet = $self->[$___dnet]->{name};
my $subnet = addr_net($self->[$___dnet]->{addr});
die("[-] ".__PACKAGE__.": Net::Libdnet::addr_net() error\n")
unless $subnet;
my %dev;
my $err;
Net::Pcap::findalldevs(\%dev, \$err);
die("[-] ".__PACKAGE__.": Net::Pcap::findalldevs() error: $err\n")
if $err;
# Search for corresponding WinPcap interface, via subnet value.
# I can't use IP address or MAC address, they are not available
# through Net::Pcap (as of version 0.15_01).
for my $d (keys %dev) {
my $net;
my $mask;
if (Net::Pcap::lookupnet($d, \$net, \$mask, \$err) < 0) {
die("[-] ".__PACKAGE__.": Net::Pcap::lookupnet(): $d: $err\n")
}
$net = _toDotQuad($net);
if ($net eq $subnet) {
return $d;
}
}
undef;
}
sub _getDevOther { shift->[$___dnet]->{name} || undef }
sub _getGatewayIp { route_get (shift()->[$__target] || '1.1.1.1') || undef }
sub _getGatewayIp6 { route_get6(shift()->[$__target6] || '2001::1') || undef }
sub _getMacFromCache { shift; arp_get(shift()) }
sub _getGatewayMac {
my $self = shift;
$self->[$__gatewayIp] && $self->_getMacFromCache($self->[$__gatewayIp])
|| undef;
}
sub _getSubnet {
my $addr = shift->[$___dnet]->{addr};
return unless $addr;
if ($addr !~ /\//) {
return; # No netmask associated here
}
my $subnet = addr_net($addr) or return;
(my $mask = $addr) =~ s/^.*(\/\d+)$/$1/;
$subnet.$mask;
}
sub _getSubnet6 {
my $addr = shift->[$___dnet]->{addr6};
return unless $addr;
if ($addr !~ /\//) {
return; # No netmask associated here
}
my $subnet = addr_net6($addr) or return;
(my $mask = $addr) =~ s/^.*(\/\d+)$/$1/;
$subnet.$mask;
}
sub _getMac { shift->[$___dnet]->{link_addr} || undef }
sub _getIp {
my $ip = shift->[$___dnet]->{addr} || return undef;
$ip =~ s/\/\d+$//;
$ip;
}
sub _getIp6 {
my $ip = shift->[$___dnet]->{addr6} || return undef;
$ip =~ s/\/\d+$//;
$ip;
}
sub _lookupMac {
my $self = shift;
my ($ip, $retry, $timeout) = @_;
my $oWrite = Net::Write::Layer2->new(dev => $self->[$__dev]);
my $oDump = Net::Frame::Dump::Online2->new(
dev => $self->[$__dev],
filter => 'arp',
timeoutOnNext => $timeout,
);
$oDump->start;
if ($oDump->firstLayer ne 'ETH') {
$oDump->stop;
die("[-] ".__PACKAGE__.": lookupMac: can't do that on non-ethernet ".
"link layers\n");
}
$oWrite->open;
my $eth = Net::Frame::Layer::ETH->new(
src => $self->[$__mac],
dst => NF_ETH_ADDR_BROADCAST,
type => NF_ETH_TYPE_ARP,
);
my $arp = Net::Frame::Layer::ARP->new(
src => $self->[$__mac],
srcIp => $self->[$__ip],
dstIp => $ip,
);
$eth->pack;
$arp->pack;
# We retry three times
my $mac;
for (1..$retry) {
$oWrite->send($eth->raw.$arp->raw);
until ($oDump->timeout) {
if (my $h = $oDump->next) {
if ($h->{firstLayer} eq 'ETH') {
my $raw = substr($h->{raw}, $eth->getLength);
my $rArp = Net::Frame::Layer::ARP->new(raw => $raw);
$rArp->unpack;
next unless $rArp->srcIp eq $ip;
$mac = $rArp->src;
last;
}
}
}
last if $mac;
$oDump->timeoutReset;
}
$oWrite->close;
$oDump->stop;
return $mac;
}
sub lookupMac {
my $self = shift;
my ($ip, $retry, $timeout) = @_;
$retry ||= 1;
$timeout ||= 1;
# First, lookup the ARP cache table
my $mac = $self->_getMacFromCache($ip);
return $mac if $mac;
# Then, is the target on same subnet, or not ?
if (Net::IPv4Addr::ipv4_in_network($self->[$__subnet], $ip)) {
return $self->_lookupMac($ip, $retry, $timeout);
}
# Get gateway MAC
else {
# If already retrieved
return $self->[$__gatewayMac] if $self->[$__gatewayMac];
# Else, lookup it, and store it
my $gatewayMac = $self->_lookupMac(
$self->[$__gatewayIp], $retry, $timeout,
);
$self->[$__gatewayMac] = $gatewayMac;
return $gatewayMac;
}
return;
}
sub _lookupMac6 {
my $self = shift;
my ($ip6, $srcIp6, $retry, $timeout) = @_;
my $oWrite = Net::Write::Layer2->new(dev => $self->[$__dev]);
my $oDump = Net::Frame::Dump::Online2->new(
dev => $self->[$__dev],
filter => 'icmp6',
timeoutOnNext => $timeout,
);
$oDump->start;
if ($oDump->firstLayer ne 'ETH') {
$oDump->stop;
die("[-] ".__PACKAGE__.": lookupMac6: can't do that on non-ethernet ".
"link layers\n");
}
$oWrite->open;
my $srcMac = $self->[$__mac];
# XXX: risky
my $target6 = Net::IPv6Addr->new($ip6)->to_string_preferred;
my @dst = split(':', $target6);
my $str = $dst[-2];
$str =~ s/^.*(..)$/$1/;
$target6 = 'ff02::1:ff'.$str.':'.$dst[-1];
my $eth = Net::Frame::Layer::ETH->new(
src => $srcMac,
dst => NF_ETH_ADDR_BROADCAST,
type => NF_ETH_TYPE_IPv6,
);
my $ip = Net::Frame::Layer::IPv6->new(
src => $srcIp6,
dst => $target6,
nextHeader => NF_IPv6_PROTOCOL_ICMPv6,
);
my $icmp = Net::Frame::Layer::ICMPv6->new(
type => NF_ICMPv6_TYPE_NEIGHBORSOLICITATION,
);
my $icmpType = Net::Frame::Layer::ICMPv6::NeighborSolicitation->new(
targetAddress => $ip6,
options => [
Net::Frame::Layer::ICMPv6::Option->new(
type => NF_ICMPv6_OPTION_SOURCELINKLAYERADDRESS,
length => 1,
value => pack('H2H2H2H2H2H2', split(':', $srcMac)),
),
],
);
my $oSimple = Net::Frame::Simple->new(
layers => [ $eth, $ip, $icmp, $icmpType ],
);
# We retry three times
my $mac;
FIRST:
for (1..$retry) {
$oWrite->send($oSimple->raw);
until ($oDump->timeout) {
if (my $oReply = $oSimple->recv($oDump)) {
for ($oReply->ref->{'ICMPv6::NeighborAdvertisement'}->options) {
if ($_->type eq NF_ICMPv6_OPTION_TARGETLINKLAYERADDRESS) {
$mac = convertMac(unpack('H*', $_->value));
if ($mac !~
/^[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}$/i) {
die("[-] ".__PACKAGE__.": lookupMac6: ".
"MAC address format error: [$mac]\n");
}
last FIRST;
}
}
}
}
$oDump->timeoutReset;
}
$oWrite->close;
$oDump->stop;
return $mac;
}
sub _searchSrcIp6 {
my $self = shift;
my ($ip6) = @_;
my @dnet6 = intf_get_dst6($ip6) or return undef;
my $dev = $self->[$__dev];
my $dnet6;
for (@dnet6) {
if ($_->{name} eq $dev) {
$dnet6 = $_;
last;
}
}
my ($srcIp6) = split('/', $dnet6->{addr6});
$srcIp6;
}
sub lookupMac6 {
my $self = shift;
my ($ip6, $retry, $timeout) = @_;
$retry ||= 1;
$timeout ||= 1;
# XXX: No ARP6 cache support for now
# If target IPv6 begins with fe80, we are on the same subnet,
# we lookup its MAC address
if ($ip6 =~ /^fe80/i) {
# We must change source IPv6 address to the one of same subnet
my $srcIp6 = $self->_searchSrcIp6($ip6);
return $self->_lookupMac6($ip6, $srcIp6, $retry, $timeout);
}
# Otherwise, we lookup the gateway MAC address, and store it
else {
# If already retrieved
return $self->[$__gatewayMac6] if $self->[$__gatewayMac6];
# No IPv6 gateway?
if (! $self->[$__gatewayIp6]) {
print("[-] lookupMac6: no IPv6 gateway, no default route?\n");
return;
}
# Else, lookup it, and store it
# We must change source IPv6 address to the one of same subnet
my $srcIp6 = $self->_searchSrcIp6($self->[$__gatewayIp6]);
my $gatewayMac6 = $self->_lookupMac6(
$self->[$__gatewayIp6], $srcIp6, $retry, $timeout,
);
$self->[$__gatewayMac6] = $gatewayMac6;
return $gatewayMac6;
}
return;
}
sub debugDeviceList {
my %dev;
my $err;
Net::Pcap::findalldevs(\%dev, \$err);
print STDERR "findalldevs: error: $err\n" if $err;
# Net::Pcap stuff
for my $d (keys %dev) {
my ($net, $mask);
if (Net::Pcap::lookupnet($d, \$net, \$mask, \$err) < 0) {
print STDERR "lookupnet: error: $d: $err\n";
$err = undef; next;
}
print STDERR "[$d] => subnet: "._toDotQuad($net)."\n";
}
# Net::Libdnet stuff
for my $i (0..5) {
my $eth = 'eth'.$i;
my $dnet = intf_get($eth);
last unless keys %$dnet > 0;
$dnet->{subnet} = addr_net($dnet->{addr})
if $dnet->{addr};
print STDERR Dumper($dnet)."\n";
}
}
1;
__END__
=head1 NAME
Net::Frame::Device - get network device information and gateway
=head1 SYNOPSIS
use Net::Frame::Device;
# Get default values from system
my $device = Net::Frame::Device->new;
# Get values from a specific device
my $device2 = Net::Frame::Device->new(dev => 'vmnet1');
# Get values from a specific target
my $device3 = Net::Frame::Device->new(target => '192.168.10.2');
print "dev: ", $device->dev, "\n";
print "mac: ", $device->mac, "\n";
print "ip : ", $device->ip, "\n";
print "ip6: ", $device->ip6, "\n";
print "gatewayIp: ", $device->gatewayIp, "\n" if $device->gatewayIp;
print "gatewayMac: ", $device->gatewayMac, "\n" if $device->gatewayMac;
# Get values from a specific target
my $device5 = Net::Frame::Device->new(target6 => '2001::1');
print "dev: ", $device5->dev, "\n";
print "mac: ", $device5->mac, "\n";
print "ip6: ", $device5->ip6, "\n";
print "gatewayIp6: ", $device5->gatewayIp6, "\n" if $device5->gatewayIp6;
=head1 DESCRIPTION
This module is used to get network information, and is especially useful when you want to do low-level network programming.
It also provides useful functions to lookup network MAC addresses.
=head1 ATTRIBUTES
=over 4
=item B<dev>
The network device. undef if none found.
=item B<ip>
The IPv4 address of B<dev>. undef if none found.
=item B<ip6>
The IPv6 address of B<dev>. undef if none found.
=item B<mac>
The MAC address of B<dev>. undef if none found.
=item B<subnet>
The subnet of IPv4 address B<ip>. undef if none found.
=item B<subnet6>
The subnet of IPv6 address B<ip6>. undef if none found.
=item B<gatewayIp>
The gateway IPv4 address. It defaults to default gateway that let you access Internet. If none found, or not required in the usage context, it defaults to undef.
=item B<gatewayIp6>
The gateway IPv6 address. It defaults to default gateway that let you access Internet. If none found, or not required in the usage context, it defaults to undef.
=item B<gatewayMac>
The MAC address B<gatewayIp>. See B<lookupMac> method.
=item B<gatewayMac6>
The MAC address B<gatewayIp6>. See B<lookupMac6> method.
=item B<target>
This attribute is used when you want to detect which B<dev>, B<ip>, B<mac> attributes to use for a specific target. See B<SYNOPSIS>.
=item B<target6>
This attribute is used when you want to detect which B<dev>, B<ip6>, B<mac> attributes to use for a specific target. See B<SYNOPSIS>.
=back
=head1 METHODS
=over 4
=item B<new>
=item B<new> (hash)
Object constructor. See B<SYNOPSIS> for default values.
=item B<updateFromDefault>
Will update attributes according to the default interface that has access to Internet.
=item B<updateFromDev>
=item B<updateFromDev> (dev)
Will update attributes according to B<dev> attribute, or if you specify 'dev' as a parameter, it will use it for updating (and will also set B<dev> to this new value).
=item B<updateFromTarget>
=item B<updateFromTarget> (target)
Will update attributes according to B<target> attribute, or if you specify 'target' as a parameter, it will use it for updating (and will also set B<target> to this new value).
=item B<updateFromTarget6>
=item B<updateFromTarget6> (target6)
Will update attributes according to B<target6> attribute, or if you specify 'target6' as a parameter, it will use it for updating (and will also set B<target6> to this new value).
=item B<lookupMac> (IPv4 address, [ retry, timeout ])
Will try to get the MAC address of the specified IPv4 address. First, it checks against ARP cache table. Then, verify the target is on the same subnet as we are, and if yes, it does the ARP request. If not on the same subnet, it tries to resolve the gateway MAC address (by using B<gatewayIp> attribute). You can add optional parameters retry count and timeout in seconds. Returns undef on failure.
=item B<lookupMac6> (IPv6 address, [ retry, timeout ])
Will try to get the MAC address of the specified IPv6 address (using ICMPv6). First, verify the target is on the same subnet as we are, and if yes, it does the ICMPv6 lookup request. If not on the same subnet, it tries to resolve the gateway MAC address (by using B<gatewayIp6> attribute). You can add optional parameters retry count and timeout in seconds. Returns undef on failure.
=item B<debugDeviceList>
Just for debugging purposes, especially on Windows systems.
=back
=head1 AUTHOR
Patrice E<lt>GomoRE<gt> Auffret
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2006-2015, 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
|