dertime.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:10k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #include "prtypes.h"
  34. #include "prtime.h"
  35. #include "secder.h"
  36. #include "prlong.h"
  37. #include "secerr.h"
  38. #define HIDIGIT(v) (((v) / 10) + '0')
  39. #define LODIGIT(v) (((v) % 10) + '0')
  40. #define C_SINGLE_QUOTE '47'
  41. #define DIGITHI(dig) (((dig) - '0') * 10)
  42. #define DIGITLO(dig) ((dig) - '0')
  43. #define ISDIGIT(dig) (((dig) >= '0') && ((dig) <= '9'))
  44. #define CAPTURE(var,p,label)   
  45. {   
  46.     if (!ISDIGIT((p)[0]) || !ISDIGIT((p)[1])) goto label; 
  47.     (var) = ((p)[0] - '0') * 10 + ((p)[1] - '0');   
  48. }
  49. #define SECMIN ((time_t) 60L)
  50. #define SECHOUR (60L*SECMIN)
  51. #define SECDAY (24L*SECHOUR)
  52. #define SECYEAR (365L*SECDAY)
  53. static long monthToDayInYear[12] = {
  54.     0,
  55.     31,
  56.     31+28,
  57.     31+28+31,
  58.     31+28+31+30,
  59.     31+28+31+30+31,
  60.     31+28+31+30+31+30,
  61.     31+28+31+30+31+30+31,
  62.     31+28+31+30+31+30+31+31,
  63.     31+28+31+30+31+30+31+31+30,
  64.     31+28+31+30+31+30+31+31+30+31,
  65.     31+28+31+30+31+30+31+31+30+31+30,
  66. };
  67. /* gmttime must contains UTC time in micro-seconds unit */
  68. SECStatus
  69. DER_TimeToUTCTime(SECItem *dst, int64 gmttime)
  70. {
  71.     PRExplodedTime printableTime;
  72.     unsigned char *d;
  73.     dst->len = 13;
  74.     dst->data = d = (unsigned char*) PORT_Alloc(13);
  75.     if (!d) {
  76. return SECFailure;
  77.     }
  78.     /* Convert an int64 time to a printable format.  */
  79.     PR_ExplodeTime(gmttime, PR_GMTParameters, &printableTime);
  80.     /* The month in UTC time is base one */
  81.     printableTime.tm_month++;
  82.     /* UTC time does not handle the years before 1950 */
  83.     if (printableTime.tm_year < 1950)
  84.     return SECFailure;
  85.     /* remove the century since it's added to the tm_year by the 
  86.        PR_ExplodeTime routine, but is not needed for UTC time */
  87.     printableTime.tm_year %= 100; 
  88.     d[0] = HIDIGIT(printableTime.tm_year);
  89.     d[1] = LODIGIT(printableTime.tm_year);
  90.     d[2] = HIDIGIT(printableTime.tm_month);
  91.     d[3] = LODIGIT(printableTime.tm_month);
  92.     d[4] = HIDIGIT(printableTime.tm_mday);
  93.     d[5] = LODIGIT(printableTime.tm_mday);
  94.     d[6] = HIDIGIT(printableTime.tm_hour);
  95.     d[7] = LODIGIT(printableTime.tm_hour);
  96.     d[8] = HIDIGIT(printableTime.tm_min);
  97.     d[9] = LODIGIT(printableTime.tm_min);
  98.     d[10] = HIDIGIT(printableTime.tm_sec);
  99.     d[11] = LODIGIT(printableTime.tm_sec);
  100.     d[12] = 'Z';
  101.     return SECSuccess;
  102. }
  103. SECStatus
  104. DER_AsciiToTime(int64 *dst, char *string)
  105. {
  106.     long year, month, mday, hour, minute, second, hourOff, minOff, days;
  107.     int64 result, tmp1, tmp2;
  108.     
  109.     /* Verify time is formatted properly and capture information */
  110.     second = 0;
  111.     hourOff = 0;
  112.     minOff = 0;
  113.     CAPTURE(year,string+0,loser);
  114.     if (year < 50) {
  115. /* ASSUME that year # is in the 2000's, not the 1900's */
  116. year += 100;
  117.     }
  118.     CAPTURE(month,string+2,loser);
  119.     if ((month == 0) || (month > 12)) goto loser;
  120.     CAPTURE(mday,string+4,loser);
  121.     if ((mday == 0) || (mday > 31)) goto loser;
  122.     CAPTURE(hour,string+6,loser);
  123.     if (hour > 23) goto loser;
  124.     CAPTURE(minute,string+8,loser);
  125.     if (minute > 59) goto loser;
  126.     if (ISDIGIT(string[10])) {
  127. CAPTURE(second,string+10,loser);
  128. if (second > 59) goto loser;
  129. string += 2;
  130.     }
  131.     if (string[10] == '+') {
  132. CAPTURE(hourOff,string+11,loser);
  133. if (hourOff > 23) goto loser;
  134. CAPTURE(minOff,string+13,loser);
  135. if (minOff > 59) goto loser;
  136.     } else if (string[10] == '-') {
  137. CAPTURE(hourOff,string+11,loser);
  138. if (hourOff > 23) goto loser;
  139. hourOff = -hourOff;
  140. CAPTURE(minOff,string+13,loser);
  141. if (minOff > 59) goto loser;
  142. minOff = -minOff;
  143.     } else if (string[10] != 'Z') {
  144. goto loser;
  145.     }
  146.     
  147.     
  148.     /* Convert pieces back into a single value year  */
  149.     LL_I2L(tmp1, (year-70L));
  150.     LL_I2L(tmp2, SECYEAR);
  151.     LL_MUL(result, tmp1, tmp2);
  152.     
  153.     LL_I2L(tmp1, ( (mday-1L)*SECDAY + hour*SECHOUR + minute*SECMIN -
  154.   hourOff*SECHOUR - minOff*SECMIN + second ) );
  155.     LL_ADD(result, result, tmp1);
  156.     /*
  157.     ** Have to specially handle the day in the month and the year, to
  158.     ** take into account leap days. The return time value is in
  159.     ** seconds since January 1st, 12:00am 1970, so start examining
  160.     ** the time after that. We can't represent a time before that.
  161.     */
  162.     /* Using two digit years, we can only represent dates from 1970
  163.        to 2069. As a result, we cannot run into the leap year rule
  164.        that states that 1700, 2100, etc. are not leap years (but 2000
  165.        is). In other words, there are no years in the span of time
  166.        that we can represent that are == 0 mod 4 but are not leap
  167.        years. Whew.
  168.        */
  169.     days = monthToDayInYear[month-1];
  170.     days += (year - 68)/4;
  171.     if (((year % 4) == 0) && (month < 3)) {
  172. days--;
  173.     }
  174.    
  175.     LL_I2L(tmp1, (days * SECDAY) );
  176.     LL_ADD(result, result, tmp1 );
  177.     /* convert to micro seconds */
  178.     LL_I2L(tmp1, PR_USEC_PER_SEC);
  179.     LL_MUL(result, result, tmp1);
  180.     *dst = result;
  181.     return SECSuccess;
  182.   loser:
  183.     PORT_SetError(SEC_ERROR_INVALID_TIME);
  184.     return SECFailure;
  185. }
  186. SECStatus
  187. DER_UTCTimeToTime(int64 *dst, SECItem *time)
  188. {
  189.     return DER_AsciiToTime(dst, (char*) time->data);
  190. }
  191. /*
  192.    gmttime must contains UTC time in micro-seconds unit.
  193.    Note: the caller should make sure that Generalized time
  194.    should only be used for certifiate validities after the
  195.    year 2049.  Otherwise, UTC time should be used.  This routine
  196.    does not check this case, since it can be used to encode
  197.    certificate extension, which does not have this restriction. 
  198.  */
  199. SECStatus
  200. DER_TimeToGeneralizedTime(SECItem *dst, int64 gmttime)
  201. {
  202.     PRExplodedTime printableTime;
  203.     unsigned char *d;
  204.     dst->len = 15;
  205.     dst->data = d = (unsigned char*) PORT_Alloc(15);
  206.     if (!d) {
  207. return SECFailure;
  208.     }
  209.     /*Convert a int64 time to a printable format. This is a temporary call
  210.   until we change to NSPR 2.0
  211.      */
  212.     PR_ExplodeTime(gmttime, PR_GMTParameters, &printableTime);
  213.     /* The month in Generalized time is base one */
  214.     printableTime.tm_month++;
  215.     d[0] = (printableTime.tm_year /1000) + '0';
  216.     d[1] = ((printableTime.tm_year % 1000) / 100) + '0';
  217.     d[2] = ((printableTime.tm_year % 100) / 10) + '0';
  218.     d[3] = (printableTime.tm_year % 10) + '0';
  219.     d[4] = HIDIGIT(printableTime.tm_month);
  220.     d[5] = LODIGIT(printableTime.tm_month);
  221.     d[6] = HIDIGIT(printableTime.tm_mday);
  222.     d[7] = LODIGIT(printableTime.tm_mday);
  223.     d[8] = HIDIGIT(printableTime.tm_hour);
  224.     d[9] = LODIGIT(printableTime.tm_hour);
  225.     d[10] = HIDIGIT(printableTime.tm_min);
  226.     d[11] = LODIGIT(printableTime.tm_min);
  227.     d[12] = HIDIGIT(printableTime.tm_sec);
  228.     d[13] = LODIGIT(printableTime.tm_sec);
  229.     d[14] = 'Z';
  230.     return SECSuccess;
  231. }
  232. /*
  233.     The caller should make sure that the generalized time should only
  234.     be used for the certificate validity after the year 2051; otherwise,
  235.     the certificate should be consider invalid!?
  236.  */
  237. SECStatus
  238. DER_GeneralizedTimeToTime(int64 *dst, SECItem *time)
  239. {
  240.     PRExplodedTime genTime;
  241.     char *string;
  242.     long hourOff, minOff;
  243.     uint16 century;
  244.     string = (char *)time->data;
  245.     PORT_Memset (&genTime, 0, sizeof (genTime));
  246.     /* Verify time is formatted properly and capture information */
  247.     hourOff = 0;
  248.     minOff = 0;
  249.     CAPTURE(century, string+0, loser);
  250.     century *= 100;
  251.     CAPTURE(genTime.tm_year,string+2,loser);
  252.     genTime.tm_year += century;
  253.     CAPTURE(genTime.tm_month,string+4,loser);
  254.     if ((genTime.tm_month == 0) || (genTime.tm_month > 12)) goto loser;
  255.     /* NSPR month base is 0 */
  256.     --genTime.tm_month;
  257.     
  258.     CAPTURE(genTime.tm_mday,string+6,loser);
  259.     if ((genTime.tm_mday == 0) || (genTime.tm_mday > 31)) goto loser;
  260.     
  261.     CAPTURE(genTime.tm_hour,string+8,loser);
  262.     if (genTime.tm_hour > 23) goto loser;
  263.     
  264.     CAPTURE(genTime.tm_min,string+10,loser);
  265.     if (genTime.tm_min > 59) goto loser;
  266.     
  267.     if (ISDIGIT(string[12])) {
  268. CAPTURE(genTime.tm_sec,string+12,loser);
  269. if (genTime.tm_sec > 59) goto loser;
  270. string += 2;
  271.     }
  272.     if (string[12] == '+') {
  273. CAPTURE(hourOff,string+13,loser);
  274. if (hourOff > 23) goto loser;
  275. CAPTURE(minOff,string+15,loser);
  276. if (minOff > 59) goto loser;
  277.     } else if (string[12] == '-') {
  278. CAPTURE(hourOff,string+13,loser);
  279. if (hourOff > 23) goto loser;
  280. hourOff = -hourOff;
  281. CAPTURE(minOff,string+15,loser);
  282. if (minOff > 59) goto loser;
  283. minOff = -minOff;
  284.     } else if (string[12] != 'Z') {
  285. goto loser;
  286.     }
  287.     /* Since the values of hourOff and minOff are small, there will
  288.        be no loss of data by the conversion to int8 */
  289.     /* Convert the GMT offset to seconds and save it it genTime
  290.        for the implode time process */
  291.     genTime.tm_params.tp_gmt_offset = (PRInt32)((hourOff * 60L + minOff) * 60L);
  292.     *dst = PR_ImplodeTime (&genTime);
  293.     return SECSuccess;
  294.   loser:
  295.     PORT_SetError(SEC_ERROR_INVALID_TIME);
  296.     return SECFailure;
  297. }