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

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.  * Stuff specific to S/MIME policy and interoperability.
  35.  * Depends on PKCS7, but there should be no dependency the other way around.
  36.  *
  37.  * $Id: secmime.c,v 1.1 2000/03/31 19:16:08 relyea%netscape.com Exp $
  38.  */
  39. #include "secmime.h"
  40. #include "secoid.h"
  41. #include "pk11func.h"
  42. #include "ciferfam.h" /* for CIPHER_FAMILY symbols */
  43. #include "secasn1.h"
  44. #include "secitem.h"
  45. #include "cert.h"
  46. #include "key.h"
  47. #include "secerr.h"
  48. typedef struct smime_cipher_map_struct {
  49.     unsigned long cipher;
  50.     SECOidTag algtag;
  51.     SECItem *parms;
  52. } smime_cipher_map;
  53. /*
  54.  * These are macros because I think some subsequent parameters,
  55.  * like those for RC5, will want to use them, too, separately.
  56.  */
  57. #define SMIME_DER_INTVAL_16 SEC_ASN1_INTEGER, 0x01, 0x10
  58. #define SMIME_DER_INTVAL_40 SEC_ASN1_INTEGER, 0x01, 0x28
  59. #define SMIME_DER_INTVAL_64 SEC_ASN1_INTEGER, 0x01, 0x40
  60. #define SMIME_DER_INTVAL_128 SEC_ASN1_INTEGER, 0x02, 0x00, 0x80
  61. #ifdef SMIME_DOES_RC5 /* will be needed; quiet unused warning for now */
  62. static unsigned char smime_int16[] = { SMIME_DER_INTVAL_16 };
  63. #endif
  64. static unsigned char smime_int40[] = { SMIME_DER_INTVAL_40 };
  65. static unsigned char smime_int64[] = { SMIME_DER_INTVAL_64 };
  66. static unsigned char smime_int128[] = { SMIME_DER_INTVAL_128 };
  67. static SECItem smime_rc2p40 = { siBuffer, smime_int40, sizeof(smime_int40) };
  68. static SECItem smime_rc2p64 = { siBuffer, smime_int64, sizeof(smime_int64) };
  69. static SECItem smime_rc2p128 = { siBuffer, smime_int128, sizeof(smime_int128) };
  70. static smime_cipher_map smime_cipher_maps[] = {
  71.     { SMIME_RC2_CBC_40, SEC_OID_RC2_CBC, &smime_rc2p40 },
  72.     { SMIME_RC2_CBC_64, SEC_OID_RC2_CBC, &smime_rc2p64 },
  73.     { SMIME_RC2_CBC_128, SEC_OID_RC2_CBC, &smime_rc2p128 },
  74. #ifdef SMIME_DOES_RC5
  75.     { SMIME_RC5PAD_64_16_40, SEC_OID_RC5_CBC_PAD, &smime_rc5p40 },
  76.     { SMIME_RC5PAD_64_16_64, SEC_OID_RC5_CBC_PAD, &smime_rc5p64 },
  77.     { SMIME_RC5PAD_64_16_128, SEC_OID_RC5_CBC_PAD, &smime_rc5p128 },
  78. #endif
  79.     { SMIME_DES_CBC_56, SEC_OID_DES_CBC, NULL },
  80.     { SMIME_DES_EDE3_168, SEC_OID_DES_EDE3_CBC, NULL },
  81.     { SMIME_FORTEZZA, SEC_OID_FORTEZZA_SKIPJACK, NULL}
  82. };
  83. /*
  84.  * Note, the following value really just needs to be an upper bound
  85.  * on the ciphers.
  86.  */
  87. static const int smime_symmetric_count = sizeof(smime_cipher_maps)
  88.  / sizeof(smime_cipher_map);
  89. static unsigned long *smime_prefs, *smime_newprefs;
  90. static int smime_current_pref_index = 0;
  91. static PRBool smime_prefs_complete = PR_FALSE;
  92. static PRBool smime_prefs_changed = PR_TRUE;
  93. static unsigned long smime_policy_bits = 0;
  94. static int
  95. smime_mapi_by_cipher (unsigned long cipher)
  96. {
  97.     int i;
  98.     for (i = 0; i < smime_symmetric_count; i++) {
  99. if (smime_cipher_maps[i].cipher == cipher)
  100.     break;
  101.     }
  102.     if (i == smime_symmetric_count)
  103. return -1;
  104.     return i;
  105. }
  106. /*
  107.  * this function locally records the user's preference
  108.  */
  109. SECStatus 
  110. SECMIME_EnableCipher(long which, int on)
  111. {
  112.     unsigned long mask;
  113.     if (smime_newprefs == NULL || smime_prefs_complete) {
  114. /*
  115.  * This is either the very first time, or we are starting over.
  116.  */
  117. smime_newprefs = (unsigned long*)PORT_ZAlloc (smime_symmetric_count
  118.       * sizeof(*smime_newprefs));
  119. if (smime_newprefs == NULL)
  120.     return SECFailure;
  121. smime_current_pref_index = 0;
  122. smime_prefs_complete = PR_FALSE;
  123.     }
  124.     mask = which & CIPHER_FAMILYID_MASK;
  125.     if (mask == CIPHER_FAMILYID_MASK) {
  126.      /*
  127.  * This call signifies that all preferences have been set.
  128.  * Move "newprefs" over, after checking first whether or
  129.  * not the new ones are different from the old ones.
  130.  */
  131. if (smime_prefs != NULL) {
  132.     if (PORT_Memcmp (smime_prefs, smime_newprefs,
  133.      smime_symmetric_count * sizeof(*smime_prefs)) == 0)
  134. smime_prefs_changed = PR_FALSE;
  135.     else
  136. smime_prefs_changed = PR_TRUE;
  137.     PORT_Free (smime_prefs);
  138. }
  139. smime_prefs = smime_newprefs;
  140. smime_prefs_complete = PR_TRUE;
  141. return SECSuccess;
  142.     }
  143.     PORT_Assert (mask == CIPHER_FAMILYID_SMIME);
  144.     if (mask != CIPHER_FAMILYID_SMIME) {
  145. /* XXX set an error! */
  146.      return SECFailure;
  147.     }
  148.     if (on) {
  149. PORT_Assert (smime_current_pref_index < smime_symmetric_count);
  150. if (smime_current_pref_index >= smime_symmetric_count) {
  151.     /* XXX set an error! */
  152.     return SECFailure;
  153. }
  154. smime_newprefs[smime_current_pref_index++] = which;
  155.     }
  156.     return SECSuccess;
  157. }
  158. /*
  159.  * this function locally records the export policy
  160.  */
  161. SECStatus 
  162. SECMIME_SetPolicy(long which, int on)
  163. {
  164.     unsigned long mask;
  165.     PORT_Assert ((which & CIPHER_FAMILYID_MASK) == CIPHER_FAMILYID_SMIME);
  166.     if ((which & CIPHER_FAMILYID_MASK) != CIPHER_FAMILYID_SMIME) {
  167. /* XXX set an error! */
  168.      return SECFailure;
  169.     }
  170.     which &= ~CIPHER_FAMILYID_MASK;
  171.     PORT_Assert (which < 32); /* bits in the long */
  172.     if (which >= 32) {
  173. /* XXX set an error! */
  174.      return SECFailure;
  175.     }
  176.     mask = 1UL << which;
  177.     if (on) {
  178.      smime_policy_bits |= mask;
  179.     } else {
  180.      smime_policy_bits &= ~mask;
  181.     }
  182.     return SECSuccess;
  183. }
  184. /*
  185.  * Based on the given algorithm (including its parameters, in some cases!)
  186.  * and the given key (may or may not be inspected, depending on the
  187.  * algorithm), find the appropriate policy algorithm specification
  188.  * and return it.  If no match can be made, -1 is returned.
  189.  */
  190. static long
  191. smime_policy_algorithm (SECAlgorithmID *algid, PK11SymKey *key)
  192. {
  193.     SECOidTag algtag;
  194.     algtag = SECOID_GetAlgorithmTag (algid);
  195.     switch (algtag) {
  196.       case SEC_OID_RC2_CBC:
  197. {
  198.     unsigned int keylen_bits;
  199.     keylen_bits = PK11_GetKeyStrength (key, algid);
  200.     switch (keylen_bits) {
  201.       case 40:
  202. return SMIME_RC2_CBC_40;
  203.       case 64:
  204. return SMIME_RC2_CBC_64;
  205.       case 128:
  206. return SMIME_RC2_CBC_128;
  207.       default:
  208. break;
  209.     }
  210. }
  211. break;
  212.       case SEC_OID_DES_CBC:
  213. return SMIME_DES_CBC_56;
  214.       case SEC_OID_DES_EDE3_CBC:
  215. return SMIME_DES_EDE3_168;
  216.       case SEC_OID_FORTEZZA_SKIPJACK:
  217. return SMIME_FORTEZZA;
  218. #ifdef SMIME_DOES_RC5
  219.       case SEC_OID_RC5_CBC_PAD:
  220. PORT_Assert (0); /* XXX need to pull out parameters and match */
  221. break;
  222. #endif
  223.       default:
  224. break;
  225.     }
  226.     return -1;
  227. }
  228. static PRBool
  229. smime_cipher_allowed (unsigned long which)
  230. {
  231.     unsigned long mask;
  232.     which &= ~CIPHER_FAMILYID_MASK;
  233.     PORT_Assert (which < 32); /* bits per long (min) */
  234.     if (which >= 32)
  235. return PR_FALSE;
  236.     mask = 1UL << which;
  237.     if ((mask & smime_policy_bits) == 0)
  238. return PR_FALSE;
  239.     return PR_TRUE;
  240. }
  241. PRBool
  242. SECMIME_DecryptionAllowed(SECAlgorithmID *algid, PK11SymKey *key)
  243. {
  244.     long which;
  245.     which = smime_policy_algorithm (algid, key);
  246.     if (which < 0)
  247. return PR_FALSE;
  248.     return smime_cipher_allowed ((unsigned long)which);
  249. }
  250. /*
  251.  * Does the current policy allow *any* S/MIME encryption (or decryption)?
  252.  *
  253.  * This tells whether or not *any* S/MIME encryption can be done,
  254.  * according to policy.  Callers may use this to do nicer user interface
  255.  * (say, greying out a checkbox so a user does not even try to encrypt
  256.  * a message when they are not allowed to) or for any reason they want
  257.  * to check whether S/MIME encryption (or decryption, for that matter)
  258.  * may be done.
  259.  *
  260.  * It takes no arguments.  The return value is a simple boolean:
  261.  *   PR_TRUE means encryption (or decryption) is *possible*
  262.  * (but may still fail due to other reasons, like because we cannot
  263.  * find all the necessary certs, etc.; PR_TRUE is *not* a guarantee)
  264.  *   PR_FALSE means encryption (or decryption) is not permitted
  265.  *
  266.  * There are no errors from this routine.
  267.  */
  268. PRBool
  269. SECMIME_EncryptionPossible (void)
  270. {
  271.     if (smime_policy_bits != 0)
  272. return PR_TRUE;
  273.     return PR_FALSE;
  274. }
  275. /*
  276.  * XXX Would like the "parameters" field to be a SECItem *, but the
  277.  * encoder is having trouble with optional pointers to an ANY.  Maybe
  278.  * once that is fixed, can change this back...
  279.  */
  280. typedef struct smime_capability_struct {
  281.     unsigned long cipher; /* local; not part of encoding */
  282.     SECOidTag capIDTag; /* local; not part of encoding */
  283.     SECItem capabilityID;
  284.     SECItem parameters;
  285. } smime_capability;
  286. static const SEC_ASN1Template smime_capability_template[] = {
  287.     { SEC_ASN1_SEQUENCE,
  288.   0, NULL, sizeof(smime_capability) },
  289.     { SEC_ASN1_OBJECT_ID,
  290.   offsetof(smime_capability,capabilityID), },
  291.     { SEC_ASN1_OPTIONAL | SEC_ASN1_ANY,
  292.   offsetof(smime_capability,parameters), },
  293.     { 0, }
  294. };
  295. static const SEC_ASN1Template smime_capabilities_template[] = {
  296.     { SEC_ASN1_SEQUENCE_OF, 0, smime_capability_template }
  297. };
  298. static void
  299. smime_fill_capability (smime_capability *cap)
  300. {
  301.     unsigned long cipher;
  302.     SECOidTag algtag;
  303.     int i;
  304.     algtag = SECOID_FindOIDTag (&(cap->capabilityID));
  305.     for (i = 0; i < smime_symmetric_count; i++) {
  306. if (smime_cipher_maps[i].algtag != algtag)
  307.     continue;
  308. /*
  309.  * XXX If SECITEM_CompareItem allowed NULLs as arguments (comparing
  310.  * 2 NULLs as equal and NULL and non-NULL as not equal), we could
  311.  * use that here instead of all of the following comparison code.
  312.  */
  313. if (cap->parameters.data != NULL) {
  314.     if (smime_cipher_maps[i].parms == NULL)
  315. continue;
  316.     if (cap->parameters.len != smime_cipher_maps[i].parms->len)
  317. continue;
  318.     if (PORT_Memcmp (cap->parameters.data,
  319.      smime_cipher_maps[i].parms->data,
  320.      cap->parameters.len) == 0)
  321. break;
  322. } else if (smime_cipher_maps[i].parms == NULL) {
  323.     break;
  324. }
  325.     }
  326.     if (i == smime_symmetric_count)
  327. cipher = 0;
  328.     else
  329. cipher = smime_cipher_maps[i].cipher;
  330.     cap->cipher = cipher;
  331.     cap->capIDTag = algtag;
  332. }
  333. static long
  334. smime_choose_cipher (CERTCertificate *scert, CERTCertificate **rcerts)
  335. {
  336.     PRArenaPool *poolp;
  337.     long chosen_cipher;
  338.     int *cipher_abilities;
  339.     int *cipher_votes;
  340.     int strong_mapi;
  341.     int rcount, mapi, max, i;
  342. PRBool isFortezza = PK11_FortezzaHasKEA(scert);
  343.     if (smime_policy_bits == 0) {
  344. PORT_SetError (SEC_ERROR_BAD_EXPORT_ALGORITHM);
  345. return -1;
  346.     }
  347.     chosen_cipher = SMIME_RC2_CBC_40; /* the default, LCD */
  348.     poolp = PORT_NewArena (1024); /* XXX what is right value? */
  349.     if (poolp == NULL)
  350. goto done;
  351.     cipher_abilities = (int*)PORT_ArenaZAlloc (poolp,
  352.  smime_symmetric_count * sizeof(int));
  353.     if (cipher_abilities == NULL)
  354. goto done;
  355.     cipher_votes = (int*)PORT_ArenaZAlloc (poolp,
  356.      smime_symmetric_count * sizeof(int));
  357.     if (cipher_votes == NULL)
  358. goto done;
  359.     /*
  360.      * XXX Should have a #define somewhere which specifies default
  361.      * strong cipher.  (Or better, a way to configure, which would
  362.      * take Fortezza into account as well.)
  363.      */
  364.     /* If the user has the Fortezza preference turned on, make
  365.      *  that the strong cipher. Otherwise, use triple-DES. */
  366.     strong_mapi = -1;
  367.     if (isFortezza) {
  368. for(i=0;i < smime_current_pref_index && strong_mapi < 0;i++)
  369. {
  370.     if (smime_prefs[i] == SMIME_FORTEZZA)
  371. strong_mapi = smime_mapi_by_cipher(SMIME_FORTEZZA);
  372. }
  373.     }
  374.     if (strong_mapi == -1)
  375. strong_mapi = smime_mapi_by_cipher (SMIME_DES_EDE3_168);
  376.     PORT_Assert (strong_mapi >= 0);
  377.     for (rcount = 0; rcerts[rcount] != NULL; rcount++) {
  378. SECItem *profile;
  379. smime_capability **caps;
  380. int capi, pref;
  381. SECStatus dstat;
  382. pref = smime_symmetric_count;
  383. profile = CERT_FindSMimeProfile (rcerts[rcount]);
  384. if (profile != NULL && profile->data != NULL && profile->len > 0) {
  385.     caps = NULL;
  386.     dstat = SEC_ASN1DecodeItem (poolp, &caps,
  387. smime_capabilities_template,
  388. profile);
  389.     if (dstat == SECSuccess && caps != NULL) {
  390. for (capi = 0; caps[capi] != NULL; capi++) {
  391.     smime_fill_capability (caps[capi]);
  392.     mapi = smime_mapi_by_cipher (caps[capi]->cipher);
  393.     if (mapi >= 0) {
  394. cipher_abilities[mapi]++;
  395. cipher_votes[mapi] += pref;
  396. --pref;
  397.     }
  398. }
  399.     }
  400. } else {
  401.     SECKEYPublicKey *key;
  402.     unsigned int pklen_bits;
  403.     /*
  404.      * XXX This is probably only good for RSA keys.  What I would
  405.      * really like is a function to just say;  Is the public key in
  406.      * this cert an export-length key?  Then I would not have to
  407.      * know things like the value 512, or the kind of key, or what
  408.      * a subjectPublicKeyInfo is, etc.
  409.      */
  410.     key = CERT_ExtractPublicKey (rcerts[rcount]);
  411.     if (key != NULL) {
  412. pklen_bits = SECKEY_PublicKeyStrength (key) * 8;
  413. SECKEY_DestroyPublicKey (key);
  414. if (pklen_bits > 512) {
  415.     cipher_abilities[strong_mapi]++;
  416.     cipher_votes[strong_mapi] += pref;
  417. }
  418.     }
  419. }
  420. if (profile != NULL)
  421.     SECITEM_FreeItem (profile, PR_TRUE);
  422.     }
  423.     max = 0;
  424.     for (mapi = 0; mapi < smime_symmetric_count; mapi++) {
  425. if (cipher_abilities[mapi] != rcount)
  426.     continue;
  427. if (! smime_cipher_allowed (smime_cipher_maps[mapi].cipher))
  428.     continue;
  429. if (!isFortezza  && (smime_cipher_maps[mapi].cipher == SMIME_FORTEZZA))
  430. continue;
  431. if (cipher_votes[mapi] > max) {
  432.     chosen_cipher = smime_cipher_maps[mapi].cipher;
  433.     max = cipher_votes[mapi];
  434. } /* XXX else if a tie, let scert break it? */
  435.     }
  436. done:
  437.     if (poolp != NULL)
  438. PORT_FreeArena (poolp, PR_FALSE);
  439.     return chosen_cipher;
  440. }
  441. /*
  442.  * XXX This is a hack for now to satisfy our current interface.
  443.  * Eventually, with more parameters needing to be specified, just
  444.  * looking up the keysize is not going to be sufficient.
  445.  */
  446. static int
  447. smime_keysize_by_cipher (unsigned long which)
  448. {
  449.     int keysize;
  450.     switch (which) {
  451.       case SMIME_RC2_CBC_40:
  452. keysize = 40;
  453. break;
  454.       case SMIME_RC2_CBC_64:
  455. keysize = 64;
  456. break;
  457.       case SMIME_RC2_CBC_128:
  458. keysize = 128;
  459. break;
  460. #ifdef SMIME_DOES_RC5
  461.       case SMIME_RC5PAD_64_16_40:
  462.       case SMIME_RC5PAD_64_16_64:
  463.       case SMIME_RC5PAD_64_16_128:
  464. /* XXX See comment above; keysize is not enough... */
  465. PORT_Assert (0);
  466. PORT_SetError (SEC_ERROR_INVALID_ALGORITHM);
  467. keysize = -1;
  468. break;
  469. #endif
  470.       case SMIME_DES_CBC_56:
  471.       case SMIME_DES_EDE3_168:
  472.       case SMIME_FORTEZZA:
  473. /*
  474.  * These are special; since the key size is fixed, we actually
  475.  * want to *avoid* specifying a key size.
  476.  */
  477. keysize = 0;
  478. break;
  479.       default:
  480. keysize = -1;
  481. break;
  482.     }
  483.     return keysize;
  484. }
  485. /*
  486.  * Start an S/MIME encrypting context.
  487.  *
  488.  * "scert" is the cert for the sender.  It will be checked for validity.
  489.  * "rcerts" are the certs for the recipients.  They will also be checked.
  490.  *
  491.  * "certdb" is the cert database to use for verifying the certs.
  492.  * It can be NULL if a default database is available (like in the client).
  493.  *
  494.  * This function already does all of the stuff specific to S/MIME protocol
  495.  * and local policy; the return value just needs to be passed to
  496.  * SEC_PKCS7Encode() or to SEC_PKCS7EncoderStart() to create the encoded data,
  497.  * and finally to SEC_PKCS7DestroyContentInfo().
  498.  *
  499.  * An error results in a return value of NULL and an error set.
  500.  * (Retrieve specific errors via PORT_GetError()/XP_GetError().)
  501.  */
  502. SEC_PKCS7ContentInfo *
  503. SECMIME_CreateEncrypted(CERTCertificate *scert,
  504. CERTCertificate **rcerts,
  505. CERTCertDBHandle *certdb,
  506. SECKEYGetPasswordKey pwfn,
  507. void *pwfn_arg)
  508. {
  509.     SEC_PKCS7ContentInfo *cinfo;
  510.     long cipher;
  511.     SECOidTag encalg;
  512.     int keysize;
  513.     int mapi, rci;
  514.     cipher = smime_choose_cipher (scert, rcerts);
  515.     if (cipher < 0)
  516. return NULL;
  517.     mapi = smime_mapi_by_cipher (cipher);
  518.     if (mapi < 0)
  519. return NULL;
  520.     /*
  521.      * XXX This is stretching it -- CreateEnvelopedData should probably
  522.      * take a cipher itself of some sort, because we cannot know what the
  523.      * future will bring in terms of parameters for each type of algorithm.
  524.      * For example, just an algorithm and keysize is *not* sufficient to
  525.      * fully specify the usage of RC5 (which also needs to know rounds and
  526.      * block size).  Work this out into a better API!
  527.      */
  528.     encalg = smime_cipher_maps[mapi].algtag;
  529.     keysize = smime_keysize_by_cipher (cipher);
  530.     if (keysize < 0)
  531. return NULL;
  532.     cinfo = SEC_PKCS7CreateEnvelopedData (scert, certUsageEmailRecipient,
  533.   certdb, encalg, keysize,
  534.   pwfn, pwfn_arg);
  535.     if (cinfo == NULL)
  536. return NULL;
  537.     for (rci = 0; rcerts[rci] != NULL; rci++) {
  538. if (rcerts[rci] == scert)
  539.     continue;
  540. if (SEC_PKCS7AddRecipient (cinfo, rcerts[rci], certUsageEmailRecipient,
  541.    NULL) != SECSuccess) {
  542.     SEC_PKCS7DestroyContentInfo (cinfo);
  543.     return NULL;
  544. }
  545.     }
  546.     return cinfo;
  547. }
  548. static smime_capability **smime_capabilities;
  549. static SECItem *smime_encoded_caps;
  550. static PRBool lastUsedFortezza;
  551. static SECStatus
  552. smime_init_caps (PRBool isFortezza)
  553. {
  554.     smime_capability *cap;
  555.     smime_cipher_map *map;
  556.     SECOidData *oiddata;
  557.     SECStatus rv;
  558.     int i, capIndex;
  559.     if (smime_encoded_caps != NULL 
  560. && (! smime_prefs_changed) 
  561. && lastUsedFortezza == isFortezza)
  562. return SECSuccess;
  563.     if (smime_encoded_caps != NULL) {
  564. SECITEM_FreeItem (smime_encoded_caps, PR_TRUE);
  565. smime_encoded_caps = NULL;
  566.     }
  567.     if (smime_capabilities == NULL) {
  568. smime_capabilities = (smime_capability**)PORT_ZAlloc (
  569.   (smime_symmetric_count + 1)
  570.   * sizeof(smime_capability *));
  571. if (smime_capabilities == NULL)
  572.     return SECFailure;
  573.     }
  574.     rv = SECFailure;
  575.     /* 
  576.        The process of creating the encoded PKCS7 cipher capability list
  577.        involves two basic steps: 
  578.        (a) Convert our internal representation of cipher preferences 
  579.            (smime_prefs) into an array containing cipher OIDs and 
  580.    parameter data (smime_capabilities). This step is
  581.    performed here.
  582.        (b) Encode, using ASN.1, the cipher information in 
  583.            smime_capabilities, leaving the encoded result in 
  584.    smime_encoded_caps.
  585.        (In the process of performing (a), Lisa put in some optimizations
  586.        which allow us to avoid needlessly re-populating elements in 
  587.        smime_capabilities as we walk through smime_prefs.)
  588.        We want to use separate loop variables for smime_prefs and
  589.        smime_capabilities because in the case where the Skipjack cipher 
  590.        is turned on in the prefs, but where we don't want to include 
  591.        Skipjack in the encoded capabilities (presumably due to using a 
  592.        non-fortezza cert when sending a message), we want to avoid creating
  593.        an empty element in smime_capabilities. This would otherwise cause 
  594.        the encoding step to produce an empty set, since Skipjack happens 
  595.        to be the first cipher in smime_prefs, if it is turned on.
  596.     */
  597.     for (i = 0, capIndex = 0; i < smime_current_pref_index; i++, capIndex++) {
  598. int mapi;
  599. /* Get the next cipher preference in smime_prefs. */
  600. mapi = smime_mapi_by_cipher (smime_prefs[i]);
  601. if (mapi < 0)
  602.     break;
  603. /* Find the corresponding entry in the cipher map. */
  604. PORT_Assert (mapi < smime_symmetric_count);
  605. map = &(smime_cipher_maps[mapi]);
  606. /* If we're using a non-Fortezza cert, only advertise non-Fortezza
  607.    capabilities. (We advertise all capabilities if we have a 
  608.    Fortezza cert.) */
  609. if ((!isFortezza) && (map->cipher == SMIME_FORTEZZA))
  610. {
  611.     capIndex--; /* we want to visit the same caps index entry next time */
  612.     continue;
  613. }
  614. /*
  615.  * Convert the next preference found in smime_prefs into an
  616.  * smime_capability.
  617.  */
  618. cap = smime_capabilities[capIndex];
  619. if (cap == NULL) {
  620.     cap = (smime_capability*)PORT_ZAlloc (sizeof(smime_capability));
  621.     if (cap == NULL)
  622. break;
  623.     smime_capabilities[capIndex] = cap;
  624. } else if (cap->cipher == smime_prefs[i]) {
  625.     continue; /* no change to this one */
  626. }
  627. cap->capIDTag = map->algtag;
  628. oiddata = SECOID_FindOIDByTag (map->algtag);
  629. if (oiddata == NULL)
  630.     break;
  631. if (cap->capabilityID.data != NULL) {
  632.     SECITEM_FreeItem (&(cap->capabilityID), PR_FALSE);
  633.     cap->capabilityID.data = NULL;
  634.     cap->capabilityID.len = 0;
  635. }
  636. rv = SECITEM_CopyItem (NULL, &(cap->capabilityID), &(oiddata->oid));
  637. if (rv != SECSuccess)
  638.     break;
  639. if (map->parms == NULL) {
  640.     cap->parameters.data = NULL;
  641.     cap->parameters.len = 0;
  642. } else {
  643.     cap->parameters.data = map->parms->data;
  644.     cap->parameters.len = map->parms->len;
  645. }
  646. cap->cipher = smime_prefs[i];
  647.     }
  648.     if (i != smime_current_pref_index)
  649. return rv;
  650.     while (capIndex < smime_symmetric_count) {
  651. cap = smime_capabilities[capIndex];
  652. if (cap != NULL) {
  653.     SECITEM_FreeItem (&(cap->capabilityID), PR_FALSE);
  654.     PORT_Free (cap);
  655. }
  656. smime_capabilities[capIndex] = NULL;
  657. capIndex++;
  658.     }
  659.     smime_capabilities[capIndex] = NULL;
  660.     smime_encoded_caps = SEC_ASN1EncodeItem (NULL, NULL, &smime_capabilities,
  661.      smime_capabilities_template);
  662.     if (smime_encoded_caps == NULL)
  663. return SECFailure;
  664.     lastUsedFortezza = isFortezza;
  665.     return SECSuccess;
  666. }
  667. static SECStatus
  668. smime_add_profile (CERTCertificate *cert, SEC_PKCS7ContentInfo *cinfo)
  669. {
  670.     PRBool isFortezza = PR_FALSE;
  671.     PORT_Assert (smime_prefs_complete);
  672.     if (! smime_prefs_complete)
  673. return SECFailure;
  674.     /* See if the sender's cert specifies Fortezza key exchange. */
  675.     if (cert != NULL)
  676. isFortezza = PK11_FortezzaHasKEA(cert);
  677.     /* For that matter, if capabilities haven't been initialized yet,
  678.        do so now. */
  679.     if (isFortezza != lastUsedFortezza || smime_encoded_caps == NULL || smime_prefs_changed) {
  680. SECStatus rv;
  681. rv = smime_init_caps(isFortezza);
  682. if (rv != SECSuccess)
  683.     return rv;
  684. PORT_Assert (smime_encoded_caps != NULL);
  685.     }
  686.     return SEC_PKCS7AddSignedAttribute (cinfo, SEC_OID_PKCS9_SMIME_CAPABILITIES,
  687. smime_encoded_caps);
  688. }
  689. /*
  690.  * Start an S/MIME signing context.
  691.  *
  692.  * "scert" is the cert that will be used to sign the data.  It will be
  693.  * checked for validity.
  694.  *
  695.  * "ecert" is the signer's encryption cert.  If it is different from
  696.  * scert, then it will be included in the signed message so that the
  697.  * recipient can save it for future encryptions.
  698.  *
  699.  * "certdb" is the cert database to use for verifying the cert.
  700.  * It can be NULL if a default database is available (like in the client).
  701.  * 
  702.  * "digestalg" names the digest algorithm (e.g. SEC_OID_SHA1).
  703.  * XXX There should be SECMIME functions for hashing, or the hashing should
  704.  * be built into this interface, which we would like because we would
  705.  * support more smartcards that way, and then this argument should go away.)
  706.  *
  707.  * "digest" is the actual digest of the data.  It must be provided in
  708.  * the case of detached data or NULL if the content will be included.
  709.  *
  710.  * This function already does all of the stuff specific to S/MIME protocol
  711.  * and local policy; the return value just needs to be passed to
  712.  * SEC_PKCS7Encode() or to SEC_PKCS7EncoderStart() to create the encoded data,
  713.  * and finally to SEC_PKCS7DestroyContentInfo().
  714.  *
  715.  * An error results in a return value of NULL and an error set.
  716.  * (Retrieve specific errors via PORT_GetError()/XP_GetError().)
  717.  */
  718. SEC_PKCS7ContentInfo *
  719. SECMIME_CreateSigned (CERTCertificate *scert,
  720.       CERTCertificate *ecert,
  721.       CERTCertDBHandle *certdb,
  722.       SECOidTag digestalg,
  723.       SECItem *digest,
  724.       SECKEYGetPasswordKey pwfn,
  725.       void *pwfn_arg)
  726. {
  727.     SEC_PKCS7ContentInfo *cinfo;
  728.     SECStatus rv;
  729.     /* See note in header comment above about digestalg. */
  730.     PORT_Assert (digestalg == SEC_OID_SHA1);
  731.     cinfo = SEC_PKCS7CreateSignedData (scert, certUsageEmailSigner,
  732.        certdb, digestalg, digest,
  733.        pwfn, pwfn_arg);
  734.     if (cinfo == NULL)
  735. return NULL;
  736.     if (SEC_PKCS7IncludeCertChain (cinfo, NULL) != SECSuccess) {
  737. SEC_PKCS7DestroyContentInfo (cinfo);
  738. return NULL;
  739.     }
  740.     /* if the encryption cert and the signing cert differ, then include
  741.      * the encryption cert too.
  742.      */
  743.     /* it is ok to compare the pointers since we ref count, and the same
  744.      * cert will always have the same pointer
  745.      */
  746.     if ( ( ecert != NULL ) && ( ecert != scert ) ) {
  747. rv = SEC_PKCS7AddCertificate(cinfo, ecert);
  748. if ( rv != SECSuccess ) {
  749.     SEC_PKCS7DestroyContentInfo (cinfo);
  750.     return NULL;
  751. }
  752.     }
  753.     /*
  754.      * Add the signing time.  But if it fails for some reason,
  755.      * may as well not give up altogether -- just assert.
  756.      */
  757.     rv = SEC_PKCS7AddSigningTime (cinfo);
  758.     PORT_Assert (rv == SECSuccess);
  759.     /*
  760.      * Add the email profile.  Again, if it fails for some reason,
  761.      * may as well not give up altogether -- just assert.
  762.      */
  763.     rv = smime_add_profile (ecert, cinfo);
  764.     PORT_Assert (rv == SECSuccess);
  765.     return cinfo;
  766. }