Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
crypto: more compact solution to detect endless loop
  • Loading branch information
nils91 committed Apr 23, 2021
commit 0734ad09df8ad9390fee3839a7cffc235ac4e768
13 changes: 5 additions & 8 deletions src/crypto/crypto_common.cc
Original file line number Diff line number Diff line change
Expand Up @@ -480,17 +480,14 @@ MaybeLocal<Object> GetLastIssuedCert(
return MaybeLocal<Object>();
issuer_chain = ca_info;

// Take the value of cert->get() before and after the call to cert->reset()
// in order to compare them and provide a way to exit this loop
// in case it gets stuck
X509* value_before_reset = cert->get();
// Take the value of cert->get(), compare it with the value of ca
// and provide a way to exit this loop
// in case it gets stuck.
if (cert->get() == ca)
break;

// Delete previous cert and continue aggregating issuers.
cert->reset(ca);

X509* value_after_reset = cert->get();
if (value_before_reset == value_after_reset)
break;
}
return MaybeLocal<Object>(issuer_chain);
}
Expand Down