summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/extensions/smime/nsMsgComposeSecure.cpp
blob: 4ecf73783dc5a671e0a3607eae2e6be45626b508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsMsgComposeSecure.h"

#include "ScopedNSSTypes.h"
#include "cert.h"
#include "keyhi.h"
#include "mozilla/RefPtr.h"
#include "mozilla/Components.h"
#include "mozilla/mailnews/MimeEncoder.h"
#include "mozilla/mailnews/MimeHeaderParser.h"
#include "msgCore.h"
#include "nsComponentManagerUtils.h"
#include "nsICryptoHash.h"
#include "nsIMimeConverter.h"
#include "nsIMsgCompFields.h"
#include "nsIMsgIdentity.h"
#include "nsIX509CertDB.h"
#include "nsMemory.h"
#include "nsMimeTypes.h"
#include "nsNSSComponent.h"
#include "nsServiceManagerUtils.h"
#include "nspr.h"
#include "mozpkix/Result.h"
#include "nsNSSCertificate.h"
#include "nsNSSHelper.h"
#include "CryptoTask.h"

using namespace mozilla::mailnews;
using namespace mozilla;
using namespace mozilla::psm;

#define MK_MIME_ERROR_WRITING_FILE -1

#define SMIME_STRBUNDLE_URL "chrome://messenger/locale/am-smime.properties"

// It doesn't make sense to encode the message because the message will be
// displayed only if the MUA doesn't support MIME.
// We need to consider what to do in case the server doesn't support 8BITMIME.
// In short, we can't use non-ASCII characters here.
static const char crypto_multipart_blurb[] =
    "This is a cryptographically signed message in MIME format.";

static void mime_crypto_write_base64(void* closure, const char* buf,
                                     unsigned long size);
static nsresult mime_encoder_output_fn(const char* buf, int32_t size,
                                       void* closure);
static nsresult mime_nested_encoder_output_fn(const char* buf, int32_t size,
                                              void* closure);
static nsresult make_multipart_signed_header_string(bool outer_p,
                                                    char** header_return,
                                                    char** boundary_return,
                                                    int16_t hash_type);
static char* mime_make_separator(const char* prefix);

static void GenerateGlobalRandomBytes(unsigned char* buf, int32_t len) {
  static bool firstTime = true;

  if (firstTime) {
    // Seed the random-number generator with current time so that
    // the numbers will be different every time we run.
    srand((unsigned)PR_Now());
    firstTime = false;
  }

  for (int32_t i = 0; i < len; i++) buf[i] = rand() % 10;
}

char* mime_make_separator(const char* prefix) {
  unsigned char rand_buf[13];
  GenerateGlobalRandomBytes(rand_buf, 12);

  return PR_smprintf(
      "------------%s"
      "%02X%02X%02X%02X"
      "%02X%02X%02X%02X"
      "%02X%02X%02X%02X",
      prefix, rand_buf[0], rand_buf[1], rand_buf[2], rand_buf[3], rand_buf[4],
      rand_buf[5], rand_buf[6], rand_buf[7], rand_buf[8], rand_buf[9],
      rand_buf[10], rand_buf[11]);
}

// end of copied code which needs fixed....

/////////////////////////////////////////////////////////////////////////////////////////
// Implementation of nsMsgComposeSecure
/////////////////////////////////////////////////////////////////////////////////////////

NS_IMPL_ISUPPORTS(nsMsgComposeSecure, nsIMsgComposeSecure)

nsMsgComposeSecure::nsMsgComposeSecure()
    : mSignMessage(false),
      mAlwaysEncryptMessage(false),
      mCryptoState(mime_crypto_none),
      mHashType(0),
      mMultipartSignedBoundary(nullptr),
      mIsDraft(false),
      mBuffer(nullptr),
      mBufferedBytes(0),
      mErrorAlreadyReported(false) {}

nsMsgComposeSecure::~nsMsgComposeSecure() {
  /* destructor code */
  if (mEncryptionContext) {
    if (mBufferedBytes) {
      mEncryptionContext->Update(mBuffer, mBufferedBytes);
      mBufferedBytes = 0;
    }
    mEncryptionContext->Finish();
    mEncryptionContext = nullptr;
  }

  delete[] mBuffer;
  mBuffer = nullptr;

  PR_FREEIF(mMultipartSignedBoundary);
}

NS_IMETHODIMP nsMsgComposeSecure::SetSignMessage(bool value) {
  mSignMessage = value;
  return NS_OK;
}

NS_IMETHODIMP nsMsgComposeSecure::GetSignMessage(bool* _retval) {
  *_retval = mSignMessage;
  return NS_OK;
}

NS_IMETHODIMP nsMsgComposeSecure::SetRequireEncryptMessage(bool value) {
  mAlwaysEncryptMessage = value;
  return NS_OK;
}

NS_IMETHODIMP nsMsgComposeSecure::GetRequireEncryptMessage(bool* _retval) {
  *_retval = mAlwaysEncryptMessage;
  return NS_OK;
}

NS_IMETHODIMP nsMsgComposeSecure::RequiresCryptoEncapsulation(
    nsIMsgIdentity* aIdentity, nsIMsgCompFields* aCompFields,
    bool* aRequiresEncryptionWork) {
  NS_ENSURE_ARG_POINTER(aRequiresEncryptionWork);

  *aRequiresEncryptionWork = false;

  bool alwaysEncryptMessages = false;
  bool signMessage = false;
  nsresult rv = ExtractEncryptionState(aIdentity, aCompFields, &signMessage,
                                       &alwaysEncryptMessages);
  NS_ENSURE_SUCCESS(rv, rv);

  if (alwaysEncryptMessages || signMessage) *aRequiresEncryptionWork = true;

  return NS_OK;
}

nsresult nsMsgComposeSecure::GetSMIMEBundleString(const char16_t* name,
                                                  nsString& outString) {
  outString.Truncate();

  NS_ENSURE_ARG_POINTER(name);

  NS_ENSURE_TRUE(InitializeSMIMEBundle(), NS_ERROR_FAILURE);

  return mSMIMEBundle->GetStringFromName(NS_ConvertUTF16toUTF8(name).get(),
                                         outString);
}

