a_gentm.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. /* crypto/asn1/a_gentm.c */
  2. /* Copyright (C) 1995-1998 Eric Young ([email protected])
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young ([email protected]).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson ([email protected]).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young ([email protected])"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson ([email protected])"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. /*
  59. * GENERALIZEDTIME implementation, written by Steve Henson. Based on UTCTIME
  60. */
  61. #include <stdio.h>
  62. #include <time.h>
  63. #include "cryptlib.h"
  64. #include "o_time.h"
  65. #include <openssl/asn1.h>
  66. #if 0
  67. int i2d_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME *a, unsigned char **pp)
  68. {
  69. # ifdef CHARSET_EBCDIC
  70. /* KLUDGE! We convert to ascii before writing DER */
  71. int len;
  72. char tmp[24];
  73. ASN1_STRING tmpstr = *(ASN1_STRING *)a;
  74. len = tmpstr.length;
  75. ebcdic2ascii(tmp, tmpstr.data, (len >= sizeof tmp) ? sizeof tmp : len);
  76. tmpstr.data = tmp;
  77. a = (ASN1_GENERALIZEDTIME *)&tmpstr;
  78. # endif
  79. return (i2d_ASN1_bytes((ASN1_STRING *)a, pp,
  80. V_ASN1_GENERALIZEDTIME, V_ASN1_UNIVERSAL));
  81. }
  82. ASN1_GENERALIZEDTIME *d2i_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME **a,
  83. unsigned char **pp,
  84. long length)
  85. {
  86. ASN1_GENERALIZEDTIME *ret = NULL;
  87. ret =
  88. (ASN1_GENERALIZEDTIME *)d2i_ASN1_bytes((ASN1_STRING **)a, pp, length,
  89. V_ASN1_GENERALIZEDTIME,
  90. V_ASN1_UNIVERSAL);
  91. if (ret == NULL) {
  92. ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME, ERR_R_NESTED_ASN1_ERROR);
  93. return (NULL);
  94. }
  95. # ifdef CHARSET_EBCDIC
  96. ascii2ebcdic(ret->data, ret->data, ret->length);
  97. # endif
  98. if (!ASN1_GENERALIZEDTIME_check(ret)) {
  99. ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME, ASN1_R_INVALID_TIME_FORMAT);
  100. goto err;
  101. }
  102. return (ret);
  103. err:
  104. if ((ret != NULL) && ((a == NULL) || (*a != ret)))
  105. M_ASN1_GENERALIZEDTIME_free(ret);
  106. return (NULL);
  107. }
  108. #endif
  109. int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *d)
  110. {
  111. static const int min[9] = { 0, 0, 1, 1, 0, 0, 0, 0, 0 };
  112. static const int max[9] = { 99, 99, 12, 31, 23, 59, 59, 12, 59 };
  113. char *a;
  114. int n, i, l, o;
  115. if (d->type != V_ASN1_GENERALIZEDTIME)
  116. return (0);
  117. l = d->length;
  118. a = (char *)d->data;
  119. o = 0;
  120. /*
  121. * GENERALIZEDTIME is similar to UTCTIME except the year is represented
  122. * as YYYY. This stuff treats everything as a two digit field so make
  123. * first two fields 00 to 99
  124. */
  125. if (l < 13)
  126. goto err;
  127. for (i = 0; i < 7; i++) {
  128. if ((i == 6) && ((a[o] == 'Z') || (a[o] == '+') || (a[o] == '-'))) {
  129. i++;
  130. break;
  131. }
  132. if ((a[o] < '0') || (a[o] > '9'))
  133. goto err;
  134. n = a[o] - '0';
  135. if (++o > l)
  136. goto err;
  137. if ((a[o] < '0') || (a[o] > '9'))
  138. goto err;
  139. n = (n * 10) + a[o] - '0';
  140. if (++o > l)
  141. goto err;
  142. if ((n < min[i]) || (n > max[i]))
  143. goto err;
  144. }
  145. /*
  146. * Optional fractional seconds: decimal point followed by one or more
  147. * digits.
  148. */
  149. if (a[o] == '.') {
  150. if (++o > l)
  151. goto err;
  152. i = o;
  153. while ((a[o] >= '0') && (a[o] <= '9') && (o <= l))
  154. o++;
  155. /* Must have at least one digit after decimal point */
  156. if (i == o)
  157. goto err;
  158. }
  159. if (a[o] == 'Z')
  160. o++;
  161. else if ((a[o] == '+') || (a[o] == '-')) {
  162. o++;
  163. if (o + 4 > l)
  164. goto err;
  165. for (i = 7; i < 9; i++) {
  166. if ((a[o] < '0') || (a[o] > '9'))
  167. goto err;
  168. n = a[o] - '0';
  169. o++;
  170. if ((a[o] < '0') || (a[o] > '9'))
  171. goto err;
  172. n = (n * 10) + a[o] - '0';
  173. if ((n < min[i]) || (n > max[i]))
  174. goto err;
  175. o++;
  176. }
  177. } else {
  178. /* Missing time zone information. */
  179. goto err;
  180. }
  181. return (o == l);
  182. err:
  183. return (0);
  184. }
  185. int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str)
  186. {
  187. ASN1_GENERALIZEDTIME t;
  188. t.type = V_ASN1_GENERALIZEDTIME;
  189. t.length = strlen(str);
  190. t.data = (unsigned char *)str;
  191. if (ASN1_GENERALIZEDTIME_check(&t)) {
  192. if (s != NULL) {
  193. if (!ASN1_STRING_set((ASN1_STRING *)s,
  194. (unsigned char *)str, t.length))
  195. return 0;
  196. s->type = V_ASN1_GENERALIZEDTIME;
  197. }
  198. return (1);
  199. } else
  200. return (0);
  201. }
  202. ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,
  203. time_t t)
  204. {
  205. return ASN1_GENERALIZEDTIME_adj(s, t, 0, 0);
  206. }
  207. ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s,
  208. time_t t, int offset_day,
  209. long offset_sec)
  210. {
  211. char *p;
  212. struct tm *ts;
  213. struct tm data;
  214. size_t len = 20;
  215. if (s == NULL)
  216. s = M_ASN1_GENERALIZEDTIME_new();
  217. if (s == NULL)
  218. return (NULL);
  219. ts = OPENSSL_gmtime(&t, &data);
  220. if (ts == NULL)
  221. return (NULL);
  222. if (offset_day || offset_sec) {
  223. if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
  224. return NULL;
  225. }
  226. p = (char *)s->data;
  227. if ((p == NULL) || ((size_t)s->length < len)) {
  228. p = OPENSSL_malloc(len);
  229. if (p == NULL) {
  230. ASN1err(ASN1_F_ASN1_GENERALIZEDTIME_ADJ, ERR_R_MALLOC_FAILURE);
  231. return (NULL);
  232. }
  233. if (s->data != NULL)
  234. OPENSSL_free(s->data);
  235. s->data = (unsigned char *)p;
  236. }
  237. BIO_snprintf(p, len, "%04d%02d%02d%02d%02d%02dZ", ts->tm_year + 1900,
  238. ts->tm_mon + 1, ts->tm_mday, ts->tm_hour, ts->tm_min,
  239. ts->tm_sec);
  240. s->length = strlen(p);
  241. s->type = V_ASN1_GENERALIZEDTIME;
  242. #ifdef CHARSET_EBCDIC_not
  243. ebcdic2ascii(s->data, s->data, s->length);
  244. #endif
  245. return (s);
  246. }