You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

237 regels
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. #include "asn1_locl.h"
  60. /* UTF8 utilities */
  61. /*
  62. * This parses a UTF8 string one character at a time. It is passed a pointer
  63. * to the string and the length of the string. It sets 'value' to the value
  64. * of the current character. It returns the number of characters read or a
  65. * negative error code: -1 = string too short -2 = illegal character -3 =
  66. * subsequent characters not of the form 10xxxxxx -4 = character encoded
  67. * incorrectly (not minimal length).
  68. */
  69. int UTF8_getc(const unsigned char *str, int len, uint32_t *val)
  70. {
  71. const unsigned char *p;
  72. uint32_t value;
  73. int ret;
  74. if (len <= 0)
  75. return 0;
  76. p = str;
  77. /* Check syntax and work out the encoded value (if correct) */
  78. if ((*p & 0x80) == 0) {
  79. value = *p++ & 0x7f;
  80. ret = 1;
  81. } else if ((*p & 0xe0) == 0xc0) {
  82. if (len < 2)
  83. return -1;
  84. if ((p[1] & 0xc0) != 0x80)
  85. return -3;
  86. value = (*p++ & 0x1f) << 6;
  87. value |= *p++ & 0x3f;
  88. if (value < 0x80)
  89. return -4;
  90. ret = 2;
  91. } else if ((*p & 0xf0) == 0xe0) {
  92. if (len < 3)
  93. return -1;
  94. if (((p[1] & 0xc0) != 0x80)
  95. || ((p[2] & 0xc0) != 0x80))
  96. return -3;
  97. value = (*p++ & 0xf) << 12;
  98. value |= (*p++ & 0x3f) << 6;
  99. value |= *p++ & 0x3f;
  100. if (value < 0x800)
  101. return -4;
  102. ret = 3;
  103. } else if ((*p & 0xf8) == 0xf0) {
  104. if (len < 4)
  105. return -1;
  106. if (((p[1] & 0xc0) != 0x80)
  107. || ((p[2] & 0xc0) != 0x80)
  108. || ((p[3] & 0xc0) != 0x80))
  109. return -3;
  110. value = ((uint32_t)(*p++ & 0x7)) << 18;
  111. value |= (*p++ & 0x3f) << 12;
  112. value |= (*p++ & 0x3f) << 6;
  113. value |= *p++ & 0x3f;
  114. if (value < 0x10000)
  115. return -4;
  116. ret = 4;
  117. } else if ((*p & 0xfc) == 0xf8) {
  118. if (len < 5)
  119. return -1;
  120. if (((p[1] & 0xc0) != 0x80)
  121. || ((p[2] & 0xc0) != 0x80)
  122. || ((p[3] & 0xc0) != 0x80)
  123. || ((p[4] & 0xc0) != 0x80))
  124. return -3;
  125. value = ((uint32_t)(*p++ & 0x3)) << 24;
  126. value |= ((uint32_t)(*p++ & 0x3f)) << 18;
  127. value |= ((uint32_t)(*p++ & 0x3f)) << 12;
  128. value |= (*p++ & 0x3f) << 6;
  129. value |= *p++ & 0x3f;
  130. if (value < 0x200000)
  131. return -4;
  132. ret = 5;
  133. } else if ((*p & 0xfe) == 0xfc) {
  134. if (len < 6)
  135. return -1;
  136. if (((p[1] & 0xc0) != 0x80)
  137. || ((p[2] & 0xc0) != 0x80)
  138. || ((p[3] & 0xc0) != 0x80)
  139. || ((p[4] & 0xc0) != 0x80)
  140. || ((p[5] & 0xc0) != 0x80))
  141. return -3;
  142. value = ((uint32_t)(*p++ & 0x1)) << 30;
  143. value |= ((uint32_t)(*p++ & 0x3f)) << 24;
  144. value |= ((uint32_t)(*p++ & 0x3f)) << 18;
  145. value |= ((uint32_t)(*p++ & 0x3f)) << 12;
  146. value |= (*p++ & 0x3f) << 6;
  147. value |= *p++ & 0x3f;
  148. if (value < 0x4000000)
  149. return -4;
  150. ret = 6;
  151. } else
  152. return -2;
  153. *val = value;
  154. return ret;
  155. }
  156. /*
  157. * This takes a character 'value' and writes the UTF8 encoded value in 'str'
  158. * where 'str' is a buffer containing 'len' characters. Returns the number of
  159. * characters written or -1 if 'len' is too small. 'str' can be set to NULL
  160. * in which case it just returns the number of characters. It will need at
  161. * most 6 characters.
  162. */
  163. int UTF8_putc(unsigned char *str, int len, uint32_t value)
  164. {
  165. if (!str)
  166. len = 6; /* Maximum we will need */
  167. else if (len <= 0)
  168. return -1;
  169. if (value < 0x80) {
  170. if (str)
  171. *str = (unsigned char)value;
  172. return 1;
  173. }
  174. if (value < 0x800) {
  175. if (len < 2)
  176. return -1;
  177. if (str) {
  178. *str++ = (unsigned char)(((value >> 6) & 0x1f) | 0xc0);
  179. *str = (unsigned char)((value & 0x3f) | 0x80);
  180. }
  181. return 2;
  182. }
  183. if (value < 0x10000) {
  184. if (len < 3)
  185. return -1;
  186. if (str) {
  187. *str++ = (unsigned char)(((value >> 12) & 0xf) | 0xe0);
  188. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  189. *str = (unsigned char)((value & 0x3f) | 0x80);
  190. }
  191. return 3;
  192. }
  193. if (value < 0x200000) {
  194. if (len < 4)
  195. return -1;
  196. if (str) {
  197. *str++ = (unsigned char)(((value >> 18) & 0x7) | 0xf0);
  198. *str++ = (unsigned char)(((value >> 12) & 0x3f) | 0x80);
  199. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  200. *str = (unsigned char)((value & 0x3f) | 0x80);
  201. }
  202. return 4;
  203. }
  204. if (value < 0x4000000) {
  205. if (len < 5)
  206. return -1;
  207. if (str) {
  208. *str++ = (unsigned char)(((value >> 24) & 0x3) | 0xf8);
  209. *str++ = (unsigned char)(((value >> 18) & 0x3f) | 0x80);
  210. *str++ = (unsigned char)(((value >> 12) & 0x3f) | 0x80);
  211. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  212. *str = (unsigned char)((value & 0x3f) | 0x80);
  213. }
  214. return 5;
  215. }
  216. if (len < 6)
  217. return -1;
  218. if (str) {
  219. *str++ = (unsigned char)(((value >> 30) & 0x1) | 0xfc);
  220. *str++ = (unsigned char)(((value >> 24) & 0x3f) | 0x80);
  221. *str++ = (unsigned char)(((value >> 18) & 0x3f) | 0x80);
  222. *str++ = (unsigned char)(((value >> 12) & 0x3f) | 0x80);
  223. *str++ = (unsigned char)(((value >> 6) & 0x3f) | 0x80);
  224. *str = (unsigned char)((value & 0x3f) | 0x80);
  225. }
  226. return 6;
  227. }