nsresult nsMsgComposeSecure::SMIMEBundleFormatStringFromName(
    const char* name, nsTArray<nsString>& params, nsAString& outString) {
  NS_ENSURE_ARG_POINTER(name);

  if (!InitializeSMIMEBundle()) return NS_ERROR_FAILURE;

  return mSMIMEBundle->FormatStringFromName(name, params, outString);
}

bool nsMsgComposeSecure::InitializeSMIMEBundle() {
  if (mSMIMEBundle) return true;

  nsCOMPtr<nsIStringBundleService> bundleService =
      mozilla::components::StringBundle::Service();
  nsresult rv = bundleService->CreateBundle(SMIME_STRBUNDLE_URL,
                                            getter_AddRefs(mSMIMEBundle));
  NS_ENSURE_SUCCESS(rv, false);

  return true;
}

void nsMsgComposeSecure::SetError(nsIMsgSendReport* sendReport,
                                  const char16_t* bundle_string) {
  if (!sendReport || !bundle_string) return;

  if (mErrorAlreadyReported) return;

  mErrorAlreadyReported = true;

  nsString errorString;
  nsresult res = GetSMIMEBundleString(bundle_string, errorString);
  if (NS_SUCCEEDED(res) && !errorString.IsEmpty()) {
    sendReport->SetMessage(nsIMsgSendReport::process_Current, errorString.get(),
                           true);
  }
}

void nsMsgComposeSecure::SetErrorWithParam(nsIMsgSendReport* sendReport,
                                           const char* bundle_string,
                                           const char* param) {
  if (!sendReport || !bundle_string || !param) return;

  if (mErrorAlreadyReported) return;

  mErrorAlreadyReported = true;

  nsString errorString;
  nsresult res;
  AutoTArray<nsString, 1> params;
  CopyASCIItoUTF16(MakeStringSpan(param), *params.AppendElement());
  res = SMIMEBundleFormatStringFromName(bundle_string, params, errorString);

  if (NS_SUCCEEDED(res) && !errorString.IsEmpty()) {
    sendReport->SetMessage(nsIMsgSendReport::process_Current, errorString.get(),
                           true);
  }
}

nsresult nsMsgComposeSecure::ExtractEncryptionState(
    nsIMsgIdentity* aIdentity, nsIMsgCompFields* aComposeFields,
    bool* aSignMessage, bool* aEncrypt) {
  if (!aComposeFields && !aIdentity)
    return NS_ERROR_FAILURE;  // kick out...invalid args....

  NS_ENSURE_ARG_POINTER(aSignMessage);
  NS_ENSURE_ARG_POINTER(aEncrypt);

  this->GetSignMessage(aSignMessage);
  this->GetRequireEncryptMessage(aEncrypt);

  return NS_OK;
}

// Select a hash algorithm to sign message
// based on subject public key type and size.
static nsresult GetSigningHashFunction(nsIX509Cert* aSigningCert,
                                       int16_t* hashType) {
  // Get the signing certificate
  CERTCertificate* scert = nullptr;
  if (aSigningCert) {
    scert = aSigningCert->GetCert();
  }
  if (!scert) {
    return NS_ERROR_FAILURE;
  }

  UniqueSECKEYPublicKey scertPublicKey(CERT_ExtractPublicKey(scert));
  if (!scertPublicKey) {
    return mozilla::MapSECStatus(SECFailure);
  }
  KeyType subjectPublicKeyType = SECKEY_GetPublicKeyType(scertPublicKey.get());

  // Get the length of the signature in bits.
  unsigned siglen = SECKEY_SignatureLen(scertPublicKey.get()) * 8;
  if (!siglen) {
    return mozilla::MapSECStatus(SECFailure);
  }

  // Select a hash function for signature generation whose security strength
  // meets or exceeds the security strength of the public key, using NIST
  // Special Publication 800-57, Recommendation for Key Management - Part 1:
  // General (Revision 3), where Table 2 specifies the security strength of
  // the public key and Table 3 lists acceptable hash functions. (The security
  // strength of the hash (for digital signatures) is half the length of the
  // output.)
  // [SP 800-57 is available at http://csrc.nist.gov/publications/PubsSPs.html.]
  if (subjectPublicKeyType == rsaKey) {
    // For RSA, siglen is the same as the length of the modulus.

    // SHA-1 provides equivalent security strength for up to 1024 bits
    // SHA-256 provides equivalent security strength for up to 3072 bits

    if (siglen > 3072) {
      *hashType = nsICryptoHash::SHA512;
    } else if (siglen > 1024) {
      *hashType = nsICryptoHash::SHA256;
    } else {
      *hashType = nsICryptoHash::SHA1;
    }
  } else if (subjectPublicKeyType == dsaKey) {
    // For DSA, siglen is twice the length of the q parameter of the key.
    // The security strength of the key is half the length (in bits) of
    // the q parameter of the key.

    // NSS only supports SHA-1, SHA-224, and SHA-256 for DSA signatures.
    // The S/MIME code does not support SHA-224.

    if (siglen >= 512) {  // 512-bit signature = 256-bit q parameter
      *hashType = nsICryptoHash::SHA256;
    } else {
      *hashType = nsICryptoHash::SHA1;
    }
  } else if (subjectPublicKeyType == ecKey) {
    // For ECDSA, siglen is twice the length of the field size. The security
    // strength of the key is half the length (in bits) of the field size.

    if (siglen >= 1024) {  // 1024-bit signature = 512-bit field size
      *hashType = nsICryptoHash::SHA512;
    } else if (siglen >= 768) {  // 768-bit signature = 384-bit field size
      *hashType = nsICryptoHash::SHA384;
    } else if (siglen >= 512) {  // 512-bit signature = 256-bit field size
      *hashType = nsICryptoHash::SHA256;
    } else {
      *hashType = nsICryptoHash::SHA1;
    }
  } else {
    // Unknown key type
    *hashType = nsICryptoHash::SHA256;
    NS_WARNING("GetSigningHashFunction: Subject public key type unknown.");
  }
  return NS_OK;
}

