JwaWinBer.pas
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:17k
源码类别:

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Basic Encoding Rules API interface Unit for Object Pascal                    }
  4. {                                                                       }
  5. { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft          }
  6. { Corporation. All Rights Reserved.                                            }
  7. {                 }
  8. { The original file is: winber.h, released August 2001. The original Pascal    }
  9. { code is: WinBer.pas, released December 2000. The initial developer of the    }
  10. { Pascal code is Marcel van Brakel (brakelm@chello.nl).                        }
  11. {                                                                              }
  12. { Portions created by Marcel van Brakel are Copyright (C) 1999-2001            }
  13. { Marcel van Brakel. All Rights Reserved.                                      }
  14. {                 }
  15. { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
  16. {                }
  17. { You may retrieve the latest version of this file at the Project JEDI home    }
  18. { page, located at http://delphi-jedi.org or my personal homepage located at   }
  19. { http://members.chello.nl/m.vanbrakel2                                        }
  20. {                }
  21. { The contents of this file are used with permission, subject to the Mozilla   }
  22. { Public License Version 1.1 (the "License"); you may not use this file except }
  23. { in compliance with the License. You may obtain a copy of the License at      }
  24. { http://www.mozilla.org/MPL/MPL-1.1.html                                      }
  25. {                                                                              }
  26. { Software distributed under the License is distributed on an "AS IS" basis,   }
  27. { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
  28. { the specific language governing rights and limitations under the License.    }
  29. {                                                                              }
  30. { Alternatively, the contents of this file may be used under the terms of the  }
  31. { GNU Lesser General Public License (the  "LGPL License"), in which case the   }
  32. { provisions of the LGPL License are applicable instead of those above.        }
  33. { If you wish to allow use of your version of this file only under the terms   }
  34. { of the LGPL License and not to allow others to use your version of this file }
  35. { under the MPL, indicate your decision by deleting  the provisions above and  }
  36. { replace  them with the notice and other provisions required by the LGPL      }
  37. { License.  If you do not delete the provisions above, a recipient may use     }
  38. { your version of this file under either the MPL or the LGPL License.          }
  39. {                 }
  40. { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
  41. {                 }
  42. {******************************************************************************}
  43. unit JwaWinBer;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "WinBer.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. uses
  51.   JwaWinLDAP, JwaWinType;
  52. const
  53.   LBER_ERROR   = DWORD($ffffffff);
  54.   {$EXTERNALSYM LBER_ERROR}
  55.   LBER_DEFAULT = DWORD($ffffffff);
  56.   {$EXTERNALSYM LBER_DEFAULT}
  57. type
  58.   ber_tag_t = Cardinal;   // for BER tags
  59.   {$EXTERNALSYM ber_tag_t}
  60.   ber_int_t = Integer;    // for BER ints, enums, and Booleans
  61.   {$EXTERNALSYM ber_int_t}
  62.   ber_uint_t = Cardinal;  // unsigned equivalent of ber_int_t
  63.   {$EXTERNALSYM ber_uint_t}
  64.   ber_slen_t = Integer;   // signed equivalent of ber_len_t
  65.   {$EXTERNALSYM ber_slen_t}
  66. //
  67. // This constructs a new BerElement structure containing a copy of the
  68. // data in the supplied berval structure.
  69. //
  70. function ber_init(pBerVal: PBerVal): PBerElement; cdecl;
  71. {$EXTERNALSYM ber_init}
  72. //
  73. // This frees a BerElement which is returned from ber_alloc_t()
  74. // or ber_init(). The second argument - fbuf should always be set
  75. // to 1.
  76. //
  77. //
  78. procedure ber_free(pBerElement: PBerElement; fbuf: Integer); cdecl;
  79. {$EXTERNALSYM ber_free}
  80. //
  81. // Frees a BERVAL structure. Applications should not call
  82. // this API to free BERVAL structures which they themselves
  83. // have allocated
  84. //
  85. procedure ber_bvfree(pBerVal: PBerVal); cdecl;
  86. {$EXTERNALSYM ber_bvfree}
  87. //
  88. // Frees an array of BERVAL structures.
  89. //
  90. procedure ber_bvecfree(pBerVal: PBerVal); cdecl;
  91. {$EXTERNALSYM ber_bvecfree}
  92. //
  93. // Returns a copy of a the supplied berval structure
  94. //
  95. function ber_bvdup(pBerVal: PBerVal): PBerVal; cdecl;
  96. {$EXTERNALSYM ber_bvdup}
  97. //
  98. // Constructs and returns a BerElement structure. The options field
  99. // contains a bitwise-or of options which are to be used when generating
  100. // the encoding of the BerElement
  101. //
  102. // The LBER_USE_DER options should always be specified.
  103. //
  104. function ber_alloc_t(options: Integer): PBerElement; cdecl;
  105. {$EXTERNALSYM ber_alloc_t}
  106. //
  107. // This skips over the current tag and returns the tag of the next
  108. // element in the supplied BerElement. The lenght of this element is
  109. // stored in the pLen argument.
  110. //
  111. // LBER_DEFAULT is returned if there is no further data to be read
  112. // else the tag of the next element is returned.
  113. //
  114. // The difference between ber_skip_tag() and ber_peek_tag() is that the
  115. // state pointer is advanced past the first tag+lenght and is pointed to
  116. // the value part of the next element
  117. //
  118. function ber_skip_tag(pBerElement: PBerElement; var pLen: ULONG): ULONG; cdecl;
  119. {$EXTERNALSYM ber_skip_tag}
  120. //
  121. // This returns the tag of the next element to be parsed in the
  122. // supplied BerElement. The length of this element is stored in the
  123. // pLen argument.
  124. //
  125. // LBER_DEFAULT is returned if there is no further data to be read
  126. // else the tag of the next element is returned.
  127. //
  128. function ber_peek_tag(pBerElement: PBerElement; var pLen: ULONG): ULONG; cdecl;
  129. {$EXTERNALSYM ber_peek_tag}
  130. //
  131. // This returns the tag and length of the first element in a SET, SET OF
  132. // or SEQUENCE OF data value.
  133. //
  134. // LBER_DEFAULT is returned if the constructed value is empty else, the tag
  135. // is returned. It also returns an opaque cookie which has to be passed to
  136. // subsequent invocations of ber_next_element().
  137. //
  138. function ber_first_element(pBerElement: PBerElement; var pLen: ULONG; var ppOpaque: PChar): ULONG; cdecl;
  139. {$EXTERNALSYM ber_first_element}
  140. //
  141. // This positions the state at the start of the next element in the
  142. // constructed type.
  143. //
  144. // LBER_DEFAULT is returned if the constructed value is empty else, the tag
  145. // is returned.
  146. //
  147. function ber_next_element(pBerElement: PBerElement; var pLen: ULONG; opaque: PChar): ULONG; cdecl;
  148. {$EXTERNALSYM ber_next_element}
  149. //
  150. // This allocates a BerVal structure whose contents are taken from the
  151. // supplied BerElement structure.
  152. //
  153. // The return values are 0 on success and -1 on error.
  154. //
  155. function ber_flatten(pBerElement: PBerElement; var pBerVal: PBerVal): Integer; cdecl;
  156. {$EXTERNALSYM ber_flatten}
  157. (*
  158. The ber_printf() routine is used to encode a BER element in much the
  159. same way that sprintf() works.  One important difference, though, is
  160. that state information is kept in the ber argument so that multiple
  161. calls can be made to ber_printf() to append to the end of the BER ele-
  162. ment. ber MUST be a pointer to a BerElement returned by ber_alloc_t().
  163. ber_printf() interprets and formats its arguments according to the for-
  164. mat string fmt.  ber_printf() returns -1 if there is an error during
  165. encoding and a non-negative number if successful.  As with sprintf(),
  166. each character in fmt refers to an argument to ber_printf().
  167.  
  168. The format string can contain the following format characters:
  169. 't'     Tag.  The next argument is a ber_tag_t specifying the tag to
  170.         override the next element to be written to the ber.  This works
  171.         across calls.  The integer tag value SHOULD contain the tag
  172.         class, constructed bit, and tag value.  For example, a tag of
  173.         "[3]" for a constructed type is 0xA3U.  All implementations MUST
  174.         support tags that fit in a single octet (i.e., where the tag
  175.         value is less than 32) and they MAY support larger tags.
  176. 'b'     Boolean.  The next argument is an ber_int_t, containing either 0
  177.         for FALSE or 0xff for TRUE.  A boolean element is output.  If
  178.         this format character is not preceded by the 't' format modif-
  179.         ier, the tag 0x01U is used for the element.
  180. 'e'     Enumerated.  The next argument is a ber_int_t, containing the
  181.         enumerated value in the host's byte order.  An enumerated ele-
  182.         ment is output.  If this format character is not preceded by the
  183.         't' format modifier, the tag 0x0AU is used for the element.
  184. 'i'     Integer.  The next argument is a ber_int_t, containing the
  185.         integer in the host's byte order.  An integer element is output.
  186.         If this format character is not preceded by the 't' format
  187.         modifier, the tag 0x02U is used for the element.
  188. 'n'     Null.  No argument is needed.  An ASN.1 NULL element is output.
  189.         If this format character is not preceded by the 't' format
  190.         modifier, the tag 0x05U is used for the element.
  191.         
  192. 'o'     Octet string.  The next two arguments are a char *, followed by
  193.         a ber_len_t with the length of the string.  The string MAY con-
  194.         tain null bytes and are do not have to be zero-terminated.   An
  195.         octet string element is output, in primitive form.  If this for-
  196.         mat character is not preceded by the 't' format modifier, the
  197.         tag 0x04U is used for the element.
  198. 's'     Octet string.  The next argument is a char * pointing to a
  199.         zero-terminated string.  An octet string element in primitive
  200.         form is output, which does not include the trailing '' (null)
  201.         byte. If this format character is not preceded by the 't' format
  202.         modifier, the tag 0x04U is used for the element.
  203. 'v'     Several octet strings.  The next argument is a char **, an array
  204.         of char * pointers to zero-terminated strings.  The last element
  205.         in the array MUST be a NULL pointer. The octet strings do not
  206.         include the trailing '' (null) byte.  Note that a construct
  207.         like '{v}' is used to get an actual SEQUENCE OF octet strings.
  208.         The 't' format modifier cannot be used with this format charac-
  209.         ter.
  210. 'V'     Several octet strings.  A NULL-terminated array of struct berval
  211.         *'s is supplied.  Note that a construct like '{V}' is used to
  212.         get an actual SEQUENCE OF octet strings. The 't' format modifier
  213.         cannot be used with this format character.
  214. '{'     Begin sequence.  No argument is needed.  If this format charac-
  215.         ter is not preceded by the 't' format modifier, the tag 0x30U is
  216.         used.
  217. '}'     End sequence.  No argument is needed.  The 't' format modifier
  218.         cannot be used with this format character.
  219. '['     Begin set.  No argument is needed.  If this format character is
  220.         not preceded by the 't' format modifier, the tag 0x31U is used.
  221. ']'     End set.  No argument is needed.  The 't' format modifier cannot
  222.         be used with this format character.
  223. *)
  224. //WINBERAPI INT BERAPI ber_printf( BerElement *pBerElement, PCHAR fmt, ... );
  225. (*
  226. The ber_scanf() routine is used to decode a BER element in much the same
  227. way that sscanf() works.  One important difference, though, is that some
  228. state information is kept with the ber argument so that multiple calls
  229. can be made to ber_scanf() to sequentially read from the BER element.
  230. The ber argument SHOULD be a pointer to a BerElement returned by
  231. ber_init().  ber_scanf interprets the bytes according to the format
  232. string fmt, and stores the results in its additional arguments.
  233. ber_scanf() returns LBER_ERROR on error, and a different value on suc-
  234. cess.
  235. The format string contains conversion specifications which are used to
  236. direct the interpretation of the BER element.  The format string can
  237. contain the following characters:
  238. 'a'     Octet string.  A char ** argument MUST be supplied.  Memory is
  239.         allocated, filled with the contents of the octet string, zero-
  240.         terminated, and the pointer to the string is stored in the argu-
  241.         ment.  The returned value SHOULD be freed using ldap_memfree.
  242.         The tag of the element MUST indicate the primitive form
  243.         (constructed strings are not supported) but is otherwise ignored
  244.         and discarded during the decoding.  This format cannot be used
  245.         with octet strings which could contain null bytes.
  246. 'O'     Octet string.  A struct berval ** argument MUST be supplied,
  247.         which upon return points to an allocated struct berval contain-
  248.         ing the octet string and its length.  ber_bvfree() SHOULD be
  249.         called to free the allocated memory.  The tag of the element
  250.         MUST indicate the primitive form (constructed strings are not
  251.         supported) but is otherwise ignored during the decoding.
  252. 'b'     Boolean.  A pointer to a ber_int_t MUST be supplied. The
  253.         ber_int_t value stored will be 0 for FALSE or nonzero for TRUE.
  254.         The tag of the element MUST indicate the primitive form but is
  255.         otherwise ignored during the decoding.
  256. 'e'     Enumerated.  A pointer to a ber_int_t MUST be supplied. The
  257.         enumerated value stored will be in host byte order.  The tag of
  258.         the element MUST indicate the primitive form but is otherwise
  259.         ignored during the decoding.  ber_scanf() will return an error
  260.         if the value of the enumerated value cannot be stored in a
  261.         ber_int_t.
  262. 'i'     Integer.  A pointer to a ber_int_t MUST be supplied. The
  263.         ber_int_t value stored will be in host byte order.  The tag of
  264.         the element MUST indicate the primitive form but is otherwise
  265.         ignored during the decoding.  ber_scanf() will return an error
  266.         if the integer cannot be stored in a ber_int_t.
  267. 'B'     Bitstring.  A char ** argument MUST be supplied which will point
  268.         to the allocated bits, followed by a ber_len_t * argument, which
  269.         will point to the length (in bits) of the bitstring returned.
  270.         ldap_memfree SHOULD be called to free the bitstring.  The tag of
  271.         the element MUST indicate the primitive form (constructed bit-
  272.         strings are not supported) but is otherwise ignored during the
  273.         decoding.
  274. 'n'     Null.  No argument is needed.  The element is verified to have a
  275.         zero-length value and is skipped.  The tag is ignored.
  276. 'v'     Several octet strings.  A char *** argument MUST be supplied,
  277.         which upon return points to an allocated NULL-terminated array
  278.         of char *'s containing the octet strings.  NULL is stored if the
  279.         sequence is empty.  ldap_memfree SHOULD be called to free each
  280.         element of the array and the array itself.  The tag of the
  281.         sequence and of the octet strings are ignored.
  282. 'V'     Several octet strings (which could contain null bytes).  A
  283.         struct berval *** MUST be supplied, which upon return points to
  284.         a allocated NULL-terminated array of struct berval *'s contain-
  285.         ing the octet strings and their lengths.  NULL is stored if the
  286.         sequence is empty. ber_bvecfree() can be called to free the
  287.         allocated memory.  The tag of the sequence and of the octet
  288.         strings are ignored.
  289. 'x'     Skip element.  The next element is skipped.  No argument is
  290.         needed.
  291. '{'     Begin sequence.  No argument is needed.  The initial sequence
  292.         tag and length are skipped.
  293. '}'     End sequence.  No argument is needed.
  294. '['     Begin set.  No argument is needed.  The initial set tag and
  295.         length are skipped.
  296. ']'     End set.  No argument is needed.
  297. *)
  298. //WINBERAPI ULONG BERAPI ber_scanf( BerElement *pBerElement, PCHAR fmt, ... );
  299. implementation
  300. const
  301.   winberapi = 'wldap32.dll';
  302. function ber_init; external winberapi name 'ber_init';
  303. procedure ber_free; external winberapi name 'ber_free';
  304. procedure ber_bvfree; external winberapi name 'ber_bvfree';
  305. procedure ber_bvecfree; external winberapi name 'ber_bvecfree';
  306. function ber_bvdup; external winberapi name 'ber_bvdup';
  307. function ber_alloc_t; external winberapi name 'ber_alloc_t';
  308. function ber_skip_tag; external winberapi name 'ber_skip_tag';
  309. function ber_peek_tag; external winberapi name 'ber_peek_tag';
  310. function ber_first_element; external winberapi name 'ber_first_element';
  311. function ber_next_element; external winberapi name 'ber_next_element';
  312. function ber_flatten; external winberapi name 'ber_flatten';
  313. //function ber_printf; external winberapi name 'ber_printf';
  314. //function ber_scanf; external winberapi name 'ber_scanf';
  315. end.