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

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. /*
  34.   cmtrng.c -- Support for PSM random number generator and the seeding
  35.               thereof with data from the client.
  36.   Created by mwelch 1999 Oct 21
  37.  */
  38. #include "cmtcmn.h"
  39. #include "cmtutils.h"
  40. #include "messages.h"
  41. #include "rsrcids.h"
  42. #include <string.h>
  43. CMTStatus
  44. CMT_EnsureInitializedRNGBuf(PCMT_CONTROL control)
  45. {
  46.     if (control->rng.outBuf == NULL)
  47.     {
  48.         control->rng.outBuf = (char *) calloc(RNG_OUT_BUFFER_LEN, sizeof(char));
  49.         if (control->rng.outBuf == NULL)
  50.             goto loser;
  51.         control->rng.validOutBytes = 0;
  52.         control->rng.out_cur = control->rng.outBuf;
  53.         control->rng.out_end = control->rng.out_cur + RNG_OUT_BUFFER_LEN;
  54.         
  55.         control->rng.inBuf = (char *) calloc(RNG_IN_BUFFER_LEN, sizeof(char));
  56.         if (control->rng.outBuf == NULL)
  57.             goto loser;
  58.     }
  59.     return CMTSuccess;
  60.  loser:
  61.     if (control->rng.outBuf != NULL)
  62.     {
  63.         free(control->rng.outBuf);
  64.         control->rng.outBuf = NULL;
  65.     }
  66.     if (control->rng.inBuf != NULL)
  67.     {
  68.         free(control->rng.inBuf);
  69.         control->rng.inBuf = NULL;
  70.     }
  71.     return CMTFailure;
  72. }
  73. size_t 
  74. CMT_RequestPSMRandomData(PCMT_CONTROL control, 
  75.                          void *buf, CMUint32 maxbytes)
  76. {
  77.     SingleNumMessage req;
  78.     SingleItemMessage reply;
  79.     CMTItem message;
  80.     size_t rv = 0;
  81.     
  82.     /* Parameter checking */
  83.     if (!control || !buf || (maxbytes == 0))
  84.         goto loser;
  85.     /* Initialization. */
  86.     memset(&reply, 0, sizeof(SingleItemMessage));
  87.     /* Ask PSM for the data. */
  88.     req.value = maxbytes;
  89.     if (CMT_EncodeMessage(SingleNumMessageTemplate, &message, &req) != CMTSuccess)
  90.         goto loser;
  91.     /* Set the message request type */
  92.     message.type = SSM_REQUEST_MESSAGE | SSM_MISC_ACTION | SSM_MISC_GET_RNG_DATA;
  93.     
  94.     /* Send the message and get the response */
  95.     if (CMT_SendMessage(control, &message) == CMTFailure)
  96.         goto loser;
  97.     /* Validate the message reply type */
  98.     if (message.type != (SSM_REPLY_OK_MESSAGE | SSM_MISC_ACTION | SSM_MISC_GET_RNG_DATA))
  99.         goto loser;
  100.     /* Decode message */
  101.     if (CMT_DecodeMessage(SingleItemMessageTemplate, &reply, &message) != CMTSuccess)
  102.         goto loser;
  103.     /* Success - fill the return buf with what we got */
  104.     if (reply.item.len > maxbytes)
  105.         reply.item.len = maxbytes;
  106.     memcpy(buf, reply.item.data, reply.item.len);
  107.     rv = reply.item.len;
  108.  loser:
  109.     if (reply.item.data)
  110.         free(reply.item.data);
  111.     if (message.data)
  112.         free(message.data);
  113.     return rv;
  114. }
  115. size_t 
  116. CMT_GenerateRandomBytes(PCMT_CONTROL control, 
  117.                         void *buf, CMUint32 maxbytes)
  118. {
  119.     CMUint32 remaining = maxbytes;
  120.     CMT_RNGState *rng = &(control->rng);
  121.     char *walk = (char *) buf;
  122.     /* Is there already enough in the incoming cache? */
  123.     while(remaining > rng->validInBytes)
  124.     {
  125.         /* Get what we have on hand. */
  126.         memcpy(walk, rng->in_cur, rng->validInBytes);
  127.         walk += rng->validInBytes;
  128.         remaining -= rng->validInBytes;
  129.         /* Request a buffer from PSM. */
  130.         rng->validInBytes = CMT_RequestPSMRandomData(control, 
  131.                                                      rng->inBuf, 
  132.                                                      RNG_IN_BUFFER_LEN);
  133.         if (rng->validInBytes == 0)
  134.             return (maxbytes - remaining); /* call failed */
  135.         rng->in_cur = rng->inBuf;
  136.     }
  137.     if (remaining > 0)
  138.     {
  139.         memcpy(walk, rng->in_cur, remaining);
  140.         rng->in_cur += remaining;
  141.         rng->validInBytes -= remaining;
  142.     }
  143.     return maxbytes;
  144. }
  145. void
  146. cmt_rng_xor(void *dstBuf, void *srcBuf, int len)
  147. {
  148.     unsigned char *s = (unsigned char*) srcBuf;
  149.     unsigned char *d = (unsigned char*) dstBuf;
  150.     unsigned char tmp;
  151.     int i;
  152.     for(i=0; i<len; i++, s++, d++)
  153.     {
  154.         tmp = *d;
  155.         /* I wish C had circular shift operators. So do others on the team. */
  156.         tmp = ((tmp << 1) | (tmp >> 7));
  157.         *d = tmp ^ *s;
  158.     }
  159. }
  160. CMTStatus 
  161. CMT_RandomUpdate(PCMT_CONTROL control, void *data, size_t numbytes)
  162. {
  163.     size_t dataLeft = numbytes, cacheLeft;
  164.     char *walk = (char *) data;
  165.     if (CMT_EnsureInitializedRNGBuf(control) != CMTSuccess)
  166.         goto loser;
  167.     /* If we have more than what the buffer can handle, wrap around. */
  168.     cacheLeft = (control->rng.out_end - control->rng.out_cur);
  169.     while (dataLeft >= cacheLeft)
  170.     {
  171.         cmt_rng_xor(control->rng.out_cur, walk, cacheLeft);
  172.         walk += cacheLeft;
  173.         dataLeft -= cacheLeft;
  174.         control->rng.out_cur = control->rng.outBuf;
  175.         /* Max out used space */
  176.         control->rng.validOutBytes = cacheLeft = RNG_OUT_BUFFER_LEN;
  177.     }
  178.     /* 
  179.        We now have less seed data available than we do space in the buf.
  180.        Write what we have and update validOutBytes if we're not looping already.
  181.      */
  182.     cmt_rng_xor(control->rng.out_cur, walk, dataLeft);
  183.     control->rng.out_cur += dataLeft;
  184.     if (control->rng.validOutBytes < RNG_OUT_BUFFER_LEN)
  185.         control->rng.validOutBytes += dataLeft;
  186.     return CMTSuccess;
  187.  loser:
  188.     return CMTFailure;
  189. }
  190. size_t
  191. CMT_GetNoise(PCMT_CONTROL control, void *buf, CMUint32 maxbytes)
  192. {
  193.     /* ### mwelch - GetNoise and GenerateRandomBytes can be the 
  194.        same function now, because presumably the RNG is being 
  195.        seeded with environmental noise on the PSM end before we 
  196.        make any of these requests */
  197.     return CMT_GenerateRandomBytes(control, buf, maxbytes);
  198. }
  199. CMTStatus 
  200. CMT_FlushPendingRandomData(PCMT_CONTROL control)
  201. {
  202.     CMTItem message;
  203.     memset(&message, 0, sizeof(CMTItem));
  204.     if (CMT_EnsureInitializedRNGBuf(control) != CMTSuccess)
  205.         return CMTFailure; /* couldn't initialize RNG buffer */
  206.     if (control->rng.validOutBytes == 0)
  207.         return CMTSuccess; /* no random data available == we're flushed */
  208.     /* We have random data available. Send this to PSM.
  209.        We're sending an event, so no reply is needed. */
  210.     message.type = SSM_EVENT_MESSAGE 
  211.         | SSM_MISC_ACTION 
  212.         | SSM_MISC_PUT_RNG_DATA;
  213.     message.len = control->rng.validOutBytes;
  214.     message.data = (unsigned char *) calloc(message.len, sizeof(char));
  215.     if (!message.data)
  216.         goto loser;
  217.     memcpy(message.data, control->rng.outBuf, message.len);
  218.     if (CMT_TransmitMessage(control, &message) == CMTFailure)
  219.         goto loser;
  220.     /* Clear the RNG ring buffer, we've used that data */
  221.     control->rng.out_cur = control->rng.outBuf;
  222.     control->rng.validOutBytes = 0;
  223.     /* zero the buffer, because we XOR in new data */
  224.     memset(control->rng.outBuf, 0, RNG_OUT_BUFFER_LEN);
  225.     goto done;
  226.  loser:
  227.     if (message.data)
  228.         free(message.data);
  229.     return CMTFailure;
  230.  done:
  231.     return CMTSuccess;
  232. }