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

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * snmpbulkget.c - send SNMPv2 Bulk requests to a network entity.
  3.  *
  4.  */
  5. /*********************************************************************
  6. Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University
  7.                       All Rights Reserved
  8. Permission to use, copy, modify, and distribute this software and its 
  9. documentation for any purpose and without fee is hereby granted, 
  10. provided that the above copyright notice appear in all copies and that
  11. both that copyright notice and this permission notice appear in 
  12. supporting documentation, and that the name of CMU not be
  13. used in advertising or publicity pertaining to distribution of the
  14. software without specific, written prior permission.  
  15. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22. **********************************************************************/
  23. #include <net-snmp/net-snmp-config.h>
  24. #if HAVE_STDLIB_H
  25. #include <stdlib.h>
  26. #endif
  27. #if HAVE_UNISTD_H
  28. #include <unistd.h>
  29. #endif
  30. #if HAVE_STRING_H
  31. #include <string.h>
  32. #else
  33. #include <strings.h>
  34. #endif
  35. #include <net-snmp/utilities.h>
  36. #include <sys/types.h>
  37. #if HAVE_NETINET_IN_H
  38. #include <netinet/in.h>
  39. #endif
  40. #if TIME_WITH_SYS_TIME
  41. # ifdef WIN32
  42. #  include <sys/timeb.h>
  43. # else
  44. #  include <sys/time.h>
  45. # endif
  46. # include <time.h>
  47. #else
  48. # if HAVE_SYS_TIME_H
  49. #  include <sys/time.h>
  50. # else
  51. #  include <time.h>
  52. # endif
  53. #endif
  54. #if HAVE_SYS_SELECT_H
  55. #include <sys/select.h>
  56. #endif
  57. #include <stdio.h>
  58. #include <ctype.h>
  59. #if HAVE_WINSOCK_H
  60. #include <winsock.h>
  61. #endif
  62. #if HAVE_NETDB_H
  63. #include <netdb.h>
  64. #endif
  65. #if HAVE_ARPA_INET_H
  66. #include <arpa/inet.h>
  67. #endif
  68. #include <net-snmp/net-snmp-includes.h>
  69. oid             objid_mib[] = { 1, 3, 6, 1, 2, 1 };
  70. int             max_repetitions = 10;
  71. int             non_repeaters = 0;
  72. struct nameStruct {
  73.     oid             name[MAX_OID_LEN];
  74.     size_t          name_len;
  75. }              *name, *namep;
  76. int             names;
  77. void
  78. usage(void)
  79. {
  80.     fprintf(stderr, "USAGE: snmpbulkget ");
  81.     snmp_parse_args_usage(stderr);
  82.     fprintf(stderr, " OID [OID]...nn");
  83.     snmp_parse_args_descriptions(stderr);
  84.     fprintf(stderr,
  85.             "  -C APPOPTSttSet various application specific behaviours:n");
  86.     fprintf(stderr, "ttt  n<NUM>:  set non-repeaters to <NUM>n");
  87.     fprintf(stderr, "ttt  r<NUM>:  set max-repeaters to <NUM>n");
  88. }
  89. static
  90.     void
  91. optProc(int argc, char *const *argv, int opt)
  92. {
  93.     char           *endptr = NULL;
  94.     switch (opt) {
  95.     case 'C':
  96.         while (*optarg) {
  97.             switch (*optarg++) {
  98.             case 'n':
  99.             case 'r':
  100.                 if (*(optarg - 1) == 'r') {
  101.                     max_repetitions = strtol(optarg, &endptr, 0);
  102.                 } else {
  103.                     non_repeaters = strtol(optarg, &endptr, 0);
  104.                 }
  105.                 if (endptr == optarg) {
  106.                     /*
  107.                      * No number given -- error.  
  108.                      */
  109.                     usage();
  110.                     exit(1);
  111.                 } else {
  112.                     optarg = endptr;
  113.                     if (isspace(*optarg)) {
  114.                         return;
  115.                     }
  116.                 }
  117.                 break;
  118.             default:
  119.                 fprintf(stderr, "Unknown flag passed to -C: %cn",
  120.                         optarg[-1]);
  121.                 exit(1);
  122.             }
  123.         }
  124.     }
  125. }
  126. int
  127. main(int argc, char *argv[])
  128. {
  129.     netsnmp_session session, *ss;
  130.     netsnmp_pdu    *pdu;
  131.     netsnmp_pdu    *response;
  132.     netsnmp_variable_list *vars;
  133.     int             arg;
  134.     int             count;
  135.     int             running;
  136.     int             status;
  137.     int             exitval = 0;
  138.     /*
  139.      * get the common command line arguments 
  140.      */
  141.     switch (arg = snmp_parse_args(argc, argv, &session, "C:", optProc)) {
  142.     case -2:
  143.         exit(0);
  144.     case -1:
  145.         usage();
  146.         exit(1);
  147.     default:
  148.         break;
  149.     }
  150.     names = argc - arg;
  151.     if (names < non_repeaters) {
  152.         fprintf(stderr, "snmpbulkget: need more objects than <nonrep>n");
  153.         exit(1);
  154.     }
  155.     namep = name = (struct nameStruct *) calloc(names, sizeof(*name));
  156.     while (arg < argc) {
  157.         namep->name_len = MAX_OID_LEN;
  158.         if (snmp_parse_oid(argv[arg], namep->name, &namep->name_len) ==
  159.             NULL) {
  160.             snmp_perror(argv[arg]);
  161.             exit(1);
  162.         }
  163.         arg++;
  164.         namep++;
  165.     }
  166.     SOCK_STARTUP;
  167.     /*
  168.      * open an SNMP session 
  169.      */
  170.     ss = snmp_open(&session);
  171.     if (ss == NULL) {
  172.         /*
  173.          * diagnose snmp_open errors with the input netsnmp_session pointer 
  174.          */
  175.         snmp_sess_perror("snmpbulkget", &session);
  176.         SOCK_CLEANUP;
  177.         exit(1);
  178.     }
  179.     /*
  180.      * create PDU for GETBULK request and add object name to request 
  181.      */
  182.     pdu = snmp_pdu_create(SNMP_MSG_GETBULK);
  183.     pdu->non_repeaters = non_repeaters;
  184.     pdu->max_repetitions = max_repetitions;     /* fill the packet */
  185.     for (arg = 0; arg < names; arg++)
  186.         snmp_add_null_var(pdu, name[arg].name, name[arg].name_len);
  187.     /*
  188.      * do the request 
  189.      */
  190.     status = snmp_synch_response(ss, pdu, &response);
  191.     if (status == STAT_SUCCESS) {
  192.         if (response->errstat == SNMP_ERR_NOERROR) {
  193.             /*
  194.              * check resulting variables 
  195.              */
  196.             for (vars = response->variables; vars;
  197.                  vars = vars->next_variable)
  198.                 print_variable(vars->name, vars->name_length, vars);
  199.         } else {
  200.             /*
  201.              * error in response, print it 
  202.              */
  203.             running = 0;
  204.             if (response->errstat == SNMP_ERR_NOSUCHNAME) {
  205.                 printf("End of MIB.n");
  206.             } else {
  207.                 fprintf(stderr, "Error in packet.nReason: %sn",
  208.                         snmp_errstring(response->errstat));
  209.                 if (response->errindex != 0) {
  210.                     fprintf(stderr, "Failed object: ");
  211.                     for (count = 1, vars = response->variables;
  212.                          vars && (count != response->errindex);
  213.                          vars = vars->next_variable, count++)
  214.                         /*EMPTY*/;
  215.                     if (vars)
  216.                         fprint_objid(stderr, vars->name,
  217.                                      vars->name_length);
  218.                     fprintf(stderr, "n");
  219.                 }
  220.                 exitval = 2;
  221.             }
  222.         }
  223.     } else if (status == STAT_TIMEOUT) {
  224.         fprintf(stderr, "Timeout: No Response from %sn",
  225.                 session.peername);
  226.         running = 0;
  227.         exitval = 1;
  228.     } else {                    /* status == STAT_ERROR */
  229.         snmp_sess_perror("snmpbulkget", ss);
  230.         running = 0;
  231.         exitval = 1;
  232.     }
  233.     if (response)
  234.         snmp_free_pdu(response);
  235.     snmp_close(ss);
  236.     SOCK_CLEANUP;
  237.     return exitval;
  238. }