/* void beginCryptoEncapsulation (in nsOutputFileStream aStream, in boolean
 * aEncrypt, in boolean aSign, in string aRecipeints, in boolean aIsDraft); */
NS_IMETHODIMP nsMsgComposeSecure::BeginCryptoEncapsulation(
    nsIOutputStream* aStream, const char* aRecipients,
    nsIMsgCompFields* aCompFields, nsIMsgIdentity* aIdentity,
    nsIMsgSendReport* sendReport, bool aIsDraft) {
  mErrorAlreadyReported = false;
  nsresult rv = NS_OK;

  // CryptoEncapsulation should be synchronous, therefore it must
  // avoid cert verification or looking up certs, which often involves
  // async OCSP. The message composer should already have looked up
  // and verified certificates whenever the user modified the recipient
  // list, and should have used CacheValidCertForEmail to make those
  // certificates known to us.
  // (That code may use the AsyncFindCertByEmailAddr API which allows
  // lookup and validation to be performed on a background thread,
  // which is required when using OCSP.)

  bool encryptMessages = false;
  bool signMessage = false;
  ExtractEncryptionState(aIdentity, aCompFields, &signMessage,
                         &encryptMessages);

  if (!signMessage && !encryptMessages) return NS_ERROR_FAILURE;

  mStream = aStream;
  mIsDraft = aIsDraft;

  if (encryptMessages && signMessage)
    mCryptoState = mime_crypto_signed_encrypted;
  else if (encryptMessages)
    mCryptoState = mime_crypto_encrypted;
  else if (signMessage)
    mCryptoState = mime_crypto_clear_signed;
  else
    PR_ASSERT(0);

  aIdentity->GetUnicharAttribute("signing_cert_name", mSigningCertName);
  aIdentity->GetCharAttribute("signing_cert_dbkey", mSigningCertDBKey);
  aIdentity->GetUnicharAttribute("encryption_cert_name", mEncryptionCertName);
  aIdentity->GetCharAttribute("encryption_cert_dbkey", mEncryptionCertDBKey);

  rv = MimeCryptoHackCerts(aRecipients, sendReport, encryptMessages,
                           signMessage, aIdentity);
  if (NS_FAILED(rv)) {
    goto FAIL;
  }

  if (signMessage && mSelfSigningCert) {
    rv = GetSigningHashFunction(mSelfSigningCert, &mHashType);
    NS_ENSURE_SUCCESS(rv, rv);
  }

  switch (mCryptoState) {
    case mime_crypto_clear_signed:
      rv = MimeInitMultipartSigned(true, sendReport);
      break;
    case mime_crypto_opaque_signed:
      PR_ASSERT(0); /* #### no api for this yet */
      rv = NS_ERROR_NOT_IMPLEMENTED;
      break;
    case mime_crypto_signed_encrypted:
      rv = MimeInitEncryption(true, sendReport);
      break;
    case mime_crypto_encrypted:
      rv = MimeInitEncryption(false, sendReport);
      break;
    case mime_crypto_none:
      /* This can happen if mime_crypto_hack_certs() decided to turn off
       encryption (by asking the user.) */
      // XXX 1 is not a valid nsresult
      rv = static_cast<nsresult>(1);
      break;
    default:
      PR_ASSERT(0);
      break;
  }

FAIL:
  return rv;
}

/* void finishCryptoEncapsulation (in boolean aAbort); */
NS_IMETHODIMP nsMsgComposeSecure::FinishCryptoEncapsulation(
    bool aAbort, nsIMsgSendReport* sendReport) {
  nsresult rv = NS_OK;

  if (!aAbort) {
    switch (mCryptoState) {
      case mime_crypto_clear_signed:
        rv = MimeFinishMultipartSigned(true, sendReport);
        break;
      case mime_crypto_opaque_signed:
        PR_ASSERT(0); /* #### no api for this yet */
        rv = NS_ERROR_FAILURE;
        break;
      case mime_crypto_signed_encrypted:
        rv = MimeFinishEncryption(true, sendReport);
        break;
      case mime_crypto_encrypted:
        rv = MimeFinishEncryption(false, sendReport);
        break;
      default:
        PR_ASSERT(0);
        rv = NS_ERROR_FAILURE;
        break;
    }
  }
  return rv;
}

nsresult nsMsgComposeSecure::MimeInitMultipartSigned(
    bool aOuter, nsIMsgSendReport* sendReport) {
  /* First, construct and write out the multipart/signed MIME header data.
   */
  nsresult rv = NS_OK;
  char* header = 0;
  uint32_t L;

  rv = make_multipart_signed_header_string(
      aOuter, &header, &mMultipartSignedBoundary, mHashType);

  NS_ENSURE_SUCCESS(rv, rv);

  L = strlen(header);

  if (aOuter) {
    /* If this is the outer block, write it to the file. */
    uint32_t n;
    rv = mStream->Write(header, L, &n);
    if (NS_FAILED(rv) || n < L) {
      // XXX This is -1, not an nsresult
      rv = static_cast<nsresult>(MK_MIME_ERROR_WRITING_FILE);
    }
  } else {
    /* If this is an inner block, feed it through the crypto stream. */
    rv = MimeCryptoWriteBlock(header, L);
  }

  PR_Free(header);
  NS_ENSURE_SUCCESS(rv, rv);

  /* Now initialize the crypto library, so that we can compute a hash
   on the object which we are signing.
   */

  PR_SetError(0, 0);
  mDataHash = do_CreateInstance("@mozilla.org/security/hash;1", &rv);
  NS_ENSURE_SUCCESS(rv, rv);

  rv = mDataHash->Init(mHashType);
  NS_ENSURE_SUCCESS(rv, rv);

  PR_SetError(0, 0);
  return rv;
}

