/usr/share/perl5/Net/SNMP/PDU.pm is in libnet-snmp-perl 6.0.1-2.
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 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 | # -*- mode: perl -*-
# ============================================================================
package Net::SNMP::PDU;
# $Id: PDU.pm,v 3.1 2010/09/10 00:01:22 dtown Rel $
# Object used to represent a SNMP PDU.
# Copyright (c) 2001-2010 David M. Town <dtown@cpan.org>
# All rights reserved.
# This program is free software; you may redistribute it and/or modify it
# under the same terms as the Perl 5 programming language system itself.
# ============================================================================
use strict;
use Net::SNMP::Message qw(
:types :versions asn1_itoa ENTERPRISE_SPECIFIC TRUE FALSE DEBUG_INFO
);
use Net::SNMP::Transport qw( DOMAIN_UDPIPV4 DOMAIN_TCPIPV4 );
## Version of the Net::SNMP::PDU module
our $VERSION = v3.0.1;
## Handle importing/exporting of symbols
use base qw( Net::SNMP::Message );
sub import
{
return Net::SNMP::Message->export_to_level(1, @_);
}
# [public methods] -----------------------------------------------------------
sub new
{
my $class = shift;
# We play some games here to allow us to "convert" a Message into a PDU.
my $this = ref($_[0]) ? bless shift(@_), $class : $class->SUPER::new();
# Override or initialize fields inherited from the base class
$this->{_error_status} = 0;
$this->{_error_index} = 0;
$this->{_scoped} = FALSE;
$this->{_var_bind_list} = undef;
$this->{_var_bind_names} = [];
$this->{_var_bind_types} = undef;
my (%argv) = @_;
# Validate the passed arguments
for (keys %argv) {
if (/^-?callback$/i) {
$this->callback($argv{$_});
} elsif (/^-?contextengineid/i) {
$this->context_engine_id($argv{$_});
} elsif (/^-?contextname/i) {
$this->context_name($argv{$_});
} elsif (/^-?debug$/i) {
$this->debug($argv{$_});
} elsif (/^-?leadingdot$/i) {
$this->leading_dot($argv{$_});
} elsif (/^-?maxmsgsize$/i) {
$this->max_msg_size($argv{$_});
} elsif (/^-?requestid$/i) {
$this->request_id($argv{$_});
} elsif (/^-?security$/i) {
$this->security($argv{$_});
} elsif (/^-?translate$/i) {
$this->{_translate} = $argv{$_};
} elsif (/^-?transport$/i) {
$this->transport($argv{$_});
} elsif (/^-?version$/i) {
$this->version($argv{$_});
} else {
$this->_error('The argument "%s" is unknown', $_);
}
if (defined $this->{_error}) {
return wantarray ? (undef, $this->{_error}) : undef;
}
}
if (!defined $this->{_transport}) {
$this->_error('The Transport Domain object is not defined');
return wantarray ? (undef, $this->{_error}) : undef;
}
return wantarray ? ($this, q{}) : $this;
}
sub prepare_get_request
{
my ($this, $oids) = @_;
$this->_error_clear();
return $this->prepare_pdu(GET_REQUEST,
$this->_create_oid_null_pairs($oids));
}
sub prepare_get_next_request
{
my ($this, $oids) = @_;
$this->_error_clear();
return $this->prepare_pdu(GET_NEXT_REQUEST,
$this->_create_oid_null_pairs($oids));
}
sub prepare_get_response
{
my ($this, $trios) = @_;
$this->_error_clear();
return $this->prepare_pdu(GET_RESPONSE,
$this->_create_oid_value_pairs($trios));
}
sub prepare_set_request
{
my ($this, $trios) = @_;
$this->_error_clear();
return $this->prepare_pdu(SET_REQUEST,
$this->_create_oid_value_pairs($trios));
}
sub prepare_trap
{
my ($this, $enterprise, $addr, $generic, $specific, $time, $trios) = @_;
$this->_error_clear();
return $this->_error('Insufficient arguments for a Trap-PDU') if (@_ < 6);
# enterprise
if (!defined $enterprise) {
# Use iso(1).org(3).dod(6).internet(1).private(4).enterprises(1)
# for the default enterprise.
$this->{_enterprise} = '1.3.6.1.4.1';
} elsif ($enterprise !~ m/^\.?\d+(?:\.\d+)* *$/) {
return $this->_error(
'The enterprise OBJECT IDENTIFIER "%s" is expected in dotted ' .
'decimal notation', $enterprise
);
} else {
$this->{_enterprise} = $enterprise;
}
# agent-addr
if (!defined $addr) {
# See if we can get the agent-addr from the Transport
# Layer. If not, we return an error.
if (defined $this->{_transport}) {
if (($this->{_transport}->domain() ne DOMAIN_UDPIPV4) &&
($this->{_transport}->domain() ne DOMAIN_TCPIPV4))
{
$this->{_agent_addr} = '0.0.0.0';
} else {
$this->{_agent_addr} = $this->{_transport}->agent_addr();
if ($this->{_agent_addr} eq '0.0.0.0') {
delete $this->{_agent_addr};
}
}
}
if (!exists $this->{_agent_addr}) {
return $this->_error('Unable to resolve the local agent-addr');
}
} elsif ($addr !~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/) {
return $this->_error(
'The agent-addr "%s" is expected in dotted decimal notation', $addr
);
} else {
$this->{_agent_addr} = $addr;
}
# generic-trap
if (!defined $generic) {
# Use enterpriseSpecific(6) for the generic-trap type.
$this->{_generic_trap} = ENTERPRISE_SPECIFIC;
} elsif ($generic !~ /^\d+$/) {
return $this->_error(
'The generic-trap value "%s" is expected in positive numeric format',
$generic
);
} else {
$this->{_generic_trap} = $generic;
}
# specific-trap
if (!defined $specific) {
$this->{_specific_trap} = 0;
} elsif ($specific !~ /^\d+$/) {
return $this->_error(
'The specific-trap value "%s" is expected in positive numeric format',
$specific
);
} else {
$this->{_specific_trap} = $specific;
}
# time-stamp
if (!defined $time) {
# Use the "uptime" of the script for the time-stamp.
$this->{_time_stamp} = ((time() - $^T) * 100);
} elsif ($time !~ /^\d+$/) {
return $this->_error(
'The time-stamp value "%s" is expected in positive numeric format',
$time
);
} else {
$this->{_time_stamp} = $time;
}
return $this->prepare_pdu(TRAP, $this->_create_oid_value_pairs($trios));
}
sub prepare_get_bulk_request
{
my ($this, $repeaters, $repetitions, $oids) = @_;
$this->_error_clear();
if (@_ < 3) {
return $this->_error('Insufficient arguments for a GetBulkRequest-PDU');
}
# non-repeaters
if (!defined $repeaters) {
$this->{_error_status} = 0;
} elsif ($repeaters !~ /^\d+$/) {
return $this->_error(
'The non-repeaters value "%s" is expected in positive numeric format',
$repeaters
);
} elsif ($repeaters > 2147483647) {
return $this->_error(
'The non-repeaters value %s is out of range (0..2147483647)',
$repeaters
);
} else {
$this->{_error_status} = $repeaters;
}
# max-repetitions
if (!defined $repetitions) {
$this->{_error_index} = 0;
} elsif ($repetitions !~ /^\d+$/) {
return $this->_error(
'The max-repetitions value "%s" is expected in positive numeric ' .
'format', $repetitions
);
} elsif ($repetitions > 2147483647) {
return $this->_error(
'The max-repetitions value %s is out of range (0..2147483647)',
$repetitions
);
} else {
$this->{_error_index} = $repetitions;
}
# Some sanity checks
if (defined($oids) && (ref($oids) eq 'ARRAY')) {
if ($this->{_error_status} > @{$oids}) {
return $this->_error(
'The non-repeaters value %d is greater than the number of ' .
'variable-bindings %d', $this->{_error_status}, scalar @{$oids}
);
}
if (($this->{_error_status} == @{$oids}) && ($this->{_error_index})) {
return $this->_error(
'The non-repeaters value %d equals the number of variable-' .
'bindings and max-repetitions is not equal to zero',
$this->{_error_status}
);
}
}
return $this->prepare_pdu(GET_BULK_REQUEST,
$this->_create_oid_null_pairs($oids));
}
sub prepare_inform_request
{
my ($this, $trios) = @_;
$this->_error_clear();
return $this->prepare_pdu(INFORM_REQUEST,
$this->_create_oid_value_pairs($trios));
}
sub prepare_snmpv2_trap
{
my ($this, $trios) = @_;
$this->_error_clear();
return $this->prepare_pdu(SNMPV2_TRAP,
$this->_create_oid_value_pairs($trios));
}
sub prepare_report
{
my ($this, $trios) = @_;
$this->_error_clear();
return $this->prepare_pdu(REPORT, $this->_create_oid_value_pairs($trios));
}
sub prepare_pdu
{
my ($this, $type, $var_bind) = @_;
# Clear the buffer
$this->clear();
# Clear the "scoped" indication
$this->{_scoped} = FALSE;
# VarBindList::=SEQUENCE OF VarBind
if (!defined $this->_prepare_var_bind_list($var_bind || [])) {
return $this->_error();
}
# PDU::=SEQUENCE
if (!defined $this->_prepare_pdu_sequence($type)) {
return $this->_error();
}
return TRUE;
}
sub prepare_var_bind_list
{
my ($this, $var_bind) = @_;
return $this->_prepare_var_bind_list($var_bind || []);
}
sub prepare_pdu_sequence
{
goto &_prepare_pdu_sequence;
}
sub prepare_pdu_scope
{
goto &_prepare_pdu_scope;
}
sub process_pdu
{
my ($this) = @_;
# Clear any errors
$this->_error_clear();
# PDU::=SEQUENCE
return $this->_error() if !defined $this->_process_pdu_sequence();
# VarBindList::=SEQUENCE OF VarBind
return $this->_process_var_bind_list();
}
sub process_pdu_scope
{
goto &_process_pdu_scope;
}
sub process_pdu_sequence
{
goto &_process_pdu_sequence;
}
sub process_var_bind_list
{
goto &_process_var_bind_list;
}
sub expect_response
{
my ($this) = @_;
if (($this->{_pdu_type} == GET_RESPONSE) ||
($this->{_pdu_type} == TRAP) ||
($this->{_pdu_type} == SNMPV2_TRAP) ||
($this->{_pdu_type} == REPORT))
{
return FALSE;
}
return TRUE;
}
sub pdu_type
{
return $_[0]->{_pdu_type};
}
sub error_status
{
my ($this, $status) = @_;
# error-status::=INTEGER { noError(0) .. inconsistentName(18) }
if (@_ == 2) {
if (!defined $status) {
return $this->_error('The error-status value is not defined');
}
if (($status < 0) ||
($status > (($this->version > SNMP_VERSION_1) ? 18 : 5)))
{
return $this->_error(
'The error-status %s is out of range (0..%d)',
$status, ($this->version > SNMP_VERSION_1) ? 18 : 5
);
}
$this->{_error_status} = $status;
}
return $this->{_error_status} || 0; # noError(0)
}
sub error_index
{
my ($this, $index) = @_;
# error-index::=INTEGER (0..max-bindings)
if (@_ == 2) {
if (!defined $index) {
return $this->_error('The error-index value is not defined');
}
if (($index < 0) || ($index > 2147483647)) {
return $this->_error(
'The error-index value %s is out of range (0.. 2147483647)',
$index
);
}
$this->{_error_index} = $index;
}
return $this->{_error_index} || 0;
}
sub non_repeaters
{
# non-repeaters::=INTEGER (0..max-bindings)
return $_[0]->{_error_status} || 0;
}
sub max_repetitions
{
# max-repetitions::=INTEGER (0..max-bindings)
return $_[0]->{_error_index} || 0;
}
sub enterprise
{
return $_[0]->{_enterprise};
}
sub agent_addr
{
return $_[0]->{_agent_addr};
}
sub generic_trap
{
return $_[0]->{_generic_trap};
}
sub specific_trap
{
return $_[0]->{_specific_trap};
}
sub time_stamp
{
return $_[0]->{_time_stamp};
}
sub var_bind_list
{
my ($this, $vbl, $types) = @_;
return if defined $this->{_error};
if (@_ > 1) {
# The VarBindList HASH is being updated from an external
# source. We need to update the VarBind names ARRAY to
# correspond to the new keys of the HASH. If the updated
# information is valid, we will use lexicographical ordering
# for the ARRAY entries since we do not have a PDU to use
# to determine the ordering. The ASN.1 types HASH is also
# updated here if a cooresponding HASH is passed. We double
# check the mapping by populating the hash with the keys of
# the VarBindList HASH.
if (!defined($vbl) || (ref($vbl) ne 'HASH')) {
$this->{_var_bind_list} = undef;
$this->{_var_bind_names} = [];
$this->{_var_bind_types} = undef;
} else {
$this->{_var_bind_list} = $vbl;
@{$this->{_var_bind_names}} =
map { $_->[0] }
sort { $a->[1] cmp $b->[1] }
map
{
my $oid = $_;
$oid =~ s/^\.//;
$oid =~ s/ /\.0/g;
[$_, pack 'N*', split m/\./, $oid]
} keys %{$vbl};
if (!defined($types) || (ref($types) ne 'HASH')) {
$types = {};
}
for (keys %{$vbl}) {
$this->{_var_bind_types}->{$_} =
exists($types->{$_}) ? $types->{$_} : undef;
}
}
}
return $this->{_var_bind_list};
}
sub var_bind_names
{
my ($this) = @_;
return [] if defined($this->{_error}) || !defined $this->{_var_bind_names};
return $this->{_var_bind_names};
}
sub var_bind_types
{
my ($this) = @_;
return if defined $this->{_error};
return $this->{_var_bind_types};
}
sub scoped
{
return $_[0]->{_scoped};
}
# [private methods] ----------------------------------------------------------
sub _prepare_pdu_scope
{
my ($this) = @_;
return TRUE if (($this->{_version} < SNMP_VERSION_3) || ($this->{_scoped}));
# contextName::=OCTET STRING
if (!defined $this->prepare(OCTET_STRING, $this->context_name())) {
return $this->_error();
}
# contextEngineID::=OCTET STRING
if (!defined $this->prepare(OCTET_STRING, $this->context_engine_id())) {
return $this->_error();
}
# ScopedPDU::=SEQUENCE
if (!defined $this->prepare(SEQUENCE)) {
return $this->_error();
}
# Indicate that this PDU has been scoped and return success.
return $this->{_scoped} = TRUE;
}
sub _prepare_pdu_sequence
{
my ($this, $type) = @_;
# Do not do anything if there has already been an error
return $this->_error() if defined $this->{_error};
# Make sure the PDU type was passed
return $this->_error('The SNMP PDU type is not defined') if (@_ != 2);
# Set the PDU type
$this->{_pdu_type} = $type;
# Make sure the request-id has been set
if (!exists $this->{_request_id}) {
$this->{_request_id} = int rand 2147483648;
}
# We need to encode everything in reverse order so the
# objects end up in the correct place.
if ($this->{_pdu_type} != TRAP) { # PDU::=SEQUENCE
# error-index/max-repetitions::=INTEGER
if (!defined $this->prepare(INTEGER, $this->{_error_index})) {
return $this->_error();
}
# error-status/non-repeaters::=INTEGER
if (!defined $this->prepare(INTEGER, $this->{_error_status})) {
return $this->_error();
}
# request-id::=INTEGER
if (!defined $this->prepare(INTEGER, $this->{_request_id})) {
return $this->_error();
}
} else { # Trap-PDU::=IMPLICIT SEQUENCE
# time-stamp::=TimeTicks
if (!defined $this->prepare(TIMETICKS, $this->{_time_stamp})) {
return $this->_error();
}
# specific-trap::=INTEGER
if (!defined $this->prepare(INTEGER, $this->{_specific_trap})) {
return $this->_error();
}
# generic-trap::=INTEGER
if (!defined $this->prepare(INTEGER, $this->{_generic_trap})) {
return $this->_error();
}
# agent-addr::=NetworkAddress
if (!defined $this->prepare(IPADDRESS, $this->{_agent_addr})) {
return $this->_error();
}
# enterprise::=OBJECT IDENTIFIER
if (!defined $this->prepare(OBJECT_IDENTIFIER, $this->{_enterprise})) {
return $this->_error();
}
}
# PDUs::=CHOICE
if (!defined $this->prepare($this->{_pdu_type})) {
return $this->_error();
}
return TRUE;
}
sub _prepare_var_bind_list
{
my ($this, $var_bind) = @_;
# The passed array is expected to consist of groups of four values
# consisting of two sets of ASN.1 types and their values.
if (@{$var_bind} % 4) {
$this->var_bind_list(undef);
return $this->_error(
'The VarBind list size of %d is not a factor of 4', scalar @{$var_bind}
);
}
# Initialize the "var_bind_*" data.
$this->{_var_bind_list} = {};
$this->{_var_bind_names} = [];
$this->{_var_bind_types} = {};
# Use the object's buffer to build each VarBind SEQUENCE and then append
# it to a local buffer. The local buffer will then be used to create
# the VarBindList SEQUENCE.
my ($buffer, $name_type, $name_value, $syntax_type, $syntax_value) = (q{});
while (@{$var_bind}) {
# Pull a quartet of ASN.1 types and values from the passed array.
($name_type, $name_value, $syntax_type, $syntax_value) =
splice @{$var_bind}, 0, 4;
# Reverse the order of the fields because prepare() does a prepend.
# value::=ObjectSyntax
if (!defined $this->prepare($syntax_type, $syntax_value)) {
$this->var_bind_list(undef);
return $this->_error();
}
# name::=ObjectName
if ($name_type != OBJECT_IDENTIFIER) {
$this->var_bind_list(undef);
return $this->_error(
'An ObjectName type of 0x%02x was expected, but 0x%02x was found',
OBJECT_IDENTIFIER, $name_type
);
}
if (!defined $this->prepare($name_type, $name_value)) {
$this->var_bind_list(undef);
return $this->_error();
}
# VarBind::=SEQUENCE
if (!defined $this->prepare(SEQUENCE)) {
$this->var_bind_list(undef);
return $this->_error();
}
# Append the VarBind to the local buffer and clear it.
$buffer .= $this->clear();
# Populate the "var_bind_*" data so we can provide consistent
# output for the methods regardless of whether we are a request
# or a response PDU. Make sure the HASH key is unique if in
# case duplicate OBJECT IDENTIFIERs are provided.
while (exists $this->{_var_bind_list}->{$name_value}) {
$name_value .= q{ }; # Pad with spaces
}
$this->{_var_bind_list}->{$name_value} = $syntax_value;
$this->{_var_bind_types}->{$name_value} = $syntax_type;
push @{$this->{_var_bind_names}}, $name_value;
}
# VarBindList::=SEQUENCE OF VarBind
if (!defined $this->prepare(SEQUENCE, $buffer)) {
$this->var_bind_list(undef);
return $this->_error();
}
return TRUE;
}
sub _create_oid_null_pairs
{
my ($this, $oids) = @_;
return [] if !defined $oids;
if (ref($oids) ne 'ARRAY') {
return $this->_error(
'The OBJECT IDENTIFIER list is expected as an array reference'
);
}
my $pairs = [];
for (@{$oids}) {
push @{$pairs}, OBJECT_IDENTIFIER, $_, NULL, q{};
}
return $pairs;
}
sub _create_oid_value_pairs
{
my ($this, $trios) = @_;
return [] if !defined $trios;
if (ref($trios) ne 'ARRAY') {
return $this->_error('The trio list is expected as an array reference');
}
if (@{$trios} % 3) {
return $this->_error(
'The [OBJECT IDENTIFIER, ASN.1 type, object value] trio is expected'
);
}
my $pairs = [];
for (my $i = 0; $i < $#{$trios}; $i += 3) {
push @{$pairs},
OBJECT_IDENTIFIER, $trios->[$i], $trios->[$i+1], $trios->[$i+2];
}
return $pairs;
}
sub _process_pdu_scope
{
my ($this) = @_;
return TRUE if ($this->{_version} < SNMP_VERSION_3);
# ScopedPDU::=SEQUENCE
return $this->_error() if !defined $this->process(SEQUENCE);
# contextEngineID::=OCTET STRING
if (!defined $this->context_engine_id($this->process(OCTET_STRING))) {
return $this->_error();
}
# contextName::=OCTET STRING
if (!defined $this->context_name($this->process(OCTET_STRING))) {
return $this->_error();
}
# Indicate that this PDU is scoped and return success.
return $this->{_scoped} = TRUE;
}
sub _process_pdu_sequence
{
my ($this) = @_;
# PDUs::=CHOICE
if (!defined ($this->{_pdu_type} = $this->process())) {
return $this->_error();
}
if ($this->{_pdu_type} != TRAP) { # PDU::=SEQUENCE
# request-id::=INTEGER
if (!defined ($this->{_request_id} = $this->process(INTEGER))) {
return $this->_error();
}
# error-status::=INTEGER
if (!defined ($this->{_error_status} = $this->process(INTEGER))) {
return $this->_error();
}
# error-index::=INTEGER
if (!defined ($this->{_error_index} = $this->process(INTEGER))) {
return $this->_error();
}
# Indicate that we have an SNMP error, but do not return an error.
if (($this->{_error_status}) && ($this->{_pdu_type} == GET_RESPONSE)) {
$this->_error(
'Received %s error-status at error-index %d',
_error_status_itoa($this->{_error_status}), $this->{_error_index}
);
}
} else { # Trap-PDU::=IMPLICIT SEQUENCE
# enterprise::=OBJECT IDENTIFIER
if (!defined ($this->{_enterprise} = $this->process(OBJECT_IDENTIFIER))) {
return $this->_error();
}
# agent-addr::=NetworkAddress
if (!defined ($this->{_agent_addr} = $this->process(IPADDRESS))) {
return $this->_error();
}
# generic-trap::=INTEGER
if (!defined ($this->{_generic_trap} = $this->process(INTEGER))) {
return $this->_error();
}
# specific-trap::=INTEGER
if (!defined ($this->{_specific_trap} = $this->process(INTEGER))) {
return $this->_error();
}
# time-stamp::=TimeTicks
if (!defined ($this->{_time_stamp} = $this->process(TIMETICKS))) {
return $this->_error();
}
}
return TRUE;
}
sub _process_var_bind_list
{
my ($this) = @_;
my $value;
# VarBindList::=SEQUENCE
if (!defined($value = $this->process(SEQUENCE))) {
return $this->_error();
}
# Using the length of the VarBindList SEQUENCE,
# calculate the end index.
my $end = $this->index() + $value;
$this->{_var_bind_list} = {};
$this->{_var_bind_names} = [];
$this->{_var_bind_types} = {};
my ($oid, $type);
while ($this->index() < $end) {
# VarBind::=SEQUENCE
if (!defined $this->process(SEQUENCE)) {
return $this->_error();
}
# name::=ObjectName
if (!defined ($oid = $this->process(OBJECT_IDENTIFIER))) {
return $this->_error();
}
# value::=ObjectSyntax
if (!defined ($value = $this->process(undef, $type))) {
return $this->_error();
}
# Create a hash consisting of the OBJECT IDENTIFIER as a
# key and the ObjectSyntax as the value. If there is a
# duplicate OBJECT IDENTIFIER in the VarBindList, we pad
# that OBJECT IDENTIFIER with spaces to make a unique
# key in the hash.
while (exists $this->{_var_bind_list}->{$oid}) {
$oid .= q{ }; # Pad with spaces
}
DEBUG_INFO('{ %s => %s: %s }', $oid, asn1_itoa($type), $value);
$this->{_var_bind_list}->{$oid} = $value;
$this->{_var_bind_types}->{$oid} = $type;
# Create an array with the ObjectName OBJECT IDENTIFIERs
# so that the order in which the VarBinds where encoded
# in the PDU can be retrieved later.
push @{$this->{_var_bind_names}}, $oid;
}
# Return an error based on the contents of the VarBindList
# if we received a Report-PDU.
if ($this->{_pdu_type} == REPORT) {
return $this->_report_pdu_error();
}
# Return the var_bind_list hash
return $this->{_var_bind_list};
}
{
my @error_status = qw(
noError
tooBig
noSuchName
badValue
readOnly
genError
noAccess
wrongType
wrongLength
wrongEncoding
wrongValue
noCreation
inconsistentValue
resourceUnavailable
commitFailed
undoFailed
authorizationError
notWritable
inconsistentName
);
sub _error_status_itoa
{
return '??' if (@_ != 1);
if (($_[0] > $#error_status) || ($_[0] < 0)) {
return sprintf '??(%d)', $_[0];
}
return sprintf '%s(%d)', $error_status[$_[0]], $_[0];
}
}
{
my %report_oids = (
'1.3.6.1.6.3.11.2.1.1' => 'snmpUnknownSecurityModels',
'1.3.6.1.6.3.11.2.1.2' => 'snmpInvalidMsgs',
'1.3.6.1.6.3.11.2.1.3' => 'snmpUnknownPDUHandlers',
'1.3.6.1.6.3.12.1.4' => 'snmpUnavailableContexts',
'1.3.6.1.6.3.12.1.5' => 'snmpUnknownContexts',
'1.3.6.1.6.3.15.1.1.1' => 'usmStatsUnsupportedSecLevels',
'1.3.6.1.6.3.15.1.1.2' => 'usmStatsNotInTimeWindows',
'1.3.6.1.6.3.15.1.1.3' => 'usmStatsUnknownUserNames',
'1.3.6.1.6.3.15.1.1.4' => 'usmStatsUnknownEngineIDs',
'1.3.6.1.6.3.15.1.1.5' => 'usmStatsWrongDigests',
'1.3.6.1.6.3.15.1.1.6' => 'usmStatsDecryptionErrors',
);
sub _report_pdu_error
{
my ($this) = @_;
# Remove the leading dot (if present) and replace the dotted notation
# of the OBJECT IDENTIFIER with the text ObjectName based upon an
# expected list of report OBJECT IDENTIFIERs.
my %var_bind_list;
for my $oid (@{$this->{_var_bind_names}}) {
my $text = $oid;
$text =~ s/^\.//;
for (keys %report_oids) {
if ($text =~ s/\Q$_/$report_oids{$_}/) {
last;
}
}
$var_bind_list{$text} = $this->{_var_bind_list}->{$oid};
}
my $count = keys %var_bind_list;
if ($count == 1) {
# Return the OBJECT IDENTIFIER and value.
my $text = (keys %var_bind_list)[0];
return $this->_error(
'Received %s Report-PDU with value %s', $text, $var_bind_list{$text}
);
} elsif ($count > 1) {
# Return a list of OBJECT IDENTIFIERs.
return $this->_error(
'Received Report-PDU [%s]', join ', ', keys %var_bind_list
);
} else {
return $this->_error('Received empty Report-PDU');
}
}
}
# ============================================================================
1; # [end Net::SNMP::PDU]
|