2020-05-05 04:29:10 +02:00
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-08-04 05:44:44 +02:00
|
|
|
"errors"
|
2020-08-07 07:10:46 +02:00
|
|
|
"io"
|
2020-05-05 04:29:10 +02:00
|
|
|
"net"
|
|
|
|
"unicode/utf8"
|
|
|
|
|
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
"github.com/goshuirc/irc-go/ircmsg"
|
|
|
|
|
|
|
|
"github.com/oragono/oragono/irc/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-08-07 07:10:46 +02:00
|
|
|
maxReadQBytes = ircmsg.MaxlenTagsFromClient + MaxLineLen + 1024
|
|
|
|
initialBufferSize = 1024
|
2020-05-05 04:29:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-08-04 05:44:44 +02:00
|
|
|
crlf = []byte{'\r', '\n'}
|
|
|
|
errReadQ = errors.New("ReadQ Exceeded")
|
2020-05-05 04:29:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// IRCConn abstracts away the distinction between a regular
|
|
|
|
// net.Conn (which includes both raw TCP and TLS) and a websocket.
|
2020-05-05 23:20:50 +02:00
|
|
|
// it doesn't expose the net.Conn, io.Reader, or io.Writer interfaces
|
|
|
|
// because websockets are message-oriented, not stream-oriented, and
|
|
|
|
// therefore this abstraction is message-oriented as well.
|
2020-05-05 04:29:10 +02:00
|
|
|
type IRCConn interface {
|
2020-05-05 23:20:50 +02:00
|
|
|
UnderlyingConn() *utils.WrappedConn
|
2020-05-05 04:29:10 +02:00
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
// these take an IRC line or lines, correctly terminated with CRLF:
|
|
|
|
WriteLine([]byte) error
|
|
|
|
WriteLines([][]byte) error
|
2020-08-04 05:44:44 +02:00
|
|
|
// this returns an IRC line, possibly terminated with CRLF, LF, or nothing:
|
2020-05-05 04:29:10 +02:00
|
|
|
ReadLine() (line []byte, err error)
|
|
|
|
|
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
|
|
|
// IRCStreamConn is an IRCConn over a regular stream connection.
|
|
|
|
type IRCStreamConn struct {
|
2020-08-07 07:10:46 +02:00
|
|
|
conn *utils.WrappedConn
|
|
|
|
|
|
|
|
buf []byte
|
|
|
|
start int // start of valid (i.e., read but not yet consumed) data in the buffer
|
|
|
|
end int // end of valid data in the buffer
|
|
|
|
searchFrom int // start of valid data in the buffer not yet searched for \n
|
|
|
|
eof bool
|
2020-05-05 04:29:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
func NewIRCStreamConn(conn *utils.WrappedConn) *IRCStreamConn {
|
2020-05-05 04:29:10 +02:00
|
|
|
return &IRCStreamConn{
|
|
|
|
conn: conn,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
func (cc *IRCStreamConn) UnderlyingConn() *utils.WrappedConn {
|
2020-05-05 04:29:10 +02:00
|
|
|
return cc.conn
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
func (cc *IRCStreamConn) WriteLine(buf []byte) (err error) {
|
2020-05-05 04:29:10 +02:00
|
|
|
_, err = cc.conn.Write(buf)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
func (cc *IRCStreamConn) WriteLines(buffers [][]byte) (err error) {
|
2020-05-05 04:29:10 +02:00
|
|
|
// on Linux, with a plaintext TCP or Unix domain socket,
|
|
|
|
// the Go runtime will optimize this into a single writev(2) call:
|
|
|
|
_, err = (*net.Buffers)(&buffers).WriteTo(cc.conn)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-07 07:10:46 +02:00
|
|
|
func (cc *IRCStreamConn) ReadLine() ([]byte, error) {
|
|
|
|
for {
|
|
|
|
// try to find a terminated line in the buffered data already read
|
|
|
|
nlidx := bytes.IndexByte(cc.buf[cc.searchFrom:cc.end], '\n')
|
|
|
|
if nlidx != -1 {
|
|
|
|
// got a complete line
|
|
|
|
line := cc.buf[cc.start : cc.searchFrom+nlidx]
|
|
|
|
cc.start = cc.searchFrom + nlidx + 1
|
|
|
|
cc.searchFrom = cc.start
|
|
|
|
if globalUtf8EnforcementSetting && !utf8.Valid(line) {
|
|
|
|
return line, errInvalidUtf8
|
|
|
|
} else {
|
|
|
|
return line, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if cc.start == 0 && len(cc.buf) == maxReadQBytes {
|
|
|
|
return nil, errReadQ // out of space, can't expand or slide
|
|
|
|
}
|
|
|
|
|
|
|
|
if cc.eof {
|
|
|
|
return nil, io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(cc.buf) < maxReadQBytes && (len(cc.buf)-(cc.end-cc.start) < initialBufferSize/2) {
|
|
|
|
// allocate a new buffer, copy any remaining data
|
|
|
|
newLen := utils.RoundUpToPowerOfTwo(len(cc.buf) + 1)
|
|
|
|
if newLen > maxReadQBytes {
|
|
|
|
newLen = maxReadQBytes
|
|
|
|
} else if newLen < initialBufferSize {
|
|
|
|
newLen = initialBufferSize
|
|
|
|
}
|
|
|
|
newBuf := make([]byte, newLen)
|
|
|
|
copy(newBuf, cc.buf[cc.start:cc.end])
|
|
|
|
cc.buf = newBuf
|
|
|
|
} else if cc.start != 0 {
|
|
|
|
// slide remaining data back to the front of the buffer
|
|
|
|
copy(cc.buf, cc.buf[cc.start:cc.end])
|
|
|
|
}
|
|
|
|
cc.end = cc.end - cc.start
|
|
|
|
cc.start = 0
|
|
|
|
|
|
|
|
cc.searchFrom = cc.end
|
|
|
|
n, err := cc.conn.Read(cc.buf[cc.end:])
|
|
|
|
cc.end += n
|
|
|
|
if n != 0 && err == io.EOF {
|
|
|
|
// we may have received new \n-terminated lines, try to parse them
|
|
|
|
cc.eof = true
|
|
|
|
} else if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-05-05 04:29:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (cc *IRCStreamConn) Close() (err error) {
|
|
|
|
return cc.conn.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// IRCWSConn is an IRCConn over a websocket.
|
|
|
|
type IRCWSConn struct {
|
|
|
|
conn *websocket.Conn
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewIRCWSConn(conn *websocket.Conn) IRCWSConn {
|
|
|
|
return IRCWSConn{conn: conn}
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
func (wc IRCWSConn) UnderlyingConn() *utils.WrappedConn {
|
|
|
|
// just assume that the type is OK
|
|
|
|
wConn, _ := wc.conn.UnderlyingConn().(*utils.WrappedConn)
|
|
|
|
return wConn
|
2020-05-05 04:29:10 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
func (wc IRCWSConn) WriteLine(buf []byte) (err error) {
|
2020-05-05 04:29:10 +02:00
|
|
|
buf = bytes.TrimSuffix(buf, crlf)
|
2020-06-22 20:54:43 +02:00
|
|
|
if !globalUtf8EnforcementSetting && !utf8.Valid(buf) {
|
|
|
|
// there's not much we can do about this;
|
|
|
|
// silently drop the message
|
2020-05-05 04:29:10 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return wc.conn.WriteMessage(websocket.TextMessage, buf)
|
|
|
|
}
|
|
|
|
|
2020-05-05 23:20:50 +02:00
|
|
|
func (wc IRCWSConn) WriteLines(buffers [][]byte) (err error) {
|
2020-05-05 04:29:10 +02:00
|
|
|
for _, buf := range buffers {
|
2020-05-05 23:20:50 +02:00
|
|
|
err = wc.WriteLine(buf)
|
2020-05-05 04:29:10 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wc IRCWSConn) ReadLine() (line []byte, err error) {
|
2020-08-05 21:00:39 +02:00
|
|
|
messageType, line, err := wc.conn.ReadMessage()
|
|
|
|
if err == nil {
|
|
|
|
if messageType == websocket.TextMessage {
|
|
|
|
return line, nil
|
|
|
|
} else {
|
|
|
|
// for purposes of fakelag, treat non-text message as an empty line
|
|
|
|
return nil, nil
|
2020-05-05 04:29:10 +02:00
|
|
|
}
|
2020-08-05 21:00:39 +02:00
|
|
|
} else if err == websocket.ErrReadLimit {
|
|
|
|
return line, errReadQ
|
|
|
|
} else {
|
|
|
|
return line, err
|
2020-05-05 04:29:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wc IRCWSConn) Close() (err error) {
|
|
|
|
return wc.conn.Close()
|
|
|
|
}
|