SNMP.pm
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:68k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. # SNMP.pm -- Perl 5 interface to the net-snmp toolkit
  2. #
  3. # written by G. S. Marzot (gmarzot@nortelnetworks.com)
  4. #
  5. #     Copyright (c) 1995-2000 G. S. Marzot. All rights reserved.
  6. #     This program is free software; you can redistribute it and/or
  7. #     modify it under the same terms as Perl itself.
  8. package SNMP;
  9. $VERSION = '5.2.2';   # current release version number
  10. require Exporter;
  11. require DynaLoader;
  12. require AutoLoader;
  13. use NetSNMP::default_store (':all');
  14. @SNMP::ISA = qw(Exporter AutoLoader DynaLoader);
  15. # Items to export into callers namespace by default. Note: do not export
  16. # names by default without a very good reason. Use EXPORT_OK instead.
  17. # Do not simply export all your public functions/methods/constants.
  18. @SNMP::EXPORT = qw(
  19. RECEIVED_MESSAGE
  20. SNMPERR_BAD_ADDRESS
  21. SNMPERR_BAD_LOCPORT
  22. SNMPERR_BAD_SESSION
  23. SNMPERR_GENERR
  24. SNMPERR_TOO_LONG
  25. SNMP_DEFAULT_ADDRESS
  26. SNMP_DEFAULT_COMMUNITY_LEN
  27. SNMP_DEFAULT_ENTERPRISE_LENGTH
  28. SNMP_DEFAULT_ERRINDEX
  29. SNMP_DEFAULT_ERRSTAT
  30. SNMP_DEFAULT_PEERNAME
  31. SNMP_DEFAULT_REMPORT
  32. SNMP_DEFAULT_REQID
  33. SNMP_DEFAULT_RETRIES
  34. SNMP_DEFAULT_TIME
  35. SNMP_DEFAULT_TIMEOUT
  36. SNMP_DEFAULT_VERSION
  37. TIMED_OUT
  38. snmp_get
  39.         snmp_getnext
  40.         snmp_set
  41.         snmp_trap
  42. );
  43. sub AUTOLOAD {
  44.     # This AUTOLOAD is used to 'autoload' constants from the constant()
  45.     # XS function.  If a constant is not found then control is passed
  46.     # to the AUTOLOAD in AutoLoader.
  47.     my($val,$pack,$file,$line);
  48.     local($constname);
  49.     ($constname = $AUTOLOAD) =~ s/.*:://;
  50.     # croak "&$module::constant not defined" if $constname eq 'constant';
  51.     $val = constant($constname, @_ ? $_[0] : 0);
  52.     if ($! != 0) {
  53. if ($! =~ /Invalid/) {
  54.     $AutoLoader::AUTOLOAD = $AUTOLOAD;
  55.     goto &AutoLoader::AUTOLOAD;
  56. }
  57. else {
  58.     ($pack,$file,$line) = caller;
  59.     die "Your vendor has not defined SNMP macro $constname, used at $file line $line.
  60. ";
  61. }
  62.     }
  63.     eval "sub $AUTOLOAD { $val }";
  64.     goto &$AUTOLOAD;
  65. }
  66. bootstrap SNMP;
  67. # Preloaded methods go here.
  68. # Package variables
  69. tie $SNMP::debugging, SNMP::DEBUGGING;
  70. tie $SNMP::debug_internals, SNMP::DEBUG_INTERNALS;
  71. tie $SNMP::dump_packet, SNMP::DUMP_PACKET;
  72. tie %SNMP::MIB, SNMP::MIB;
  73. tie $SNMP::save_descriptions, SNMP::MIB::SAVE_DESCR;
  74. tie $SNMP::replace_newer, SNMP::MIB::REPLACE_NEWER;
  75. tie $SNMP::mib_options, SNMP::MIB::MIB_OPTIONS;
  76. %SNMP::V3_SEC_LEVEL_MAP = (noAuthNoPriv => 1, authNoPriv => 2, authPriv =>3);
  77. $auto_init_mib = 1; # enable automatic MIB loading at session creation time
  78. $use_long_names = 0; # non-zero to prefer longer mib textual identifiers rather
  79.                    # than just leaf indentifiers (see translateObj)
  80.                    # may also be set on a per session basis(see UseLongNames)
  81. $use_sprint_value = 0; # non-zero to enable formatting of response values
  82.                    # using the snmp libraries "snprint_value"
  83.                    # may also be set on a per session basis(see UseSprintValue)
  84.                    # note: returned values not suitable for 'set' operations
  85. $use_enums = 0; # non-zero to return integers as enums and allow sets
  86.                 # using enums where appropriate - integer data will
  87.                 # still be accepted for set operations
  88.                 # may also be set on a per session basis (see UseEnums)
  89. $use_numeric = 0; # non-zero to return object tags as numeric OID's instead
  90.                   # of converting to textual representations.  use_long_names,
  91.                   # if non-zero, returns the entire OID, otherwise, return just
  92.                   # the label portion.  use_long_names is also set if the
  93.   # use_numeric variable is set.
  94. %MIB = ();      # tied hash to access libraries internal mib tree structure
  95.                 # parsed in from mib files
  96. $verbose = 0;   # controls warning/info output of SNMP module,
  97.                 # 0 => no output, 1 => enables warning and info
  98.                 # output from SNMP module itself (is also controlled
  99.                 # by SNMP::debugging)
  100. $debugging = 0; # non-zero to globally enable libsnmp do_debugging output
  101.                 # set to >= 2 to enabling packet dumping (see below)
  102. $dump_packet = 0; # non-zero to globally enable libsnmp dump_packet output.
  103.                   # is also enabled when $debugging >= 2
  104. $save_descriptions = 0; #tied scalar to control saving descriptions during
  105.                # mib parsing - must be set prior to mib loading
  106. $best_guess = 0;  # determine whether or not to enable best-guess regular
  107.                   # expression object name translation.  1 = Regex (-Ib),
  108.   # 2 = random (-IR)
  109. $replace_newer = 0; # determine whether or not to tell the parser to replace
  110.                     # older MIB modules with newer ones when loading MIBs.
  111.                     # WARNING: This can cause an incorrect hierarchy.
  112. sub setMib {
  113. # loads mib from file name provided
  114. # setting second arg to true causes currently loaded mib to be replaced
  115. # otherwise mib file will be added to existing loaded mib database
  116. # NOTE: now deprecated in favor of addMibFiles and new module based funcs
  117.    my $file = shift;
  118.    my $force = shift || '0';
  119.    return 0 if $file and not (-r $file);
  120.    SNMP::_read_mib($file,$force);
  121. }
  122. sub initMib {
  123. # eqivalent to calling the snmp library init_mib if Mib is NULL
  124. # if Mib is already loaded this function does nothing
  125. # Pass a zero valued argument to get minimal mib tree initialzation
  126. # If non zero agrgument or no argument then full mib initialization
  127.   SNMP::init_snmp("perl");
  128.   return;
  129.   if (defined $_[0] and $_[0] == 0) {
  130.     SNMP::_init_mib_internals();
  131.   } else {
  132.     SNMP::_read_mib("");
  133.   }
  134. }
  135. sub addMibDirs {
  136. # adds directories to search path when a module is requested to be loaded
  137.   SNMP::init_snmp("perl");
  138.   foreach (@_) {
  139.     SNMP::_add_mib_dir($_) or return undef;
  140.   }
  141.   return 1;
  142. }
  143. sub addMibFiles {
  144. # adds mib definitions to currently loaded mib database from
  145. # file(s) supplied
  146.   SNMP::init_snmp("perl");
  147.   foreach (@_) {
  148.     SNMP::_read_mib($_) or return undef;
  149.   }
  150.   return 1;
  151. }
  152. sub loadModules {
  153. # adds mib module definitions to currently loaded mib database.
  154. # Modules will be searched from previously defined mib search dirs
  155. # Passing and arg of 'ALL' will cause all known modules to be loaded
  156.    SNMP::init_snmp("perl");
  157.    foreach (@_) {
  158.      SNMP::_read_module($_) or return undef;
  159.    }
  160.    return 1;
  161. }
  162. sub unloadModules {
  163. # causes modules to be unloaded from mib database
  164. # Passing and arg of 'ALL' will cause all known modules to be unloaded
  165.   warn("SNMP::unloadModules not implemented! (yet)");
  166. }
  167. sub translateObj {
  168. # Translate object identifier(tag or numeric) into alternate representation
  169. # (i.e., sysDescr => '.1.3.6.1.2.1.1.1' and '.1.3.6.1.2.1.1.1' => sysDescr)
  170. # when $SNMP::use_long_names or second arg is non-zero the translation will
  171. # return longer textual identifiers (e.g., system.sysDescr).  An optional 
  172. # third argument of non-zero will cause the module name to be prepended
  173. # to the text name (e.g. 'SNMPv2-MIB::sysDescr').  If no Mib is loaded 
  174. # when called and $SNMP::auto_init_mib is enabled then the Mib will be 
  175. # loaded. Will return 'undef' upon failure.
  176.    SNMP::init_snmp("perl");
  177.    my $obj = shift;
  178.    my $temp = shift;
  179.    my $include_module_name = shift || "0";
  180.    my $long_names = $temp || $SNMP::use_long_names;
  181.    return undef if not defined $obj;
  182.    my $res;
  183.    if ($obj =~ /^.?(d+.)*d+$/) {
  184.       $res = SNMP::_translate_obj($obj,1,$long_names,$SNMP::auto_init_mib,0,$include_module_name);
  185.    } elsif ($obj =~ /(.d+)*$/ && $SNMP::best_guess == 0) {
  186.       $res = SNMP::_translate_obj($`,0,$long_names,$SNMP::auto_init_mib,0,$include_module_name);
  187.       $res .= $& if defined $res and defined $&;
  188.    } elsif ($SNMP::best_guess) {
  189.       $res = SNMP::_translate_obj($obj,0,$long_names,$SNMP::auto_init_mib,$SNMP::best_guess,$include_module_name);
  190.    }
  191.    return($res);
  192. }
  193. sub getType {
  194. # return SNMP data type for given textual identifier
  195. # OBJECTID, OCTETSTR, INTEGER, NETADDR, IPADDR, COUNTER
  196. # GAUGE, TIMETICKS, OPAQUE, or undef
  197.   my $tag = shift;
  198.   SNMP::_get_type($tag, $SNMP::best_guess);
  199. }
  200. sub mapEnum {
  201. # return the corresponding integer value *or* tag for a given MIB attribute
  202. # and value. The function will sense which direction to perform the conversion
  203. # various arg formats are supported
  204. #    $val = SNMP::mapEnum($varbind); # note: will update $varbind
  205. #    $val = SNMP::mapEnum('ipForwarding', 'forwarding');
  206. #    $val = SNMP::mapEnum('ipForwarding', 1);
  207. #
  208.   my $var = shift;
  209.   my ($tag, $val, $update);
  210.   if (ref($var) =~ /ARRAY/ or ref($var) =~ /Varbind/) {
  211.       $tag = $var->[$SNMP::Varbind::tag_f];
  212.       $val = $var->[$SNMP::Varbind::val_f];
  213.       $update = 1;
  214.   } else {
  215.       $tag = $var;
  216.       $val = shift;
  217.   }
  218.   my $iflag = $val =~ /^d+$/;
  219.   my $res = SNMP::_map_enum($tag, $val, $iflag, $SNMP::best_guess);
  220.   if ($update and defined $res) { $var->[$SNMP::Varbind::val_f] = $res; }
  221.   return($res);
  222. }
  223. %session_params = (DestHost => 1,
  224.    Community => 1,
  225.    Version => 1,
  226.    Timeout => 1,
  227.    Retries => 1,
  228.    RemotePort => 1,
  229.                    LocalPort => 1);
  230. sub strip_session_params {
  231.     my @params;
  232.     my @args;
  233.     my $param;
  234.     while ($param = shift) {
  235. push(@params,$param, shift), next
  236.     if $session_params{$param};
  237. push(@args,$param);
  238.     }
  239.     @_ = @args;
  240.     @params;
  241. }
  242. sub snmp_get {
  243. # procedural form of 'get' method. sometimes quicker to code
  244. # but is less efficient since the Session is created and destroyed
  245. # with each call. Takes all the parameters of both SNMP::Session::new and
  246. # SNMP::Session::get (*NOTE*: this api does not support async callbacks)
  247.     my @sess_params = &strip_session_params;
  248.     my $sess = new SNMP::Session(@sess_params);
  249.     $sess->get(@_);
  250. }
  251. sub snmp_getnext {
  252. # procedural form of 'getnext' method. sometimes quicker to code
  253. # but is less efficient since the Session is created and destroyed
  254. # with each call. Takes all the parameters of both SNMP::Session::new and
  255. # SNMP::Session::getnext (*NOTE*: this api does not support async callbacks)
  256.     my @sess_params = &strip_session_params;
  257.     my $sess = new SNMP::Session(@sess_params);
  258.     $sess->getnext(@_);
  259. }
  260. sub snmp_set {
  261. # procedural form of 'set' method. sometimes quicker to code
  262. # but is less efficient since the Session is created and destroyed
  263. # with each call. Takes all the parameters of both SNMP::Session::new and
  264. # SNMP::Session::set (*NOTE*: this api does not support async callbacks)
  265.     my @sess_params = &strip_session_params;
  266.     my $sess = new SNMP::Session(@sess_params);
  267.     $sess->set(@_);
  268. }
  269. sub snmp_trap {
  270. # procedural form of 'trap' method. sometimes quicker to code
  271. # but is less efficient since the Session is created and destroyed
  272. # with each call. Takes all the parameters of both SNMP::TrapSession::new and
  273. # SNMP::TrapSession::trap
  274.     my @sess_params = &strip_session_params;
  275.     my $sess = new SNMP::TrapSession(@sess_params);
  276.     $sess->trap(@_);
  277. }
  278. sub MainLoop {
  279.     my $time = shift;
  280.     my $callback = shift;
  281.     my $time_sec = ($time ? int $time : 0);
  282.     my $time_usec = ($time ? int(($time-$time_sec)*1000000) : 0);
  283.     SNMP::_main_loop($time_sec,$time_usec,$callback);
  284. }
  285. sub finish {
  286.     SNMP::_mainloop_finish();
  287. }
  288. sub reply_cb {
  289.     # callback function for async snmp calls
  290.     # when triggered, will do a SNMP read on the
  291.     # given fd
  292.     my $fd = shift;
  293.   SNMP::_read_on_fd($fd);
  294. }
  295. sub select_info {
  296.     # retrieves SNMP used fd's and timeout info
  297.     # calculates timeout in fractional seconds
  298.     # ( easy to use with select statement )
  299.     my($block, $to_sec, $to_usec, @fd_set)=SNMP::_get_select_info();
  300.     my $time_sec_dec = ($block? 0 : $to_sec + $to_usec * 1e-6);
  301.     #print "fd's for snmp -> ", @fd_set, "n";
  302.     #print "block -> ", $block, "n";
  303.     #print "timeout_sec -> ", $to_sec, "n";
  304.     #print "timeout_usec -> ", $to_usec, "n";
  305.     #print "timeout dec -> ", $time_sec_dec, "n";
  306.     return ($time_sec_dec,@fd_set);
  307. }
  308. sub check_timeout {
  309.   # check to see if a snmp session
  310.   # timed out, and if so triggers
  311.   # the callback function
  312.   SNMP::_check_timeout();
  313.   # check to see when have to check again
  314.   my($block, $to_sec, $to_usec, @fd_set)=SNMP::_get_select_info();
  315.   my $time_sec_dec = ($block? 0 : $to_sec + $to_usec * 1e-6);
  316.   #print "fd's for snmp -> ", @fd_set, "n";
  317.   #print "block -> ", $block, "n";
  318.   #print "timeout_sec -> ", $to_sec, "n";
  319.   #print "timeout_usec -> ", $to_usec, "n";
  320.   #print "timeout dec -> ", $time_sec_dec, "n";
  321.   return ($time_sec_dec);
  322. }
  323. sub _tie {
  324. # this is a little implementation hack so ActiveState can access pp_tie
  325. # thru perl code. All other environments allow the calling of pp_tie from
  326. # XS code but AS was not exporting it when PERL_OBJECT was used.
  327. #
  328. # short term solution was call this perl func which calls 'tie'
  329. #
  330. # longterm fix is to supply a patch which allows AS to export pp_tie in
  331. # such a way that it can be called from XS code. gsarathy says:
  332. # a patch to util.c is needed to provide access to PL_paddr
  333. # so it is possible to call PL_paddr[OP_TIE] as the compiler does
  334.     tie($_[0],$_[1],$_[2],$_[3]);
  335. }
  336. sub split_vars {
  337.     # This sub holds the regex that is used throughout this module  
  338.     #  to parse the base part of an OID from the IID.
  339.     #  eg: portName.9.30 -> ['portName','9.30'] 
  340.     my $vars = shift;
  341.     # The regex was changed to this simple form by patch 722075 for some reason.
  342.     # Testing shows now (2/05) that it is not needed, and that the long expression 
  343.     # works fine.  AB
  344.     # my ($tag, $iid) = ($vars =~ /^(.*?).?(d+)+$/);
  345.     
  346.     # These following two are the same.  Broken down for easier maintenance
  347.     # my ($tag, $iid) = ($vars =~ /^((?:.d+)+|(?:w+(?:-*w+)+)).?(.*)$/);
  348.     my ($tag, $iid) =
  349.         ($vars =~ /^(               # Capture $1
  350.                     # 1. either this 5.5.5.5
  351.                      (?:.d+)+     # for grouping, won't increment $1
  352.                     |
  353.                     # 2. or asdf-asdf-asdf-asdf
  354.                      (?:            # grouping again
  355.                         w+         # needs some letters followed by
  356.                         (?:-*w+)+ #  zero or more dashes, one or more letters
  357.                      )
  358.                     )
  359.                     .?             # optionally match a dot
  360.                     (.*)            # whatever is left in the string is our iid ($2)
  361.                    $/x
  362.     );
  363.     return [$tag,$iid];
  364. }
  365. package SNMP::Session;
  366. sub new {
  367.    my $type = shift;
  368.    my $this = {};
  369.    my ($name, $aliases, $host_type, $len, $thisaddr);
  370.    SNMP::init_snmp("perl");
  371.    %$this = @_;
  372.    $this->{ErrorStr} = ''; # if methods return undef check for expln.
  373.    $this->{ErrorNum} = 0;  # contains SNMP error return
  374.    $this->{Version} ||= 
  375.      NetSNMP::default_store::netsnmp_ds_get_int(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID, 
  376.       NetSNMP::default_store::NETSNMP_DS_LIB_SNMPVERSION) ||
  377. SNMP::SNMP_DEFAULT_VERSION();
  378.    if ($this->{Version} eq 128) {
  379.        # special handling of the bogus v1 definition.
  380.        $this->{Version} = 1;
  381.    }
  382.    # allow override of local SNMP port
  383.    $this->{LocalPort} ||= 0;
  384.    # destination host defaults to localhost
  385.    $this->{DestHost} ||= 'localhost';
  386.    # community defaults to public
  387.    $this->{Community} ||= NetSNMP::default_store::netsnmp_ds_get_string(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  388.         NetSNMP::default_store::NETSNMP_DS_LIB_COMMUNITY()) || 'public';
  389.    # number of retries before giving up, defaults to SNMP_DEFAULT_RETRIES
  390.    $this->{Retries} = SNMP::SNMP_DEFAULT_RETRIES() unless defined($this->{Retries});
  391.    # timeout before retry, defaults to SNMP_DEFAULT_TIMEOUT
  392.    $this->{Timeout} = SNMP::SNMP_DEFAULT_TIMEOUT() unless defined($this->{Timeout});
  393.    # flag to enable fixing pdu and retrying with a NoSuch error
  394.    $this->{RetryNoSuch} ||= 0;
  395.    # backwards compatibility.  Make host = host:port
  396.    if ($this->{RemotePort} && $this->{DestHost} !~ /:/) {
  397.        $this->{DestHost} = $this->{DestHost} . ":" . $this->{RemotePort};
  398.    }
  399.    if ($this->{Version} eq '1' or $this->{Version} eq '2'
  400.        or $this->{Version} eq '2c') {
  401.        $this->{SessPtr} = SNMP::_new_session($this->{Version},
  402.      $this->{Community},
  403.      $this->{DestHost},
  404.      $this->{LocalPort},
  405.      $this->{Retries},
  406.      $this->{Timeout},
  407.      );
  408.    } elsif ($this->{Version} eq '3' ) {
  409.        $this->{SecName} ||= 
  410.    NetSNMP::default_store::netsnmp_ds_get_string(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  411.          NetSNMP::default_store::NETSNMP_DS_LIB_SECNAME()) || 
  412.    'initial';
  413.        if (!$this->{SecLevel}) {
  414.    $this->{SecLevel} = 
  415.        NetSNMP::default_store::netsnmp_ds_get_int(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  416.   NetSNMP::default_store::NETSNMP_DS_LIB_SECLEVEL()) || 
  417.       $SNMP::V3_SEC_LEVEL_MAP{'noAuthNoPriv'};
  418.        } elsif ($this->{SecLevel} !~ /^d+$/) {
  419.    $this->{SecLevel} = $SNMP::V3_SEC_LEVEL_MAP{$this->{SecLevel}};
  420.        }
  421.        $this->{SecEngineId} ||= '';
  422.        $this->{ContextEngineId} ||= $this->{SecEngineId};
  423.        $this->{Context} ||= 
  424.    NetSNMP::default_store::netsnmp_ds_get_string(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  425.          NetSNMP::default_store::NETSNMP_DS_LIB_CONTEXT()) || '';
  426.        $this->{AuthProto} ||= 'DEFAULT'; # defaults to the library's default
  427.        $this->{AuthPass} ||=
  428.        NetSNMP::default_store::netsnmp_ds_get_string(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  429.      NetSNMP::default_store::NETSNMP_DS_LIB_AUTHPASSPHRASE()) ||
  430.        NetSNMP::default_store::netsnmp_ds_get_string(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  431.      NetSNMP::default_store::NETSNMP_DS_LIB_PASSPHRASE()) || '';
  432.        $this->{AuthMasterKey} ||= '';
  433.        $this->{PrivMasterKey} ||= '';
  434.        $this->{AuthLocalizedKey} ||= '';
  435.        $this->{PrivLocalizedKey} ||= '';
  436.        $this->{PrivProto} ||= 'DEFAULT';  # defaults to hte library's default
  437.        $this->{PrivPass} ||=
  438.        NetSNMP::default_store::netsnmp_ds_get_string(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  439.      NetSNMP::default_store::NETSNMP_DS_LIB_PRIVPASSPHRASE()) ||
  440.        NetSNMP::default_store::netsnmp_ds_get_string(NetSNMP::default_store::NETSNMP_DS_LIBRARY_ID(), 
  441.      NetSNMP::default_store::NETSNMP_DS_LIB_PASSPHRASE()) || '';
  442.        $this->{EngineBoots} = 0 if not defined $this->{EngineBoots};
  443.        $this->{EngineTime} = 0 if not defined $this->{EngineTime};
  444.        $this->{SessPtr} = SNMP::_new_v3_session($this->{Version},
  445. $this->{DestHost},
  446. $this->{Retries},
  447. $this->{Timeout},
  448. $this->{SecName},
  449. $this->{SecLevel},
  450. $this->{SecEngineId},
  451. $this->{ContextEngineId},
  452. $this->{Context},
  453. $this->{AuthProto},
  454. $this->{AuthPass},
  455. $this->{PrivProto},
  456. $this->{PrivPass},
  457. $this->{EngineBoots},
  458. $this->{EngineTime},
  459. $this->{AuthMasterKey},
  460. length($this->{AuthMasterKey}),
  461. $this->{PrivMasterKey},
  462. length($this->{PrivMasterKey}),
  463. $this->{AuthLocalizedKey},
  464. length($this->{AuthLocalizedKey}),
  465. $this->{PrivLocalizedKey},
  466. length($this->{PrivLocalizedKey}),
  467.        );
  468.    }
  469.    unless ($this->{SessPtr}) {
  470.        warn("unable to create session") if $SNMP::verbose;
  471.        return undef;
  472.    }
  473.    SNMP::initMib($SNMP::auto_init_mib); # ensures that *some* mib is loaded
  474.    $this->{UseLongNames} ||= $SNMP::use_long_names;
  475.    $this->{UseSprintValue} ||= $SNMP::use_sprint_value;
  476.    $this->{BestGuess} ||= $SNMP::best_guess;
  477.    $this->{UseEnums} ||= $SNMP::use_enums;
  478.    $this->{UseNumeric} ||= $SNMP::use_numeric;
  479.    # Force UseLongNames if UseNumeric is in use.
  480.    $this->{UseLongNames}++  if $this->{UseNumeric};
  481.    bless $this, $type;
  482. }
  483. sub update {
  484. # *Not Implemented*
  485. # designed to update the fields of session to allow retargetting to different
  486. # host, community name change, timeout, retry changes etc. Unfortunately not
  487. # working yet because some updates (the address in particular) need to be
  488. # done on the internal session pointer which cannot be fetched w/o touching
  489. # globals at this point which breaks win32. A patch to the ucd-snmp toolkit
  490. # is needed
  491.    my $this = shift;
  492.    my ($name, $aliases, $host_type, $len, $thisaddr);
  493.    my %new_fields = @_;
  494.    @$this{keys %new_fields} = values %new_fields;
  495.    $this->{UseLongNames} ||= $SNMP::use_long_names;
  496.    $this->{UseSprintValue} ||= $SNMP::use_sprint_value;
  497.    $this->{BestGuess} ||= $SNMP::best_guess;
  498.    $this->{UseEnums} ||= $SNMP::use_enums;
  499.    $this->{UseNumeric} ||= $SNMP::use_numeric;
  500.    # Force UseLongNames if UseNumeric is in use.
  501.    $this->{UseLongNames}++  if $this->{UseNumeric};
  502.    SNMP::_update_session($this->{Version},
  503.  $this->{Community},
  504.  $this->{DestHost},
  505.  $this->{RemotePort},
  506.  $this->{LocalPort},
  507.  $this->{Retries},
  508.  $this->{Timeout},
  509. );
  510. }
  511. sub set {
  512.    my $this = shift;
  513.    my $vars = shift;
  514.    my $varbind_list_ref;
  515.    my $res = 0;
  516.    if (ref($vars) =~ /SNMP::VarList/) {
  517.      $varbind_list_ref = $vars;
  518.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  519.      $varbind_list_ref = [$vars];
  520.    } elsif (ref($vars) =~ /ARRAY/) {
  521.      $varbind_list_ref = [$vars];
  522.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  523.    } else {
  524.      #$varbind_list_ref = [[$tag, $iid, $val]];
  525.      my $split_vars = SNMP::split_vars($vars);
  526.      my $val = shift;
  527.      push @$split_vars,$val;
  528.      $varbind_list_ref = [$split_vars];
  529.    }
  530.    my $cb = shift;
  531.    $res = SNMP::_set($this, $varbind_list_ref, $cb);
  532. }
  533. sub get {
  534.    my $this = shift;
  535.    my $vars = shift;
  536.    my ($varbind_list_ref, @res);
  537.    if (ref($vars) =~ /SNMP::VarList/) {
  538.      $varbind_list_ref = $vars;
  539.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  540.      $varbind_list_ref = [$vars];
  541.    } elsif (ref($vars) =~ /ARRAY/) {
  542.      $varbind_list_ref = [$vars];
  543.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  544.    } else {
  545.      $varbind_list_ref = [SNMP::split_vars($vars)];
  546.    }
  547.    my $cb = shift;
  548.    @res = SNMP::_get($this, $this->{RetryNoSuch}, $varbind_list_ref, $cb);
  549.    return(wantarray() ? @res : $res[0]);
  550. }
  551. $have_netsnmp_oid = eval { require NetSNMP::OID; };
  552. sub gettable {
  553.     #
  554.     # getTable
  555.     # --------
  556.     #
  557.     # Get OIDs starting at $table_oid, and continue down the tree
  558.     # until we get to an OID which does not start with $table_oid,
  559.     # i.e. we have reached the end of this table.
  560.     #
  561.     my ($this, $root_oid, $options) = @_;
  562.     my ($textnode, $stopconds, $varbinds, $vbl, $res, %result_hash, $repeat);
  563.     # translate the OID into numeric form if its not
  564.     if ($root_oid !~ /^[.0-9]+$/) {
  565. $textnode = $root_oid;
  566. $root_oid = SNMP::translateObj($root_oid);
  567.     } else {
  568. $textnode = SNMP::translateObj($root_oid);
  569.     }
  570.     # bail if we don't have a valid oid.
  571.     return if (!$root_oid);
  572.     # deficed if we're going to parse indexes
  573.     my $parse_indexes = (defined($options->{'noindexes'})) ? 
  574.       0 : $have_netsnmp_oid;
  575.     # get the list of columns we should look at.
  576.     my @columns;
  577.     if (!$options->{'columns'}) {
  578. if ($textnode) {
  579.     my %indexes;
  580.     if ($parse_indexes) {
  581. # get indexes
  582. my @indexes =
  583.   @{$SNMP::MIB{$textnode}{'children'}[0]{'indexes'}};
  584. # quick translate into a hash
  585. map { $indexes{$_} = 1; } @indexes;
  586.     }
  587.     # calculate the list of accessible columns that aren't indexes
  588.     my $children = $SNMP::MIB{$textnode}{'children'}[0]{'children'};
  589.     foreach my $c (@$children) {
  590. push @columns,
  591.   $root_oid . ".1." . $c->{'subID'}
  592.     if (!$indexes{$c->{'label'}});
  593.     }
  594.     if ($#columns == -1) {
  595. # some tables are only indexes, and we need to walk at
  596. # least one column.  We pick the last.
  597. push @columns, $root_oid . ".1." .
  598.   $children->[$#$children]{'subID'};
  599.     }
  600. }
  601.     } else {
  602. # XXX: requires specification in numeric OID...  ack.!
  603. @columns = @{$options->{'columns'}};
  604.     }
  605.     # create the initial walking info.
  606.     foreach my $c (@columns) {
  607. push @$varbinds, [$c];
  608. push @$stopconds, $c;
  609.     }
  610.     $vbl = $varbinds;
  611.     my $repeatcount;
  612.     if ($opts->{nogetbulk}) {
  613. $repeatcount = 1;
  614.     } elsif ($options->{'repeat'}) {
  615. $repeatcount = $options->{'repeat'};
  616.     } else {
  617. # experimentally determined maybe guess at a best repeat value
  618. # 1000 bytes max (safe), 30 bytes average for encoding of the
  619. # varbind (experimentally determined to be closer to
  620. # 26.  Again, being safe.  Then devide by the number of
  621. # varbinds.
  622. $repeatcount = int(1000 / 36 / ($#$varbinds + 1));
  623.     }
  624.     if ($this->{Version} > 1 && !$options->{'nogetbulk'}) {
  625. $res = $this->getbulk(0, $repeatcount, $vbl);
  626.     } else {
  627. $res = $this->getnext($vbl);
  628.     }
  629.     while ($#$vbl > -1 && !$this->{ErrorNum}) {
  630. if ($#$vbl + 1 != ($#$stopconds + 1) * $repeatcount) {
  631.     print STDERR "ack: gettable results not appropriaten";
  632.     my @k = keys(%result_hash);
  633.     last if ($#k > -1);  # bail with what we have
  634.     return;
  635. }
  636. $varbinds = [];
  637. my $newstopconds;
  638. my $lastsetstart = ($repeatcount-1) * ($#$stopconds+1);
  639. for (my $i = 0; $i <= $#$vbl; $i++) {
  640.     my $row_oid = SNMP::translateObj($vbl->[$i][0]);
  641.     my $row_text = $vbl->[$i][0];
  642.     my $row_index = $vbl->[$i][1];
  643.     my $row_value = $vbl->[$i][2];
  644.     my $row_type = $vbl->[$i][3];
  645.     if ($row_oid =~ /^$stopconds->[$i % ($#$stopconds+1)]/) {
  646. if ($row_type eq "OBJECTID") {
  647. # If the value returned is an OID, translate this
  648. # back in to a textual OID
  649.     $row_value = SNMP::translateObj($row_value);
  650. }
  651. # Place the results in a hash
  652. $result_hash{$row_index}{$row_text} = $row_value;
  653. # continue past this next time
  654. if ($i >= $lastsetstart) {
  655.     push @$newstopconds, $stopconds->[$i%($#$stopconds+1)];
  656.     push @$varbinds,[$vbl->[$i][0],$vbl->[$i][1]];
  657. }
  658.     }
  659. }
  660. if ($#$newstopconds == -1) {
  661.     last;
  662. }
  663. if ($#$varbinds == -1) {
  664.     print "gettable ack.  shouldn't get heren";
  665. }
  666. $vbl = $varbinds;
  667. $stopconds = $newstopconds;
  668. if ($this->{Version} > 1 && !$options->{'nogetbulk'}) {
  669.     $res = $this->getbulk(0, $repeatcount, $vbl);
  670. } else {
  671.     $res = $this->getnext($vbl);
  672. }
  673.     }
  674.     # calculate indexes
  675.     if ($parse_indexes) {
  676. my @indexes = @{$SNMP::MIB{$textnode}{'children'}[0]{'indexes'}};
  677. my $i;
  678. foreach my $trow (keys(%result_hash)) {
  679.     my $noid = new NetSNMP::OID($columns[0] . "." . $trow);
  680.     if (!$noid) {
  681. print STDERR "***** ERROR parsing $columns[0].$trow MIB OIDn";
  682. next;
  683.     }
  684.     my $nindexes = $noid->get_indexes();
  685.     if (!$nindexes || ref($nindexes) ne 'ARRAY' ||
  686. $#indexes != $#$nindexes) {
  687. print STDERR "***** ERROR parsing $columns[0].$trow MIB indexes: $noid => " . ref($nindexes) . " [should be an ARRAY], expended # indexes = $#indexesn";
  688. if (ref($nindexes) eq 'ARRAY') {
  689.     print STDERR "***** ERROR parsing $columns[0].$trow MIB indexes: " . ref($nindexes) . " $#indexes $#$nindexesn";
  690. }
  691. next;
  692.     }
  693.     for ($i = 0; $i <= $#indexes; $i++) {
  694. $result_hash{$trow}{$indexes[$i]} = $nindexes->[$i];
  695.     }
  696. }
  697.     }
  698.     return(%result_hash);
  699. }
  700. sub fget {
  701.    my $this = shift;
  702.    my $vars = shift;
  703.    my ($varbind_list_ref, @res);
  704.    if (ref($vars) =~ /SNMP::VarList/) {
  705.      $varbind_list_ref = $vars;
  706.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  707.      $varbind_list_ref = [$vars];
  708.    } elsif (ref($vars) =~ /ARRAY/) {
  709.      $varbind_list_ref = [$vars];
  710.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  711.    } else {
  712.      $varbind_list_ref = [SNMP::split_vars($vars)];
  713.    }
  714.    my $cb = shift;
  715.    SNMP::_get($this, $this->{RetryNoSuch}, $varbind_list_ref, $cb);
  716.    foreach $varbind (@$varbind_list_ref) {
  717.      $sub = $this->{VarFormats}{$varbind->[$SNMP::Varbind::tag_f]} ||
  718.  $this->{TypeFormats}{$varbind->[$SNMP::Varbind::type_f]};
  719.      &$sub($varbind) if defined $sub;
  720.      push(@res, $varbind->[$SNMP::Varbind::val_f]);
  721.    }
  722.    return(wantarray() ? @res : $res[0]);
  723. }
  724. sub getnext {
  725.    my $this = shift;
  726.    my $vars = shift;
  727.    my ($varbind_list_ref, @res);
  728.    if (ref($vars) =~ /SNMP::VarList/) {
  729.      $varbind_list_ref = $vars;
  730.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  731.      $varbind_list_ref = [$vars];
  732.    } elsif (ref($vars) =~ /ARRAY/) {
  733.      $varbind_list_ref = [$vars];
  734.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  735.    } else {
  736.      $varbind_list_ref = [SNMP::split_vars($vars)];
  737.    }
  738.    my $cb = shift;
  739.    @res = SNMP::_getnext($this, $varbind_list_ref, $cb);
  740.    return(wantarray() ? @res : $res[0]);
  741. }
  742. sub fgetnext {
  743.    my $this = shift;
  744.    my $vars = shift;
  745.    my ($varbind_list_ref, @res);
  746.    if (ref($vars) =~ /SNMP::VarList/) {
  747.      $varbind_list_ref = $vars;
  748.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  749.      $varbind_list_ref = [$vars];
  750.    } elsif (ref($vars) =~ /ARRAY/) {
  751.      $varbind_list_ref = [$vars];
  752.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  753.    } else {
  754.      $varbind_list_ref = [SNMP::split_vars($vars)];
  755.    }
  756.    my $cb = shift;
  757.    SNMP::_getnext($this, $varbind_list_ref, $cb);
  758.    foreach $varbind (@$varbind_list_ref) {
  759.      $sub = $this->{VarFormats}{$varbind->[$SNMP::Varbind::tag_f]} ||
  760.  $this->{TypeFormats}{$varbind->[$SNMP::Varbind::type_f]};
  761.      &$sub($varbind) if defined $sub;
  762.      push(@res, $varbind->[$SNMP::Varbind::val_f]);
  763.    }
  764.    return(wantarray() ? @res : $res[0]);
  765. }
  766. sub getbulk {
  767.    my $this = shift;
  768.    my $nonrepeaters = shift;
  769.    my $maxrepetitions = shift;
  770.    my $vars = shift;
  771.    my ($varbind_list_ref, @res);
  772.    if (ref($vars) =~ /SNMP::VarList/) {
  773.      $varbind_list_ref = $vars;
  774.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  775.      $varbind_list_ref = [$vars];
  776.    } elsif (ref($vars) =~ /ARRAY/) {
  777.      $varbind_list_ref = [$vars];
  778.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  779.    } else {
  780.      $varbind_list_ref = [SNMP::split_vars($vars)];
  781.    }
  782.    my $cb = shift;
  783.    @res = SNMP::_getbulk($this, $nonrepeaters, $maxrepetitions, $varbind_list_ref, $cb);
  784.    return(wantarray() ? @res : $res[0]);
  785. }
  786. sub bulkwalk {
  787.    my $this = shift;
  788.    my $nonrepeaters = shift;
  789.    my $maxrepetitions = shift;
  790.    my $vars = shift;
  791.    my ($varbind_list_ref, @res);
  792.    if (ref($vars) =~ /SNMP::VarList/) {
  793.       $varbind_list_ref = $vars;
  794.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  795.       $varbind_list_ref = [$vars];
  796.    } elsif (ref($vars) =~ /ARRAY/) {
  797.       $varbind_list_ref = [$vars];
  798.       $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  799.    } else {
  800.       # my ($tag, $iid) = ($vars =~ /^((?:.d+)+|w+).?(.*)$/);
  801.       my ($tag, $iid) = ($vars =~ /^(.*?).?(d+)+$/);
  802.       $varbind_list_ref = [[$tag, $iid]];
  803.    }
  804.    if (scalar @$varbind_list_ref == 0) {
  805.       $this->{ErrorNum} = SNMP::constant("SNMPERR_GENERR", 0);
  806.       $this->{ErrorStr} = "cannot bulkwalk() empty variable list";
  807.       return undef;
  808.    }
  809.    if (scalar @$varbind_list_ref < $nonrepeaters) {
  810.       $this->{ErrorNum} = SNMP::constant("SNMPERR_GENERR", 0);
  811.       $this->{ErrorStr} = "bulkwalk() needs at least $nonrepeaters varbinds";
  812.       return undef;
  813.    }
  814.    my $cb = shift;
  815.    @res = SNMP::_bulkwalk($this, $nonrepeaters, $maxrepetitions,
  816. $varbind_list_ref, $cb);
  817.    # Return, in list context, a copy of the array of arrays of Varbind refs.
  818.    # In scalar context, return either a reference to the array of arrays of
  819.    # Varbind refs, or the request ID for an asynchronous bulkwalk.  This is
  820.    # a compromise between the getbulk()-ish return, and the more useful array
  821.    # of arrays of Varbinds return from the synchronous bulkwalk().
  822.    #
  823.    return @res if (wantarray());
  824.    return defined($cb) ? $res[0] : @res;
  825. }
  826. %trap_type = (coldStart => 0, warmStart => 1, linkDown => 2, linkUp => 3,
  827.       authFailure => 4, egpNeighborLoss => 5, specific => 6 );
  828. sub trap {
  829. # (v1) enterprise, agent, generic, specific, uptime, <vars>
  830. # $sess->trap(enterprise=>'.1.3.6.1.4.1.2021', # or 'ucdavis' [default]
  831. #             agent => '127.0.0.1', # or 'localhost',[default 1st intf on host]
  832. #             generic => specific,  # can be omitted if 'specific' supplied
  833. #             specific => 5,        # can be omitted if 'generic' supplied
  834. #             uptime => 1234,       # default to localhost uptime (0 on win32)
  835. #             [[ifIndex, 1, 1],[sysLocation, 0, "here"]]); # optional vars
  836. #                                                          # always last
  837. # (v2) oid, uptime, <vars>
  838. # $sess->trap(uptime => 1234,
  839. #             oid => 'snmpRisingAlarm',
  840. #             [[ifIndex, 1, 1],[sysLocation, 0, "here"]]); # optional vars
  841. #                                                          # always last
  842. #                                                          # always last
  843.    my $this = shift;
  844.    my $vars = pop if ref($_[$#_]); # last arg may be varbind or varlist
  845.    my %param = @_;
  846.    my ($varbind_list_ref, @res);
  847.    if (ref($vars) =~ /SNMP::VarList/) {
  848.      $varbind_list_ref = $vars;
  849.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  850.      $varbind_list_ref = [$vars];
  851.    } elsif (ref($vars) =~ /ARRAY/) {
  852.      $varbind_list_ref = [$vars];
  853.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  854.    }
  855.    if ($this->{Version} eq '1') {
  856.        my $enterprise = $param{enterprise} || 'ucdavis';
  857.        $enterprise = SNMP::translateObj($enterprise)
  858.    unless $enterprise =~ /^[.d]+$/;
  859.        my $agent = $param{agent} || '';
  860.        my $generic = $param{generic} || 'specific';
  861.        $generic = $trap_type{$generic} || $generic;
  862.        my $uptime = $param{uptime} || SNMP::_sys_uptime();
  863.        my $specific = $param{specific} || 0;
  864.        @res = SNMP::_trapV1($this, $enterprise, $agent, $generic, $specific,
  865.   $uptime, $varbind_list_ref);
  866.    } elsif  (($this->{Version} eq '2')|| ($this->{Version} eq '2c')) {
  867.        my $trap_oid = $param{oid} || $param{trapoid} || '.0.0';
  868.        my $uptime = $param{uptime} || SNMP::_sys_uptime();
  869.        @res = SNMP::_trapV2($this, $uptime, $trap_oid, $varbind_list_ref);
  870.    }
  871.    return(wantarray() ? @res : $res[0]);
  872. }
  873. sub inform {
  874. # (v3) oid, uptime, <vars>
  875. # $sess->inform(uptime => 1234,
  876. #             oid => 'coldStart',
  877. #             [[ifIndex, 1, 1],[sysLocation, 0, "here"]]); # optional vars
  878. #                                                          # then callback
  879.                                                            # always last
  880.    my $this = shift;
  881.    my $vars;
  882.    my $cb;
  883.    $cb = pop if ref($_[$#_]) eq 'CODE'; # last arg may be code
  884.    $vars = pop if ref($_[$#_]); # varbind or varlist
  885.    my %param = @_;
  886.    my ($varbind_list_ref, @res);
  887.    if (ref($vars) =~ /SNMP::VarList/) {
  888.      $varbind_list_ref = $vars;
  889.    } elsif (ref($vars) =~ /SNMP::Varbind/) {
  890.      $varbind_list_ref = [$vars];
  891.    } elsif (ref($vars) =~ /ARRAY/) {
  892.      $varbind_list_ref = [$vars];
  893.      $varbind_list_ref = $vars if ref($$vars[0]) =~ /ARRAY/;
  894.    }
  895.    my $trap_oid = $param{oid} || $param{trapoid};
  896.    my $uptime = $param{uptime} || SNMP::_sys_uptime();
  897.    if($this->{Version} eq '3') {
  898.      @res = SNMP::_inform($this, $uptime, $trap_oid, $varbind_list_ref, $cb);
  899.    } else {
  900.      warn("error:inform: This version doesn't support the commandn");
  901.    }
  902.    return(wantarray() ? @res : $res[0]);
  903. }
  904. package SNMP::TrapSession;
  905. @ISA = ('SNMP::Session');
  906. sub new {
  907.    my $type = shift;
  908.    # allow override of remote SNMP trap port
  909.    unless (grep(/RemotePort/, @_)) {
  910.        push(@_, 'RemotePort', 162); # push on new default for trap session
  911.    }
  912.    SNMP::Session::new($type, @_);
  913. }
  914. package SNMP::Varbind;
  915. $tag_f = 0;
  916. $iid_f = 1;
  917. $val_f = 2;
  918. $type_f = 3;
  919. $time_f = 4;
  920. sub new {
  921.    my $type = shift;
  922.    my $this = shift;
  923.    $this ||= [];
  924.    bless $this;
  925. }
  926. sub tag {
  927.   $_[0]->[$tag_f];
  928. }
  929. sub iid {
  930.   $_[0]->[$iid_f];
  931. }
  932. sub val {
  933.   $_[0]->[$val_f];
  934. }
  935. sub type {
  936.   $_[0]->[$type_f];
  937. }
  938. sub name {
  939.    if (defined($_[0]->[$iid_f]) && ($_[0]->[$iid_f] =~ m/^[0-9]+$/)) {
  940.       return $_[0]->[$tag_f] . "." . $_[0]->[$iid_f];
  941.    }
  942.    return $_[0]->[$tag_f];
  943. }
  944. sub fmt {
  945.     my $self = shift;
  946.     return $self->name . " = "" . $self->val . "" (" . $self->type . ")";
  947. }
  948. #sub DESTROY {
  949. #    print "SNMP::Varbind::DESTROY($_[0])n";
  950. #}
  951. package SNMP::VarList;
  952. sub new {
  953.    my $type = shift;
  954.    my $this = [];
  955.    my $varb;
  956.    foreach $varb (@_) {
  957.      $varb = new SNMP::Varbind($varb) unless ref($varb) =~ /SNMP::Varbind/;
  958.      push(@{$this}, $varb);
  959.    }
  960.    bless $this;
  961. }
  962. #sub DESTROY {
  963. #    print "SNMP::VarList::DESTROY($_[0])n";
  964. #}
  965. package SNMP::DEBUGGING;
  966. # controls info/debugging output from SNMP module and libsnmp
  967. # $SNMP::debugging == 1    =>   enables general info and warning output
  968. #                                (eqiv. to setting $SNMP::verbose)
  969. # $SNMP::debugging == 2    =>   enables do_debugging from libsnmp as well
  970. # $SNMP::debugging == 3    =>   enables packet_dump from libsnmp as well
  971. sub TIESCALAR { my $class = shift; my $val; bless $val, $class; }
  972. sub FETCH { ${$_[0]}; }
  973. sub STORE {
  974.     $SNMP::verbose = $_[1];
  975.     SNMP::_set_debugging($_[1]>1);
  976.     $SNMP::dump_packet = ($_[1]>2);
  977.     ${$_[0]} = $_[1];
  978. }
  979. sub DELETE {
  980.     $SNMP::verbose = 0;
  981.     SNMP::_set_debugging(0);
  982.     $SNMP::dump_packet = 0;
  983.     ${$_[0]} = undef;
  984. }
  985. package SNMP::DEBUG_INTERNALS; # Controls SNMP.xs debugging.
  986. sub TIESCALAR { my $class = shift; my $val; bless $val, $class; }
  987. sub FETCH { ${$_[0]}; }
  988. sub STORE {
  989.     SNMP::_debug_internals($_[1]);
  990.     ${$_[0]} = $_[1];
  991. }
  992. sub DELETE {
  993.     SNMP::_debug_internals(0);
  994.     ${$_[0]} = undef;
  995. }
  996. package SNMP::DUMP_PACKET;
  997. # controls packet dump output from libsnmp
  998. sub TIESCALAR { my $class = shift; my $val; bless $val, $class; }
  999. sub FETCH { ${$_[0]}; }
  1000. sub STORE { SNMP::_dump_packet($_[1]); ${$_[0]} = $_[1]; }
  1001. sub DELETE { SNMP::_dump_packet(0); ${$_[0]} = 0; }
  1002. package SNMP::MIB;
  1003. sub TIEHASH {
  1004.     bless {};
  1005. }
  1006. sub FETCH {
  1007.     my $this = shift;
  1008.     my $key = shift;
  1009.     if (!defined $this->{$key}) {
  1010. tie(%{$this->{$key}}, SNMP::MIB::NODE, $key) or return undef;
  1011.     }
  1012.     $this->{$key};
  1013. }
  1014. sub STORE {
  1015.     warn "STORE(@_) : write access to the MIB not implementedn";
  1016. }
  1017. sub DELETE {
  1018.     delete $_[0]->{$_[1]}; # just delete cache entry
  1019. }
  1020. sub FIRSTKEY { return '.1'; } # this should actually start at .0 but
  1021.                               # because nodes are not stored in lexico
  1022.                               # order in ucd-snmp node tree walk will
  1023.                               # miss most of the tree
  1024. sub NEXTKEY { # this could be sped up by using an XS __get_next_oid maybe
  1025.    my $node = $_[0]->FETCH($_[1])->{nextNode};
  1026.    $node->{objectID};
  1027. }
  1028. sub EXISTS { exists $_[0]->{$_[1]} || $_[0]->FETCH($_[1]); }
  1029. sub CLEAR { undef %{$_[0]}; } # clear the cache
  1030. package SNMP::MIB::NODE;
  1031. my %node_elements =
  1032.     (
  1033.      objectID => 0, # dotted decimal fully qualified OID
  1034.      label => 0,    # leaf textual identifier (e.g., 'sysDescr')
  1035.      subID => 0,    # leaf numeric OID component of objectID (e.g., '1')
  1036.      moduleID => 0, # textual identifier for module (e.g., 'RFC1213-MIB')
  1037.      parent => 0,   # parent node
  1038.      children => 0, # array reference of children nodes
  1039.      indexes => 0,  # returns array of column labels
  1040.      varbinds => 0, # returns array of trap/notification varbinds
  1041.      nextNode => 0, # next lexico node (BUG! does not return in lexico order)
  1042.      type => 0,     # returns simple type (see getType for values)
  1043.      access => 0,   # returns ACCESS (ReadOnly, ReadWrite, WriteOnly,
  1044.                     # NoAccess, Notify, Create)
  1045.      status => 0,   # returns STATUS (Mandatory, Optional, Obsolete,
  1046.                     # Deprecated)
  1047.      syntax => 0,   # returns 'textualConvention' if defined else 'type'
  1048.      textualConvention => 0, # returns TEXTUAL-CONVENTION
  1049.      units => 0,    # returns UNITS
  1050.      hint => 0,     # returns HINT
  1051.      enums => 0,    # returns hash ref {tag => num, ...}
  1052.      ranges => 0,   # returns array ref of hash ref [{low => num, high => num}]
  1053.      defaultValue => 0, # returns default value
  1054.      description => 0, # returns DESCRIPTION ($SNMP::save_descriptions must
  1055.                     # be set prior to MIB initialization/parsing
  1056.      augments => 0, # textual identifier of augmented object
  1057.     );
  1058. # sub TIEHASH - implemented in SNMP.xs
  1059. # sub FETCH - implemented in SNMP.xs
  1060. sub STORE {
  1061.     warn "STORE(@_): write access to MIB node not implementedn";
  1062. }
  1063. sub DELETE {
  1064.     warn "DELETE(@_): write access to MIB node not implementedn";
  1065. }
  1066. sub FIRSTKEY { my $k = keys %node_elements; (each(%node_elements))[0]; }
  1067. sub NEXTKEY { (each(%node_elements))[0]; }
  1068. sub EXISTS { exists($node_elements{$_[1]}); }
  1069. sub CLEAR {
  1070.     warn "CLEAR(@_): write access to MIB node not implementedn";
  1071. }
  1072. #sub DESTROY {
  1073. #    warn "DESTROY(@_): write access to MIB node not implementedn";
  1074. #    # print "SNMP::MIB::NODE::DESTROY : $_[0]->{label} ($_[0])n";
  1075. #}
  1076. package SNMP::MIB::SAVE_DESCR;
  1077. sub TIESCALAR { my $class = shift; my $val; bless $val, $class; }
  1078. sub FETCH { ${$_[0]}; }
  1079. sub STORE { SNMP::_set_save_descriptions($_[1]); ${$_[0]} = $_[1]; }
  1080. sub DELETE { SNMP::_set_save_descriptions(0); ${$_[0]} = 0; }
  1081. package SNMP::MIB::REPLACE_NEWER;               # Controls MIB parsing
  1082. sub TIESCALAR { my $class = shift; my $val; bless $val, $class; }
  1083. sub FETCH { ${$_[0]}; }
  1084. sub STORE {
  1085.     SNMP::_set_replace_newer($_[1]);
  1086.     ${$_[0]} = $_[1];
  1087. }
  1088. sub DELETE {
  1089.     SNMP::_set_replace_newer(0);
  1090.     ${$_[0]} = 0;
  1091. }
  1092. package SNMP::MIB::MIB_OPTIONS;
  1093. sub TIESCALAR { my $class = shift; my $val; bless $val, $class; }
  1094. sub FETCH { ${$_[0]}; }
  1095. sub STORE { SNMP::_mib_toggle_options($_[1]); ${$_[0]} = $_[1]; }
  1096. sub DELETE { SNMP::_mib_toggle_options(0); ${$_[0]} = ''; }
  1097. package SNMP;
  1098. END{SNMP::_sock_cleanup() if defined &SNMP::_sock_cleanup;}
  1099. # Autoload methods go after __END__, and are processed by the autosplit prog.
  1100. 1;
  1101. __END__
  1102. =head1 NAME
  1103. SNMP - The Perl5 'SNMP' Extension Module for the Net-SNMP SNMP package.
  1104. =head1 SYNOPSIS
  1105.  use SNMP;
  1106.  ...
  1107.  $sess = new SNMP::Session(DestHost => localhost, Community => public);
  1108.  $val = $sess->get('sysDescr.0');
  1109.  ...
  1110.  $vars = new SNMP::VarList([sysDescr,0], [sysContact,0], [sysLocation,0]);
  1111.  @vals = $sess->get($vars);
  1112.  ...
  1113.  $vb = new SNMP::Varbind();
  1114.  do {
  1115.     $val = $sess->getnext($vb);
  1116.     print "@{$vb}n";
  1117.  } until ($sess->{ErrorNum});
  1118.  ...
  1119.  $SNMP::save_descriptions = 1;
  1120.  SNMP::initMib(); # assuming mib is not already loaded
  1121.  print "$SNMP::MIB{sysDescr}{description}n";
  1122. =head1 DESCRIPTION
  1123. Note: The perl SNMP 5.0 module which comes with net-snmp 5.0 and
  1124. higher is different than previous versions in a number of ways.  Most
  1125. importantly, it behaves like a proper net-snmp application and calls
  1126. init_snmp properly, which means it will read configuration files and
  1127. use those defaults where appropriate automatically parse MIB files,
  1128. etc.  This will likely affect your perl applications if you have, for
  1129. instance, default values set up in your snmp.conf file (as the perl
  1130. module will now make use of those defaults).  The docmuentation,
  1131. however, has sadly not been updated yet (aside from this note), nor is
  1132. the read_config default usage implementation fully complete.
  1133. The basic operations of the SNMP protocol are provided by this module
  1134. through an object oriented interface for modularity and ease of use.
  1135. The primary class is SNMP::Session which encapsulates the persistent
  1136. aspects of a connection between the management application and the
  1137. managed agent. Internally the class is implemented as a blessed hash
  1138. reference. This class supplies 'get', 'getnext', 'set', 'fget', and
  1139. 'fgetnext' method calls. The methods take a variety of input argument
  1140. formats and support both syncronous and asyncronous operation through
  1141. a polymorphic API (i.e., method behaviour varies dependent on args
  1142. passed - see below).
  1143. =head1 SNMP::Session
  1144. $sess = new SNMP::Session(DestHost => 'host', ...)
  1145. The following arguments may be passed to new as a hash.
  1146. =over 4
  1147. =item DestHost
  1148. default 'localhost', hostname or ip addr of SNMP agent
  1149. =item Community
  1150. default 'public', SNMP community string (used for both R/W)
  1151. =item Version
  1152. default taken from library configuration - probably 3 [1, 2 (same as 2c), 2c, 3]
  1153. =item RemotePort
  1154. default '161', allow remote UDP port to be overriden
  1155. =item Timeout
  1156. default '1000000', micro-seconds before retry
  1157. =item Retries
  1158. default '5', retries before failure
  1159. =item RetryNoSuch
  1160. default '0', if enabled NOSUCH errors in 'get' pdus will
  1161. be repaired, removing the varbind in error, and resent -
  1162. undef will be returned for all NOSUCH varbinds, when set
  1163. to '0' this feature is disabled and the entire get request
  1164. will fail on any NOSUCH error (applies to v1 only)
  1165. =item SecName
  1166. default 'initial', security name (v3)
  1167. =item SecLevel
  1168. default 'noAuthNoPriv', security level [noAuthNoPriv,
  1169. authNoPriv, authPriv] (v3)
  1170. =item SecEngineId
  1171. default <none>, security engineID, will be probed if not
  1172. supplied (v3)
  1173. =item ContextEngineId
  1174. default <SecEngineId>, context engineID, will be
  1175. probed if not supplied (v3)
  1176. =item Context
  1177. default '', context name (v3)
  1178. =item AuthProto
  1179. default 'MD5', authentication protocol [MD5, SHA] (v3)
  1180. =item AuthPass
  1181. default <none>, authentication passphrase
  1182. =item PrivProto
  1183. default 'DES', privacy protocol [DES, AES] (v3)
  1184. =item PrivPass
  1185. default <none>, privacy passphrase (v3)
  1186. =item authMasterKey
  1187. =item privMasterKey
  1188. =item authLocalizedKey
  1189. =item privLocalizedKey
  1190. Directly specified SNMPv3 USM user keys (used if you want to specify
  1191. the keys instead of deriving them from a password as above).
  1192. =item VarFormats
  1193. default 'undef', used by 'fget[next]', holds an hash
  1194. reference of output value formatters, (e.g., {<obj> =>
  1195. <sub-ref>, ... }, <obj> must match the <obj> and format
  1196. used in the get operation. A special <obj>, '*', may be
  1197. used to apply all <obj>s, the supplied sub is called to
  1198. translate the value to a new format. The sub is called
  1199. passing the Varbind as the arg
  1200. =item TypeFormats
  1201. default 'undef', used by 'fget[next]', holds an hash
  1202. reference of output value formatters, (e.g., {<type> =>
  1203. <sub-ref>, ... }, the supplied sub is called to translate
  1204. the value to a new format, unless a VarFormat mathces first
  1205. (e.g., $sess->{TypeFormats}{INTEGER} = &mapEnum();
  1206. although this can be done more efficiently by enabling
  1207. $SNMP::use_enums or session creation param 'UseEnums')
  1208. =item UseLongNames
  1209. defaults to the value of SNMP::use_long_names at time
  1210. of session creation. set to non-zero to have <tags>
  1211. for 'getnext' methods generated preferring longer Mib name
  1212. convention (e.g., system.sysDescr vs just sysDescr)
  1213. =item UseSprintValue
  1214. defaults to the value of SNMP::use_sprint_value at time
  1215. of session creation. set to non-zero to have return values
  1216. for 'get' and 'getnext' methods formatted with the libraries
  1217. snprint_value function. This will result in certain data types
  1218. being returned in non-canonical format Note: values returned
  1219. with this option set may not be appropriate for 'set' operations
  1220. (see discussion of value formats in <vars> description section)
  1221. =item UseEnums
  1222. defaults to the value of SNMP::use_enums at time of session
  1223. creation. set to non-zero to have integer return values
  1224. converted to enumeration identifiers if possible, these values
  1225. will also be acceptable when supplied to 'set' operations
  1226. =item UseNumeric
  1227. defaults to the value of SNMP::use_numeric at time of session
  1228. creation. set to non-zero to have <tags> for get methods returned
  1229. as numeric OID's rather than descriptions.  UseLongNames will be
  1230. set so that the full OID is returned to the caller.
  1231. =item BestGuess
  1232. defaults to the value of SNMP::best_guess at time of session
  1233. creation. this setting controls how <tags> are parsed.  setting to
  1234. 0 causes a regular lookup.  setting to 1 causes a regular expression 
  1235. match (defined as -Ib in snmpcmd) and setting to 2 causes a random 
  1236. access lookup (defined as -IR in snmpcmd).
  1237. =item ErrorStr
  1238. read-only, holds the error message assoc. w/ last request
  1239. =item ErrorNum
  1240. read-only, holds the snmp_err or staus of last request
  1241. =item ErrorInd
  1242. read-only, holds the snmp_err_index when appropriate
  1243. =back
  1244. Private variables:
  1245. =over
  1246. =item DestAddr
  1247. internal field used to hold the translated DestHost field
  1248. =item SessPtr
  1249. internal field used to cache a created session structure
  1250. =back
  1251. =head2 SNMP::Session methods
  1252. =over
  1253. =item $sess->update(E<lt>fieldsE<gt>)
  1254. Updates the SNMP::Session object with the values fields
  1255. passed in as a hash list (similar to new(E<lt>fieldsE<gt>))
  1256. B<(WARNING! not fully implemented)>
  1257. =item $sess->get(E<lt>varsE<gt> [,E<lt>callbackE<gt>])
  1258. do SNMP GET, multiple <vars> formats accepted.
  1259. for syncronous operation <vars> will be updated
  1260. with value(s) and type(s) and will also return
  1261. retrieved value(s). If <callback> supplied method
  1262. will operate asyncronously
  1263. =item $sess->fget(E<lt>varsE<gt> [,E<lt>callbackE<gt>])
  1264. do SNMP GET like 'get' and format the values according
  1265. the handlers specified in $sess->{VarFormats} and
  1266. $sess->{TypeFormats}
  1267. =item $sess->getnext(E<lt>varsE<gt> [,E<lt>callbackE<gt>])
  1268. do SNMP GETNEXT, multiple <vars> formats accepted,
  1269. returns retrieved value(s), <vars> passed as arguments are
  1270. updated to indicate next lexicographical <obj>,<iid>,<val>,
  1271. and <type>
  1272. Note: simple string <vars>,(e.g., 'sysDescr.0')
  1273. form is not updated. If <callback> supplied method
  1274. will operate asyncronously
  1275. =item $sess->fgetnext(E<lt>varsE<gt> [,E<lt>callbackE<gt>])
  1276. do SNMP GETNEXT like getnext and format the values according
  1277. the handlers specified in $sess->{VarFormats} and
  1278. $sess->{TypeFormats}
  1279. =item $sess->set(E<lt>varsE<gt> [,E<lt>callbackE<gt>])
  1280. do SNMP SET, multiple <vars> formats accepted.
  1281. the value field in all <vars> formats must be in a canonical
  1282. format (i.e., well known format) to ensure unambiguous
  1283. translation to SNMP MIB data value (see discussion of
  1284. canonical value format <vars> description section),
  1285. returns snmp_errno. If <callback> supplied method
  1286. will operate asyncronously
  1287. =item $sess->getbulk(E<lt>non-repeatersE<gt>, E<lt>max-repeatersE<gt>, E<lt>varsE<gt>)
  1288. do an SNMP GETBULK, from the list of Varbinds, the single
  1289. next lexico instance is fetched for the first n Varbinds
  1290. as defined by <non-repeaters>. For remaining Varbinds,
  1291. the m lexico instances are retrieved each of the remaining
  1292. Varbinds, where m is <max-repeaters>.
  1293. =item $sess->bulkwalk(E<lt>non-repeatersE<gt>, E<lt>max-repeatersE<gt>, E<lt>varsE<gt> [,E<lt>callbackE<gt>])
  1294. Do a "bulkwalk" of the list of Varbinds.  This is done by
  1295. sending a GETBULK request (see getbulk() above) for the
  1296. Varbinds.  For each requested variable, the response is
  1297. examined to see if the next lexico instance has left the
  1298. requested sub-tree.  Any further instances returned for
  1299. this variable are ignored, and the walk for that sub-tree
  1300. is considered complete.
  1301. If any sub-trees were not completed when the end of the
  1302. responses is reached, another request is composed, consisting
  1303. of the remaining variables.  This process is repeated until
  1304. all sub-trees have been completed, or too many packets have
  1305. been exchanged (to avoid loops).
  1306. The bulkwalk() method returns an array containing an array of
  1307. Varbinds, one for each requested variable, in the order of the
  1308. variable requests.  Upon error, bulkwalk() returns undef and
  1309. sets $sess->ErrorStr and $sess->ErrorNum.  If a callback is
  1310. supplied, bulkwalk() returns the SNMP request id, and returns
  1311. immediately.  The callback will be called with the supplied
  1312. argument list and the returned variables list.
  1313. Note: Because the client must "discover" that the tree is
  1314. complete by comparing the returned variables with those that
  1315. were requested, there is a potential "gotcha" when using the
  1316. max-repeaters value.  Consider the following code to print a
  1317. list of interfaces and byte counts:
  1318.     $numInts = $sess->get('ifNumber.0');
  1319.     ($desc, $in, $out) = $sess->bulkwalk(0, $numInts,
  1320.   [['ifDescr'], ['ifInOctets'], ['ifOutOctets']]);
  1321.     for $i (0..($numInts - 1)) {
  1322.         printf "Interface %4s: %s inOctets, %s outOctetsn",
  1323.                   $$desc[$i]->val, $$in[$i]->val, $$out[$i]->val;
  1324.     }
  1325. This code will produce *two* requests to the agent -- the first
  1326. to get the interface values, and the second to discover that all
  1327. the information was in the first packet.  To get around this,
  1328. use '$numInts + 1' for the max_repeaters value.  This asks the
  1329. agent to include one additional (unrelated) variable that signals
  1330. the end of the sub-tree, allowing bulkwalk() to determine that
  1331. the request is complete.
  1332. =item $results = $sess->gettable(E<lt>TABLE OIDE<gt>, E<lt>OPTIONS<gt>)
  1333. This will retrieve an entire table of data and return a hash reference
  1334. to that data.  The returned hash reference will have indexes of the
  1335. OID suffixes for the index data as the key.  The value for each entry
  1336. will be another hash containing the data for a given row.  The keys to
  1337. that hash will be the column names, and the values will be the data.
  1338. Example:
  1339.   #!/usr/bin/perl
  1340.   use SNMP;
  1341.   use Data::Dumper;
  1342.   my $s = new SNMP::Session(DestHost => 'localhost');
  1343.   print Dumper($s->gettable('ifTable'));
  1344. On my machine produces:
  1345.   $VAR1 = {
  1346.             '6' => {
  1347.                      'ifMtu' => '1500',
  1348.                      'ifPhysAddress' => 'PV',
  1349.                      # ...
  1350.                      'ifInUnknownProtos' => '0'
  1351.                    },
  1352.             '4' => {
  1353.                      'ifMtu' => '1480',
  1354.                      'ifPhysAddress' => '',
  1355.                      # ...
  1356.                      'ifInUnknownProtos' => '0'
  1357.                    },
  1358.             # ...
  1359.            };
  1360. By default, it will try to do as optimized retrieval as possible.
  1361. It'll request multiple columns at once, and use GETBULK if possible.
  1362. A few options may be specified by passing in an I<OPTIONS> hash
  1363. containing various parameters:
  1364. =over
  1365. =item noindexes => 1
  1366. Instructs the code not to parse the indexes and place the results in
  1367. the second hash.  If you don't need the index data, this will be
  1368. faster.
  1369. =item columns => [ colname1, ... ]
  1370. This specifies which columns to collect.  By default, it will try to
  1371. collect all the columns defined in the MIB table.
  1372. =item repeat => I<COUNT>
  1373. Specifies a GETBULK repeat I<COUNT>.  IE, it will request this many
  1374. varbinds back per column when using the GETBULK operation.  Shortening
  1375. this will mean smaller packets which may help going through some
  1376. systems.  By default, this value is calculated and attepmts to guess
  1377. at what will fit all the results into 1000 bytes.  This calculation is
  1378. fairly safe, hopefully, but you can either raise or lower the number
  1379. using this option if desired.  In lossy networks, you want to make
  1380. sure that the packets don't get fragmented and lowering this value is
  1381. one way to help that.
  1382. =item nogetbulk => 1
  1383. Force the use of GETNEXT rather than GETBULK.  (always true for
  1384. SNMPv1, as it doesn't have GETBULK anyway).  Some agents are great
  1385. implementers of GETBULK and this allows you to force the use of
  1386. GETNEXT oprations instead.
  1387. =back
  1388. =back
  1389. =head1 SNMP::TrapSession
  1390. $sess = new SNMP::Session(DestHost => 'host', ...)
  1391. supports all applicable fields from SNMP::Session
  1392. (see above)
  1393. =head2 SNMP::TrapSession methods
  1394. =over
  1395. =item $sess->trap(enterprise, agent, generic, specific, uptime, <vars>)
  1396.     $sess->trap(enterprise=>'.1.3.6.1.4.1.2021', # or 'ucdavis' [default]
  1397.                 agent => '127.0.0.1', # or 'localhost',[dflt 1st intf on host]
  1398.                 generic => specific,  # can be omitted if 'specific' supplied
  1399.                 specific => 5,        # can be omitted if 'generic' supplied
  1400.                 uptime => 1234,       # dflt to localhost uptime (0 on win32)
  1401.                 [[ifIndex, 1, 1],[sysLocation, 0, "here"]]); # optional vars
  1402.                                                              # always last
  1403. =item trap(oid, uptime, <vars>) - v2 format
  1404.     $sess->trap(oid => 'snmpRisingAlarm',
  1405.                 uptime => 1234,
  1406.                 [[ifIndex, 1, 1],[sysLocation, 0, "here"]]); # optional vars
  1407.                                                              # always last
  1408. =back
  1409. =head1 Acceptable variable formats:
  1410. <vars> may be one of the following forms:
  1411. =over
  1412. =item SNMP::VarList
  1413. represents an array of MIB objects to get or set,
  1414. implemented as a blessed reference to an array of
  1415. SNMP::Varbinds, (e.g., [<varbind1>, <varbind2>, ...])
  1416. =item SNMP::Varbind
  1417. represents a single MIB object to get or set, implemented as
  1418. a blessed reference to a 4 element array;
  1419. [<obj>, <iid>, <val>, <type>].
  1420. =over
  1421. =item <obj>
  1422. one of the following forms:
  1423. =over
  1424. =item 1)
  1425. leaf identifier (e.g., 'sysDescr') assumed to be
  1426. unique for practical purposes
  1427. =item 2)
  1428. fully qualified identifier (e.g.,
  1429. '.iso.org.dod.internet.mgmt.mib-2.system.sysDescr')
  1430. =item 3)
  1431. fully qualified, dotted-decimal, numeric OID (e.g.,
  1432. '.1.3.6.1.2.1.1.1')
  1433. =back
  1434. =item <iid>
  1435. the dotted-decimal, instance identifier. for
  1436. scalar MIB objects use '0'
  1437. =item <val>
  1438. the SNMP data value retrieved from or being set
  1439. to the agents MIB. for (f)get(next) operations
  1440. <val> may have a variety of formats as determined by
  1441. session and package settings. However for set
  1442. operations the <val> format must be canonical to
  1443. ensure unambiguous translation. The canonical forms
  1444. are as follows:
  1445. =over
  1446. =item OBJECTID
  1447. dotted-decimal (e.g., .1.3.6.1.2.1.1.1)
  1448. =item OCTETSTR
  1449. perl scalar containing octets
  1450. =item INTEGER
  1451. decimal signed integer (or enum)
  1452. =item NETADDR
  1453. dotted-decimal
  1454. =item IPADDR
  1455. dotted-decimal
  1456. =item COUNTER
  1457. decimal unsigned integer
  1458. =item COUNTER64
  1459. decimal unsigned integer
  1460. =item GAUGE
  1461. decimal unsigned integer
  1462. =item UINTEGER
  1463. decimal unsigned integer
  1464. =item TICKS
  1465. decimal unsigned integer
  1466. =item OPAQUE
  1467. perl scalar containing octets
  1468. =item NULL
  1469. perl scalar containing nothing
  1470. =back
  1471. =item <type>
  1472. SNMP data type (see list above), this field is
  1473. populated by 'get' and 'getnext' operations. In
  1474. some cases the programmer needs to populate this
  1475. field when passing to a 'set' operation. this
  1476. field need not be supplied when the attribute
  1477. indicated by <tag> is already described by loaded
  1478. Mib modules. for 'set's, if a numeric OID is used
  1479. and the object is not currently in the loaded Mib,
  1480. the <type> field must be supplied
  1481. =back
  1482. =item simple string
  1483. light weight form of <var> used to 'set' or 'get' a
  1484. single attribute without constructing an SNMP::Varbind.
  1485. stored in a perl scalar, has the form '<tag>.<iid>',
  1486. (e.g., 'sysDescr.0'). for 'set' operations the value
  1487. is passed as a second arg. Note: This argument form is
  1488. not updated in get[next] operations as are the other forms.
  1489. =back
  1490. =head1 Acceptable callback formats
  1491. <callback> may be one of the following forms:
  1492. =over
  1493. =item without arguments
  1494. =over
  1495. =item &subname
  1496. =item sub { ... }
  1497. =back
  1498. =item or with arguments
  1499. =over
  1500. =item [ &subname, $arg1, ... ]
  1501. =item [ sub { ... }, $arg1, ... ]
  1502. =item [ "method", $obj, $arg1, ... ]
  1503. =back
  1504. =back
  1505. callback will be called when response is received or timeout
  1506. occurs. the last argument passed to callback will be a
  1507. SNMP::VarList reference. In case of timeout the last argument
  1508. will be undef.
  1509. =over
  1510. =item &SNMP::MainLoop([<timeout>, [<callback>]])
  1511. to be used with async SNMP::Session
  1512. calls. MainLoop must be called after initial async calls
  1513. so return packets from the agent will not be processed.
  1514. If no args suplied this function enters an infinite loop
  1515. so program must be exited in a callback or externally
  1516. interupted. If <timeout(sic)
  1517. =item &SNMP::finish()
  1518. This function, when called from an SNMP::MainLoop() callback
  1519. function, will cause the current SNMP::MainLoop() to return
  1520. after the callback is completed.  finish() can be used to
  1521. terminate an otherwise-infinite MainLoop.  A new MainLoop()
  1522. instance can then be started to handle further requests.
  1523. =back
  1524. =head1 SNMP package variables and functions
  1525. =over
  1526. =item $SNMP::VERSION
  1527. the current version specifier (e.g., 3.1.0)
  1528. =item $SNMP::auto_init_mib
  1529. default '1', set to 0 to disable automatic reading
  1530. of the MIB upon session creation. set to non-zero
  1531. to call initMib at session creation which will result
  1532. in MIB loading according to UCD env. variables (see
  1533. man mib_api)
  1534. =item $SNMP::verbose
  1535. default '0', controls warning/info output of
  1536. SNMP module, 0 => no output, 1 => enables warning/info
  1537. output from SNMP module itself (is also controlled
  1538. by SNMP::debugging - see below)
  1539. =item $SNMP::use_long_names
  1540. default '0', set to non-zero to enable the use of
  1541. longer Mib identifiers. see translateObj. will also
  1542. influence the formatting of <tag> in varbinds returned
  1543. from 'getnext' operations. Can be set on a per session
  1544. basis (UseLongNames)
  1545. =item $SNMP::use_sprint_value
  1546. default '0', set to non-zero to enable formatting of
  1547. response values using the snmp libraries snprint_value
  1548. function. can also be set on a per session basis (see
  1549. UseSprintValue) Note: returned values may not be
  1550. suitable for 'set' operations
  1551. =item $SNMP::use_enums
  1552. default '0',set non-zero to return values as enums and
  1553. allow sets using enums where appropriate. integer data
  1554. will still be accepted for set operations. can also be
  1555. set on a per session basis (see UseEnums)
  1556. =item $SNMP::use_numeric
  1557. default to '0',set to non-zero to have <tags> for 'get'
  1558. methods returned as numeric OID's rather than descriptions.
  1559. UseLongNames will be set so that the entire OID will be
  1560. returned.  Set on a per-session basis (see UseNumeric).
  1561. =item $SNMP::best_guess
  1562. default '0'.  This setting controls how <tags> are 
  1563. parsed.  Setting to 0 causes a regular lookup.  Setting 
  1564. to 1 causes a regular expression match (defined as -Ib 
  1565. in snmpcmd) and setting to 2 causes a random access 
  1566. lookup (defined as -IR in snmpcmd).  Can also be set 
  1567. on a per session basis (see BestGuess)
  1568. =item $SNMP::save_descriptions
  1569. default '0',set non-zero to have mib parser save
  1570. attribute descriptions. must be set prior to mib
  1571. initialization
  1572. =item $SNMP::debugging
  1573. default '0', controlls debugging output level
  1574. within SNMP module and libsnmp
  1575. =over
  1576. =item 1
  1577. enables 'SNMP::verbose' (see above)
  1578. =item 2
  1579. level 1 plus snmp_set_do_debugging(1)
  1580. =item 3
  1581. level 2 plus snmp_set_dump_packet(1)
  1582. =back
  1583. =item $SNMP::dump_packet
  1584. default '0', set [non-]zero to independently set
  1585. snmp_set_dump_packet()
  1586. =back
  1587. =head1 %SNMP::MIB
  1588. a tied hash to access parsed MIB information. After
  1589. the MIB has been loaded this hash allows access to
  1590. to the parsed in MIB meta-data(the structure of the
  1591. MIB (i.e., schema)). The hash returns blessed
  1592. references to SNMP::MIB::NODE objects which represent
  1593. a single MIB attribute. The nodes can be fetched with
  1594. multiple 'key' formats - the leaf name (e.g.,sysDescr)
  1595. or fully/partially qualified name (e.g.,
  1596. system.sysDescr) or fully qualified numeric OID. The
  1597. returned node object supports the following fields:
  1598. =over
  1599. =item objectID
  1600. dotted decimal fully qualified OID
  1601. =item label
  1602. leaf textual identifier (e.g., 'sysDescr')
  1603. =item subID
  1604. leaf numeric OID component of objectID (e.g., '1')
  1605. =item moduleID
  1606. textual identifier for module (e.g., 'RFC1213-MIB')
  1607. =item parent
  1608. parent node
  1609. =item children
  1610. array reference of children nodes
  1611. =item nextNode
  1612. next lexico node B<(BUG!does not return in lexico order)>
  1613. =item type
  1614. returns application type (see getType for values)
  1615. =item access
  1616. returns ACCESS (ReadOnly, ReadWrite, WriteOnly,
  1617. NoAccess, Notify, Create)
  1618. =item status
  1619. returns STATUS (Mandatory, Optional, Obsolete,
  1620. Deprecated)
  1621. =item syntax
  1622. returns 'textualConvention' if defined else 'type'
  1623. =item textualConvention
  1624. returns TEXTUAL-CONVENTION
  1625. =item TCDescription
  1626. returns the TEXTUAL-CONVENTION's DESCRIPTION field.
  1627. =item units
  1628. returns UNITS
  1629. =item hint
  1630. returns HINT
  1631. =item enums
  1632. returns hash ref {tag => num, ...}
  1633. =item ranges
  1634. returns array ref of hash ref [{low => num, high => num}, ...]
  1635. =item description
  1636. returns DESCRIPTION ($SNMP::save_descriptions must
  1637. be set prior to MIB initialization/parsing)
  1638. =item reference
  1639. returns the REFERENCE clause
  1640. =back
  1641. =head1 MIB Functions
  1642. =over
  1643. =item &SNMP::setMib(<file>)
  1644. allows dynamic parsing of the mib and explicit
  1645. specification of mib file independent of enviroment
  1646. variables. called with no args acts like initMib,
  1647. loading MIBs indicated by environment variables (see
  1648. ucd mib_api docs). passing non-zero second arg
  1649. forces previous mib to be freed and replaced
  1650. B<(Note: second arg not working since freeing previous
  1651. Mib is more involved than before)>.
  1652. =item &SNMP::initMib()
  1653. calls library init_mib function if Mib not already
  1654. loaded - does nothing if Mib already loaded. will
  1655. parse directories and load modules according to
  1656. environment variables described in UCD documentations.
  1657. (see man mib_api, MIBDIRS, MIBS, MIBFILE(S), etc.)
  1658. =item &SNMP::addMibDirs(<dir>,...)
  1659. calls library add_mibdir for each directory
  1660. supplied. will cause directory(s) to be added to
  1661. internal list and made available for searching in
  1662. subsequent loadModules calls
  1663. =item &SNMP::addMibFiles(<file>,...)
  1664. calls library read_mib function. The file(s)
  1665. supplied will be read and all Mib module definitions
  1666. contained therein will be added to internal mib tree
  1667. structure
  1668. =item &SNMP::loadModules(<mod>,...)
  1669. calls library read_module function. The
  1670. module(s) supplied will be searched for in the
  1671. current mibdirs and and added to internal mib tree
  1672. structure. Passing special <mod>, 'ALL', will cause
  1673. all known modules to be loaded.
  1674. =item &SNMP::unloadModules(<mod>,...)
  1675. B<*Not Implemented*>
  1676. =item &SNMP::translateObj(<var>[,arg,[arg]])
  1677. will convert a text obj tag to an OID and vice-versa.
  1678. Any iid suffix is retained numerically.  Default
  1679. behaviour when converting a numeric OID to text
  1680. form is to return leaf identifier only 
  1681. (e.g.,'sysDescr') but when $SNMP::use_long_names 
  1682. is non-zero or a non-zero second arg is supplied it 
  1683. will return a longer textual identifier.  An optional 
  1684. third argument of non-zero will cause the module name 
  1685. to be prepended to the text name (e.g. 
  1686. 'SNMPv2-MIB::sysDescr').  When converting a text obj, 
  1687. the $SNMP::best_guess option is used.  If no Mib is 
  1688. loaded when called and $SNMP::auto_init_mib is enabled 
  1689. then the Mib will be loaded. Will return 'undef' upon 
  1690. failure.
  1691. =item &SNMP::getType(<var>)
  1692. return SNMP data type for given textual identifier
  1693. OBJECTID, OCTETSTR, INTEGER, NETADDR, IPADDR, COUNTER
  1694. GAUGE, TIMETICKS, OPAQUE, or undef
  1695. =item &SNMP::mapEnum(<var>)
  1696. converts integer value to enumertion tag defined
  1697. in Mib or converts tag to integer depending on
  1698. input. the function will return the corresponding
  1699. integer value *or* tag for a given MIB attribute
  1700. and value. The function will sense which direction
  1701. to perform the conversion. Various arg formats are
  1702. supported
  1703. =over
  1704. =item $val = SNMP::mapEnum($varbind);
  1705. where $varbind is SNMP::Varbind or equiv.
  1706. note: $varbind will be updated
  1707. =item $val = SNMP::mapEnum('ipForwarding', 'forwarding');
  1708. =item $val = SNMP::mapEnum('ipForwarding', 1);
  1709. =back
  1710. =back
  1711. =head1 Exported SNMP utility functions
  1712. Note: utility functions do not support async operation yet.
  1713. =over
  1714. =item &snmp_get()
  1715. takes args of SNMP::Session::new followed by those of
  1716. SNMP::Session::get
  1717. =item &snmp_getnext()
  1718. takes args of SNMP::Session::new followed by those of
  1719. SNMP::Session::getnext
  1720. =item &snmp_set()
  1721. takes args of SNMP::Session::new followed by those of
  1722. SNMP::Session::set
  1723. =item &snmp_trap()
  1724. takes args of SNMP::TrapSession::new followed by those of
  1725. SNMP::TrapSession::trap
  1726. =back
  1727. =head1 Trouble Shooting
  1728. If problems occur there are number areas to look at to narrow down the
  1729. possibilities.
  1730. The first step should be to test the UCD SNMP installation
  1731. independently from the Perl5 SNMP interface.
  1732. Try running the apps from the UCD SNMP distribution.
  1733. Make sure your agent (snmpd) is running and properly configured with
  1734. read-write access for the community you are using.
  1735. Ensure that your MIBs are installed and enviroment variables are set
  1736. appropriately (see man mib_api)
  1737. Be sure to remove old ucd-snmp installations and ensure headers and
  1738. libraries from old CMU installations are not being used by mistake.
  1739. If the problem occurs during compilation/linking check that the snmp
  1740. library being linked is actually the UCD SNMP library (there have been
  1741. name conflicts with existing snmp libs).
  1742. Also check that the header files are correct and up to date.
  1743. Sometimes compiling the UCD SNMP library with
  1744. 'position-independent-code' enabled is required (HPUX specifically).
  1745. If you cannot resolve the problem you can post to
  1746. comp.lang.perl.modules or
  1747. net-snmp-users@net-snmp-users@lists.sourceforge.net
  1748. please give sufficient information to analyze the problem (OS type,
  1749. versions for OS/Perl/UCD/compiler, complete error output, etc.)
  1750. =head1 Acknowledgements
  1751. Many thanks to all those who supplied patches, suggestions and
  1752. feedback.
  1753.  Joe Marzot (the original author)
  1754.  Wes Hardaker and the net-snmp-coders
  1755.  Dave Perkins
  1756.  Marcel Wiget
  1757.  David Blackburn
  1758.  John Stofell
  1759.  Gary Hayward
  1760.  Claire Harrison
  1761.  Achim Bohnet
  1762.  Doug Kingston
  1763.  Jacques Vidrine
  1764.  Carl Jacobsen
  1765.  Wayne Marquette
  1766.  Scott Schumate
  1767.  Michael Slifcak
  1768.  Srivathsan Srinivasagopalan
  1769.  Bill Fenner
  1770.  Jef Peeraer
  1771.  Daniel Hagerty
  1772.  Karl "Rat" Schilke and Electric Lightwave, Inc.
  1773.  Perl5 Porters
  1774.  Alex Burger
  1775. Apologies to any/all who's patch/feature/request was not mentioned or
  1776. included - most likely it was lost when paying work intruded on my
  1777. fun. Please try again if you do not see a desired feature. This may
  1778. actually turn out to be a decent package with such excellent help and
  1779. the fact that I have more time to work on it than in the past.
  1780. =head1 AUTHOR
  1781. bugs, comments, questions to net-snmp-users@lists.sourceforge.net
  1782. =head1 Copyright
  1783.      Copyright (c) 1995-2000 G. S. Marzot. All rights reserved.
  1784.      This program is free software; you can redistribute it and/or
  1785.      modify it under the same terms as Perl itself.
  1786.      Copyright (c) 2001-2002 Networks Associates Technology, Inc.  All
  1787.      Rights Reserved.  This program is free software; you can
  1788.      redistribute it and/or modify it under the same terms as Perl
  1789.      itself.
  1790. =cut