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

host-local: still allocate empty file to avoid IP leak #499

Closed

Conversation

chendotjs
Copy link

Fix #498

It may happen when host-local creates an empty file successfully, but fails to write
string into it and further fails to remove it. Many empty file will be created if
runtime retries to create a new container until all free IPs are leaked in the range set.
The root cause is that host-local cannot handle this kind of error when performing a
rollback. We should check if IP file is empty, this prevents exhausting all free IPs and
helps to recover leaked IP files.

Fix containernetworking#498

Signed-off-by: chenyaqi01 <[email protected]>
@squeed
Copy link
Member

squeed commented Jun 17, 2020

While you're at this, can you fix the root bug, and create the reserved file atomically? It would involve writing to a temporary file, then renaming that file to the final filename.

@squeed
Copy link
Member

squeed commented Jun 17, 2020

It looks like we'll have to implement our own rename that calls renameat2(... RENAME_NOREPLACE)

@github-actions
Copy link

github-actions bot commented May 9, 2022

This PR has been untouched for too long without an update. It will be closed in 7 days.

@github-actions github-actions bot added the Stale label May 9, 2022
@github-actions github-actions bot closed this May 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

host-local IP may leak
2 participants