nsresult nsMsgComposeSecure::MimeInitEncryption(bool aSign,
                                                nsIMsgSendReport* sendReport) {
  nsresult rv;
  nsCOMPtr<nsIStringBundleService> bundleSvc =
      mozilla::components::StringBundle::Service();
  NS_ENSURE_TRUE(bundleSvc, NS_ERROR_UNEXPECTED);

  nsCOMPtr<nsIStringBundle> sMIMEBundle;
  nsString mime_smime_enc_content_desc;

  bundleSvc->CreateBundle(SMIME_STRBUNDLE_URL, getter_AddRefs(sMIMEBundle));

  if (!sMIMEBundle) return NS_ERROR_FAILURE;

  sMIMEBundle->GetStringFromName("mime_smimeEncryptedContentDesc",
                                 mime_smime_enc_content_desc);
  NS_ConvertUTF16toUTF8 enc_content_desc_utf8(mime_smime_enc_content_desc);

  nsCOMPtr<nsIMimeConverter> mimeConverter =
      do_GetService("@mozilla.org/messenger/mimeconverter;1", &rv);
  NS_ENSURE_SUCCESS(rv, rv);
  nsCString encodedContentDescription;
  mimeConverter->EncodeMimePartIIStr_UTF8(
      enc_content_desc_utf8, false, sizeof("Content-Description: "),
      nsIMimeConverter::MIME_ENCODED_WORD_SIZE, encodedContentDescription);

  /* First, construct and write out the opaque-crypto-blob MIME header data.
   */

  char* s = PR_smprintf("Content-Type: " APPLICATION_PKCS7_MIME
                        "; name=\"smime.p7m\"; smime-type=enveloped-data" CRLF
                        "Content-Transfer-Encoding: " ENCODING_BASE64 CRLF
                        "Content-Disposition: attachment"
                        "; filename=\"smime.p7m\"" CRLF
                        "Content-Description: %s" CRLF CRLF,
                        encodedContentDescription.get());

  uint32_t L;
  if (!s) return NS_ERROR_OUT_OF_MEMORY;
  L = strlen(s);
  uint32_t n;
  rv = mStream->Write(s, L, &n);
  if (NS_FAILED(rv) || n < L) {
    return NS_ERROR_FAILURE;
  }
  PR_Free(s);
  s = 0;

  /* Now initialize the crypto library, so that we can filter the object
   to be encrypted through it.
   */

  if (!mIsDraft) {
    PR_ASSERT(!mCerts.IsEmpty());
    if (mCerts.IsEmpty()) return NS_ERROR_FAILURE;
  }

  // If a previous call to MimeInitEncryption (this function) failed,
  // the mEncryptionContext already exists and references our
  // mCryptoEncoder. Destroy mEncryptionContext to release the
  // reference prior to resetting mCryptoEncoder.
  if (mEncryptionContext) {
    mEncryptionContext->Finish();
    mEncryptionContext = nullptr;
  }

  // Initialize the base64 encoder
  mCryptoEncoder.reset(
      MimeEncoder::GetBase64Encoder(mime_encoder_output_fn, this));

  /* Initialize the encrypter (and add the sender's cert.) */
  PR_ASSERT(mSelfEncryptionCert);
  PR_SetError(0, 0);
  mEncryptionCinfo = do_CreateInstance(NS_CMSMESSAGE_CONTRACTID, &rv);
  if (NS_FAILED(rv)) return rv;
  rv = mEncryptionCinfo->CreateEncrypted(mCerts);
  if (NS_FAILED(rv)) {
    SetError(sendReport, u"ErrorEncryptMail");
    goto FAIL;
  }

  mEncryptionContext = do_CreateInstance(NS_CMSENCODER_CONTRACTID, &rv);
  if (NS_FAILED(rv)) return rv;

  if (!mBuffer) {
    mBuffer = new char[eBufferSize];
    if (!mBuffer) return NS_ERROR_OUT_OF_MEMORY;
  }

  mBufferedBytes = 0;

  rv = mEncryptionContext->Start(mEncryptionCinfo, mime_crypto_write_base64,
                                 mCryptoEncoder.get());
  if (NS_FAILED(rv)) {
    SetError(sendReport, u"ErrorEncryptMail");
    goto FAIL;
  }

  /* If we're signing, tack a multipart/signed header onto the front of
   the data to be encrypted, and initialize the sign-hashing code too.
   */
  if (aSign) {
    rv = MimeInitMultipartSigned(false, sendReport);
    if (NS_FAILED(rv)) goto FAIL;
  }

FAIL:
  return rv;
}

