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.
 
 
 
 
 
 

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