ocsp_ext.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518
  1. /* ocsp_ext.c */
  2. /* Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL
  3. * project. */
  4. /* History:
  5. This file was transfered to Richard Levitte from CertCo by Kathy
  6. Weinhold in mid-spring 2000 to be included in OpenSSL or released
  7. as a patch kit. */
  8. /* ====================================================================
  9. * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. *
  15. * 1. Redistributions of source code must retain the above copyright
  16. * notice, this list of conditions and the following disclaimer.
  17. *
  18. * 2. Redistributions in binary form must reproduce the above copyright
  19. * notice, this list of conditions and the following disclaimer in
  20. * the documentation and/or other materials provided with the
  21. * distribution.
  22. *
  23. * 3. All advertising materials mentioning features or use of this
  24. * software must display the following acknowledgment:
  25. * "This product includes software developed by the OpenSSL Project
  26. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  27. *
  28. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  29. * endorse or promote products derived from this software without
  30. * prior written permission. For written permission, please contact
  31. * openssl-core@openssl.org.
  32. *
  33. * 5. Products derived from this software may not be called "OpenSSL"
  34. * nor may "OpenSSL" appear in their names without prior written
  35. * permission of the OpenSSL Project.
  36. *
  37. * 6. Redistributions of any form whatsoever must retain the following
  38. * acknowledgment:
  39. * "This product includes software developed by the OpenSSL Project
  40. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  41. *
  42. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  43. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  44. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  45. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  46. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  47. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  48. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  49. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  50. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  51. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  52. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  53. * OF THE POSSIBILITY OF SUCH DAMAGE.
  54. * ====================================================================
  55. *
  56. * This product includes cryptographic software written by Eric Young
  57. * (eay@cryptsoft.com). This product includes software written by Tim
  58. * Hudson (tjh@cryptsoft.com).
  59. *
  60. */
  61. #include <stdio.h>
  62. #include <cryptlib.h>
  63. #include <openssl/objects.h>
  64. #include <openssl/x509.h>
  65. #include <openssl/ocsp.h>
  66. #include <openssl/rand.h>
  67. #include <openssl/x509v3.h>
  68. /* Standard wrapper functions for extensions */
  69. /* OCSP request extensions */
  70. int OCSP_REQUEST_get_ext_count(OCSP_REQUEST *x)
  71. {
  72. return(X509v3_get_ext_count(x->tbsRequest->requestExtensions));
  73. }
  74. int OCSP_REQUEST_get_ext_by_NID(OCSP_REQUEST *x, int nid, int lastpos)
  75. {
  76. return(X509v3_get_ext_by_NID(x->tbsRequest->requestExtensions,nid,lastpos));
  77. }
  78. int OCSP_REQUEST_get_ext_by_OBJ(OCSP_REQUEST *x, ASN1_OBJECT *obj, int lastpos)
  79. {
  80. return(X509v3_get_ext_by_OBJ(x->tbsRequest->requestExtensions,obj,lastpos));
  81. }
  82. int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos)
  83. {
  84. return(X509v3_get_ext_by_critical(x->tbsRequest->requestExtensions,crit,lastpos));
  85. }
  86. X509_EXTENSION *OCSP_REQUEST_get_ext(OCSP_REQUEST *x, int loc)
  87. {
  88. return(X509v3_get_ext(x->tbsRequest->requestExtensions,loc));
  89. }
  90. X509_EXTENSION *OCSP_REQUEST_delete_ext(OCSP_REQUEST *x, int loc)
  91. {
  92. return(X509v3_delete_ext(x->tbsRequest->requestExtensions,loc));
  93. }
  94. void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx)
  95. {
  96. return X509V3_get_d2i(x->tbsRequest->requestExtensions, nid, crit, idx);
  97. }
  98. int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
  99. unsigned long flags)
  100. {
  101. return X509V3_add1_i2d(&x->tbsRequest->requestExtensions, nid, value, crit, flags);
  102. }
  103. int OCSP_REQUEST_add_ext(OCSP_REQUEST *x, X509_EXTENSION *ex, int loc)
  104. {
  105. return(X509v3_add_ext(&(x->tbsRequest->requestExtensions),ex,loc) != NULL);
  106. }
  107. /* Single extensions */
  108. int OCSP_ONEREQ_get_ext_count(OCSP_ONEREQ *x)
  109. {
  110. return(X509v3_get_ext_count(x->singleRequestExtensions));
  111. }
  112. int OCSP_ONEREQ_get_ext_by_NID(OCSP_ONEREQ *x, int nid, int lastpos)
  113. {
  114. return(X509v3_get_ext_by_NID(x->singleRequestExtensions,nid,lastpos));
  115. }
  116. int OCSP_ONEREQ_get_ext_by_OBJ(OCSP_ONEREQ *x, ASN1_OBJECT *obj, int lastpos)
  117. {
  118. return(X509v3_get_ext_by_OBJ(x->singleRequestExtensions,obj,lastpos));
  119. }
  120. int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos)
  121. {
  122. return(X509v3_get_ext_by_critical(x->singleRequestExtensions,crit,lastpos));
  123. }
  124. X509_EXTENSION *OCSP_ONEREQ_get_ext(OCSP_ONEREQ *x, int loc)
  125. {
  126. return(X509v3_get_ext(x->singleRequestExtensions,loc));
  127. }
  128. X509_EXTENSION *OCSP_ONEREQ_delete_ext(OCSP_ONEREQ *x, int loc)
  129. {
  130. return(X509v3_delete_ext(x->singleRequestExtensions,loc));
  131. }
  132. void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx)
  133. {
  134. return X509V3_get_d2i(x->singleRequestExtensions, nid, crit, idx);
  135. }
  136. int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit,
  137. unsigned long flags)
  138. {
  139. return X509V3_add1_i2d(&x->singleRequestExtensions, nid, value, crit, flags);
  140. }
  141. int OCSP_ONEREQ_add_ext(OCSP_ONEREQ *x, X509_EXTENSION *ex, int loc)
  142. {
  143. return(X509v3_add_ext(&(x->singleRequestExtensions),ex,loc) != NULL);
  144. }
  145. /* OCSP Basic response */
  146. int OCSP_BASICRESP_get_ext_count(OCSP_BASICRESP *x)
  147. {
  148. return(X509v3_get_ext_count(x->tbsResponseData->responseExtensions));
  149. }
  150. int OCSP_BASICRESP_get_ext_by_NID(OCSP_BASICRESP *x, int nid, int lastpos)
  151. {
  152. return(X509v3_get_ext_by_NID(x->tbsResponseData->responseExtensions,nid,lastpos));
  153. }
  154. int OCSP_BASICRESP_get_ext_by_OBJ(OCSP_BASICRESP *x, ASN1_OBJECT *obj, int lastpos)
  155. {
  156. return(X509v3_get_ext_by_OBJ(x->tbsResponseData->responseExtensions,obj,lastpos));
  157. }
  158. int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos)
  159. {
  160. return(X509v3_get_ext_by_critical(x->tbsResponseData->responseExtensions,crit,lastpos));
  161. }
  162. X509_EXTENSION *OCSP_BASICRESP_get_ext(OCSP_BASICRESP *x, int loc)
  163. {
  164. return(X509v3_get_ext(x->tbsResponseData->responseExtensions,loc));
  165. }
  166. X509_EXTENSION *OCSP_BASICRESP_delete_ext(OCSP_BASICRESP *x, int loc)
  167. {
  168. return(X509v3_delete_ext(x->tbsResponseData->responseExtensions,loc));
  169. }
  170. void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx)
  171. {
  172. return X509V3_get_d2i(x->tbsResponseData->responseExtensions, nid, crit, idx);
  173. }
  174. int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value, int crit,
  175. unsigned long flags)
  176. {
  177. return X509V3_add1_i2d(&x->tbsResponseData->responseExtensions, nid, value, crit, flags);
  178. }
  179. int OCSP_BASICRESP_add_ext(OCSP_BASICRESP *x, X509_EXTENSION *ex, int loc)
  180. {
  181. return(X509v3_add_ext(&(x->tbsResponseData->responseExtensions),ex,loc) != NULL);
  182. }
  183. /* OCSP single response extensions */
  184. int OCSP_SINGLERESP_get_ext_count(OCSP_SINGLERESP *x)
  185. {
  186. return(X509v3_get_ext_count(x->singleExtensions));
  187. }
  188. int OCSP_SINGLERESP_get_ext_by_NID(OCSP_SINGLERESP *x, int nid, int lastpos)
  189. {
  190. return(X509v3_get_ext_by_NID(x->singleExtensions,nid,lastpos));
  191. }
  192. int OCSP_SINGLERESP_get_ext_by_OBJ(OCSP_SINGLERESP *x, ASN1_OBJECT *obj, int lastpos)
  193. {
  194. return(X509v3_get_ext_by_OBJ(x->singleExtensions,obj,lastpos));
  195. }
  196. int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit, int lastpos)
  197. {
  198. return(X509v3_get_ext_by_critical(x->singleExtensions,crit,lastpos));
  199. }
  200. X509_EXTENSION *OCSP_SINGLERESP_get_ext(OCSP_SINGLERESP *x, int loc)
  201. {
  202. return(X509v3_get_ext(x->singleExtensions,loc));
  203. }
  204. X509_EXTENSION *OCSP_SINGLERESP_delete_ext(OCSP_SINGLERESP *x, int loc)
  205. {
  206. return(X509v3_delete_ext(x->singleExtensions,loc));
  207. }
  208. void *OCSP_SINGLERESP_get1_ext_d2i(OCSP_SINGLERESP *x, int nid, int *crit, int *idx)
  209. {
  210. return X509V3_get_d2i(x->singleExtensions, nid, crit, idx);
  211. }
  212. int OCSP_SINGLERESP_add1_ext_i2d(OCSP_SINGLERESP *x, int nid, void *value, int crit,
  213. unsigned long flags)
  214. {
  215. return X509V3_add1_i2d(&x->singleExtensions, nid, value, crit, flags);
  216. }
  217. int OCSP_SINGLERESP_add_ext(OCSP_SINGLERESP *x, X509_EXTENSION *ex, int loc)
  218. {
  219. return(X509v3_add_ext(&(x->singleExtensions),ex,loc) != NULL);
  220. }
  221. /* also CRL Entry Extensions */
  222. #if 0
  223. ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, i2d_of_void *i2d,
  224. void *data, STACK_OF(ASN1_OBJECT) *sk)
  225. {
  226. int i;
  227. unsigned char *p, *b = NULL;
  228. if (data)
  229. {
  230. if ((i=i2d(data,NULL)) <= 0) goto err;
  231. if (!(b=p=OPENSSL_malloc((unsigned int)i)))
  232. goto err;
  233. if (i2d(data, &p) <= 0) goto err;
  234. }
  235. else if (sk)
  236. {
  237. if ((i=i2d_ASN1_SET_OF_ASN1_OBJECT(sk,NULL,
  238. (I2D_OF(ASN1_OBJECT))i2d,
  239. V_ASN1_SEQUENCE,
  240. V_ASN1_UNIVERSAL,
  241. IS_SEQUENCE))<=0) goto err;
  242. if (!(b=p=OPENSSL_malloc((unsigned int)i)))
  243. goto err;
  244. if (i2d_ASN1_SET_OF_ASN1_OBJECT(sk,&p,(I2D_OF(ASN1_OBJECT))i2d,
  245. V_ASN1_SEQUENCE,
  246. V_ASN1_UNIVERSAL,
  247. IS_SEQUENCE)<=0) goto err;
  248. }
  249. else
  250. {
  251. OCSPerr(OCSP_F_ASN1_STRING_ENCODE,OCSP_R_BAD_DATA);
  252. goto err;
  253. }
  254. if (!s && !(s = ASN1_STRING_new())) goto err;
  255. if (!(ASN1_STRING_set(s, b, i))) goto err;
  256. OPENSSL_free(b);
  257. return s;
  258. err:
  259. if (b) OPENSSL_free(b);
  260. return NULL;
  261. }
  262. #endif
  263. /* Nonce handling functions */
  264. /* Add a nonce to an extension stack. A nonce can be specificed or if NULL
  265. * a random nonce will be generated.
  266. * Note: OpenSSL 0.9.7d and later create an OCTET STRING containing the
  267. * nonce, previous versions used the raw nonce.
  268. */
  269. static int ocsp_add1_nonce(STACK_OF(X509_EXTENSION) **exts, unsigned char *val, int len)
  270. {
  271. unsigned char *tmpval;
  272. ASN1_OCTET_STRING os;
  273. int ret = 0;
  274. if (len <= 0) len = OCSP_DEFAULT_NONCE_LENGTH;
  275. /* Create the OCTET STRING manually by writing out the header and
  276. * appending the content octets. This avoids an extra memory allocation
  277. * operation in some cases. Applications should *NOT* do this because
  278. * it relies on library internals.
  279. */
  280. os.length = ASN1_object_size(0, len, V_ASN1_OCTET_STRING);
  281. os.data = OPENSSL_malloc(os.length);
  282. if (os.data == NULL)
  283. goto err;
  284. tmpval = os.data;
  285. ASN1_put_object(&tmpval, 0, len, V_ASN1_OCTET_STRING, V_ASN1_UNIVERSAL);
  286. if (val)
  287. memcpy(tmpval, val, len);
  288. else
  289. RAND_pseudo_bytes(tmpval, len);
  290. if(!X509V3_add1_i2d(exts, NID_id_pkix_OCSP_Nonce,
  291. &os, 0, X509V3_ADD_REPLACE))
  292. goto err;
  293. ret = 1;
  294. err:
  295. if (os.data)
  296. OPENSSL_free(os.data);
  297. return ret;
  298. }
  299. /* Add nonce to an OCSP request */
  300. int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len)
  301. {
  302. return ocsp_add1_nonce(&req->tbsRequest->requestExtensions, val, len);
  303. }
  304. /* Same as above but for a response */
  305. int OCSP_basic_add1_nonce(OCSP_BASICRESP *resp, unsigned char *val, int len)
  306. {
  307. return ocsp_add1_nonce(&resp->tbsResponseData->responseExtensions, val, len);
  308. }
  309. /* Check nonce validity in a request and response.
  310. * Return value reflects result:
  311. * 1: nonces present and equal.
  312. * 2: nonces both absent.
  313. * 3: nonce present in response only.
  314. * 0: nonces both present and not equal.
  315. * -1: nonce in request only.
  316. *
  317. * For most responders clients can check return > 0.
  318. * If responder doesn't handle nonces return != 0 may be
  319. * necessary. return == 0 is always an error.
  320. */
  321. int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs)
  322. {
  323. /*
  324. * Since we are only interested in the presence or absence of
  325. * the nonce and comparing its value there is no need to use
  326. * the X509V3 routines: this way we can avoid them allocating an
  327. * ASN1_OCTET_STRING structure for the value which would be
  328. * freed immediately anyway.
  329. */
  330. int req_idx, resp_idx;
  331. X509_EXTENSION *req_ext, *resp_ext;
  332. req_idx = OCSP_REQUEST_get_ext_by_NID(req, NID_id_pkix_OCSP_Nonce, -1);
  333. resp_idx = OCSP_BASICRESP_get_ext_by_NID(bs, NID_id_pkix_OCSP_Nonce, -1);
  334. /* Check both absent */
  335. if((req_idx < 0) && (resp_idx < 0))
  336. return 2;
  337. /* Check in request only */
  338. if((req_idx >= 0) && (resp_idx < 0))
  339. return -1;
  340. /* Check in response but not request */
  341. if((req_idx < 0) && (resp_idx >= 0))
  342. return 3;
  343. /* Otherwise nonce in request and response so retrieve the extensions */
  344. req_ext = OCSP_REQUEST_get_ext(req, req_idx);
  345. resp_ext = OCSP_BASICRESP_get_ext(bs, resp_idx);
  346. if(ASN1_OCTET_STRING_cmp(req_ext->value, resp_ext->value))
  347. return 0;
  348. return 1;
  349. }
  350. /* Copy the nonce value (if any) from an OCSP request to
  351. * a response.
  352. */
  353. int OCSP_copy_nonce(OCSP_BASICRESP *resp, OCSP_REQUEST *req)
  354. {
  355. X509_EXTENSION *req_ext;
  356. int req_idx;
  357. /* Check for nonce in request */
  358. req_idx = OCSP_REQUEST_get_ext_by_NID(req, NID_id_pkix_OCSP_Nonce, -1);
  359. /* If no nonce that's OK */
  360. if (req_idx < 0) return 2;
  361. req_ext = OCSP_REQUEST_get_ext(req, req_idx);
  362. return OCSP_BASICRESP_add_ext(resp, req_ext, -1);
  363. }
  364. X509_EXTENSION *OCSP_crlID_new(char *url, long *n, char *tim)
  365. {
  366. X509_EXTENSION *x = NULL;
  367. OCSP_CRLID *cid = NULL;
  368. if (!(cid = OCSP_CRLID_new())) goto err;
  369. if (url)
  370. {
  371. if (!(cid->crlUrl = ASN1_IA5STRING_new())) goto err;
  372. if (!(ASN1_STRING_set(cid->crlUrl, url, -1))) goto err;
  373. }
  374. if (n)
  375. {
  376. if (!(cid->crlNum = ASN1_INTEGER_new())) goto err;
  377. if (!(ASN1_INTEGER_set(cid->crlNum, *n))) goto err;
  378. }
  379. if (tim)
  380. {
  381. if (!(cid->crlTime = ASN1_GENERALIZEDTIME_new())) goto err;
  382. if (!(ASN1_GENERALIZEDTIME_set_string(cid->crlTime, tim)))
  383. goto err;
  384. }
  385. x = X509V3_EXT_i2d(NID_id_pkix_OCSP_CrlID, 0, cid);
  386. err:
  387. if (cid) OCSP_CRLID_free(cid);
  388. return x;
  389. }
  390. /* AcceptableResponses ::= SEQUENCE OF OBJECT IDENTIFIER */
  391. X509_EXTENSION *OCSP_accept_responses_new(char **oids)
  392. {
  393. int nid;
  394. STACK_OF(ASN1_OBJECT) *sk = NULL;
  395. ASN1_OBJECT *o = NULL;
  396. X509_EXTENSION *x = NULL;
  397. if (!(sk = sk_ASN1_OBJECT_new_null())) goto err;
  398. while (oids && *oids)
  399. {
  400. if ((nid=OBJ_txt2nid(*oids))!=NID_undef&&(o=OBJ_nid2obj(nid)))
  401. sk_ASN1_OBJECT_push(sk, o);
  402. oids++;
  403. }
  404. x = X509V3_EXT_i2d(NID_id_pkix_OCSP_acceptableResponses, 0, sk);
  405. err:
  406. if (sk) sk_ASN1_OBJECT_pop_free(sk, ASN1_OBJECT_free);
  407. return x;
  408. }
  409. /* ArchiveCutoff ::= GeneralizedTime */
  410. X509_EXTENSION *OCSP_archive_cutoff_new(char* tim)
  411. {
  412. X509_EXTENSION *x=NULL;
  413. ASN1_GENERALIZEDTIME *gt = NULL;
  414. if (!(gt = ASN1_GENERALIZEDTIME_new())) goto err;
  415. if (!(ASN1_GENERALIZEDTIME_set_string(gt, tim))) goto err;
  416. x = X509V3_EXT_i2d(NID_id_pkix_OCSP_archiveCutoff, 0, gt);
  417. err:
  418. if (gt) ASN1_GENERALIZEDTIME_free(gt);
  419. return x;
  420. }
  421. /* per ACCESS_DESCRIPTION parameter are oids, of which there are currently
  422. * two--NID_ad_ocsp, NID_id_ad_caIssuers--and GeneralName value. This
  423. * method forces NID_ad_ocsp and uniformResourceLocator [6] IA5String.
  424. */
  425. X509_EXTENSION *OCSP_url_svcloc_new(X509_NAME* issuer, char **urls)
  426. {
  427. X509_EXTENSION *x = NULL;
  428. ASN1_IA5STRING *ia5 = NULL;
  429. OCSP_SERVICELOC *sloc = NULL;
  430. ACCESS_DESCRIPTION *ad = NULL;
  431. if (!(sloc = OCSP_SERVICELOC_new())) goto err;
  432. if (!(sloc->issuer = X509_NAME_dup(issuer))) goto err;
  433. if (urls && *urls && !(sloc->locator = sk_ACCESS_DESCRIPTION_new_null())) goto err;
  434. while (urls && *urls)
  435. {
  436. if (!(ad = ACCESS_DESCRIPTION_new())) goto err;
  437. if (!(ad->method=OBJ_nid2obj(NID_ad_OCSP))) goto err;
  438. if (!(ad->location = GENERAL_NAME_new())) goto err;
  439. if (!(ia5 = ASN1_IA5STRING_new())) goto err;
  440. if (!ASN1_STRING_set((ASN1_STRING*)ia5, *urls, -1)) goto err;
  441. ad->location->type = GEN_URI;
  442. ad->location->d.ia5 = ia5;
  443. if (!sk_ACCESS_DESCRIPTION_push(sloc->locator, ad)) goto err;
  444. urls++;
  445. }
  446. x = X509V3_EXT_i2d(NID_id_pkix_OCSP_serviceLocator, 0, sloc);
  447. err:
  448. if (sloc) OCSP_SERVICELOC_free(sloc);
  449. return x;
  450. }