nsresult nsMsgComposeSecure::MimeFinishMultipartSigned(
    bool aOuter, nsIMsgSendReport* sendReport) {
  nsresult rv;
  nsCOMPtr<nsICMSMessage> cinfo =
      do_CreateInstance(NS_CMSMESSAGE_CONTRACTID, &rv);
  NS_ENSURE_SUCCESS(rv, rv);

  nsCOMPtr<nsICMSEncoder> encoder =
      do_CreateInstance(NS_CMSENCODER_CONTRACTID, &rv);
  NS_ENSURE_SUCCESS(rv, rv);

  char* header = nullptr;
  nsCOMPtr<nsIStringBundleService> bundleSvc =
      mozilla::components::StringBundle::Service();
  NS_ENSURE_TRUE(bundleSvc, NS_ERROR_UNEXPECTED);

  nsCOMPtr<nsIStringBundle> sMIMEBundle;
  nsString mime_smime_sig_content_desc;

  bundleSvc->CreateBundle(SMIME_STRBUNDLE_URL, getter_AddRefs(sMIMEBundle));

  if (!sMIMEBundle) return NS_ERROR_FAILURE;

  sMIMEBundle->GetStringFromName("mime_smimeSignatureContentDesc",
                                 mime_smime_sig_content_desc);

  NS_ConvertUTF16toUTF8 sig_content_desc_utf8(mime_smime_sig_content_desc);

  /* Compute the hash...
   */

  NS_ENSURE_STATE(mDataHash);
  nsAutoCString hashString;
  rv = mDataHash->Finish(false, hashString);
  mDataHash = nullptr;
  NS_ENSURE_SUCCESS(rv, rv);
  if (PR_GetError() < 0) return NS_ERROR_FAILURE;

  /* Write out the headers for the signature.
   */
  uint32_t L;
  header = PR_smprintf(
      CRLF "--%s" CRLF "Content-Type: " APPLICATION_PKCS7_SIGNATURE
           "; name=\"smime.p7s\"" CRLF
           "Content-Transfer-Encoding: " ENCODING_BASE64 CRLF
           "Content-Disposition: attachment; "
           "filename=\"smime.p7s\"" CRLF "Content-Description: %s" CRLF CRLF,
      mMultipartSignedBoundary, sig_content_desc_utf8.get());

  if (!header) {
    return NS_ERROR_OUT_OF_MEMORY;
  }

  L = strlen(header);
  if (aOuter) {
    /* If this is the outer block, write it to the file. */
    uint32_t n;
    rv = mStream->Write(header, L, &n);
    if (NS_FAILED(rv) || n < L) {
      // XXX This is -1, not an nsresult
      rv = static_cast<nsresult>(MK_MIME_ERROR_WRITING_FILE);
    }
  } else {
    /* If this is an inner block, feed it through the crypto stream. */
    rv = MimeCryptoWriteBlock(header, L);
  }

  PR_Free(header);
  NS_ENSURE_SUCCESS(rv, rv);

  /* Create the signature...
   */

  NS_ASSERTION(mHashType, "Hash function for signature has not been set.");

  PR_ASSERT(mSelfSigningCert);
  PR_SetError(0, 0);

  nsTArray<uint8_t> digest;
  digest.AppendElements(hashString.get(), hashString.Length());

  rv = cinfo->CreateSigned(mSelfSigningCert, mSelfEncryptionCert, digest,
                           mHashType);
  if (NS_FAILED(rv)) {
    SetError(sendReport, u"ErrorCanNotSignMail");
    return rv;
  }

  // Initialize the base64 encoder for the signature data.
  MOZ_ASSERT(!mSigEncoder, "Shouldn't already have a mSigEncoder");
  mSigEncoder.reset(MimeEncoder::GetBase64Encoder(
      (aOuter ? mime_encoder_output_fn : mime_nested_encoder_output_fn), this));

  /* Write out the signature.
   */
  PR_SetError(0, 0);
  rv = encoder->Start(cinfo, mime_crypto_write_base64, mSigEncoder.get());
  if (NS_FAILED(rv)) {
    SetError(sendReport, u"ErrorCanNotSignMail");
    return rv;
  }

  // We're not passing in any data, so no update needed.
  rv = encoder->Finish();
  if (NS_FAILED(rv)) {
    SetError(sendReport, u"ErrorCanNotSignMail");
    return rv;
  }

  // Shut down the sig's base64 encoder.
  rv = mSigEncoder->Flush();
  mSigEncoder.reset();
  NS_ENSURE_SUCCESS(rv, rv);

  /* Now write out the terminating boundary.
   */
  {
    uint32_t L;
    char* header = PR_smprintf(CRLF "--%s--" CRLF, mMultipartSignedBoundary);
    PR_Free(mMultipartSignedBoundary);
    mMultipartSignedBoundary = 0;

    if (!header) {
      return NS_ERROR_OUT_OF_MEMORY;
    }
    L = strlen(header);
    if (aOuter) {
      /* If this is the outer block, write it to the file. */
      uint32_t n;
      rv = mStream->Write(header, L, &n);
      if (NS_FAILED(rv) || n < L)
        // XXX This is -1, not an nsresult
        rv = static_cast<nsresult>(MK_MIME_ERROR_WRITING_FILE);
    } else {
      /* If this is an inner block, feed it through the crypto stream. */
      rv = MimeCryptoWriteBlock(header, L);
    }
  }

  return rv;
}

/* Helper function for mime_finish_crypto_encapsulation() to close off
   an opaque crypto object (for encrypted or signed-and-encrypted messages.)
 */
nsresult nsMsgComposeSecure::MimeFinishEncryption(
    bool aSign, nsIMsgSendReport* sendReport) {
  nsresult rv;

  /* If this object is both encrypted and signed, close off the
   signature first (since it's inside.) */
  if (aSign) {
    rv = MimeFinishMultipartSigned(false, sendReport);
    NS_ENSURE_SUCCESS(rv, rv);
  }

  /* Close off the opaque encrypted blob.
   */
  PR_ASSERT(mEncryptionContext);

  if (mBufferedBytes) {
    rv = mEncryptionContext->Update(mBuffer, mBufferedBytes);
    mBufferedBytes = 0;
    if (NS_FAILED(rv)) {
      PR_ASSERT(PR_GetError() < 0);
      return rv;
    }
  }

  rv = mEncryptionContext->Finish();
  mEncryptionContext = nullptr;

  if (NS_FAILED(rv)) {
    SetError(sendReport, u"ErrorEncryptMail");
    return rv;
  }

  NS_ENSURE_TRUE(mEncryptionCinfo, NS_ERROR_UNEXPECTED);

  mEncryptionCinfo = nullptr;

  // Shut down the base64 encoder.
  mCryptoEncoder->Flush();
  mCryptoEncoder.reset();

  uint32_t n;
  rv = mStream->Write(CRLF, 2, &n);
  if (NS_FAILED(rv) || n < 2) rv = NS_ERROR_FAILURE;

  return rv;
}

/* Used to figure out what certs should be used when encrypting this message.
 */
