Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

256 строки
7.0 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 <string.h>
  58. #include <time.h>
  59. #include <openssl/err.h>
  60. #include <openssl/mem.h>
  61. #include <openssl/time_support.h>
  62. int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d)
  63. {
  64. static const int min[9]={ 0, 0, 1, 1, 0, 0, 0, 0, 0};
  65. static const int max[9]={99, 99,12,31,23,59,59,12,59};
  66. char *a;
  67. int n,i,l,o;
  68. if (d->type != V_ASN1_GENERALIZEDTIME) return(0);
  69. l=d->length;
  70. a=(char *)d->data;
  71. o=0;
  72. /* GENERALIZEDTIME is similar to UTCTIME except the year is
  73. * represented as YYYY. This stuff treats everything as a two digit
  74. * field so make first two fields 00 to 99
  75. */
  76. if (l < 13) goto err;
  77. for (i=0; i<7; i++)
  78. {
  79. if ((i == 6) && ((a[o] == 'Z') ||
  80. (a[o] == '+') || (a[o] == '-')))
  81. {
  82. i++;
  83. if (tm)
  84. tm->tm_sec = 0;
  85. break;
  86. }
  87. if ((a[o] < '0') || (a[o] > '9')) goto err;
  88. n= a[o]-'0';
  89. if (++o > l) goto err;
  90. if ((a[o] < '0') || (a[o] > '9')) goto err;
  91. n=(n*10)+ a[o]-'0';
  92. if (++o > l) goto err;
  93. if ((n < min[i]) || (n > max[i])) goto err;
  94. if (tm)
  95. {
  96. switch(i)
  97. {
  98. case 0:
  99. tm->tm_year = n * 100 - 1900;
  100. break;
  101. case 1:
  102. tm->tm_year += n;
  103. break;
  104. case 2:
  105. tm->tm_mon = n - 1;
  106. break;
  107. case 3:
  108. tm->tm_mday = n;
  109. break;
  110. case 4:
  111. tm->tm_hour = n;
  112. break;
  113. case 5:
  114. tm->tm_min = n;
  115. break;
  116. case 6:
  117. tm->tm_sec = n;
  118. break;
  119. }
  120. }
  121. }
  122. /* Optional fractional seconds: decimal point followed by one
  123. * or more digits.
  124. */
  125. if (a[o] == '.')
  126. {
  127. if (++o > l) goto err;
  128. i = o;
  129. while ((a[o] >= '0') && (a[o] <= '9') && (o <= l))
  130. o++;
  131. /* Must have at least one digit after decimal point */
  132. if (i == o) goto err;
  133. }
  134. if (a[o] == 'Z')
  135. o++;
  136. else if ((a[o] == '+') || (a[o] == '-'))
  137. {
  138. int offsign = a[o] == '-' ? -1 : 1, offset = 0;
  139. o++;
  140. if (o+4 > l) goto err;
  141. for (i=7; i<9; i++)
  142. {
  143. if ((a[o] < '0') || (a[o] > '9')) goto err;
  144. n= a[o]-'0';
  145. o++;
  146. if ((a[o] < '0') || (a[o] > '9')) goto err;
  147. n=(n*10)+ a[o]-'0';
  148. if ((n < min[i]) || (n > max[i])) goto err;
  149. if (tm)
  150. {
  151. if (i == 7)
  152. offset = n * 3600;
  153. else if (i == 8)
  154. offset += n * 60;
  155. }
  156. o++;
  157. }
  158. if (offset && !OPENSSL_gmtime_adj(tm, 0, offset * offsign))
  159. return 0;
  160. }
  161. else if (a[o])
  162. {
  163. /* Missing time zone information. */
  164. goto err;
  165. }
  166. return(o == l);
  167. err:
  168. return(0);
  169. }
  170. int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *d)
  171. {
  172. return asn1_generalizedtime_to_tm(NULL, d);
  173. }
  174. int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str)
  175. {
  176. ASN1_GENERALIZEDTIME t;
  177. t.type=V_ASN1_GENERALIZEDTIME;
  178. t.length=strlen(str);
  179. t.data=(unsigned char *)str;
  180. if (ASN1_GENERALIZEDTIME_check(&t))
  181. {
  182. if (s != NULL)
  183. {
  184. if (!ASN1_STRING_set((ASN1_STRING *)s,
  185. (unsigned char *)str,t.length))
  186. return 0;
  187. s->type=V_ASN1_GENERALIZEDTIME;
  188. }
  189. return(1);
  190. }
  191. else
  192. return(0);
  193. }
  194. ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,
  195. time_t t)
  196. {
  197. return ASN1_GENERALIZEDTIME_adj(s, t, 0, 0);
  198. }
  199. ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s,
  200. time_t t, int offset_day, long offset_sec)
  201. {
  202. char *p;
  203. struct tm *ts;
  204. struct tm data;
  205. size_t len = 20;
  206. if (s == NULL)
  207. s=M_ASN1_GENERALIZEDTIME_new();
  208. if (s == NULL)
  209. return(NULL);
  210. ts=OPENSSL_gmtime(&t, &data);
  211. if (ts == NULL)
  212. return(NULL);
  213. if (offset_day || offset_sec)
  214. {
  215. if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
  216. return NULL;
  217. }
  218. p=(char *)s->data;
  219. if ((p == NULL) || ((size_t)s->length < len))
  220. {
  221. p=OPENSSL_malloc(len);
  222. if (p == NULL)
  223. {
  224. OPENSSL_PUT_ERROR(ASN1, ASN1_GENERALIZEDTIME_adj, ERR_R_MALLOC_FAILURE);
  225. return(NULL);
  226. }
  227. if (s->data != NULL)
  228. OPENSSL_free(s->data);
  229. s->data=(unsigned char *)p;
  230. }
  231. BIO_snprintf(p,len,"%04d%02d%02d%02d%02d%02dZ",ts->tm_year + 1900,
  232. ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec);
  233. s->length=strlen(p);
  234. s->type=V_ASN1_GENERALIZEDTIME;
  235. return(s);
  236. }