Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retry waking up ATECC on unexpected response #27

Merged
merged 1 commit into from
Nov 18, 2020
Merged

Conversation

fhunleth
Copy link
Contributor

The original code had intentions of retrying the wake up processor, but
it never used it. I.e., the default number of retries was 1. This
changes the default to 4 and adds a 500 ms wait in between tries.

The logic for this is that wakeup errors can happen for many reasons
especially since it's possible for other programs to access to ATECC
simultaneously. This is definitely a problem with OpenSSL engines since
they're independent of this library. The strategy for this library is to
minimize calls to the ATECC via caching of responses to read-only data,
but it still happens and retries are needed.

4 retries separated by 500 ms was picked since 1. it's still well under
the 5 second default Erlang timer on calls, so function calls shouldn't
time out, and 2. 500 ms is longer than most ATECC ops, so there's a good
change that whatever conflicted is done.

The original code had intentions of retrying the wake up processor, but
it never used it. I.e., the default number of retries was 1. This
changes the default to 4 and adds a 500 ms wait in between tries.

The logic for this is that wakeup errors can happen for many reasons
especially since it's possible for other programs to access to ATECC
simultaneously. This is definitely a problem with OpenSSL engines since
they're independent of this library. The strategy for this library is to
minimize calls to the ATECC via caching of responses to read-only data,
but it still happens and retries are needed.

4 retries separated by 500 ms was picked since 1. it's still well under
the 5 second default Erlang timer on calls, so function calls shouldn't
time out, and 2. 500 ms is longer than most ATECC ops, so there's a good
change that whatever conflicted is done.
@fhunleth fhunleth merged commit b6422f3 into main Nov 18, 2020
@fhunleth fhunleth deleted the retry-wakeup branch November 18, 2020 00:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants