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

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: snmp_rip2.c,v 5.0 2002/04/20 07:30:06 hardaker Exp $ 
  3.  */
  4. /*
  5.  * Smux module authored by Rohit Dube.
  6.  */
  7. #include <net-snmp/net-snmp-config.h>
  8. #include <stdio.h>
  9. #if HAVE_STDLIB_H
  10. #include <stdlib.h>
  11. #endif
  12. #if HAVE_STRING_H
  13. #include <string.h>
  14. #else
  15. #include <strings.h>
  16. #endif
  17. #if HAVE_UNISTD_H
  18. #include <unistd.h>
  19. #endif
  20. #if HAVE_ERR_H
  21. #include <err.h>
  22. #endif
  23. #if TIME_WITH_SYS_TIME
  24. # include <sys/time.h>
  25. # include <time.h>
  26. #else
  27. # if HAVE_SYS_TIME_H
  28. #  include <sys/time.h>
  29. # else
  30. #  include <time.h>
  31. # endif
  32. #endif
  33. #include <errno.h>
  34. #include <netdb.h>
  35. #include <sys/stat.h>
  36. #include <sys/socket.h>
  37. #if HAVE_SYS_FILIO_H
  38. #include <sys/filio.h>
  39. #endif
  40. #if HAVE_NETINET_IN_H
  41. #include <netinet/in.h>
  42. #endif
  43. #include <net-snmp/net-snmp-includes.h>
  44. #include <net-snmp/agent/net-snmp-agent-includes.h>
  45. #include "smux.h"
  46. #include "snmp_rip2.h"
  47. static oid      max_rip_mib[] =
  48.     { 1, 3, 6, 1, 2, 1, 23, 3, 1, 9, 255, 255, 255, 255 };
  49. static oid      min_rip_mib[] = { 1, 3, 6, 1, 2, 1, 23, 1, 1, 0 };
  50. extern u_char   smux_type;
  51. struct variable13 rip2_variables[] = {
  52.     {RIP2GLOBALROUTECHANGES, ASN_COUNTER, RONLY, var_rip2, 2, {1, 1}},
  53.     {RIP2GLOBALQUERIES, ASN_COUNTER, RONLY, var_rip2, 2, {1, 2}},
  54.     {RIP2IFSTATADDRESS, ASN_IPADDRESS, RONLY, var_rip2, 3, {2, 1, 1}},
  55.     {RIP2IFSTATRCVBADPKTS, ASN_COUNTER, RONLY, var_rip2, 3, {2, 1, 2}},
  56.     {RIP2IFSTATRCVBADROUTES, ASN_COUNTER, RONLY, var_rip2, 3, {2, 1, 3}},
  57.     {RIP2IFSTATSENTUPDATES, ASN_COUNTER, RONLY, var_rip2, 3, {2, 1, 4}},
  58.     {RIP2IFSTATSTATUS, ASN_INTEGER, RWRITE, var_rip2, 3, {2, 1, 5}},
  59.     {RIP2IFCONFADDRESS, ASN_IPADDRESS, RONLY, var_rip2, 3, {3, 1, 1}},
  60.     {RIP2IFCONFDOMAIN, ASN_OCTET_STR, RWRITE, var_rip2, 3, {3, 1, 2}},
  61.     {RIP2IFCONFAUTHTYPE, ASN_INTEGER, RWRITE, var_rip2, 3, {3, 1, 3}},
  62.     {RIP2IFCONFAUTHKEY, ASN_OCTET_STR, RWRITE, var_rip2, 3, {3, 1, 4}},
  63.     {RIP2IFCONFSEND, ASN_INTEGER, RWRITE, var_rip2, 3, {3, 1, 5}},
  64.     {RIP2IFCONFRECEIVE, ASN_INTEGER, RWRITE, var_rip2, 3, {3, 1, 6}},
  65.     {RIP2IFCONFDEFAULTMETRIC, ASN_INTEGER, RWRITE, var_rip2, 3, {3, 1, 7}},
  66.     {RIP2IFCONFSTATUS, ASN_INTEGER, RWRITE, var_rip2, 3, {3, 1, 8}},
  67.     {RIP2IFCONFSRCADDRESS, ASN_IPADDRESS, RWRITE, var_rip2, 3, {3, 1, 9}},
  68.     {RIP2PEERADDRESS, ASN_IPADDRESS, RONLY, var_rip2, 3, {4, 1, 1}},
  69.     {RIP2PEERDOMAIN, ASN_OCTET_STR, RONLY, var_rip2, 3, {4, 1, 2}},
  70.     {RIP2PEERLASTUPDATE, ASN_TIMETICKS, RONLY, var_rip2, 3, {4, 1, 3}},
  71.     {RIP2PEERVERSION, ASN_INTEGER, RONLY, var_rip2, 3, {4, 1, 4}},
  72.     {RIP2PEERRCVBADPKTS, ASN_COUNTER, RONLY, var_rip2, 3, {4, 1, 5}},
  73.     {RIP2PEERRCVBADROUTES, ASN_COUNTER, RONLY, var_rip2, 3, {4, 1, 6}}
  74. };
  75. oid             rip2_variables_oid[] = { MIB, 23 };
  76. void
  77. init_snmp_rip2(void)
  78. {
  79.     REGISTER_MIB("smux/snmp_rip2", rip2_variables, variable13,
  80.                  rip2_variables_oid);
  81. }
  82. u_char         *
  83. var_rip2(struct variable *vp,
  84.          oid * name,
  85.          int *length, int exact, int *var_len, WriteMethod ** write_method)
  86. {
  87.     u_char         *var;
  88.     int             result;
  89.     DEBUGMSGTL(("smux/snmp_rip2",
  90.                 "[var_rip2] var len %d, oid requested Len %d-", *var_len,
  91.                 *length));
  92.     DEBUGMSGOID(("smux/snmp_rip2", name, *length));
  93.     DEBUGMSG(("smux/snmp_rip2", "n"));
  94.     /*
  95.      * Pass on the request to Gated.
  96.      * If the request sent out was a get next, check to see if
  97.      * it lies in the rip2 range. If it doesn't, return NULL.
  98.      * In either case, make sure that errors are checked on the
  99.      * returned packets.
  100.      */
  101.     /*
  102.      * No writes for now 
  103.      */
  104.     *write_method = NULL;
  105.     /*
  106.      * Donot allow access to the peer stuff as it crashes gated.
  107.      * However A GetNext on the last 23.3.1.9 variable will force gated into
  108.      * the peer stuff and cause it to crash.
  109.      * The only way to fix this is to either solve the Gated problem, or 
  110.      * remove the peer variables from Gated itself and cause it to return
  111.      * NULL at the crossing. Currently doing the later.
  112.      */
  113.     /*
  114.      * Reject GET and GETNEXT for anything above rip2ifconf range 
  115.      */
  116.     result = snmp_oid_compare(name, *length, max_rip_mib,
  117.                               sizeof(max_rip_mib) / sizeof(u_int));
  118.     if (result >= 0) {
  119.         DEBUGMSGTL(("smux/snmp_rip2", "Over shotn"));
  120.         return NULL;
  121.     }
  122.     /*
  123.      * for GETs we need to be in the rip2 range so reject anything below 
  124.      */
  125.     result = snmp_oid_compare(name, *length, min_rip_mib,
  126.                               sizeof(min_rip_mib) / sizeof(u_int));
  127.     if (exact && (result < 0)) {
  128.         DEBUGMSGTL(("smux/snmp_rip2",
  129.                     "Exact but doesn't match length %d, size %dn",
  130.                     *length, sizeof(min_rip_mib)));
  131.         return NULL;
  132.     }
  133.     /*
  134.      * On return, 'var' points to the value returned which is of length
  135.      * '*var_len'. 'name' points to the new (same as the one passed in for 
  136.      * GETs) oid which has 'length' suboids.
  137.      * 'smux_type' contains the type of the variable.
  138.      */
  139.     var = smux_snmp_process(exact, name, length, var_len);
  140.     DEBUGMSGTL(("smux/snmp_rip2",
  141.                 "[var_rip2] var len %d, oid obtained Len %d-", *var_len,
  142.                 *length));
  143.     DEBUGMSGOID(("smux/snmp_rip2", name, *length));
  144.     DEBUGMSG(("smux/snmp_rip2", "n"));
  145.     vp->type = smux_type;
  146.     /*
  147.      * XXX Need a mechanism to return errors in gated's responses 
  148.      */
  149.     if (var == NULL)
  150.         return NULL;
  151.     /*
  152.      * Any resullt returned should be within the rip2 tree.
  153.      * rip_mib - static u_int rip_mib[] = {1, 3, 6, 1, 2, 1, 23};
  154.      */
  155.     if (memcmp(rip_mib, name, sizeof(rip_mib)) != 0) {
  156.         return NULL;
  157.     } else {
  158.         return var;
  159.     }
  160. }