You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

267 lines
7.8 KiB

  1. /* v3_sxnet.c */
  2. /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  3. * project 1999.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1999 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 <stdio.h>
  59. #include <string.h>
  60. #include <openssl/asn1.h>
  61. #include <openssl/asn1t.h>
  62. #include <openssl/conf.h>
  63. #include <openssl/err.h>
  64. #include <openssl/mem.h>
  65. #include <openssl/obj.h>
  66. #include <openssl/x509v3.h>
  67. /* Support for Thawte strong extranet extension */
  68. #define SXNET_TEST
  69. static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
  70. #ifdef SXNET_TEST
  71. static SXNET * sxnet_v2i(X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
  72. STACK_OF(CONF_VALUE) *nval);
  73. #endif
  74. const X509V3_EXT_METHOD v3_sxnet = {
  75. NID_sxnet, X509V3_EXT_MULTILINE, ASN1_ITEM_ref(SXNET),
  76. 0,0,0,0,
  77. 0,0,
  78. 0,
  79. #ifdef SXNET_TEST
  80. (X509V3_EXT_V2I)sxnet_v2i,
  81. #else
  82. 0,
  83. #endif
  84. (X509V3_EXT_I2R)sxnet_i2r,
  85. 0,
  86. NULL
  87. };
  88. ASN1_SEQUENCE(SXNETID) = {
  89. ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
  90. ASN1_SIMPLE(SXNETID, user, ASN1_OCTET_STRING)
  91. } ASN1_SEQUENCE_END(SXNETID)
  92. IMPLEMENT_ASN1_FUNCTIONS(SXNETID)
  93. ASN1_SEQUENCE(SXNET) = {
  94. ASN1_SIMPLE(SXNET, version, ASN1_INTEGER),
  95. ASN1_SEQUENCE_OF(SXNET, ids, SXNETID)
  96. } ASN1_SEQUENCE_END(SXNET)
  97. IMPLEMENT_ASN1_FUNCTIONS(SXNET)
  98. static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out,
  99. int indent)
  100. {
  101. long v;
  102. char *tmp;
  103. SXNETID *id;
  104. size_t i;
  105. v = ASN1_INTEGER_get(sx->version);
  106. BIO_printf(out, "%*sVersion: %ld (0x%lX)", indent, "", v + 1, v);
  107. for(i = 0; i < sk_SXNETID_num(sx->ids); i++) {
  108. id = sk_SXNETID_value(sx->ids, i);
  109. tmp = i2s_ASN1_INTEGER(NULL, id->zone);
  110. BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp);
  111. OPENSSL_free(tmp);
  112. M_ASN1_OCTET_STRING_print(out, id->user);
  113. }
  114. return 1;
  115. }
  116. #ifdef SXNET_TEST
  117. /* NBB: this is used for testing only. It should *not* be used for anything
  118. * else because it will just take static IDs from the configuration file and
  119. * they should really be separate values for each user.
  120. */
  121. static SXNET * sxnet_v2i(X509V3_EXT_METHOD *method, X509V3_CTX *ctx,
  122. STACK_OF(CONF_VALUE) *nval)
  123. {
  124. CONF_VALUE *cnf;
  125. SXNET *sx = NULL;
  126. size_t i;
  127. for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
  128. cnf = sk_CONF_VALUE_value(nval, i);
  129. if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
  130. return NULL;
  131. }
  132. return sx;
  133. }
  134. #endif
  135. /* Strong Extranet utility functions */
  136. /* Add an id given the zone as an ASCII number */
  137. int SXNET_add_id_asc(SXNET **psx, char *zone, char *user,
  138. int userlen)
  139. {
  140. ASN1_INTEGER *izone = NULL;
  141. if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
  142. OPENSSL_PUT_ERROR(X509V3, SXNET_add_id_asc, X509V3_R_ERROR_CONVERTING_ZONE);
  143. return 0;
  144. }
  145. return SXNET_add_id_INTEGER(psx, izone, user, userlen);
  146. }
  147. /* Add an id given the zone as an unsigned long */
  148. int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user,
  149. int userlen)
  150. {
  151. ASN1_INTEGER *izone = NULL;
  152. if(!(izone = M_ASN1_INTEGER_new()) || !ASN1_INTEGER_set(izone, lzone)) {
  153. OPENSSL_PUT_ERROR(X509V3, SXNET_add_id_ulong, ERR_R_MALLOC_FAILURE);
  154. M_ASN1_INTEGER_free(izone);
  155. return 0;
  156. }
  157. return SXNET_add_id_INTEGER(psx, izone, user, userlen);
  158. }
  159. /* Add an id given the zone as an ASN1_INTEGER.
  160. * Note this version uses the passed integer and doesn't make a copy so don't
  161. * free it up afterwards.
  162. */
  163. int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user,
  164. int userlen)
  165. {
  166. SXNET *sx = NULL;
  167. SXNETID *id = NULL;
  168. if(!psx || !zone || !user) {
  169. OPENSSL_PUT_ERROR(X509V3, SXNET_add_id_INTEGER, X509V3_R_INVALID_NULL_ARGUMENT);
  170. return 0;
  171. }
  172. if(userlen == -1) userlen = strlen(user);
  173. if(userlen > 64) {
  174. OPENSSL_PUT_ERROR(X509V3, SXNET_add_id_INTEGER, X509V3_R_USER_TOO_LONG);
  175. return 0;
  176. }
  177. if(!*psx) {
  178. if(!(sx = SXNET_new())) goto err;
  179. if(!ASN1_INTEGER_set(sx->version, 0)) goto err;
  180. *psx = sx;
  181. } else sx = *psx;
  182. if(SXNET_get_id_INTEGER(sx, zone)) {
  183. OPENSSL_PUT_ERROR(X509V3, SXNET_add_id_INTEGER, X509V3_R_DUPLICATE_ZONE_ID);
  184. return 0;
  185. }
  186. if(!(id = SXNETID_new())) goto err;
  187. if(userlen == -1) userlen = strlen(user);
  188. if(!M_ASN1_OCTET_STRING_set(id->user, user, userlen)) goto err;
  189. if(!sk_SXNETID_push(sx->ids, id)) goto err;
  190. id->zone = zone;
  191. return 1;
  192. err:
  193. OPENSSL_PUT_ERROR(X509V3, SXNET_add_id_INTEGER, ERR_R_MALLOC_FAILURE);
  194. SXNETID_free(id);
  195. SXNET_free(sx);
  196. *psx = NULL;
  197. return 0;
  198. }
  199. ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone)
  200. {
  201. ASN1_INTEGER *izone = NULL;
  202. ASN1_OCTET_STRING *oct;
  203. if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
  204. OPENSSL_PUT_ERROR(X509V3, SXNET_get_id_asc, X509V3_R_ERROR_CONVERTING_ZONE);
  205. return NULL;
  206. }
  207. oct = SXNET_get_id_INTEGER(sx, izone);
  208. M_ASN1_INTEGER_free(izone);
  209. return oct;
  210. }
  211. ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone)
  212. {
  213. ASN1_INTEGER *izone = NULL;
  214. ASN1_OCTET_STRING *oct;
  215. if(!(izone = M_ASN1_INTEGER_new()) || !ASN1_INTEGER_set(izone, lzone)) {
  216. OPENSSL_PUT_ERROR(X509V3, SXNET_get_id_ulong, ERR_R_MALLOC_FAILURE);
  217. M_ASN1_INTEGER_free(izone);
  218. return NULL;
  219. }
  220. oct = SXNET_get_id_INTEGER(sx, izone);
  221. M_ASN1_INTEGER_free(izone);
  222. return oct;
  223. }
  224. ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone)
  225. {
  226. SXNETID *id;
  227. size_t i;
  228. for(i = 0; i < sk_SXNETID_num(sx->ids); i++) {
  229. id = sk_SXNETID_value(sx->ids, i);
  230. if(!M_ASN1_INTEGER_cmp(id->zone, zone)) return id->user;
  231. }
  232. return NULL;
  233. }
  234. IMPLEMENT_ASN1_SET_OF(SXNETID)