Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

a_gentm.c 7.0 KiB

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