Skip to content

Commit a7e56f1

Browse files
authored
fix: anytls client close (#1871)
Co-authored-by: anytls <anytls>
1 parent 05e8f13 commit a7e56f1

File tree

1 file changed

+28
-3
lines changed

1 file changed

+28
-3
lines changed

transport/anytls/session/client.go

+28-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ type Client struct {
2121

2222
dialOut util.DialOutFunc
2323

24-
sessionCounter atomic.Uint64
24+
sessionCounter atomic.Uint64
25+
2526
idleSession *skiplist.SkipList[uint64, *Session]
2627
idleSessionLock sync.Mutex
2728

29+
sessions map[uint64]*Session
30+
sessionsLock sync.Mutex
31+
2832
padding *atomic.TypedValue[*padding.PaddingFactory]
2933

3034
idleSessionTimeout time.Duration
@@ -33,6 +37,7 @@ type Client struct {
3337

3438
func NewClient(ctx context.Context, dialOut util.DialOutFunc, _padding *atomic.TypedValue[*padding.PaddingFactory], idleSessionCheckInterval, idleSessionTimeout time.Duration, minIdleSession int) *Client {
3539
c := &Client{
40+
sessions: make(map[uint64]*Session),
3641
dialOut: dialOut,
3742
padding: _padding,
3843
idleSessionTimeout: idleSessionTimeout,
@@ -130,15 +135,35 @@ func (c *Client) createSession(ctx context.Context) (*Session, error) {
130135
c.idleSessionLock.Lock()
131136
c.idleSession.Remove(math.MaxUint64 - session.seq)
132137
c.idleSessionLock.Unlock()
138+
139+
c.sessionsLock.Lock()
140+
delete(c.sessions, session.seq)
141+
c.sessionsLock.Unlock()
133142
}
143+
144+
c.sessionsLock.Lock()
145+
c.sessions[session.seq] = session
146+
c.sessionsLock.Unlock()
147+
134148
session.Run()
135149
return session, nil
136150
}
137151

138152
func (c *Client) Close() error {
139153
c.dieCancel()
140-
c.minIdleSession = 0
141-
go c.idleCleanupExpTime(time.Time{})
154+
155+
c.sessionsLock.Lock()
156+
sessionToClose := make([]*Session, 0, len(c.sessions))
157+
for seq, session := range c.sessions {
158+
sessionToClose = append(sessionToClose, session)
159+
delete(c.sessions, seq)
160+
}
161+
c.sessionsLock.Unlock()
162+
163+
for _, session := range sessionToClose {
164+
session.Close()
165+
}
166+
142167
return nil
143168
}
144169

0 commit comments

Comments
 (0)