ergo/irc/socket.go

241 lines
5.4 KiB
Go
Raw Normal View History

// Copyright (c) 2012-2014 Jeremy Latt
2017-03-27 14:15:02 +02:00
// Copyright (c) 2016-2017 Daniel Oaks <daniel@danieloaks.net>
// released under the MIT license
2014-02-14 04:37:16 +01:00
package irc
import (
"bufio"
"crypto/sha256"
"crypto/tls"
"encoding/hex"
"errors"
"io"
2014-02-14 04:37:16 +01:00
"net"
2016-06-15 13:21:45 +02:00
"strings"
"sync"
2016-10-22 12:53:36 +02:00
"time"
2014-02-14 04:37:16 +01:00
)
var (
2016-10-22 12:53:36 +02:00
errNotTLS = errors.New("Not a TLS connection")
errNoPeerCerts = errors.New("Client did not provide a certificate")
handshakeTimeout, _ = time.ParseDuration("5s")
)
2016-06-15 13:21:45 +02:00
// Socket represents an IRC socket.
2014-02-14 04:37:16 +01:00
type Socket struct {
2016-06-15 13:21:45 +02:00
conn net.Conn
reader *bufio.Reader
2017-03-13 23:12:39 +01:00
MaxSendQBytes uint64
2017-04-18 14:26:01 +02:00
closed bool
closedMutex sync.Mutex
finalData string // what to send when we die
finalDataMutex sync.Mutex
2017-03-13 23:12:39 +01:00
lineToSendExists chan bool
linesToSend []string
linesToSendMutex sync.Mutex
2014-02-14 04:37:16 +01:00
}
2016-06-15 13:21:45 +02:00
// NewSocket returns a new Socket.
2017-03-13 23:12:39 +01:00
func NewSocket(conn net.Conn, maxSendQBytes uint64) Socket {
2016-06-15 13:21:45 +02:00
return Socket{
conn: conn,
reader: bufio.NewReader(conn),
2017-03-13 23:12:39 +01:00
MaxSendQBytes: maxSendQBytes,
lineToSendExists: make(chan bool),
2014-02-14 04:37:16 +01:00
}
}
2016-06-15 13:21:45 +02:00
// Close stops a Socket from being able to send/receive any more data.
2014-02-14 04:37:16 +01:00
func (socket *Socket) Close() {
2017-04-18 14:26:01 +02:00
socket.closedMutex.Lock()
defer socket.closedMutex.Unlock()
if socket.closed {
return
}
2017-04-18 14:26:01 +02:00
socket.closed = true
// force close loop to happen if it hasn't already
go socket.timedFillLineToSendExists(200 * time.Millisecond)
2014-02-14 04:37:16 +01:00
}
// CertFP returns the fingerprint of the certificate provided by the client.
func (socket *Socket) CertFP() (string, error) {
var tlsConn, isTLS = socket.conn.(*tls.Conn)
if !isTLS {
2016-09-07 13:32:58 +02:00
return "", errNotTLS
}
2016-10-22 12:53:36 +02:00
// ensure handehake is performed, and timeout after a few seconds
tlsConn.SetDeadline(time.Now().Add(handshakeTimeout))
err := tlsConn.Handshake()
tlsConn.SetDeadline(time.Time{})
if err != nil {
return "", err
}
2016-09-07 13:32:58 +02:00
peerCerts := tlsConn.ConnectionState().PeerCertificates
if len(peerCerts) < 1 {
return "", errNoPeerCerts
}
rawCert := sha256.Sum256(peerCerts[0].Raw)
fingerprint := hex.EncodeToString(rawCert[:])
return fingerprint, nil
}
2016-06-15 13:21:45 +02:00
// Read returns a single IRC line from a Socket.
func (socket *Socket) Read() (string, error) {
2017-04-18 14:26:01 +02:00
if socket.IsClosed() {
2016-06-15 13:21:45 +02:00
return "", io.EOF
}
2016-06-15 13:21:45 +02:00
lineBytes, err := socket.reader.ReadBytes('\n')
2016-06-15 13:21:45 +02:00
// convert bytes to string
line := string(lineBytes[:])
2014-02-14 04:37:16 +01:00
2016-06-15 13:21:45 +02:00
// read last message properly (such as ERROR/QUIT/etc), just fail next reads/writes
if err == io.EOF {
socket.Close()
}
2016-06-15 13:21:45 +02:00
if err == io.EOF && strings.TrimSpace(line) != "" {
// don't do anything
} else if err != nil {
return "", err
2014-02-18 18:45:10 +01:00
}
2014-02-18 08:58:02 +01:00
2016-06-15 13:21:45 +02:00
return strings.TrimRight(line, "\r\n"), nil
}
2014-02-20 20:15:42 +01:00
2016-06-15 13:21:45 +02:00
// Write sends the given string out of Socket.
func (socket *Socket) Write(data string) error {
2017-04-18 14:26:01 +02:00
if socket.IsClosed() {
2016-06-15 13:21:45 +02:00
return io.EOF
2014-03-29 19:56:23 +01:00
}
2014-02-20 20:15:42 +01:00
socket.linesToSendMutex.Lock()
socket.linesToSend = append(socket.linesToSend, data)
socket.linesToSendMutex.Unlock()
2017-04-18 14:26:01 +02:00
go socket.timedFillLineToSendExists(15 * time.Second)
2016-06-15 13:21:45 +02:00
return nil
}
// timedFillLineToSendExists either sends the note or times out.
func (socket *Socket) timedFillLineToSendExists(duration time.Duration) {
lineToSendTimeout := time.NewTimer(duration)
defer lineToSendTimeout.Stop()
select {
case socket.lineToSendExists <- true:
// passed data successfully
case <-lineToSendTimeout.C:
// timed out send
}
}
2017-04-18 14:26:01 +02:00
// SetFinalData sets the final data to send when the SocketWriter closes.
func (socket *Socket) SetFinalData(data string) {
socket.finalDataMutex.Lock()
socket.finalData = data
socket.finalDataMutex.Unlock()
}
// IsClosed returns whether the socket is closed.
func (socket *Socket) IsClosed() bool {
socket.closedMutex.Lock()
defer socket.closedMutex.Unlock()
return socket.closed
}
// RunSocketWriter starts writing messages to the outgoing socket.
func (socket *Socket) RunSocketWriter() {
for {
// wait for new lines
select {
case <-socket.lineToSendExists:
socket.linesToSendMutex.Lock()
// check if we're closed
2017-04-18 14:26:01 +02:00
if socket.IsClosed() {
socket.linesToSendMutex.Unlock()
break
}
// check whether new lines actually exist or not
2017-04-17 14:35:25 +02:00
if len(socket.linesToSend) < 1 {
socket.linesToSendMutex.Unlock()
2017-04-17 14:35:25 +02:00
continue
}
2017-03-13 23:12:39 +01:00
// check sendq
var sendQBytes uint64
for _, line := range socket.linesToSend {
sendQBytes += uint64(len(line))
if socket.MaxSendQBytes < sendQBytes {
2017-04-19 00:50:57 +02:00
// don't unlock mutex because this break is just to escape this for loop
2017-03-13 23:12:39 +01:00
break
}
}
if socket.MaxSendQBytes < sendQBytes {
2017-04-18 14:26:01 +02:00
socket.SetFinalData("\r\nERROR :SendQ Exceeded\r\n")
socket.linesToSendMutex.Unlock()
2017-03-13 23:12:39 +01:00
break
}
// get all existing data
data := strings.Join(socket.linesToSend, "")
socket.linesToSend = []string{}
2017-03-24 12:54:22 +01:00
socket.linesToSendMutex.Unlock()
// write data
if 0 < len(data) {
_, err := socket.conn.Write([]byte(data))
if err != nil {
break
}
}
}
2017-04-18 14:26:01 +02:00
if socket.IsClosed() {
2017-04-17 14:35:25 +02:00
// error out or we've been closed
break
}
}
2017-04-18 14:26:01 +02:00
// force closure of socket
socket.closedMutex.Lock()
if !socket.closed {
socket.closed = true
}
2017-04-18 14:26:01 +02:00
socket.closedMutex.Unlock()
// write error lines
2017-04-18 14:26:01 +02:00
socket.finalDataMutex.Lock()
if 0 < len(socket.finalData) {
socket.conn.Write([]byte(socket.finalData))
}
2017-04-18 14:26:01 +02:00
socket.finalDataMutex.Unlock()
// close the connection
socket.conn.Close()
// empty the lineToSendExists channel
for 0 < len(socket.lineToSendExists) {
<-socket.lineToSendExists
}
}
2016-06-15 13:21:45 +02:00
// WriteLine writes the given line out of Socket.
func (socket *Socket) WriteLine(line string) error {
return socket.Write(line + "\r\n")
2014-02-14 04:37:16 +01:00
}