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

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 <plarena.h>
  34. #include <prio.h>
  35. #include <prprf.h>
  36. #include <seccomon.h>
  37. #include <secmod.h>
  38. #include <jar.h>
  39. #include <secutil.h>
  40. /* These are installation functions that make calls to the security library.
  41.  * We don't want to include security include files in the C++ code too much.
  42.  */
  43. static char* PR_fgets(char *buf, int size, PRFileDesc *file);
  44. /***************************************************************************
  45.  *
  46.  * P k 1 1 I n s t a l l _ A d d N e w M o d u l e
  47.  */
  48. int
  49. Pk11Install_AddNewModule(char* moduleName, char* dllPath,
  50.                               unsigned long defaultMechanismFlags,
  51.                               unsigned long cipherEnableFlags)
  52. {
  53. return (SECMOD_AddNewModule(moduleName, dllPath,
  54. SECMOD_PubMechFlagstoInternal(defaultMechanismFlags),
  55. SECMOD_PubCipherFlagstoInternal(cipherEnableFlags))
  56. == SECSuccess) ? 0 : -1;
  57. }
  58. /*************************************************************************
  59.  *
  60.  * P k 1 1 I n s t a l l _ U s e r V e r i f y J a r
  61.  *
  62.  * Gives the user feedback on the signatures of a JAR files, asks them
  63.  * whether they actually want to continue.
  64.  * Assumes the jar structure has already been created and is valid.
  65.  * Returns 0 if the user wants to continue the installation, nonzero
  66.  * if the user wishes to abort.
  67.  */
  68. short
  69. Pk11Install_UserVerifyJar(JAR *jar, PRFileDesc *out, PRBool query)
  70. {
  71. JAR_Context *ctx;
  72. JAR_Cert *fing;
  73. JAR_Item *item;
  74. char stdinbuf[80];
  75. int count=0;
  76. CERTCertificate *cert, *prev=NULL;
  77. PR_fprintf(out, "nThis installation JAR file was signed by:n");
  78. ctx = JAR_find(jar, NULL, jarTypeSign);
  79. while(JAR_find_next(ctx, &item) >= 0 ) {
  80. fing = (JAR_Cert*) item->data;
  81. cert = fing->cert;
  82. if(cert==prev) {
  83. continue;
  84. }
  85. count++;
  86. PR_fprintf(out, "----------------------------------------------n");
  87. if(cert) {
  88. if(cert->nickname) {
  89. PR_fprintf(out, "**NICKNAME**n%sn", cert->nickname);
  90. }
  91. if(cert->subjectName) {
  92. PR_fprintf(out, "**SUBJECT NAME**n%sn", cert->subjectName); }
  93. if(cert->issuerName) {
  94. PR_fprintf(out, "**ISSUER NAME**n%sn", cert->issuerName);
  95. }
  96. } else {
  97. PR_fprintf(out, "No matching certificate could be found.n");
  98. }
  99. PR_fprintf(out, "----------------------------------------------nn");
  100. prev=cert;
  101. }
  102. JAR_find_end(ctx);
  103. if(count==0) {
  104. PR_fprintf(out, "No signatures found: JAR FILE IS UNSIGNED.n");
  105. }
  106. if(query) {
  107. PR_fprintf(out,
  108. "Do you wish to continue this installation? (y/n) ");
  109. if(PR_fgets(stdinbuf, 80, PR_STDIN) != NULL) {
  110. char *response;
  111. if( (response=strtok(stdinbuf, " tnr")) ) {
  112. if( !PL_strcasecmp(response, "y") ||
  113. !PL_strcasecmp(response, "yes") ) {
  114. return 0;
  115. }
  116. }
  117. }
  118. }
  119. return 1;
  120. }
  121. /**************************************************************************
  122.  *
  123.  * P R _ f g e t s
  124.  *
  125.  * fgets implemented with NSPR.
  126.  */
  127. static char*
  128. PR_fgets(char *buf, int size, PRFileDesc *file)
  129. {
  130.     int i;
  131.     int status;
  132.     char c;
  133.     i=0;
  134.     while(i < size-1) {
  135.         status = PR_Read(file, (void*) &c, 1);
  136.         if(status==-1) {
  137.             return NULL;
  138.         } else if(status==0) {
  139.             break;
  140.         }
  141.         buf[i++] = c;
  142.         if(c=='n') {
  143.             break;
  144.         }
  145.     }
  146.     buf[i]='';
  147.     return buf;
  148. }
  149. /**************************************************************************
  150.  *
  151.  * m y S E C U _ E r r o r S t r i n g
  152.  *
  153.  */
  154. char* mySECU_ErrorString(int16 errnum)
  155. {
  156. return SECU_Strerror(errnum);
  157. }