ircd/server.go

383 lines
9.8 KiB
Go
Raw Normal View History

2016-07-17 21:52:03 +00:00
// vim:ts=4:sts=4:sw=4:noet:tw=72
2016-07-18 21:33:33 +00:00
package ircd
2014-11-22 13:21:30 +00:00
import (
"fmt"
"net"
"os"
2016-07-17 21:52:03 +00:00
"runtime"
2014-11-22 13:21:30 +00:00
"strconv"
"strings"
"time"
2016-07-17 21:52:03 +00:00
"code.dnix.de/an/conf"
"code.dnix.de/an/irc"
"code.dnix.de/an/xlog"
2014-11-22 13:21:30 +00:00
)
const (
CHANLIMIT = 1024
CHANNELLEN = 200
TOPICLEN = 1024
)
var myinfo string = "%s %s/%s * *"
var isupport string = "ALIAS FRIEND UNFRIEND CASEMAPPING=rfc1459 CHANLIMIT=#:1024 CHANMODES=b,k,l,imnpst CHANNELLEN=200 CHANTYPES=# EXCEPTS=e KICKLEN MAXLIST=b:50,e:50 MODES=1 NETWORK=dnix.de NICKLEN=32 PREFIX=(aohv)&@%%+ SAFELIST STATUSMSG=&@%%+ TOPICLEN"
type Server struct {
2016-07-17 21:52:03 +00:00
Dispatch chan *irc.Message
2016-07-18 19:22:03 +00:00
AddClient chan Client
DelClient chan Client
2014-11-22 13:21:30 +00:00
2016-07-18 14:19:04 +00:00
host string
info string
software string
version string
created string
motd string
2016-07-18 19:22:03 +00:00
clients map[string]Client
2016-07-18 14:19:04 +00:00
channels map[string]map[string]string
ports map[int]bool
config *conf.ConfigFile
configPath string
2014-11-22 13:21:30 +00:00
}
func init() {
}
// Create a new server instance.
func NewServer(configPath, software, version string) *Server {
srv := &Server{software: software, version: version, created: "yes"}
2016-07-17 21:52:03 +00:00
srv.Dispatch = make(chan *irc.Message, 1024)
2016-07-18 19:22:03 +00:00
srv.AddClient = make(chan Client, 1024)
srv.DelClient = make(chan Client, 1024)
2014-11-22 13:21:30 +00:00
2016-07-18 19:22:03 +00:00
srv.clients = make(map[string]Client)
2016-07-18 14:19:04 +00:00
srv.channels = make(map[string]map[string]string)
2014-11-22 13:21:30 +00:00
srv.configPath = configPath
srv.loadConfig()
2016-07-17 21:52:03 +00:00
loglevel, _ := srv.config.GetInt("system", "loglevel")
2016-07-18 12:26:46 +00:00
srv.host, _ = srv.config.GetString("server", "host")
srv.info, _ = srv.config.GetString("server", "info")
srv.motd, _ = srv.config.GetString("server", "motd")
2014-11-22 13:21:30 +00:00
xlog.Init(loglevel)
return srv
}
// Open the listening port and start the main server loop.
func (srv *Server) Run() {
xlog.Info("%s/%s", srv.software, srv.version)
2016-07-18 12:26:46 +00:00
address, _ := srv.config.GetString("net", "address")
2016-07-17 21:52:03 +00:00
port, _ := srv.config.GetInt("net", "port")
2016-07-18 12:26:46 +00:00
go srv.listen(address, port)
2016-07-17 21:52:03 +00:00
srv.dispatch()
2014-11-22 13:21:30 +00:00
}
2016-07-18 12:26:46 +00:00
func (srv *Server) listen(address string, port int) {
if _, exists := srv.ports[port]; exists {
xlog.Warning("Port %i already opened", port)
}
listen, err := net.Listen("tcp", address+":"+strconv.Itoa(port))
if err != nil {
xlog.Fatal("Cannot listen on port %i (%s), exiting",
port, err.Error())
os.Exit(-1)
}
xlog.Info("Start listening on port %d", port)
for {
time.Sleep(1e6)
conn, err := listen.Accept()
if err != nil {
xlog.Error(err.Error())
} else {
2016-07-18 19:22:03 +00:00
NewRemoteClient(srv, conn)
2016-07-18 12:26:46 +00:00
}
}
}
2016-07-17 21:52:03 +00:00
func (srv *Server) dispatch() {
xlog.Debug("Entering msg dispatcher")
2014-11-22 13:21:30 +00:00
for {
time.Sleep(1 * time.Millisecond)
select {
2016-07-17 21:52:03 +00:00
case msg := <-srv.Dispatch:
2014-11-22 13:21:30 +00:00
srv.recvMsg(msg)
case cl := <-srv.AddClient:
2016-07-17 21:52:03 +00:00
name := cl.Name()
if _, exists := srv.clients[name]; exists {
xlog.Warning("Client registration failed: '%s'", name)
2014-11-22 13:21:30 +00:00
go func() { cl.Register() <- false }()
continue
}
go func() { cl.Register() <- true }()
2016-07-17 21:52:03 +00:00
srv.clients[name] = cl
xlog.Info("Client registered: '%s'", name)
xlog.Info("Server has %d client(s)", len(srv.clients))
xlog.Debug("Goroutines running: %d", runtime.NumGoroutine())
2014-11-22 13:21:30 +00:00
srv.clientLogon(cl)
srv.clientMotd(cl)
case cl := <-srv.DelClient:
2016-07-17 21:52:03 +00:00
name := cl.Name()
2016-07-18 19:22:03 +00:00
cl.Destroy()
2016-07-18 12:26:46 +00:00
//go func() {
// time.Sleep(10 * time.Second)
2016-07-17 21:52:03 +00:00
delete(srv.clients, name)
2016-07-18 12:26:46 +00:00
//}()
2016-07-17 21:52:03 +00:00
xlog.Info("Client deleted: '%s'", name)
xlog.Info("Server has %d client(s)", len(srv.clients))
xlog.Debug("Goroutines running: %d", runtime.NumGoroutine())
2014-11-22 13:21:30 +00:00
default:
}
}
}
func (srv *Server) loadConfig() {
2016-07-17 21:52:03 +00:00
cfg, err := conf.ReadConfigFile(srv.configPath)
2014-11-22 13:21:30 +00:00
if err != nil {
2016-07-17 21:52:03 +00:00
xlog.Fatal("Can't read config file (%s)", err.Error())
2014-11-22 13:21:30 +00:00
os.Exit(-1)
}
2016-07-17 21:52:03 +00:00
srv.config = cfg
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func (srv *Server) recvMsg(msg *irc.Message) {
2014-11-22 13:21:30 +00:00
cmd := msg.Cmd
hook, exists := srvCommandHooks[cmd]
if !exists {
2016-07-18 12:26:46 +00:00
srv.sendReply(msg.Pre, ERR_UNKNOWNCOMMAND, cmd, "Unknown command")
2014-11-22 13:21:30 +00:00
return
}
argc := len(msg.Args)
if argc < hook.MinArgs {
2016-07-18 12:26:46 +00:00
srv.sendReply(msg.Pre, ERR_NEEDMOREPARAMS, cmd, "Not enough parameters")
2014-11-22 13:21:30 +00:00
return
}
hook.HookFn(srv, msg)
}
2016-07-17 21:52:03 +00:00
func (srv *Server) sendMsg(msg *irc.Message) {
if strings.HasPrefix(msg.Args[0], "#") {
2016-07-18 19:22:03 +00:00
srv.channelBroadcast(msg.Args[0], msg)
2014-11-22 13:21:30 +00:00
} else {
srv.sendMsgToClient(msg)
}
}
2016-07-17 21:52:03 +00:00
func (srv *Server) sendMsgToChannel(msg *irc.Message) {
2016-07-18 14:19:04 +00:00
cname := msg.Args[0]
if _, exists := srv.channels[cname]; !exists {
2016-07-17 21:52:03 +00:00
return
}
2016-07-18 14:19:04 +00:00
subs := srv.channels[cname]
for sub, _ := range subs {
2016-07-17 21:52:03 +00:00
if _, exists := srv.clients[sub]; !exists {
continue
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
cl := srv.clients[sub]
cl.Receive(msg)
2014-11-22 13:21:30 +00:00
}
}
2016-07-17 21:52:03 +00:00
func (srv *Server) sendMsgToClient(msg *irc.Message) {
if _, exists := srv.clients[msg.Args[0]]; !exists {
2016-07-18 12:26:46 +00:00
xlog.Error("sendMsgToClient: Client '%s' does not exist", msg.Args[0])
2014-11-22 13:21:30 +00:00
return
}
2016-07-17 21:52:03 +00:00
cl := srv.clients[msg.Args[0]]
2014-11-22 13:21:30 +00:00
cl.Receive(msg)
}
2016-07-18 12:26:46 +00:00
func (srv *Server) sendReply(tar, cmd, args, trail string) {
if _, exists := srv.clients[tar]; !exists {
xlog.Error("sendReply: Client '%s' does not exist", tar)
return
}
cl := srv.clients[tar]
2016-07-18 14:19:04 +00:00
if args != "" {
args = tar + args
} else {
args = tar
}
cl.Receive(irc.M(srv.host, cmd, args, trail))
2014-11-22 13:21:30 +00:00
}
2016-07-18 19:22:03 +00:00
func (srv *Server) clientLogon(cl Client) {
2016-07-18 12:26:46 +00:00
srv.sendReply(cl.Name(), RPL_WELCOME, "", "Willkommen!")
srv.sendReply(cl.Name(), RPL_YOURHOST, "",
2016-07-17 21:52:03 +00:00
fmt.Sprintf("Your host is %s, running on %s/%s",
2016-07-18 12:26:46 +00:00
srv.host, srv.software, srv.version))
srv.sendReply(cl.Name(), RPL_CREATED, "",
fmt.Sprintf("Created: %s", srv.created))
srv.sendReply(cl.Name(), RPL_MYINFO, "",
fmt.Sprintf(myinfo, srv.host, srv.software, srv.version))
srv.sendReply(cl.Name(), RPL_ISUPPORT, "",
isupport+" are supported by this server")
2014-11-22 13:21:30 +00:00
}
2016-07-18 19:22:03 +00:00
func (srv *Server) clientMotd(cl Client) {
2016-07-18 12:26:46 +00:00
srv.sendReply(cl.Name(), RPL_MOTDSTART, "",
fmt.Sprintf("- %s Message of the day -", srv.host))
2014-11-22 13:21:30 +00:00
for _, line := range strings.Split(srv.motd, "\n") {
2016-07-18 12:26:46 +00:00
srv.sendReply(cl.Name(), RPL_MOTD, "", fmt.Sprintf("- %s", line))
2014-11-22 13:21:30 +00:00
}
2016-07-18 12:26:46 +00:00
srv.sendReply(cl.Name(), RPL_ENDOFMOTD, "", "End of MOTD command")
2014-11-22 13:21:30 +00:00
}
2016-07-18 14:19:04 +00:00
func (srv *Server) channelBroadcast(ch string, msg *irc.Message) {
for nick, _ := range srv.channels[ch] {
2016-07-18 19:22:03 +00:00
if msg.Pre == nick && msg.Cmd == "PRIVMSG" {
2016-07-18 14:19:04 +00:00
continue
}
srv.clients[nick].Receive(msg)
}
}
func (srv *Server) channelJoin(nick, ch string) {
if _, exists := srv.channels[ch]; !exists {
srv.channels[ch] = make(map[string]string)
}
if _, exists := srv.channels[ch][nick]; exists {
return
}
srv.channels[ch][nick] = ""
srv.channelBroadcast(ch, irc.M(nick, "JOIN", ch, ""))
}
2016-07-18 17:02:15 +00:00
func (srv *Server) channelPart(nick, ch, reason string) {
if _, exists := srv.channels[ch]; !exists {
return
}
if _, exists := srv.channels[ch][nick]; !exists {
return
}
srv.channelBroadcast(ch, irc.M(nick, "PART", ch, reason))
2016-07-18 19:22:03 +00:00
delete(srv.channels[ch], nick)
2016-07-18 14:19:04 +00:00
}
2014-11-22 13:21:30 +00:00
type SrvCommandHook struct {
2016-07-17 21:52:03 +00:00
HookFn func(srv *Server, msg *irc.Message)
2014-11-22 13:21:30 +00:00
MinArgs int
NeedOper bool
NeedAuth bool
}
var srvCommandHooks = map[string]SrvCommandHook{
2016-07-18 12:26:46 +00:00
"PRIVMSG": {srvHandleCmdPrivmsg, 1, false, false},
2016-07-18 14:19:04 +00:00
"JOIN": {srvHandleCmdJoin, 1, false, false},
"PART": {srvHandleCmdPart, 1, false, false},
2016-07-17 21:52:03 +00:00
"QUIT": {srvHandleCmdQuit, 0, false, false},
"MODE": {srvHandleCmdMode, 1, false, false},
"LIST": {srvHandleCmdList, 0, false, false},
"VERSION": {srvHandleCmdVersion, 0, false, false},
"STATS": {srvHandleCmdStats, 0, false, false},
"TIME": {srvHandleCmdTime, 0, false, false},
2016-07-18 12:26:46 +00:00
"OPER": {srvHandleCmdOper, 1, false, false},
2016-07-17 21:52:03 +00:00
"ADMIN": {srvHandleCmdAdmin, 0, false, false},
"INFO": {srvHandleCmdInfo, 0, false, false},
"WHO": {srvHandleCmdWho, 0, false, false},
"WHOIS": {srvHandleCmdWhois, 0, false, false},
"WHOWAS": {srvHandleCmdWhowas, 0, false, false},
"KILL": {srvHandleCmdKill, 0, false, false},
"PING": {srvHandleCmdPing, 0, false, false},
"PONG": {srvHandleCmdPong, 0, false, false},
"ERROR": {srvHandleCmdError, 0, false, false},
"AWAY": {srvHandleCmdAway, 0, false, false},
"REHASH": {srvHandleCmdRehash, 0, false, false},
"RESTART": {srvHandleCmdRestart, 0, false, false},
"SUMMON": {srvHandleCmdSummon, 0, false, false},
"USERS": {srvHandleCmdUsers, 0, false, false},
"USERHOST": {srvHandleCmdUserhost, 0, false, false},
"ISON": {srvHandleCmdIson, 0, false, false},
2014-11-22 13:21:30 +00:00
}
2016-07-18 12:26:46 +00:00
func srvHandleCmdPrivmsg(srv *Server, msg *irc.Message) {
srv.sendMsg(msg)
}
func srvHandleCmdJoin(srv *Server, msg *irc.Message) {
2016-07-18 14:19:04 +00:00
srv.channelJoin(msg.Pre, msg.Args[0])
2016-07-18 12:26:46 +00:00
}
func srvHandleCmdPart(srv *Server, msg *irc.Message) {
2016-07-18 19:22:03 +00:00
srv.channelPart(msg.Pre, msg.Args[0], msg.Trail)
2016-07-18 12:26:46 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdOper(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdQuit(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdMode(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdList(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdVersion(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdStats(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdTime(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdAdmin(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdInfo(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdWho(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdWhois(srv *Server, msg *irc.Message) {
2016-07-18 12:26:46 +00:00
srv.sendReply(msg.Pre, RPL_WHOISUSER, "nick user host *", "real name")
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdWhowas(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdKill(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdPing(srv *Server, msg *irc.Message) {
2016-07-18 12:26:46 +00:00
srv.sendReply(msg.Pre, "PONG", msg.Args[0], "")
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdPong(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdError(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdAway(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdRehash(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
srv.loadConfig()
2016-07-18 12:26:46 +00:00
srv.sendReply(msg.Pre, RPL_REHASHING, "", "Rehashing.")
xlog.Info("Rehashing")
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdRestart(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdSummon(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdUsers(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdUserhost(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}
2016-07-17 21:52:03 +00:00
func srvHandleCmdIson(srv *Server, msg *irc.Message) {
2014-11-22 13:21:30 +00:00
}