2016-03-05 02:08:16 +03:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2017-10-01 05:34:25 +03:00
|
|
|
"bytes"
|
2016-03-29 15:53:53 +03:00
|
|
|
"encoding/binary"
|
2016-03-05 02:08:16 +03:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"strings"
|
2016-03-29 15:53:53 +03:00
|
|
|
"time"
|
2016-03-05 02:08:16 +03:00
|
|
|
|
2016-03-06 17:55:00 +03:00
|
|
|
"github.com/tidwall/tile38/controller/log"
|
|
|
|
"github.com/tidwall/tile38/core"
|
2016-03-05 02:08:16 +03:00
|
|
|
)
|
|
|
|
|
2016-03-08 03:37:39 +03:00
|
|
|
// This phrase is copied nearly verbatim from Redis.
|
2017-10-05 01:58:52 +03:00
|
|
|
var deniedMessage = []byte(strings.Replace(strings.TrimSpace(`
|
|
|
|
-DENIED Tile38 is running in protected mode because protected mode is enabled,
|
|
|
|
no bind address was specified, no authentication password is requested to
|
|
|
|
clients. In this mode connections are only accepted from the loopback
|
|
|
|
interface. If you want to connect from external computers to Tile38 you may
|
|
|
|
adopt one of the following solutions: 1) Just disable protected mode sending
|
|
|
|
the command 'CONFIG SET protected-mode no' from the loopback interface by
|
|
|
|
connecting to Tile38 from the same host the server is running, however MAKE
|
|
|
|
SURE Tile38 is not publicly accessible from internet if you do so. Use CONFIG
|
|
|
|
REWRITE to make this change permanent. 2) Alternatively you can just disable
|
|
|
|
the protected mode by editing the Tile38 configuration file, and setting the
|
|
|
|
protected mode option to 'no', and then restarting the server. 3) If you
|
|
|
|
started the server manually just for testing, restart it with the
|
|
|
|
'--protected-mode no' option. 4) Setup a bind address or an authentication
|
|
|
|
password. NOTE: You only need to do one of the above things in order for the
|
|
|
|
server to start accepting connections from the outside.
|
|
|
|
`), "\n", " ", -1) + "\r\n")
|
2016-03-08 03:37:39 +03:00
|
|
|
|
2016-04-03 05:16:36 +03:00
|
|
|
// Conn represents a server connection.
|
2016-03-08 03:37:39 +03:00
|
|
|
type Conn struct {
|
|
|
|
net.Conn
|
|
|
|
Authenticated bool
|
|
|
|
}
|
|
|
|
|
2017-10-01 05:34:25 +03:00
|
|
|
// SetKeepAlive sets the connection keepalive
|
2017-02-09 20:01:59 +03:00
|
|
|
func (conn Conn) SetKeepAlive(period time.Duration) error {
|
|
|
|
if tcp, ok := conn.Conn.(*net.TCPConn); ok {
|
|
|
|
if err := tcp.SetKeepAlive(true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return tcp.SetKeepAlivePeriod(period)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-03-05 02:08:16 +03:00
|
|
|
var errCloseHTTP = errors.New("close http")
|
|
|
|
|
|
|
|
// ListenAndServe starts a tile38 server at the specified address.
|
|
|
|
func ListenAndServe(
|
2016-03-05 23:39:36 +03:00
|
|
|
host string, port int,
|
2016-03-08 03:37:39 +03:00
|
|
|
protected func() bool,
|
2017-10-01 05:34:25 +03:00
|
|
|
handler func(conn *Conn, msg *Message, rd *PipelineReader, w io.Writer, websocket bool) error,
|
2016-08-26 22:54:19 +03:00
|
|
|
opened func(conn *Conn),
|
|
|
|
closed func(conn *Conn),
|
2016-09-09 02:11:53 +03:00
|
|
|
lnp *net.Listener,
|
2017-01-13 18:45:28 +03:00
|
|
|
http bool,
|
2016-03-05 02:08:16 +03:00
|
|
|
) error {
|
2016-03-05 23:39:36 +03:00
|
|
|
ln, err := net.Listen("tcp", fmt.Sprintf("%s:%d", host, port))
|
2016-03-05 02:08:16 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-09-09 02:11:53 +03:00
|
|
|
if lnp != nil {
|
|
|
|
*lnp = ln
|
|
|
|
}
|
2016-03-05 02:08:16 +03:00
|
|
|
log.Infof("The server is now ready to accept connections on port %d", port)
|
|
|
|
for {
|
|
|
|
conn, err := ln.Accept()
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err)
|
2016-09-09 02:11:53 +03:00
|
|
|
return err
|
2016-03-05 02:08:16 +03:00
|
|
|
}
|
2017-01-13 18:45:28 +03:00
|
|
|
go handleConn(&Conn{Conn: conn}, protected, handler, opened, closed, http)
|
2016-03-05 02:08:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func handleConn(
|
2016-03-08 03:37:39 +03:00
|
|
|
conn *Conn,
|
|
|
|
protected func() bool,
|
2017-10-01 05:34:25 +03:00
|
|
|
handler func(conn *Conn, msg *Message, rd *PipelineReader, w io.Writer, websocket bool) error,
|
2016-08-26 22:54:19 +03:00
|
|
|
opened func(conn *Conn),
|
|
|
|
closed func(conn *Conn),
|
2017-01-13 18:45:28 +03:00
|
|
|
http bool,
|
2016-03-05 02:08:16 +03:00
|
|
|
) {
|
2016-03-08 16:11:03 +03:00
|
|
|
addr := conn.RemoteAddr().String()
|
2017-10-01 05:34:25 +03:00
|
|
|
opened(conn)
|
2016-03-06 17:55:00 +03:00
|
|
|
if core.ShowDebugMessages {
|
2016-03-05 02:08:16 +03:00
|
|
|
log.Debugf("opened connection: %s", addr)
|
2016-03-08 16:11:03 +03:00
|
|
|
}
|
2017-10-01 05:34:25 +03:00
|
|
|
defer func() {
|
|
|
|
conn.Close()
|
|
|
|
closed(conn)
|
|
|
|
if core.ShowDebugMessages {
|
|
|
|
log.Debugf("closed connection: %s", addr)
|
|
|
|
}
|
|
|
|
}()
|
2016-03-08 16:11:03 +03:00
|
|
|
if !strings.HasPrefix(addr, "127.0.0.1:") && !strings.HasPrefix(addr, "[::1]:") {
|
|
|
|
if protected() {
|
|
|
|
// This is a protected server. Only loopback is allowed.
|
|
|
|
conn.Write(deniedMessage)
|
|
|
|
return
|
2016-03-08 03:37:39 +03:00
|
|
|
}
|
2016-03-05 02:08:16 +03:00
|
|
|
}
|
2017-10-01 05:34:25 +03:00
|
|
|
|
|
|
|
wr := &bytes.Buffer{}
|
2016-03-29 22:29:15 +03:00
|
|
|
outputType := Null
|
2017-10-01 05:34:25 +03:00
|
|
|
rd := NewPipelineReader(conn)
|
2016-03-28 18:57:41 +03:00
|
|
|
for {
|
2017-10-01 05:34:25 +03:00
|
|
|
wr.Reset()
|
|
|
|
ok := func() bool {
|
|
|
|
msgs, err := rd.ReadMessages()
|
2016-03-28 18:57:41 +03:00
|
|
|
if err != nil {
|
2017-10-01 05:34:25 +03:00
|
|
|
if err == io.EOF {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if err == errCloseHTTP ||
|
|
|
|
strings.Contains(err.Error(), "use of closed network connection") {
|
|
|
|
return false
|
|
|
|
}
|
2016-03-28 18:57:41 +03:00
|
|
|
log.Error(err)
|
2017-10-01 05:34:25 +03:00
|
|
|
return false
|
2016-03-28 18:57:41 +03:00
|
|
|
}
|
2017-10-01 05:34:25 +03:00
|
|
|
for _, msg := range msgs {
|
|
|
|
// Just closing connection if we have deprecated HTTP or WS connection,
|
|
|
|
// And --http-transport = false
|
|
|
|
if !http && (msg.ConnType == WebSocket || msg.ConnType == HTTP) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if msg != nil && msg.Command != "" {
|
|
|
|
if outputType != Null {
|
|
|
|
msg.OutputType = outputType
|
|
|
|
}
|
|
|
|
if msg.Command == "quit" {
|
|
|
|
if msg.OutputType == RESP {
|
|
|
|
io.WriteString(wr, "+OK\r\n")
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
err := handler(conn, msg, rd, wr, msg.ConnType == WebSocket)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
outputType = msg.OutputType
|
|
|
|
} else {
|
|
|
|
wr.Write([]byte("HTTP/1.1 500 Bad Request\r\nConnection: close\r\n\r\n"))
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if msg.ConnType == HTTP || msg.ConnType == WebSocket {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}()
|
|
|
|
conn.Write(wr.Bytes())
|
|
|
|
if !ok {
|
|
|
|
break
|
2016-03-28 18:57:41 +03:00
|
|
|
}
|
2016-03-05 02:08:16 +03:00
|
|
|
}
|
2017-10-01 05:34:25 +03:00
|
|
|
// all done
|
2016-03-05 02:08:16 +03:00
|
|
|
}
|
2016-03-28 18:57:41 +03:00
|
|
|
|
2016-04-03 05:16:36 +03:00
|
|
|
// WriteWebSocketMessage write a websocket message to an io.Writer.
|
2016-03-29 15:53:53 +03:00
|
|
|
func WriteWebSocketMessage(w io.Writer, data []byte) error {
|
|
|
|
var msg []byte
|
|
|
|
buf := make([]byte, 10+len(data))
|
|
|
|
buf[0] = 129 // FIN + TEXT
|
|
|
|
if len(data) <= 125 {
|
|
|
|
buf[1] = byte(len(data))
|
|
|
|
copy(buf[2:], data)
|
|
|
|
msg = buf[:2+len(data)]
|
|
|
|
} else if len(data) <= 0xFFFF {
|
|
|
|
buf[1] = 126
|
|
|
|
binary.BigEndian.PutUint16(buf[2:], uint16(len(data)))
|
|
|
|
copy(buf[4:], data)
|
|
|
|
msg = buf[:4+len(data)]
|
|
|
|
} else {
|
|
|
|
buf[1] = 127
|
|
|
|
binary.BigEndian.PutUint64(buf[2:], uint64(len(data)))
|
|
|
|
copy(buf[10:], data)
|
|
|
|
msg = buf[:10+len(data)]
|
|
|
|
}
|
|
|
|
_, err := w.Write(msg)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-04-03 05:16:36 +03:00
|
|
|
// OKMessage returns a default OK message in JSON or RESP.
|
2016-03-29 15:53:53 +03:00
|
|
|
func OKMessage(msg *Message, start time.Time) string {
|
|
|
|
switch msg.OutputType {
|
|
|
|
case JSON:
|
|
|
|
return `{"ok":true,"elapsed":"` + time.Now().Sub(start).String() + "\"}"
|
|
|
|
case RESP:
|
|
|
|
return "+OK\r\n"
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|