nsresult nsMsgComposeSecure::MimeCryptoHackCerts(const char* aRecipients,
                                                 nsIMsgSendReport* sendReport,
                                                 bool aEncrypt, bool aSign,
                                                 nsIMsgIdentity* aIdentity) {
  nsCOMPtr<nsIX509CertDB> certdb = do_GetService(NS_X509CERTDB_CONTRACTID);
  nsresult res = NS_OK;

  PR_ASSERT(aEncrypt || aSign);

  /*
   Signing and encryption certs use the following (per-identity) preferences:
   - "signing_cert_name"/"encryption_cert_name": a string specifying the
     nickname of the certificate
   - "signing_cert_dbkey"/"encryption_cert_dbkey": a Base64 encoded blob
     specifying an nsIX509Cert dbKey (represents serial number
     and issuer DN, which is considered to be unique for X.509 certificates)
  */

  RefPtr<SharedCertVerifier> certVerifier(GetDefaultCertVerifier());
  NS_ENSURE_TRUE(certVerifier, NS_ERROR_UNEXPECTED);

  // Calling CERT_GetCertNicknames has the desired side effect of
  // traversing all tokens, and bringing up prompts to unlock them.
  nsCOMPtr<nsIInterfaceRequestor> ctx = new PipUIContext();
  CERTCertNicknames* result_unused = CERT_GetCertNicknames(
      CERT_GetDefaultCertDB(), SEC_CERT_NICKNAMES_USER, ctx);
  CERT_FreeNicknames(result_unused);

  nsTArray<nsTArray<uint8_t>> builtChain;
  if (!mEncryptionCertDBKey.IsEmpty()) {
    res = certdb->FindCertByDBKey(mEncryptionCertDBKey,
                                  getter_AddRefs(mSelfEncryptionCert));

    if (NS_SUCCEEDED(res) && mSelfEncryptionCert) {
      nsTArray<uint8_t> certBytes;
      res = mSelfEncryptionCert->GetRawDER(certBytes);
      NS_ENSURE_SUCCESS(res, res);

      if (certVerifier->VerifyCert(
              certBytes, certificateUsageEmailRecipient, mozilla::pkix::Now(),
              nullptr, nullptr, builtChain,
              // Only local checks can run on the main thread.
              // Skipping OCSP for the user's own cert seems accaptable.
              CertVerifier::FLAG_LOCAL_ONLY) != mozilla::pkix::Success) {
        // not suitable for encryption, so unset cert and clear pref
        mSelfEncryptionCert = nullptr;
        mEncryptionCertDBKey.Truncate();
        aIdentity->SetCharAttribute("encryption_cert_dbkey",
                                    mEncryptionCertDBKey);
      }
    }
  }

  // same procedure for the signing cert
  if (!mSigningCertDBKey.IsEmpty()) {
    res = certdb->FindCertByDBKey(mSigningCertDBKey,
                                  getter_AddRefs(mSelfSigningCert));
    if (NS_SUCCEEDED(res) && mSelfSigningCert) {
      nsTArray<uint8_t> certBytes;
      res = mSelfSigningCert->GetRawDER(certBytes);
      NS_ENSURE_SUCCESS(res, res);

      if (certVerifier->VerifyCert(
              certBytes, certificateUsageEmailSigner, mozilla::pkix::Now(),
              nullptr, nullptr, builtChain,
              // Only local checks can run on the main thread.
              // Skipping OCSP for the user's own cert seems accaptable.
              CertVerifier::FLAG_LOCAL_ONLY) != mozilla::pkix::Success) {
        // not suitable for signing, so unset cert and clear pref
        mSelfSigningCert = nullptr;
        mSigningCertDBKey.Truncate();
        aIdentity->SetCharAttribute("signing_cert_dbkey", mSigningCertDBKey);
      }
    }
  }

  // must have both the signing and encryption certs to sign
  if (!mSelfSigningCert && aSign) {
    SetError(sendReport, u"NoSenderSigningCert");
    return NS_ERROR_FAILURE;
  }

  if (!mSelfEncryptionCert && aEncrypt) {
    SetError(sendReport, u"NoSenderEncryptionCert");
    return NS_ERROR_FAILURE;
  }

  if (aEncrypt && mSelfEncryptionCert) {
    // Make sure self's configured cert is prepared for being used
    // as an email recipient cert.
    UniqueCERTCertificate nsscert(mSelfEncryptionCert->GetCert());
    if (!nsscert) {
      return NS_ERROR_FAILURE;
    }
    // XXX: This does not respect the nsNSSShutDownObject protocol.
    if (CERT_SaveSMimeProfile(nsscert.get(), nullptr, nullptr) != SECSuccess) {
      return NS_ERROR_FAILURE;
    }
  }

  /* If the message is to be encrypted, then get the recipient certs */
  if (aEncrypt) {
    nsTArray<nsCString> mailboxes;
    ExtractEmails(EncodedHeader(nsDependentCString(aRecipients)),
                  UTF16ArrayAdapter<>(mailboxes));
    uint32_t count = mailboxes.Length();

    bool already_added_self_cert = false;

    for (uint32_t i = 0; i < count; i++) {
      nsCString mailbox_lowercase;
      ToLowerCase(mailboxes[i], mailbox_lowercase);
      nsCOMPtr<nsIX509Cert> cert;

      nsCString dbKey;
      res = GetCertDBKeyForEmail(mailbox_lowercase, dbKey);
      if (NS_SUCCEEDED(res)) {
        res = certdb->FindCertByDBKey(dbKey, getter_AddRefs(cert));
      }

      if (NS_FAILED(res) || !cert) {
        // Failure to find a valid encryption cert is fatal.
        // Here I assume that mailbox is ascii rather than utf8.
        SetErrorWithParam(sendReport, "MissingRecipientEncryptionCert",
                          mailboxes[i].get());
        return res;
      }

      /* #### see if recipient requests `signedData'.
       if (...) no_clearsigning_p = true;
       (This is the only reason we even bother looking up the certs
       of the recipients if we're sending a signed-but-not-encrypted
       message.)
       */

      if (cert.get() == mSelfEncryptionCert.get()) {
        already_added_self_cert = true;
      }

      mCerts.AppendElement(cert);
    }

    if (!already_added_self_cert) {
      mCerts.AppendElement(mSelfEncryptionCert);
    }
  }
  return res;
}

