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.
 
 
 
 
 
 

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