conf_api.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. /* conf_api.c */
  2. /* Copyright (C) 1995-1998 Eric Young ([email protected])
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young ([email protected]).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson ([email protected]).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young ([email protected])"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson ([email protected])"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. /* Part of the code in here was originally in conf.c, which is now removed */
  59. #ifndef CONF_DEBUG
  60. # undef NDEBUG /* avoid conflicting definitions */
  61. # define NDEBUG
  62. #endif
  63. #include <assert.h>
  64. #include <stdlib.h>
  65. #include <string.h>
  66. #include "cryptlib.h"
  67. #include <openssl/conf.h>
  68. #include <openssl/conf_api.h>
  69. #include "e_os.h"
  70. static void value_free_hash_doall_arg(CONF_VALUE *a,
  71. LHASH_OF(CONF_VALUE) *conf);
  72. static void value_free_stack_doall(CONF_VALUE *a);
  73. static IMPLEMENT_LHASH_DOALL_ARG_FN(value_free_hash, CONF_VALUE,
  74. LHASH_OF(CONF_VALUE))
  75. static IMPLEMENT_LHASH_DOALL_FN(value_free_stack, CONF_VALUE)
  76. /* Up until OpenSSL 0.9.5a, this was get_section */
  77. CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
  78. {
  79. CONF_VALUE *v, vv;
  80. if ((conf == NULL) || (section == NULL))
  81. return (NULL);
  82. vv.name = NULL;
  83. vv.section = (char *)section;
  84. v = lh_CONF_VALUE_retrieve(conf->data, &vv);
  85. return (v);
  86. }
  87. /* Up until OpenSSL 0.9.5a, this was CONF_get_section */
  88. STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
  89. const char *section)
  90. {
  91. CONF_VALUE *v;
  92. v = _CONF_get_section(conf, section);
  93. if (v != NULL)
  94. return ((STACK_OF(CONF_VALUE) *)v->value);
  95. else
  96. return (NULL);
  97. }
  98. int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
  99. {
  100. CONF_VALUE *v = NULL;
  101. STACK_OF(CONF_VALUE) *ts;
  102. ts = (STACK_OF(CONF_VALUE) *)section->value;
  103. value->section = section->section;
  104. if (!sk_CONF_VALUE_push(ts, value)) {
  105. return 0;
  106. }
  107. v = lh_CONF_VALUE_insert(conf->data, value);
  108. if (v != NULL) {
  109. (void)sk_CONF_VALUE_delete_ptr(ts, v);
  110. OPENSSL_free(v->name);
  111. OPENSSL_free(v->value);
  112. OPENSSL_free(v);
  113. }
  114. return 1;
  115. }
  116. char *_CONF_get_string(const CONF *conf, const char *section,
  117. const char *name)
  118. {
  119. CONF_VALUE *v, vv;
  120. char *p;
  121. if (name == NULL)
  122. return (NULL);
  123. if (conf != NULL) {
  124. if (section != NULL) {
  125. vv.name = (char *)name;
  126. vv.section = (char *)section;
  127. v = lh_CONF_VALUE_retrieve(conf->data, &vv);
  128. if (v != NULL)
  129. return (v->value);
  130. if (strcmp(section, "ENV") == 0) {
  131. p = ossl_safe_getenv(name);
  132. if (p != NULL)
  133. return (p);
  134. }
  135. }
  136. vv.section = "default";
  137. vv.name = (char *)name;
  138. v = lh_CONF_VALUE_retrieve(conf->data, &vv);
  139. if (v != NULL)
  140. return (v->value);
  141. else
  142. return (NULL);
  143. } else
  144. return (ossl_safe_getenv(name));
  145. }
  146. #if 0 /* There's no way to provide error checking
  147. * with this function, so force implementors
  148. * of the higher levels to get a string and
  149. * read the number themselves. */
  150. long _CONF_get_number(CONF *conf, char *section, char *name)
  151. {
  152. char *str;
  153. long ret = 0;
  154. str = _CONF_get_string(conf, section, name);
  155. if (str == NULL)
  156. return (0);
  157. for (;;) {
  158. if (conf->meth->is_number(conf, *str))
  159. ret = ret * 10 + conf->meth->to_int(conf, *str);
  160. else
  161. return (ret);
  162. str++;
  163. }
  164. }
  165. #endif
  166. static unsigned long conf_value_hash(const CONF_VALUE *v)
  167. {
  168. return (lh_strhash(v->section) << 2) ^ lh_strhash(v->name);
  169. }
  170. static IMPLEMENT_LHASH_HASH_FN(conf_value, CONF_VALUE)
  171. static int conf_value_cmp(const CONF_VALUE *a, const CONF_VALUE *b)
  172. {
  173. int i;
  174. if (a->section != b->section) {
  175. i = strcmp(a->section, b->section);
  176. if (i)
  177. return (i);
  178. }
  179. if ((a->name != NULL) && (b->name != NULL)) {
  180. i = strcmp(a->name, b->name);
  181. return (i);
  182. } else if (a->name == b->name)
  183. return (0);
  184. else
  185. return ((a->name == NULL) ? -1 : 1);
  186. }
  187. static IMPLEMENT_LHASH_COMP_FN(conf_value, CONF_VALUE)
  188. int _CONF_new_data(CONF *conf)
  189. {
  190. if (conf == NULL) {
  191. return 0;
  192. }
  193. if (conf->data == NULL)
  194. if ((conf->data = lh_CONF_VALUE_new()) == NULL) {
  195. return 0;
  196. }
  197. return 1;
  198. }
  199. void _CONF_free_data(CONF *conf)
  200. {
  201. if (conf == NULL || conf->data == NULL)
  202. return;
  203. lh_CONF_VALUE_down_load(conf->data) = 0; /* evil thing to make * sure the
  204. * 'OPENSSL_free()' works as *
  205. * expected */
  206. lh_CONF_VALUE_doall_arg(conf->data,
  207. LHASH_DOALL_ARG_FN(value_free_hash),
  208. LHASH_OF(CONF_VALUE), conf->data);
  209. /*
  210. * We now have only 'section' entries in the hash table. Due to problems
  211. * with
  212. */
  213. lh_CONF_VALUE_doall(conf->data, LHASH_DOALL_FN(value_free_stack));
  214. lh_CONF_VALUE_free(conf->data);
  215. }
  216. static void value_free_hash_doall_arg(CONF_VALUE *a,
  217. LHASH_OF(CONF_VALUE) *conf)
  218. {
  219. if (a->name != NULL)
  220. (void)lh_CONF_VALUE_delete(conf, a);
  221. }
  222. static void value_free_stack_doall(CONF_VALUE *a)
  223. {
  224. CONF_VALUE *vv;
  225. STACK_OF(CONF_VALUE) *sk;
  226. int i;
  227. if (a->name != NULL)
  228. return;
  229. sk = (STACK_OF(CONF_VALUE) *)a->value;
  230. for (i = sk_CONF_VALUE_num(sk) - 1; i >= 0; i--) {
  231. vv = sk_CONF_VALUE_value(sk, i);
  232. OPENSSL_free(vv->value);
  233. OPENSSL_free(vv->name);
  234. OPENSSL_free(vv);
  235. }
  236. if (sk != NULL)
  237. sk_CONF_VALUE_free(sk);
  238. OPENSSL_free(a->section);
  239. OPENSSL_free(a);
  240. }
  241. /* Up until OpenSSL 0.9.5a, this was new_section */
  242. CONF_VALUE *_CONF_new_section(CONF *conf, const char *section)
  243. {
  244. STACK_OF(CONF_VALUE) *sk = NULL;
  245. int ok = 0, i;
  246. CONF_VALUE *v = NULL, *vv;
  247. if ((sk = sk_CONF_VALUE_new_null()) == NULL)
  248. goto err;
  249. if ((v = OPENSSL_malloc(sizeof(CONF_VALUE))) == NULL)
  250. goto err;
  251. i = strlen(section) + 1;
  252. if ((v->section = OPENSSL_malloc(i)) == NULL)
  253. goto err;
  254. memcpy(v->section, section, i);
  255. v->name = NULL;
  256. v->value = (char *)sk;
  257. vv = lh_CONF_VALUE_insert(conf->data, v);
  258. OPENSSL_assert(vv == NULL);
  259. if (lh_CONF_VALUE_error(conf->data) > 0)
  260. goto err;
  261. ok = 1;
  262. err:
  263. if (!ok) {
  264. if (sk != NULL)
  265. sk_CONF_VALUE_free(sk);
  266. if (v != NULL)
  267. OPENSSL_free(v);
  268. v = NULL;
  269. }
  270. return (v);
  271. }
  272. IMPLEMENT_STACK_OF(CONF_VALUE)