snmp_auth.c
上传用户:cxs890
上传日期:2021-05-22
资源大小:347k
文件大小:6k
源码类别:

SNMP编程

开发平台:

C/C++

  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 <config.h>
  25. #ifdef KINETICS
  26. #include "gw.h"
  27. #include "fp4/cmdmacro.h"
  28. #endif
  29. #include <stdio.h>
  30. #if HAVE_STRING_H
  31. #include <string.h>
  32. #else
  33. #include <strings.h>
  34. #endif
  35. #include <sys/types.h>
  36. #if TIME_WITH_SYS_TIME
  37. # ifdef WIN32
  38. #  include <sys/timeb.h>
  39. # else
  40. #  include <time.h>
  41. # endif
  42. # include <time.h>
  43. #else
  44. # if HAVE_SYS_TIME_H
  45. #  include <sys/time.h>
  46. # else
  47. #  include <time.h>
  48. # endif
  49. #endif
  50. #if HAVE_SYS_SELECT_H
  51. #include <sys/select.h>
  52. #endif
  53. #if HAVE_NETINET_IN_H
  54. #include <netinet/in.h>
  55. #endif
  56. #if HAVE_ARPA_INET_H
  57. #include <arpa/inet.h>
  58. #endif
  59. #if HAVE_DMALLOC_H
  60. #include <dmalloc.h>
  61. #endif
  62. #if HAVE_WINSOCK_H
  63. #include <ip/socket.h>
  64. #endif
  65. #ifdef vms
  66. #include <ip/in.h>
  67. #endif
  68. #include "asn1.h"
  69. #include "snmp.h"
  70. #include "snmp_api.h"
  71. #include "snmp_impl.h"
  72. #include "mib.h"
  73. #include "md5.h"
  74. #include "system.h"
  75. #include "tools.h"
  76. #include "snmp_debug.h"
  77. #include "scapi.h"
  78. /*
  79.  * Globals.
  80.  */
  81. /*******************************************************************-o-******
  82.  * snmp_comstr_parse
  83.  *
  84.  * Parameters:
  85.  * *data (I)   Message.
  86.  * *length (I/O) Bytes left in message.
  87.  * *psid (O)   Community string.
  88.  * *slen (O)   Length of community string.
  89.  * *version (O)   Message version.
  90.  *      
  91.  * Returns:
  92.  * Pointer to the remainder of data.
  93.  *
  94.  *
  95.  * Parse the header of a community string-based message such as that found
  96.  * in SNMPv1 and SNMPv2c.
  97.  */
  98. u_char *
  99. snmp_comstr_parse(u_char *data,
  100.   size_t *length,
  101.   u_char *psid,
  102.   size_t *slen,
  103.   long *version)
  104. {
  105.     u_char    type;
  106.     long ver;
  107.     /* Message is an ASN.1 SEQUENCE.
  108.      */
  109.     data = asn_parse_sequence(data, length, &type,
  110.                         (ASN_SEQUENCE | ASN_CONSTRUCTOR), "auth message");
  111.     if (data == NULL){
  112.         return NULL;
  113.     }
  114.     /* First field is the version.
  115.      */
  116.     DEBUGDUMPHEADER("dump_recv", "Parsing SNMP versionn");
  117.     data = asn_parse_int(data, length, &type, &ver, sizeof(ver));
  118.     DEBUGINDENTLESS();
  119.     *version = ver;
  120.     if (data == NULL){
  121.         ERROR_MSG("bad parse of version");
  122.         return NULL;
  123.     }
  124.     /* second field is the community string for SNMPv1 & SNMPv2c */
  125.     DEBUGDUMPHEADER("dump_recv", "Parsing community stringn");
  126.     data = asn_parse_string(data, length, &type, psid, slen);
  127.     DEBUGINDENTLESS();
  128.     if (data == NULL){
  129.         ERROR_MSG("bad parse of community");
  130.         return NULL;
  131.     }
  132.     psid[*slen] = '';
  133.     return (u_char *)data;
  134. }  /* end snmp_comstr_parse() */
  135. /*******************************************************************-o-******
  136.  * snmp_comstr_build
  137.  *
  138.  * Parameters:
  139.  * *data
  140.  * *length
  141.  * *psid
  142.  * *slen
  143.  * *version
  144.  *  messagelen
  145.  *      
  146.  * Returns:
  147.  * Pointer into 'data' after built section.
  148.  *
  149.  *
  150.  * Build the header of a community string-based message such as that found
  151.  * in SNMPv1 and SNMPv2c.
  152.  *
  153.  * NOTE: The length of the message will have to be inserted later,
  154.  * if not known.
  155.  *
  156.  * NOTE: Version is an 'int'.  (CMU had it as a long, but was passing
  157.  * in a *int.  Grrr.)  Assign version to verfix and pass in
  158.  * that to asn_build_int instead which expects a long.  -- WH
  159.  */
  160. u_char *
  161. snmp_comstr_build( u_char *data,
  162. size_t *length,
  163. u_char *psid,
  164. size_t *slen,
  165. long *version,
  166. size_t messagelen)
  167. {
  168.     long  verfix  = *version;
  169.     u_char *h1  = data;
  170.     u_char *h1e;
  171.     size_t  hlength = *length;
  172.     /* Build the the message wrapper (note length will be inserted later).
  173.      */
  174.     data = asn_build_sequence(data, length, (u_char)(ASN_SEQUENCE | ASN_CONSTRUCTOR), 0);
  175.     if (data == NULL){
  176.         return NULL;
  177.     }
  178.     h1e = data;
  179.     /* Store the version field.
  180.      */
  181.     data = asn_build_int(data, length,
  182.             (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER),
  183.             &verfix, sizeof(verfix));
  184.     if (data == NULL){
  185.         return NULL;
  186.     }
  187.     /* Store the community string.
  188.      */
  189.     data = asn_build_string(data, length,
  190.             (u_char)(ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_OCTET_STR),
  191.             psid, *(u_char *)slen);
  192.     if (data == NULL){
  193.         return NULL;
  194.     }
  195.     /* Insert length.
  196.      */
  197.     asn_build_sequence(h1, &hlength, (u_char)(ASN_SEQUENCE | ASN_CONSTRUCTOR),
  198.                        data-h1e + messagelen);
  199.     return data;
  200. }  /* end snmp_comstr_build() */