x509v3.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178
  1. /*
  2. * X.509v3 certificate parsing and processing (RFC 3280 profile)
  3. * Copyright (c) 2006-2015, Jouni Malinen <j@w1.fi>
  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 "common.h"
  10. #include "crypto/crypto.h"
  11. #include "asn1.h"
  12. #include "x509v3.h"
  13. void x509_free_name(struct x509_name *name)
  14. {
  15. size_t i;
  16. for (i = 0; i < name->num_attr; i++) {
  17. os_free(name->attr[i].value);
  18. name->attr[i].value = NULL;
  19. name->attr[i].type = X509_NAME_ATTR_NOT_USED;
  20. }
  21. name->num_attr = 0;
  22. os_free(name->email);
  23. name->email = NULL;
  24. os_free(name->alt_email);
  25. os_free(name->dns);
  26. os_free(name->uri);
  27. os_free(name->ip);
  28. name->alt_email = name->dns = name->uri = NULL;
  29. name->ip = NULL;
  30. name->ip_len = 0;
  31. os_memset(&name->rid, 0, sizeof(name->rid));
  32. }
  33. /**
  34. * x509_certificate_free - Free an X.509 certificate
  35. * @cert: Certificate to be freed
  36. */
  37. void x509_certificate_free(struct x509_certificate *cert)
  38. {
  39. if (cert == NULL)
  40. return;
  41. if (cert->next) {
  42. wpa_printf(MSG_DEBUG, "X509: x509_certificate_free: cer=%p "
  43. "was still on a list (next=%p)\n",
  44. cert, cert->next);
  45. }
  46. x509_free_name(&cert->issuer);
  47. x509_free_name(&cert->subject);
  48. os_free(cert->public_key);
  49. os_free(cert->sign_value);
  50. os_free(cert->subject_dn);
  51. os_free(cert);
  52. }
  53. /**
  54. * x509_certificate_free - Free an X.509 certificate chain
  55. * @cert: Pointer to the first certificate in the chain
  56. */
  57. void x509_certificate_chain_free(struct x509_certificate *cert)
  58. {
  59. struct x509_certificate *next;
  60. while (cert) {
  61. next = cert->next;
  62. cert->next = NULL;
  63. x509_certificate_free(cert);
  64. cert = next;
  65. }
  66. }
  67. static int x509_whitespace(char c)
  68. {
  69. return c == ' ' || c == '\t';
  70. }
  71. static void x509_str_strip_whitespace(char *a)
  72. {
  73. char *ipos, *opos;
  74. int remove_whitespace = 1;
  75. ipos = opos = a;
  76. while (*ipos) {
  77. if (remove_whitespace && x509_whitespace(*ipos))
  78. ipos++;
  79. else {
  80. remove_whitespace = x509_whitespace(*ipos);
  81. *opos++ = *ipos++;
  82. }
  83. }
  84. *opos-- = '\0';
  85. if (opos > a && x509_whitespace(*opos))
  86. *opos = '\0';
  87. }
  88. static int x509_str_compare(const char *a, const char *b)
  89. {
  90. char *aa, *bb;
  91. int ret;
  92. if (!a && b)
  93. return -1;
  94. if (a && !b)
  95. return 1;
  96. if (!a && !b)
  97. return 0;
  98. aa = os_strdup(a);
  99. bb = os_strdup(b);
  100. if (aa == NULL || bb == NULL) {
  101. os_free(aa);
  102. os_free(bb);
  103. return os_strcasecmp(a, b);
  104. }
  105. x509_str_strip_whitespace(aa);
  106. x509_str_strip_whitespace(bb);
  107. ret = os_strcasecmp(aa, bb);
  108. os_free(aa);
  109. os_free(bb);
  110. return ret;
  111. }
  112. /**
  113. * x509_name_compare - Compare X.509 certificate names
  114. * @a: Certificate name
  115. * @b: Certificate name
  116. * Returns: <0, 0, or >0 based on whether a is less than, equal to, or
  117. * greater than b
  118. */
  119. int x509_name_compare(struct x509_name *a, struct x509_name *b)
  120. {
  121. int res;
  122. size_t i;
  123. if (!a && b)
  124. return -1;
  125. if (a && !b)
  126. return 1;
  127. if (!a && !b)
  128. return 0;
  129. if (a->num_attr < b->num_attr)
  130. return -1;
  131. if (a->num_attr > b->num_attr)
  132. return 1;
  133. for (i = 0; i < a->num_attr; i++) {
  134. if (a->attr[i].type < b->attr[i].type)
  135. return -1;
  136. if (a->attr[i].type > b->attr[i].type)
  137. return -1;
  138. res = x509_str_compare(a->attr[i].value, b->attr[i].value);
  139. if (res)
  140. return res;
  141. }
  142. res = x509_str_compare(a->email, b->email);
  143. if (res)
  144. return res;
  145. return 0;
  146. }
  147. int x509_parse_algorithm_identifier(const u8 *buf, size_t len,
  148. struct x509_algorithm_identifier *id,
  149. const u8 **next)
  150. {
  151. struct asn1_hdr hdr;
  152. const u8 *pos, *end;
  153. /*
  154. * AlgorithmIdentifier ::= SEQUENCE {
  155. * algorithm OBJECT IDENTIFIER,
  156. * parameters ANY DEFINED BY algorithm OPTIONAL
  157. * }
  158. */
  159. if (asn1_get_next(buf, len, &hdr) < 0 ||
  160. hdr.class != ASN1_CLASS_UNIVERSAL ||
  161. hdr.tag != ASN1_TAG_SEQUENCE) {
  162. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  163. "(AlgorithmIdentifier) - found class %d tag 0x%x",
  164. hdr.class, hdr.tag);
  165. return -1;
  166. }
  167. if (hdr.length > buf + len - hdr.payload)
  168. return -1;
  169. pos = hdr.payload;
  170. end = pos + hdr.length;
  171. *next = end;
  172. if (asn1_get_oid(pos, end - pos, &id->oid, &pos))
  173. return -1;
  174. /* TODO: optional parameters */
  175. return 0;
  176. }
  177. static int x509_parse_public_key(const u8 *buf, size_t len,
  178. struct x509_certificate *cert,
  179. const u8 **next)
  180. {
  181. struct asn1_hdr hdr;
  182. const u8 *pos, *end;
  183. /*
  184. * SubjectPublicKeyInfo ::= SEQUENCE {
  185. * algorithm AlgorithmIdentifier,
  186. * subjectPublicKey BIT STRING
  187. * }
  188. */
  189. pos = buf;
  190. end = buf + len;
  191. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  192. hdr.class != ASN1_CLASS_UNIVERSAL ||
  193. hdr.tag != ASN1_TAG_SEQUENCE) {
  194. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  195. "(SubjectPublicKeyInfo) - found class %d tag 0x%x",
  196. hdr.class, hdr.tag);
  197. return -1;
  198. }
  199. pos = hdr.payload;
  200. if (hdr.length > end - pos)
  201. return -1;
  202. end = pos + hdr.length;
  203. *next = end;
  204. if (x509_parse_algorithm_identifier(pos, end - pos,
  205. &cert->public_key_alg, &pos))
  206. return -1;
  207. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  208. hdr.class != ASN1_CLASS_UNIVERSAL ||
  209. hdr.tag != ASN1_TAG_BITSTRING) {
  210. wpa_printf(MSG_DEBUG, "X509: Expected BITSTRING "
  211. "(subjectPublicKey) - found class %d tag 0x%x",
  212. hdr.class, hdr.tag);
  213. return -1;
  214. }
  215. if (hdr.length < 1)
  216. return -1;
  217. pos = hdr.payload;
  218. if (*pos) {
  219. wpa_printf(MSG_DEBUG, "X509: BITSTRING - %d unused bits",
  220. *pos);
  221. /*
  222. * TODO: should this be rejected? X.509 certificates are
  223. * unlikely to use such a construction. Now we would end up
  224. * including the extra bits in the buffer which may also be
  225. * ok.
  226. */
  227. }
  228. os_free(cert->public_key);
  229. cert->public_key = os_malloc(hdr.length - 1);
  230. if (cert->public_key == NULL) {
  231. wpa_printf(MSG_DEBUG, "X509: Failed to allocate memory for "
  232. "public key");
  233. return -1;
  234. }
  235. os_memcpy(cert->public_key, pos + 1, hdr.length - 1);
  236. cert->public_key_len = hdr.length - 1;
  237. wpa_hexdump(MSG_MSGDUMP, "X509: subjectPublicKey",
  238. cert->public_key, cert->public_key_len);
  239. return 0;
  240. }
  241. int x509_parse_name(const u8 *buf, size_t len, struct x509_name *name,
  242. const u8 **next)
  243. {
  244. struct asn1_hdr hdr;
  245. const u8 *pos, *end, *set_pos, *set_end, *seq_pos, *seq_end;
  246. struct asn1_oid oid;
  247. char *val;
  248. /*
  249. * Name ::= CHOICE { RDNSequence }
  250. * RDNSequence ::= SEQUENCE OF RelativeDistinguishedName
  251. * RelativeDistinguishedName ::= SET OF AttributeTypeAndValue
  252. * AttributeTypeAndValue ::= SEQUENCE {
  253. * type AttributeType,
  254. * value AttributeValue
  255. * }
  256. * AttributeType ::= OBJECT IDENTIFIER
  257. * AttributeValue ::= ANY DEFINED BY AttributeType
  258. */
  259. if (asn1_get_next(buf, len, &hdr) < 0 ||
  260. hdr.class != ASN1_CLASS_UNIVERSAL ||
  261. hdr.tag != ASN1_TAG_SEQUENCE) {
  262. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  263. "(Name / RDNSequencer) - found class %d tag 0x%x",
  264. hdr.class, hdr.tag);
  265. return -1;
  266. }
  267. pos = hdr.payload;
  268. if (hdr.length > buf + len - pos)
  269. return -1;
  270. end = *next = pos + hdr.length;
  271. while (pos < end) {
  272. enum x509_name_attr_type type;
  273. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  274. hdr.class != ASN1_CLASS_UNIVERSAL ||
  275. hdr.tag != ASN1_TAG_SET) {
  276. wpa_printf(MSG_DEBUG, "X509: Expected SET "
  277. "(RelativeDistinguishedName) - found class "
  278. "%d tag 0x%x", hdr.class, hdr.tag);
  279. x509_free_name(name);
  280. return -1;
  281. }
  282. set_pos = hdr.payload;
  283. pos = set_end = hdr.payload + hdr.length;
  284. if (asn1_get_next(set_pos, set_end - set_pos, &hdr) < 0 ||
  285. hdr.class != ASN1_CLASS_UNIVERSAL ||
  286. hdr.tag != ASN1_TAG_SEQUENCE) {
  287. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  288. "(AttributeTypeAndValue) - found class %d "
  289. "tag 0x%x", hdr.class, hdr.tag);
  290. x509_free_name(name);
  291. return -1;
  292. }
  293. seq_pos = hdr.payload;
  294. seq_end = hdr.payload + hdr.length;
  295. if (asn1_get_oid(seq_pos, seq_end - seq_pos, &oid, &seq_pos)) {
  296. x509_free_name(name);
  297. return -1;
  298. }
  299. if (asn1_get_next(seq_pos, seq_end - seq_pos, &hdr) < 0 ||
  300. hdr.class != ASN1_CLASS_UNIVERSAL) {
  301. wpa_printf(MSG_DEBUG, "X509: Failed to parse "
  302. "AttributeValue");
  303. x509_free_name(name);
  304. return -1;
  305. }
  306. /* RFC 3280:
  307. * MUST: country, organization, organizational-unit,
  308. * distinguished name qualifier, state or province name,
  309. * common name, serial number.
  310. * SHOULD: locality, title, surname, given name, initials,
  311. * pseudonym, generation qualifier.
  312. * MUST: domainComponent (RFC 2247).
  313. */
  314. type = X509_NAME_ATTR_NOT_USED;
  315. if (oid.len == 4 &&
  316. oid.oid[0] == 2 && oid.oid[1] == 5 && oid.oid[2] == 4) {
  317. /* id-at ::= 2.5.4 */
  318. switch (oid.oid[3]) {
  319. case 3:
  320. /* commonName */
  321. type = X509_NAME_ATTR_CN;
  322. break;
  323. case 6:
  324. /* countryName */
  325. type = X509_NAME_ATTR_C;
  326. break;
  327. case 7:
  328. /* localityName */
  329. type = X509_NAME_ATTR_L;
  330. break;
  331. case 8:
  332. /* stateOrProvinceName */
  333. type = X509_NAME_ATTR_ST;
  334. break;
  335. case 10:
  336. /* organizationName */
  337. type = X509_NAME_ATTR_O;
  338. break;
  339. case 11:
  340. /* organizationalUnitName */
  341. type = X509_NAME_ATTR_OU;
  342. break;
  343. }
  344. } else if (oid.len == 7 &&
  345. oid.oid[0] == 1 && oid.oid[1] == 2 &&
  346. oid.oid[2] == 840 && oid.oid[3] == 113549 &&
  347. oid.oid[4] == 1 && oid.oid[5] == 9 &&
  348. oid.oid[6] == 1) {
  349. /* 1.2.840.113549.1.9.1 - e-mailAddress */
  350. os_free(name->email);
  351. name->email = os_malloc(hdr.length + 1);
  352. if (name->email == NULL) {
  353. x509_free_name(name);
  354. return -1;
  355. }
  356. os_memcpy(name->email, hdr.payload, hdr.length);
  357. name->email[hdr.length] = '\0';
  358. continue;
  359. } else if (oid.len == 7 &&
  360. oid.oid[0] == 0 && oid.oid[1] == 9 &&
  361. oid.oid[2] == 2342 && oid.oid[3] == 19200300 &&
  362. oid.oid[4] == 100 && oid.oid[5] == 1 &&
  363. oid.oid[6] == 25) {
  364. /* 0.9.2342.19200300.100.1.25 - domainComponent */
  365. type = X509_NAME_ATTR_DC;
  366. }
  367. if (type == X509_NAME_ATTR_NOT_USED) {
  368. wpa_hexdump(MSG_DEBUG, "X509: Unrecognized OID",
  369. (u8 *) oid.oid,
  370. oid.len * sizeof(oid.oid[0]));
  371. wpa_hexdump_ascii(MSG_MSGDUMP, "X509: Attribute Data",
  372. hdr.payload, hdr.length);
  373. continue;
  374. }
  375. if (name->num_attr == X509_MAX_NAME_ATTRIBUTES) {
  376. wpa_printf(MSG_INFO, "X509: Too many Name attributes");
  377. x509_free_name(name);
  378. return -1;
  379. }
  380. val = dup_binstr(hdr.payload, hdr.length);
  381. if (val == NULL) {
  382. x509_free_name(name);
  383. return -1;
  384. }
  385. if (os_strlen(val) != hdr.length) {
  386. wpa_printf(MSG_INFO, "X509: Reject certificate with "
  387. "embedded NUL byte in a string (%s[NUL])",
  388. val);
  389. os_free(val);
  390. x509_free_name(name);
  391. return -1;
  392. }
  393. name->attr[name->num_attr].type = type;
  394. name->attr[name->num_attr].value = val;
  395. name->num_attr++;
  396. }
  397. return 0;
  398. }
  399. static char * x509_name_attr_str(enum x509_name_attr_type type)
  400. {
  401. switch (type) {
  402. case X509_NAME_ATTR_NOT_USED:
  403. return "[N/A]";
  404. case X509_NAME_ATTR_DC:
  405. return "DC";
  406. case X509_NAME_ATTR_CN:
  407. return "CN";
  408. case X509_NAME_ATTR_C:
  409. return "C";
  410. case X509_NAME_ATTR_L:
  411. return "L";
  412. case X509_NAME_ATTR_ST:
  413. return "ST";
  414. case X509_NAME_ATTR_O:
  415. return "O";
  416. case X509_NAME_ATTR_OU:
  417. return "OU";
  418. }
  419. return "?";
  420. }
  421. /**
  422. * x509_name_string - Convert an X.509 certificate name into a string
  423. * @name: Name to convert
  424. * @buf: Buffer for the string
  425. * @len: Maximum buffer length
  426. */
  427. void x509_name_string(struct x509_name *name, char *buf, size_t len)
  428. {
  429. char *pos, *end;
  430. int ret;
  431. size_t i;
  432. if (len == 0)
  433. return;
  434. pos = buf;
  435. end = buf + len;
  436. for (i = 0; i < name->num_attr; i++) {
  437. ret = os_snprintf(pos, end - pos, "%s=%s, ",
  438. x509_name_attr_str(name->attr[i].type),
  439. name->attr[i].value);
  440. if (os_snprintf_error(end - pos, ret))
  441. goto done;
  442. pos += ret;
  443. }
  444. if (pos > buf + 1 && pos[-1] == ' ' && pos[-2] == ',') {
  445. pos--;
  446. *pos = '\0';
  447. pos--;
  448. *pos = '\0';
  449. }
  450. if (name->email) {
  451. ret = os_snprintf(pos, end - pos, "/emailAddress=%s",
  452. name->email);
  453. if (os_snprintf_error(end - pos, ret))
  454. goto done;
  455. pos += ret;
  456. }
  457. done:
  458. end[-1] = '\0';
  459. }
  460. int x509_parse_time(const u8 *buf, size_t len, u8 asn1_tag, os_time_t *val)
  461. {
  462. const char *pos;
  463. int year, month, day, hour, min, sec;
  464. /*
  465. * Time ::= CHOICE {
  466. * utcTime UTCTime,
  467. * generalTime GeneralizedTime
  468. * }
  469. *
  470. * UTCTime: YYMMDDHHMMSSZ
  471. * GeneralizedTime: YYYYMMDDHHMMSSZ
  472. */
  473. pos = (const char *) buf;
  474. switch (asn1_tag) {
  475. case ASN1_TAG_UTCTIME:
  476. if (len != 13 || buf[12] != 'Z') {
  477. wpa_hexdump_ascii(MSG_DEBUG, "X509: Unrecognized "
  478. "UTCTime format", buf, len);
  479. return -1;
  480. }
  481. if (sscanf(pos, "%02d", &year) != 1) {
  482. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse "
  483. "UTCTime year", buf, len);
  484. return -1;
  485. }
  486. if (year < 50)
  487. year += 2000;
  488. else
  489. year += 1900;
  490. pos += 2;
  491. break;
  492. case ASN1_TAG_GENERALIZEDTIME:
  493. if (len != 15 || buf[14] != 'Z') {
  494. wpa_hexdump_ascii(MSG_DEBUG, "X509: Unrecognized "
  495. "GeneralizedTime format", buf, len);
  496. return -1;
  497. }
  498. if (sscanf(pos, "%04d", &year) != 1) {
  499. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse "
  500. "GeneralizedTime year", buf, len);
  501. return -1;
  502. }
  503. pos += 4;
  504. break;
  505. default:
  506. wpa_printf(MSG_DEBUG, "X509: Expected UTCTime or "
  507. "GeneralizedTime - found tag 0x%x", asn1_tag);
  508. return -1;
  509. }
  510. if (sscanf(pos, "%02d", &month) != 1) {
  511. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse Time "
  512. "(month)", buf, len);
  513. return -1;
  514. }
  515. pos += 2;
  516. if (sscanf(pos, "%02d", &day) != 1) {
  517. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse Time "
  518. "(day)", buf, len);
  519. return -1;
  520. }
  521. pos += 2;
  522. if (sscanf(pos, "%02d", &hour) != 1) {
  523. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse Time "
  524. "(hour)", buf, len);
  525. return -1;
  526. }
  527. pos += 2;
  528. if (sscanf(pos, "%02d", &min) != 1) {
  529. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse Time "
  530. "(min)", buf, len);
  531. return -1;
  532. }
  533. pos += 2;
  534. if (sscanf(pos, "%02d", &sec) != 1) {
  535. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse Time "
  536. "(sec)", buf, len);
  537. return -1;
  538. }
  539. if (os_mktime(year, month, day, hour, min, sec, val) < 0) {
  540. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to convert Time",
  541. buf, len);
  542. if (year < 1970) {
  543. /*
  544. * At least some test certificates have been configured
  545. * to use dates prior to 1970. Set the date to
  546. * beginning of 1970 to handle these case.
  547. */
  548. wpa_printf(MSG_DEBUG, "X509: Year=%d before epoch - "
  549. "assume epoch as the time", year);
  550. *val = 0;
  551. return 0;
  552. }
  553. return -1;
  554. }
  555. return 0;
  556. }
  557. static int x509_parse_validity(const u8 *buf, size_t len,
  558. struct x509_certificate *cert, const u8 **next)
  559. {
  560. struct asn1_hdr hdr;
  561. const u8 *pos;
  562. size_t plen;
  563. /*
  564. * Validity ::= SEQUENCE {
  565. * notBefore Time,
  566. * notAfter Time
  567. * }
  568. *
  569. * RFC 3280, 4.1.2.5:
  570. * CAs conforming to this profile MUST always encode certificate
  571. * validity dates through the year 2049 as UTCTime; certificate
  572. * validity dates in 2050 or later MUST be encoded as GeneralizedTime.
  573. */
  574. if (asn1_get_next(buf, len, &hdr) < 0 ||
  575. hdr.class != ASN1_CLASS_UNIVERSAL ||
  576. hdr.tag != ASN1_TAG_SEQUENCE) {
  577. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  578. "(Validity) - found class %d tag 0x%x",
  579. hdr.class, hdr.tag);
  580. return -1;
  581. }
  582. pos = hdr.payload;
  583. plen = hdr.length;
  584. if (plen > (size_t) (buf + len - pos))
  585. return -1;
  586. *next = pos + plen;
  587. if (asn1_get_next(pos, plen, &hdr) < 0 ||
  588. hdr.class != ASN1_CLASS_UNIVERSAL ||
  589. x509_parse_time(hdr.payload, hdr.length, hdr.tag,
  590. &cert->not_before) < 0) {
  591. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse notBefore "
  592. "Time", hdr.payload, hdr.length);
  593. return -1;
  594. }
  595. pos = hdr.payload + hdr.length;
  596. plen = *next - pos;
  597. if (asn1_get_next(pos, plen, &hdr) < 0 ||
  598. hdr.class != ASN1_CLASS_UNIVERSAL ||
  599. x509_parse_time(hdr.payload, hdr.length, hdr.tag,
  600. &cert->not_after) < 0) {
  601. wpa_hexdump_ascii(MSG_DEBUG, "X509: Failed to parse notAfter "
  602. "Time", hdr.payload, hdr.length);
  603. return -1;
  604. }
  605. wpa_printf(MSG_MSGDUMP, "X509: Validity: notBefore: %lu notAfter: %lu",
  606. (unsigned long) cert->not_before,
  607. (unsigned long) cert->not_after);
  608. return 0;
  609. }
  610. static int x509_id_ce_oid(struct asn1_oid *oid)
  611. {
  612. /* id-ce arc from X.509 for standard X.509v3 extensions */
  613. return oid->len >= 4 &&
  614. oid->oid[0] == 2 /* joint-iso-ccitt */ &&
  615. oid->oid[1] == 5 /* ds */ &&
  616. oid->oid[2] == 29 /* id-ce */;
  617. }
  618. static int x509_any_ext_key_usage_oid(struct asn1_oid *oid)
  619. {
  620. return oid->len == 6 &&
  621. x509_id_ce_oid(oid) &&
  622. oid->oid[3] == 37 /* extKeyUsage */ &&
  623. oid->oid[4] == 0 /* anyExtendedKeyUsage */;
  624. }
  625. static int x509_parse_ext_key_usage(struct x509_certificate *cert,
  626. const u8 *pos, size_t len)
  627. {
  628. struct asn1_hdr hdr;
  629. /*
  630. * KeyUsage ::= BIT STRING {
  631. * digitalSignature (0),
  632. * nonRepudiation (1),
  633. * keyEncipherment (2),
  634. * dataEncipherment (3),
  635. * keyAgreement (4),
  636. * keyCertSign (5),
  637. * cRLSign (6),
  638. * encipherOnly (7),
  639. * decipherOnly (8) }
  640. */
  641. if (asn1_get_next(pos, len, &hdr) < 0 ||
  642. hdr.class != ASN1_CLASS_UNIVERSAL ||
  643. hdr.tag != ASN1_TAG_BITSTRING ||
  644. hdr.length < 1) {
  645. wpa_printf(MSG_DEBUG, "X509: Expected BIT STRING in "
  646. "KeyUsage; found %d tag 0x%x len %d",
  647. hdr.class, hdr.tag, hdr.length);
  648. return -1;
  649. }
  650. cert->extensions_present |= X509_EXT_KEY_USAGE;
  651. cert->key_usage = asn1_bit_string_to_long(hdr.payload, hdr.length);
  652. wpa_printf(MSG_DEBUG, "X509: KeyUsage 0x%lx", cert->key_usage);
  653. return 0;
  654. }
  655. static int x509_parse_ext_basic_constraints(struct x509_certificate *cert,
  656. const u8 *pos, size_t len)
  657. {
  658. struct asn1_hdr hdr;
  659. unsigned long value;
  660. size_t left;
  661. /*
  662. * BasicConstraints ::= SEQUENCE {
  663. * cA BOOLEAN DEFAULT FALSE,
  664. * pathLenConstraint INTEGER (0..MAX) OPTIONAL }
  665. */
  666. if (asn1_get_next(pos, len, &hdr) < 0 ||
  667. hdr.class != ASN1_CLASS_UNIVERSAL ||
  668. hdr.tag != ASN1_TAG_SEQUENCE) {
  669. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE in "
  670. "BasicConstraints; found %d tag 0x%x",
  671. hdr.class, hdr.tag);
  672. return -1;
  673. }
  674. cert->extensions_present |= X509_EXT_BASIC_CONSTRAINTS;
  675. if (hdr.length == 0)
  676. return 0;
  677. if (asn1_get_next(hdr.payload, hdr.length, &hdr) < 0 ||
  678. hdr.class != ASN1_CLASS_UNIVERSAL) {
  679. wpa_printf(MSG_DEBUG, "X509: Failed to parse "
  680. "BasicConstraints");
  681. return -1;
  682. }
  683. if (hdr.tag == ASN1_TAG_BOOLEAN) {
  684. if (hdr.length != 1) {
  685. wpa_printf(MSG_DEBUG, "X509: Unexpected "
  686. "Boolean length (%u) in BasicConstraints",
  687. hdr.length);
  688. return -1;
  689. }
  690. cert->ca = hdr.payload[0];
  691. if (hdr.length == pos + len - hdr.payload) {
  692. wpa_printf(MSG_DEBUG, "X509: BasicConstraints - cA=%d",
  693. cert->ca);
  694. return 0;
  695. }
  696. if (asn1_get_next(hdr.payload + hdr.length, len - hdr.length,
  697. &hdr) < 0 ||
  698. hdr.class != ASN1_CLASS_UNIVERSAL) {
  699. wpa_printf(MSG_DEBUG, "X509: Failed to parse "
  700. "BasicConstraints");
  701. return -1;
  702. }
  703. }
  704. if (hdr.tag != ASN1_TAG_INTEGER) {
  705. wpa_printf(MSG_DEBUG, "X509: Expected INTEGER in "
  706. "BasicConstraints; found class %d tag 0x%x",
  707. hdr.class, hdr.tag);
  708. return -1;
  709. }
  710. pos = hdr.payload;
  711. left = hdr.length;
  712. value = 0;
  713. while (left) {
  714. value <<= 8;
  715. value |= *pos++;
  716. left--;
  717. }
  718. cert->path_len_constraint = value;
  719. cert->extensions_present |= X509_EXT_PATH_LEN_CONSTRAINT;
  720. wpa_printf(MSG_DEBUG, "X509: BasicConstraints - cA=%d "
  721. "pathLenConstraint=%lu",
  722. cert->ca, cert->path_len_constraint);
  723. return 0;
  724. }
  725. static int x509_parse_alt_name_rfc8222(struct x509_name *name,
  726. const u8 *pos, size_t len)
  727. {
  728. /* rfc822Name IA5String */
  729. wpa_hexdump_ascii(MSG_MSGDUMP, "X509: altName - rfc822Name", pos, len);
  730. os_free(name->alt_email);
  731. name->alt_email = os_zalloc(len + 1);
  732. if (name->alt_email == NULL)
  733. return -1;
  734. os_memcpy(name->alt_email, pos, len);
  735. if (os_strlen(name->alt_email) != len) {
  736. wpa_printf(MSG_INFO, "X509: Reject certificate with "
  737. "embedded NUL byte in rfc822Name (%s[NUL])",
  738. name->alt_email);
  739. os_free(name->alt_email);
  740. name->alt_email = NULL;
  741. return -1;
  742. }
  743. return 0;
  744. }
  745. static int x509_parse_alt_name_dns(struct x509_name *name,
  746. const u8 *pos, size_t len)
  747. {
  748. /* dNSName IA5String */
  749. wpa_hexdump_ascii(MSG_MSGDUMP, "X509: altName - dNSName", pos, len);
  750. os_free(name->dns);
  751. name->dns = os_zalloc(len + 1);
  752. if (name->dns == NULL)
  753. return -1;
  754. os_memcpy(name->dns, pos, len);
  755. if (os_strlen(name->dns) != len) {
  756. wpa_printf(MSG_INFO, "X509: Reject certificate with "
  757. "embedded NUL byte in dNSName (%s[NUL])",
  758. name->dns);
  759. os_free(name->dns);
  760. name->dns = NULL;
  761. return -1;
  762. }
  763. return 0;
  764. }
  765. static int x509_parse_alt_name_uri(struct x509_name *name,
  766. const u8 *pos, size_t len)
  767. {
  768. /* uniformResourceIdentifier IA5String */
  769. wpa_hexdump_ascii(MSG_MSGDUMP,
  770. "X509: altName - uniformResourceIdentifier",
  771. pos, len);
  772. os_free(name->uri);
  773. name->uri = os_zalloc(len + 1);
  774. if (name->uri == NULL)
  775. return -1;
  776. os_memcpy(name->uri, pos, len);
  777. if (os_strlen(name->uri) != len) {
  778. wpa_printf(MSG_INFO, "X509: Reject certificate with "
  779. "embedded NUL byte in uniformResourceIdentifier "
  780. "(%s[NUL])", name->uri);
  781. os_free(name->uri);
  782. name->uri = NULL;
  783. return -1;
  784. }
  785. return 0;
  786. }
  787. static int x509_parse_alt_name_ip(struct x509_name *name,
  788. const u8 *pos, size_t len)
  789. {
  790. /* iPAddress OCTET STRING */
  791. wpa_hexdump(MSG_MSGDUMP, "X509: altName - iPAddress", pos, len);
  792. os_free(name->ip);
  793. name->ip = os_malloc(len);
  794. if (name->ip == NULL)
  795. return -1;
  796. os_memcpy(name->ip, pos, len);
  797. name->ip_len = len;
  798. return 0;
  799. }
  800. static int x509_parse_alt_name_rid(struct x509_name *name,
  801. const u8 *pos, size_t len)
  802. {
  803. char buf[80];
  804. /* registeredID OBJECT IDENTIFIER */
  805. if (asn1_parse_oid(pos, len, &name->rid) < 0)
  806. return -1;
  807. asn1_oid_to_str(&name->rid, buf, sizeof(buf));
  808. wpa_printf(MSG_MSGDUMP, "X509: altName - registeredID: %s", buf);
  809. return 0;
  810. }
  811. static int x509_parse_ext_alt_name(struct x509_name *name,
  812. const u8 *pos, size_t len)
  813. {
  814. struct asn1_hdr hdr;
  815. const u8 *p, *end;
  816. /*
  817. * GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName
  818. *
  819. * GeneralName ::= CHOICE {
  820. * otherName [0] OtherName,
  821. * rfc822Name [1] IA5String,
  822. * dNSName [2] IA5String,
  823. * x400Address [3] ORAddress,
  824. * directoryName [4] Name,
  825. * ediPartyName [5] EDIPartyName,
  826. * uniformResourceIdentifier [6] IA5String,
  827. * iPAddress [7] OCTET STRING,
  828. * registeredID [8] OBJECT IDENTIFIER }
  829. *
  830. * OtherName ::= SEQUENCE {
  831. * type-id OBJECT IDENTIFIER,
  832. * value [0] EXPLICIT ANY DEFINED BY type-id }
  833. *
  834. * EDIPartyName ::= SEQUENCE {
  835. * nameAssigner [0] DirectoryString OPTIONAL,
  836. * partyName [1] DirectoryString }
  837. */
  838. for (p = pos, end = pos + len; p < end; p = hdr.payload + hdr.length) {
  839. int res;
  840. if (asn1_get_next(p, end - p, &hdr) < 0) {
  841. wpa_printf(MSG_DEBUG, "X509: Failed to parse "
  842. "SubjectAltName item");
  843. return -1;
  844. }
  845. if (hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC)
  846. continue;
  847. switch (hdr.tag) {
  848. case 1:
  849. res = x509_parse_alt_name_rfc8222(name, hdr.payload,
  850. hdr.length);
  851. break;
  852. case 2:
  853. res = x509_parse_alt_name_dns(name, hdr.payload,
  854. hdr.length);
  855. break;
  856. case 6:
  857. res = x509_parse_alt_name_uri(name, hdr.payload,
  858. hdr.length);
  859. break;
  860. case 7:
  861. res = x509_parse_alt_name_ip(name, hdr.payload,
  862. hdr.length);
  863. break;
  864. case 8:
  865. res = x509_parse_alt_name_rid(name, hdr.payload,
  866. hdr.length);
  867. break;
  868. case 0: /* TODO: otherName */
  869. case 3: /* TODO: x500Address */
  870. case 4: /* TODO: directoryName */
  871. case 5: /* TODO: ediPartyName */
  872. default:
  873. res = 0;
  874. break;
  875. }
  876. if (res < 0)
  877. return res;
  878. }
  879. return 0;
  880. }
  881. static int x509_parse_ext_subject_alt_name(struct x509_certificate *cert,
  882. const u8 *pos, size_t len)
  883. {
  884. struct asn1_hdr hdr;
  885. /* SubjectAltName ::= GeneralNames */
  886. if (asn1_get_next(pos, len, &hdr) < 0 ||
  887. hdr.class != ASN1_CLASS_UNIVERSAL ||
  888. hdr.tag != ASN1_TAG_SEQUENCE) {
  889. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE in "
  890. "SubjectAltName; found %d tag 0x%x",
  891. hdr.class, hdr.tag);
  892. return -1;
  893. }
  894. wpa_printf(MSG_DEBUG, "X509: SubjectAltName");
  895. cert->extensions_present |= X509_EXT_SUBJECT_ALT_NAME;
  896. if (hdr.length == 0)
  897. return 0;
  898. return x509_parse_ext_alt_name(&cert->subject, hdr.payload,
  899. hdr.length);
  900. }
  901. static int x509_parse_ext_issuer_alt_name(struct x509_certificate *cert,
  902. const u8 *pos, size_t len)
  903. {
  904. struct asn1_hdr hdr;
  905. /* IssuerAltName ::= GeneralNames */
  906. if (asn1_get_next(pos, len, &hdr) < 0 ||
  907. hdr.class != ASN1_CLASS_UNIVERSAL ||
  908. hdr.tag != ASN1_TAG_SEQUENCE) {
  909. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE in "
  910. "IssuerAltName; found %d tag 0x%x",
  911. hdr.class, hdr.tag);
  912. return -1;
  913. }
  914. wpa_printf(MSG_DEBUG, "X509: IssuerAltName");
  915. cert->extensions_present |= X509_EXT_ISSUER_ALT_NAME;
  916. if (hdr.length == 0)
  917. return 0;
  918. return x509_parse_ext_alt_name(&cert->issuer, hdr.payload,
  919. hdr.length);
  920. }
  921. static int x509_id_pkix_oid(struct asn1_oid *oid)
  922. {
  923. return oid->len >= 7 &&
  924. oid->oid[0] == 1 /* iso */ &&
  925. oid->oid[1] == 3 /* identified-organization */ &&
  926. oid->oid[2] == 6 /* dod */ &&
  927. oid->oid[3] == 1 /* internet */ &&
  928. oid->oid[4] == 5 /* security */ &&
  929. oid->oid[5] == 5 /* mechanisms */ &&
  930. oid->oid[6] == 7 /* id-pkix */;
  931. }
  932. static int x509_id_kp_oid(struct asn1_oid *oid)
  933. {
  934. /* id-kp */
  935. return oid->len >= 8 &&
  936. x509_id_pkix_oid(oid) &&
  937. oid->oid[7] == 3 /* id-kp */;
  938. }
  939. static int x509_id_kp_server_auth_oid(struct asn1_oid *oid)
  940. {
  941. /* id-kp */
  942. return oid->len == 9 &&
  943. x509_id_kp_oid(oid) &&
  944. oid->oid[8] == 1 /* id-kp-serverAuth */;
  945. }
  946. static int x509_id_kp_client_auth_oid(struct asn1_oid *oid)
  947. {
  948. /* id-kp */
  949. return oid->len == 9 &&
  950. x509_id_kp_oid(oid) &&
  951. oid->oid[8] == 2 /* id-kp-clientAuth */;
  952. }
  953. static int x509_id_kp_ocsp_oid(struct asn1_oid *oid)
  954. {
  955. /* id-kp */
  956. return oid->len == 9 &&
  957. x509_id_kp_oid(oid) &&
  958. oid->oid[8] == 9 /* id-kp-OCSPSigning */;
  959. }
  960. static int x509_parse_ext_ext_key_usage(struct x509_certificate *cert,
  961. const u8 *pos, size_t len)
  962. {
  963. struct asn1_hdr hdr;
  964. const u8 *end;
  965. struct asn1_oid oid;
  966. /*
  967. * ExtKeyUsageSyntax ::= SEQUENCE SIZE (1..MAX) OF KeyPurposeId
  968. *
  969. * KeyPurposeId ::= OBJECT IDENTIFIER
  970. */
  971. if (asn1_get_next(pos, len, &hdr) < 0 ||
  972. hdr.class != ASN1_CLASS_UNIVERSAL ||
  973. hdr.tag != ASN1_TAG_SEQUENCE) {
  974. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  975. "(ExtKeyUsageSyntax) - found class %d tag 0x%x",
  976. hdr.class, hdr.tag);
  977. return -1;
  978. }
  979. if (hdr.length > pos + len - hdr.payload)
  980. return -1;
  981. pos = hdr.payload;
  982. end = pos + hdr.length;
  983. wpa_hexdump(MSG_MSGDUMP, "X509: ExtKeyUsageSyntax", pos, end - pos);
  984. while (pos < end) {
  985. char buf[80];
  986. if (asn1_get_oid(pos, end - pos, &oid, &pos))
  987. return -1;
  988. if (x509_any_ext_key_usage_oid(&oid)) {
  989. os_strlcpy(buf, "anyExtendedKeyUsage", sizeof(buf));
  990. cert->ext_key_usage |= X509_EXT_KEY_USAGE_ANY;
  991. } else if (x509_id_kp_server_auth_oid(&oid)) {
  992. os_strlcpy(buf, "id-kp-serverAuth", sizeof(buf));
  993. cert->ext_key_usage |= X509_EXT_KEY_USAGE_SERVER_AUTH;
  994. } else if (x509_id_kp_client_auth_oid(&oid)) {
  995. os_strlcpy(buf, "id-kp-clientAuth", sizeof(buf));
  996. cert->ext_key_usage |= X509_EXT_KEY_USAGE_CLIENT_AUTH;
  997. } else if (x509_id_kp_ocsp_oid(&oid)) {
  998. os_strlcpy(buf, "id-kp-OCSPSigning", sizeof(buf));
  999. cert->ext_key_usage |= X509_EXT_KEY_USAGE_OCSP;
  1000. } else {
  1001. asn1_oid_to_str(&oid, buf, sizeof(buf));
  1002. }
  1003. wpa_printf(MSG_DEBUG, "ExtKeyUsage KeyPurposeId: %s", buf);
  1004. }
  1005. cert->extensions_present |= X509_EXT_EXT_KEY_USAGE;
  1006. return 0;
  1007. }
  1008. static int x509_parse_extension_data(struct x509_certificate *cert,
  1009. struct asn1_oid *oid,
  1010. const u8 *pos, size_t len)
  1011. {
  1012. if (!x509_id_ce_oid(oid))
  1013. return 1;
  1014. /* TODO: add other extensions required by RFC 3280, Ch 4.2:
  1015. * certificate policies (section 4.2.1.5)
  1016. * name constraints (section 4.2.1.11)
  1017. * policy constraints (section 4.2.1.12)
  1018. * inhibit any-policy (section 4.2.1.15)
  1019. */
  1020. switch (oid->oid[3]) {
  1021. case 15: /* id-ce-keyUsage */
  1022. return x509_parse_ext_key_usage(cert, pos, len);
  1023. case 17: /* id-ce-subjectAltName */
  1024. return x509_parse_ext_subject_alt_name(cert, pos, len);
  1025. case 18: /* id-ce-issuerAltName */
  1026. return x509_parse_ext_issuer_alt_name(cert, pos, len);
  1027. case 19: /* id-ce-basicConstraints */
  1028. return x509_parse_ext_basic_constraints(cert, pos, len);
  1029. case 37: /* id-ce-extKeyUsage */
  1030. return x509_parse_ext_ext_key_usage(cert, pos, len);
  1031. default:
  1032. return 1;
  1033. }
  1034. }
  1035. static int x509_parse_extension(struct x509_certificate *cert,
  1036. const u8 *pos, size_t len, const u8 **next)
  1037. {
  1038. const u8 *end;
  1039. struct asn1_hdr hdr;
  1040. struct asn1_oid oid;
  1041. int critical_ext = 0, res;
  1042. char buf[80];
  1043. /*
  1044. * Extension ::= SEQUENCE {
  1045. * extnID OBJECT IDENTIFIER,
  1046. * critical BOOLEAN DEFAULT FALSE,
  1047. * extnValue OCTET STRING
  1048. * }
  1049. */
  1050. if (asn1_get_next(pos, len, &hdr) < 0 ||
  1051. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1052. hdr.tag != ASN1_TAG_SEQUENCE) {
  1053. wpa_printf(MSG_DEBUG, "X509: Unexpected ASN.1 header in "
  1054. "Extensions: class %d tag 0x%x; expected SEQUENCE",
  1055. hdr.class, hdr.tag);
  1056. return -1;
  1057. }
  1058. pos = hdr.payload;
  1059. *next = end = pos + hdr.length;
  1060. if (asn1_get_oid(pos, end - pos, &oid, &pos) < 0) {
  1061. wpa_printf(MSG_DEBUG, "X509: Unexpected ASN.1 data for "
  1062. "Extension (expected OID)");
  1063. return -1;
  1064. }
  1065. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1066. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1067. (hdr.tag != ASN1_TAG_BOOLEAN &&
  1068. hdr.tag != ASN1_TAG_OCTETSTRING)) {
  1069. wpa_printf(MSG_DEBUG, "X509: Unexpected ASN.1 header in "
  1070. "Extensions: class %d tag 0x%x; expected BOOLEAN "
  1071. "or OCTET STRING", hdr.class, hdr.tag);
  1072. return -1;
  1073. }
  1074. if (hdr.tag == ASN1_TAG_BOOLEAN) {
  1075. if (hdr.length != 1) {
  1076. wpa_printf(MSG_DEBUG, "X509: Unexpected "
  1077. "Boolean length (%u)", hdr.length);
  1078. return -1;
  1079. }
  1080. critical_ext = hdr.payload[0];
  1081. pos = hdr.payload;
  1082. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1083. (hdr.class != ASN1_CLASS_UNIVERSAL &&
  1084. hdr.class != ASN1_CLASS_PRIVATE) ||
  1085. hdr.tag != ASN1_TAG_OCTETSTRING) {
  1086. wpa_printf(MSG_DEBUG, "X509: Unexpected ASN.1 header "
  1087. "in Extensions: class %d tag 0x%x; "
  1088. "expected OCTET STRING",
  1089. hdr.class, hdr.tag);
  1090. return -1;
  1091. }
  1092. }
  1093. asn1_oid_to_str(&oid, buf, sizeof(buf));
  1094. wpa_printf(MSG_DEBUG, "X509: Extension: extnID=%s critical=%d",
  1095. buf, critical_ext);
  1096. wpa_hexdump(MSG_MSGDUMP, "X509: extnValue", hdr.payload, hdr.length);
  1097. res = x509_parse_extension_data(cert, &oid, hdr.payload, hdr.length);
  1098. if (res < 0)
  1099. return res;
  1100. if (res == 1 && critical_ext) {
  1101. wpa_printf(MSG_INFO, "X509: Unknown critical extension %s",
  1102. buf);
  1103. return -1;
  1104. }
  1105. return 0;
  1106. }
  1107. static int x509_parse_extensions(struct x509_certificate *cert,
  1108. const u8 *pos, size_t len)
  1109. {
  1110. const u8 *end;
  1111. struct asn1_hdr hdr;
  1112. /* Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension */
  1113. if (asn1_get_next(pos, len, &hdr) < 0 ||
  1114. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1115. hdr.tag != ASN1_TAG_SEQUENCE) {
  1116. wpa_printf(MSG_DEBUG, "X509: Unexpected ASN.1 data "
  1117. "for Extensions: class %d tag 0x%x; "
  1118. "expected SEQUENCE", hdr.class, hdr.tag);
  1119. return -1;
  1120. }
  1121. pos = hdr.payload;
  1122. end = pos + hdr.length;
  1123. while (pos < end) {
  1124. if (x509_parse_extension(cert, pos, end - pos, &pos)
  1125. < 0)
  1126. return -1;
  1127. }
  1128. return 0;
  1129. }
  1130. static int x509_parse_tbs_certificate(const u8 *buf, size_t len,
  1131. struct x509_certificate *cert,
  1132. const u8 **next)
  1133. {
  1134. struct asn1_hdr hdr;
  1135. const u8 *pos, *end;
  1136. size_t left;
  1137. char sbuf[128];
  1138. unsigned long value;
  1139. const u8 *subject_dn;
  1140. /* tbsCertificate TBSCertificate ::= SEQUENCE */
  1141. if (asn1_get_next(buf, len, &hdr) < 0 ||
  1142. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1143. hdr.tag != ASN1_TAG_SEQUENCE) {
  1144. wpa_printf(MSG_DEBUG, "X509: tbsCertificate did not start "
  1145. "with a valid SEQUENCE - found class %d tag 0x%x",
  1146. hdr.class, hdr.tag);
  1147. return -1;
  1148. }
  1149. pos = hdr.payload;
  1150. end = *next = pos + hdr.length;
  1151. /*
  1152. * version [0] EXPLICIT Version DEFAULT v1
  1153. * Version ::= INTEGER { v1(0), v2(1), v3(2) }
  1154. */
  1155. if (asn1_get_next(pos, end - pos, &hdr) < 0)
  1156. return -1;
  1157. pos = hdr.payload;
  1158. if (hdr.class == ASN1_CLASS_CONTEXT_SPECIFIC) {
  1159. if (asn1_get_next(pos, end - pos, &hdr) < 0)
  1160. return -1;
  1161. if (hdr.class != ASN1_CLASS_UNIVERSAL ||
  1162. hdr.tag != ASN1_TAG_INTEGER) {
  1163. wpa_printf(MSG_DEBUG, "X509: No INTEGER tag found for "
  1164. "version field - found class %d tag 0x%x",
  1165. hdr.class, hdr.tag);
  1166. return -1;
  1167. }
  1168. if (hdr.length != 1) {
  1169. wpa_printf(MSG_DEBUG, "X509: Unexpected version field "
  1170. "length %u (expected 1)", hdr.length);
  1171. return -1;
  1172. }
  1173. pos = hdr.payload;
  1174. left = hdr.length;
  1175. value = 0;
  1176. while (left) {
  1177. value <<= 8;
  1178. value |= *pos++;
  1179. left--;
  1180. }
  1181. cert->version = value;
  1182. if (cert->version != X509_CERT_V1 &&
  1183. cert->version != X509_CERT_V2 &&
  1184. cert->version != X509_CERT_V3) {
  1185. wpa_printf(MSG_DEBUG, "X509: Unsupported version %d",
  1186. cert->version + 1);
  1187. return -1;
  1188. }
  1189. if (asn1_get_next(pos, end - pos, &hdr) < 0)
  1190. return -1;
  1191. } else
  1192. cert->version = X509_CERT_V1;
  1193. wpa_printf(MSG_MSGDUMP, "X509: Version X.509v%d", cert->version + 1);
  1194. /* serialNumber CertificateSerialNumber ::= INTEGER */
  1195. if (hdr.class != ASN1_CLASS_UNIVERSAL ||
  1196. hdr.tag != ASN1_TAG_INTEGER ||
  1197. hdr.length < 1 || hdr.length > X509_MAX_SERIAL_NUM_LEN) {
  1198. wpa_printf(MSG_DEBUG, "X509: No INTEGER tag found for "
  1199. "serialNumber; class=%d tag=0x%x length=%u",
  1200. hdr.class, hdr.tag, hdr.length);
  1201. return -1;
  1202. }
  1203. pos = hdr.payload + hdr.length;
  1204. while (hdr.length > 0 && hdr.payload[0] == 0) {
  1205. hdr.payload++;
  1206. hdr.length--;
  1207. }
  1208. os_memcpy(cert->serial_number, hdr.payload, hdr.length);
  1209. cert->serial_number_len = hdr.length;
  1210. wpa_hexdump(MSG_MSGDUMP, "X509: serialNumber", cert->serial_number,
  1211. cert->serial_number_len);
  1212. /* signature AlgorithmIdentifier */
  1213. if (x509_parse_algorithm_identifier(pos, end - pos, &cert->signature,
  1214. &pos))
  1215. return -1;
  1216. /* issuer Name */
  1217. if (x509_parse_name(pos, end - pos, &cert->issuer, &pos))
  1218. return -1;
  1219. x509_name_string(&cert->issuer, sbuf, sizeof(sbuf));
  1220. wpa_printf(MSG_MSGDUMP, "X509: issuer %s", sbuf);
  1221. /* validity Validity */
  1222. if (x509_parse_validity(pos, end - pos, cert, &pos))
  1223. return -1;
  1224. /* subject Name */
  1225. subject_dn = pos;
  1226. if (x509_parse_name(pos, end - pos, &cert->subject, &pos))
  1227. return -1;
  1228. cert->subject_dn = os_malloc(pos - subject_dn);
  1229. if (!cert->subject_dn)
  1230. return -1;
  1231. cert->subject_dn_len = pos - subject_dn;
  1232. os_memcpy(cert->subject_dn, subject_dn, cert->subject_dn_len);
  1233. x509_name_string(&cert->subject, sbuf, sizeof(sbuf));
  1234. wpa_printf(MSG_MSGDUMP, "X509: subject %s", sbuf);
  1235. /* subjectPublicKeyInfo SubjectPublicKeyInfo */
  1236. if (x509_parse_public_key(pos, end - pos, cert, &pos))
  1237. return -1;
  1238. if (pos == end)
  1239. return 0;
  1240. if (cert->version == X509_CERT_V1)
  1241. return 0;
  1242. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1243. hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC) {
  1244. wpa_printf(MSG_DEBUG, "X509: Expected Context-Specific"
  1245. " tag to parse optional tbsCertificate "
  1246. "field(s); parsed class %d tag 0x%x",
  1247. hdr.class, hdr.tag);
  1248. return -1;
  1249. }
  1250. if (hdr.tag == 1) {
  1251. /* issuerUniqueID [1] IMPLICIT UniqueIdentifier OPTIONAL */
  1252. wpa_printf(MSG_DEBUG, "X509: issuerUniqueID");
  1253. /* TODO: parse UniqueIdentifier ::= BIT STRING */
  1254. pos = hdr.payload + hdr.length;
  1255. if (pos == end)
  1256. return 0;
  1257. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1258. hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC) {
  1259. wpa_printf(MSG_DEBUG, "X509: Expected Context-Specific"
  1260. " tag to parse optional tbsCertificate "
  1261. "field(s); parsed class %d tag 0x%x",
  1262. hdr.class, hdr.tag);
  1263. return -1;
  1264. }
  1265. }
  1266. if (hdr.tag == 2) {
  1267. /* subjectUniqueID [2] IMPLICIT UniqueIdentifier OPTIONAL */
  1268. wpa_printf(MSG_DEBUG, "X509: subjectUniqueID");
  1269. /* TODO: parse UniqueIdentifier ::= BIT STRING */
  1270. pos = hdr.payload + hdr.length;
  1271. if (pos == end)
  1272. return 0;
  1273. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1274. hdr.class != ASN1_CLASS_CONTEXT_SPECIFIC) {
  1275. wpa_printf(MSG_DEBUG, "X509: Expected Context-Specific"
  1276. " tag to parse optional tbsCertificate "
  1277. "field(s); parsed class %d tag 0x%x",
  1278. hdr.class, hdr.tag);
  1279. return -1;
  1280. }
  1281. }
  1282. if (hdr.tag != 3) {
  1283. wpa_printf(MSG_DEBUG, "X509: Ignored unexpected "
  1284. "Context-Specific tag %d in optional "
  1285. "tbsCertificate fields", hdr.tag);
  1286. return 0;
  1287. }
  1288. /* extensions [3] EXPLICIT Extensions OPTIONAL */
  1289. if (cert->version != X509_CERT_V3) {
  1290. wpa_printf(MSG_DEBUG, "X509: X.509%d certificate and "
  1291. "Extensions data which are only allowed for "
  1292. "version 3", cert->version + 1);
  1293. return -1;
  1294. }
  1295. if (x509_parse_extensions(cert, hdr.payload, hdr.length) < 0)
  1296. return -1;
  1297. pos = hdr.payload + hdr.length;
  1298. if (pos < end) {
  1299. wpa_hexdump(MSG_DEBUG,
  1300. "X509: Ignored extra tbsCertificate data",
  1301. pos, end - pos);
  1302. }
  1303. return 0;
  1304. }
  1305. static int x509_rsadsi_oid(struct asn1_oid *oid)
  1306. {
  1307. return oid->len >= 4 &&
  1308. oid->oid[0] == 1 /* iso */ &&
  1309. oid->oid[1] == 2 /* member-body */ &&
  1310. oid->oid[2] == 840 /* us */ &&
  1311. oid->oid[3] == 113549 /* rsadsi */;
  1312. }
  1313. static int x509_pkcs_oid(struct asn1_oid *oid)
  1314. {
  1315. return oid->len >= 5 &&
  1316. x509_rsadsi_oid(oid) &&
  1317. oid->oid[4] == 1 /* pkcs */;
  1318. }
  1319. static int x509_digest_oid(struct asn1_oid *oid)
  1320. {
  1321. return oid->len >= 5 &&
  1322. x509_rsadsi_oid(oid) &&
  1323. oid->oid[4] == 2 /* digestAlgorithm */;
  1324. }
  1325. int x509_sha1_oid(struct asn1_oid *oid)
  1326. {
  1327. return oid->len == 6 &&
  1328. oid->oid[0] == 1 /* iso */ &&
  1329. oid->oid[1] == 3 /* identified-organization */ &&
  1330. oid->oid[2] == 14 /* oiw */ &&
  1331. oid->oid[3] == 3 /* secsig */ &&
  1332. oid->oid[4] == 2 /* algorithms */ &&
  1333. oid->oid[5] == 26 /* id-sha1 */;
  1334. }
  1335. static int x509_sha2_oid(struct asn1_oid *oid)
  1336. {
  1337. return oid->len == 9 &&
  1338. oid->oid[0] == 2 /* joint-iso-itu-t */ &&
  1339. oid->oid[1] == 16 /* country */ &&
  1340. oid->oid[2] == 840 /* us */ &&
  1341. oid->oid[3] == 1 /* organization */ &&
  1342. oid->oid[4] == 101 /* gov */ &&
  1343. oid->oid[5] == 3 /* csor */ &&
  1344. oid->oid[6] == 4 /* nistAlgorithm */ &&
  1345. oid->oid[7] == 2 /* hashAlgs */;
  1346. }
  1347. int x509_sha256_oid(struct asn1_oid *oid)
  1348. {
  1349. return x509_sha2_oid(oid) &&
  1350. oid->oid[8] == 1 /* sha256 */;
  1351. }
  1352. int x509_sha384_oid(struct asn1_oid *oid)
  1353. {
  1354. return x509_sha2_oid(oid) &&
  1355. oid->oid[8] == 2 /* sha384 */;
  1356. }
  1357. int x509_sha512_oid(struct asn1_oid *oid)
  1358. {
  1359. return x509_sha2_oid(oid) &&
  1360. oid->oid[8] == 3 /* sha512 */;
  1361. }
  1362. /**
  1363. * x509_certificate_parse - Parse a X.509 certificate in DER format
  1364. * @buf: Pointer to the X.509 certificate in DER format
  1365. * @len: Buffer length
  1366. * Returns: Pointer to the parsed certificate or %NULL on failure
  1367. *
  1368. * Caller is responsible for freeing the returned certificate by calling
  1369. * x509_certificate_free().
  1370. */
  1371. struct x509_certificate * x509_certificate_parse(const u8 *buf, size_t len)
  1372. {
  1373. struct asn1_hdr hdr;
  1374. const u8 *pos, *end, *hash_start;
  1375. struct x509_certificate *cert;
  1376. cert = os_zalloc(sizeof(*cert) + len);
  1377. if (cert == NULL)
  1378. return NULL;
  1379. os_memcpy(cert + 1, buf, len);
  1380. cert->cert_start = (u8 *) (cert + 1);
  1381. cert->cert_len = len;
  1382. pos = buf;
  1383. end = buf + len;
  1384. /* RFC 3280 - X.509 v3 certificate / ASN.1 DER */
  1385. /* Certificate ::= SEQUENCE */
  1386. if (asn1_get_next(pos, len, &hdr) < 0 ||
  1387. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1388. hdr.tag != ASN1_TAG_SEQUENCE) {
  1389. wpa_printf(MSG_DEBUG, "X509: Certificate did not start with "
  1390. "a valid SEQUENCE - found class %d tag 0x%x",
  1391. hdr.class, hdr.tag);
  1392. x509_certificate_free(cert);
  1393. return NULL;
  1394. }
  1395. pos = hdr.payload;
  1396. if (hdr.length > end - pos) {
  1397. x509_certificate_free(cert);
  1398. return NULL;
  1399. }
  1400. if (hdr.length < end - pos) {
  1401. wpa_hexdump(MSG_MSGDUMP, "X509: Ignoring extra data after DER "
  1402. "encoded certificate",
  1403. pos + hdr.length, end - (pos + hdr.length));
  1404. end = pos + hdr.length;
  1405. }
  1406. hash_start = pos;
  1407. cert->tbs_cert_start = cert->cert_start + (hash_start - buf);
  1408. if (x509_parse_tbs_certificate(pos, end - pos, cert, &pos)) {
  1409. x509_certificate_free(cert);
  1410. return NULL;
  1411. }
  1412. cert->tbs_cert_len = pos - hash_start;
  1413. /* signatureAlgorithm AlgorithmIdentifier */
  1414. if (x509_parse_algorithm_identifier(pos, end - pos,
  1415. &cert->signature_alg, &pos)) {
  1416. x509_certificate_free(cert);
  1417. return NULL;
  1418. }
  1419. /* signatureValue BIT STRING */
  1420. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1421. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1422. hdr.tag != ASN1_TAG_BITSTRING) {
  1423. wpa_printf(MSG_DEBUG, "X509: Expected BITSTRING "
  1424. "(signatureValue) - found class %d tag 0x%x",
  1425. hdr.class, hdr.tag);
  1426. x509_certificate_free(cert);
  1427. return NULL;
  1428. }
  1429. if (hdr.length < 1) {
  1430. x509_certificate_free(cert);
  1431. return NULL;
  1432. }
  1433. pos = hdr.payload;
  1434. if (*pos) {
  1435. wpa_printf(MSG_DEBUG, "X509: BITSTRING - %d unused bits",
  1436. *pos);
  1437. /* PKCS #1 v1.5 10.2.1:
  1438. * It is an error if the length in bits of the signature S is
  1439. * not a multiple of eight.
  1440. */
  1441. x509_certificate_free(cert);
  1442. return NULL;
  1443. }
  1444. os_free(cert->sign_value);
  1445. cert->sign_value = os_malloc(hdr.length - 1);
  1446. if (cert->sign_value == NULL) {
  1447. wpa_printf(MSG_DEBUG, "X509: Failed to allocate memory for "
  1448. "signatureValue");
  1449. x509_certificate_free(cert);
  1450. return NULL;
  1451. }
  1452. os_memcpy(cert->sign_value, pos + 1, hdr.length - 1);
  1453. cert->sign_value_len = hdr.length - 1;
  1454. wpa_hexdump(MSG_MSGDUMP, "X509: signature",
  1455. cert->sign_value, cert->sign_value_len);
  1456. return cert;
  1457. }
  1458. /**
  1459. * x509_certificate_check_signature - Verify certificate signature
  1460. * @issuer: Issuer certificate
  1461. * @cert: Certificate to be verified
  1462. * Returns: 0 if cert has a valid signature that was signed by the issuer,
  1463. * -1 if not
  1464. */
  1465. int x509_certificate_check_signature(struct x509_certificate *issuer,
  1466. struct x509_certificate *cert)
  1467. {
  1468. return x509_check_signature(issuer, &cert->signature,
  1469. cert->sign_value, cert->sign_value_len,
  1470. cert->tbs_cert_start, cert->tbs_cert_len);
  1471. }
  1472. int x509_check_signature(struct x509_certificate *issuer,
  1473. struct x509_algorithm_identifier *signature,
  1474. const u8 *sign_value, size_t sign_value_len,
  1475. const u8 *signed_data, size_t signed_data_len)
  1476. {
  1477. struct crypto_public_key *pk;
  1478. u8 *data;
  1479. const u8 *pos, *end, *next, *da_end;
  1480. size_t data_len;
  1481. struct asn1_hdr hdr;
  1482. struct asn1_oid oid;
  1483. u8 hash[64];
  1484. size_t hash_len;
  1485. const u8 *addr[1] = { signed_data };
  1486. size_t len[1] = { signed_data_len };
  1487. if (!x509_pkcs_oid(&signature->oid) ||
  1488. signature->oid.len != 7 ||
  1489. signature->oid.oid[5] != 1 /* pkcs-1 */) {
  1490. wpa_printf(MSG_DEBUG, "X509: Unrecognized signature "
  1491. "algorithm");
  1492. return -1;
  1493. }
  1494. pk = crypto_public_key_import(issuer->public_key,
  1495. issuer->public_key_len);
  1496. if (pk == NULL)
  1497. return -1;
  1498. data_len = sign_value_len;
  1499. data = os_malloc(data_len);
  1500. if (data == NULL) {
  1501. crypto_public_key_free(pk);
  1502. return -1;
  1503. }
  1504. if (crypto_public_key_decrypt_pkcs1(pk, sign_value,
  1505. sign_value_len, data,
  1506. &data_len) < 0) {
  1507. wpa_printf(MSG_DEBUG, "X509: Failed to decrypt signature");
  1508. crypto_public_key_free(pk);
  1509. os_free(data);
  1510. return -1;
  1511. }
  1512. crypto_public_key_free(pk);
  1513. wpa_hexdump(MSG_MSGDUMP, "X509: Signature data D", data, data_len);
  1514. /*
  1515. * PKCS #1 v1.5, 10.1.2:
  1516. *
  1517. * DigestInfo ::= SEQUENCE {
  1518. * digestAlgorithm DigestAlgorithmIdentifier,
  1519. * digest Digest
  1520. * }
  1521. *
  1522. * DigestAlgorithmIdentifier ::= AlgorithmIdentifier
  1523. *
  1524. * Digest ::= OCTET STRING
  1525. *
  1526. */
  1527. if (asn1_get_next(data, data_len, &hdr) < 0 ||
  1528. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1529. hdr.tag != ASN1_TAG_SEQUENCE) {
  1530. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  1531. "(DigestInfo) - found class %d tag 0x%x",
  1532. hdr.class, hdr.tag);
  1533. os_free(data);
  1534. return -1;
  1535. }
  1536. pos = hdr.payload;
  1537. end = pos + hdr.length;
  1538. /*
  1539. * X.509:
  1540. * AlgorithmIdentifier ::= SEQUENCE {
  1541. * algorithm OBJECT IDENTIFIER,
  1542. * parameters ANY DEFINED BY algorithm OPTIONAL
  1543. * }
  1544. */
  1545. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1546. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1547. hdr.tag != ASN1_TAG_SEQUENCE) {
  1548. wpa_printf(MSG_DEBUG, "X509: Expected SEQUENCE "
  1549. "(AlgorithmIdentifier) - found class %d tag 0x%x",
  1550. hdr.class, hdr.tag);
  1551. os_free(data);
  1552. return -1;
  1553. }
  1554. da_end = hdr.payload + hdr.length;
  1555. if (asn1_get_oid(hdr.payload, hdr.length, &oid, &next)) {
  1556. wpa_printf(MSG_DEBUG, "X509: Failed to parse digestAlgorithm");
  1557. os_free(data);
  1558. return -1;
  1559. }
  1560. if (x509_sha1_oid(&oid)) {
  1561. if (signature->oid.oid[6] != 5 /* sha-1WithRSAEncryption */) {
  1562. wpa_printf(MSG_DEBUG, "X509: digestAlgorithm SHA1 "
  1563. "does not match with certificate "
  1564. "signatureAlgorithm (%lu)",
  1565. signature->oid.oid[6]);
  1566. os_free(data);
  1567. return -1;
  1568. }
  1569. goto skip_digest_oid;
  1570. }
  1571. if (x509_sha256_oid(&oid)) {
  1572. if (signature->oid.oid[6] !=
  1573. 11 /* sha2561WithRSAEncryption */) {
  1574. wpa_printf(MSG_DEBUG, "X509: digestAlgorithm SHA256 "
  1575. "does not match with certificate "
  1576. "signatureAlgorithm (%lu)",
  1577. signature->oid.oid[6]);
  1578. os_free(data);
  1579. return -1;
  1580. }
  1581. goto skip_digest_oid;
  1582. }
  1583. if (x509_sha384_oid(&oid)) {
  1584. if (signature->oid.oid[6] != 12 /* sha384WithRSAEncryption */) {
  1585. wpa_printf(MSG_DEBUG, "X509: digestAlgorithm SHA384 "
  1586. "does not match with certificate "
  1587. "signatureAlgorithm (%lu)",
  1588. signature->oid.oid[6]);
  1589. os_free(data);
  1590. return -1;
  1591. }
  1592. goto skip_digest_oid;
  1593. }
  1594. if (x509_sha512_oid(&oid)) {
  1595. if (signature->oid.oid[6] != 13 /* sha512WithRSAEncryption */) {
  1596. wpa_printf(MSG_DEBUG, "X509: digestAlgorithm SHA512 "
  1597. "does not match with certificate "
  1598. "signatureAlgorithm (%lu)",
  1599. signature->oid.oid[6]);
  1600. os_free(data);
  1601. return -1;
  1602. }
  1603. goto skip_digest_oid;
  1604. }
  1605. if (!x509_digest_oid(&oid)) {
  1606. wpa_printf(MSG_DEBUG, "X509: Unrecognized digestAlgorithm");
  1607. os_free(data);
  1608. return -1;
  1609. }
  1610. switch (oid.oid[5]) {
  1611. case 5: /* md5 */
  1612. if (signature->oid.oid[6] != 4 /* md5WithRSAEncryption */) {
  1613. wpa_printf(MSG_DEBUG, "X509: digestAlgorithm MD5 does "
  1614. "not match with certificate "
  1615. "signatureAlgorithm (%lu)",
  1616. signature->oid.oid[6]);
  1617. os_free(data);
  1618. return -1;
  1619. }
  1620. break;
  1621. case 2: /* md2 */
  1622. case 4: /* md4 */
  1623. default:
  1624. wpa_printf(MSG_DEBUG, "X509: Unsupported digestAlgorithm "
  1625. "(%lu)", oid.oid[5]);
  1626. os_free(data);
  1627. return -1;
  1628. }
  1629. skip_digest_oid:
  1630. /* Digest ::= OCTET STRING */
  1631. pos = da_end;
  1632. end = data + data_len;
  1633. if (asn1_get_next(pos, end - pos, &hdr) < 0 ||
  1634. hdr.class != ASN1_CLASS_UNIVERSAL ||
  1635. hdr.tag != ASN1_TAG_OCTETSTRING) {
  1636. wpa_printf(MSG_DEBUG, "X509: Expected OCTETSTRING "
  1637. "(Digest) - found class %d tag 0x%x",
  1638. hdr.class, hdr.tag);
  1639. os_free(data);
  1640. return -1;
  1641. }
  1642. wpa_hexdump(MSG_MSGDUMP, "X509: Decrypted Digest",
  1643. hdr.payload, hdr.length);
  1644. switch (signature->oid.oid[6]) {
  1645. case 4: /* md5WithRSAEncryption */
  1646. md5_vector(1, addr, len, hash);
  1647. hash_len = 16;
  1648. wpa_hexdump(MSG_MSGDUMP, "X509: Certificate hash (MD5)",
  1649. hash, hash_len);
  1650. break;
  1651. case 5: /* sha-1WithRSAEncryption */
  1652. sha1_vector(1, addr, len, hash);
  1653. hash_len = 20;
  1654. wpa_hexdump(MSG_MSGDUMP, "X509: Certificate hash (SHA1)",
  1655. hash, hash_len);
  1656. break;
  1657. case 11: /* sha256WithRSAEncryption */
  1658. sha256_vector(1, addr, len, hash);
  1659. hash_len = 32;
  1660. wpa_hexdump(MSG_MSGDUMP, "X509: Certificate hash (SHA256)",
  1661. hash, hash_len);
  1662. break;
  1663. case 12: /* sha384WithRSAEncryption */
  1664. sha384_vector(1, addr, len, hash);
  1665. hash_len = 48;
  1666. wpa_hexdump(MSG_MSGDUMP, "X509: Certificate hash (SHA384)",
  1667. hash, hash_len);
  1668. break;
  1669. case 13: /* sha512WithRSAEncryption */
  1670. sha512_vector(1, addr, len, hash);
  1671. hash_len = 64;
  1672. wpa_hexdump(MSG_MSGDUMP, "X509: Certificate hash (SHA512)",
  1673. hash, hash_len);
  1674. break;
  1675. case 2: /* md2WithRSAEncryption */
  1676. default:
  1677. wpa_printf(MSG_INFO, "X509: Unsupported certificate signature "
  1678. "algorithm (%lu)", signature->oid.oid[6]);
  1679. os_free(data);
  1680. return -1;
  1681. }
  1682. if (hdr.length != hash_len ||
  1683. os_memcmp_const(hdr.payload, hash, hdr.length) != 0) {
  1684. wpa_printf(MSG_INFO, "X509: Certificate Digest does not match "
  1685. "with calculated tbsCertificate hash");
  1686. os_free(data);
  1687. return -1;
  1688. }
  1689. if (hdr.payload + hdr.length < data + data_len) {
  1690. wpa_hexdump(MSG_INFO,
  1691. "X509: Extra data after certificate signature hash",
  1692. hdr.payload + hdr.length,
  1693. data + data_len - hdr.payload - hdr.length);
  1694. os_free(data);
  1695. return -1;
  1696. }
  1697. os_free(data);
  1698. wpa_printf(MSG_DEBUG, "X509: Certificate Digest matches with "
  1699. "calculated tbsCertificate hash");
  1700. return 0;
  1701. }
  1702. static int x509_valid_issuer(const struct x509_certificate *cert)
  1703. {
  1704. if ((cert->extensions_present & X509_EXT_BASIC_CONSTRAINTS) &&
  1705. !cert->ca) {
  1706. wpa_printf(MSG_DEBUG, "X509: Non-CA certificate used as an "
  1707. "issuer");
  1708. return -1;
  1709. }
  1710. if (cert->version == X509_CERT_V3 &&
  1711. !(cert->extensions_present & X509_EXT_BASIC_CONSTRAINTS)) {
  1712. wpa_printf(MSG_DEBUG, "X509: v3 CA certificate did not "
  1713. "include BasicConstraints extension");
  1714. return -1;
  1715. }
  1716. if ((cert->extensions_present & X509_EXT_KEY_USAGE) &&
  1717. !(cert->key_usage & X509_KEY_USAGE_KEY_CERT_SIGN)) {
  1718. wpa_printf(MSG_DEBUG, "X509: Issuer certificate did not have "
  1719. "keyCertSign bit in Key Usage");
  1720. return -1;
  1721. }
  1722. return 0;
  1723. }
  1724. /**
  1725. * x509_certificate_chain_validate - Validate X.509 certificate chain
  1726. * @trusted: List of trusted certificates
  1727. * @chain: Certificate chain to be validated (first chain must be issued by
  1728. * signed by the second certificate in the chain and so on)
  1729. * @reason: Buffer for returning failure reason (X509_VALIDATE_*)
  1730. * Returns: 0 if chain is valid, -1 if not
  1731. */
  1732. int x509_certificate_chain_validate(struct x509_certificate *trusted,
  1733. struct x509_certificate *chain,
  1734. int *reason, int disable_time_checks)
  1735. {
  1736. long unsigned idx;
  1737. int chain_trusted = 0;
  1738. struct x509_certificate *cert, *trust;
  1739. char buf[128];
  1740. struct os_time now;
  1741. *reason = X509_VALIDATE_OK;
  1742. wpa_printf(MSG_DEBUG, "X509: Validate certificate chain");
  1743. os_get_time(&now);
  1744. for (cert = chain, idx = 0; cert; cert = cert->next, idx++) {
  1745. cert->issuer_trusted = 0;
  1746. x509_name_string(&cert->subject, buf, sizeof(buf));
  1747. wpa_printf(MSG_DEBUG, "X509: %lu: %s", idx, buf);
  1748. if (chain_trusted)
  1749. continue;
  1750. if (!disable_time_checks &&
  1751. ((unsigned long) now.sec <
  1752. (unsigned long) cert->not_before ||
  1753. (unsigned long) now.sec >
  1754. (unsigned long) cert->not_after)) {
  1755. wpa_printf(MSG_INFO, "X509: Certificate not valid "
  1756. "(now=%lu not_before=%lu not_after=%lu)",
  1757. now.sec, cert->not_before, cert->not_after);
  1758. *reason = X509_VALIDATE_CERTIFICATE_EXPIRED;
  1759. return -1;
  1760. }
  1761. if (cert->next) {
  1762. if (x509_name_compare(&cert->issuer,
  1763. &cert->next->subject) != 0) {
  1764. wpa_printf(MSG_DEBUG, "X509: Certificate "
  1765. "chain issuer name mismatch");
  1766. x509_name_string(&cert->issuer, buf,
  1767. sizeof(buf));
  1768. wpa_printf(MSG_DEBUG, "X509: cert issuer: %s",
  1769. buf);
  1770. x509_name_string(&cert->next->subject, buf,
  1771. sizeof(buf));
  1772. wpa_printf(MSG_DEBUG, "X509: next cert "
  1773. "subject: %s", buf);
  1774. *reason = X509_VALIDATE_CERTIFICATE_UNKNOWN;
  1775. return -1;
  1776. }
  1777. if (x509_valid_issuer(cert->next) < 0) {
  1778. *reason = X509_VALIDATE_BAD_CERTIFICATE;
  1779. return -1;
  1780. }
  1781. if ((cert->next->extensions_present &
  1782. X509_EXT_PATH_LEN_CONSTRAINT) &&
  1783. idx > cert->next->path_len_constraint) {
  1784. wpa_printf(MSG_DEBUG, "X509: pathLenConstraint"
  1785. " not met (idx=%lu issuer "
  1786. "pathLenConstraint=%lu)", idx,
  1787. cert->next->path_len_constraint);
  1788. *reason = X509_VALIDATE_BAD_CERTIFICATE;
  1789. return -1;
  1790. }
  1791. if (x509_certificate_check_signature(cert->next, cert)
  1792. < 0) {
  1793. wpa_printf(MSG_DEBUG, "X509: Invalid "
  1794. "certificate signature within "
  1795. "chain");
  1796. *reason = X509_VALIDATE_BAD_CERTIFICATE;
  1797. return -1;
  1798. }
  1799. }
  1800. for (trust = trusted; trust; trust = trust->next) {
  1801. if (x509_name_compare(&cert->issuer, &trust->subject)
  1802. == 0)
  1803. break;
  1804. }
  1805. if (trust) {
  1806. wpa_printf(MSG_DEBUG, "X509: Found issuer from the "
  1807. "list of trusted certificates");
  1808. if (x509_valid_issuer(trust) < 0) {
  1809. *reason = X509_VALIDATE_BAD_CERTIFICATE;
  1810. return -1;
  1811. }
  1812. if (x509_certificate_check_signature(trust, cert) < 0)
  1813. {
  1814. wpa_printf(MSG_DEBUG, "X509: Invalid "
  1815. "certificate signature");
  1816. *reason = X509_VALIDATE_BAD_CERTIFICATE;
  1817. return -1;
  1818. }
  1819. wpa_printf(MSG_DEBUG, "X509: Trusted certificate "
  1820. "found to complete the chain");
  1821. cert->issuer_trusted = 1;
  1822. chain_trusted = 1;
  1823. }
  1824. }
  1825. if (!chain_trusted) {
  1826. wpa_printf(MSG_DEBUG, "X509: Did not find any of the issuers "
  1827. "from the list of trusted certificates");
  1828. if (trusted) {
  1829. *reason = X509_VALIDATE_UNKNOWN_CA;
  1830. return -1;
  1831. }
  1832. wpa_printf(MSG_DEBUG, "X509: Certificate chain validation "
  1833. "disabled - ignore unknown CA issue");
  1834. }
  1835. wpa_printf(MSG_DEBUG, "X509: Certificate chain valid");
  1836. return 0;
  1837. }
  1838. /**
  1839. * x509_certificate_get_subject - Get a certificate based on Subject name
  1840. * @chain: Certificate chain to search through
  1841. * @name: Subject name to search for
  1842. * Returns: Pointer to the certificate with the given Subject name or
  1843. * %NULL on failure
  1844. */
  1845. struct x509_certificate *
  1846. x509_certificate_get_subject(struct x509_certificate *chain,
  1847. struct x509_name *name)
  1848. {
  1849. struct x509_certificate *cert;
  1850. for (cert = chain; cert; cert = cert->next) {
  1851. if (x509_name_compare(&cert->subject, name) == 0)
  1852. return cert;
  1853. }
  1854. return NULL;
  1855. }
  1856. /**
  1857. * x509_certificate_self_signed - Is the certificate self-signed?
  1858. * @cert: Certificate
  1859. * Returns: 1 if certificate is self-signed, 0 if not
  1860. */
  1861. int x509_certificate_self_signed(struct x509_certificate *cert)
  1862. {
  1863. return x509_name_compare(&cert->issuer, &cert->subject) == 0;
  1864. }