Skip to content

Commit 8b25b78

Browse files
committed
Fix leak due to cid queue never getting cleaned up
This removes entries from the queue portion of CidQueue that were removed from the map portion.
1 parent 8d6ac57 commit 8b25b78

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

bitswap/client/internal/blockpresencemanager/blockpresencemanager.go

+4
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ func (bpm *BlockPresenceManager) allDontHave(peers []peer.ID, c cid.Cid) bool {
111111

112112
// RemoveKeys cleans up the given keys from the block presence map
113113
func (bpm *BlockPresenceManager) RemoveKeys(ks []cid.Cid) {
114+
if len(ks) == 0 {
115+
return
116+
}
117+
114118
bpm.Lock()
115119
defer bpm.Unlock()
116120

bitswap/client/internal/session/cidqueue.go

+12-8
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,7 @@ func (cq *cidQueue) Pop() cid.Cid {
3131

3232
func (cq *cidQueue) Cids() []cid.Cid {
3333
// Lazily delete from the list any cids that were removed from the set
34-
if cq.elems.Len() > cq.eset.Len() {
35-
for i := 0; i < cq.elems.Len(); i++ {
36-
c := cq.elems.PopFront()
37-
if cq.eset.Has(c) {
38-
cq.elems.PushBack(c)
39-
}
40-
}
41-
}
34+
cq.GC()
4235

4336
if cq.elems.Len() == 0 {
4437
return nil
@@ -69,3 +62,14 @@ func (cq *cidQueue) Has(c cid.Cid) bool {
6962
func (cq *cidQueue) Len() int {
7063
return cq.eset.Len()
7164
}
65+
66+
func (cq *cidQueue) GC() {
67+
if cq.elems.Len() > cq.eset.Len() {
68+
for i := 0; i < cq.elems.Len(); i++ {
69+
c := cq.elems.PopFront()
70+
if cq.eset.Has(c) {
71+
cq.elems.PushBack(c)
72+
}
73+
}
74+
}
75+
}

bitswap/client/internal/session/sessionwants.go

+3
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ func (sw *sessionWants) WantsSent(ks []cid.Cid) {
8282
sw.liveWants[c] = now
8383
}
8484
}
85+
sw.toFetch.GC()
8586
}
8687

8788
// BlocksReceived removes received block CIDs from the live wants list and
@@ -111,6 +112,7 @@ func (sw *sessionWants) BlocksReceived(ks []cid.Cid) ([]cid.Cid, time.Duration)
111112
sw.toFetch.Remove(c)
112113
}
113114
}
115+
sw.toFetch.GC()
114116

115117
// If the live wants ordering array is a long way out of sync with the
116118
// live wants map, clean up the ordering array
@@ -155,6 +157,7 @@ func (sw *sessionWants) CancelPending(keys []cid.Cid) {
155157
sw.toFetch.Remove(k)
156158
delete(sw.liveWants, k)
157159
}
160+
sw.toFetch.GC()
158161
}
159162

160163
// LiveWants returns a list of live wants

0 commit comments

Comments
 (0)