NS_IMETHODIMP nsMsgComposeSecure::MimeCryptoWriteBlock(const char* buf,
                                                       int32_t size) {
  int status = 0;
  nsresult rv;

  /* If this is a From line, mangle it before signing it.  You just know
   that something somewhere is going to mangle it later, and that's
   going to cause the signature check to fail.

   (This assumes that, in the cases where From-mangling must happen,
   this function is called a line at a time.  That happens to be the
   case.)
  */
  if (size >= 5 && buf[0] == 'F' && !strncmp(buf, "From ", 5)) {
    char mangle[] = ">";
    nsresult res = MimeCryptoWriteBlock(mangle, 1);
    if (NS_FAILED(res)) return res;
    // This value will actually be cast back to an nsresult before use, so this
    // cast is reasonable under the circumstances.
    status = static_cast<int>(res);
  }

  /* If we're signing, or signing-and-encrypting, feed this data into
   the computation of the hash. */
  if (mDataHash) {
    PR_SetError(0, 0);
    mDataHash->Update((const uint8_t*)buf, size);
    status = PR_GetError();
    if (status < 0) goto FAIL;
  }

  PR_SetError(0, 0);
  if (mEncryptionContext) {
    /* If we're encrypting, or signing-and-encrypting, write this data
       by filtering it through the crypto library. */

    /* We want to create equally sized encryption strings */
    const char* inputBytesIterator = buf;
    uint32_t inputBytesLeft = size;

    while (inputBytesLeft) {
      const uint32_t spaceLeftInBuffer = eBufferSize - mBufferedBytes;
      const uint32_t bytesToAppend =
          std::min(inputBytesLeft, spaceLeftInBuffer);

      memcpy(mBuffer + mBufferedBytes, inputBytesIterator, bytesToAppend);
      mBufferedBytes += bytesToAppend;

      inputBytesIterator += bytesToAppend;
      inputBytesLeft -= bytesToAppend;

      if (eBufferSize == mBufferedBytes) {
        rv = mEncryptionContext->Update(mBuffer, mBufferedBytes);
        mBufferedBytes = 0;
        if (NS_FAILED(rv)) {
          status = PR_GetError();
          PR_ASSERT(status < 0);
          if (status >= 0) status = -1;
          goto FAIL;
        }
      }
    }
  } else {
    /* If we're not encrypting (presumably just signing) then write this
       data directly to the file. */

    uint32_t n;
    rv = mStream->Write(buf, size, &n);
    if (NS_FAILED(rv) || n < (uint32_t)size) {
      // XXX MK_MIME_ERROR_WRITING_FILE is -1, which is not a valid nsresult
      return static_cast<nsresult>(MK_MIME_ERROR_WRITING_FILE);
    }
  }
FAIL:
  // XXX status sometimes has invalid nsresults like -1 or PR_GetError()
  // assigned to it
  return static_cast<nsresult>(status);
}

/* Returns a string consisting of a Content-Type header, and a boundary
   string, suitable for moving from the header block, down into the body
   of a multipart object.  The boundary itself is also returned (so that
   the caller knows what to write to close it off.)
 */
static nsresult make_multipart_signed_header_string(bool outer_p,
                                                    char** header_return,
                                                    char** boundary_return,
                                                    int16_t hash_type) {
  const char* hashStr;
  *header_return = 0;
  *boundary_return = mime_make_separator("ms");

  if (!*boundary_return) return NS_ERROR_OUT_OF_MEMORY;

  switch (hash_type) {
    case nsICryptoHash::SHA1:
      hashStr = PARAM_MICALG_SHA1;
      break;
    case nsICryptoHash::SHA256:
      hashStr = PARAM_MICALG_SHA256;
      break;
    case nsICryptoHash::SHA384:
      hashStr = PARAM_MICALG_SHA384;
      break;
    case nsICryptoHash::SHA512:
      hashStr = PARAM_MICALG_SHA512;
      break;
    default:
      return NS_ERROR_INVALID_ARG;
  }

  *header_return = PR_smprintf("Content-Type: " MULTIPART_SIGNED
                               "; "
                               "protocol=\"" APPLICATION_PKCS7_SIGNATURE
                               "\"; "
                               "micalg=%s; "
                               "boundary=\"%s\"" CRLF CRLF
                               "%s%s"
                               "--%s" CRLF,
                               hashStr, *boundary_return,
                               (outer_p ? crypto_multipart_blurb : ""),
                               (outer_p ? CRLF CRLF : ""), *boundary_return);

  if (!*header_return) {
    PR_Free(*boundary_return);
    *boundary_return = 0;
    return NS_ERROR_OUT_OF_MEMORY;
  }

  return NS_OK;
}

/* Used as the output function of a SEC_PKCS7EncoderContext -- we feed
   plaintext into the crypto engine, and it calls this function with encrypted
   data; then this function writes a base64-encoded representation of that
   data to the file (by filtering it through the given MimeEncoder object.)

   Also used as the output function of SEC_PKCS7Encode() -- but in that case,
   it's used to write the encoded representation of the signature.  The only
   difference is which MimeEncoder object is used.
 */
static void mime_crypto_write_base64(void* closure, const char* buf,
                                     unsigned long size) {
  MimeEncoder* encoder = (MimeEncoder*)closure;
  nsresult rv = encoder->Write(buf, size);
  PR_SetError(NS_FAILED(rv) ? static_cast<uint32_t>(rv) : 0, 0);
}

/* Used as the output function of MimeEncoder -- when we have generated
   the signature for a multipart/signed object, this is used to write the
   base64-encoded representation of the signature to the file.
 */
// TODO: size should probably be converted to uint32_t
nsresult mime_encoder_output_fn(const char* buf, int32_t size, void* closure) {
  nsMsgComposeSecure* state = (nsMsgComposeSecure*)closure;
  nsCOMPtr<nsIOutputStream> stream;
  state->GetOutputStream(getter_AddRefs(stream));
  uint32_t n;
  nsresult rv = stream->Write((char*)buf, size, &n);
  if (NS_FAILED(rv) || n < (uint32_t)size)
    return NS_ERROR_FAILURE;
  else
    return NS_OK;
}

/* Like mime_encoder_output_fn, except this is used for the case where we
   are both signing and encrypting -- the base64-encoded output of the
   signature should be fed into the crypto engine, rather than being written
   directly to the file.
 */
static nsresult mime_nested_encoder_output_fn(const char* buf, int32_t size,
                                              void* closure) {
  nsMsgComposeSecure* state = (nsMsgComposeSecure*)closure;

  // Copy to new null-terminated string so JS glue doesn't crash when
  // MimeCryptoWriteBlock() is implemented in JS.
  nsCString bufWithNull;
  bufWithNull.Assign(buf, size);
  return state->MimeCryptoWriteBlock(bufWithNull.get(), size);
}

