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

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * snmptranslate.c - report or translate info about oid from mibs
  3.  *
  4.  * Update: 1998-07-17 <jhy@gsu.edu>
  5.  * Added support for dumping alternate oid reports (-t and -T options).
  6.  * Added more detailed (useful?) usage info.
  7.  */
  8. /************************************************************************
  9. Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University
  10.                       All Rights Reserved
  11. Permission to use, copy, modify, and distribute this software and its 
  12. documentation for any purpose and without fee is hereby granted, 
  13. provided that the above copyright notice appear in all copies and that
  14. both that copyright notice and this permission notice appear in 
  15. supporting documentation, and that the name of CMU not be
  16. used in advertising or publicity pertaining to distribution of the
  17. software without specific, written prior permission.  
  18. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  19. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  20. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  21. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  23. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  24. SOFTWARE.
  25. ******************************************************************/
  26. #include <net-snmp/net-snmp-config.h>
  27. #if HAVE_STDLIB_H
  28. #include <stdlib.h>
  29. #endif
  30. #if HAVE_UNISTD_H
  31. #include <unistd.h>
  32. #endif
  33. #if HAVE_STRING_H
  34. #include <string.h>
  35. #else
  36. #include <strings.h>
  37. #endif
  38. #include <sys/types.h>
  39. #if HAVE_SYS_SELECT_H
  40. #include <sys/select.h>
  41. #endif
  42. #if HAVE_NETINET_IN_H
  43. #include <netinet/in.h>
  44. #endif
  45. #include <stdio.h>
  46. #include <ctype.h>
  47. #include <net-snmp/utilities.h>
  48. #if HAVE_WINSOCK_H
  49. #include <winsock.h>
  50. #endif
  51. #include <net-snmp/config_api.h>
  52. #include <net-snmp/output_api.h>
  53. #include <net-snmp/mib_api.h>
  54. int             show_all_matched_objects(FILE *, const char *, oid *,
  55.                                          size_t *, int, int);
  56. void
  57. usage(void)
  58. {
  59.     fprintf(stderr, "USAGE: snmptranslate [OPTIONS] OID [OID]...nn");
  60.     fprintf(stderr, "  Version:  %sn", netsnmp_get_version());
  61.     fprintf(stderr, "  Web:      http://www.net-snmp.org/n");
  62.     fprintf(stderr,
  63.             "  Email:    net-snmp-coders@lists.sourceforge.netnnOPTIONS:n");
  64.     fprintf(stderr, "  -htttdisplay this help messagen");
  65.     fprintf(stderr, "  -Vtttdisplay package version numbern");
  66.     fprintf(stderr,
  67.             "  -m MIB[:...]ttload given list of MIBs (ALL loads everything)n");
  68.     fprintf(stderr,
  69.             "  -M DIR[:...]ttlook in given list of directories for MIBsn");
  70.     fprintf(stderr,
  71.             "  -D TOKEN[,...]tturn on debugging output for the specified TOKENsnttt   (ALL gives extremely verbose debugging output)n");
  72.     fprintf(stderr, "  -w WIDTHttset width of tree and detail outputn");
  73.     fprintf(stderr,
  74.             "  -T TRANSOPTSttSet various options controlling report produced:n");
  75.     fprintf(stderr,
  76.             "ttt  B:  print all matching objects for a regex searchn");
  77.     fprintf(stderr, "ttt  d:  print full details of the given OIDn");
  78.     fprintf(stderr, "ttt  p:  print tree format symbol tablen");
  79.     fprintf(stderr, "ttt  a:  print ASCII format symbol tablen");
  80.     fprintf(stderr, "ttt  l:  enable labeled OID reportn");
  81.     fprintf(stderr, "ttt  o:  enable OID reportn");
  82.     fprintf(stderr, "ttt  s:  enable dotted symbolic reportn");
  83.     fprintf(stderr,
  84.             "ttt  t:  enable alternate format symbolic suffix reportn");
  85. #ifndef DISABLE_MIB_LOADING
  86.     fprintf(stderr,
  87.             "  -P MIBOPTSttToggle various defaults controlling mib parsing:n");
  88.     snmp_mib_toggle_options_usage("ttt  ", stderr);
  89. #endif /* DISABLE_MIB_LOADING */
  90.     fprintf(stderr,
  91.             "  -O OUTOPTSttToggle various defaults controlling output display:n");
  92.     snmp_out_toggle_options_usage("ttt  ", stderr);
  93.     fprintf(stderr,
  94.             "  -I INOPTSttToggle various defaults controlling input parsing:n");
  95.     snmp_in_toggle_options_usage("ttt  ", stderr);
  96.     fprintf(stderr,
  97.             "  -L LOGOPTSttToggle various defaults controlling logging:n");
  98.     snmp_log_options_usage("ttt  ", stderr);
  99.     exit(1);
  100. }
  101. int
  102. main(int argc, char *argv[])
  103. {
  104.     int             arg;
  105.     char           *current_name = NULL, *cp = NULL;
  106.     oid             name[MAX_OID_LEN];
  107.     size_t          name_length;
  108.     int             description = 0;
  109.     int             print = 0;
  110.     int             find_all = 0;
  111.     int             width = 1000000;
  112.     /*
  113.      * usage: snmptranslate name
  114.      */
  115.     while ((arg = getopt(argc, argv, "Vhm:M:w:D:P:T:O:I:L:")) != EOF) {
  116.         switch (arg) {
  117.         case 'h':
  118.             usage();
  119.             exit(1);
  120.         case 'm':
  121.             setenv("MIBS", optarg, 1);
  122.             break;
  123.         case 'M':
  124.             setenv("MIBDIRS", optarg, 1);
  125.             break;
  126.         case 'D':
  127.             debug_register_tokens(optarg);
  128.             snmp_set_do_debugging(1);
  129.             break;
  130.         case 'V':
  131.             fprintf(stderr, "NET-SNMP version: %sn",
  132.                     netsnmp_get_version());
  133.             exit(0);
  134.             break;
  135.         case 'w':
  136.     width = atoi(optarg);
  137.     if (width <= 0) {
  138. fprintf(stderr, "Invalid width specification: %sn", optarg);
  139. exit (1);
  140.     }
  141.     break;
  142. #ifndef DISABLE_MIB_LOADING
  143.         case 'P':
  144.             cp = snmp_mib_toggle_options(optarg);
  145.             if (cp != NULL) {
  146.                 fprintf(stderr, "Unknown parser option to -P: %c.n", *cp);
  147.                 usage();
  148.                 exit(1);
  149.             }
  150.             break;
  151. #endif /* DISABLE_MIB_LOADING */
  152.         case 'O':
  153.             cp = snmp_out_toggle_options(optarg);
  154.             if (cp != NULL) {
  155.                 fprintf(stderr, "Unknown OID option to -O: %c.n", *cp);
  156.                 usage();
  157.                 exit(1);
  158.             }
  159.             break;
  160.         case 'I':
  161.             cp = snmp_in_toggle_options(optarg);
  162.             if (cp != NULL) {
  163.                 fprintf(stderr, "Unknown OID option to -I: %c.n", *cp);
  164.                 usage();
  165.                 exit(1);
  166.             }
  167.             break;
  168.         case 'T':
  169.             for (cp = optarg; *cp; cp++) {
  170.                 switch (*cp) {
  171. #ifndef DISABLE_MIB_LOADING
  172.                 case 'l':
  173.                     print = 3;
  174.                     print_oid_report_enable_labeledoid();
  175.                     break;
  176.                 case 'o':
  177.                     print = 3;
  178.                     print_oid_report_enable_oid();
  179.                     break;
  180.                 case 's':
  181.                     print = 3;
  182.                     print_oid_report_enable_symbolic();
  183.                     break;
  184.                 case 't':
  185.                     print = 3;
  186.                     print_oid_report_enable_suffix();
  187.                     break;
  188. #endif /* DISABLE_MIB_LOADING */
  189.                 case 'd':
  190.                     description = 1;
  191.                     snmp_set_save_descriptions(1);
  192.                     break;
  193.                 case 'B':
  194.                     find_all = 1;
  195.                     break;
  196.                 case 'p':
  197.                     print = 1;
  198.                     break;
  199.                 case 'a':
  200.                     print = 2;
  201.                     break;
  202.                 default:
  203.                     fprintf(stderr, "Invalid -T<lostpad> character: %cn",
  204.                             *cp);
  205.                     usage();
  206.                     exit(1);
  207.                     break;
  208.                 }
  209.             }
  210.             break;
  211.         case 'L':
  212.             if (snmp_log_options(optarg, argc, argv) < 0) {
  213.                 return (-1);
  214.             }
  215.             break;
  216.         default:
  217.             fprintf(stderr, "invalid option: -%cn", arg);
  218.             usage();
  219.             exit(1);
  220.             break;
  221.         }
  222.     }
  223.     init_snmp("snmpapp");
  224.     if (optind < argc)
  225.         current_name = argv[optind];
  226.     if (current_name == NULL) {
  227.         switch (print) {
  228.         default:
  229.             usage();
  230.             exit(1);
  231. #ifndef DISABLE_MIB_LOADING
  232.         case 1:
  233.             print_mib_tree(stdout, get_tree_head(), width);
  234.             break;
  235.         case 2:
  236.             print_ascii_dump(stdout);
  237.             break;
  238.         case 3:
  239.             print_oid_report(stdout);
  240.             break;
  241. #endif /* DISABLE_MIB_LOADING */
  242.         }
  243.         exit(0);
  244.     }
  245.     do {
  246.         name_length = MAX_OID_LEN;
  247.         if (snmp_get_random_access()) {
  248. #ifndef DISABLE_MIB_LOADING
  249.             if (!get_node(current_name, name, &name_length)) {
  250. #endif /* DISABLE_MIB_LOADING */
  251.                 fprintf(stderr, "Unknown object identifier: %sn",
  252.                         current_name);
  253.                 exit(2);
  254. #ifndef DISABLE_MIB_LOADING
  255.             }
  256. #endif /* DISABLE_MIB_LOADING */
  257.         } else if (find_all) {
  258.             if (0 == show_all_matched_objects(stdout, current_name,
  259.                                               name, &name_length,
  260.                                               description, width)) {
  261.                 fprintf(stderr,
  262.                         "Unable to find a matching object identifier for "%s"n",
  263.                         current_name);
  264.                 exit(1);
  265.             }
  266.             exit(0);
  267.         } else if (netsnmp_ds_get_boolean(NETSNMP_DS_LIBRARY_ID, 
  268.   NETSNMP_DS_LIB_REGEX_ACCESS)) {
  269. #ifndef DISABLE_MIB_LOADING
  270.             if (0 == get_wild_node(current_name, name, &name_length)) {
  271. #endif /* DISABLE_MIB_LOADING */
  272.                 fprintf(stderr,
  273.                         "Unable to find a matching object identifier for "%s"n",
  274.                         current_name);
  275.                 exit(1);
  276. #ifndef DISABLE_MIB_LOADING
  277.             }
  278. #endif /* DISABLE_MIB_LOADING */
  279.         } else {
  280.             if (!read_objid(current_name, name, &name_length)) {
  281.                 snmp_perror(current_name);
  282.                 exit(2);
  283.             }
  284.         }
  285.         if (print == 1) {
  286. #ifndef DISABLE_MIB_LOADING
  287.             struct tree    *tp;
  288.             tp = get_tree(name, name_length, get_tree_head());
  289.             if (tp == NULL) {
  290. #endif /* DISABLE_MIB_LOADING */
  291.                 snmp_log(LOG_ERR,
  292.                         "Unable to find a matching object identifier for "%s"n",
  293.                         current_name);
  294.                 exit(1);
  295. #ifndef DISABLE_MIB_LOADING
  296.             }
  297.             print_mib_tree(stdout, tp, width);
  298. #endif /* DISABLE_MIB_LOADING */
  299.         } else {
  300.             print_objid(name, name_length);
  301.             if (description) {
  302. #ifndef DISABLE_MIB_LOADING
  303.                 print_description(name, name_length, width);
  304. #endif /* DISABLE_MIB_LOADING */
  305.             }
  306.         }
  307.         current_name = argv[++optind];
  308.         if (current_name != NULL)
  309.             printf("n");
  310.     } while (optind < argc);
  311.     return (0);
  312. }
  313. /*
  314.  * Show all object identifiers that match the pattern.
  315.  */
  316. int
  317. show_all_matched_objects(FILE * fp, const char *patmatch, oid * name, size_t * name_length, int f_desc, /* non-zero if descriptions should be shown */
  318.                          int width)
  319. {
  320.     int             result = 0, count = 0;
  321.     size_t          savlen = *name_length;
  322. #ifndef DISABLE_MIB_LOADING
  323.     clear_tree_flags(get_tree_head());
  324. #endif /* DISABLE_MIB_LOADING */
  325.     while (1) {
  326.         *name_length = savlen;
  327. #ifndef DISABLE_MIB_LOADING
  328.         result = get_wild_node(patmatch, name, name_length);
  329. #endif /* DISABLE_MIB_LOADING */
  330.         if (!result)
  331.             break;
  332.         count++;
  333.         fprint_objid(fp, name, *name_length);
  334. #ifndef DISABLE_MIB_LOADING
  335.         if (f_desc)
  336.             fprint_description(fp, name, *name_length, width);
  337. #endif /* DISABLE_MIB_LOADING */
  338.     }
  339.     return (count);
  340. }