conf_api.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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 <string.h>
  65. #include <openssl/conf.h>
  66. #include <openssl/conf_api.h>
  67. #include "e_os.h"
  68. static void value_free_hash_doall_arg(CONF_VALUE *a,
  69. LHASH_OF(CONF_VALUE) *conf);
  70. static void value_free_stack_doall(CONF_VALUE *a);
  71. static IMPLEMENT_LHASH_DOALL_ARG_FN(value_free_hash, CONF_VALUE,
  72. LHASH_OF(CONF_VALUE))
  73. static IMPLEMENT_LHASH_DOALL_FN(value_free_stack, CONF_VALUE)
  74. /* Up until OpenSSL 0.9.5a, this was get_section */
  75. CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section)
  76. {
  77. CONF_VALUE *v,vv;
  78. if ((conf == NULL) || (section == NULL)) return(NULL);
  79. vv.name=NULL;
  80. vv.section=(char *)section;
  81. v=lh_CONF_VALUE_retrieve(conf->data,&vv);
  82. return(v);
  83. }
  84. /* Up until OpenSSL 0.9.5a, this was CONF_get_section */
  85. STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
  86. const char *section)
  87. {
  88. CONF_VALUE *v;
  89. v=_CONF_get_section(conf,section);
  90. if (v != NULL)
  91. return((STACK_OF(CONF_VALUE) *)v->value);
  92. else
  93. return(NULL);
  94. }
  95. int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
  96. {
  97. CONF_VALUE *v = NULL;
  98. STACK_OF(CONF_VALUE) *ts;
  99. ts = (STACK_OF(CONF_VALUE) *)section->value;
  100. value->section=section->section;
  101. if (!sk_CONF_VALUE_push(ts,value))
  102. {
  103. return 0;
  104. }
  105. v = lh_CONF_VALUE_insert(conf->data, value);
  106. if (v != NULL)
  107. {
  108. (void)sk_CONF_VALUE_delete_ptr(ts,v);
  109. OPENSSL_free(v->name);
  110. OPENSSL_free(v->value);
  111. OPENSSL_free(v);
  112. }
  113. return 1;
  114. }
  115. char *_CONF_get_string(const CONF *conf, const char *section, const char *name)
  116. {
  117. CONF_VALUE *v,vv;
  118. char *p;
  119. if (name == NULL) return(NULL);
  120. if (conf != NULL)
  121. {
  122. if (section != NULL)
  123. {
  124. vv.name=(char *)name;
  125. vv.section=(char *)section;
  126. v=lh_CONF_VALUE_retrieve(conf->data,&vv);
  127. if (v != NULL) return(v->value);
  128. if (strcmp(section,"ENV") == 0)
  129. {
  130. p=getenv(name);
  131. if (p != NULL) return(p);
  132. }
  133. }
  134. vv.section="default";
  135. vv.name=(char *)name;
  136. v=lh_CONF_VALUE_retrieve(conf->data,&vv);
  137. if (v != NULL)
  138. return(v->value);
  139. else
  140. return(NULL);
  141. }
  142. else
  143. return(getenv(name));
  144. }
  145. #if 0 /* There's no way to provide error checking with this function, so
  146. force implementors of the higher levels to get a string and read
  147. the number themselves. */
  148. long _CONF_get_number(CONF *conf, char *section, char *name)
  149. {
  150. char *str;
  151. long ret=0;
  152. str=_CONF_get_string(conf,section,name);
  153. if (str == NULL) return(0);
  154. for (;;)
  155. {
  156. if (conf->meth->is_number(conf, *str))
  157. ret=ret*10+conf->meth->to_int(conf, *str);
  158. else
  159. return(ret);
  160. str++;
  161. }
  162. }
  163. #endif
  164. static unsigned long conf_value_hash(const CONF_VALUE *v)
  165. {
  166. return (lh_strhash(v->section)<<2)^lh_strhash(v->name);
  167. }
  168. static IMPLEMENT_LHASH_HASH_FN(conf_value, CONF_VALUE)
  169. static int conf_value_cmp(const CONF_VALUE *a, const CONF_VALUE *b)
  170. {
  171. int i;
  172. if (a->section != b->section)
  173. {
  174. i=strcmp(a->section,b->section);
  175. if (i) return(i);
  176. }
  177. if ((a->name != NULL) && (b->name != NULL))
  178. {
  179. i=strcmp(a->name,b->name);
  180. return(i);
  181. }
  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. {
  192. return 0;
  193. }
  194. if (conf->data == NULL)
  195. if ((conf->data = lh_CONF_VALUE_new()) == NULL)
  196. {
  197. return 0;
  198. }
  199. return 1;
  200. }
  201. void _CONF_free_data(CONF *conf)
  202. {
  203. if (conf == NULL || conf->data == NULL) return;
  204. lh_CONF_VALUE_down_load(conf->data)=0; /* evil thing to make
  205. * sure the 'OPENSSL_free()' works as
  206. * expected */
  207. lh_CONF_VALUE_doall_arg(conf->data,
  208. LHASH_DOALL_ARG_FN(value_free_hash),
  209. LHASH_OF(CONF_VALUE), conf->data);
  210. /* We now have only 'section' entries in the hash table.
  211. * Due to problems with */
  212. lh_CONF_VALUE_doall(conf->data, LHASH_DOALL_FN(value_free_stack));
  213. lh_CONF_VALUE_free(conf->data);
  214. }
  215. static void value_free_hash_doall_arg(CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf)
  216. {
  217. if (a->name != NULL)
  218. (void)lh_CONF_VALUE_delete(conf,a);
  219. }
  220. static void value_free_stack_doall(CONF_VALUE *a)
  221. {
  222. CONF_VALUE *vv;
  223. STACK_OF(CONF_VALUE) *sk;
  224. int i;
  225. if (a->name != NULL) return;
  226. sk=(STACK_OF(CONF_VALUE) *)a->value;
  227. for (i=sk_CONF_VALUE_num(sk)-1; i>=0; i--)
  228. {
  229. vv=sk_CONF_VALUE_value(sk,i);
  230. OPENSSL_free(vv->value);
  231. OPENSSL_free(vv->name);
  232. OPENSSL_free(vv);
  233. }
  234. if (sk != NULL) sk_CONF_VALUE_free(sk);
  235. OPENSSL_free(a->section);
  236. OPENSSL_free(a);
  237. }
  238. /* Up until OpenSSL 0.9.5a, this was new_section */
  239. CONF_VALUE *_CONF_new_section(CONF *conf, const char *section)
  240. {
  241. STACK_OF(CONF_VALUE) *sk=NULL;
  242. int ok=0,i;
  243. CONF_VALUE *v=NULL,*vv;
  244. if ((sk=sk_CONF_VALUE_new_null()) == NULL)
  245. goto err;
  246. if ((v=OPENSSL_malloc(sizeof(CONF_VALUE))) == NULL)
  247. goto err;
  248. i=strlen(section)+1;
  249. if ((v->section=OPENSSL_malloc(i)) == NULL)
  250. goto err;
  251. memcpy(v->section,section,i);
  252. v->name=NULL;
  253. v->value=(char *)sk;
  254. vv=lh_CONF_VALUE_insert(conf->data,v);
  255. OPENSSL_assert(vv == NULL);
  256. ok=1;
  257. err:
  258. if (!ok)
  259. {
  260. if (sk != NULL) sk_CONF_VALUE_free(sk);
  261. if (v != NULL) OPENSSL_free(v);
  262. v=NULL;
  263. }
  264. return(v);
  265. }
  266. IMPLEMENT_STACK_OF(CONF_VALUE)