class FindSMimeCertTask final : public CryptoTask {
 public:
  FindSMimeCertTask(const nsACString& email,
                    nsIDoneFindCertForEmailCallback* listener)
      : mEmail(email), mListener(listener) {
    MOZ_ASSERT(NS_IsMainThread());
  }
  ~FindSMimeCertTask();

 private:
  virtual nsresult CalculateResult() override;
  virtual void CallCallback(nsresult rv) override;

  const nsCString mEmail;
  nsCOMPtr<nsIX509Cert> mCert;
  nsCOMPtr<nsIDoneFindCertForEmailCallback> mListener;

  static mozilla::StaticMutex sMutex;
};

mozilla::StaticMutex FindSMimeCertTask::sMutex;

void FindSMimeCertTask::CallCallback(nsresult rv) {
  MOZ_ASSERT(NS_IsMainThread());
  nsCOMPtr<nsIX509Cert> cert;
  nsCOMPtr<nsIDoneFindCertForEmailCallback> listener;
  {
    mozilla::StaticMutexAutoLock lock(sMutex);
    if (!mListener) {
      return;
    }
    // We won't need these objects after leaving this function, so let's
    // destroy them early. Also has the benefit that we're already
    // on the main thread. By destroying the listener here, we avoid
    // dispatching in the destructor.
    mCert.swap(cert);
    mListener.swap(listener);
  }
  listener->FindCertDone(mEmail, cert);
}

/*
called by:
  GetValidCertInfo
  GetRecipientCertsInfo
  GetNoCertAddresses
*/
nsresult FindSMimeCertTask::CalculateResult() {
  MOZ_ASSERT(!NS_IsMainThread());

  nsresult rv = BlockUntilLoadableCertsLoaded();
  if (NS_FAILED(rv)) {
    return rv;
  }

  RefPtr<SharedCertVerifier> certVerifier(GetDefaultCertVerifier());
  NS_ENSURE_TRUE(certVerifier, NS_ERROR_UNEXPECTED);

  const nsCString& flatEmailAddress = PromiseFlatCString(mEmail);
  UniqueCERTCertList certlist(
      PK11_FindCertsFromEmailAddress(flatEmailAddress.get(), nullptr));
  if (!certlist) return NS_ERROR_FAILURE;

  // certlist now contains certificates with the right email address,
  // but they might not have the correct usage or might even be invalid

  if (CERT_LIST_END(CERT_LIST_HEAD(certlist), certlist))
    return NS_ERROR_FAILURE;  // no certs found

  CERTCertListNode* node;
  // search for a valid certificate
  for (node = CERT_LIST_HEAD(certlist); !CERT_LIST_END(node, certlist);
       node = CERT_LIST_NEXT(node)) {
    nsTArray<uint8_t> certBytes(node->cert->derCert.data,
                                node->cert->derCert.len);
    nsTArray<nsTArray<uint8_t>> unusedCertChain;

    mozilla::pkix::Result result = certVerifier->VerifyCert(
        certBytes, certificateUsageEmailRecipient, mozilla::pkix::Now(),
        nullptr /*XXX pinarg*/, nullptr /*hostname*/, unusedCertChain);
    if (result == mozilla::pkix::Success) {
      mozilla::StaticMutexAutoLock lock(sMutex);
      mCert = new nsNSSCertificate(node->cert);
      break;
    }
  }

  return NS_OK;
}

/*
 * We need to ensure that the callback is destroyed on the main thread.
 */
class ProxyListenerDestructor final : public mozilla::Runnable {
 public:
  explicit ProxyListenerDestructor(
      nsCOMPtr<nsIDoneFindCertForEmailCallback>&& aListener)
      : mozilla::Runnable("ProxyListenerDestructor"),
        mListener(std::move(aListener)) {}

  NS_IMETHODIMP
  Run() override {
    MOZ_ASSERT(NS_IsMainThread());
    // Release the object referenced by mListener.
    mListener = nullptr;
    return NS_OK;
  }

 private:
  nsCOMPtr<nsIDoneFindCertForEmailCallback> mListener;
};

FindSMimeCertTask::~FindSMimeCertTask() {
  // Unless we already cleaned up inside CallCallback, we must release
  // the listener on the main thread.
  if (mListener && !NS_IsMainThread()) {
    RefPtr<ProxyListenerDestructor> runnable =
        new ProxyListenerDestructor(std::move(mListener));
    MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(runnable));
  }
}

NS_IMETHODIMP
nsMsgComposeSecure::CacheValidCertForEmail(const nsACString& email,
                                           const nsACString& certDBKey) {
  mozilla::StaticMutexAutoLock lock(sMutex);
  mValidCertForEmailAddr.InsertOrUpdate(email, certDBKey);
  return NS_OK;
}

NS_IMETHODIMP
nsMsgComposeSecure::HaveValidCertForEmail(const nsACString& email,
                                          bool* _retval) {
  mozilla::StaticMutexAutoLock lock(sMutex);
  *_retval = mValidCertForEmailAddr.Get(email, nullptr);
  return NS_OK;
}

NS_IMETHODIMP
nsMsgComposeSecure::GetCertDBKeyForEmail(const nsACString& email,
                                         nsACString& _retval) {
  mozilla::StaticMutexAutoLock lock(sMutex);
  nsCString dbKey;
  bool found = mValidCertForEmailAddr.Get(email, &dbKey);
  if (found) {
    _retval = dbKey;
  } else {
    _retval.Truncate();
  }
  return NS_OK;
}

NS_IMETHODIMP
nsMsgComposeSecure::AsyncFindCertByEmailAddr(
    const nsACString& email, nsIDoneFindCertForEmailCallback* callback) {
  RefPtr<CryptoTask> task = new FindSMimeCertTask(email, callback);
  return task->Dispatch();
}

mozilla::StaticMutex nsMsgComposeSecure::sMutex;