ts_conf.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. /* crypto/ts/ts_conf.c */
  2. /* Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL
  3. * project 2002.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. All advertising materials mentioning features or use of this
  21. * software must display the following acknowledgment:
  22. * "This product includes software developed by the OpenSSL Project
  23. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  24. *
  25. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26. * endorse or promote products derived from this software without
  27. * prior written permission. For written permission, please contact
  28. * licensing@OpenSSL.org.
  29. *
  30. * 5. Products derived from this software may not be called "OpenSSL"
  31. * nor may "OpenSSL" appear in their names without prior written
  32. * permission of the OpenSSL Project.
  33. *
  34. * 6. Redistributions of any form whatsoever must retain the following
  35. * acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50. * OF THE POSSIBILITY OF SUCH DAMAGE.
  51. * ====================================================================
  52. *
  53. * This product includes cryptographic software written by Eric Young
  54. * (eay@cryptsoft.com). This product includes software written by Tim
  55. * Hudson (tjh@cryptsoft.com).
  56. *
  57. */
  58. #include <string.h>
  59. #include <openssl/crypto.h>
  60. #include "cryptlib.h"
  61. #include <openssl/pem.h>
  62. #include <openssl/engine.h>
  63. #include <openssl/ts.h>
  64. /* Macro definitions for the configuration file. */
  65. #define BASE_SECTION "tsa"
  66. #define ENV_DEFAULT_TSA "default_tsa"
  67. #define ENV_SERIAL "serial"
  68. #define ENV_CRYPTO_DEVICE "crypto_device"
  69. #define ENV_SIGNER_CERT "signer_cert"
  70. #define ENV_CERTS "certs"
  71. #define ENV_SIGNER_KEY "signer_key"
  72. #define ENV_DEFAULT_POLICY "default_policy"
  73. #define ENV_OTHER_POLICIES "other_policies"
  74. #define ENV_DIGESTS "digests"
  75. #define ENV_ACCURACY "accuracy"
  76. #define ENV_ORDERING "ordering"
  77. #define ENV_TSA_NAME "tsa_name"
  78. #define ENV_ESS_CERT_ID_CHAIN "ess_cert_id_chain"
  79. #define ENV_VALUE_SECS "secs"
  80. #define ENV_VALUE_MILLISECS "millisecs"
  81. #define ENV_VALUE_MICROSECS "microsecs"
  82. #define ENV_CLOCK_PRECISION_DIGITS "clock_precision_digits"
  83. #define ENV_VALUE_YES "yes"
  84. #define ENV_VALUE_NO "no"
  85. /* Function definitions for certificate and key loading. */
  86. X509 *TS_CONF_load_cert(const char *file)
  87. {
  88. BIO *cert = NULL;
  89. X509 *x = NULL;
  90. if ((cert = BIO_new_file(file, "r")) == NULL) goto end;
  91. x = PEM_read_bio_X509_AUX(cert, NULL, NULL, NULL);
  92. end:
  93. if (x == NULL)
  94. fprintf(stderr, "unable to load certificate: %s\n", file);
  95. BIO_free(cert);
  96. return x;
  97. }
  98. STACK_OF(X509) *TS_CONF_load_certs(const char *file)
  99. {
  100. BIO *certs = NULL;
  101. STACK_OF(X509) *othercerts = NULL;
  102. STACK_OF(X509_INFO) *allcerts = NULL;
  103. int i;
  104. if (!(certs = BIO_new_file(file, "r"))) goto end;
  105. if (!(othercerts = sk_X509_new_null())) goto end;
  106. allcerts = PEM_X509_INFO_read_bio(certs, NULL, NULL, NULL);
  107. for(i = 0; i < sk_X509_INFO_num(allcerts); i++)
  108. {
  109. X509_INFO *xi = sk_X509_INFO_value(allcerts, i);
  110. if (xi->x509)
  111. {
  112. sk_X509_push(othercerts, xi->x509);
  113. xi->x509 = NULL;
  114. }
  115. }
  116. end:
  117. if (othercerts == NULL)
  118. fprintf(stderr, "unable to load certificates: %s\n", file);
  119. sk_X509_INFO_pop_free(allcerts, X509_INFO_free);
  120. BIO_free(certs);
  121. return othercerts;
  122. }
  123. EVP_PKEY *TS_CONF_load_key(const char *file, const char *pass)
  124. {
  125. BIO *key = NULL;
  126. EVP_PKEY *pkey = NULL;
  127. if (!(key = BIO_new_file(file, "r"))) goto end;
  128. pkey = PEM_read_bio_PrivateKey(key, NULL, NULL, (char *) pass);
  129. end:
  130. if (pkey == NULL)
  131. fprintf(stderr, "unable to load private key: %s\n", file);
  132. BIO_free(key);
  133. return pkey;
  134. }
  135. /* Function definitions for handling configuration options. */
  136. static void TS_CONF_lookup_fail(const char *name, const char *tag)
  137. {
  138. fprintf(stderr, "variable lookup failed for %s::%s\n", name, tag);
  139. }
  140. static void TS_CONF_invalid(const char *name, const char *tag)
  141. {
  142. fprintf(stderr, "invalid variable value for %s::%s\n", name, tag);
  143. }
  144. const char *TS_CONF_get_tsa_section(CONF *conf, const char *section)
  145. {
  146. if (!section)
  147. {
  148. section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA);
  149. if (!section)
  150. TS_CONF_lookup_fail(BASE_SECTION, ENV_DEFAULT_TSA);
  151. }
  152. return section;
  153. }
  154. int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
  155. TS_RESP_CTX *ctx)
  156. {
  157. int ret = 0;
  158. char *serial = NCONF_get_string(conf, section, ENV_SERIAL);
  159. if (!serial)
  160. {
  161. TS_CONF_lookup_fail(section, ENV_SERIAL);
  162. goto err;
  163. }
  164. TS_RESP_CTX_set_serial_cb(ctx, cb, serial);
  165. ret = 1;
  166. err:
  167. return ret;
  168. }
  169. int TS_CONF_set_crypto_device(CONF *conf, const char *section,
  170. const char *device)
  171. {
  172. int ret = 0;
  173. if (!device)
  174. device = NCONF_get_string(conf, section,
  175. ENV_CRYPTO_DEVICE);
  176. if (device && !TS_CONF_set_default_engine(device))
  177. {
  178. TS_CONF_invalid(section, ENV_CRYPTO_DEVICE);
  179. goto err;
  180. }
  181. ret = 1;
  182. err:
  183. return ret;
  184. }
  185. int TS_CONF_set_default_engine(const char *name)
  186. {
  187. ENGINE *e = NULL;
  188. int ret = 0;
  189. /* Leave the default if builtin specified. */
  190. if (strcmp(name, "builtin") == 0) return 1;
  191. if (!(e = ENGINE_by_id(name))) goto err;
  192. /* Enable the use of the NCipher HSM for forked children. */
  193. if (strcmp(name, "chil") == 0)
  194. ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
  195. /* All the operations are going to be carried out by the engine. */
  196. if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) goto err;
  197. ret = 1;
  198. err:
  199. if (!ret)
  200. {
  201. TSerr(TS_F_TS_CONF_SET_DEFAULT_ENGINE,
  202. TS_R_COULD_NOT_SET_ENGINE);
  203. ERR_add_error_data(2, "engine:", name);
  204. }
  205. if (e) ENGINE_free(e);
  206. return ret;
  207. }
  208. int TS_CONF_set_signer_cert(CONF *conf, const char *section,
  209. const char *cert, TS_RESP_CTX *ctx)
  210. {
  211. int ret = 0;
  212. X509 *cert_obj = NULL;
  213. if (!cert)
  214. cert = NCONF_get_string(conf, section, ENV_SIGNER_CERT);
  215. if (!cert)
  216. {
  217. TS_CONF_lookup_fail(section, ENV_SIGNER_CERT);
  218. goto err;
  219. }
  220. if (!(cert_obj = TS_CONF_load_cert(cert)))
  221. goto err;
  222. if (!TS_RESP_CTX_set_signer_cert(ctx, cert_obj))
  223. goto err;
  224. ret = 1;
  225. err:
  226. X509_free(cert_obj);
  227. return ret;
  228. }
  229. int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
  230. TS_RESP_CTX *ctx)
  231. {
  232. int ret = 0;
  233. STACK_OF(X509) *certs_obj = NULL;
  234. if (!certs)
  235. certs = NCONF_get_string(conf, section, ENV_CERTS);
  236. /* Certificate chain is optional. */
  237. if (!certs) goto end;
  238. if (!(certs_obj = TS_CONF_load_certs(certs))) goto err;
  239. if (!TS_RESP_CTX_set_certs(ctx, certs_obj)) goto err;
  240. end:
  241. ret = 1;
  242. err:
  243. sk_X509_pop_free(certs_obj, X509_free);
  244. return ret;
  245. }
  246. int TS_CONF_set_signer_key(CONF *conf, const char *section,
  247. const char *key, const char *pass,
  248. TS_RESP_CTX *ctx)
  249. {
  250. int ret = 0;
  251. EVP_PKEY *key_obj = NULL;
  252. if (!key)
  253. key = NCONF_get_string(conf, section, ENV_SIGNER_KEY);
  254. if (!key)
  255. {
  256. TS_CONF_lookup_fail(section, ENV_SIGNER_KEY);
  257. goto err;
  258. }
  259. if (!(key_obj = TS_CONF_load_key(key, pass))) goto err;
  260. if (!TS_RESP_CTX_set_signer_key(ctx, key_obj)) goto err;
  261. ret = 1;
  262. err:
  263. EVP_PKEY_free(key_obj);
  264. return ret;
  265. }
  266. int TS_CONF_set_def_policy(CONF *conf, const char *section,
  267. const char *policy, TS_RESP_CTX *ctx)
  268. {
  269. int ret = 0;
  270. ASN1_OBJECT *policy_obj = NULL;
  271. if (!policy)
  272. policy = NCONF_get_string(conf, section,
  273. ENV_DEFAULT_POLICY);
  274. if (!policy)
  275. {
  276. TS_CONF_lookup_fail(section, ENV_DEFAULT_POLICY);
  277. goto err;
  278. }
  279. if (!(policy_obj = OBJ_txt2obj(policy, 0)))
  280. {
  281. TS_CONF_invalid(section, ENV_DEFAULT_POLICY);
  282. goto err;
  283. }
  284. if (!TS_RESP_CTX_set_def_policy(ctx, policy_obj))
  285. goto err;
  286. ret = 1;
  287. err:
  288. ASN1_OBJECT_free(policy_obj);
  289. return ret;
  290. }
  291. int TS_CONF_set_policies(CONF *conf, const char *section,
  292. TS_RESP_CTX *ctx)
  293. {
  294. int ret = 0;
  295. int i;
  296. STACK_OF(CONF_VALUE) *list = NULL;
  297. char *policies = NCONF_get_string(conf, section,
  298. ENV_OTHER_POLICIES);
  299. /* If no other policy is specified, that's fine. */
  300. if (policies && !(list = X509V3_parse_list(policies)))
  301. {
  302. TS_CONF_invalid(section, ENV_OTHER_POLICIES);
  303. goto err;
  304. }
  305. for (i = 0; i < sk_CONF_VALUE_num(list); ++i)
  306. {
  307. CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
  308. const char *extval = val->value ? val->value : val->name;
  309. ASN1_OBJECT *objtmp;
  310. if (!(objtmp = OBJ_txt2obj(extval, 0)))
  311. {
  312. TS_CONF_invalid(section, ENV_OTHER_POLICIES);
  313. goto err;
  314. }
  315. if (!TS_RESP_CTX_add_policy(ctx, objtmp))
  316. goto err;
  317. ASN1_OBJECT_free(objtmp);
  318. }
  319. ret = 1;
  320. err:
  321. sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
  322. return ret;
  323. }
  324. int TS_CONF_set_digests(CONF *conf, const char *section,
  325. TS_RESP_CTX *ctx)
  326. {
  327. int ret = 0;
  328. int i;
  329. STACK_OF(CONF_VALUE) *list = NULL;
  330. char *digests = NCONF_get_string(conf, section, ENV_DIGESTS);
  331. if (!digests)
  332. {
  333. TS_CONF_lookup_fail(section, ENV_DIGESTS);
  334. goto err;
  335. }
  336. if (!(list = X509V3_parse_list(digests)))
  337. {
  338. TS_CONF_invalid(section, ENV_DIGESTS);
  339. goto err;
  340. }
  341. if (sk_CONF_VALUE_num(list) == 0)
  342. {
  343. TS_CONF_invalid(section, ENV_DIGESTS);
  344. goto err;
  345. }
  346. for (i = 0; i < sk_CONF_VALUE_num(list); ++i)
  347. {
  348. CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
  349. const char *extval = val->value ? val->value : val->name;
  350. const EVP_MD *md;
  351. if (!(md = EVP_get_digestbyname(extval)))
  352. {
  353. TS_CONF_invalid(section, ENV_DIGESTS);
  354. goto err;
  355. }
  356. if (!TS_RESP_CTX_add_md(ctx, md))
  357. goto err;
  358. }
  359. ret = 1;
  360. err:
  361. sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
  362. return ret;
  363. }
  364. int TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx)
  365. {
  366. int ret = 0;
  367. int i;
  368. int secs = 0, millis = 0, micros = 0;
  369. STACK_OF(CONF_VALUE) *list = NULL;
  370. char *accuracy = NCONF_get_string(conf, section, ENV_ACCURACY);
  371. if (accuracy && !(list = X509V3_parse_list(accuracy)))
  372. {
  373. TS_CONF_invalid(section, ENV_ACCURACY);
  374. goto err;
  375. }
  376. for (i = 0; i < sk_CONF_VALUE_num(list); ++i)
  377. {
  378. CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
  379. if (strcmp(val->name, ENV_VALUE_SECS) == 0)
  380. {
  381. if (val->value) secs = atoi(val->value);
  382. }
  383. else if (strcmp(val->name, ENV_VALUE_MILLISECS) == 0)
  384. {
  385. if (val->value) millis = atoi(val->value);
  386. }
  387. else if (strcmp(val->name, ENV_VALUE_MICROSECS) == 0)
  388. {
  389. if (val->value) micros = atoi(val->value);
  390. }
  391. else
  392. {
  393. TS_CONF_invalid(section, ENV_ACCURACY);
  394. goto err;
  395. }
  396. }
  397. if (!TS_RESP_CTX_set_accuracy(ctx, secs, millis, micros))
  398. goto err;
  399. ret = 1;
  400. err:
  401. sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
  402. return ret;
  403. }
  404. int TS_CONF_set_clock_precision_digits(CONF *conf, const char *section,
  405. TS_RESP_CTX *ctx)
  406. {
  407. int ret = 0;
  408. long digits = 0;
  409. /* If not specified, set the default value to 0, i.e. sec precision */
  410. if (!NCONF_get_number_e(conf, section, ENV_CLOCK_PRECISION_DIGITS,
  411. &digits))
  412. digits = 0;
  413. if (digits < 0 || digits > TS_MAX_CLOCK_PRECISION_DIGITS)
  414. {
  415. TS_CONF_invalid(section, ENV_CLOCK_PRECISION_DIGITS);
  416. goto err;
  417. }
  418. if (!TS_RESP_CTX_set_clock_precision_digits(ctx, digits))
  419. goto err;
  420. return 1;
  421. err:
  422. return ret;
  423. }
  424. static int TS_CONF_add_flag(CONF *conf, const char *section, const char *field,
  425. int flag, TS_RESP_CTX *ctx)
  426. {
  427. /* Default is false. */
  428. const char *value = NCONF_get_string(conf, section, field);
  429. if (value)
  430. {
  431. if (strcmp(value, ENV_VALUE_YES) == 0)
  432. TS_RESP_CTX_add_flags(ctx, flag);
  433. else if (strcmp(value, ENV_VALUE_NO) != 0)
  434. {
  435. TS_CONF_invalid(section, field);
  436. return 0;
  437. }
  438. }
  439. return 1;
  440. }
  441. int TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx)
  442. {
  443. return TS_CONF_add_flag(conf, section, ENV_ORDERING, TS_ORDERING, ctx);
  444. }
  445. int TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx)
  446. {
  447. return TS_CONF_add_flag(conf, section, ENV_TSA_NAME, TS_TSA_NAME, ctx);
  448. }
  449. int TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section,
  450. TS_RESP_CTX *ctx)
  451. {
  452. return TS_CONF_add_flag(conf, section, ENV_ESS_CERT_ID_CHAIN,
  453. TS_ESS_CERT_ID_CHAIN, ctx);
  454. }