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

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef ASN1_H
  2. #define ASN1_H
  3. #ifdef __cplusplus
  4. extern          "C" {
  5. #endif
  6. #define PARSE_PACKET 0
  7. #define DUMP_PACKET 1
  8.     /*
  9.      * Definitions for Abstract Syntax Notation One, ASN.1
  10.      * As defined in ISO/IS 8824 and ISO/IS 8825
  11.      *
  12.      *
  13.      */
  14. /***********************************************************
  15. Copyright 1988, 1989 by Carnegie Mellon University
  16.                       All Rights Reserved
  17. Permission to use, copy, modify, and distribute this software and its 
  18. documentation for any purpose and without fee is hereby granted, 
  19. provided that the above copyright notice appear in all copies and that
  20. both that copyright notice and this permission notice appear in 
  21. supporting documentation, and that the name of CMU not be
  22. used in advertising or publicity pertaining to distribution of the
  23. software without specific, written prior permission.  
  24. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  25. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  26. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  27. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  28. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  29. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  30. SOFTWARE.
  31. ******************************************************************/
  32. #ifndef MAX_SUBID               /* temporary - duplicate definition protection */
  33. #ifndef EIGHTBIT_SUBIDS
  34.     typedef u_long  oid;
  35. #define MAX_SUBID   0xFFFFFFFF
  36. #else
  37.     typedef u_char  oid;
  38. #define MAX_SUBID   0xFF
  39. #endif
  40. #endif
  41. #define MIN_OID_LEN     2
  42. #define MAX_OID_LEN     128 /* max subid's in an oid */
  43. #ifndef MAX_NAME_LEN            /* conflicts with some libraries */
  44. #define MAX_NAME_LEN     MAX_OID_LEN /* obsolete. use MAX_OID_LEN */
  45. #endif
  46. #define OID_LENGTH(x)  (sizeof(x)/sizeof(oid))
  47. #define ASN_BOOLEAN     ((u_char)0x01)
  48. #define ASN_INTEGER     ((u_char)0x02)
  49. #define ASN_BIT_STR     ((u_char)0x03)
  50. #define ASN_OCTET_STR     ((u_char)0x04)
  51. #define ASN_NULL     ((u_char)0x05)
  52. #define ASN_OBJECT_ID     ((u_char)0x06)
  53. #define ASN_SEQUENCE     ((u_char)0x10)
  54. #define ASN_SET     ((u_char)0x11)
  55. #define ASN_UNIVERSAL     ((u_char)0x00)
  56. #define ASN_APPLICATION     ((u_char)0x40)
  57. #define ASN_CONTEXT     ((u_char)0x80)
  58. #define ASN_PRIVATE     ((u_char)0xC0)
  59. #define ASN_PRIMITIVE     ((u_char)0x00)
  60. #define ASN_CONSTRUCTOR     ((u_char)0x20)
  61. #define ASN_LONG_LEN     (0x80)
  62. #define ASN_EXTENSION_ID    (0x1F)
  63. #define ASN_BIT8     (0x80)
  64. #define IS_CONSTRUCTOR(byte) ((byte) & ASN_CONSTRUCTOR)
  65. #define IS_EXTENSION_ID(byte) (((byte) & ASN_EXTENSION_ID) == ASN_EXTENSION_ID)
  66.     struct counter64 {
  67.         u_long          high;
  68.         u_long          low;
  69.     };
  70. #ifdef OPAQUE_SPECIAL_TYPES
  71.     typedef struct counter64 integer64;
  72.     typedef struct counter64 unsigned64;
  73.     /*
  74.      * The BER inside an OPAQUE is an context specific with a value of 48 (0x30)
  75.      * plus the "normal" tag. For a Counter64, the tag is 0x46 (i.e., an
  76.      * applications specific tag with value 6). So the value for a 64 bit
  77.      * counter is 0x46 + 0x30, or 0x76 (118 base 10). However, values
  78.      * greater than 30 can not be encoded in one octet. So the first octet
  79.      * has the class, in this case context specific (ASN_CONTEXT), and
  80.      * the special value (i.e., 31) to indicate that the real value follows
  81.      * in one or more octets. The high order bit of each following octet
  82.      * indicates if the value is encoded in additional octets. A high order
  83.      * bit of zero, indicates the last. For this "hack", only one octet
  84.      * will be used for the value. 
  85.      */
  86.     /*
  87.      * first octet of the tag 
  88.      */
  89. #define ASN_OPAQUE_TAG1 (ASN_CONTEXT | ASN_EXTENSION_ID)
  90.     /*
  91.      * base value for the second octet of the tag - the
  92.      * second octet was the value for the tag 
  93.      */
  94. #define ASN_OPAQUE_TAG2 ((u_char)0x30)
  95. #define ASN_OPAQUE_TAG2U ((u_char)0x2f) /* second octet of tag for union */
  96.     /*
  97.      * All the ASN.1 types for SNMP "should have been" defined in this file,
  98.      * but they were not. (They are defined in snmp_impl.h)  Thus, the tag for
  99.      * Opaque and Counter64 is defined, again, here with a different names. 
  100.      */
  101. #define ASN_APP_OPAQUE (ASN_APPLICATION | 4)
  102. #define ASN_APP_COUNTER64 (ASN_APPLICATION | 6)
  103. #define ASN_APP_FLOAT (ASN_APPLICATION | 8)
  104. #define ASN_APP_DOUBLE (ASN_APPLICATION | 9)
  105. #define ASN_APP_I64 (ASN_APPLICATION | 10)
  106. #define ASN_APP_U64 (ASN_APPLICATION | 11)
  107. #define ASN_APP_UNION (ASN_PRIVATE | 1) /* or ASN_PRIV_UNION ? */
  108.     /*
  109.      * value for Counter64 
  110.      */
  111. #define ASN_OPAQUE_COUNTER64 (ASN_OPAQUE_TAG2 + ASN_APP_COUNTER64)
  112.     /*
  113.      * max size of BER encoding of Counter64 
  114.      */
  115. #define ASN_OPAQUE_COUNTER64_MX_BER_LEN 12
  116.     /*
  117.      * value for Float 
  118.      */
  119. #define ASN_OPAQUE_FLOAT (ASN_OPAQUE_TAG2 + ASN_APP_FLOAT)
  120.     /*
  121.      * size of BER encoding of Float 
  122.      */
  123. #define ASN_OPAQUE_FLOAT_BER_LEN 7
  124.     /*
  125.      * value for Double 
  126.      */
  127. #define ASN_OPAQUE_DOUBLE (ASN_OPAQUE_TAG2 + ASN_APP_DOUBLE)
  128.     /*
  129.      * size of BER encoding of Double 
  130.      */
  131. #define ASN_OPAQUE_DOUBLE_BER_LEN 11
  132.     /*
  133.      * value for Integer64 
  134.      */
  135. #define ASN_OPAQUE_I64 (ASN_OPAQUE_TAG2 + ASN_APP_I64)
  136.     /*
  137.      * max size of BER encoding of Integer64 
  138.      */
  139. #define ASN_OPAQUE_I64_MX_BER_LEN 11
  140.     /*
  141.      * value for Unsigned64 
  142.      */
  143. #define ASN_OPAQUE_U64 (ASN_OPAQUE_TAG2 + ASN_APP_U64)
  144.     /*
  145.      * max size of BER encoding of Unsigned64 
  146.      */
  147. #define ASN_OPAQUE_U64_MX_BER_LEN 12
  148. #endif                          /* OPAQUE_SPECIAL_TYPES */
  149. #define ASN_PRIV_INCL_RANGE (ASN_PRIVATE | 2)
  150. #define ASN_PRIV_EXCL_RANGE (ASN_PRIVATE | 3)
  151. #define ASN_PRIV_DELEGATED  (ASN_PRIVATE | 5)
  152. #define ASN_PRIV_IMPLIED_OCTET_STR  (ASN_PRIVATE | ASN_OCTET_STR)       /* 4 */
  153. #define ASN_PRIV_IMPLIED_OBJECT_ID  (ASN_PRIVATE | ASN_OBJECT_ID)       /* 6 */
  154. #define ASN_PRIV_RETRY      (ASN_PRIVATE | 7)
  155. #define IS_DELEGATED(x)   ((x) == ASN_PRIV_DELEGATED)
  156.     int             asn_check_packet(u_char *, size_t);
  157.     u_char         *asn_parse_int(u_char *, size_t *, u_char *, long *,
  158.                                   size_t);
  159.     u_char         *asn_build_int(u_char *, size_t *, u_char, const long *,
  160.                                   size_t);
  161.     u_char         *asn_parse_unsigned_int(u_char *, size_t *, u_char *,
  162.                                            u_long *, size_t);
  163.     u_char         *asn_build_unsigned_int(u_char *, size_t *, u_char,
  164.                                            const u_long *, size_t);
  165.     u_char         *asn_parse_string(u_char *, size_t *, u_char *,
  166.                                      u_char *, size_t *);
  167.     u_char         *asn_build_string(u_char *, size_t *, u_char,
  168.                                      const u_char *, size_t);
  169.     u_char         *asn_parse_header(u_char *, size_t *, u_char *);
  170.     u_char         *asn_parse_sequence(u_char *, size_t *, u_char *, u_char expected_type,      /* must be this type */
  171.                                        const char *estr);       /* error message prefix */
  172.     u_char         *asn_build_header(u_char *, size_t *, u_char, size_t);
  173.     u_char         *asn_build_sequence(u_char *, size_t *, u_char, size_t);
  174.     u_char         *asn_parse_length(u_char *, u_long *);
  175.     u_char         *asn_build_length(u_char *, size_t *, size_t);
  176.     u_char         *asn_parse_objid(u_char *, size_t *, u_char *, oid *,
  177.                                     size_t *);
  178.     u_char         *asn_build_objid(u_char *, size_t *, u_char, oid *,
  179.                                     size_t);
  180.     u_char         *asn_parse_null(u_char *, size_t *, u_char *);
  181.     u_char         *asn_build_null(u_char *, size_t *, u_char);
  182.     u_char         *asn_parse_bitstring(u_char *, size_t *, u_char *,
  183.                                         u_char *, size_t *);
  184.     u_char         *asn_build_bitstring(u_char *, size_t *, u_char,
  185.                                         const u_char *, size_t);
  186.     u_char         *asn_parse_unsigned_int64(u_char *, size_t *, u_char *,
  187.                                              struct counter64 *, size_t);
  188.     u_char         *asn_build_unsigned_int64(u_char *, size_t *, u_char,
  189.                                              const struct counter64 *, size_t);
  190.     u_char         *asn_parse_signed_int64(u_char *, size_t *, u_char *,
  191.                                            struct counter64 *, size_t);
  192.     u_char         *asn_build_signed_int64(u_char *, size_t *, u_char,
  193.                                            const struct counter64 *, size_t);
  194.     u_char         *asn_build_float(u_char *, size_t *, u_char, const float *,
  195.                                     size_t);
  196.     u_char         *asn_parse_float(u_char *, size_t *, u_char *, float *,
  197.                                     size_t);
  198.     u_char         *asn_build_double(u_char *, size_t *, u_char, const double *,
  199.                                      size_t);
  200.     u_char         *asn_parse_double(u_char *, size_t *, u_char *,
  201.                                      double *, size_t);
  202. #ifdef USE_REVERSE_ASNENCODING
  203.     /*
  204.      * Re-allocator function for below.  
  205.      */
  206.     int             asn_realloc(u_char **, size_t *);
  207.     /*
  208.      * Re-allocating reverse ASN.1 encoder functions.  Synopsis:
  209.      * 
  210.      * u_char *buf = (u_char*)malloc(100);
  211.      * u_char type = (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER);
  212.      * size_t buf_len = 100, offset = 0;
  213.      * long data = 12345;
  214.      * int allow_realloc = 1;
  215.      * 
  216.      * if (asn_realloc_rbuild_int(&buf, &buf_len, &offset, allow_realloc,
  217.      * type, &data, sizeof(long)) == 0) {
  218.      * error;
  219.      * }
  220.      * 
  221.      * NOTE WELL: after calling one of these functions with allow_realloc
  222.      * non-zero, buf might have moved, buf_len might have grown and
  223.      * offset will have increased by the size of the encoded data.
  224.      * You should **NEVER** do something like this:
  225.      * 
  226.      * u_char *buf = (u_char *)malloc(100), *ptr;
  227.      * u_char type = (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER);
  228.      * size_t buf_len = 100, offset = 0;
  229.      * long data1 = 1234, data2 = 5678;
  230.      * int rc = 0, allow_realloc = 1;
  231.      * 
  232.      * rc  = asn_realloc_rbuild_int(&buf, &buf_len, &offset, allow_realloc,
  233.      * type, &data1, sizeof(long));
  234.      * ptr = buf[buf_len - offset];   / * points at encoding of data1 * /
  235.      * if (rc == 0) {
  236.      * error;
  237.      * }
  238.      * rc  = asn_realloc_rbuild_int(&buf, &buf_len, &offset, allow_realloc,
  239.      * type, &data2, sizeof(long));
  240.      * make use of ptr here;
  241.      * 
  242.      * 
  243.      * ptr is **INVALID** at this point.  In general, you should store the
  244.      * offset value and compute pointers when you need them:
  245.      * 
  246.      * 
  247.      * 
  248.      * u_char *buf = (u_char *)malloc(100), *ptr;
  249.      * u_char type = (ASN_UNIVERSAL | ASN_PRIMITIVE | ASN_INTEGER);
  250.      * size_t buf_len = 100, offset = 0, ptr_offset;
  251.      * long data1 = 1234, data2 = 5678;
  252.      * int rc = 0, allow_realloc = 1;
  253.      * 
  254.      * rc  = asn_realloc_rbuild_int(&buf, &buf_len, &offset, allow_realloc,
  255.      * type, &data1, sizeof(long));
  256.      * ptr_offset = offset;
  257.      * if (rc == 0) {
  258.      * error;
  259.      * }
  260.      * rc  = asn_realloc_rbuild_int(&buf, &buf_len, &offset, allow_realloc,
  261.      * type, &data2, sizeof(long));
  262.      * ptr = buf + buf_len - ptr_offset
  263.      * make use of ptr here;
  264.      * 
  265.      * 
  266.      * 
  267.      * Here, you can see that ptr will be a valid pointer even if the block of
  268.      * memory has been moved, as it may well have been.  Plenty of examples of
  269.      * usage all over asn1.c, snmp_api.c, snmpusm.c.
  270.      * 
  271.      * The other thing you should **NEVER** do is to pass a pointer to a buffer
  272.      * on the stack as the first argument when allow_realloc is non-zero, unless
  273.      * you really know what you are doing and your machine/compiler allows you to
  274.      * free non-heap memory.  There are rumours that such things exist, but many
  275.      * consider them no more than the wild tales of a fool.
  276.      * 
  277.      * Of course, you can pass allow_realloc as zero, to indicate that you do not
  278.      * wish the packet buffer to be reallocated for some reason; perhaps because
  279.      * it is on the stack.  This may be useful to emulate the functionality of
  280.      * the old API:
  281.      * 
  282.      * u_char my_static_buffer[100], *cp = NULL;
  283.      * size_t my_static_buffer_len = 100;
  284.      * float my_pi = (float)22/(float)7;
  285.      * 
  286.      * cp = asn_rbuild_float(my_static_buffer, &my_static_buffer_len,
  287.      * ASN_OPAQUE_FLOAT, &my_pi, sizeof(float));
  288.      * if (cp == NULL) {
  289.      * error;
  290.      * }
  291.      * 
  292.      * 
  293.      * IS EQUIVALENT TO:
  294.      * 
  295.      * 
  296.      * u_char my_static_buffer[100];
  297.      * size_t my_static_buffer_len = 100, my_offset = 0;
  298.      * float my_pi = (float)22/(float)7;
  299.      * int rc = 0;
  300.      * 
  301.      * rc = asn_realloc_rbuild_float(&my_static_buffer, &my_static_buffer_len,
  302.      * &my_offset, 0,
  303.      * ASN_OPAQUE_FLOAT, &my_pi, sizeof(float));
  304.      * if (rc == 0) {
  305.      * error;
  306.      * }
  307.      * 
  308.      * 
  309.      */
  310.     int             asn_realloc_rbuild_int(u_char ** pkt, size_t * pkt_len,
  311.                                            size_t * offset,
  312.                                            int allow_realloc, u_char type,
  313.                                            const long *data, size_t data_size);
  314.     int             asn_realloc_rbuild_string(u_char ** pkt,
  315.                                               size_t * pkt_len,
  316.                                               size_t * offset,
  317.                                               int allow_realloc,
  318.                                               u_char type,
  319.                                               const u_char * data,
  320.                                               size_t data_size);
  321.     int             asn_realloc_rbuild_unsigned_int(u_char ** pkt,
  322.                                                     size_t * pkt_len,
  323.                                                     size_t * offset,
  324.                                                     int allow_realloc,
  325.                                                     u_char type,
  326.                                                     const u_long * data,
  327.                                                     size_t data_size);
  328.     int             asn_realloc_rbuild_header(u_char ** pkt,
  329.                                               size_t * pkt_len,
  330.                                               size_t * offset,
  331.                                               int allow_realloc,
  332.                                               u_char type,
  333.                                               size_t data_size);
  334.     int             asn_realloc_rbuild_sequence(u_char ** pkt,
  335.                                                 size_t * pkt_len,
  336.                                                 size_t * offset,
  337.                                                 int allow_realloc,
  338.                                                 u_char type,
  339.                                                 size_t data_size);
  340.     int             asn_realloc_rbuild_length(u_char ** pkt,
  341.                                               size_t * pkt_len,
  342.                                               size_t * offset,
  343.                                               int allow_realloc,
  344.                                               size_t data_size);
  345.     int             asn_realloc_rbuild_objid(u_char ** pkt,
  346.                                              size_t * pkt_len,
  347.                                              size_t * offset,
  348.                                              int allow_realloc,
  349.                                              u_char type, const oid *,
  350.                                              size_t);
  351.     int             asn_realloc_rbuild_null(u_char ** pkt,
  352.                                             size_t * pkt_len,
  353.                                             size_t * offset,
  354.                                             int allow_realloc,
  355.                                             u_char type);
  356.     int             asn_realloc_rbuild_bitstring(u_char ** pkt,
  357.                                                  size_t * pkt_len,
  358.                                                  size_t * offset,
  359.                                                  int allow_realloc,
  360.                                                  u_char type,
  361.                                                  const u_char * data,
  362.                                                  size_t data_size);
  363.     int             asn_realloc_rbuild_unsigned_int64(u_char ** pkt,
  364.                                                       size_t * pkt_len,
  365.                                                       size_t * offset,
  366.                                                       int allow_realloc,
  367.                                                       u_char type,
  368.                                                       struct counter64
  369.                                                       const *data, size_t);
  370.     int             asn_realloc_rbuild_signed_int64(u_char ** pkt,
  371.                                                     size_t * pkt_len,
  372.                                                     size_t * offset,
  373.                                                     int allow_realloc,
  374.                                                     u_char type,
  375.                                                     const struct counter64 *data,
  376.                                                     size_t);
  377.     int             asn_realloc_rbuild_float(u_char ** pkt,
  378.                                              size_t * pkt_len,
  379.                                              size_t * offset,
  380.                                              int allow_realloc,
  381.                                              u_char type, const float *data,
  382.                                              size_t data_size);
  383.     int             asn_realloc_rbuild_double(u_char ** pkt,
  384.                                               size_t * pkt_len,
  385.                                               size_t * offset,
  386.                                               int allow_realloc,
  387.                                               u_char type, const double *data,
  388.                                               size_t data_size);
  389. #endif
  390. #ifdef __cplusplus
  391. }
  392. #endif
  393. #endif                          /* ASN1_H */