curlx.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. /*
  2. curlx.c Authors: Peter Sylvester, Jean-Paul Merlin
  3. This is a little program to demonstrate the usage of
  4. - an ssl initialisation callback setting a user key and trustbases
  5. coming from a pkcs12 file
  6. - using an ssl application callback to find a URI in the
  7. certificate presented during ssl session establishment.
  8. */
  9. /* <DESC>
  10. * demonstrates use of SSL context callback, requires OpenSSL
  11. * </DESC>
  12. */
  13. /*
  14. * Copyright (c) 2003 The OpenEvidence Project. All rights reserved.
  15. *
  16. * Redistribution and use in source and binary forms, with or without
  17. * modification, are permitted provided that the following conditions
  18. * are met:
  19. *
  20. * 1. Redistributions of source code must retain the above copyright
  21. * notice, this list of conditions, the following disclaimer,
  22. * and the original OpenSSL and SSLeay Licences below.
  23. *
  24. * 2. Redistributions in binary form must reproduce the above copyright
  25. * notice, this list of conditions, the following disclaimer
  26. * and the original OpenSSL and SSLeay Licences below in
  27. * the documentation and/or other materials provided with the
  28. * distribution.
  29. *
  30. * 3. All advertising materials mentioning features or use of this
  31. * software must display the following acknowledgments:
  32. * "This product includes software developed by the Openevidence Project
  33. * for use in the OpenEvidence Toolkit. (http://www.openevidence.org/)"
  34. * This product includes software developed by the OpenSSL Project
  35. * for use in the OpenSSL Toolkit (https://www.openssl.org/)"
  36. * This product includes cryptographic software written by Eric Young
  37. * (eay@cryptsoft.com). This product includes software written by Tim
  38. * Hudson (tjh@cryptsoft.com)."
  39. *
  40. * 4. The names "OpenEvidence Toolkit" and "OpenEvidence Project" must not be
  41. * used to endorse or promote products derived from this software without
  42. * prior written permission. For written permission, please contact
  43. * openevidence-core@openevidence.org.
  44. *
  45. * 5. Products derived from this software may not be called "OpenEvidence"
  46. * nor may "OpenEvidence" appear in their names without prior written
  47. * permission of the OpenEvidence Project.
  48. *
  49. * 6. Redistributions of any form whatsoever must retain the following
  50. * acknowledgments:
  51. * "This product includes software developed by the OpenEvidence Project
  52. * for use in the OpenEvidence Toolkit (http://www.openevidence.org/)
  53. * This product includes software developed by the OpenSSL Project
  54. * for use in the OpenSSL Toolkit (https://www.openssl.org/)"
  55. * This product includes cryptographic software written by Eric Young
  56. * (eay@cryptsoft.com). This product includes software written by Tim
  57. * Hudson (tjh@cryptsoft.com)."
  58. *
  59. * THIS SOFTWARE IS PROVIDED BY THE OpenEvidence PROJECT ``AS IS'' AND ANY
  60. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  61. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  62. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenEvidence PROJECT OR
  63. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  64. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  65. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  66. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  67. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  68. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  69. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  70. * OF THE POSSIBILITY OF SUCH DAMAGE.
  71. * ====================================================================
  72. *
  73. * This product includes software developed by the OpenSSL Project
  74. * for use in the OpenSSL Toolkit (https://www.openssl.org/)
  75. * This product includes cryptographic software written by Eric Young
  76. * (eay@cryptsoft.com). This product includes software written by Tim
  77. * Hudson (tjh@cryptsoft.com).
  78. *
  79. */
  80. #include <stdio.h>
  81. #include <stdlib.h>
  82. #include <string.h>
  83. #include <curl/curl.h>
  84. #include <openssl/x509v3.h>
  85. #include <openssl/x509_vfy.h>
  86. #include <openssl/crypto.h>
  87. #include <openssl/lhash.h>
  88. #include <openssl/objects.h>
  89. #include <openssl/err.h>
  90. #include <openssl/evp.h>
  91. #include <openssl/x509.h>
  92. #include <openssl/pkcs12.h>
  93. #include <openssl/bio.h>
  94. #include <openssl/ssl.h>
  95. static const char *curlx_usage[]={
  96. "usage: curlx args\n",
  97. " -p12 arg - tia file ",
  98. " -envpass arg - environment variable which content the tia private"
  99. " key password",
  100. " -out arg - output file (response)- default stdout",
  101. " -in arg - input file (request)- default stdin",
  102. " -connect arg - URL of the server for the connection ex:"
  103. " www.openevidence.org",
  104. " -mimetype arg - MIME type for data in ex : application/timestamp-query"
  105. " or application/dvcs -default application/timestamp-query",
  106. " -acceptmime arg - MIME type acceptable for the response ex : "
  107. "application/timestamp-response or application/dvcs -default none",
  108. " -accesstype arg - an Object identifier in an AIA/SIA method, e.g."
  109. " AD_DVCS or ad_timestamping",
  110. NULL
  111. };
  112. /*
  113. ./curlx -p12 psy.p12 -envpass XX -in request -verbose -accesstype AD_DVCS
  114. -mimetype application/dvcs -acceptmime application/dvcs -out response
  115. */
  116. /*
  117. * We use this ZERO_NULL to avoid picky compiler warnings,
  118. * when assigning a NULL pointer to a function pointer var.
  119. */
  120. #define ZERO_NULL 0
  121. /* This is a context that we pass to all callbacks */
  122. typedef struct sslctxparm_st {
  123. unsigned char *p12file;
  124. const char *pst;
  125. PKCS12 *p12;
  126. EVP_PKEY *pkey;
  127. X509 *usercert;
  128. STACK_OF(X509) * ca;
  129. CURL *curl;
  130. BIO *errorbio;
  131. int accesstype;
  132. int verbose;
  133. } sslctxparm;
  134. /* some helper function. */
  135. static char *ia5string(ASN1_IA5STRING *ia5)
  136. {
  137. char *tmp;
  138. if(!ia5 || !ia5->length)
  139. return NULL;
  140. tmp = OPENSSL_malloc(ia5->length + 1);
  141. memcpy(tmp, ia5->data, ia5->length);
  142. tmp[ia5->length] = 0;
  143. return tmp;
  144. }
  145. /* A conveniance routine to get an access URI. */
  146. static unsigned char *my_get_ext(X509 *cert, const int type,
  147. int extensiontype)
  148. {
  149. int i;
  150. STACK_OF(ACCESS_DESCRIPTION) * accessinfo;
  151. accessinfo = X509_get_ext_d2i(cert, extensiontype, NULL, NULL);
  152. if(!sk_ACCESS_DESCRIPTION_num(accessinfo))
  153. return NULL;
  154. for(i = 0; i < sk_ACCESS_DESCRIPTION_num(accessinfo); i++) {
  155. ACCESS_DESCRIPTION * ad = sk_ACCESS_DESCRIPTION_value(accessinfo, i);
  156. if(OBJ_obj2nid(ad->method) == type) {
  157. if(ad->location->type == GEN_URI) {
  158. return ia5string(ad->location->d.ia5);
  159. }
  160. return NULL;
  161. }
  162. }
  163. return NULL;
  164. }
  165. /* This is an application verification call back, it does not
  166. perform any addition verification but tries to find a URL
  167. in the presented certificat. If found, this will become
  168. the URL to be used in the POST.
  169. */
  170. static int ssl_app_verify_callback(X509_STORE_CTX *ctx, void *arg)
  171. {
  172. sslctxparm * p = (sslctxparm *) arg;
  173. int ok;
  174. if(p->verbose > 2)
  175. BIO_printf(p->errorbio, "entering ssl_app_verify_callback\n");
  176. if((ok= X509_verify_cert(ctx)) && ctx->cert) {
  177. unsigned char *accessinfo;
  178. if(p->verbose > 1)
  179. X509_print_ex(p->errorbio, ctx->cert, 0, 0);
  180. accessinfo = my_get_ext(ctx->cert, p->accesstype, NID_sinfo_access);
  181. if(accessinfo) {
  182. if(p->verbose)
  183. BIO_printf(p->errorbio, "Setting URL from SIA to: %s\n", accessinfo);
  184. curl_easy_setopt(p->curl, CURLOPT_URL, accessinfo);
  185. }
  186. else if(accessinfo = my_get_ext(ctx->cert, p->accesstype,
  187. NID_info_access)) {
  188. if(p->verbose)
  189. BIO_printf(p->errorbio, "Setting URL from AIA to: %s\n", accessinfo);
  190. curl_easy_setopt(p->curl, CURLOPT_URL, accessinfo);
  191. }
  192. }
  193. if(p->verbose > 2)
  194. BIO_printf(p->errorbio, "leaving ssl_app_verify_callback with %d\n", ok);
  195. return ok;
  196. }
  197. /* The SSL initialisation callback. The callback sets:
  198. - a private key and certificate
  199. - a trusted ca certificate
  200. - a preferred cipherlist
  201. - an application verification callback (the function above)
  202. */
  203. static CURLcode sslctxfun(CURL *curl, void *sslctx, void *parm)
  204. {
  205. sslctxparm *p = (sslctxparm *) parm;
  206. SSL_CTX *ctx = (SSL_CTX *) sslctx;
  207. if(!SSL_CTX_use_certificate(ctx, p->usercert)) {
  208. BIO_printf(p->errorbio, "SSL_CTX_use_certificate problem\n");
  209. goto err;
  210. }
  211. if(!SSL_CTX_use_PrivateKey(ctx, p->pkey)) {
  212. BIO_printf(p->errorbio, "SSL_CTX_use_PrivateKey\n");
  213. goto err;
  214. }
  215. if(!SSL_CTX_check_private_key(ctx)) {
  216. BIO_printf(p->errorbio, "SSL_CTX_check_private_key\n");
  217. goto err;
  218. }
  219. SSL_CTX_set_quiet_shutdown(ctx, 1);
  220. SSL_CTX_set_cipher_list(ctx, "RC4-MD5");
  221. SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
  222. X509_STORE_add_cert(SSL_CTX_get_cert_store(ctx),
  223. sk_X509_value(p->ca, sk_X509_num(p->ca)-1));
  224. SSL_CTX_set_verify_depth(ctx, 2);
  225. SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, ZERO_NULL);
  226. SSL_CTX_set_cert_verify_callback(ctx, ssl_app_verify_callback, parm);
  227. return CURLE_OK;
  228. err:
  229. ERR_print_errors(p->errorbio);
  230. return CURLE_SSL_CERTPROBLEM;
  231. }
  232. int main(int argc, char **argv)
  233. {
  234. BIO* in=NULL;
  235. BIO* out=NULL;
  236. char *outfile = NULL;
  237. char *infile = NULL;
  238. int tabLength=100;
  239. char *binaryptr;
  240. char *mimetype;
  241. char *mimetypeaccept=NULL;
  242. char *contenttype;
  243. const char **pp;
  244. unsigned char *hostporturl = NULL;
  245. BIO *p12bio;
  246. char **args = argv + 1;
  247. unsigned char *serverurl;
  248. sslctxparm p;
  249. char *response;
  250. CURLcode res;
  251. struct curl_slist *headers=NULL;
  252. int badarg=0;
  253. binaryptr = malloc(tabLength);
  254. p.verbose = 0;
  255. p.errorbio = BIO_new_fp(stderr, BIO_NOCLOSE);
  256. curl_global_init(CURL_GLOBAL_DEFAULT);
  257. /* we need some more for the P12 decoding */
  258. OpenSSL_add_all_ciphers();
  259. OpenSSL_add_all_digests();
  260. ERR_load_crypto_strings();
  261. while(*args && *args[0] == '-') {
  262. if(!strcmp (*args, "-in")) {
  263. if(args[1]) {
  264. infile=*(++args);
  265. }
  266. else
  267. badarg=1;
  268. }
  269. else if(!strcmp (*args, "-out")) {
  270. if(args[1]) {
  271. outfile=*(++args);
  272. }
  273. else
  274. badarg=1;
  275. }
  276. else if(!strcmp (*args, "-p12")) {
  277. if(args[1]) {
  278. p.p12file = *(++args);
  279. }
  280. else
  281. badarg=1;
  282. }
  283. else if(strcmp(*args, "-envpass") == 0) {
  284. if(args[1]) {
  285. p.pst = getenv(*(++args));
  286. }
  287. else
  288. badarg=1;
  289. }
  290. else if(strcmp(*args, "-connect") == 0) {
  291. if(args[1]) {
  292. hostporturl = *(++args);
  293. }
  294. else
  295. badarg=1;
  296. }
  297. else if(strcmp(*args, "-mimetype") == 0) {
  298. if(args[1]) {
  299. mimetype = *(++args);
  300. }
  301. else
  302. badarg=1;
  303. }
  304. else if(strcmp(*args, "-acceptmime") == 0) {
  305. if(args[1]) {
  306. mimetypeaccept = *(++args);
  307. }
  308. else
  309. badarg=1;
  310. }
  311. else if(strcmp(*args, "-accesstype") == 0) {
  312. if(args[1]) {
  313. p.accesstype = OBJ_obj2nid(OBJ_txt2obj(*++args, 0));
  314. if(p.accesstype == 0)
  315. badarg=1;
  316. }
  317. else
  318. badarg=1;
  319. }
  320. else if(strcmp(*args, "-verbose") == 0) {
  321. p.verbose++;
  322. }
  323. else
  324. badarg=1;
  325. args++;
  326. }
  327. if(mimetype==NULL || mimetypeaccept == NULL)
  328. badarg = 1;
  329. if(badarg) {
  330. for(pp=curlx_usage; (*pp != NULL); pp++)
  331. BIO_printf(p.errorbio, "%s\n", *pp);
  332. BIO_printf(p.errorbio, "\n");
  333. goto err;
  334. }
  335. /* set input */
  336. if((in=BIO_new(BIO_s_file())) == NULL) {
  337. BIO_printf(p.errorbio, "Error setting input bio\n");
  338. goto err;
  339. }
  340. else if(infile == NULL)
  341. BIO_set_fp(in, stdin, BIO_NOCLOSE|BIO_FP_TEXT);
  342. else if(BIO_read_filename(in, infile) <= 0) {
  343. BIO_printf(p.errorbio, "Error opening input file %s\n", infile);
  344. BIO_free(in);
  345. goto err;
  346. }
  347. /* set output */
  348. if((out=BIO_new(BIO_s_file())) == NULL) {
  349. BIO_printf(p.errorbio, "Error setting output bio.\n");
  350. goto err;
  351. }
  352. else if(outfile == NULL)
  353. BIO_set_fp(out, stdout, BIO_NOCLOSE|BIO_FP_TEXT);
  354. else if(BIO_write_filename(out, outfile) <= 0) {
  355. BIO_printf(p.errorbio, "Error opening output file %s\n", outfile);
  356. BIO_free(out);
  357. goto err;
  358. }
  359. p.errorbio = BIO_new_fp(stderr, BIO_NOCLOSE);
  360. p.curl = curl_easy_init();
  361. if(!p.curl) {
  362. BIO_printf(p.errorbio, "Cannot init curl lib\n");
  363. goto err;
  364. }
  365. p12bio = BIO_new_file(p.p12file, "rb");
  366. if(!p12bio) {
  367. BIO_printf(p.errorbio, "Error opening P12 file %s\n", p.p12file);
  368. goto err;
  369. }
  370. p.p12 = d2i_PKCS12_bio(p12bio, NULL);
  371. if(!p.p12) {
  372. BIO_printf(p.errorbio, "Cannot decode P12 structure %s\n", p.p12file);
  373. goto err;
  374. }
  375. p.ca= NULL;
  376. if(!(PKCS12_parse (p.p12, p.pst, &(p.pkey), &(p.usercert), &(p.ca) ) )) {
  377. BIO_printf(p.errorbio, "Invalid P12 structure in %s\n", p.p12file);
  378. goto err;
  379. }
  380. if(sk_X509_num(p.ca) <= 0) {
  381. BIO_printf(p.errorbio, "No trustworthy CA given.%s\n", p.p12file);
  382. goto err;
  383. }
  384. if(p.verbose > 1)
  385. X509_print_ex(p.errorbio, p.usercert, 0, 0);
  386. /* determine URL to go */
  387. if(hostporturl) {
  388. size_t len = strlen(hostporturl) + 9;
  389. serverurl = malloc(len);
  390. snprintf(serverurl, len, "https://%s", hostporturl);
  391. }
  392. else if(p.accesstype != 0) { /* see whether we can find an AIA or SIA for a
  393. given access type */
  394. serverurl = my_get_ext(p.usercert, p.accesstype, NID_info_access);
  395. if(!serverurl) {
  396. int j=0;
  397. BIO_printf(p.errorbio, "no service URL in user cert "
  398. "cherching in others certificats\n");
  399. for(j=0; j<sk_X509_num(p.ca); j++) {
  400. serverurl = my_get_ext(sk_X509_value(p.ca, j), p.accesstype,
  401. NID_info_access);
  402. if(serverurl)
  403. break;
  404. serverurl = my_get_ext(sk_X509_value(p.ca, j), p.accesstype,
  405. NID_sinfo_access);
  406. if(serverurl)
  407. break;
  408. }
  409. }
  410. }
  411. if(!serverurl) {
  412. BIO_printf(p.errorbio, "no service URL in certificats,"
  413. " check '-accesstype (AD_DVCS | ad_timestamping)'"
  414. " or use '-connect'\n");
  415. goto err;
  416. }
  417. if(p.verbose)
  418. BIO_printf(p.errorbio, "Service URL: <%s>\n", serverurl);
  419. curl_easy_setopt(p.curl, CURLOPT_URL, serverurl);
  420. /* Now specify the POST binary data */
  421. curl_easy_setopt(p.curl, CURLOPT_POSTFIELDS, binaryptr);
  422. curl_easy_setopt(p.curl, CURLOPT_POSTFIELDSIZE, (long)tabLength);
  423. /* pass our list of custom made headers */
  424. contenttype = malloc(15+strlen(mimetype));
  425. snprintf(contenttype, 15+strlen(mimetype), "Content-type: %s", mimetype);
  426. headers = curl_slist_append(headers, contenttype);
  427. curl_easy_setopt(p.curl, CURLOPT_HTTPHEADER, headers);
  428. if(p.verbose)
  429. BIO_printf(p.errorbio, "Service URL: <%s>\n", serverurl);
  430. {
  431. FILE *outfp;
  432. BIO_get_fp(out, &outfp);
  433. curl_easy_setopt(p.curl, CURLOPT_WRITEDATA, outfp);
  434. }
  435. res = curl_easy_setopt(p.curl, CURLOPT_SSL_CTX_FUNCTION, sslctxfun);
  436. if(res != CURLE_OK)
  437. BIO_printf(p.errorbio, "%d %s=%d %d\n", __LINE__,
  438. "CURLOPT_SSL_CTX_FUNCTION", CURLOPT_SSL_CTX_FUNCTION, res);
  439. curl_easy_setopt(p.curl, CURLOPT_SSL_CTX_DATA, &p);
  440. {
  441. int lu; int i=0;
  442. while((lu = BIO_read(in, &binaryptr[i], tabLength-i)) >0) {
  443. i+=lu;
  444. if(i== tabLength) {
  445. tabLength+=100;
  446. binaryptr=realloc(binaryptr, tabLength); /* should be more careful */
  447. }
  448. }
  449. tabLength = i;
  450. }
  451. /* Now specify the POST binary data */
  452. curl_easy_setopt(p.curl, CURLOPT_POSTFIELDS, binaryptr);
  453. curl_easy_setopt(p.curl, CURLOPT_POSTFIELDSIZE, (long)tabLength);
  454. /* Perform the request, res will get the return code */
  455. BIO_printf(p.errorbio, "%d %s %d\n", __LINE__, "curl_easy_perform",
  456. res = curl_easy_perform(p.curl));
  457. {
  458. int result =curl_easy_getinfo(p.curl, CURLINFO_CONTENT_TYPE, &response);
  459. if(mimetypeaccept && p.verbose)
  460. if(!strcmp(mimetypeaccept, response))
  461. BIO_printf(p.errorbio, "the response has a correct mimetype : %s\n",
  462. response);
  463. else
  464. BIO_printf(p.errorbio, "the response doesn\'t have an acceptable "
  465. "mime type, it is %s instead of %s\n",
  466. response, mimetypeaccept);
  467. }
  468. /*** code d'erreur si accept mime ***, egalement code return HTTP != 200 ***/
  469. /* free the header list*/
  470. curl_slist_free_all(headers);
  471. /* always cleanup */
  472. curl_easy_cleanup(p.curl);
  473. BIO_free(in);
  474. BIO_free(out);
  475. return (EXIT_SUCCESS);
  476. err: BIO_printf(p.errorbio, "error");
  477. exit(1);
  478. }