frontend.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. #include "ctrlconn.h"
  34. #include "dataconn.h"
  35. #include "sslconn.h"
  36. #include "p7cinfo.h"
  37. #include "hashconn.h"
  38. #include "servimpl.h"
  39. #include "newproto.h"
  40. #include "messages.h"
  41. #include "serv.h"
  42. #include "advisor.h"
  43. #include "ssmerrs.h"
  44. #ifdef TIMEBOMB
  45. #include "timebomb.h"
  46. #include "timebomb.c"
  47. #endif
  48. /* The ONLY reason why we can use these macros for both control and
  49.    data connections is that they inherit from the same superclass.
  50.    Do NOT try this at home. */
  51. #define SSMCONNECTION(c) (&(c)->super)
  52. #define SSMRESOURCE(c) (&(c)->super.super)
  53. extern long ssm_ctrl_count;
  54. /* This thread reads the control connection socket and 
  55.  * forwards messages to appropriate queues. 
  56.  */
  57. void SSM_FrontEndThread(void * arg)
  58. {
  59.   PRFileDesc *                socket = NULL;
  60.   SECItem    *                message = NULL;
  61.   SSMControlConnection *      control = NULL;
  62.   PRIntn                      read;
  63.   SSMStatus                    rv = PR_SUCCESS;
  64.   char *                      passwd = NULL;
  65.   char *                      tmp;
  66.   PasswordReply               reply;
  67.   CMTMessageHeader            header;
  68.   
  69.   control = (SSMControlConnection *)arg;
  70.   SSM_RegisterNewThread("ctrl frontend", (SSMResource *) arg);
  71.   SSM_DEBUG("initializing.n");
  72.   if (!control || !control->m_socket) 
  73.     {
  74.       PORT_SetError(PR_INVALID_ARGUMENT_ERROR);
  75.       goto loser;
  76.     }
  77.   control->m_frontEndThread = PR_GetCurrentThread();
  78.   socket = control->m_socket;
  79. #ifdef TIMEBOMB
  80.    if (SSMTimeBombExpired) 
  81.      SSM_CartmanHasExpired(control);
  82. #endif  
  83.     /* start a write thread for this connection */
  84.     SSM_DEBUG("creating accompanying write thread.n");
  85.     control->m_writeThread = SSM_CreateThread(SSMRESOURCE(control),
  86.       SSM_WriteCtrlThread);
  87.     if (!control->m_writeThread) 
  88.     {
  89.         rv = PR_FAILURE;
  90.         goto loser;
  91.     }
  92.     /* initialize connection outgoing queue */
  93.     SSM_DEBUG("Initialize OUT queue for control connectionn");
  94.     SSM_SendQMessage(control->m_controlOutQ, 
  95.                      SSM_PRIORITY_NORMAL,
  96.                      SSM_DATA_PROVIDER_OPEN, 0, NULL,
  97.                      PR_TRUE);
  98.   while ((SSMRESOURCE(control)->m_status == PR_SUCCESS) 
  99.  && (rv == PR_SUCCESS))
  100.     {
  101.       /* read and process data here
  102.        */
  103.       
  104.       SSM_DEBUG("waiting for new message from socket.n");
  105.       read = SSM_ReadThisMany(socket, &header, sizeof(CMTMessageHeader));
  106.       if (read != sizeof(CMTMessageHeader)) 
  107. {
  108.   SSM_DEBUG("Bytes read (%ld) != bytes expected (%ld). (hdr)n",
  109. (long) read, 
  110. (long) sizeof(CMTMessageHeader));
  111.   rv = PR_FAILURE;
  112.   goto loser;
  113. }
  114.       message = SSM_ConstructMessage(PR_ntohl(header.len));
  115.       if (!message)
  116. {
  117.   SSM_DEBUG("Missing message.n");
  118.   rv = PR_OUT_OF_MEMORY_ERROR;
  119.   goto loser;
  120. }
  121.       message->type = (SECItemType) PR_ntohl(header.type);
  122.       /* Read the message body */
  123.       SSM_DEBUG("reading %ld more from socket.n", message->len);
  124.       read = SSM_ReadThisMany(socket, (void *)message->data, message->len);
  125.       if ((unsigned int) read != message->len)
  126. {
  127.   SSM_DEBUG("Bytes read (%ld) != bytes expected (%ld). (msg)n",
  128. (long) read, 
  129. (long) message->len);
  130.   rv = PR_GetError();
  131.   if (rv == PR_SUCCESS) rv = PR_FAILURE;
  132.   goto loser;
  133. }
  134.        
  135.       /* 
  136.        * Message successfully received, now file it to appropriate queue 
  137.        *//*
  138.       if ((message->type & SSM_CATEGORY_MASK) == SSM_EVENT_MESSAGE) {
  139.  */
  140.       switch (message->type &SSM_CATEGORY_MASK) {
  141.       case SSM_EVENT_MESSAGE:
  142. switch (message->type & SSM_TYPE_MASK) {
  143. case SSM_AUTH_EVENT:
  144.   /* deal with authentication message */
  145.   
  146.       /* Decode the the password reply message */
  147.       if (CMT_DecodeMessage(PasswordReplyTemplate, &reply, (CMTItem*)message) != CMTSuccess) {
  148.           goto loser;
  149.       }
  150.   /* Get the lock for the password hash table */
  151.   SSM_LockPasswdTable((SSMConnection *) control);
  152.   rv = SSM_HashRemove(control->m_passwdTable, reply.tokenID, (void **)&tmp);
  153.   if (rv != PR_SUCCESS) { 
  154.     SSM_DEBUG("Passwd request for token %d hasn't been registered.n",
  155.       reply.tokenID);
  156.     SSM_DEBUG("Drop the message, continue waiting...n");
  157.     PR_Free(passwd);
  158.     passwd = NULL;
  159.     goto done_auth;
  160.   }
  161.   if (reply.result != 0) {
  162.       SSM_DEBUG("Error getting password %d.n", reply.result);
  163.       reply.passwd = (char*)SSM_CANCEL_PASSWORD;
  164.   }
  165.   if (!reply.passwd) {
  166.       /* user entered a zero length password, which is valid */
  167.       reply.passwd = "";
  168.   }
  169.   rv = SSM_HashInsert(control->m_passwdTable, reply.tokenID, 
  170.       reply.passwd);
  171.   if (rv != PR_SUCCESS) 
  172.     SSM_DEBUG("%ld: can't enter passwd in hash table.n", control);
  173.   
  174.   passwd = NULL; /* passwd is now pointed to the hash table entry */
  175.   /* notify all waiting threads that the password has arrived */
  176.   SSM_DEBUG("%ld : notify password table that passwd is availablen", 
  177.     control);
  178.   rv = SSM_NotifyAllPasswdTable((SSMConnection *)control);
  179.   if (rv != PR_SUCCESS) {
  180.     SSM_DEBUG("Error on NotifyAll on the password table:%d.n", 
  181.       PR_GetError());
  182.     goto done_auth;
  183.   }
  184. done_auth:
  185.   /* We are done, release the lock */
  186.   SSM_UnlockPasswdTable((SSMConnection *)control);
  187.   break;
  188. case SSM_FILE_PATH_EVENT:
  189.   SSM_HandleFilePathReply(control, message);
  190.   break;
  191. case SSM_PROMPT_EVENT:
  192.   SSM_HandleUserPromptReply(control, message);
  193.   break;
  194. #if 0
  195. case SSM_GET_JAVA_PRINCIPALS_EVENT:
  196.   SSM_HandleGetJavaPrincipalsReply(control, message);
  197.   break;
  198. #endif
  199.         case SSM_MISC_EVENT:
  200.             if ((message->type & SSM_SUBTYPE_MASK) == SSM_MISC_PUT_RNG_DATA)
  201.             {
  202.                 /* Got fodder for the RNG. Seed it. */
  203.                 SSM_DEBUG("Got %ld bytes of RNG seed data.n", message->len);
  204.                 rv = RNG_RandomUpdate(message->data, message->len) 
  205.                     == SECSuccess ? SSM_SUCCESS : SSM_FAILURE;
  206.             }
  207. default:
  208.   break;
  209. }
  210. break;
  211.       default:
  212. /* process the message */
  213. rv = SSMControlConnection_ProcessMessage(control, message);
  214.       }
  215.       /* Free the message */
  216.       SSM_FreeMessage(message);
  217.       message = NULL;
  218.     } /* end of the read-socket loop */
  219.  loser:
  220.   SSM_DEBUG("shutting down, status = %ld.n", rv);
  221.   if (control)
  222.     {
  223.       SSM_ShutdownResource(SSMRESOURCE(control), rv);
  224.       SSM_FreeResource(SSMRESOURCE(control));
  225.     }
  226.   return;
  227. }