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 possible ports leak after abnormal restarts. #1794

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
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
38 changes: 38 additions & 0 deletions sandbox_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,36 @@ func (c *controller) sandboxCleanup(activeSandboxes map[string]interface{}) {

// It's normal for no sandboxes to be found. Just bail out.
if err == datastore.ErrKeyNotFound {

return
}
// Get all the endpoints
endpointsFromNetworks := []*endpoint{}
nl, err := c.getNetworksForScope(datastore.LocalScope)
if err != nil {
logrus.Warnf("Could not get list of networks during sandbox cleanup: %v", err)
return
}

for _, n := range nl {
epl, err := n.getEndpointsFromStore()
if err != nil {
logrus.Warnf("Could not get list of endpoints in network %s during sandbox cleanup: %v", n.name, err)
continue
}
for _, ep := range epl {
ep, err = n.getEndpointFromStore(ep.id)
if err != nil {
logrus.Warnf("Could not get endpoint in network %s during sandbox cleanup: %v", n.name, err)
continue
}
endpointsFromNetworks = append(endpointsFromNetworks, ep)
}
}

// To store the endpoints already stored in sanbox
epMap := make(map[string]int8)

for _, kvo := range kvol {
sbs := kvo.(*sbState)

Expand Down Expand Up @@ -275,6 +302,17 @@ func (c *controller) sandboxCleanup(activeSandboxes map[string]interface{}) {
continue
}
heap.Push(&sb.endpoints, ep)
epMap[ep.id] = 1
}

// If endpoint has sb id, but not in sb eps, push it
for _, ep := range endpointsFromNetworks {
if ep.sandboxID != sb.id {
continue
}
if _, ok := epMap[ep.id]; !ok {
heap.Push(&sb.endpoints, ep)
}
}

if _, ok := activeSandboxes[sb.ID()]; !ok {
Expand Down