asn_mstbl.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /* asn_mstbl.c */
  2. /*
  3. * Written by Stephen Henson (steve@openssl.org) for the OpenSSL project
  4. * 2012.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2012 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. */
  55. #include <stdio.h>
  56. #include <ctype.h>
  57. #include <openssl/crypto.h>
  58. #include "internal/cryptlib.h"
  59. #include <openssl/conf.h>
  60. #include <openssl/x509v3.h>
  61. /* Multi string module: add table enstries from a given section */
  62. static int do_tcreate(char *value, char *name);
  63. static int stbl_module_init(CONF_IMODULE *md, const CONF *cnf)
  64. {
  65. int i;
  66. const char *stbl_section;
  67. STACK_OF(CONF_VALUE) *sktmp;
  68. CONF_VALUE *mval;
  69. stbl_section = CONF_imodule_get_value(md);
  70. if ((sktmp = NCONF_get_section(cnf, stbl_section)) == NULL) {
  71. ASN1err(ASN1_F_STBL_MODULE_INIT, ASN1_R_ERROR_LOADING_SECTION);
  72. return 0;
  73. }
  74. for (i = 0; i < sk_CONF_VALUE_num(sktmp); i++) {
  75. mval = sk_CONF_VALUE_value(sktmp, i);
  76. if (!do_tcreate(mval->value, mval->name)) {
  77. ASN1err(ASN1_F_STBL_MODULE_INIT, ASN1_R_INVALID_VALUE);
  78. return 0;
  79. }
  80. }
  81. return 1;
  82. }
  83. static void stbl_module_finish(CONF_IMODULE *md)
  84. {
  85. ASN1_STRING_TABLE_cleanup();
  86. }
  87. void ASN1_add_stable_module(void)
  88. {
  89. CONF_module_add("stbl_section", stbl_module_init, stbl_module_finish);
  90. }
  91. /*
  92. * Create an table entry based on a name value pair. format is oid_name =
  93. * n1:v1, n2:v2,... where name is "min", "max", "mask" or "flags".
  94. */
  95. static int do_tcreate(char *value, char *name)
  96. {
  97. char *eptr;
  98. int nid, i, rv = 0;
  99. long tbl_min = -1, tbl_max = -1;
  100. unsigned long tbl_mask = 0, tbl_flags = 0;
  101. STACK_OF(CONF_VALUE) *lst = NULL;
  102. CONF_VALUE *cnf = NULL;
  103. nid = OBJ_sn2nid(name);
  104. if (nid == NID_undef)
  105. nid = OBJ_ln2nid(name);
  106. if (nid == NID_undef)
  107. goto err;
  108. lst = X509V3_parse_list(value);
  109. if (!lst)
  110. goto err;
  111. for (i = 0; i < sk_CONF_VALUE_num(lst); i++) {
  112. cnf = sk_CONF_VALUE_value(lst, i);
  113. if (strcmp(cnf->name, "min") == 0) {
  114. tbl_min = strtoul(cnf->value, &eptr, 0);
  115. if (*eptr)
  116. goto err;
  117. } else if (strcmp(cnf->name, "max") == 0) {
  118. tbl_max = strtoul(cnf->value, &eptr, 0);
  119. if (*eptr)
  120. goto err;
  121. } else if (strcmp(cnf->name, "mask") == 0) {
  122. if (!ASN1_str2mask(cnf->value, &tbl_mask) || !tbl_mask)
  123. goto err;
  124. } else if (strcmp(cnf->name, "flags") == 0) {
  125. if (strcmp(cnf->value, "nomask") == 0)
  126. tbl_flags = STABLE_NO_MASK;
  127. else if (strcmp(cnf->value, "none") == 0)
  128. tbl_flags = STABLE_FLAGS_CLEAR;
  129. else
  130. goto err;
  131. } else
  132. goto err;
  133. }
  134. rv = 1;
  135. err:
  136. if (rv == 0) {
  137. ASN1err(ASN1_F_DO_TCREATE, ASN1_R_INVALID_STRING_TABLE_VALUE);
  138. if (cnf)
  139. ERR_add_error_data(4, "field=", cnf->name,
  140. ", value=", cnf->value);
  141. else
  142. ERR_add_error_data(4, "name=", name, ", value=", value);
  143. } else {
  144. rv = ASN1_STRING_TABLE_add(nid, tbl_min, tbl_max,
  145. tbl_mask, tbl_flags);
  146. if (!rv)
  147. ASN1err(ASN1_F_DO_TCREATE, ERR_R_MALLOC_FAILURE);
  148. }
  149. sk_CONF_VALUE_pop_free(lst, X509V3_conf_free);
  150. return rv;
  151. }