mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
fix #518
This commit is contained in:
parent
bc2e546de9
commit
57684fc1e5
@ -103,6 +103,7 @@ type Session struct {
|
|||||||
|
|
||||||
idletimer IdleTimer
|
idletimer IdleTimer
|
||||||
fakelag Fakelag
|
fakelag Fakelag
|
||||||
|
destroyed uint32
|
||||||
|
|
||||||
quitMessage string
|
quitMessage string
|
||||||
|
|
||||||
@ -146,6 +147,20 @@ func (session *Session) MaxlenRest() int {
|
|||||||
return int(atomic.LoadUint32(&session.maxlenRest))
|
return int(atomic.LoadUint32(&session.maxlenRest))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// returns whether the session was actively destroyed (for example, by ping
|
||||||
|
// timeout or NS GHOST).
|
||||||
|
// avoids a race condition between asynchronous idle-timing-out of sessions,
|
||||||
|
// and a condition that allows implicit BRB on connection errors (since
|
||||||
|
// destroy()'s socket.Close() appears to socket.Read() as a connection error)
|
||||||
|
func (session *Session) Destroyed() bool {
|
||||||
|
return atomic.LoadUint32(&session.destroyed) == 1
|
||||||
|
}
|
||||||
|
|
||||||
|
// sets the timed-out flag
|
||||||
|
func (session *Session) SetDestroyed() {
|
||||||
|
atomic.StoreUint32(&session.destroyed, 1)
|
||||||
|
}
|
||||||
|
|
||||||
// WhoWas is the subset of client details needed to answer a WHOWAS query
|
// WhoWas is the subset of client details needed to answer a WHOWAS query
|
||||||
type WhoWas struct {
|
type WhoWas struct {
|
||||||
nick string
|
nick string
|
||||||
@ -373,7 +388,7 @@ func (client *Client) run(session *Session) {
|
|||||||
client.nickTimer.Initialize(client)
|
client.nickTimer.Initialize(client)
|
||||||
}
|
}
|
||||||
|
|
||||||
firstLine := true
|
firstLine := !isReattach
|
||||||
|
|
||||||
for {
|
for {
|
||||||
maxlenRest := session.MaxlenRest()
|
maxlenRest := session.MaxlenRest()
|
||||||
@ -386,8 +401,10 @@ func (client *Client) run(session *Session) {
|
|||||||
}
|
}
|
||||||
client.Quit(quitMessage, session)
|
client.Quit(quitMessage, session)
|
||||||
// since the client did not actually send us a QUIT,
|
// since the client did not actually send us a QUIT,
|
||||||
// give them a chance to resume or reattach if applicable:
|
// give them a chance to resume if applicable:
|
||||||
|
if !session.Destroyed() {
|
||||||
client.brbTimer.Enable()
|
client.brbTimer.Enable()
|
||||||
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -396,7 +413,7 @@ func (client *Client) run(session *Session) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// special-cased handling of PROXY protocol, see `handleProxyCommand` for details:
|
// special-cased handling of PROXY protocol, see `handleProxyCommand` for details:
|
||||||
if !isReattach && firstLine {
|
if firstLine {
|
||||||
firstLine = false
|
firstLine = false
|
||||||
if strings.HasPrefix(line, "PROXY") {
|
if strings.HasPrefix(line, "PROXY") {
|
||||||
err = handleProxyCommand(client.server, client, session, line)
|
err = handleProxyCommand(client.server, client, session, line)
|
||||||
@ -946,6 +963,7 @@ func (client *Client) destroy(session *Session) {
|
|||||||
client.stateMutex.Lock()
|
client.stateMutex.Lock()
|
||||||
details := client.detailsNoMutex()
|
details := client.detailsNoMutex()
|
||||||
brbState := client.brbTimer.state
|
brbState := client.brbTimer.state
|
||||||
|
brbAt := client.brbTimer.brbAt
|
||||||
wasReattach := session != nil && session.client != client
|
wasReattach := session != nil && session.client != client
|
||||||
sessionRemoved := false
|
sessionRemoved := false
|
||||||
var remainingSessions int
|
var remainingSessions int
|
||||||
@ -972,6 +990,7 @@ func (client *Client) destroy(session *Session) {
|
|||||||
// send quit/error message to client if they haven't been sent already
|
// send quit/error message to client if they haven't been sent already
|
||||||
client.Quit("", session)
|
client.Quit("", session)
|
||||||
quitMessage = session.quitMessage
|
quitMessage = session.quitMessage
|
||||||
|
session.SetDestroyed()
|
||||||
session.socket.Close()
|
session.socket.Close()
|
||||||
|
|
||||||
// remove from connection limits
|
// remove from connection limits
|
||||||
@ -992,6 +1011,7 @@ func (client *Client) destroy(session *Session) {
|
|||||||
|
|
||||||
// do not destroy the client if it has either remaining sessions, or is BRB'ed
|
// do not destroy the client if it has either remaining sessions, or is BRB'ed
|
||||||
if remainingSessions != 0 || brbState == BrbEnabled || brbState == BrbSticky {
|
if remainingSessions != 0 || brbState == BrbEnabled || brbState == BrbSticky {
|
||||||
|
client.server.logger.Debug("quit", fmt.Sprintf("preserving client %s with %d remaining sessions\n", details.nick, remainingSessions))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1056,10 +1076,19 @@ func (client *Client) destroy(session *Session) {
|
|||||||
client.server.stats.ChangeOperators(-1)
|
client.server.stats.ChangeOperators(-1)
|
||||||
}
|
}
|
||||||
|
|
||||||
for friend := range friends {
|
// this happens under failure to return from BRB
|
||||||
|
if quitMessage == "" {
|
||||||
|
if !brbAt.IsZero() {
|
||||||
|
awayMessage := client.AwayMessage()
|
||||||
|
if awayMessage != "" {
|
||||||
|
quitMessage = fmt.Sprintf("%s [%s ago]", awayMessage, time.Since(brbAt).Truncate(time.Second).String())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
if quitMessage == "" {
|
if quitMessage == "" {
|
||||||
quitMessage = "Exited"
|
quitMessage = "Exited"
|
||||||
}
|
}
|
||||||
|
for friend := range friends {
|
||||||
friend.sendFromClientInternal(false, splitQuitMessage.Time, splitQuitMessage.Msgid, details.nickMask, details.accountName, nil, "QUIT", quitMessage)
|
friend.sendFromClientInternal(false, splitQuitMessage.Time, splitQuitMessage.Msgid, details.nickMask, details.accountName, nil, "QUIT", quitMessage)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -334,6 +334,7 @@ type BrbTimer struct {
|
|||||||
client *Client
|
client *Client
|
||||||
|
|
||||||
state BrbState
|
state BrbState
|
||||||
|
brbAt time.Time
|
||||||
duration time.Duration
|
duration time.Duration
|
||||||
timer *time.Timer
|
timer *time.Timer
|
||||||
}
|
}
|
||||||
@ -344,9 +345,7 @@ func (bt *BrbTimer) Initialize(client *Client) {
|
|||||||
|
|
||||||
// attempts to enable BRB for a client, returns whether it succeeded
|
// attempts to enable BRB for a client, returns whether it succeeded
|
||||||
func (bt *BrbTimer) Enable() (success bool, duration time.Duration) {
|
func (bt *BrbTimer) Enable() (success bool, duration time.Duration) {
|
||||||
// BRB only makes sense if a new connection can attach to the session;
|
if !bt.client.Registered() || bt.client.ResumeID() == "" {
|
||||||
// this can happen either via RESUME or via bouncer reattach
|
|
||||||
if bt.client.Account() == "" && bt.client.ResumeID() == "" {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -361,6 +360,11 @@ func (bt *BrbTimer) Enable() (success bool, duration time.Duration) {
|
|||||||
bt.state = BrbEnabled
|
bt.state = BrbEnabled
|
||||||
bt.duration = duration
|
bt.duration = duration
|
||||||
bt.resetTimeout()
|
bt.resetTimeout()
|
||||||
|
// only track the earliest BRB, if multiple sessions are BRB'ing at once
|
||||||
|
// TODO(#524) this is inaccurate in case of an auto-BRB
|
||||||
|
if bt.brbAt.IsZero() {
|
||||||
|
bt.brbAt = time.Now().UTC()
|
||||||
|
}
|
||||||
success = true
|
success = true
|
||||||
case BrbSticky:
|
case BrbSticky:
|
||||||
success = true
|
success = true
|
||||||
@ -373,14 +377,17 @@ func (bt *BrbTimer) Enable() (success bool, duration time.Duration) {
|
|||||||
|
|
||||||
// turns off BRB for a client and stops the timer; used on resume and during
|
// turns off BRB for a client and stops the timer; used on resume and during
|
||||||
// client teardown
|
// client teardown
|
||||||
func (bt *BrbTimer) Disable() {
|
func (bt *BrbTimer) Disable() (brbAt time.Time) {
|
||||||
bt.client.stateMutex.Lock()
|
bt.client.stateMutex.Lock()
|
||||||
defer bt.client.stateMutex.Unlock()
|
defer bt.client.stateMutex.Unlock()
|
||||||
|
|
||||||
if bt.state == BrbEnabled {
|
if bt.state == BrbEnabled {
|
||||||
bt.state = BrbDisabled
|
bt.state = BrbDisabled
|
||||||
|
brbAt = bt.brbAt
|
||||||
|
bt.brbAt = time.Time{}
|
||||||
}
|
}
|
||||||
bt.resetTimeout()
|
bt.resetTimeout()
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (bt *BrbTimer) resetTimeout() {
|
func (bt *BrbTimer) resetTimeout() {
|
||||||
|
Loading…
Reference in New Issue
Block a user