cms.c 47 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357
  1. /* apps/cms.c */
  2. /*
  3. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  4. * project.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * licensing@OpenSSL.org.
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. */
  54. /* CMS utility function */
  55. #include <stdio.h>
  56. #include <string.h>
  57. #include "apps.h"
  58. #ifndef OPENSSL_NO_CMS
  59. # include <openssl/crypto.h>
  60. # include <openssl/pem.h>
  61. # include <openssl/err.h>
  62. # include <openssl/x509_vfy.h>
  63. # include <openssl/x509v3.h>
  64. # include <openssl/cms.h>
  65. # undef PROG
  66. # define PROG cms_main
  67. static int save_certs(char *signerfile, STACK_OF(X509) *signers);
  68. static int cms_cb(int ok, X509_STORE_CTX *ctx);
  69. static void receipt_request_print(BIO *out, CMS_ContentInfo *cms);
  70. static CMS_ReceiptRequest *make_receipt_request(STACK_OF(OPENSSL_STRING)
  71. *rr_to, int rr_allorfirst, STACK_OF(OPENSSL_STRING)
  72. *rr_from);
  73. static int cms_set_pkey_param(EVP_PKEY_CTX *pctx,
  74. STACK_OF(OPENSSL_STRING) *param);
  75. # define SMIME_OP 0x10
  76. # define SMIME_IP 0x20
  77. # define SMIME_SIGNERS 0x40
  78. # define SMIME_ENCRYPT (1 | SMIME_OP)
  79. # define SMIME_DECRYPT (2 | SMIME_IP)
  80. # define SMIME_SIGN (3 | SMIME_OP | SMIME_SIGNERS)
  81. # define SMIME_VERIFY (4 | SMIME_IP)
  82. # define SMIME_CMSOUT (5 | SMIME_IP | SMIME_OP)
  83. # define SMIME_RESIGN (6 | SMIME_IP | SMIME_OP | SMIME_SIGNERS)
  84. # define SMIME_DATAOUT (7 | SMIME_IP)
  85. # define SMIME_DATA_CREATE (8 | SMIME_OP)
  86. # define SMIME_DIGEST_VERIFY (9 | SMIME_IP)
  87. # define SMIME_DIGEST_CREATE (10 | SMIME_OP)
  88. # define SMIME_UNCOMPRESS (11 | SMIME_IP)
  89. # define SMIME_COMPRESS (12 | SMIME_OP)
  90. # define SMIME_ENCRYPTED_DECRYPT (13 | SMIME_IP)
  91. # define SMIME_ENCRYPTED_ENCRYPT (14 | SMIME_OP)
  92. # define SMIME_SIGN_RECEIPT (15 | SMIME_IP | SMIME_OP)
  93. # define SMIME_VERIFY_RECEIPT (16 | SMIME_IP)
  94. int verify_err = 0;
  95. typedef struct cms_key_param_st cms_key_param;
  96. struct cms_key_param_st {
  97. int idx;
  98. STACK_OF(OPENSSL_STRING) *param;
  99. cms_key_param *next;
  100. };
  101. int MAIN(int, char **);
  102. int MAIN(int argc, char **argv)
  103. {
  104. ENGINE *e = NULL;
  105. int operation = 0;
  106. int ret = 0;
  107. char **args;
  108. const char *inmode = "r", *outmode = "w";
  109. char *infile = NULL, *outfile = NULL, *rctfile = NULL;
  110. char *signerfile = NULL, *recipfile = NULL;
  111. STACK_OF(OPENSSL_STRING) *sksigners = NULL, *skkeys = NULL;
  112. char *certfile = NULL, *keyfile = NULL, *contfile = NULL;
  113. char *certsoutfile = NULL;
  114. const EVP_CIPHER *cipher = NULL, *wrap_cipher = NULL;
  115. CMS_ContentInfo *cms = NULL, *rcms = NULL;
  116. X509_STORE *store = NULL;
  117. X509 *cert = NULL, *recip = NULL, *signer = NULL;
  118. EVP_PKEY *key = NULL;
  119. STACK_OF(X509) *encerts = NULL, *other = NULL;
  120. BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
  121. int badarg = 0;
  122. int flags = CMS_DETACHED, noout = 0, print = 0;
  123. int verify_retcode = 0;
  124. int rr_print = 0, rr_allorfirst = -1;
  125. STACK_OF(OPENSSL_STRING) *rr_to = NULL, *rr_from = NULL;
  126. CMS_ReceiptRequest *rr = NULL;
  127. char *to = NULL, *from = NULL, *subject = NULL;
  128. char *CAfile = NULL, *CApath = NULL;
  129. char *passargin = NULL, *passin = NULL;
  130. char *inrand = NULL;
  131. int need_rand = 0;
  132. const EVP_MD *sign_md = NULL;
  133. int informat = FORMAT_SMIME, outformat = FORMAT_SMIME;
  134. int rctformat = FORMAT_SMIME, keyform = FORMAT_PEM;
  135. # ifndef OPENSSL_NO_ENGINE
  136. char *engine = NULL;
  137. # endif
  138. unsigned char *secret_key = NULL, *secret_keyid = NULL;
  139. unsigned char *pwri_pass = NULL, *pwri_tmp = NULL;
  140. size_t secret_keylen = 0, secret_keyidlen = 0;
  141. cms_key_param *key_first = NULL, *key_param = NULL;
  142. ASN1_OBJECT *econtent_type = NULL;
  143. X509_VERIFY_PARAM *vpm = NULL;
  144. args = argv + 1;
  145. ret = 1;
  146. apps_startup();
  147. if (bio_err == NULL) {
  148. if ((bio_err = BIO_new(BIO_s_file())) != NULL)
  149. BIO_set_fp(bio_err, stderr, BIO_NOCLOSE | BIO_FP_TEXT);
  150. }
  151. if (!load_config(bio_err, NULL))
  152. goto end;
  153. while (!badarg && *args && *args[0] == '-') {
  154. if (!strcmp(*args, "-encrypt"))
  155. operation = SMIME_ENCRYPT;
  156. else if (!strcmp(*args, "-decrypt"))
  157. operation = SMIME_DECRYPT;
  158. else if (!strcmp(*args, "-sign"))
  159. operation = SMIME_SIGN;
  160. else if (!strcmp(*args, "-sign_receipt"))
  161. operation = SMIME_SIGN_RECEIPT;
  162. else if (!strcmp(*args, "-resign"))
  163. operation = SMIME_RESIGN;
  164. else if (!strcmp(*args, "-verify"))
  165. operation = SMIME_VERIFY;
  166. else if (!strcmp(*args, "-verify_retcode"))
  167. verify_retcode = 1;
  168. else if (!strcmp(*args, "-verify_receipt")) {
  169. operation = SMIME_VERIFY_RECEIPT;
  170. if (!args[1])
  171. goto argerr;
  172. args++;
  173. rctfile = *args;
  174. } else if (!strcmp(*args, "-cmsout"))
  175. operation = SMIME_CMSOUT;
  176. else if (!strcmp(*args, "-data_out"))
  177. operation = SMIME_DATAOUT;
  178. else if (!strcmp(*args, "-data_create"))
  179. operation = SMIME_DATA_CREATE;
  180. else if (!strcmp(*args, "-digest_verify"))
  181. operation = SMIME_DIGEST_VERIFY;
  182. else if (!strcmp(*args, "-digest_create"))
  183. operation = SMIME_DIGEST_CREATE;
  184. else if (!strcmp(*args, "-compress"))
  185. operation = SMIME_COMPRESS;
  186. else if (!strcmp(*args, "-uncompress"))
  187. operation = SMIME_UNCOMPRESS;
  188. else if (!strcmp(*args, "-EncryptedData_decrypt"))
  189. operation = SMIME_ENCRYPTED_DECRYPT;
  190. else if (!strcmp(*args, "-EncryptedData_encrypt"))
  191. operation = SMIME_ENCRYPTED_ENCRYPT;
  192. # ifndef OPENSSL_NO_DES
  193. else if (!strcmp(*args, "-des3"))
  194. cipher = EVP_des_ede3_cbc();
  195. else if (!strcmp(*args, "-des"))
  196. cipher = EVP_des_cbc();
  197. else if (!strcmp(*args, "-des3-wrap"))
  198. wrap_cipher = EVP_des_ede3_wrap();
  199. # endif
  200. # ifndef OPENSSL_NO_SEED
  201. else if (!strcmp(*args, "-seed"))
  202. cipher = EVP_seed_cbc();
  203. # endif
  204. # ifndef OPENSSL_NO_RC2
  205. else if (!strcmp(*args, "-rc2-40"))
  206. cipher = EVP_rc2_40_cbc();
  207. else if (!strcmp(*args, "-rc2-128"))
  208. cipher = EVP_rc2_cbc();
  209. else if (!strcmp(*args, "-rc2-64"))
  210. cipher = EVP_rc2_64_cbc();
  211. # endif
  212. # ifndef OPENSSL_NO_AES
  213. else if (!strcmp(*args, "-aes128"))
  214. cipher = EVP_aes_128_cbc();
  215. else if (!strcmp(*args, "-aes192"))
  216. cipher = EVP_aes_192_cbc();
  217. else if (!strcmp(*args, "-aes256"))
  218. cipher = EVP_aes_256_cbc();
  219. else if (!strcmp(*args, "-aes128-wrap"))
  220. wrap_cipher = EVP_aes_128_wrap();
  221. else if (!strcmp(*args, "-aes192-wrap"))
  222. wrap_cipher = EVP_aes_192_wrap();
  223. else if (!strcmp(*args, "-aes256-wrap"))
  224. wrap_cipher = EVP_aes_256_wrap();
  225. # endif
  226. # ifndef OPENSSL_NO_CAMELLIA
  227. else if (!strcmp(*args, "-camellia128"))
  228. cipher = EVP_camellia_128_cbc();
  229. else if (!strcmp(*args, "-camellia192"))
  230. cipher = EVP_camellia_192_cbc();
  231. else if (!strcmp(*args, "-camellia256"))
  232. cipher = EVP_camellia_256_cbc();
  233. # endif
  234. else if (!strcmp(*args, "-debug_decrypt"))
  235. flags |= CMS_DEBUG_DECRYPT;
  236. else if (!strcmp(*args, "-text"))
  237. flags |= CMS_TEXT;
  238. else if (!strcmp(*args, "-nointern"))
  239. flags |= CMS_NOINTERN;
  240. else if (!strcmp(*args, "-noverify")
  241. || !strcmp(*args, "-no_signer_cert_verify"))
  242. flags |= CMS_NO_SIGNER_CERT_VERIFY;
  243. else if (!strcmp(*args, "-nocerts"))
  244. flags |= CMS_NOCERTS;
  245. else if (!strcmp(*args, "-noattr"))
  246. flags |= CMS_NOATTR;
  247. else if (!strcmp(*args, "-nodetach"))
  248. flags &= ~CMS_DETACHED;
  249. else if (!strcmp(*args, "-nosmimecap"))
  250. flags |= CMS_NOSMIMECAP;
  251. else if (!strcmp(*args, "-binary"))
  252. flags |= CMS_BINARY;
  253. else if (!strcmp(*args, "-keyid"))
  254. flags |= CMS_USE_KEYID;
  255. else if (!strcmp(*args, "-nosigs"))
  256. flags |= CMS_NOSIGS;
  257. else if (!strcmp(*args, "-no_content_verify"))
  258. flags |= CMS_NO_CONTENT_VERIFY;
  259. else if (!strcmp(*args, "-no_attr_verify"))
  260. flags |= CMS_NO_ATTR_VERIFY;
  261. else if (!strcmp(*args, "-stream"))
  262. flags |= CMS_STREAM;
  263. else if (!strcmp(*args, "-indef"))
  264. flags |= CMS_STREAM;
  265. else if (!strcmp(*args, "-noindef"))
  266. flags &= ~CMS_STREAM;
  267. else if (!strcmp(*args, "-nooldmime"))
  268. flags |= CMS_NOOLDMIMETYPE;
  269. else if (!strcmp(*args, "-crlfeol"))
  270. flags |= CMS_CRLFEOL;
  271. else if (!strcmp(*args, "-noout"))
  272. noout = 1;
  273. else if (!strcmp(*args, "-receipt_request_print"))
  274. rr_print = 1;
  275. else if (!strcmp(*args, "-receipt_request_all"))
  276. rr_allorfirst = 0;
  277. else if (!strcmp(*args, "-receipt_request_first"))
  278. rr_allorfirst = 1;
  279. else if (!strcmp(*args, "-receipt_request_from")) {
  280. if (!args[1])
  281. goto argerr;
  282. args++;
  283. if (!rr_from)
  284. rr_from = sk_OPENSSL_STRING_new_null();
  285. sk_OPENSSL_STRING_push(rr_from, *args);
  286. } else if (!strcmp(*args, "-receipt_request_to")) {
  287. if (!args[1])
  288. goto argerr;
  289. args++;
  290. if (!rr_to)
  291. rr_to = sk_OPENSSL_STRING_new_null();
  292. sk_OPENSSL_STRING_push(rr_to, *args);
  293. } else if (!strcmp(*args, "-print")) {
  294. noout = 1;
  295. print = 1;
  296. } else if (!strcmp(*args, "-secretkey")) {
  297. long ltmp;
  298. if (!args[1])
  299. goto argerr;
  300. args++;
  301. secret_key = string_to_hex(*args, &ltmp);
  302. if (!secret_key) {
  303. BIO_printf(bio_err, "Invalid key %s\n", *args);
  304. goto argerr;
  305. }
  306. secret_keylen = (size_t)ltmp;
  307. } else if (!strcmp(*args, "-secretkeyid")) {
  308. long ltmp;
  309. if (!args[1])
  310. goto argerr;
  311. args++;
  312. secret_keyid = string_to_hex(*args, &ltmp);
  313. if (!secret_keyid) {
  314. BIO_printf(bio_err, "Invalid id %s\n", *args);
  315. goto argerr;
  316. }
  317. secret_keyidlen = (size_t)ltmp;
  318. } else if (!strcmp(*args, "-pwri_password")) {
  319. if (!args[1])
  320. goto argerr;
  321. args++;
  322. pwri_pass = (unsigned char *)*args;
  323. } else if (!strcmp(*args, "-econtent_type")) {
  324. if (!args[1])
  325. goto argerr;
  326. args++;
  327. econtent_type = OBJ_txt2obj(*args, 0);
  328. if (!econtent_type) {
  329. BIO_printf(bio_err, "Invalid OID %s\n", *args);
  330. goto argerr;
  331. }
  332. } else if (!strcmp(*args, "-rand")) {
  333. if (!args[1])
  334. goto argerr;
  335. args++;
  336. inrand = *args;
  337. need_rand = 1;
  338. }
  339. # ifndef OPENSSL_NO_ENGINE
  340. else if (!strcmp(*args, "-engine")) {
  341. if (!args[1])
  342. goto argerr;
  343. engine = *++args;
  344. }
  345. # endif
  346. else if (!strcmp(*args, "-passin")) {
  347. if (!args[1])
  348. goto argerr;
  349. passargin = *++args;
  350. } else if (!strcmp(*args, "-to")) {
  351. if (!args[1])
  352. goto argerr;
  353. to = *++args;
  354. } else if (!strcmp(*args, "-from")) {
  355. if (!args[1])
  356. goto argerr;
  357. from = *++args;
  358. } else if (!strcmp(*args, "-subject")) {
  359. if (!args[1])
  360. goto argerr;
  361. subject = *++args;
  362. } else if (!strcmp(*args, "-signer")) {
  363. if (!args[1])
  364. goto argerr;
  365. /* If previous -signer argument add signer to list */
  366. if (signerfile) {
  367. if (!sksigners)
  368. sksigners = sk_OPENSSL_STRING_new_null();
  369. sk_OPENSSL_STRING_push(sksigners, signerfile);
  370. if (!keyfile)
  371. keyfile = signerfile;
  372. if (!skkeys)
  373. skkeys = sk_OPENSSL_STRING_new_null();
  374. sk_OPENSSL_STRING_push(skkeys, keyfile);
  375. keyfile = NULL;
  376. }
  377. signerfile = *++args;
  378. } else if (!strcmp(*args, "-recip")) {
  379. if (!args[1])
  380. goto argerr;
  381. if (operation == SMIME_ENCRYPT) {
  382. if (!encerts)
  383. encerts = sk_X509_new_null();
  384. cert = load_cert(bio_err, *++args, FORMAT_PEM,
  385. NULL, e, "recipient certificate file");
  386. if (!cert)
  387. goto end;
  388. sk_X509_push(encerts, cert);
  389. cert = NULL;
  390. } else
  391. recipfile = *++args;
  392. } else if (!strcmp(*args, "-certsout")) {
  393. if (!args[1])
  394. goto argerr;
  395. certsoutfile = *++args;
  396. } else if (!strcmp(*args, "-md")) {
  397. if (!args[1])
  398. goto argerr;
  399. sign_md = EVP_get_digestbyname(*++args);
  400. if (sign_md == NULL) {
  401. BIO_printf(bio_err, "Unknown digest %s\n", *args);
  402. goto argerr;
  403. }
  404. } else if (!strcmp(*args, "-inkey")) {
  405. if (!args[1])
  406. goto argerr;
  407. /* If previous -inkey arument add signer to list */
  408. if (keyfile) {
  409. if (!signerfile) {
  410. BIO_puts(bio_err, "Illegal -inkey without -signer\n");
  411. goto argerr;
  412. }
  413. if (!sksigners)
  414. sksigners = sk_OPENSSL_STRING_new_null();
  415. sk_OPENSSL_STRING_push(sksigners, signerfile);
  416. signerfile = NULL;
  417. if (!skkeys)
  418. skkeys = sk_OPENSSL_STRING_new_null();
  419. sk_OPENSSL_STRING_push(skkeys, keyfile);
  420. }
  421. keyfile = *++args;
  422. } else if (!strcmp(*args, "-keyform")) {
  423. if (!args[1])
  424. goto argerr;
  425. keyform = str2fmt(*++args);
  426. } else if (!strcmp(*args, "-keyopt")) {
  427. int keyidx = -1;
  428. if (!args[1])
  429. goto argerr;
  430. if (operation == SMIME_ENCRYPT) {
  431. if (encerts)
  432. keyidx += sk_X509_num(encerts);
  433. } else {
  434. if (keyfile || signerfile)
  435. keyidx++;
  436. if (skkeys)
  437. keyidx += sk_OPENSSL_STRING_num(skkeys);
  438. }
  439. if (keyidx < 0) {
  440. BIO_printf(bio_err, "No key specified\n");
  441. goto argerr;
  442. }
  443. if (key_param == NULL || key_param->idx != keyidx) {
  444. cms_key_param *nparam;
  445. nparam = OPENSSL_malloc(sizeof(cms_key_param));
  446. if (!nparam) {
  447. BIO_printf(bio_err, "Out of memory\n");
  448. goto argerr;
  449. }
  450. nparam->idx = keyidx;
  451. nparam->param = sk_OPENSSL_STRING_new_null();
  452. nparam->next = NULL;
  453. if (key_first == NULL)
  454. key_first = nparam;
  455. else
  456. key_param->next = nparam;
  457. key_param = nparam;
  458. }
  459. sk_OPENSSL_STRING_push(key_param->param, *++args);
  460. } else if (!strcmp(*args, "-rctform")) {
  461. if (!args[1])
  462. goto argerr;
  463. rctformat = str2fmt(*++args);
  464. } else if (!strcmp(*args, "-certfile")) {
  465. if (!args[1])
  466. goto argerr;
  467. certfile = *++args;
  468. } else if (!strcmp(*args, "-CAfile")) {
  469. if (!args[1])
  470. goto argerr;
  471. CAfile = *++args;
  472. } else if (!strcmp(*args, "-CApath")) {
  473. if (!args[1])
  474. goto argerr;
  475. CApath = *++args;
  476. } else if (!strcmp(*args, "-in")) {
  477. if (!args[1])
  478. goto argerr;
  479. infile = *++args;
  480. } else if (!strcmp(*args, "-inform")) {
  481. if (!args[1])
  482. goto argerr;
  483. informat = str2fmt(*++args);
  484. } else if (!strcmp(*args, "-outform")) {
  485. if (!args[1])
  486. goto argerr;
  487. outformat = str2fmt(*++args);
  488. } else if (!strcmp(*args, "-out")) {
  489. if (!args[1])
  490. goto argerr;
  491. outfile = *++args;
  492. } else if (!strcmp(*args, "-content")) {
  493. if (!args[1])
  494. goto argerr;
  495. contfile = *++args;
  496. } else if (args_verify(&args, NULL, &badarg, bio_err, &vpm))
  497. continue;
  498. else if ((cipher = EVP_get_cipherbyname(*args + 1)) == NULL)
  499. badarg = 1;
  500. args++;
  501. }
  502. if (((rr_allorfirst != -1) || rr_from) && !rr_to) {
  503. BIO_puts(bio_err, "No Signed Receipts Recipients\n");
  504. goto argerr;
  505. }
  506. if (!(operation & SMIME_SIGNERS) && (rr_to || rr_from)) {
  507. BIO_puts(bio_err, "Signed receipts only allowed with -sign\n");
  508. goto argerr;
  509. }
  510. if (!(operation & SMIME_SIGNERS) && (skkeys || sksigners)) {
  511. BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
  512. goto argerr;
  513. }
  514. if (operation & SMIME_SIGNERS) {
  515. if (keyfile && !signerfile) {
  516. BIO_puts(bio_err, "Illegal -inkey without -signer\n");
  517. goto argerr;
  518. }
  519. /* Check to see if any final signer needs to be appended */
  520. if (signerfile) {
  521. if (!sksigners)
  522. sksigners = sk_OPENSSL_STRING_new_null();
  523. sk_OPENSSL_STRING_push(sksigners, signerfile);
  524. if (!skkeys)
  525. skkeys = sk_OPENSSL_STRING_new_null();
  526. if (!keyfile)
  527. keyfile = signerfile;
  528. sk_OPENSSL_STRING_push(skkeys, keyfile);
  529. }
  530. if (!sksigners) {
  531. BIO_printf(bio_err, "No signer certificate specified\n");
  532. badarg = 1;
  533. }
  534. signerfile = NULL;
  535. keyfile = NULL;
  536. need_rand = 1;
  537. }
  538. else if (operation == SMIME_DECRYPT) {
  539. if (!recipfile && !keyfile && !secret_key && !pwri_pass) {
  540. BIO_printf(bio_err,
  541. "No recipient certificate or key specified\n");
  542. badarg = 1;
  543. }
  544. } else if (operation == SMIME_ENCRYPT) {
  545. if (!*args && !secret_key && !pwri_pass && !encerts) {
  546. BIO_printf(bio_err, "No recipient(s) certificate(s) specified\n");
  547. badarg = 1;
  548. }
  549. need_rand = 1;
  550. } else if (!operation)
  551. badarg = 1;
  552. if (badarg) {
  553. argerr:
  554. BIO_printf(bio_err, "Usage cms [options] cert.pem ...\n");
  555. BIO_printf(bio_err, "where options are\n");
  556. BIO_printf(bio_err, "-encrypt encrypt message\n");
  557. BIO_printf(bio_err, "-decrypt decrypt encrypted message\n");
  558. BIO_printf(bio_err, "-sign sign message\n");
  559. BIO_printf(bio_err, "-verify verify signed message\n");
  560. BIO_printf(bio_err, "-cmsout output CMS structure\n");
  561. # ifndef OPENSSL_NO_DES
  562. BIO_printf(bio_err, "-des3 encrypt with triple DES\n");
  563. BIO_printf(bio_err, "-des encrypt with DES\n");
  564. # endif
  565. # ifndef OPENSSL_NO_SEED
  566. BIO_printf(bio_err, "-seed encrypt with SEED\n");
  567. # endif
  568. # ifndef OPENSSL_NO_RC2
  569. BIO_printf(bio_err, "-rc2-40 encrypt with RC2-40 (default)\n");
  570. BIO_printf(bio_err, "-rc2-64 encrypt with RC2-64\n");
  571. BIO_printf(bio_err, "-rc2-128 encrypt with RC2-128\n");
  572. # endif
  573. # ifndef OPENSSL_NO_AES
  574. BIO_printf(bio_err, "-aes128, -aes192, -aes256\n");
  575. BIO_printf(bio_err,
  576. " encrypt PEM output with cbc aes\n");
  577. # endif
  578. # ifndef OPENSSL_NO_CAMELLIA
  579. BIO_printf(bio_err, "-camellia128, -camellia192, -camellia256\n");
  580. BIO_printf(bio_err,
  581. " encrypt PEM output with cbc camellia\n");
  582. # endif
  583. BIO_printf(bio_err,
  584. "-nointern don't search certificates in message for signer\n");
  585. BIO_printf(bio_err,
  586. "-nosigs don't verify message signature\n");
  587. BIO_printf(bio_err,
  588. "-noverify don't verify signers certificate\n");
  589. BIO_printf(bio_err,
  590. "-nocerts don't include signers certificate when signing\n");
  591. BIO_printf(bio_err, "-nodetach use opaque signing\n");
  592. BIO_printf(bio_err,
  593. "-noattr don't include any signed attributes\n");
  594. BIO_printf(bio_err,
  595. "-binary don't translate message to text\n");
  596. BIO_printf(bio_err, "-certfile file other certificates file\n");
  597. BIO_printf(bio_err, "-certsout file certificate output file\n");
  598. BIO_printf(bio_err, "-signer file signer certificate file\n");
  599. BIO_printf(bio_err,
  600. "-recip file recipient certificate file for decryption\n");
  601. BIO_printf(bio_err, "-keyid use subject key identifier\n");
  602. BIO_printf(bio_err, "-in file input file\n");
  603. BIO_printf(bio_err,
  604. "-inform arg input format SMIME (default), PEM or DER\n");
  605. BIO_printf(bio_err,
  606. "-inkey file input private key (if not signer or recipient)\n");
  607. BIO_printf(bio_err,
  608. "-keyform arg input private key format (PEM or ENGINE)\n");
  609. BIO_printf(bio_err, "-keyopt nm:v set public key parameters\n");
  610. BIO_printf(bio_err, "-out file output file\n");
  611. BIO_printf(bio_err,
  612. "-outform arg output format SMIME (default), PEM or DER\n");
  613. BIO_printf(bio_err,
  614. "-content file supply or override content for detached signature\n");
  615. BIO_printf(bio_err, "-to addr to address\n");
  616. BIO_printf(bio_err, "-from ad from address\n");
  617. BIO_printf(bio_err, "-subject s subject\n");
  618. BIO_printf(bio_err,
  619. "-text include or delete text MIME headers\n");
  620. BIO_printf(bio_err,
  621. "-CApath dir trusted certificates directory\n");
  622. BIO_printf(bio_err, "-CAfile file trusted certificates file\n");
  623. BIO_printf(bio_err,
  624. "-no_alt_chains only ever use the first certificate chain found\n");
  625. BIO_printf(bio_err,
  626. "-crl_check check revocation status of signer's certificate using CRLs\n");
  627. BIO_printf(bio_err,
  628. "-crl_check_all check revocation status of signer's certificate chain using CRLs\n");
  629. # ifndef OPENSSL_NO_ENGINE
  630. BIO_printf(bio_err,
  631. "-engine e use engine e, possibly a hardware device.\n");
  632. # endif
  633. BIO_printf(bio_err, "-passin arg input file pass phrase source\n");
  634. BIO_printf(bio_err, "-rand file%cfile%c...\n", LIST_SEPARATOR_CHAR,
  635. LIST_SEPARATOR_CHAR);
  636. BIO_printf(bio_err,
  637. " load the file (or the files in the directory) into\n");
  638. BIO_printf(bio_err, " the random number generator\n");
  639. BIO_printf(bio_err,
  640. "cert.pem recipient certificate(s) for encryption\n");
  641. goto end;
  642. }
  643. # ifndef OPENSSL_NO_ENGINE
  644. e = setup_engine(bio_err, engine, 0);
  645. # endif
  646. if (!app_passwd(bio_err, passargin, NULL, &passin, NULL)) {
  647. BIO_printf(bio_err, "Error getting password\n");
  648. goto end;
  649. }
  650. if (need_rand) {
  651. app_RAND_load_file(NULL, bio_err, (inrand != NULL));
  652. if (inrand != NULL)
  653. BIO_printf(bio_err, "%ld semi-random bytes loaded\n",
  654. app_RAND_load_files(inrand));
  655. }
  656. ret = 2;
  657. if (!(operation & SMIME_SIGNERS))
  658. flags &= ~CMS_DETACHED;
  659. if (operation & SMIME_OP) {
  660. if (outformat == FORMAT_ASN1)
  661. outmode = "wb";
  662. } else {
  663. if (flags & CMS_BINARY)
  664. outmode = "wb";
  665. }
  666. if (operation & SMIME_IP) {
  667. if (informat == FORMAT_ASN1)
  668. inmode = "rb";
  669. } else {
  670. if (flags & CMS_BINARY)
  671. inmode = "rb";
  672. }
  673. if (operation == SMIME_ENCRYPT) {
  674. if (!cipher) {
  675. # ifndef OPENSSL_NO_DES
  676. cipher = EVP_des_ede3_cbc();
  677. # else
  678. BIO_printf(bio_err, "No cipher selected\n");
  679. goto end;
  680. # endif
  681. }
  682. if (secret_key && !secret_keyid) {
  683. BIO_printf(bio_err, "No secret key id\n");
  684. goto end;
  685. }
  686. if (*args && !encerts)
  687. encerts = sk_X509_new_null();
  688. while (*args) {
  689. if (!(cert = load_cert(bio_err, *args, FORMAT_PEM,
  690. NULL, e, "recipient certificate file")))
  691. goto end;
  692. sk_X509_push(encerts, cert);
  693. cert = NULL;
  694. args++;
  695. }
  696. }
  697. if (certfile) {
  698. if (!(other = load_certs(bio_err, certfile, FORMAT_PEM, NULL,
  699. e, "certificate file"))) {
  700. ERR_print_errors(bio_err);
  701. goto end;
  702. }
  703. }
  704. if (recipfile && (operation == SMIME_DECRYPT)) {
  705. if (!(recip = load_cert(bio_err, recipfile, FORMAT_PEM, NULL,
  706. e, "recipient certificate file"))) {
  707. ERR_print_errors(bio_err);
  708. goto end;
  709. }
  710. }
  711. if (operation == SMIME_SIGN_RECEIPT) {
  712. if (!(signer = load_cert(bio_err, signerfile, FORMAT_PEM, NULL,
  713. e, "receipt signer certificate file"))) {
  714. ERR_print_errors(bio_err);
  715. goto end;
  716. }
  717. }
  718. if (operation == SMIME_DECRYPT) {
  719. if (!keyfile)
  720. keyfile = recipfile;
  721. } else if ((operation == SMIME_SIGN) || (operation == SMIME_SIGN_RECEIPT)) {
  722. if (!keyfile)
  723. keyfile = signerfile;
  724. } else
  725. keyfile = NULL;
  726. if (keyfile) {
  727. key = load_key(bio_err, keyfile, keyform, 0, passin, e,
  728. "signing key file");
  729. if (!key)
  730. goto end;
  731. }
  732. if (infile) {
  733. if (!(in = BIO_new_file(infile, inmode))) {
  734. BIO_printf(bio_err, "Can't open input file %s\n", infile);
  735. goto end;
  736. }
  737. } else
  738. in = BIO_new_fp(stdin, BIO_NOCLOSE);
  739. if (operation & SMIME_IP) {
  740. if (informat == FORMAT_SMIME)
  741. cms = SMIME_read_CMS(in, &indata);
  742. else if (informat == FORMAT_PEM)
  743. cms = PEM_read_bio_CMS(in, NULL, NULL, NULL);
  744. else if (informat == FORMAT_ASN1)
  745. cms = d2i_CMS_bio(in, NULL);
  746. else {
  747. BIO_printf(bio_err, "Bad input format for CMS file\n");
  748. goto end;
  749. }
  750. if (!cms) {
  751. BIO_printf(bio_err, "Error reading S/MIME message\n");
  752. goto end;
  753. }
  754. if (contfile) {
  755. BIO_free(indata);
  756. if (!(indata = BIO_new_file(contfile, "rb"))) {
  757. BIO_printf(bio_err, "Can't read content file %s\n", contfile);
  758. goto end;
  759. }
  760. }
  761. if (certsoutfile) {
  762. STACK_OF(X509) *allcerts;
  763. allcerts = CMS_get1_certs(cms);
  764. if (!save_certs(certsoutfile, allcerts)) {
  765. BIO_printf(bio_err,
  766. "Error writing certs to %s\n", certsoutfile);
  767. ret = 5;
  768. goto end;
  769. }
  770. sk_X509_pop_free(allcerts, X509_free);
  771. }
  772. }
  773. if (rctfile) {
  774. char *rctmode = (rctformat == FORMAT_ASN1) ? "rb" : "r";
  775. if (!(rctin = BIO_new_file(rctfile, rctmode))) {
  776. BIO_printf(bio_err, "Can't open receipt file %s\n", rctfile);
  777. goto end;
  778. }
  779. if (rctformat == FORMAT_SMIME)
  780. rcms = SMIME_read_CMS(rctin, NULL);
  781. else if (rctformat == FORMAT_PEM)
  782. rcms = PEM_read_bio_CMS(rctin, NULL, NULL, NULL);
  783. else if (rctformat == FORMAT_ASN1)
  784. rcms = d2i_CMS_bio(rctin, NULL);
  785. else {
  786. BIO_printf(bio_err, "Bad input format for receipt\n");
  787. goto end;
  788. }
  789. if (!rcms) {
  790. BIO_printf(bio_err, "Error reading receipt\n");
  791. goto end;
  792. }
  793. }
  794. if (outfile) {
  795. if (!(out = BIO_new_file(outfile, outmode))) {
  796. BIO_printf(bio_err, "Can't open output file %s\n", outfile);
  797. goto end;
  798. }
  799. } else {
  800. out = BIO_new_fp(stdout, BIO_NOCLOSE);
  801. # ifdef OPENSSL_SYS_VMS
  802. {
  803. BIO *tmpbio = BIO_new(BIO_f_linebuffer());
  804. out = BIO_push(tmpbio, out);
  805. }
  806. # endif
  807. }
  808. if ((operation == SMIME_VERIFY) || (operation == SMIME_VERIFY_RECEIPT)) {
  809. if (!(store = setup_verify(bio_err, CAfile, CApath)))
  810. goto end;
  811. X509_STORE_set_verify_cb(store, cms_cb);
  812. if (vpm)
  813. X509_STORE_set1_param(store, vpm);
  814. }
  815. ret = 3;
  816. if (operation == SMIME_DATA_CREATE) {
  817. cms = CMS_data_create(in, flags);
  818. } else if (operation == SMIME_DIGEST_CREATE) {
  819. cms = CMS_digest_create(in, sign_md, flags);
  820. } else if (operation == SMIME_COMPRESS) {
  821. cms = CMS_compress(in, -1, flags);
  822. } else if (operation == SMIME_ENCRYPT) {
  823. int i;
  824. flags |= CMS_PARTIAL;
  825. cms = CMS_encrypt(NULL, in, cipher, flags);
  826. if (!cms)
  827. goto end;
  828. for (i = 0; i < sk_X509_num(encerts); i++) {
  829. CMS_RecipientInfo *ri;
  830. cms_key_param *kparam;
  831. int tflags = flags;
  832. X509 *x = sk_X509_value(encerts, i);
  833. for (kparam = key_first; kparam; kparam = kparam->next) {
  834. if (kparam->idx == i) {
  835. tflags |= CMS_KEY_PARAM;
  836. break;
  837. }
  838. }
  839. ri = CMS_add1_recipient_cert(cms, x, tflags);
  840. if (!ri)
  841. goto end;
  842. if (kparam) {
  843. EVP_PKEY_CTX *pctx;
  844. pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
  845. if (!cms_set_pkey_param(pctx, kparam->param))
  846. goto end;
  847. }
  848. if (CMS_RecipientInfo_type(ri) == CMS_RECIPINFO_AGREE
  849. && wrap_cipher) {
  850. EVP_CIPHER_CTX *wctx;
  851. wctx = CMS_RecipientInfo_kari_get0_ctx(ri);
  852. EVP_EncryptInit_ex(wctx, wrap_cipher, NULL, NULL, NULL);
  853. }
  854. }
  855. if (secret_key) {
  856. if (!CMS_add0_recipient_key(cms, NID_undef,
  857. secret_key, secret_keylen,
  858. secret_keyid, secret_keyidlen,
  859. NULL, NULL, NULL))
  860. goto end;
  861. /* NULL these because call absorbs them */
  862. secret_key = NULL;
  863. secret_keyid = NULL;
  864. }
  865. if (pwri_pass) {
  866. pwri_tmp = (unsigned char *)BUF_strdup((char *)pwri_pass);
  867. if (!pwri_tmp)
  868. goto end;
  869. if (!CMS_add0_recipient_password(cms,
  870. -1, NID_undef, NID_undef,
  871. pwri_tmp, -1, NULL))
  872. goto end;
  873. pwri_tmp = NULL;
  874. }
  875. if (!(flags & CMS_STREAM)) {
  876. if (!CMS_final(cms, in, NULL, flags))
  877. goto end;
  878. }
  879. } else if (operation == SMIME_ENCRYPTED_ENCRYPT) {
  880. cms = CMS_EncryptedData_encrypt(in, cipher,
  881. secret_key, secret_keylen, flags);
  882. } else if (operation == SMIME_SIGN_RECEIPT) {
  883. CMS_ContentInfo *srcms = NULL;
  884. STACK_OF(CMS_SignerInfo) *sis;
  885. CMS_SignerInfo *si;
  886. sis = CMS_get0_SignerInfos(cms);
  887. if (!sis)
  888. goto end;
  889. si = sk_CMS_SignerInfo_value(sis, 0);
  890. srcms = CMS_sign_receipt(si, signer, key, other, flags);
  891. if (!srcms)
  892. goto end;
  893. CMS_ContentInfo_free(cms);
  894. cms = srcms;
  895. } else if (operation & SMIME_SIGNERS) {
  896. int i;
  897. /*
  898. * If detached data content we enable streaming if S/MIME output
  899. * format.
  900. */
  901. if (operation == SMIME_SIGN) {
  902. if (flags & CMS_DETACHED) {
  903. if (outformat == FORMAT_SMIME)
  904. flags |= CMS_STREAM;
  905. }
  906. flags |= CMS_PARTIAL;
  907. cms = CMS_sign(NULL, NULL, other, in, flags);
  908. if (!cms)
  909. goto end;
  910. if (econtent_type)
  911. CMS_set1_eContentType(cms, econtent_type);
  912. if (rr_to) {
  913. rr = make_receipt_request(rr_to, rr_allorfirst, rr_from);
  914. if (!rr) {
  915. BIO_puts(bio_err,
  916. "Signed Receipt Request Creation Error\n");
  917. goto end;
  918. }
  919. }
  920. } else
  921. flags |= CMS_REUSE_DIGEST;
  922. for (i = 0; i < sk_OPENSSL_STRING_num(sksigners); i++) {
  923. CMS_SignerInfo *si;
  924. cms_key_param *kparam;
  925. int tflags = flags;
  926. signerfile = sk_OPENSSL_STRING_value(sksigners, i);
  927. keyfile = sk_OPENSSL_STRING_value(skkeys, i);
  928. signer = load_cert(bio_err, signerfile, FORMAT_PEM, NULL,
  929. e, "signer certificate");
  930. if (!signer)
  931. goto end;
  932. key = load_key(bio_err, keyfile, keyform, 0, passin, e,
  933. "signing key file");
  934. if (!key)
  935. goto end;
  936. for (kparam = key_first; kparam; kparam = kparam->next) {
  937. if (kparam->idx == i) {
  938. tflags |= CMS_KEY_PARAM;
  939. break;
  940. }
  941. }
  942. si = CMS_add1_signer(cms, signer, key, sign_md, tflags);
  943. if (!si)
  944. goto end;
  945. if (kparam) {
  946. EVP_PKEY_CTX *pctx;
  947. pctx = CMS_SignerInfo_get0_pkey_ctx(si);
  948. if (!cms_set_pkey_param(pctx, kparam->param))
  949. goto end;
  950. }
  951. if (rr && !CMS_add1_ReceiptRequest(si, rr))
  952. goto end;
  953. X509_free(signer);
  954. signer = NULL;
  955. EVP_PKEY_free(key);
  956. key = NULL;
  957. }
  958. /* If not streaming or resigning finalize structure */
  959. if ((operation == SMIME_SIGN) && !(flags & CMS_STREAM)) {
  960. if (!CMS_final(cms, in, NULL, flags))
  961. goto end;
  962. }
  963. }
  964. if (!cms) {
  965. BIO_printf(bio_err, "Error creating CMS structure\n");
  966. goto end;
  967. }
  968. ret = 4;
  969. if (operation == SMIME_DECRYPT) {
  970. if (flags & CMS_DEBUG_DECRYPT)
  971. CMS_decrypt(cms, NULL, NULL, NULL, NULL, flags);
  972. if (secret_key) {
  973. if (!CMS_decrypt_set1_key(cms,
  974. secret_key, secret_keylen,
  975. secret_keyid, secret_keyidlen)) {
  976. BIO_puts(bio_err, "Error decrypting CMS using secret key\n");
  977. goto end;
  978. }
  979. }
  980. if (key) {
  981. if (!CMS_decrypt_set1_pkey(cms, key, recip)) {
  982. BIO_puts(bio_err, "Error decrypting CMS using private key\n");
  983. goto end;
  984. }
  985. }
  986. if (pwri_pass) {
  987. if (!CMS_decrypt_set1_password(cms, pwri_pass, -1)) {
  988. BIO_puts(bio_err, "Error decrypting CMS using password\n");
  989. goto end;
  990. }
  991. }
  992. if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags)) {
  993. BIO_printf(bio_err, "Error decrypting CMS structure\n");
  994. goto end;
  995. }
  996. } else if (operation == SMIME_DATAOUT) {
  997. if (!CMS_data(cms, out, flags))
  998. goto end;
  999. } else if (operation == SMIME_UNCOMPRESS) {
  1000. if (!CMS_uncompress(cms, indata, out, flags))
  1001. goto end;
  1002. } else if (operation == SMIME_DIGEST_VERIFY) {
  1003. if (CMS_digest_verify(cms, indata, out, flags) > 0)
  1004. BIO_printf(bio_err, "Verification successful\n");
  1005. else {
  1006. BIO_printf(bio_err, "Verification failure\n");
  1007. goto end;
  1008. }
  1009. } else if (operation == SMIME_ENCRYPTED_DECRYPT) {
  1010. if (!CMS_EncryptedData_decrypt(cms, secret_key, secret_keylen,
  1011. indata, out, flags))
  1012. goto end;
  1013. } else if (operation == SMIME_VERIFY) {
  1014. if (CMS_verify(cms, other, store, indata, out, flags) > 0)
  1015. BIO_printf(bio_err, "Verification successful\n");
  1016. else {
  1017. BIO_printf(bio_err, "Verification failure\n");
  1018. if (verify_retcode)
  1019. ret = verify_err + 32;
  1020. goto end;
  1021. }
  1022. if (signerfile) {
  1023. STACK_OF(X509) *signers;
  1024. signers = CMS_get0_signers(cms);
  1025. if (!save_certs(signerfile, signers)) {
  1026. BIO_printf(bio_err,
  1027. "Error writing signers to %s\n", signerfile);
  1028. ret = 5;
  1029. goto end;
  1030. }
  1031. sk_X509_free(signers);
  1032. }
  1033. if (rr_print)
  1034. receipt_request_print(bio_err, cms);
  1035. } else if (operation == SMIME_VERIFY_RECEIPT) {
  1036. if (CMS_verify_receipt(rcms, cms, other, store, flags) > 0)
  1037. BIO_printf(bio_err, "Verification successful\n");
  1038. else {
  1039. BIO_printf(bio_err, "Verification failure\n");
  1040. goto end;
  1041. }
  1042. } else {
  1043. if (noout) {
  1044. if (print)
  1045. CMS_ContentInfo_print_ctx(out, cms, 0, NULL);
  1046. } else if (outformat == FORMAT_SMIME) {
  1047. if (to)
  1048. BIO_printf(out, "To: %s\n", to);
  1049. if (from)
  1050. BIO_printf(out, "From: %s\n", from);
  1051. if (subject)
  1052. BIO_printf(out, "Subject: %s\n", subject);
  1053. if (operation == SMIME_RESIGN)
  1054. ret = SMIME_write_CMS(out, cms, indata, flags);
  1055. else
  1056. ret = SMIME_write_CMS(out, cms, in, flags);
  1057. } else if (outformat == FORMAT_PEM)
  1058. ret = PEM_write_bio_CMS_stream(out, cms, in, flags);
  1059. else if (outformat == FORMAT_ASN1)
  1060. ret = i2d_CMS_bio_stream(out, cms, in, flags);
  1061. else {
  1062. BIO_printf(bio_err, "Bad output format for CMS file\n");
  1063. goto end;
  1064. }
  1065. if (ret <= 0) {
  1066. ret = 6;
  1067. goto end;
  1068. }
  1069. }
  1070. ret = 0;
  1071. end:
  1072. if (ret)
  1073. ERR_print_errors(bio_err);
  1074. if (need_rand)
  1075. app_RAND_write_file(NULL, bio_err);
  1076. sk_X509_pop_free(encerts, X509_free);
  1077. sk_X509_pop_free(other, X509_free);
  1078. if (vpm)
  1079. X509_VERIFY_PARAM_free(vpm);
  1080. if (sksigners)
  1081. sk_OPENSSL_STRING_free(sksigners);
  1082. if (skkeys)
  1083. sk_OPENSSL_STRING_free(skkeys);
  1084. if (secret_key)
  1085. OPENSSL_free(secret_key);
  1086. if (secret_keyid)
  1087. OPENSSL_free(secret_keyid);
  1088. if (pwri_tmp)
  1089. OPENSSL_free(pwri_tmp);
  1090. if (econtent_type)
  1091. ASN1_OBJECT_free(econtent_type);
  1092. if (rr)
  1093. CMS_ReceiptRequest_free(rr);
  1094. if (rr_to)
  1095. sk_OPENSSL_STRING_free(rr_to);
  1096. if (rr_from)
  1097. sk_OPENSSL_STRING_free(rr_from);
  1098. for (key_param = key_first; key_param;) {
  1099. cms_key_param *tparam;
  1100. sk_OPENSSL_STRING_free(key_param->param);
  1101. tparam = key_param->next;
  1102. OPENSSL_free(key_param);
  1103. key_param = tparam;
  1104. }
  1105. X509_STORE_free(store);
  1106. X509_free(cert);
  1107. X509_free(recip);
  1108. X509_free(signer);
  1109. EVP_PKEY_free(key);
  1110. CMS_ContentInfo_free(cms);
  1111. CMS_ContentInfo_free(rcms);
  1112. BIO_free(rctin);
  1113. BIO_free(in);
  1114. BIO_free(indata);
  1115. BIO_free_all(out);
  1116. if (passin)
  1117. OPENSSL_free(passin);
  1118. return (ret);
  1119. }
  1120. static int save_certs(char *signerfile, STACK_OF(X509) *signers)
  1121. {
  1122. int i;
  1123. BIO *tmp;
  1124. if (!signerfile)
  1125. return 1;
  1126. tmp = BIO_new_file(signerfile, "w");
  1127. if (!tmp)
  1128. return 0;
  1129. for (i = 0; i < sk_X509_num(signers); i++)
  1130. PEM_write_bio_X509(tmp, sk_X509_value(signers, i));
  1131. BIO_free(tmp);
  1132. return 1;
  1133. }
  1134. /* Minimal callback just to output policy info (if any) */
  1135. static int cms_cb(int ok, X509_STORE_CTX *ctx)
  1136. {
  1137. int error;
  1138. error = X509_STORE_CTX_get_error(ctx);
  1139. verify_err = error;
  1140. if ((error != X509_V_ERR_NO_EXPLICIT_POLICY)
  1141. && ((error != X509_V_OK) || (ok != 2)))
  1142. return ok;
  1143. policies_print(NULL, ctx);
  1144. return ok;
  1145. }
  1146. static void gnames_stack_print(BIO *out, STACK_OF(GENERAL_NAMES) *gns)
  1147. {
  1148. STACK_OF(GENERAL_NAME) *gens;
  1149. GENERAL_NAME *gen;
  1150. int i, j;
  1151. for (i = 0; i < sk_GENERAL_NAMES_num(gns); i++) {
  1152. gens = sk_GENERAL_NAMES_value(gns, i);
  1153. for (j = 0; j < sk_GENERAL_NAME_num(gens); j++) {
  1154. gen = sk_GENERAL_NAME_value(gens, j);
  1155. BIO_puts(out, " ");
  1156. GENERAL_NAME_print(out, gen);
  1157. BIO_puts(out, "\n");
  1158. }
  1159. }
  1160. return;
  1161. }
  1162. static void receipt_request_print(BIO *out, CMS_ContentInfo *cms)
  1163. {
  1164. STACK_OF(CMS_SignerInfo) *sis;
  1165. CMS_SignerInfo *si;
  1166. CMS_ReceiptRequest *rr;
  1167. int allorfirst;
  1168. STACK_OF(GENERAL_NAMES) *rto, *rlist;
  1169. ASN1_STRING *scid;
  1170. int i, rv;
  1171. sis = CMS_get0_SignerInfos(cms);
  1172. for (i = 0; i < sk_CMS_SignerInfo_num(sis); i++) {
  1173. si = sk_CMS_SignerInfo_value(sis, i);
  1174. rv = CMS_get1_ReceiptRequest(si, &rr);
  1175. BIO_printf(bio_err, "Signer %d:\n", i + 1);
  1176. if (rv == 0)
  1177. BIO_puts(bio_err, " No Receipt Request\n");
  1178. else if (rv < 0) {
  1179. BIO_puts(bio_err, " Receipt Request Parse Error\n");
  1180. ERR_print_errors(bio_err);
  1181. } else {
  1182. char *id;
  1183. int idlen;
  1184. CMS_ReceiptRequest_get0_values(rr, &scid, &allorfirst,
  1185. &rlist, &rto);
  1186. BIO_puts(out, " Signed Content ID:\n");
  1187. idlen = ASN1_STRING_length(scid);
  1188. id = (char *)ASN1_STRING_data(scid);
  1189. BIO_dump_indent(out, id, idlen, 4);
  1190. BIO_puts(out, " Receipts From");
  1191. if (rlist) {
  1192. BIO_puts(out, " List:\n");
  1193. gnames_stack_print(out, rlist);
  1194. } else if (allorfirst == 1)
  1195. BIO_puts(out, ": First Tier\n");
  1196. else if (allorfirst == 0)
  1197. BIO_puts(out, ": All\n");
  1198. else
  1199. BIO_printf(out, " Unknown (%d)\n", allorfirst);
  1200. BIO_puts(out, " Receipts To:\n");
  1201. gnames_stack_print(out, rto);
  1202. }
  1203. if (rr)
  1204. CMS_ReceiptRequest_free(rr);
  1205. }
  1206. }
  1207. static STACK_OF(GENERAL_NAMES) *make_names_stack(STACK_OF(OPENSSL_STRING) *ns)
  1208. {
  1209. int i;
  1210. STACK_OF(GENERAL_NAMES) *ret;
  1211. GENERAL_NAMES *gens = NULL;
  1212. GENERAL_NAME *gen = NULL;
  1213. ret = sk_GENERAL_NAMES_new_null();
  1214. if (!ret)
  1215. goto err;
  1216. for (i = 0; i < sk_OPENSSL_STRING_num(ns); i++) {
  1217. char *str = sk_OPENSSL_STRING_value(ns, i);
  1218. gen = a2i_GENERAL_NAME(NULL, NULL, NULL, GEN_EMAIL, str, 0);
  1219. if (!gen)
  1220. goto err;
  1221. gens = GENERAL_NAMES_new();
  1222. if (!gens)
  1223. goto err;
  1224. if (!sk_GENERAL_NAME_push(gens, gen))
  1225. goto err;
  1226. gen = NULL;
  1227. if (!sk_GENERAL_NAMES_push(ret, gens))
  1228. goto err;
  1229. gens = NULL;
  1230. }
  1231. return ret;
  1232. err:
  1233. if (ret)
  1234. sk_GENERAL_NAMES_pop_free(ret, GENERAL_NAMES_free);
  1235. if (gens)
  1236. GENERAL_NAMES_free(gens);
  1237. if (gen)
  1238. GENERAL_NAME_free(gen);
  1239. return NULL;
  1240. }
  1241. static CMS_ReceiptRequest *make_receipt_request(STACK_OF(OPENSSL_STRING)
  1242. *rr_to, int rr_allorfirst, STACK_OF(OPENSSL_STRING)
  1243. *rr_from)
  1244. {
  1245. STACK_OF(GENERAL_NAMES) *rct_to, *rct_from;
  1246. CMS_ReceiptRequest *rr;
  1247. rct_to = make_names_stack(rr_to);
  1248. if (!rct_to)
  1249. goto err;
  1250. if (rr_from) {
  1251. rct_from = make_names_stack(rr_from);
  1252. if (!rct_from)
  1253. goto err;
  1254. } else
  1255. rct_from = NULL;
  1256. rr = CMS_ReceiptRequest_create0(NULL, -1, rr_allorfirst, rct_from,
  1257. rct_to);
  1258. return rr;
  1259. err:
  1260. return NULL;
  1261. }
  1262. static int cms_set_pkey_param(EVP_PKEY_CTX *pctx,
  1263. STACK_OF(OPENSSL_STRING) *param)
  1264. {
  1265. char *keyopt;
  1266. int i;
  1267. if (sk_OPENSSL_STRING_num(param) <= 0)
  1268. return 1;
  1269. for (i = 0; i < sk_OPENSSL_STRING_num(param); i++) {
  1270. keyopt = sk_OPENSSL_STRING_value(param, i);
  1271. if (pkey_ctrl_string(pctx, keyopt) <= 0) {
  1272. BIO_printf(bio_err, "parameter error \"%s\"\n", keyopt);
  1273. ERR_print_errors(bio_err);
  1274. return 0;
  1275. }
  1276. }
  1277. return 1;
  1278. }
  1279. #endif