2017-10-15 18:24:28 +02:00
|
|
|
// Copyright (c) 2017 Shivaram Lingamneni <slingamn@cs.stanford.edu>
|
|
|
|
// released under the MIT license
|
|
|
|
|
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
"time"
|
2018-01-21 02:23:33 +01:00
|
|
|
|
|
|
|
"github.com/oragono/oragono/irc/caps"
|
2017-10-15 18:24:28 +02:00
|
|
|
)
|
|
|
|
|
2017-10-16 04:37:36 +02:00
|
|
|
const (
|
|
|
|
// RegisterTimeout is how long clients have to register before we disconnect them
|
|
|
|
RegisterTimeout = time.Minute
|
|
|
|
// IdleTimeout is how long without traffic before a registered client is considered idle.
|
|
|
|
IdleTimeout = time.Minute + time.Second*30
|
2018-01-21 02:23:33 +01:00
|
|
|
// IdleTimeoutWithResumeCap is how long without traffic before a registered client is considered idle, when they have the resume capability.
|
|
|
|
IdleTimeoutWithResumeCap = time.Minute*2 + time.Second*30
|
2017-10-16 04:37:36 +02:00
|
|
|
// QuitTimeout is how long without traffic before an idle client is disconnected
|
|
|
|
QuitTimeout = time.Minute
|
|
|
|
)
|
|
|
|
|
2017-10-15 18:24:28 +02:00
|
|
|
// client idleness state machine
|
|
|
|
|
|
|
|
type TimerState uint
|
|
|
|
|
|
|
|
const (
|
|
|
|
TimerUnregistered TimerState = iota // client is unregistered
|
|
|
|
TimerActive // client is actively sending commands
|
|
|
|
TimerIdle // client is idle, we sent PING and are waiting for PONG
|
2017-12-07 05:15:35 +01:00
|
|
|
TimerDead // client was terminated
|
2017-10-15 18:24:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type IdleTimer struct {
|
2017-11-22 10:41:11 +01:00
|
|
|
sync.Mutex // tier 1
|
2017-10-15 18:24:28 +02:00
|
|
|
|
|
|
|
// immutable after construction
|
2018-01-30 05:26:29 +01:00
|
|
|
registerTimeout time.Duration
|
|
|
|
quitTimeout time.Duration
|
|
|
|
client *Client
|
2017-10-15 18:24:28 +02:00
|
|
|
|
|
|
|
// mutable
|
2018-01-30 05:26:29 +01:00
|
|
|
idleTimeout time.Duration
|
|
|
|
state TimerState
|
|
|
|
timer *time.Timer
|
2017-10-15 18:24:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewIdleTimer sets up a new IdleTimer using constant timeouts.
|
|
|
|
func NewIdleTimer(client *Client) *IdleTimer {
|
|
|
|
it := IdleTimer{
|
2018-01-30 05:26:29 +01:00
|
|
|
registerTimeout: RegisterTimeout,
|
|
|
|
idleTimeout: IdleTimeout,
|
|
|
|
quitTimeout: QuitTimeout,
|
|
|
|
client: client,
|
2017-10-15 18:24:28 +02:00
|
|
|
}
|
|
|
|
return &it
|
|
|
|
}
|
|
|
|
|
2018-01-30 05:26:29 +01:00
|
|
|
// updateIdleDuration updates the idle duration, given the client's caps.
|
|
|
|
func (it *IdleTimer) updateIdleDuration() {
|
|
|
|
newIdleTime := IdleTimeout
|
|
|
|
|
|
|
|
// if they have the resume cap, wait longer before pinging them out
|
|
|
|
// to give them a chance to resume their connection
|
|
|
|
if it.client.capabilities.Has(caps.Resume) {
|
|
|
|
newIdleTime = IdleTimeoutWithResumeCap
|
|
|
|
}
|
|
|
|
|
|
|
|
it.Lock()
|
|
|
|
defer it.Unlock()
|
|
|
|
it.idleTimeout = newIdleTime
|
|
|
|
}
|
|
|
|
|
2017-10-15 18:24:28 +02:00
|
|
|
// Start starts counting idle time; if there is no activity from the client,
|
|
|
|
// it will eventually be stopped.
|
|
|
|
func (it *IdleTimer) Start() {
|
|
|
|
it.Lock()
|
2017-12-07 05:15:35 +01:00
|
|
|
defer it.Unlock()
|
|
|
|
it.state = TimerUnregistered
|
|
|
|
it.resetTimeout()
|
2017-10-15 18:24:28 +02:00
|
|
|
}
|
|
|
|
|
2017-12-07 05:15:35 +01:00
|
|
|
func (it *IdleTimer) Touch() {
|
|
|
|
// ignore touches from unregistered clients
|
|
|
|
if !it.client.Registered() {
|
|
|
|
return
|
|
|
|
}
|
2017-10-15 18:24:28 +02:00
|
|
|
|
2018-01-30 05:26:29 +01:00
|
|
|
it.updateIdleDuration()
|
|
|
|
|
2017-12-07 05:15:35 +01:00
|
|
|
it.Lock()
|
|
|
|
defer it.Unlock()
|
|
|
|
// a touch transitions TimerUnregistered or TimerIdle into TimerActive
|
|
|
|
if it.state != TimerDead {
|
|
|
|
it.state = TimerActive
|
|
|
|
it.resetTimeout()
|
2017-10-15 18:24:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-07 05:15:35 +01:00
|
|
|
func (it *IdleTimer) processTimeout() {
|
2018-01-30 05:26:29 +01:00
|
|
|
it.updateIdleDuration()
|
|
|
|
|
2017-12-07 05:15:35 +01:00
|
|
|
var previousState TimerState
|
|
|
|
func() {
|
|
|
|
it.Lock()
|
|
|
|
defer it.Unlock()
|
|
|
|
previousState = it.state
|
|
|
|
// TimerActive transitions to TimerIdle, all others to TimerDead
|
|
|
|
if it.state == TimerActive {
|
|
|
|
// send them a ping, give them time to respond
|
|
|
|
it.state = TimerIdle
|
|
|
|
it.resetTimeout()
|
|
|
|
} else {
|
|
|
|
it.state = TimerDead
|
|
|
|
}
|
|
|
|
}()
|
2017-10-15 18:24:28 +02:00
|
|
|
|
2017-12-07 05:15:35 +01:00
|
|
|
if previousState == TimerActive {
|
|
|
|
it.client.Ping()
|
|
|
|
} else {
|
|
|
|
it.client.Quit(it.quitMessage(previousState))
|
2018-01-21 02:59:52 +01:00
|
|
|
it.client.destroy(false)
|
2017-10-15 18:24:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop stops counting idle time.
|
|
|
|
func (it *IdleTimer) Stop() {
|
2018-02-28 06:14:44 +01:00
|
|
|
if it == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-10-15 18:24:28 +02:00
|
|
|
it.Lock()
|
|
|
|
defer it.Unlock()
|
2017-12-07 05:15:35 +01:00
|
|
|
it.state = TimerDead
|
|
|
|
it.resetTimeout()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (it *IdleTimer) resetTimeout() {
|
|
|
|
if it.timer != nil {
|
|
|
|
it.timer.Stop()
|
|
|
|
}
|
|
|
|
var nextTimeout time.Duration
|
|
|
|
switch it.state {
|
|
|
|
case TimerUnregistered:
|
|
|
|
nextTimeout = it.registerTimeout
|
|
|
|
case TimerActive:
|
2018-01-30 05:26:29 +01:00
|
|
|
nextTimeout = it.idleTimeout
|
2017-12-07 05:15:35 +01:00
|
|
|
case TimerIdle:
|
|
|
|
nextTimeout = it.quitTimeout
|
|
|
|
case TimerDead:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
it.timer = time.AfterFunc(nextTimeout, it.processTimeout)
|
2017-10-15 18:24:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (it *IdleTimer) quitMessage(state TimerState) string {
|
|
|
|
switch state {
|
|
|
|
case TimerUnregistered:
|
|
|
|
return fmt.Sprintf("Registration timeout: %v", it.registerTimeout)
|
|
|
|
case TimerIdle:
|
|
|
|
// how many seconds before registered clients are timed out (IdleTimeout plus QuitTimeout).
|
2018-01-30 05:26:29 +01:00
|
|
|
it.Lock()
|
|
|
|
defer it.Unlock()
|
2017-10-15 18:24:28 +02:00
|
|
|
return fmt.Sprintf("Ping timeout: %v", (it.idleTimeout + it.quitTimeout))
|
|
|
|
default:
|
|
|
|
// shouldn't happen
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
2018-02-11 11:30:40 +01:00
|
|
|
|
|
|
|
// NickTimer manages timing out of clients who are squatting reserved nicks
|
|
|
|
type NickTimer struct {
|
|
|
|
sync.Mutex // tier 1
|
|
|
|
|
|
|
|
// immutable after construction
|
|
|
|
timeout time.Duration
|
|
|
|
client *Client
|
|
|
|
|
|
|
|
// mutable
|
|
|
|
nick string
|
|
|
|
accountForNick string
|
|
|
|
account string
|
|
|
|
timer *time.Timer
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewNickTimer sets up a new nick timer (returning nil if timeout enforcement is not enabled)
|
|
|
|
func NewNickTimer(client *Client) *NickTimer {
|
2018-02-18 10:46:14 +01:00
|
|
|
config := client.server.AccountConfig().NickReservation
|
|
|
|
if !(config.Enabled && config.Method == NickReservationWithTimeout) {
|
2018-02-11 11:30:40 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
nt := NickTimer{
|
|
|
|
client: client,
|
2018-02-18 10:46:14 +01:00
|
|
|
timeout: config.RenameTimeout,
|
2018-02-11 11:30:40 +01:00
|
|
|
}
|
|
|
|
return &nt
|
|
|
|
}
|
|
|
|
|
|
|
|
// Touch records a nick change and updates the timer as necessary
|
|
|
|
func (nt *NickTimer) Touch() {
|
|
|
|
if nt == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
nick := nt.client.NickCasefolded()
|
|
|
|
account := nt.client.Account()
|
|
|
|
accountForNick := nt.client.server.accounts.NickToAccount(nick)
|
|
|
|
|
|
|
|
var shouldWarn bool
|
|
|
|
|
|
|
|
func() {
|
|
|
|
nt.Lock()
|
|
|
|
defer nt.Unlock()
|
|
|
|
// the timer will not reset as long as the squatter is targeting the same account
|
|
|
|
accountChanged := accountForNick != nt.accountForNick
|
|
|
|
// change state
|
|
|
|
nt.nick = nick
|
|
|
|
nt.account = account
|
|
|
|
nt.accountForNick = accountForNick
|
|
|
|
delinquent := accountForNick != "" && accountForNick != account
|
|
|
|
|
|
|
|
if nt.timer != nil && (!delinquent || accountChanged) {
|
|
|
|
nt.timer.Stop()
|
|
|
|
nt.timer = nil
|
|
|
|
}
|
|
|
|
if delinquent && accountChanged {
|
|
|
|
nt.timer = time.AfterFunc(nt.timeout, nt.processTimeout)
|
|
|
|
shouldWarn = true
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if shouldWarn {
|
|
|
|
nt.sendWarning()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 06:14:44 +01:00
|
|
|
// Stop stops counting time and cleans up the timer
|
|
|
|
func (nt *NickTimer) Stop() {
|
|
|
|
if nt == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
nt.Lock()
|
|
|
|
defer nt.Unlock()
|
|
|
|
if nt.timer != nil {
|
|
|
|
nt.timer.Stop()
|
|
|
|
nt.timer = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-11 11:30:40 +01:00
|
|
|
func (nt *NickTimer) sendWarning() {
|
|
|
|
baseNotice := "Nickname is reserved; you must change it or authenticate to NickServ within %v"
|
|
|
|
nt.client.Notice(fmt.Sprintf(nt.client.t(baseNotice), nt.timeout))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (nt *NickTimer) processTimeout() {
|
|
|
|
baseMsg := "Nick is reserved and authentication timeout expired: %v"
|
2018-02-18 10:46:14 +01:00
|
|
|
nt.client.Notice(fmt.Sprintf(nt.client.t(baseMsg), nt.timeout))
|
|
|
|
nt.client.server.RandomlyRename(nt.client)
|
2018-02-11 11:30:40 +01:00
|
|
|
}
|