FreeRDP
x509_utils.c
1 
22 #include <openssl/objects.h>
23 #include <openssl/x509v3.h>
24 #include <openssl/pem.h>
25 #include <openssl/err.h>
26 
27 #include <freerdp/config.h>
28 
29 #include <winpr/crt.h>
30 #include <winpr/string.h>
31 #include <winpr/assert.h>
32 
33 #include <freerdp/log.h>
34 
35 #include "x509_utils.h"
36 
37 #define TAG FREERDP_TAG("crypto")
38 
39 BYTE* x509_utils_get_hash(const X509* xcert, const char* hash, size_t* length)
40 {
41  UINT32 fp_len = EVP_MAX_MD_SIZE;
42  BYTE* fp = NULL;
43  const EVP_MD* md = EVP_get_digestbyname(hash);
44  if (!md)
45  {
46  WLog_ERR(TAG, "System does not support %s hash!", hash);
47  return NULL;
48  }
49  if (!xcert || !length)
50  {
51  WLog_ERR(TAG, "Invalid arugments: xcert=%p, length=%p", xcert, length);
52  return NULL;
53  }
54 
55  fp = calloc(fp_len + 1, sizeof(BYTE));
56  if (!fp)
57  {
58  WLog_ERR(TAG, "could not allocate %" PRIuz " bytes", fp_len);
59  return NULL;
60  }
61 
62  if (X509_digest(xcert, md, fp, &fp_len) != 1)
63  {
64  free(fp);
65  WLog_ERR(TAG, "certificate does not have a %s hash!", hash);
66  return NULL;
67  }
68 
69  *length = fp_len;
70  return fp;
71 }
72 
73 static char* crypto_print_name(const X509_NAME* name)
74 {
75  char* buffer = NULL;
76  BIO* outBIO = BIO_new(BIO_s_mem());
77 
78  if (X509_NAME_print_ex(outBIO, name, 0, XN_FLAG_ONELINE) > 0)
79  {
80  UINT64 size = BIO_number_written(outBIO);
81  if (size > INT_MAX)
82  goto fail;
83  buffer = calloc(1, (size_t)size + 1);
84 
85  if (!buffer)
86  goto fail;
87 
88  ERR_clear_error();
89  const int rc = BIO_read(outBIO, buffer, (int)size);
90  if (rc <= 0)
91  {
92  free(buffer);
93  buffer = NULL;
94  goto fail;
95  }
96  }
97 
98 fail:
99  BIO_free_all(outBIO);
100  return buffer;
101 }
102 
103 char* x509_utils_get_subject(const X509* xcert)
104 {
105  char* subject = NULL;
106  if (!xcert)
107  {
108  WLog_ERR(TAG, "Invalid certificate %p", xcert);
109  return NULL;
110  }
111  subject = crypto_print_name(X509_get_subject_name(xcert));
112  if (!subject)
113  WLog_WARN(TAG, "certificate does not have a subject!");
114  return subject;
115 }
116 
117 /* GENERAL_NAME type labels */
118 
119 static const char* general_name_type_labels[] = { "OTHERNAME", "EMAIL ", "DNS ",
120  "X400 ", "DIRNAME ", "EDIPARTY ",
121  "URI ", "IPADD ", "RID " };
122 
123 static const char* general_name_type_label(int general_name_type)
124 {
125  if ((0 <= general_name_type) &&
126  ((size_t)general_name_type < ARRAYSIZE(general_name_type_labels)))
127  {
128  return general_name_type_labels[general_name_type];
129  }
130  else
131  {
132  static char buffer[80] = { 0 };
133  (void)snprintf(buffer, sizeof(buffer), "Unknown general name type (%d)", general_name_type);
134  return buffer;
135  }
136 }
137 
138 /*
139 
140 map_subject_alt_name(x509, general_name_type, mapper, data)
141 
142 Call the function mapper with subjectAltNames found in the x509
143 certificate and data. if generate_name_type is GEN_ALL, the the
144 mapper is called for all the names, else it's called only for names
145 of the given type.
146 
147 
148 We implement two extractors:
149 
150  - a string extractor that can be used to get the subjectAltNames of
151  the following types: GEN_URI, GEN_DNS, GEN_EMAIL
152 
153  - a ASN1_OBJECT filter/extractor that can be used to get the
154  subjectAltNames of OTHERNAME type.
155 
156  Note: usually, it's a string, but some type of otherNames can be
157  associated with different classes of objects. eg. a KPN may be a
158  sequence of realm and principal name, instead of a single string
159  object.
160 
161 Not implemented yet: extractors for the types: GEN_X400, GEN_DIRNAME,
162 GEN_EDIPARTY, GEN_RID, GEN_IPADD (the later can contain nul-bytes).
163 
164 
165 mapper(name, data, index, count)
166 
167 The mapper is passed:
168  - the GENERAL_NAME selected,
169  - the data,
170  - the index of the general name in the subjectAltNames,
171  - the total number of names in the subjectAltNames.
172 
173 The last parameter let's the mapper allocate arrays to collect objects.
174 Note: if names are filtered, not all the indices from 0 to count-1 are
175 passed to mapper, only the indices selected.
176 
177 When the mapper returns 0, map_subject_alt_name stops the iteration immediately.
178 
179 */
180 
181 #define GEN_ALL (-1)
182 
183 typedef int (*general_name_mapper_pr)(GENERAL_NAME* name, void* data, int index, int count);
184 
185 static void map_subject_alt_name(const X509* x509, int general_name_type,
186  general_name_mapper_pr mapper, void* data)
187 {
188  int num = 0;
189  STACK_OF(GENERAL_NAME)* gens = NULL;
190  gens = X509_get_ext_d2i(x509, NID_subject_alt_name, NULL, NULL);
191 
192  if (!gens)
193  {
194  return;
195  }
196 
197  num = sk_GENERAL_NAME_num(gens);
198 
199  for (int i = 0; (i < num); i++)
200  {
201  GENERAL_NAME* name = sk_GENERAL_NAME_value(gens, i);
202 
203  if (name)
204  {
205  if ((general_name_type == GEN_ALL) || (general_name_type == name->type))
206  {
207  if (!mapper(name, data, i, num))
208  {
209  break;
210  }
211  }
212  }
213  }
214 
215  sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
216 }
217 
218 /*
219 extract_string -- string extractor
220 
221 - the strings array is allocated lazily, when we first have to store a
222  string.
223 
224 - allocated contains the size of the strings array, or -1 if
225  allocation failed.
226 
227 - count contains the actual count of strings in the strings array.
228 
229 - maximum limits the number of strings we can store in the strings
230  array: beyond, the extractor returns 0 to short-cut the search.
231 
232 extract_string stores in the string list OPENSSL strings,
233 that must be freed with OPENSSL_free.
234 
235 */
236 
237 typedef struct string_list
238 {
239  char** strings;
240  int allocated;
241  int count;
242  int maximum;
243 } string_list;
244 
245 static void string_list_initialize(string_list* list)
246 {
247  list->strings = 0;
248  list->allocated = 0;
249  list->count = 0;
250  list->maximum = INT_MAX;
251 }
252 
253 static void string_list_allocate(string_list* list, int allocate_count)
254 {
255  if (!list->strings && list->allocated == 0)
256  {
257  list->strings = calloc((size_t)allocate_count, sizeof(char*));
258  list->allocated = list->strings ? allocate_count : -1;
259  list->count = 0;
260  }
261 }
262 
263 static void string_list_free(string_list* list)
264 {
265  /* Note: we don't free the contents of the strings array: this */
266  /* is handled by the caller, either by returning this */
267  /* content, or freeing it itself. */
268  free(list->strings);
269 }
270 
271 static int extract_string(GENERAL_NAME* name, void* data, int index, int count)
272 {
273  string_list* list = data;
274  unsigned char* cstring = 0;
275  ASN1_STRING* str = NULL;
276 
277  switch (name->type)
278  {
279  case GEN_URI:
280  str = name->d.uniformResourceIdentifier;
281  break;
282 
283  case GEN_DNS:
284  str = name->d.dNSName;
285  break;
286 
287  case GEN_EMAIL:
288  str = name->d.rfc822Name;
289  break;
290 
291  default:
292  return 1;
293  }
294 
295  if ((ASN1_STRING_to_UTF8(&cstring, str)) < 0)
296  {
297  WLog_ERR(TAG, "ASN1_STRING_to_UTF8() failed for %s: %s",
298  general_name_type_label(name->type), ERR_error_string(ERR_get_error(), NULL));
299  return 1;
300  }
301 
302  string_list_allocate(list, count);
303 
304  if (list->allocated <= 0)
305  {
306  OPENSSL_free(cstring);
307  return 0;
308  }
309 
310  list->strings[list->count] = (char*)cstring;
311  list->count++;
312 
313  if (list->count >= list->maximum)
314  {
315  return 0;
316  }
317 
318  return 1;
319 }
320 
321 /*
322 extract_othername_object -- object extractor.
323 
324 - the objects array is allocated lazily, when we first have to store a
325  string.
326 
327 - allocated contains the size of the objects array, or -1 if
328  allocation failed.
329 
330 - count contains the actual count of objects in the objects array.
331 
332 - maximum limits the number of objects we can store in the objects
333  array: beyond, the extractor returns 0 to short-cut the search.
334 
335 extract_othername_objects stores in the objects array ASN1_TYPE *
336 pointers directly obtained from the GENERAL_NAME.
337 */
338 
339 typedef struct object_list
340 {
341  ASN1_OBJECT* type_id;
342  char** strings;
343  int allocated;
344  int count;
345  int maximum;
346 } object_list;
347 
348 static void object_list_initialize(object_list* list)
349 {
350  list->type_id = 0;
351  list->strings = 0;
352  list->allocated = 0;
353  list->count = 0;
354  list->maximum = INT_MAX;
355 }
356 
357 static void object_list_allocate(object_list* list, int allocate_count)
358 {
359  if (!list->strings && list->allocated == 0)
360  {
361  list->strings = calloc(allocate_count, sizeof(list->strings[0]));
362  list->allocated = list->strings ? allocate_count : -1;
363  list->count = 0;
364  }
365 }
366 
367 static char* object_string(ASN1_TYPE* object)
368 {
369  char* result = NULL;
370  unsigned char* utf8String = NULL;
371  int length = 0;
372  /* TODO: check that object.type is a string type. */
373  length = ASN1_STRING_to_UTF8(&utf8String, object->value.asn1_string);
374 
375  if (length < 0)
376  {
377  return 0;
378  }
379 
380  result = _strdup((char*)utf8String);
381  OPENSSL_free(utf8String);
382  return result;
383 }
384 
385 static void object_list_free(object_list* list)
386 {
387  free(list->strings);
388 }
389 
390 static int extract_othername_object_as_string(GENERAL_NAME* name, void* data, int index, int count)
391 {
392  object_list* list = data;
393 
394  if (name->type != GEN_OTHERNAME)
395  {
396  return 1;
397  }
398 
399  if (0 != OBJ_cmp(name->d.otherName->type_id, list->type_id))
400  {
401  return 1;
402  }
403 
404  object_list_allocate(list, count);
405 
406  if (list->allocated <= 0)
407  {
408  return 0;
409  }
410 
411  list->strings[list->count] = object_string(name->d.otherName->value);
412 
413  if (list->strings[list->count])
414  {
415  list->count++;
416  }
417 
418  if (list->count >= list->maximum)
419  {
420  return 0;
421  }
422 
423  return 1;
424 }
425 
426 char* x509_utils_get_email(const X509* x509)
427 {
428  char* result = 0;
429  string_list list;
430  string_list_initialize(&list);
431  list.maximum = 1;
432  map_subject_alt_name(x509, GEN_EMAIL, extract_string, &list);
433 
434  if (list.count == 0)
435  {
436  string_list_free(&list);
437  return 0;
438  }
439 
440  result = _strdup(list.strings[0]);
441  OPENSSL_free(list.strings[0]);
442  string_list_free(&list);
443  return result;
444 }
445 
446 char* x509_utils_get_upn(const X509* x509)
447 {
448  char* result = 0;
449  object_list list;
450  object_list_initialize(&list);
451  list.type_id = OBJ_nid2obj(NID_ms_upn);
452  list.maximum = 1;
453  map_subject_alt_name(x509, GEN_OTHERNAME, extract_othername_object_as_string, &list);
454 
455  if (list.count == 0)
456  {
457  object_list_free(&list);
458  return 0;
459  }
460 
461  result = list.strings[0];
462  object_list_free(&list);
463  return result;
464 }
465 
466 char* x509_utils_get_date(const X509* x509, BOOL startDate)
467 {
468  WINPR_ASSERT(x509);
469 
470  const ASN1_TIME* date = startDate ? X509_get0_notBefore(x509) : X509_get0_notAfter(x509);
471  if (!date)
472  return NULL;
473 
474  BIO* bmem = BIO_new(BIO_s_mem());
475  if (!bmem)
476  return NULL;
477 
478  char* str = NULL;
479  if (ASN1_TIME_print(bmem, date))
480  {
481  BUF_MEM* bptr = NULL;
482 
483  BIO_get_mem_ptr(bmem, &bptr);
484  str = strndup(bptr->data, bptr->length);
485  }
486  else
487  { // Log error
488  }
489  BIO_free_all(bmem);
490  return str;
491 }
492 
493 void x509_utils_dns_names_free(size_t count, size_t* lengths, char** dns_names)
494 {
495  free(lengths);
496 
497  if (dns_names)
498  {
499  for (size_t i = 0; i < count; i++)
500  {
501  if (dns_names[i])
502  {
503  OPENSSL_free(dns_names[i]);
504  }
505  }
506 
507  free(dns_names);
508  }
509 }
510 
511 char** x509_utils_get_dns_names(const X509* x509, size_t* count, size_t** lengths)
512 {
513  char** result = 0;
514  string_list list;
515  string_list_initialize(&list);
516  map_subject_alt_name(x509, GEN_DNS, extract_string, &list);
517  (*count) = list.count;
518 
519  if (list.count == 0)
520  {
521  string_list_free(&list);
522  return NULL;
523  }
524 
525  /* lengths are not useful, since we converted the
526  strings to utf-8, there cannot be nul-bytes in them. */
527  result = calloc(list.count, sizeof(*result));
528  (*lengths) = calloc(list.count, sizeof(**lengths));
529 
530  if (!result || !(*lengths))
531  {
532  string_list_free(&list);
533  free(result);
534  free(*lengths);
535  (*lengths) = 0;
536  (*count) = 0;
537  return NULL;
538  }
539 
540  for (int i = 0; i < list.count; i++)
541  {
542  result[i] = list.strings[i];
543  (*lengths)[i] = strlen(result[i]);
544  }
545 
546  string_list_free(&list);
547  return result;
548 }
549 
550 char* x509_utils_get_issuer(const X509* xcert)
551 {
552  char* issuer = NULL;
553  if (!xcert)
554  {
555  WLog_ERR(TAG, "Invalid certificate %p", xcert);
556  return NULL;
557  }
558  issuer = crypto_print_name(X509_get_issuer_name(xcert));
559  if (!issuer)
560  WLog_WARN(TAG, "certificate does not have an issuer!");
561  return issuer;
562 }
563 
564 BOOL x509_utils_check_eku(const X509* xcert, int nid)
565 {
566  BOOL ret = FALSE;
567  STACK_OF(ASN1_OBJECT)* oid_stack = NULL;
568  ASN1_OBJECT* oid = NULL;
569 
570  if (!xcert)
571  return FALSE;
572 
573  oid = OBJ_nid2obj(nid);
574  if (!oid)
575  return FALSE;
576 
577  oid_stack = X509_get_ext_d2i(xcert, NID_ext_key_usage, NULL, NULL);
578  if (!oid_stack)
579  return FALSE;
580 
581  if (sk_ASN1_OBJECT_find(oid_stack, oid) >= 0)
582  ret = TRUE;
583 
584  sk_ASN1_OBJECT_pop_free(oid_stack, ASN1_OBJECT_free);
585  return ret;
586 }
587 
588 void x509_utils_print_info(const X509* xcert)
589 {
590  char* fp = NULL;
591  char* issuer = NULL;
592  char* subject = NULL;
593  subject = x509_utils_get_subject(xcert);
594  issuer = x509_utils_get_issuer(xcert);
595  fp = (char*)x509_utils_get_hash(xcert, "sha256", NULL);
596 
597  if (!fp)
598  {
599  WLog_ERR(TAG, "error computing fingerprint");
600  goto out_free_issuer;
601  }
602 
603  WLog_INFO(TAG, "Certificate details:");
604  WLog_INFO(TAG, "\tSubject: %s", subject);
605  WLog_INFO(TAG, "\tIssuer: %s", issuer);
606  WLog_INFO(TAG, "\tThumbprint: %s", fp);
607  WLog_INFO(TAG,
608  "The above X.509 certificate could not be verified, possibly because you do not have "
609  "the CA certificate in your certificate store, or the certificate has expired. "
610  "Please look at the OpenSSL documentation on how to add a private CA to the store.");
611  free(fp);
612 out_free_issuer:
613  free(issuer);
614  free(subject);
615 }
616 
617 X509* x509_utils_from_pem(const char* data, size_t len, BOOL fromFile)
618 {
619  X509* x509 = NULL;
620  BIO* bio = NULL;
621  if (fromFile)
622  bio = BIO_new_file(data, "rb");
623  else
624  {
625  if (len > INT_MAX)
626  return NULL;
627 
628  bio = BIO_new_mem_buf(data, (int)len);
629  }
630 
631  if (!bio)
632  {
633  WLog_ERR(TAG, "BIO_new failed for certificate");
634  return NULL;
635  }
636 
637  x509 = PEM_read_bio_X509(bio, NULL, NULL, 0);
638  BIO_free_all(bio);
639  if (!x509)
640  WLog_ERR(TAG, "PEM_read_bio_X509 returned NULL [input length %" PRIuz "]", len);
641 
642  return x509;
643 }
644 
645 static WINPR_MD_TYPE hash_nid_to_winpr(int hash_nid)
646 {
647  switch (hash_nid)
648  {
649  case NID_md2:
650  return WINPR_MD_MD2;
651  case NID_md4:
652  return WINPR_MD_MD4;
653  case NID_md5:
654  return WINPR_MD_MD5;
655  case NID_sha1:
656  return WINPR_MD_SHA1;
657  case NID_sha224:
658  return WINPR_MD_SHA224;
659  case NID_sha256:
660  return WINPR_MD_SHA256;
661  case NID_sha384:
662  return WINPR_MD_SHA384;
663  case NID_sha512:
664  return WINPR_MD_SHA512;
665  case NID_ripemd160:
666  return WINPR_MD_RIPEMD160;
667 #if (OPENSSL_VERSION_NUMBER >= 0x1010101fL) && !defined(LIBRESSL_VERSION_NUMBER)
668  case NID_sha3_224:
669  return WINPR_MD_SHA3_224;
670  case NID_sha3_256:
671  return WINPR_MD_SHA3_256;
672  case NID_sha3_384:
673  return WINPR_MD_SHA3_384;
674  case NID_sha3_512:
675  return WINPR_MD_SHA3_512;
676  case NID_shake128:
677  return WINPR_MD_SHAKE128;
678  case NID_shake256:
679  return WINPR_MD_SHAKE256;
680 #endif
681  case NID_undef:
682  default:
683  return WINPR_MD_NONE;
684  }
685 }
686 
687 static WINPR_MD_TYPE get_rsa_pss_digest(const X509_ALGOR* alg)
688 {
689  WINPR_MD_TYPE ret = WINPR_MD_NONE;
690  WINPR_MD_TYPE message_digest = WINPR_MD_NONE;
691  WINPR_MD_TYPE mgf1_digest = WINPR_MD_NONE;
692  int param_type = 0;
693  const void* param_value = NULL;
694  const ASN1_STRING* sequence = NULL;
695  const unsigned char* inp = NULL;
696  RSA_PSS_PARAMS* params = NULL;
697  X509_ALGOR* mgf1_digest_alg = NULL;
698 
699  /* The RSA-PSS digest is encoded in a complex structure, defined in
700  https://www.rfc-editor.org/rfc/rfc4055.html. */
701  X509_ALGOR_get0(NULL, &param_type, &param_value, alg);
702 
703  /* param_type and param_value the parameter in ASN1_TYPE form, but split into two parameters. A
704  SEQUENCE is has type V_ASN1_SEQUENCE, and the value is an ASN1_STRING with the encoded
705  structure. */
706  if (param_type != V_ASN1_SEQUENCE)
707  goto end;
708  sequence = param_value;
709 
710  /* Decode the structure. */
711  inp = ASN1_STRING_get0_data(sequence);
712  params = d2i_RSA_PSS_PARAMS(NULL, &inp, ASN1_STRING_length(sequence));
713  if (params == NULL)
714  goto end;
715 
716  /* RSA-PSS uses two hash algorithms, a message digest and also an MGF function which is, itself,
717  parameterized by a hash function. Both fields default to SHA-1, so we must also check for the
718  value being NULL. */
719  message_digest = WINPR_MD_SHA1;
720  if (params->hashAlgorithm != NULL)
721  {
722  const ASN1_OBJECT* obj = NULL;
723  X509_ALGOR_get0(&obj, NULL, NULL, params->hashAlgorithm);
724  message_digest = hash_nid_to_winpr(OBJ_obj2nid(obj));
725  if (message_digest == WINPR_MD_NONE)
726  goto end;
727  }
728 
729  mgf1_digest = WINPR_MD_SHA1;
730  if (params->maskGenAlgorithm != NULL)
731  {
732  const ASN1_OBJECT* obj = NULL;
733  int mgf_param_type = 0;
734  const void* mgf_param_value = NULL;
735  const ASN1_STRING* mgf_param_sequence = NULL;
736  /* First, check this is MGF-1, the only one ever defined. */
737  X509_ALGOR_get0(&obj, &mgf_param_type, &mgf_param_value, params->maskGenAlgorithm);
738  if (OBJ_obj2nid(obj) != NID_mgf1)
739  goto end;
740 
741  /* MGF-1 is, itself, parameterized by a hash function, encoded as an AlgorithmIdentifier. */
742  if (mgf_param_type != V_ASN1_SEQUENCE)
743  goto end;
744  mgf_param_sequence = mgf_param_value;
745  inp = ASN1_STRING_get0_data(mgf_param_sequence);
746  mgf1_digest_alg = d2i_X509_ALGOR(NULL, &inp, ASN1_STRING_length(mgf_param_sequence));
747  if (mgf1_digest_alg == NULL)
748  goto end;
749 
750  /* Finally, extract the digest. */
751  X509_ALGOR_get0(&obj, NULL, NULL, mgf1_digest_alg);
752  mgf1_digest = hash_nid_to_winpr(OBJ_obj2nid(obj));
753  if (mgf1_digest == WINPR_MD_NONE)
754  goto end;
755  }
756 
757  /* If the two digests do not match, it is ambiguous which to return. tls-server-end-point leaves
758  it undefined, so return none.
759  https://www.rfc-editor.org/rfc/rfc5929.html#section-4.1 */
760  if (message_digest != mgf1_digest)
761  goto end;
762  ret = message_digest;
763 
764 end:
765  RSA_PSS_PARAMS_free(params);
766  X509_ALGOR_free(mgf1_digest_alg);
767  return ret;
768 }
769 
770 WINPR_MD_TYPE x509_utils_get_signature_alg(const X509* xcert)
771 {
772  WINPR_ASSERT(xcert);
773 
774  const int nid = X509_get_signature_nid(xcert);
775 
776  if (nid == NID_rsassaPss)
777  {
778  const X509_ALGOR* alg = NULL;
779  X509_get0_signature(NULL, &alg, xcert);
780  return get_rsa_pss_digest(alg);
781  }
782 
783  int hash_nid = 0;
784  if (OBJ_find_sigid_algs(nid, &hash_nid, NULL) != 1)
785  return WINPR_MD_NONE;
786 
787  return hash_nid_to_winpr(hash_nid);
788 }
789 
790 char* x509_utils_get_common_name(const X509* xcert, size_t* plength)
791 {
792  X509_NAME* subject_name = X509_get_subject_name(xcert);
793  if (subject_name == NULL)
794  return NULL;
795 
796  const int index = X509_NAME_get_index_by_NID(subject_name, NID_commonName, -1);
797  if (index < 0)
798  return NULL;
799 
800  const X509_NAME_ENTRY* entry = X509_NAME_get_entry(subject_name, index);
801  if (entry == NULL)
802  return NULL;
803 
804  const ASN1_STRING* entry_data = X509_NAME_ENTRY_get_data(entry);
805  if (entry_data == NULL)
806  return NULL;
807 
808  BYTE* common_name_raw = NULL;
809  const int length = ASN1_STRING_to_UTF8(&common_name_raw, entry_data);
810  if (length < 0)
811  return NULL;
812 
813  if (plength)
814  *plength = (size_t)length;
815 
816  char* common_name = _strdup((char*)common_name_raw);
817  OPENSSL_free(common_name_raw);
818  return common_name;
819 }
820 
821 static int verify_cb(int ok, X509_STORE_CTX* csc)
822 {
823  if (ok != 1)
824  {
825  WINPR_ASSERT(csc);
826  int err = X509_STORE_CTX_get_error(csc);
827  int derr = X509_STORE_CTX_get_error_depth(csc);
828  X509* where = X509_STORE_CTX_get_current_cert(csc);
829  const char* what = X509_verify_cert_error_string(err);
830  char* name = x509_utils_get_subject(where);
831 
832  WLog_WARN(TAG, "Certificate verification failure '%s (%d)' at stack position %d", what, err,
833  derr);
834  WLog_WARN(TAG, "%s", name);
835 
836  free(name);
837  }
838  return ok;
839 }
840 
841 BOOL x509_utils_verify(X509* xcert, STACK_OF(X509) * chain, const char* certificate_store_path)
842 {
843  const int purposes[3] = { X509_PURPOSE_SSL_SERVER, X509_PURPOSE_SSL_CLIENT, X509_PURPOSE_ANY };
844  X509_STORE_CTX* csc = NULL;
845  BOOL status = FALSE;
846  X509_LOOKUP* lookup = NULL;
847 
848  if (!xcert)
849  return FALSE;
850 
851  X509_STORE* cert_ctx = X509_STORE_new();
852 
853  if (cert_ctx == NULL)
854  goto end;
855 
856 #if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
857  OpenSSL_add_all_algorithms();
858 #else
859  OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS | OPENSSL_INIT_ADD_ALL_DIGESTS |
860  OPENSSL_INIT_LOAD_CONFIG,
861  NULL);
862 #endif
863 
864  if (X509_STORE_set_default_paths(cert_ctx) != 1)
865  goto end;
866 
867  lookup = X509_STORE_add_lookup(cert_ctx, X509_LOOKUP_hash_dir());
868 
869  if (lookup == NULL)
870  goto end;
871 
872  X509_LOOKUP_add_dir(lookup, NULL, X509_FILETYPE_DEFAULT);
873 
874  if (certificate_store_path != NULL)
875  {
876  X509_LOOKUP_add_dir(lookup, certificate_store_path, X509_FILETYPE_PEM);
877  }
878 
879  X509_STORE_set_flags(cert_ctx, 0);
880 
881  for (size_t i = 0; i < ARRAYSIZE(purposes); i++)
882  {
883  int err = -1;
884  int rc = -1;
885  int purpose = purposes[i];
886  csc = X509_STORE_CTX_new();
887 
888  if (csc == NULL)
889  goto skip;
890  if (!X509_STORE_CTX_init(csc, cert_ctx, xcert, chain))
891  goto skip;
892 
893  X509_STORE_CTX_set_purpose(csc, purpose);
894  X509_STORE_CTX_set_verify_cb(csc, verify_cb);
895 
896  rc = X509_verify_cert(csc);
897  err = X509_STORE_CTX_get_error(csc);
898  skip:
899  X509_STORE_CTX_free(csc);
900  if (rc == 1)
901  {
902  status = TRUE;
903  break;
904  }
905  else if (err != X509_V_ERR_INVALID_PURPOSE)
906  break;
907  }
908 
909  X509_STORE_free(cert_ctx);
910 end:
911  return status;
912 }