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

fix potential race condition in DefaultResolver when discard_cache() #698

Open
wants to merge 1 commit into
base: release/0.7
Choose a base branch
from

Conversation

lihuiba
Copy link
Collaborator

@lihuiba lihuiba commented Jan 16, 2025

delete_all() and recycle() is not atomic; and there may be read-write race as well.

delete_all() and recycle() is not atomic; and there may be read-write race as well.
@lihuiba lihuiba requested a review from beef9999 January 16, 2025 07:21
@@ -304,6 +300,7 @@ class DefaultResolver : public Resolver {

void discard_cache(const char *host, IPAddr ip) override {
auto ipaddr = dnscache_.borrow(host);
scoped_rwlock _(*ipaddr, WLOCK);
if (ip.undefined() || ipaddr->empty()) {
ipaddr->delete_all();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

recycle will destruct ipaddrlist so do not need to delete items right here, and also do not need a write lock in such condition.

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.

2 participants