/* * snmptranslate.c - report or translate info about oid from mibs * * Update: 1998-07-17 * Added support for dumping alternate oid reports (-t and -T options). * Added more detailed (useful?) usage info. */ /************************************************************************ Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of CMU not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ #define DEPRECATED_CLI_OPTIONS #include #if HAVE_STDLIB_H #include #endif #if HAVE_UNISTD_H #include #endif #if HAVE_STRING_H #include #else #include #endif #include #if HAVE_SYS_SELECT_H #include #endif #if HAVE_NETINET_IN_H #include #endif #include #include #include #if HAVE_WINSOCK_H #include #endif #include "asn1.h" #include "snmp_api.h" #include "snmp_impl.h" #include "snmp_client.h" #include "parse.h" #include "mib.h" #include "snmp.h" #include "snmp_debug.h" #include "default_store.h" #include "system.h" #include "version.h" int show_all_matched_objects (FILE *, const char *, oid *, size_t *, int, int); void usage(void) { fprintf(stderr, "usage: snmptranslate [options] []\n\n"); fprintf(stderr, " -h\t\tPrint this help message.\n"); fprintf(stderr, " -V\t\tPrint snmptranslate version then exit.\n"); fprintf(stderr, " -m \tuse MIBS list instead of the default mib list.\n"); fprintf(stderr, " -D \n\t\tEnable snmplib debugging messages."); fprintf(stderr, " See snmpcmd(1) man page \n\t\tfor more information.\n" ); fprintf(stderr, " -M \tuse MIBDIRS as the location to look for mibs.\n"); fprintf(stderr, " -w \twidth of tree and detail print output\n"); fprintf(stderr, " -T Print one or more MIB symbol reports.\n"); fprintf(stderr, " \t\tTRANSOPTS values:\n"); fprintf(stderr, " \t\t B: Print all matching objects for a regex search.\n"); fprintf(stderr, " \t\t d: Print full details of the given OID.\n"); fprintf(stderr, " \t\t p: Print tree format symbol table.\n"); fprintf(stderr, " \t\t a: Print ascii format symbol table.\n"); fprintf(stderr, " \t\t l: Enable labeled OID report.\n"); fprintf(stderr, " \t\t o: Enable OID report.\n"); fprintf(stderr, " \t\t s: Enable dotted symbolic report.\n"); fprintf(stderr, " \t\t t: Enable alternately formatted symbolic suffix report.\n"); fprintf(stderr, " -P \tToggle various defaults controlling mib parsing:\n"); snmp_mib_toggle_options_usage("\t\t", stderr); fprintf(stderr, " -O \tToggle various defaults controlling output display:\n"); snmp_out_toggle_options_usage("\t\t", stderr); fprintf(stderr, " -I \tToggle various defaults controlling input parsing:\n"); snmp_in_toggle_options_usage("\t\t", stderr); exit(1); } int main(int argc, char *argv[]) { int arg; char *current_name = NULL, *cp = NULL; oid name[MAX_OID_LEN]; size_t name_length; int description = 0; int print = 0; int find_all = 0; int width = 1000000; char n_opt[] = "n"; /* * usage: snmptranslate name */ snmp_out_toggle_options(n_opt); #ifndef DEPRECATED_CLI_OPTIONS while ((arg = getopt(argc, argv, "VhndrRwWptafsSm:M:D:P:T:O:I:")) != EOF){ #else while ((arg = getopt(argc, argv, "Vhm:M:w:D:P:T:O:I:")) != EOF){ #endif switch(arg) { case 'h': usage(); exit(1); #ifndef DEPRECATED_CLI_OPTIONS case 'n': fprintf(stderr, "Warning: -n option is deprecated - use -On\n"); snmp_out_toggle_options(n_opt); break; case 'd': fprintf(stderr, "Warning: -d option is deprecated - use -Td\n"); description = 1; snmp_set_save_descriptions(1); break; case 'r': case 'R': fprintf(stderr, "Warning: -%c option is deprecated - use -IR\n", arg); snmp_set_random_access(1); break; case 'w': fprintf(stderr, "Warning: -w option is deprecated - use -Pw\n"); snmp_set_mib_warnings(1); break; case 'W': fprintf(stderr, "Warning: -W option is deprecated - use -PW\n"); snmp_set_mib_warnings(2); break; case 'p': fprintf(stderr, "Warning: -p option is deprecated - use -Tp\n"); print = 1; break; case 't': fprintf(stderr, "Warning: -t option is deprecated - use -Tt\n"); print = 3; print_oid_report_enable_suffix(); break; case 'a': fprintf(stderr, "Warning: -a option is deprecated - use -Ta\n"); print = 2; break; case 'f': fprintf(stderr, "Warning: -f option is deprecated - use -Of\n"); snmp_set_full_objid(1); break; case 's': fprintf(stderr, "Warning: -s option is deprecated - use -Os\n"); snmp_set_suffix_only(1); break; case 'S': fprintf(stderr, "Warning: -S option is deprecated - use -OS\n"); snmp_set_suffix_only(2); break; #endif /* DEPRECATED_CLI_OPTIONS */ case 'm': setenv("MIBS", optarg, 1); break; case 'M': setenv("MIBDIRS", optarg, 1); break; #ifdef DEPRECATED_CLI_OPTIONS case 'w': width = atoi(optarg); if (width <= 0) { fprintf(stderr, "Invalid width specification: %s\n", optarg); exit (1); } break; #endif case 'D': debug_register_tokens(optarg); snmp_set_do_debugging(1); break; case 'V': fprintf(stderr,"UCD-snmp version: %s\n", VersionInfo); exit(0); break; case 'P': cp = snmp_mib_toggle_options(optarg); if (cp != NULL) { fprintf(stderr,"Unknown parser option to -P: %c.\n", *cp); usage(); exit(1); } break; case 'O': cp = snmp_out_toggle_options(optarg); if (cp != NULL) { fprintf(stderr, "Unknown OID option to -O: %c.\n", *cp); usage(); exit(1); } break; case 'I': cp = snmp_in_toggle_options(optarg); if (cp != NULL) { fprintf(stderr, "Unknown OID option to -I: %c.\n", *cp); usage(); exit(1); } break; case 'T': for(cp = optarg; *cp; cp++) { switch(*cp) { case 'l': print = 3; print_oid_report_enable_labeledoid(); break; case 'o': print = 3; print_oid_report_enable_oid(); break; case 's': print = 3; print_oid_report_enable_symbolic(); break; case 't': print = 3; print_oid_report_enable_suffix(); break; case 'd': description = 1; snmp_set_save_descriptions(1); break; case 'B': find_all = 1; break; case 'p': print = 1; break; case 'a': print = 2; break; default: fprintf(stderr,"Invalid -T character: %c\n", *cp); usage(); exit(1); break; } } break; default: fprintf(stderr,"invalid option: -%c\n", arg); usage(); exit(1); break; } } if (optind < argc) current_name = argv[optind]; init_snmp("snmpapp"); if (current_name == NULL) { switch (print) { default: usage(); exit(1); case 1: print_mib_tree (stdout, get_tree_head(), width); break; case 2: print_ascii_dump (stdout); break; case 3: print_oid_report (stdout); break; } exit (0); } do { name_length = MAX_OID_LEN; if (snmp_get_random_access()){ if (!get_node(current_name, name, &name_length)){ fprintf(stderr, "Unknown object identifier: %s\n", current_name); exit(2); } } else if (find_all) { if (0 == show_all_matched_objects(stdout, current_name, name, &name_length, description, width)) { fprintf(stderr, "Unable to find a matching object identifier for \"%s\"\n", current_name); exit(1); } exit(0); } else if (ds_get_boolean(DS_LIBRARY_ID, DS_LIB_REGEX_ACCESS)) { if (0 == get_wild_node(current_name, name, &name_length)) { fprintf(stderr, "Unable to find a matching object identifier for \"%s\"\n", current_name); exit(1); } } else { if (!read_objid(current_name, name, &name_length)){ snmp_perror(current_name); exit(2); } } if (print == 1) { struct tree *tp; tp = get_tree(name, name_length, get_tree_head()); print_mib_tree (stdout, tp, width); } else { print_objid(name, name_length); if (description){ print_description(name, name_length, width); } } current_name = argv[++optind]; if( current_name != NULL ) printf("\n"); } while( optind < argc ); return (0); } /* * Show all object identifiers that match the pattern. */ int 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 */ int width) { int result, count = 0; size_t savlen = *name_length; clear_tree_flags(get_tree_head()); while (1) { *name_length = savlen; result = get_wild_node(patmatch, name, name_length); if (!result) break; count ++; fprint_objid(fp, name, *name_length); if (f_desc) fprint_description(fp, name, *name_length, width); } return (count); }