ocsp_ext.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  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. ASN1_STRING *ASN1_STRING_encode(ASN1_STRING *s, int (*i2d)(),
  223. char *data, STACK_OF(ASN1_OBJECT) *sk)
  224. {
  225. int i;
  226. unsigned char *p, *b = NULL;
  227. if (data)
  228. {
  229. if ((i=i2d(data,NULL)) <= 0) goto err;
  230. if (!(b=p=(unsigned char*)OPENSSL_malloc((unsigned int)i)))
  231. goto err;
  232. if (i2d(data, &p) <= 0) goto err;
  233. }
  234. else if (sk)
  235. {
  236. if ((i=i2d_ASN1_SET_OF_ASN1_OBJECT(sk,NULL,i2d,V_ASN1_SEQUENCE,
  237. V_ASN1_UNIVERSAL,IS_SEQUENCE))<=0) goto err;
  238. if (!(b=p=(unsigned char*)OPENSSL_malloc((unsigned int)i)))
  239. goto err;
  240. if (i2d_ASN1_SET_OF_ASN1_OBJECT(sk,&p,i2d,V_ASN1_SEQUENCE,
  241. V_ASN1_UNIVERSAL,IS_SEQUENCE)<=0) goto err;
  242. }
  243. else
  244. {
  245. OCSPerr(OCSP_F_ASN1_STRING_ENCODE,OCSP_R_BAD_DATA);
  246. goto err;
  247. }
  248. if (!s && !(s = ASN1_STRING_new())) goto err;
  249. if (!(ASN1_STRING_set(s, b, i))) goto err;
  250. OPENSSL_free(b);
  251. return s;
  252. err:
  253. if (b) OPENSSL_free(b);
  254. return NULL;
  255. }
  256. /* Nonce handling functions */
  257. /* Add a nonce to an extension stack. A nonce can be specificed or if NULL
  258. * a random nonce will be generated.
  259. */
  260. static int ocsp_add1_nonce(STACK_OF(X509_EXTENSION) **exts, unsigned char *val, int len)
  261. {
  262. unsigned char *tmpval;
  263. ASN1_OCTET_STRING os;
  264. int ret = 0;
  265. if (len <= 0) len = OCSP_DEFAULT_NONCE_LENGTH;
  266. if (val) tmpval = val;
  267. else
  268. {
  269. if (!(tmpval = OPENSSL_malloc(len))) goto err;
  270. RAND_pseudo_bytes(tmpval, len);
  271. }
  272. os.data = tmpval;
  273. os.length = len;
  274. if(!X509V3_add1_i2d(exts, NID_id_pkix_OCSP_Nonce,
  275. &os, 0, X509V3_ADD_REPLACE))
  276. goto err;
  277. ret = 1;
  278. err:
  279. if(!val) OPENSSL_free(tmpval);
  280. return ret;
  281. }
  282. /* Add nonce to an OCSP request */
  283. int OCSP_request_add1_nonce(OCSP_REQUEST *req, unsigned char *val, int len)
  284. {
  285. return ocsp_add1_nonce(&req->tbsRequest->requestExtensions, val, len);
  286. }
  287. /* Same as above but for a response */
  288. int OCSP_basic_add1_nonce(OCSP_BASICRESP *resp, unsigned char *val, int len)
  289. {
  290. return ocsp_add1_nonce(&resp->tbsResponseData->responseExtensions, val, len);
  291. }
  292. /* Check nonce validity in a request and response.
  293. * Return value reflects result:
  294. * 1: nonces present and equal.
  295. * 2: nonces both absent.
  296. * 3: nonce present in response only.
  297. * 0: nonces both present and not equal.
  298. * -1: nonce in request only.
  299. *
  300. * For most responders clients can check return > 0.
  301. * If responder doesn't handle nonces return != 0 may be
  302. * necessary. return == 0 is always an error.
  303. */
  304. int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *bs)
  305. {
  306. /*
  307. * Since we are only interested in the presence or absence of
  308. * the nonce and comparing its value there is no need to use
  309. * the X509V3 routines: this way we can avoid them allocating an
  310. * ASN1_OCTET_STRING structure for the value which would be
  311. * freed immediately anyway.
  312. */
  313. int req_idx, resp_idx;
  314. X509_EXTENSION *req_ext, *resp_ext;
  315. req_idx = OCSP_REQUEST_get_ext_by_NID(req, NID_id_pkix_OCSP_Nonce, -1);
  316. resp_idx = OCSP_BASICRESP_get_ext_by_NID(bs, NID_id_pkix_OCSP_Nonce, -1);
  317. /* Check both absent */
  318. if((req_idx < 0) && (resp_idx < 0))
  319. return 2;
  320. /* Check in request only */
  321. if((req_idx >= 0) && (resp_idx < 0))
  322. return -1;
  323. /* Check in response but not request */
  324. if((req_idx < 0) && (resp_idx >= 0))
  325. return 3;
  326. /* Otherwise nonce in request and response so retrieve the extensions */
  327. req_ext = OCSP_REQUEST_get_ext(req, req_idx);
  328. resp_ext = OCSP_BASICRESP_get_ext(bs, resp_idx);
  329. if(ASN1_OCTET_STRING_cmp(req_ext->value, resp_ext->value))
  330. return 0;
  331. return 1;
  332. }
  333. /* Copy the nonce value (if any) from an OCSP request to
  334. * a response.
  335. */
  336. int OCSP_copy_nonce(OCSP_BASICRESP *resp, OCSP_REQUEST *req)
  337. {
  338. X509_EXTENSION *req_ext;
  339. int req_idx;
  340. /* Check for nonce in request */
  341. req_idx = OCSP_REQUEST_get_ext_by_NID(req, NID_id_pkix_OCSP_Nonce, -1);
  342. /* If no nonce that's OK */
  343. if (req_idx < 0) return 2;
  344. req_ext = OCSP_REQUEST_get_ext(req, req_idx);
  345. return OCSP_BASICRESP_add_ext(resp, req_ext, -1);
  346. }
  347. X509_EXTENSION *OCSP_crlID_new(char *url, long *n, char *tim)
  348. {
  349. X509_EXTENSION *x = NULL;
  350. OCSP_CRLID *cid = NULL;
  351. if (!(cid = OCSP_CRLID_new())) goto err;
  352. if (url)
  353. {
  354. if (!(cid->crlUrl = ASN1_IA5STRING_new())) goto err;
  355. if (!(ASN1_STRING_set(cid->crlUrl, url, -1))) goto err;
  356. }
  357. if (n)
  358. {
  359. if (!(cid->crlNum = ASN1_INTEGER_new())) goto err;
  360. if (!(ASN1_INTEGER_set(cid->crlNum, *n))) goto err;
  361. }
  362. if (tim)
  363. {
  364. if (!(cid->crlTime = ASN1_GENERALIZEDTIME_new())) goto err;
  365. if (!(ASN1_GENERALIZEDTIME_set_string(cid->crlTime, tim)))
  366. goto err;
  367. }
  368. if (!(x = X509_EXTENSION_new())) goto err;
  369. if (!(x->object = OBJ_nid2obj(NID_id_pkix_OCSP_CrlID))) goto err;
  370. if (!(ASN1_STRING_encode(x->value,i2d_OCSP_CRLID,(char*)cid,NULL)))
  371. goto err;
  372. OCSP_CRLID_free(cid);
  373. return x;
  374. err:
  375. if (x) X509_EXTENSION_free(x);
  376. if (cid) OCSP_CRLID_free(cid);
  377. return NULL;
  378. }
  379. /* AcceptableResponses ::= SEQUENCE OF OBJECT IDENTIFIER */
  380. X509_EXTENSION *OCSP_accept_responses_new(char **oids)
  381. {
  382. int nid;
  383. STACK_OF(ASN1_OBJECT) *sk = NULL;
  384. ASN1_OBJECT *o = NULL;
  385. X509_EXTENSION *x = NULL;
  386. if (!(sk = sk_ASN1_OBJECT_new_null())) goto err;
  387. while (oids && *oids)
  388. {
  389. if ((nid=OBJ_txt2nid(*oids))!=NID_undef&&(o=OBJ_nid2obj(nid)))
  390. sk_ASN1_OBJECT_push(sk, o);
  391. oids++;
  392. }
  393. if (!(x = X509_EXTENSION_new())) goto err;
  394. if (!(x->object = OBJ_nid2obj(NID_id_pkix_OCSP_acceptableResponses)))
  395. goto err;
  396. if (!(ASN1_STRING_encode(x->value,i2d_ASN1_OBJECT,NULL,sk)))
  397. goto err;
  398. sk_ASN1_OBJECT_pop_free(sk, ASN1_OBJECT_free);
  399. return x;
  400. err:
  401. if (x) X509_EXTENSION_free(x);
  402. if (sk) sk_ASN1_OBJECT_pop_free(sk, ASN1_OBJECT_free);
  403. return NULL;
  404. }
  405. /* ArchiveCutoff ::= GeneralizedTime */
  406. X509_EXTENSION *OCSP_archive_cutoff_new(char* tim)
  407. {
  408. X509_EXTENSION *x=NULL;
  409. ASN1_GENERALIZEDTIME *gt = NULL;
  410. if (!(gt = ASN1_GENERALIZEDTIME_new())) goto err;
  411. if (!(ASN1_GENERALIZEDTIME_set_string(gt, tim))) goto err;
  412. if (!(x = X509_EXTENSION_new())) goto err;
  413. if (!(x->object=OBJ_nid2obj(NID_id_pkix_OCSP_archiveCutoff)))goto err;
  414. if (!(ASN1_STRING_encode(x->value,i2d_ASN1_GENERALIZEDTIME,
  415. (char*)gt,NULL))) goto err;
  416. ASN1_GENERALIZEDTIME_free(gt);
  417. return x;
  418. err:
  419. if (gt) ASN1_GENERALIZEDTIME_free(gt);
  420. if (x) X509_EXTENSION_free(x);
  421. return NULL;
  422. }
  423. /* per ACCESS_DESCRIPTION parameter are oids, of which there are currently
  424. * two--NID_ad_ocsp, NID_id_ad_caIssuers--and GeneralName value. This
  425. * method forces NID_ad_ocsp and uniformResourceLocator [6] IA5String.
  426. */
  427. X509_EXTENSION *OCSP_url_svcloc_new(X509_NAME* issuer, char **urls)
  428. {
  429. X509_EXTENSION *x = NULL;
  430. ASN1_IA5STRING *ia5 = NULL;
  431. OCSP_SERVICELOC *sloc = NULL;
  432. ACCESS_DESCRIPTION *ad = NULL;
  433. if (!(sloc = OCSP_SERVICELOC_new())) goto err;
  434. if (!(sloc->issuer = X509_NAME_dup(issuer))) goto err;
  435. if (urls && *urls && !(sloc->locator = sk_ACCESS_DESCRIPTION_new_null())) goto err;
  436. while (urls && *urls)
  437. {
  438. if (!(ad = ACCESS_DESCRIPTION_new())) goto err;
  439. if (!(ad->method=OBJ_nid2obj(NID_ad_OCSP))) goto err;
  440. if (!(ad->location = GENERAL_NAME_new())) goto err;
  441. if (!(ia5 = ASN1_IA5STRING_new())) goto err;
  442. if (!ASN1_STRING_set((ASN1_STRING*)ia5, *urls, -1)) goto err;
  443. ad->location->type = GEN_URI;
  444. ad->location->d.ia5 = ia5;
  445. if (!sk_ACCESS_DESCRIPTION_push(sloc->locator, ad)) goto err;
  446. urls++;
  447. }
  448. if (!(x = X509_EXTENSION_new())) goto err;
  449. if (!(x->object = OBJ_nid2obj(NID_id_pkix_OCSP_serviceLocator)))
  450. goto err;
  451. if (!(ASN1_STRING_encode(x->value, i2d_OCSP_SERVICELOC,
  452. (char*)sloc, NULL))) goto err;
  453. OCSP_SERVICELOC_free(sloc);
  454. return x;
  455. err:
  456. if (x) X509_EXTENSION_free(x);
  457. if (sloc) OCSP_SERVICELOC_free(sloc);
  458. return NULL;
  459. }