Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

235 Zeilen
8.6 KiB

  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.] */
  56. #include <openssl/asn1.h>
  57. #include <openssl/err.h>
  58. #include <openssl/mem.h>
  59. /* UTF8 utilities */
  60. /*
  61. * This parses a UTF8 string one character at a time. It is passed a pointer
  62. * to the string and the length of the string. It sets 'value' to the value
  63. * of the current character. It returns the number of characters read or a
  64. * negative error code: -1 = string too short -2 = illegal character -3 =
  65. * subsequent characters not of the form 10xxxxxx -4 = character encoded
  66. * incorrectly (not minimal length).
  67. */
  68. int UTF8_getc(const unsigned char *str, int len, unsigned long *val)
  69. {
  70. const unsigned char *p;
  71. unsigned long value;
  72. int ret;
  73. if (len <= 0)
  74. return 0;
  75. p = str;
  76. /* Check syntax and work out the encoded value (if correct) */
  77. if ((*p & 0x80) == 0) {
  78. value = *p++ & 0x7f;
  79. ret = 1;
  80. } else if ((*p & 0xe0) == 0xc0) {
  81. if (len < 2)
  82. return -1;
  83. if ((p[1] & 0xc0) != 0x80)
  84. return -3;
  85. value = (*p++ & 0x1f) << 6;
  86. value |= *p++ & 0x3f;
  87. if (value < 0x80)
  88. return -4;
  89. ret = 2;
  90. } else if ((*p & 0xf0) == 0xe0) {
  91. if (len < 3)
  92. return -1;
  93. if (((p[1] & 0xc0) != 0x80)
  94. || ((p[2] & 0xc0) != 0x80))
  95. return -3;
  96. value = (*p++ & 0xf) << 12;
  97. value |= (*p++ & 0x3f) << 6;
  98. value |= *p++ & 0x3f;
  99. if (value < 0x800)
  100. return -4;
  101. ret = 3;
  102. } else if ((*p & 0xf8) == 0xf0) {
  103. if (len < 4)
  104. return -1;
  105. if (((p[1] & 0xc0) != 0x80)
  106. || ((p[2] & 0xc0) != 0x80)
  107. || ((p[3] & 0xc0) != 0x80))
  108. return -3;
  109. value = ((unsigned long)(*p++ & 0x7)) << 18;
  110. value |= (*p++ & 0x3f) << 12;
  111. value |= (*p++ & 0x3f) << 6;
  112. value |= *p++ & 0x3f;
  113. if (value < 0x10000)
  114. return -4;
  115. ret = 4;
  116. } else if ((*p & 0xfc) == 0xf8) {
  117. if (len < 5)
  118. return -1;
  119. if (((p[1] & 0xc0) != 0x80)
  120. || ((p[2] & 0xc0) != 0x80)
  121. || ((p[3] & 0xc0) != 0x80)
  122. || ((p[4] & 0xc0) != 0x80))
  123. return -3;
  124. value = ((unsigned long)(*p++ & 0x3)) << 24;
  125. value |= ((unsigned long)(*p++ & 0x3f)) << 18;
  126. value |= ((unsigned long)(*p++ & 0x3f)) << 12;
  127. value |= (*p++ & 0x3f) << 6;
  128. value |= *p++ & 0x3f;
  129. if (value < 0x200000)
  130. return -4;
  131. ret = 5;
  132. } else if ((*p & 0xfe) == 0xfc) {
  133. if (len < 6)
  134. return -1;
  135. if (((p[1] & 0xc0) != 0x80)
  136. || ((p[2] & 0xc0) != 0x80)
  137. || ((p[3] & 0xc0) != 0x80)
  138. || ((p[4] & 0xc0) != 0x80)
  139. || ((p[5] & 0xc0) != 0x80))
  140. return -3;
  141. value = ((unsigned long)(*p++ & 0x1)) << 30;
  142. value |= ((unsigned long)(*p++ & 0x3f)) << 24;
  143. value |= ((unsigned long)(*p++ & 0x3f)) << 18;
  144. value |= ((unsigned long)(*p++ & 0x3f)) << 12;
  145. value |= (*p++ & 0x3f) << 6;
  146. value |= *p++ & 0x3f;
  147. if (value < 0x4000000)
  148. return -4;
  149. ret = 6;
  150. } else
  151. return -2;
  152. *val = value;
  153. return ret;
  154. }
  155. /*
  156. * This takes a character 'value' and writes the UTF8 encoded value in 'str'
  157. * where 'str' is a buffer containing 'len' characters. Returns the number of
  158. * characters written or -1 if 'len' is too small. 'str' can be set to NULL
  159. * in which case it just returns the number of characters. It will need at
  160. * most 6 characters.
  161. */
  162. int UTF8_putc(unsigned char *str, int len, unsigned long value)
  163. {
  164. if (!str)
  165. len = 6; /* Maximum we will need */
  166. else if (len <= 0)
  167. return -1;
  168. if (value < 0x80) {
  169. if (str)
  170. *str = (unsigned char)value;
  171. return 1;
  172. }
  173. if (value < 0x800) {
  174. if (len < 2)
  175. return -1;
  176. if (str) {
  177. *str++ = (unsigned char)(((value >> 6) & 0x1f) | 0xc0);
  178. *str = (unsigned char)((value & 0x3f) | 0x80);
  179. }
  180. return 2;
  181. }
  182. if (value < 0x10000) {
  183. if (len < 3)
  184. return -1;
  185. if (str) {
  186. *str++ = (unsigned char)(((value >> 12) & 0xf) | 0xe0);
  187. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  188. *str = (unsigned char)((value & 0x3f) | 0x80);
  189. }
  190. return 3;
  191. }
  192. if (value < 0x200000) {
  193. if (len < 4)
  194. return -1;
  195. if (str) {
  196. *str++ = (unsigned char)(((value >> 18) & 0x7) | 0xf0);
  197. *str++ = (unsigned char)(((value >> 12) & 0x3f) | 0x80);
  198. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  199. *str = (unsigned char)((value & 0x3f) | 0x80);
  200. }
  201. return 4;
  202. }
  203. if (value < 0x4000000) {
  204. if (len < 5)
  205. return -1;
  206. if (str) {
  207. *str++ = (unsigned char)(((value >> 24) & 0x3) | 0xf8);
  208. *str++ = (unsigned char)(((value >> 18) & 0x3f) | 0x80);
  209. *str++ = (unsigned char)(((value >> 12) & 0x3f) | 0x80);
  210. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  211. *str = (unsigned char)((value & 0x3f) | 0x80);
  212. }
  213. return 5;
  214. }
  215. if (len < 6)
  216. return -1;
  217. if (str) {
  218. *str++ = (unsigned char)(((value >> 30) & 0x1) | 0xfc);
  219. *str++ = (unsigned char)(((value >> 24) & 0x3f) | 0x80);
  220. *str++ = (unsigned char)(((value >> 18) & 0x3f) | 0x80);
  221. *str++ = (unsigned char)(((value >> 12) & 0x3f) | 0x80);
  222. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  223. *str = (unsigned char)((value & 0x3f) | 0x80);
  224. }
  225. return 6;
  226. }