2021-03-26 22:53:46 +01:00
|
|
|
// Copyright 2021 Google LLC
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
irc "github.com/fluffle/goirc/client"
|
2021-04-07 03:20:52 +02:00
|
|
|
"github.com/google/alertmanager-irc-relay/logging"
|
2021-03-26 22:53:46 +01:00
|
|
|
)
|
|
|
|
|
2021-03-27 00:49:16 +01:00
|
|
|
const (
|
|
|
|
ircJoinWaitSecs = 10
|
|
|
|
ircJoinMaxBackoffSecs = 300
|
|
|
|
ircJoinBackoffResetSecs = 1800
|
|
|
|
)
|
|
|
|
|
2021-03-26 22:53:46 +01:00
|
|
|
type channelState struct {
|
2021-03-27 00:49:16 +01:00
|
|
|
channel IRCChannel
|
2022-10-08 18:02:16 +02:00
|
|
|
chanservName string
|
2021-03-27 00:49:16 +01:00
|
|
|
client *irc.Conn
|
2021-03-29 16:06:36 +02:00
|
|
|
|
|
|
|
delayer Delayer
|
|
|
|
timeTeller TimeTeller
|
2021-03-27 00:49:16 +01:00
|
|
|
|
|
|
|
joinDone chan struct{} // joined when channel is closed
|
|
|
|
joined bool
|
|
|
|
|
|
|
|
joinUnsetSignal chan bool
|
|
|
|
|
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
2022-10-08 18:02:16 +02:00
|
|
|
func newChannelState(channel *IRCChannel, client *irc.Conn, delayerMaker DelayerMaker, timeTeller TimeTeller, chanservName string) *channelState {
|
2021-03-27 00:49:16 +01:00
|
|
|
delayer := delayerMaker.NewDelayer(ircJoinMaxBackoffSecs, ircJoinBackoffResetSecs, time.Second)
|
|
|
|
|
|
|
|
return &channelState{
|
|
|
|
channel: *channel,
|
|
|
|
client: client,
|
|
|
|
delayer: delayer,
|
2021-03-29 16:06:36 +02:00
|
|
|
timeTeller: timeTeller,
|
2021-03-27 00:49:16 +01:00
|
|
|
joinDone: make(chan struct{}),
|
|
|
|
joined: false,
|
|
|
|
joinUnsetSignal: make(chan bool),
|
2022-10-08 18:02:16 +02:00
|
|
|
chanservName: chanservName,
|
2021-03-27 00:49:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelState) JoinDone() <-chan struct{} {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
|
|
|
|
return c.joinDone
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelState) SetJoined() {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
|
|
|
|
if c.joined == true {
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Warn("Not setting JOIN state on channel %s: already set", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Setting JOIN state on channel %s", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
c.joined = true
|
|
|
|
close(c.joinDone)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelState) UnsetJoined() {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
|
|
|
|
if c.joined == false {
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Warn("Not removing JOIN state on channel %s: already not set", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Removing JOIN state on channel %s", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
c.joined = false
|
|
|
|
c.joinDone = make(chan struct{})
|
|
|
|
|
|
|
|
// eventually poke monitor routine
|
|
|
|
select {
|
|
|
|
case c.joinUnsetSignal <- true:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelState) join(ctx context.Context) {
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Channel %s monitor: waiting to join", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
if ok := c.delayer.DelayContext(ctx); !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-16 13:53:06 +02:00
|
|
|
// Try to unban ourselves, just in case
|
2022-10-08 18:02:16 +02:00
|
|
|
c.client.Privmsgf(c.chanservName, "UNBAN %s", c.channel.Name)
|
2021-04-16 13:53:06 +02:00
|
|
|
|
2021-03-27 00:49:16 +01:00
|
|
|
c.client.Join(c.channel.Name, c.channel.Password)
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Channel %s monitor: join request sent", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-c.JoinDone():
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Channel %s monitor: join succeeded", c.channel.Name)
|
2021-03-29 16:06:36 +02:00
|
|
|
case <-c.timeTeller.After(ircJoinWaitSecs * time.Second):
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Warn("Channel %s monitor: could not join after %d seconds, will retry", c.channel.Name, ircJoinWaitSecs)
|
2021-03-27 00:49:16 +01:00
|
|
|
case <-ctx.Done():
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Channel %s monitor: context canceled while waiting for join", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelState) monitorJoinUnset(ctx context.Context) {
|
|
|
|
select {
|
|
|
|
case <-c.joinUnsetSignal:
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Channel %s monitor: channel no longer joined", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
case <-ctx.Done():
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Channel %s monitor: context canceled while monitoring", c.channel.Name)
|
2021-03-27 00:49:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelState) Monitor(ctx context.Context, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
|
|
|
|
joined := func() bool {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
return c.joined
|
|
|
|
}
|
|
|
|
|
|
|
|
for ctx.Err() != context.Canceled {
|
|
|
|
if !joined() {
|
|
|
|
c.join(ctx)
|
|
|
|
} else {
|
|
|
|
c.monitorJoinUnset(ctx)
|
|
|
|
}
|
|
|
|
}
|
2021-03-26 22:53:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type ChannelReconciler struct {
|
|
|
|
preJoinChannels []IRCChannel
|
|
|
|
client *irc.Conn
|
|
|
|
|
|
|
|
delayerMaker DelayerMaker
|
2021-03-29 16:06:36 +02:00
|
|
|
timeTeller TimeTeller
|
2021-03-26 22:53:46 +01:00
|
|
|
|
|
|
|
channels map[string]*channelState
|
2022-10-08 18:02:16 +02:00
|
|
|
chanservName string
|
2021-03-26 22:53:46 +01:00
|
|
|
|
|
|
|
stopCtx context.Context
|
|
|
|
stopCtxCancel context.CancelFunc
|
|
|
|
stopWg sync.WaitGroup
|
|
|
|
|
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
2021-03-29 16:06:36 +02:00
|
|
|
func NewChannelReconciler(config *Config, client *irc.Conn, delayerMaker DelayerMaker, timeTeller TimeTeller) *ChannelReconciler {
|
2021-03-26 22:53:46 +01:00
|
|
|
reconciler := &ChannelReconciler{
|
|
|
|
preJoinChannels: config.IRCChannels,
|
|
|
|
client: client,
|
|
|
|
delayerMaker: delayerMaker,
|
2021-03-29 16:06:36 +02:00
|
|
|
timeTeller: timeTeller,
|
2021-03-26 22:53:46 +01:00
|
|
|
channels: make(map[string]*channelState),
|
2022-10-08 18:02:16 +02:00
|
|
|
chanservName: config.ChanservName,
|
2021-03-26 22:53:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
reconciler.registerHandlers()
|
|
|
|
|
|
|
|
return reconciler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ChannelReconciler) registerHandlers() {
|
2021-03-27 00:49:16 +01:00
|
|
|
r.client.HandleFunc(irc.JOIN,
|
|
|
|
func(_ *irc.Conn, line *irc.Line) {
|
|
|
|
r.HandleJoin(line.Nick, line.Args[0])
|
|
|
|
})
|
|
|
|
|
2021-03-26 22:53:46 +01:00
|
|
|
r.client.HandleFunc(irc.KICK,
|
|
|
|
func(_ *irc.Conn, line *irc.Line) {
|
|
|
|
r.HandleKick(line.Args[1], line.Args[0])
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-27 00:49:16 +01:00
|
|
|
func (r *ChannelReconciler) HandleJoin(nick string, channel string) {
|
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
|
|
|
if nick != r.client.Me().Nick {
|
|
|
|
// received join info for somebody else
|
|
|
|
return
|
|
|
|
}
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Received JOIN confirmation for channel %s", channel)
|
2021-03-27 00:49:16 +01:00
|
|
|
|
|
|
|
c, ok := r.channels[channel]
|
|
|
|
if !ok {
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Warn("Not processing JOIN for channel %s: unknown channel", channel)
|
2021-03-27 00:49:16 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
c.SetJoined()
|
|
|
|
}
|
|
|
|
|
2021-03-26 22:53:46 +01:00
|
|
|
func (r *ChannelReconciler) HandleKick(nick string, channel string) {
|
2021-03-27 00:49:16 +01:00
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
2021-03-26 22:53:46 +01:00
|
|
|
if nick != r.client.Me().Nick {
|
|
|
|
// received kick info for somebody else
|
|
|
|
return
|
|
|
|
}
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Received KICK for channel %s", channel)
|
2021-03-27 00:49:16 +01:00
|
|
|
|
|
|
|
c, ok := r.channels[channel]
|
2021-03-26 22:53:46 +01:00
|
|
|
if !ok {
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Warn("Not processing KICK for channel %s: unknown channel", channel)
|
2021-03-26 22:53:46 +01:00
|
|
|
return
|
|
|
|
}
|
2021-03-27 00:49:16 +01:00
|
|
|
c.UnsetJoined()
|
2021-03-26 22:53:46 +01:00
|
|
|
}
|
|
|
|
|
2021-03-27 00:49:16 +01:00
|
|
|
func (r *ChannelReconciler) unsafeAddChannel(channel *IRCChannel) *channelState {
|
2022-10-08 18:02:16 +02:00
|
|
|
c := newChannelState(channel, r.client, r.delayerMaker, r.timeTeller, r.chanservName)
|
2021-03-27 00:49:16 +01:00
|
|
|
|
|
|
|
r.stopWg.Add(1)
|
|
|
|
go c.Monitor(r.stopCtx, &r.stopWg)
|
|
|
|
|
|
|
|
r.channels[channel.Name] = c
|
|
|
|
return c
|
2021-03-26 22:53:46 +01:00
|
|
|
}
|
|
|
|
|
2021-03-27 00:49:16 +01:00
|
|
|
func (r *ChannelReconciler) JoinChannel(channel string) (bool, <-chan struct{}) {
|
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
|
|
|
c, ok := r.channels[channel]
|
|
|
|
if !ok {
|
2021-04-07 03:20:52 +02:00
|
|
|
logging.Info("Request to JOIN new channel %s", channel)
|
2021-03-27 00:49:16 +01:00
|
|
|
c = r.unsafeAddChannel(&IRCChannel{Name: channel})
|
2021-03-26 22:53:46 +01:00
|
|
|
}
|
2021-03-27 00:49:16 +01:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-c.JoinDone():
|
|
|
|
return true, nil
|
|
|
|
default:
|
|
|
|
return false, c.JoinDone()
|
2021-03-26 22:53:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-27 00:49:16 +01:00
|
|
|
func (r *ChannelReconciler) unsafeStop() {
|
|
|
|
if r.stopCtxCancel == nil {
|
|
|
|
// calling stop before first start, ignoring
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.stopCtxCancel()
|
|
|
|
r.stopWg.Wait()
|
|
|
|
r.channels = make(map[string]*channelState)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ChannelReconciler) Stop() {
|
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
|
|
|
r.unsafeStop()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ChannelReconciler) Start(ctx context.Context) {
|
|
|
|
r.mu.Lock()
|
|
|
|
defer r.mu.Unlock()
|
|
|
|
|
|
|
|
r.unsafeStop()
|
|
|
|
|
|
|
|
r.stopCtx, r.stopCtxCancel = context.WithCancel(ctx)
|
|
|
|
|
2021-03-26 22:53:46 +01:00
|
|
|
for _, channel := range r.preJoinChannels {
|
2021-03-27 00:49:16 +01:00
|
|
|
r.unsafeAddChannel(&channel)
|
2021-03-26 22:53:46 +01:00
|
|
|
}
|
|
|
|
}
|