est.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. /*
  2. * Hotspot 2.0 OSU client - EST client
  3. * Copyright (c) 2012-2014, Qualcomm Atheros, Inc.
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include <openssl/err.h>
  10. #include <openssl/evp.h>
  11. #include <openssl/pem.h>
  12. #include <openssl/pkcs7.h>
  13. #include <openssl/rsa.h>
  14. #include <openssl/asn1.h>
  15. #include <openssl/asn1t.h>
  16. #include <openssl/x509.h>
  17. #include <openssl/x509v3.h>
  18. #include "common.h"
  19. #include "utils/base64.h"
  20. #include "utils/xml-utils.h"
  21. #include "utils/http-utils.h"
  22. #include "osu_client.h"
  23. static int pkcs7_to_cert(struct hs20_osu_client *ctx, const u8 *pkcs7,
  24. size_t len, char *pem_file, char *der_file)
  25. {
  26. PKCS7 *p7 = NULL;
  27. const unsigned char *p = pkcs7;
  28. STACK_OF(X509) *certs;
  29. int i, num, ret = -1;
  30. BIO *out = NULL;
  31. p7 = d2i_PKCS7(NULL, &p, len);
  32. if (p7 == NULL) {
  33. wpa_printf(MSG_INFO, "Could not parse PKCS#7 object: %s",
  34. ERR_error_string(ERR_get_error(), NULL));
  35. write_result(ctx, "Could not parse PKCS#7 object from EST");
  36. goto fail;
  37. }
  38. switch (OBJ_obj2nid(p7->type)) {
  39. case NID_pkcs7_signed:
  40. certs = p7->d.sign->cert;
  41. break;
  42. case NID_pkcs7_signedAndEnveloped:
  43. certs = p7->d.signed_and_enveloped->cert;
  44. break;
  45. default:
  46. certs = NULL;
  47. break;
  48. }
  49. if (!certs || ((num = sk_X509_num(certs)) == 0)) {
  50. wpa_printf(MSG_INFO, "No certificates found in PKCS#7 object");
  51. write_result(ctx, "No certificates found in PKCS#7 object");
  52. goto fail;
  53. }
  54. if (der_file) {
  55. FILE *f = fopen(der_file, "wb");
  56. if (f == NULL)
  57. goto fail;
  58. i2d_X509_fp(f, sk_X509_value(certs, 0));
  59. fclose(f);
  60. }
  61. if (pem_file) {
  62. out = BIO_new(BIO_s_file());
  63. if (out == NULL ||
  64. BIO_write_filename(out, pem_file) <= 0)
  65. goto fail;
  66. for (i = 0; i < num; i++) {
  67. X509 *cert = sk_X509_value(certs, i);
  68. X509_print(out, cert);
  69. PEM_write_bio_X509(out, cert);
  70. BIO_puts(out, "\n");
  71. }
  72. }
  73. ret = 0;
  74. fail:
  75. PKCS7_free(p7);
  76. if (out)
  77. BIO_free_all(out);
  78. return ret;
  79. }
  80. int est_load_cacerts(struct hs20_osu_client *ctx, const char *url)
  81. {
  82. char *buf, *resp;
  83. size_t buflen;
  84. unsigned char *pkcs7;
  85. size_t pkcs7_len, resp_len;
  86. int res;
  87. buflen = os_strlen(url) + 100;
  88. buf = os_malloc(buflen);
  89. if (buf == NULL)
  90. return -1;
  91. os_snprintf(buf, buflen, "%s/cacerts", url);
  92. wpa_printf(MSG_INFO, "Download EST cacerts from %s", buf);
  93. write_summary(ctx, "Download EST cacerts from %s", buf);
  94. ctx->no_osu_cert_validation = 1;
  95. res = http_download_file(ctx->http, buf, "Cert/est-cacerts.txt",
  96. ctx->ca_fname);
  97. ctx->no_osu_cert_validation = 0;
  98. if (res < 0) {
  99. wpa_printf(MSG_INFO, "Failed to download EST cacerts from %s",
  100. buf);
  101. write_result(ctx, "Failed to download EST cacerts from %s",
  102. buf);
  103. os_free(buf);
  104. return -1;
  105. }
  106. os_free(buf);
  107. resp = os_readfile("Cert/est-cacerts.txt", &resp_len);
  108. if (resp == NULL) {
  109. wpa_printf(MSG_INFO, "Could not read Cert/est-cacerts.txt");
  110. write_result(ctx, "Could not read EST cacerts");
  111. return -1;
  112. }
  113. pkcs7 = base64_decode((unsigned char *) resp, resp_len, &pkcs7_len);
  114. if (pkcs7 && pkcs7_len < resp_len / 2) {
  115. wpa_printf(MSG_INFO, "Too short base64 decode (%u bytes; downloaded %u bytes) - assume this was binary",
  116. (unsigned int) pkcs7_len, (unsigned int) resp_len);
  117. os_free(pkcs7);
  118. pkcs7 = NULL;
  119. }
  120. if (pkcs7 == NULL) {
  121. wpa_printf(MSG_INFO, "EST workaround - Could not decode base64, assume this is DER encoded PKCS7");
  122. pkcs7 = os_malloc(resp_len);
  123. if (pkcs7) {
  124. os_memcpy(pkcs7, resp, resp_len);
  125. pkcs7_len = resp_len;
  126. }
  127. }
  128. os_free(resp);
  129. if (pkcs7 == NULL) {
  130. wpa_printf(MSG_INFO, "Could not fetch PKCS7 cacerts");
  131. write_result(ctx, "Could not fetch EST PKCS#7 cacerts");
  132. return -1;
  133. }
  134. res = pkcs7_to_cert(ctx, pkcs7, pkcs7_len, "Cert/est-cacerts.pem",
  135. NULL);
  136. os_free(pkcs7);
  137. if (res < 0) {
  138. wpa_printf(MSG_INFO, "Could not parse CA certs from PKCS#7 cacerts response");
  139. write_result(ctx, "Could not parse CA certs from EST PKCS#7 cacerts response");
  140. return -1;
  141. }
  142. unlink("Cert/est-cacerts.txt");
  143. return 0;
  144. }
  145. /*
  146. * CsrAttrs ::= SEQUENCE SIZE (0..MAX) OF AttrOrOID
  147. *
  148. * AttrOrOID ::= CHOICE {
  149. * oid OBJECT IDENTIFIER,
  150. * attribute Attribute }
  151. *
  152. * Attribute ::= SEQUENCE {
  153. * type OBJECT IDENTIFIER,
  154. * values SET SIZE(1..MAX) OF OBJECT IDENTIFIER }
  155. */
  156. typedef struct {
  157. ASN1_OBJECT *type;
  158. STACK_OF(ASN1_OBJECT) *values;
  159. } Attribute;
  160. typedef struct {
  161. int type;
  162. union {
  163. ASN1_OBJECT *oid;
  164. Attribute *attribute;
  165. } d;
  166. } AttrOrOID;
  167. typedef struct {
  168. int type;
  169. STACK_OF(AttrOrOID) *attrs;
  170. } CsrAttrs;
  171. ASN1_SEQUENCE(Attribute) = {
  172. ASN1_SIMPLE(Attribute, type, ASN1_OBJECT),
  173. ASN1_SET_OF(Attribute, values, ASN1_OBJECT)
  174. } ASN1_SEQUENCE_END(Attribute);
  175. ASN1_CHOICE(AttrOrOID) = {
  176. ASN1_SIMPLE(AttrOrOID, d.oid, ASN1_OBJECT),
  177. ASN1_SIMPLE(AttrOrOID, d.attribute, Attribute)
  178. } ASN1_CHOICE_END(AttrOrOID);
  179. ASN1_CHOICE(CsrAttrs) = {
  180. ASN1_SEQUENCE_OF(CsrAttrs, attrs, AttrOrOID)
  181. } ASN1_CHOICE_END(CsrAttrs);
  182. IMPLEMENT_ASN1_FUNCTIONS(CsrAttrs);
  183. static void add_csrattrs_oid(struct hs20_osu_client *ctx, ASN1_OBJECT *oid,
  184. STACK_OF(X509_EXTENSION) *exts)
  185. {
  186. char txt[100];
  187. int res;
  188. if (!oid)
  189. return;
  190. res = OBJ_obj2txt(txt, sizeof(txt), oid, 1);
  191. if (res < 0 || res >= (int) sizeof(txt))
  192. return;
  193. if (os_strcmp(txt, "1.2.840.113549.1.9.7") == 0) {
  194. wpa_printf(MSG_INFO, "TODO: csrattr challengePassword");
  195. } else if (os_strcmp(txt, "1.2.840.113549.1.1.11") == 0) {
  196. wpa_printf(MSG_INFO, "csrattr sha256WithRSAEncryption");
  197. } else {
  198. wpa_printf(MSG_INFO, "Ignore unsupported csrattr oid %s", txt);
  199. }
  200. }
  201. static void add_csrattrs_ext_req(struct hs20_osu_client *ctx,
  202. STACK_OF(ASN1_OBJECT) *values,
  203. STACK_OF(X509_EXTENSION) *exts)
  204. {
  205. char txt[100];
  206. int i, num, res;
  207. num = sk_ASN1_OBJECT_num(values);
  208. for (i = 0; i < num; i++) {
  209. ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(values, i);
  210. res = OBJ_obj2txt(txt, sizeof(txt), oid, 1);
  211. if (res < 0 || res >= (int) sizeof(txt))
  212. continue;
  213. if (os_strcmp(txt, "1.3.6.1.1.1.1.22") == 0) {
  214. wpa_printf(MSG_INFO, "TODO: extReq macAddress");
  215. } else if (os_strcmp(txt, "1.3.6.1.4.1.40808.1.1.3") == 0) {
  216. wpa_printf(MSG_INFO, "TODO: extReq imei");
  217. } else if (os_strcmp(txt, "1.3.6.1.4.1.40808.1.1.4") == 0) {
  218. wpa_printf(MSG_INFO, "TODO: extReq meid");
  219. } else if (os_strcmp(txt, "1.3.6.1.4.1.40808.1.1.5") == 0) {
  220. wpa_printf(MSG_INFO, "TODO: extReq DevId");
  221. } else {
  222. wpa_printf(MSG_INFO, "Ignore unsupported cstattr extensionsRequest %s",
  223. txt);
  224. }
  225. }
  226. }
  227. static void add_csrattrs_attr(struct hs20_osu_client *ctx, Attribute *attr,
  228. STACK_OF(X509_EXTENSION) *exts)
  229. {
  230. char txt[100], txt2[100];
  231. int i, num, res;
  232. if (!attr || !attr->type || !attr->values)
  233. return;
  234. res = OBJ_obj2txt(txt, sizeof(txt), attr->type, 1);
  235. if (res < 0 || res >= (int) sizeof(txt))
  236. return;
  237. if (os_strcmp(txt, "1.2.840.113549.1.9.14") == 0) {
  238. add_csrattrs_ext_req(ctx, attr->values, exts);
  239. return;
  240. }
  241. num = sk_ASN1_OBJECT_num(attr->values);
  242. for (i = 0; i < num; i++) {
  243. ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(attr->values, i);
  244. res = OBJ_obj2txt(txt2, sizeof(txt2), oid, 1);
  245. if (res < 0 || res >= (int) sizeof(txt2))
  246. continue;
  247. wpa_printf(MSG_INFO, "Ignore unsupported cstattr::attr %s oid %s",
  248. txt, txt2);
  249. }
  250. }
  251. static void add_csrattrs(struct hs20_osu_client *ctx, CsrAttrs *csrattrs,
  252. STACK_OF(X509_EXTENSION) *exts)
  253. {
  254. int i, num;
  255. if (!csrattrs || ! csrattrs->attrs)
  256. return;
  257. num = SKM_sk_num(AttrOrOID, csrattrs->attrs);
  258. for (i = 0; i < num; i++) {
  259. AttrOrOID *ao = SKM_sk_value(AttrOrOID, csrattrs->attrs, i);
  260. switch (ao->type) {
  261. case 0:
  262. add_csrattrs_oid(ctx, ao->d.oid, exts);
  263. break;
  264. case 1:
  265. add_csrattrs_attr(ctx, ao->d.attribute, exts);
  266. break;
  267. }
  268. }
  269. }
  270. static int generate_csr(struct hs20_osu_client *ctx, char *key_pem,
  271. char *csr_pem, char *est_req, char *old_cert,
  272. CsrAttrs *csrattrs)
  273. {
  274. EVP_PKEY_CTX *pctx = NULL;
  275. EVP_PKEY *pkey = NULL;
  276. RSA *rsa;
  277. X509_REQ *req = NULL;
  278. int ret = -1;
  279. unsigned int val;
  280. X509_NAME *subj = NULL;
  281. char name[100];
  282. STACK_OF(X509_EXTENSION) *exts = NULL;
  283. X509_EXTENSION *ex;
  284. BIO *out;
  285. wpa_printf(MSG_INFO, "Generate RSA private key");
  286. write_summary(ctx, "Generate RSA private key");
  287. pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_RSA, NULL);
  288. if (!pctx)
  289. return -1;
  290. if (EVP_PKEY_keygen_init(pctx) <= 0)
  291. goto fail;
  292. if (EVP_PKEY_CTX_set_rsa_keygen_bits(pctx, 2048) <= 0)
  293. goto fail;
  294. if (EVP_PKEY_keygen(pctx, &pkey) <= 0)
  295. goto fail;
  296. EVP_PKEY_CTX_free(pctx);
  297. pctx = NULL;
  298. rsa = EVP_PKEY_get1_RSA(pkey);
  299. if (rsa == NULL)
  300. goto fail;
  301. if (key_pem) {
  302. FILE *f = fopen(key_pem, "wb");
  303. if (f == NULL)
  304. goto fail;
  305. if (!PEM_write_RSAPrivateKey(f, rsa, NULL, NULL, 0, NULL,
  306. NULL)) {
  307. wpa_printf(MSG_INFO, "Could not write private key: %s",
  308. ERR_error_string(ERR_get_error(), NULL));
  309. fclose(f);
  310. goto fail;
  311. }
  312. fclose(f);
  313. }
  314. wpa_printf(MSG_INFO, "Generate CSR");
  315. write_summary(ctx, "Generate CSR");
  316. req = X509_REQ_new();
  317. if (req == NULL)
  318. goto fail;
  319. if (old_cert) {
  320. FILE *f;
  321. X509 *cert;
  322. int res;
  323. f = fopen(old_cert, "r");
  324. if (f == NULL)
  325. goto fail;
  326. cert = PEM_read_X509(f, NULL, NULL, NULL);
  327. fclose(f);
  328. if (cert == NULL)
  329. goto fail;
  330. res = X509_REQ_set_subject_name(req,
  331. X509_get_subject_name(cert));
  332. X509_free(cert);
  333. if (!res)
  334. goto fail;
  335. } else {
  336. os_get_random((u8 *) &val, sizeof(val));
  337. os_snprintf(name, sizeof(name), "cert-user-%u", val);
  338. subj = X509_NAME_new();
  339. if (subj == NULL ||
  340. !X509_NAME_add_entry_by_txt(subj, "CN", MBSTRING_ASC,
  341. (unsigned char *) name,
  342. -1, -1, 0) ||
  343. !X509_REQ_set_subject_name(req, subj))
  344. goto fail;
  345. X509_NAME_free(subj);
  346. subj = NULL;
  347. }
  348. if (!X509_REQ_set_pubkey(req, pkey))
  349. goto fail;
  350. exts = sk_X509_EXTENSION_new_null();
  351. if (!exts)
  352. goto fail;
  353. ex = X509V3_EXT_conf_nid(NULL, NULL, NID_basic_constraints,
  354. "CA:FALSE");
  355. if (ex == NULL ||
  356. !sk_X509_EXTENSION_push(exts, ex))
  357. goto fail;
  358. ex = X509V3_EXT_conf_nid(NULL, NULL, NID_key_usage,
  359. "nonRepudiation,digitalSignature,keyEncipherment");
  360. if (ex == NULL ||
  361. !sk_X509_EXTENSION_push(exts, ex))
  362. goto fail;
  363. ex = X509V3_EXT_conf_nid(NULL, NULL, NID_ext_key_usage,
  364. "1.3.6.1.4.1.40808.1.1.2");
  365. if (ex == NULL ||
  366. !sk_X509_EXTENSION_push(exts, ex))
  367. goto fail;
  368. add_csrattrs(ctx, csrattrs, exts);
  369. if (!X509_REQ_add_extensions(req, exts))
  370. goto fail;
  371. sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
  372. exts = NULL;
  373. if (!X509_REQ_sign(req, pkey, EVP_sha256()))
  374. goto fail;
  375. out = BIO_new(BIO_s_mem());
  376. if (out) {
  377. char *txt;
  378. size_t rlen;
  379. X509_REQ_print(out, req);
  380. rlen = BIO_ctrl_pending(out);
  381. txt = os_malloc(rlen + 1);
  382. if (txt) {
  383. int res = BIO_read(out, txt, rlen);
  384. if (res > 0) {
  385. txt[res] = '\0';
  386. wpa_printf(MSG_MSGDUMP, "OpenSSL: Certificate request:\n%s",
  387. txt);
  388. }
  389. os_free(txt);
  390. }
  391. BIO_free(out);
  392. }
  393. if (csr_pem) {
  394. FILE *f = fopen(csr_pem, "w");
  395. if (f == NULL)
  396. goto fail;
  397. X509_REQ_print_fp(f, req);
  398. if (!PEM_write_X509_REQ(f, req)) {
  399. fclose(f);
  400. goto fail;
  401. }
  402. fclose(f);
  403. }
  404. if (est_req) {
  405. BIO *mem = BIO_new(BIO_s_mem());
  406. BUF_MEM *ptr;
  407. char *pos, *end, *buf_end;
  408. FILE *f;
  409. if (mem == NULL)
  410. goto fail;
  411. if (!PEM_write_bio_X509_REQ(mem, req)) {
  412. BIO_free(mem);
  413. goto fail;
  414. }
  415. BIO_get_mem_ptr(mem, &ptr);
  416. pos = ptr->data;
  417. buf_end = pos + ptr->length;
  418. /* Remove START/END lines */
  419. while (pos < buf_end && *pos != '\n')
  420. pos++;
  421. if (pos == buf_end) {
  422. BIO_free(mem);
  423. goto fail;
  424. }
  425. pos++;
  426. end = pos;
  427. while (end < buf_end && *end != '-')
  428. end++;
  429. f = fopen(est_req, "w");
  430. if (f == NULL) {
  431. BIO_free(mem);
  432. goto fail;
  433. }
  434. fwrite(pos, end - pos, 1, f);
  435. fclose(f);
  436. BIO_free(mem);
  437. }
  438. ret = 0;
  439. fail:
  440. if (exts)
  441. sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
  442. if (subj)
  443. X509_NAME_free(subj);
  444. if (req)
  445. X509_REQ_free(req);
  446. if (pkey)
  447. EVP_PKEY_free(pkey);
  448. if (pctx)
  449. EVP_PKEY_CTX_free(pctx);
  450. return ret;
  451. }
  452. int est_build_csr(struct hs20_osu_client *ctx, const char *url)
  453. {
  454. char *buf;
  455. size_t buflen;
  456. int res;
  457. char old_cert_buf[200];
  458. char *old_cert = NULL;
  459. CsrAttrs *csrattrs = NULL;
  460. buflen = os_strlen(url) + 100;
  461. buf = os_malloc(buflen);
  462. if (buf == NULL)
  463. return -1;
  464. os_snprintf(buf, buflen, "%s/csrattrs", url);
  465. wpa_printf(MSG_INFO, "Download csrattrs from %s", buf);
  466. write_summary(ctx, "Download EST csrattrs from %s", buf);
  467. ctx->no_osu_cert_validation = 1;
  468. res = http_download_file(ctx->http, buf, "Cert/est-csrattrs.txt",
  469. ctx->ca_fname);
  470. ctx->no_osu_cert_validation = 0;
  471. os_free(buf);
  472. if (res < 0) {
  473. wpa_printf(MSG_INFO, "Failed to download EST csrattrs - assume no extra attributes are needed");
  474. } else {
  475. size_t resp_len;
  476. char *resp;
  477. unsigned char *attrs;
  478. const unsigned char *pos;
  479. size_t attrs_len;
  480. resp = os_readfile("Cert/est-csrattrs.txt", &resp_len);
  481. if (resp == NULL) {
  482. wpa_printf(MSG_INFO, "Could not read csrattrs");
  483. return -1;
  484. }
  485. attrs = base64_decode((unsigned char *) resp, resp_len,
  486. &attrs_len);
  487. os_free(resp);
  488. if (attrs == NULL) {
  489. wpa_printf(MSG_INFO, "Could not base64 decode csrattrs");
  490. return -1;
  491. }
  492. unlink("Cert/est-csrattrs.txt");
  493. pos = attrs;
  494. csrattrs = d2i_CsrAttrs(NULL, &pos, attrs_len);
  495. os_free(attrs);
  496. if (csrattrs == NULL) {
  497. wpa_printf(MSG_INFO, "Failed to parse csrattrs ASN.1");
  498. /* Continue assuming no additional requirements */
  499. }
  500. }
  501. if (ctx->client_cert_present) {
  502. os_snprintf(old_cert_buf, sizeof(old_cert_buf),
  503. "SP/%s/client-cert.pem", ctx->fqdn);
  504. old_cert = old_cert_buf;
  505. }
  506. res = generate_csr(ctx, "Cert/privkey-plain.pem", "Cert/est-req.pem",
  507. "Cert/est-req.b64", old_cert, csrattrs);
  508. if (csrattrs)
  509. CsrAttrs_free(csrattrs);
  510. return res;
  511. }
  512. int est_simple_enroll(struct hs20_osu_client *ctx, const char *url,
  513. const char *user, const char *pw)
  514. {
  515. char *buf, *resp, *req, *req2;
  516. size_t buflen, resp_len, len, pkcs7_len;
  517. unsigned char *pkcs7;
  518. FILE *f;
  519. char client_cert_buf[200];
  520. char client_key_buf[200];
  521. const char *client_cert = NULL, *client_key = NULL;
  522. int res;
  523. req = os_readfile("Cert/est-req.b64", &len);
  524. if (req == NULL) {
  525. wpa_printf(MSG_INFO, "Could not read Cert/req.b64");
  526. return -1;
  527. }
  528. req2 = os_realloc(req, len + 1);
  529. if (req2 == NULL) {
  530. os_free(req);
  531. return -1;
  532. }
  533. req2[len] = '\0';
  534. req = req2;
  535. wpa_printf(MSG_DEBUG, "EST simpleenroll request: %s", req);
  536. buflen = os_strlen(url) + 100;
  537. buf = os_malloc(buflen);
  538. if (buf == NULL) {
  539. os_free(req);
  540. return -1;
  541. }
  542. if (ctx->client_cert_present) {
  543. os_snprintf(buf, buflen, "%s/simplereenroll", url);
  544. os_snprintf(client_cert_buf, sizeof(client_cert_buf),
  545. "SP/%s/client-cert.pem", ctx->fqdn);
  546. client_cert = client_cert_buf;
  547. os_snprintf(client_key_buf, sizeof(client_key_buf),
  548. "SP/%s/client-key.pem", ctx->fqdn);
  549. client_key = client_key_buf;
  550. } else
  551. os_snprintf(buf, buflen, "%s/simpleenroll", url);
  552. wpa_printf(MSG_INFO, "EST simpleenroll URL: %s", buf);
  553. write_summary(ctx, "EST simpleenroll URL: %s", buf);
  554. ctx->no_osu_cert_validation = 1;
  555. resp = http_post(ctx->http, buf, req, "application/pkcs10",
  556. "Content-Transfer-Encoding: base64",
  557. ctx->ca_fname, user, pw, client_cert, client_key,
  558. &resp_len);
  559. ctx->no_osu_cert_validation = 0;
  560. os_free(buf);
  561. if (resp == NULL) {
  562. wpa_printf(MSG_INFO, "EST certificate enrollment failed");
  563. write_result(ctx, "EST certificate enrollment failed");
  564. return -1;
  565. }
  566. wpa_printf(MSG_DEBUG, "EST simpleenroll response: %s", resp);
  567. f = fopen("Cert/est-resp.raw", "w");
  568. if (f) {
  569. fwrite(resp, resp_len, 1, f);
  570. fclose(f);
  571. }
  572. pkcs7 = base64_decode((unsigned char *) resp, resp_len, &pkcs7_len);
  573. if (pkcs7 == NULL) {
  574. wpa_printf(MSG_INFO, "EST workaround - Could not decode base64, assume this is DER encoded PKCS7");
  575. pkcs7 = os_malloc(resp_len);
  576. if (pkcs7) {
  577. os_memcpy(pkcs7, resp, resp_len);
  578. pkcs7_len = resp_len;
  579. }
  580. }
  581. os_free(resp);
  582. if (pkcs7 == NULL) {
  583. wpa_printf(MSG_INFO, "Failed to parse simpleenroll base64 response");
  584. write_result(ctx, "Failed to parse EST simpleenroll base64 response");
  585. return -1;
  586. }
  587. res = pkcs7_to_cert(ctx, pkcs7, pkcs7_len, "Cert/est_cert.pem",
  588. "Cert/est_cert.der");
  589. os_free(pkcs7);
  590. if (res < 0) {
  591. wpa_printf(MSG_INFO, "EST: Failed to extract certificate from PKCS7 file");
  592. write_result(ctx, "EST: Failed to extract certificate from EST PKCS7 file");
  593. return -1;
  594. }
  595. wpa_printf(MSG_INFO, "EST simple%senroll completed successfully",
  596. ctx->client_cert_present ? "re" : "");
  597. write_summary(ctx, "EST simple%senroll completed successfully",
  598. ctx->client_cert_present ? "re" : "");
  599. return 0;
  600. }