ts_conf.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  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/pem.h>
  60. #include <openssl/engine.h>
  61. #include <openssl/ts.h>
  62. /* Macro definitions for the configuration file. */
  63. #define BASE_SECTION "tsa"
  64. #define ENV_DEFAULT_TSA "default_tsa"
  65. #define ENV_SERIAL "serial"
  66. #define ENV_CRYPTO_DEVICE "crypto_device"
  67. #define ENV_SIGNER_CERT "signer_cert"
  68. #define ENV_CERTS "certs"
  69. #define ENV_SIGNER_KEY "signer_key"
  70. #define ENV_DEFAULT_POLICY "default_policy"
  71. #define ENV_OTHER_POLICIES "other_policies"
  72. #define ENV_DIGESTS "digests"
  73. #define ENV_ACCURACY "accuracy"
  74. #define ENV_ORDERING "ordering"
  75. #define ENV_TSA_NAME "tsa_name"
  76. #define ENV_ESS_CERT_ID_CHAIN "ess_cert_id_chain"
  77. #define ENV_VALUE_SECS "secs"
  78. #define ENV_VALUE_MILLISECS "millisecs"
  79. #define ENV_VALUE_MICROSECS "microsecs"
  80. #define ENV_CLOCK_PRECISION_DIGITS "clock_precision_digits"
  81. #define ENV_VALUE_YES "yes"
  82. #define ENV_VALUE_NO "no"
  83. /* Function definitions for certificate and key loading. */
  84. X509 *TS_CONF_load_cert(const char *file)
  85. {
  86. BIO *cert = NULL;
  87. X509 *x = NULL;
  88. if ((cert = BIO_new_file(file, "r")) == NULL) goto end;
  89. x = PEM_read_bio_X509_AUX(cert, NULL, NULL, NULL);
  90. end:
  91. if (x == NULL)
  92. fprintf(stderr, "unable to load certificate: %s\n", file);
  93. BIO_free(cert);
  94. return x;
  95. }
  96. STACK_OF(X509) *TS_CONF_load_certs(const char *file)
  97. {
  98. BIO *certs = NULL;
  99. STACK_OF(X509) *othercerts = NULL;
  100. STACK_OF(X509_INFO) *allcerts = NULL;
  101. int i;
  102. if (!(certs = BIO_new_file(file, "r"))) goto end;
  103. if (!(othercerts = sk_X509_new_null())) goto end;
  104. allcerts = PEM_X509_INFO_read_bio(certs, NULL, NULL, NULL);
  105. for(i = 0; i < sk_X509_INFO_num(allcerts); i++)
  106. {
  107. X509_INFO *xi = sk_X509_INFO_value(allcerts, i);
  108. if (xi->x509)
  109. {
  110. sk_X509_push(othercerts, xi->x509);
  111. xi->x509 = NULL;
  112. }
  113. }
  114. end:
  115. if (othercerts == NULL)
  116. fprintf(stderr, "unable to load certificates: %s\n", file);
  117. sk_X509_INFO_pop_free(allcerts, X509_INFO_free);
  118. BIO_free(certs);
  119. return othercerts;
  120. }
  121. EVP_PKEY *TS_CONF_load_key(const char *file, const char *pass)
  122. {
  123. BIO *key = NULL;
  124. EVP_PKEY *pkey = NULL;
  125. if (!(key = BIO_new_file(file, "r"))) goto end;
  126. pkey = PEM_read_bio_PrivateKey(key, NULL, NULL, (char *) pass);
  127. end:
  128. if (pkey == NULL)
  129. fprintf(stderr, "unable to load private key: %s\n", file);
  130. BIO_free(key);
  131. return pkey;
  132. }
  133. /* Function definitions for handling configuration options. */
  134. static void TS_CONF_lookup_fail(const char *name, const char *tag)
  135. {
  136. fprintf(stderr, "variable lookup failed for %s::%s\n", name, tag);
  137. }
  138. static void TS_CONF_invalid(const char *name, const char *tag)
  139. {
  140. fprintf(stderr, "invalid variable value for %s::%s\n", name, tag);
  141. }
  142. const char *TS_CONF_get_tsa_section(CONF *conf, const char *section)
  143. {
  144. if (!section)
  145. {
  146. section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA);
  147. if (!section)
  148. TS_CONF_lookup_fail(BASE_SECTION, ENV_DEFAULT_TSA);
  149. }
  150. return section;
  151. }
  152. int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
  153. TS_RESP_CTX *ctx)
  154. {
  155. int ret = 0;
  156. char *serial = NCONF_get_string(conf, section, ENV_SERIAL);
  157. if (!serial)
  158. {
  159. TS_CONF_lookup_fail(section, ENV_SERIAL);
  160. goto err;
  161. }
  162. TS_RESP_CTX_set_serial_cb(ctx, cb, serial);
  163. ret = 1;
  164. err:
  165. return ret;
  166. }
  167. int TS_CONF_set_crypto_device(CONF *conf, const char *section,
  168. const char *device)
  169. {
  170. int ret = 0;
  171. if (!device)
  172. device = NCONF_get_string(conf, section,
  173. ENV_CRYPTO_DEVICE);
  174. if (device && !TS_CONF_set_default_engine(device))
  175. {
  176. TS_CONF_invalid(section, ENV_CRYPTO_DEVICE);
  177. goto err;
  178. }
  179. ret = 1;
  180. err:
  181. return ret;
  182. }
  183. int TS_CONF_set_default_engine(const char *name)
  184. {
  185. ENGINE *e = NULL;
  186. int ret = 0;
  187. /* Leave the default if builtin specified. */
  188. if (strcmp(name, "builtin") == 0) return 1;
  189. if (!(e = ENGINE_by_id(name))) goto err;
  190. /* Enable the use of the NCipher HSM for forked children. */
  191. if (strcmp(name, "chil") == 0)
  192. ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
  193. /* All the operations are going to be carried out by the engine. */
  194. if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) goto err;
  195. ret = 1;
  196. err:
  197. if (!ret)
  198. {
  199. TSerr(TS_F_TS_CONF_SET_DEFAULT_ENGINE,
  200. TS_R_COULD_NOT_SET_ENGINE);
  201. ERR_add_error_data(2, "engine:", name);
  202. }
  203. if (e) ENGINE_free(e);
  204. return ret;
  205. }
  206. int TS_CONF_set_signer_cert(CONF *conf, const char *section,
  207. const char *cert, TS_RESP_CTX *ctx)
  208. {
  209. int ret = 0;
  210. X509 *cert_obj = NULL;
  211. if (!cert)
  212. cert = NCONF_get_string(conf, section, ENV_SIGNER_CERT);
  213. if (!cert)
  214. {
  215. TS_CONF_lookup_fail(section, ENV_SIGNER_CERT);
  216. goto err;
  217. }
  218. if (!(cert_obj = TS_CONF_load_cert(cert)))
  219. goto err;
  220. if (!TS_RESP_CTX_set_signer_cert(ctx, cert_obj))
  221. goto err;
  222. ret = 1;
  223. err:
  224. X509_free(cert_obj);
  225. return ret;
  226. }
  227. int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
  228. TS_RESP_CTX *ctx)
  229. {
  230. int ret = 0;
  231. STACK_OF(X509) *certs_obj = NULL;
  232. if (!certs)
  233. certs = NCONF_get_string(conf, section, ENV_CERTS);
  234. /* Certificate chain is optional. */
  235. if (!certs) goto end;
  236. if (!(certs_obj = TS_CONF_load_certs(certs))) goto err;
  237. if (!TS_RESP_CTX_set_certs(ctx, certs_obj)) goto err;
  238. end:
  239. ret = 1;
  240. err:
  241. sk_X509_pop_free(certs_obj, X509_free);
  242. return ret;
  243. }
  244. int TS_CONF_set_signer_key(CONF *conf, const char *section,
  245. const char *key, const char *pass,
  246. TS_RESP_CTX *ctx)
  247. {
  248. int ret = 0;
  249. EVP_PKEY *key_obj = NULL;
  250. if (!key)
  251. key = NCONF_get_string(conf, section, ENV_SIGNER_KEY);
  252. if (!key)
  253. {
  254. TS_CONF_lookup_fail(section, ENV_SIGNER_KEY);
  255. goto err;
  256. }
  257. if (!(key_obj = TS_CONF_load_key(key, pass))) goto err;
  258. if (!TS_RESP_CTX_set_signer_key(ctx, key_obj)) goto err;
  259. ret = 1;
  260. err:
  261. EVP_PKEY_free(key_obj);
  262. return ret;
  263. }
  264. int TS_CONF_set_def_policy(CONF *conf, const char *section,
  265. const char *policy, TS_RESP_CTX *ctx)
  266. {
  267. int ret = 0;
  268. ASN1_OBJECT *policy_obj = NULL;
  269. if (!policy)
  270. policy = NCONF_get_string(conf, section,
  271. ENV_DEFAULT_POLICY);
  272. if (!policy)
  273. {
  274. TS_CONF_lookup_fail(section, ENV_DEFAULT_POLICY);
  275. goto err;
  276. }
  277. if (!(policy_obj = OBJ_txt2obj(policy, 0)))
  278. {
  279. TS_CONF_invalid(section, ENV_DEFAULT_POLICY);
  280. goto err;
  281. }
  282. if (!TS_RESP_CTX_set_def_policy(ctx, policy_obj))
  283. goto err;
  284. ret = 1;
  285. err:
  286. ASN1_OBJECT_free(policy_obj);
  287. return ret;
  288. }
  289. int TS_CONF_set_policies(CONF *conf, const char *section,
  290. TS_RESP_CTX *ctx)
  291. {
  292. int ret = 0;
  293. int i;
  294. STACK_OF(CONF_VALUE) *list = NULL;
  295. char *policies = NCONF_get_string(conf, section,
  296. ENV_OTHER_POLICIES);
  297. /* If no other policy is specified, that's fine. */
  298. if (policies && !(list = X509V3_parse_list(policies)))
  299. {
  300. TS_CONF_invalid(section, ENV_OTHER_POLICIES);
  301. goto err;
  302. }
  303. for (i = 0; i < sk_CONF_VALUE_num(list); ++i)
  304. {
  305. CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
  306. const char *extval = val->value ? val->value : val->name;
  307. ASN1_OBJECT *objtmp;
  308. if (!(objtmp = OBJ_txt2obj(extval, 0)))
  309. {
  310. TS_CONF_invalid(section, ENV_OTHER_POLICIES);
  311. goto err;
  312. }
  313. if (!TS_RESP_CTX_add_policy(ctx, objtmp))
  314. goto err;
  315. ASN1_OBJECT_free(objtmp);
  316. }
  317. ret = 1;
  318. err:
  319. sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
  320. return ret;
  321. }
  322. int TS_CONF_set_digests(CONF *conf, const char *section,
  323. TS_RESP_CTX *ctx)
  324. {
  325. int ret = 0;
  326. int i;
  327. STACK_OF(CONF_VALUE) *list = NULL;
  328. char *digests = NCONF_get_string(conf, section, ENV_DIGESTS);
  329. if (!digests)
  330. {
  331. TS_CONF_lookup_fail(section, ENV_DIGESTS);
  332. goto err;
  333. }
  334. if (!(list = X509V3_parse_list(digests)))
  335. {
  336. TS_CONF_invalid(section, ENV_DIGESTS);
  337. goto err;
  338. }
  339. if (sk_CONF_VALUE_num(list) == 0)
  340. {
  341. TS_CONF_invalid(section, ENV_DIGESTS);
  342. goto err;
  343. }
  344. for (i = 0; i < sk_CONF_VALUE_num(list); ++i)
  345. {
  346. CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
  347. const char *extval = val->value ? val->value : val->name;
  348. const EVP_MD *md;
  349. if (!(md = EVP_get_digestbyname(extval)))
  350. {
  351. TS_CONF_invalid(section, ENV_DIGESTS);
  352. goto err;
  353. }
  354. if (!TS_RESP_CTX_add_md(ctx, md))
  355. goto err;
  356. }
  357. ret = 1;
  358. err:
  359. sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
  360. return ret;
  361. }
  362. int TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx)
  363. {
  364. int ret = 0;
  365. int i;
  366. int secs = 0, millis = 0, micros = 0;
  367. STACK_OF(CONF_VALUE) *list = NULL;
  368. char *accuracy = NCONF_get_string(conf, section, ENV_ACCURACY);
  369. if (accuracy && !(list = X509V3_parse_list(accuracy)))
  370. {
  371. TS_CONF_invalid(section, ENV_ACCURACY);
  372. goto err;
  373. }
  374. for (i = 0; i < sk_CONF_VALUE_num(list); ++i)
  375. {
  376. CONF_VALUE *val = sk_CONF_VALUE_value(list, i);
  377. if (strcmp(val->name, ENV_VALUE_SECS) == 0)
  378. {
  379. if (val->value) secs = atoi(val->value);
  380. }
  381. else if (strcmp(val->name, ENV_VALUE_MILLISECS) == 0)
  382. {
  383. if (val->value) millis = atoi(val->value);
  384. }
  385. else if (strcmp(val->name, ENV_VALUE_MICROSECS) == 0)
  386. {
  387. if (val->value) micros = atoi(val->value);
  388. }
  389. else
  390. {
  391. TS_CONF_invalid(section, ENV_ACCURACY);
  392. goto err;
  393. }
  394. }
  395. if (!TS_RESP_CTX_set_accuracy(ctx, secs, millis, micros))
  396. goto err;
  397. ret = 1;
  398. err:
  399. sk_CONF_VALUE_pop_free(list, X509V3_conf_free);
  400. return ret;
  401. }
  402. int TS_CONF_set_clock_precision_digits(CONF *conf, const char *section,
  403. TS_RESP_CTX *ctx)
  404. {
  405. int ret = 0;
  406. long digits = 0;
  407. /* If not specified, set the default value to 0, i.e. sec precision */
  408. if (!NCONF_get_number_e(conf, section, ENV_CLOCK_PRECISION_DIGITS,
  409. &digits))
  410. digits = 0;
  411. if (digits < 0 || digits > TS_MAX_CLOCK_PRECISION_DIGITS)
  412. {
  413. TS_CONF_invalid(section, ENV_CLOCK_PRECISION_DIGITS);
  414. goto err;
  415. }
  416. if (!TS_RESP_CTX_set_clock_precision_digits(ctx, digits))
  417. goto err;
  418. return 1;
  419. err:
  420. return ret;
  421. }
  422. static int TS_CONF_add_flag(CONF *conf, const char *section, const char *field,
  423. int flag, TS_RESP_CTX *ctx)
  424. {
  425. /* Default is false. */
  426. const char *value = NCONF_get_string(conf, section, field);
  427. if (value)
  428. {
  429. if (strcmp(value, ENV_VALUE_YES) == 0)
  430. TS_RESP_CTX_add_flags(ctx, flag);
  431. else if (strcmp(value, ENV_VALUE_NO) != 0)
  432. {
  433. TS_CONF_invalid(section, field);
  434. return 0;
  435. }
  436. }
  437. return 1;
  438. }
  439. int TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx)
  440. {
  441. return TS_CONF_add_flag(conf, section, ENV_ORDERING, TS_ORDERING, ctx);
  442. }
  443. int TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx)
  444. {
  445. return TS_CONF_add_flag(conf, section, ENV_TSA_NAME, TS_TSA_NAME, ctx);
  446. }
  447. int TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section,
  448. TS_RESP_CTX *ctx)
  449. {
  450. return TS_CONF_add_flag(conf, section, ENV_ESS_CERT_ID_CHAIN,
  451. TS_ESS_CERT_ID_CHAIN, ctx);
  452. }