a_gentm.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /* crypto/asn1/a_gentm.c */
  2. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young (eay@cryptsoft.com).
  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 (tjh@cryptsoft.com).
  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 (eay@cryptsoft.com)"
  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 (tjh@cryptsoft.com)"
  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. #include "asn1_locl.h"
  67. #if 0
  68. int i2d_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME *a, unsigned char **pp)
  69. {
  70. # ifdef CHARSET_EBCDIC
  71. /* KLUDGE! We convert to ascii before writing DER */
  72. int len;
  73. char tmp[24];
  74. ASN1_STRING tmpstr = *(ASN1_STRING *)a;
  75. len = tmpstr.length;
  76. ebcdic2ascii(tmp, tmpstr.data, (len >= sizeof(tmp)) ? sizeof(tmp) : len);
  77. tmpstr.data = tmp;
  78. a = (ASN1_GENERALIZEDTIME *)&tmpstr;
  79. # endif
  80. return (i2d_ASN1_bytes((ASN1_STRING *)a, pp,
  81. V_ASN1_GENERALIZEDTIME, V_ASN1_UNIVERSAL));
  82. }
  83. ASN1_GENERALIZEDTIME *d2i_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME **a,
  84. unsigned char **pp,
  85. long length)
  86. {
  87. ASN1_GENERALIZEDTIME *ret = NULL;
  88. ret =
  89. (ASN1_GENERALIZEDTIME *)d2i_ASN1_bytes((ASN1_STRING **)a, pp, length,
  90. V_ASN1_GENERALIZEDTIME,
  91. V_ASN1_UNIVERSAL);
  92. if (ret == NULL) {
  93. ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME, ERR_R_NESTED_ASN1_ERROR);
  94. return (NULL);
  95. }
  96. # ifdef CHARSET_EBCDIC
  97. ascii2ebcdic(ret->data, ret->data, ret->length);
  98. # endif
  99. if (!ASN1_GENERALIZEDTIME_check(ret)) {
  100. ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME, ASN1_R_INVALID_TIME_FORMAT);
  101. goto err;
  102. }
  103. return (ret);
  104. err:
  105. if ((ret != NULL) && ((a == NULL) || (*a != ret)))
  106. M_ASN1_GENERALIZEDTIME_free(ret);
  107. return (NULL);
  108. }
  109. #endif
  110. int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d)
  111. {
  112. static const int min[9] = { 0, 0, 1, 1, 0, 0, 0, 0, 0 };
  113. static const int max[9] = { 99, 99, 12, 31, 23, 59, 59, 12, 59 };
  114. char *a;
  115. int n, i, l, o;
  116. if (d->type != V_ASN1_GENERALIZEDTIME)
  117. return (0);
  118. l = d->length;
  119. a = (char *)d->data;
  120. o = 0;
  121. /*
  122. * GENERALIZEDTIME is similar to UTCTIME except the year is represented
  123. * as YYYY. This stuff treats everything as a two digit field so make
  124. * first two fields 00 to 99
  125. */
  126. if (l < 13)
  127. goto err;
  128. for (i = 0; i < 7; i++) {
  129. if ((i == 6) && ((a[o] == 'Z') || (a[o] == '+') || (a[o] == '-'))) {
  130. i++;
  131. if (tm)
  132. tm->tm_sec = 0;
  133. break;
  134. }
  135. if ((a[o] < '0') || (a[o] > '9'))
  136. goto err;
  137. n = a[o] - '0';
  138. if (++o > l)
  139. goto err;
  140. if ((a[o] < '0') || (a[o] > '9'))
  141. goto err;
  142. n = (n * 10) + a[o] - '0';
  143. if (++o > l)
  144. goto err;
  145. if ((n < min[i]) || (n > max[i]))
  146. goto err;
  147. if (tm) {
  148. switch (i) {
  149. case 0:
  150. tm->tm_year = n * 100 - 1900;
  151. break;
  152. case 1:
  153. tm->tm_year += n;
  154. break;
  155. case 2:
  156. tm->tm_mon = n - 1;
  157. break;
  158. case 3:
  159. tm->tm_mday = n;
  160. break;
  161. case 4:
  162. tm->tm_hour = n;
  163. break;
  164. case 5:
  165. tm->tm_min = n;
  166. break;
  167. case 6:
  168. tm->tm_sec = n;
  169. break;
  170. }
  171. }
  172. }
  173. /*
  174. * Optional fractional seconds: decimal point followed by one or more
  175. * digits.
  176. */
  177. if (a[o] == '.') {
  178. if (++o > l)
  179. goto err;
  180. i = o;
  181. while ((a[o] >= '0') && (a[o] <= '9') && (o <= l))
  182. o++;
  183. /* Must have at least one digit after decimal point */
  184. if (i == o)
  185. goto err;
  186. }
  187. if (a[o] == 'Z')
  188. o++;
  189. else if ((a[o] == '+') || (a[o] == '-')) {
  190. int offsign = a[o] == '-' ? 1 : -1, offset = 0;
  191. o++;
  192. if (o + 4 > l)
  193. goto err;
  194. for (i = 7; i < 9; i++) {
  195. if ((a[o] < '0') || (a[o] > '9'))
  196. goto err;
  197. n = a[o] - '0';
  198. o++;
  199. if ((a[o] < '0') || (a[o] > '9'))
  200. goto err;
  201. n = (n * 10) + a[o] - '0';
  202. if ((n < min[i]) || (n > max[i]))
  203. goto err;
  204. if (tm) {
  205. if (i == 7)
  206. offset = n * 3600;
  207. else if (i == 8)
  208. offset += n * 60;
  209. }
  210. o++;
  211. }
  212. if (offset && !OPENSSL_gmtime_adj(tm, 0, offset * offsign))
  213. return 0;
  214. } else if (a[o]) {
  215. /* Missing time zone information. */
  216. goto err;
  217. }
  218. return (o == l);
  219. err:
  220. return (0);
  221. }
  222. int ASN1_GENERALIZEDTIME_check(const ASN1_GENERALIZEDTIME *d)
  223. {
  224. return asn1_generalizedtime_to_tm(NULL, d);
  225. }
  226. int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str)
  227. {
  228. ASN1_GENERALIZEDTIME t;
  229. t.type = V_ASN1_GENERALIZEDTIME;
  230. t.length = strlen(str);
  231. t.data = (unsigned char *)str;
  232. if (ASN1_GENERALIZEDTIME_check(&t)) {
  233. if (s != NULL) {
  234. if (!ASN1_STRING_set((ASN1_STRING *)s,
  235. (unsigned char *)str, t.length))
  236. return 0;
  237. s->type = V_ASN1_GENERALIZEDTIME;
  238. }
  239. return (1);
  240. } else
  241. return (0);
  242. }
  243. ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,
  244. time_t t)
  245. {
  246. return ASN1_GENERALIZEDTIME_adj(s, t, 0, 0);
  247. }
  248. ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_adj(ASN1_GENERALIZEDTIME *s,
  249. time_t t, int offset_day,
  250. long offset_sec)
  251. {
  252. char *p;
  253. struct tm *ts;
  254. struct tm data;
  255. size_t len = 20;
  256. if (s == NULL)
  257. s = M_ASN1_GENERALIZEDTIME_new();
  258. if (s == NULL)
  259. return (NULL);
  260. ts = OPENSSL_gmtime(&t, &data);
  261. if (ts == NULL)
  262. return (NULL);
  263. if (offset_day || offset_sec) {
  264. if (!OPENSSL_gmtime_adj(ts, offset_day, offset_sec))
  265. return NULL;
  266. }
  267. p = (char *)s->data;
  268. if ((p == NULL) || ((size_t)s->length < len)) {
  269. p = OPENSSL_malloc(len);
  270. if (p == NULL) {
  271. ASN1err(ASN1_F_ASN1_GENERALIZEDTIME_ADJ, ERR_R_MALLOC_FAILURE);
  272. return (NULL);
  273. }
  274. if (s->data != NULL)
  275. OPENSSL_free(s->data);
  276. s->data = (unsigned char *)p;
  277. }
  278. BIO_snprintf(p, len, "%04d%02d%02d%02d%02d%02dZ", ts->tm_year + 1900,
  279. ts->tm_mon + 1, ts->tm_mday, ts->tm_hour, ts->tm_min,
  280. ts->tm_sec);
  281. s->length = strlen(p);
  282. s->type = V_ASN1_GENERALIZEDTIME;
  283. #ifdef CHARSET_EBCDIC_not
  284. ebcdic2ascii(s->data, s->data, s->length);
  285. #endif
  286. return (s);
  287. }