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

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * snmp_auth.c
  3.  *
  4.  * Community name parse/build routines.
  5.  */
  6. /**********************************************************************
  7.     Copyright 1988, 1989, 1991, 1992 by Carnegie Mellon University
  8.  All Rights Reserved
  9. Permission to use, copy, modify, and distribute this software and its
  10. documentation for any purpose and without fee is hereby granted,
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in
  13. supporting documentation, and that the name of CMU not be
  14. used in advertising or publicity pertaining to distribution of the
  15. software without specific, written prior permission.
  16. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  17. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  18. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  19. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  21. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  22. SOFTWARE.
  23. ******************************************************************/
  24. #include <net-snmp/net-snmp-config.h>
  25. #ifdef KINETICS
  26. #include "gw.h"
  27. #include "fp4/cmdmacro.h"
  28. #endif
  29. #include <stdio.h>
  30. #if HAVE_STDLIB_H
  31. #include <stdlib.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 TIME_WITH_SYS_TIME
  40. # ifdef WIN32
  41. #  include <sys/timeb.h>
  42. # else
  43. #  include <sys/time.h>
  44. # endif
  45. # include <time.h>
  46. #else
  47. # if HAVE_SYS_TIME_H
  48. #  include <sys/time.h>
  49. # else
  50. #  include <time.h>
  51. # endif
  52. #endif
  53. #if HAVE_SYS_SELECT_H
  54. #include <sys/select.h>
  55. #endif
  56. #if HAVE_NETINET_IN_H
  57. #include <netinet/in.h>
  58. #endif
  59. #if HAVE_ARPA_INET_H
  60. #include <arpa/inet.h>
  61. #endif
  62. #if HAVE_DMALLOC_H
  63. #include <dmalloc.h>
  64. #endif
  65. #if HAVE_WINSOCK_H
  66. #include <winsock.h>
  67. #endif
  68. #ifdef vms
  69. #include <in.h>
  70. #endif
  71. #include <net-snmp/types.h>
  72. #include <net-snmp/output_api.h>
  73. #include <net-snmp/utilities.h>
  74. #include <net-snmp/library/asn1.h>
  75. #include <net-snmp/library/snmp_api.h>
  76. #include <net-snmp/library/mib.h>
  77. #include <net-snmp/library/md5.h>
  78. #include <net-snmp/library/scapi.h>
  79. /*
  80.  * Globals.
  81.  */
  82. #if !defined(DISABLE_SNMPV1) || !defined(DISABLE_SNMPV2C)
  83. /*******************************************************************-o-******
  84.  * snmp_comstr_parse
  85.  *
  86.  * Parameters:
  87.  * *data (I)   Message.
  88.  * *length (I/O) Bytes left in message.
  89.  * *psid (O)   Community string.
  90.  * *slen (O)   Length of community string.
  91.  * *version (O)   Message version.
  92.  *      
  93.  * Returns:
  94.  * Pointer to the remainder of data.
  95.  *
  96.  *
  97.  * Parse the header of a community string-based message such as that found
  98.  * in SNMPv1 and SNMPv2c.
  99.  */
  100. u_char         *
  101. snmp_comstr_parse(u_char * data,
  102.                   size_t * length,
  103.                   u_char * psid, size_t * slen, long *version)
  104. {
  105.     u_char          type;
  106.     long            ver;
  107.     size_t          origlen = *slen;
  108.     /*
  109.      * Message is an ASN.1 SEQUENCE.
  110.      */
  111.     data = asn_parse_sequence(data, length, &type,
  112.                               (ASN_SEQUENCE | ASN_CONSTRUCTOR),
  113.                               "auth message");
  114.     if (data == NULL) {
  115.         return NULL;
  116.     }
  117.     /*
  118.      * First field is the version.
  119.      */
  120.     DEBUGDUMPHEADER("recv", "SNMP version");
  121.     data = asn_parse_int(data, length, &type, &ver, sizeof(ver));
  122.     DEBUGINDENTLESS();
  123.     *version = ver;
  124.     if (data == NULL) {
  125.         ERROR_MSG("bad parse of version");
  126.         return NULL;
  127.     }
  128.     /*
  129.      * second field is the community string for SNMPv1 & SNMPv2c 
  130.      */
  131.     DEBUGDUMPHEADER("recv", "community string");
  132.     data = asn_parse_string(data, length, &type, psid, slen);
  133.     DEBUGINDENTLESS();
  134.     if (data == NULL) {
  135.         ERROR_MSG("bad parse of community");
  136.         return NULL;
  137.     }
  138.     psid[SNMP_MIN(*slen, origlen - 1)] = '';
  139.     return (u_char *) data;
  140. }                               /* end snmp_comstr_parse() */
  141. /*******************************************************************-o-******
  142.  * snmp_comstr_build
  143.  *
  144.  * Parameters:
  145.  * *data
  146.  * *length
  147.  * *psid
  148.  * *slen
  149.  * *version
  150.  *  messagelen
  151.  *      
  152.  * Returns:
  153.  * Pointer into 'data' after built section.
  154.  *
  155.  *
  156.  * Build the header of a community string-based message such as that found
  157.  * in SNMPv1 and SNMPv2c.
  158.  *
  159.  * NOTE: The length of the message will have to be inserted later,
  160.  * if not known.
  161.  *
  162.  * NOTE: Version is an 'int'.  (CMU had it as a long, but was passing
  163.  * in a *int.  Grrr.)  Assign version to verfix and pass in
  164.  * that to asn_build_int instead which expects a long.  -- WH
  165.  */
  166. u_char         *
  167. snmp_comstr_build(u_char * data,
  168.                   size_t * length,
  169.                   u_char * psid,
  170.                   size_t * slen, long *version, size_t messagelen)
  171. {
  172.     long            verfix = *version;
  173.     u_char         *h1 = data;
  174.     u_char         *h1e;
  175.     size_t          hlength = *length;
  176.     /*
  177.      * Build the the message wrapper (note length will be inserted later).
  178.      */
  179.     data =
  180.         asn_build_sequence(data, length,
  181.                            (u_char) (ASN_SEQUENCE | ASN_CONSTRUCTOR), 0);
  182.     if (data == NULL) {
  183.         return NULL;
  184.     }
  185.     h1e = data;
  186.     /*
  187.      * Store the version field.
  188.      */
  189.     data = asn_build_int(data, length,
  190.                          (u_char) (ASN_UNIVERSAL | ASN_PRIMITIVE |
  191.                                    ASN_INTEGER), &verfix, sizeof(verfix));
  192.     if (data == NULL) {
  193.         return NULL;
  194.     }
  195.     /*
  196.      * Store the community string.
  197.      */
  198.     data = asn_build_string(data, length,
  199.                             (u_char) (ASN_UNIVERSAL | ASN_PRIMITIVE |
  200.                                       ASN_OCTET_STR), psid,
  201.                             *(u_char *) slen);
  202.     if (data == NULL) {
  203.         return NULL;
  204.     }
  205.     /*
  206.      * Insert length.
  207.      */
  208.     asn_build_sequence(h1, &hlength,
  209.                        (u_char) (ASN_SEQUENCE | ASN_CONSTRUCTOR),
  210.                        data - h1e + messagelen);
  211.     return data;
  212. }                               /* end snmp_comstr_build() */
  213. #endif /* support for community based SNMP */