gopenfusion/internal/protocol/cnpeer.go

151 lines
3.2 KiB
Go
Raw Normal View History

package protocol
2023-03-05 08:14:36 +00:00
import (
"encoding/binary"
"fmt"
"io"
2023-03-05 08:14:36 +00:00
"log"
"net"
2023-06-25 23:29:31 +00:00
"time"
2023-08-23 23:16:24 +00:00
"github.com/CPunch/gopenfusion/internal/protocol/pool"
2023-03-05 08:14:36 +00:00
)
const (
USE_E = iota
USE_FE
)
// CNPeer is a simple wrapper for net.Conn connections to send/recv packets over the Fusionfall packet protocol.
type CNPeer struct {
conn net.Conn
2023-06-25 06:51:21 +00:00
eRecv chan *Event
SzID string
E_key []byte
FE_key []byte
AccountID int
2023-06-25 03:36:04 +00:00
PlayerID int32
whichKey int
alive bool
2023-03-05 08:14:36 +00:00
}
2023-06-25 23:29:31 +00:00
func GetTime() uint64 {
return uint64(time.Now().UnixMilli())
}
2023-06-25 06:51:21 +00:00
func NewCNPeer(eRecv chan *Event, conn net.Conn) *CNPeer {
return &CNPeer{
conn: conn,
2023-06-25 06:51:21 +00:00
eRecv: eRecv,
SzID: "",
E_key: []byte(DEFAULT_KEY),
FE_key: nil,
AccountID: -1,
whichKey: USE_E,
alive: true,
2023-03-05 08:14:36 +00:00
}
}
func (peer *CNPeer) Send(typeID uint32, data ...interface{}) error {
// grab buffer from pool
buf := pool.Get()
defer pool.Put(buf)
// allocate space for packet size
buf.Write(make([]byte, 4))
// body start
pkt := NewPacket(buf)
2023-03-05 08:14:36 +00:00
// encode type id
if err := pkt.Encode(typeID); err != nil {
return err
}
2023-03-05 08:14:36 +00:00
// encode data
for _, trailer := range data {
if err := pkt.Encode(trailer); err != nil {
return err
}
}
2023-03-05 08:14:36 +00:00
// prepend the packet size
binary.LittleEndian.PutUint32(buf.Bytes()[:4], uint32(buf.Len()-4))
// encrypt body
switch peer.whichKey {
case USE_E:
EncryptData(buf.Bytes()[4:], peer.E_key)
case USE_FE:
EncryptData(buf.Bytes()[4:], peer.FE_key)
}
// send full packet
log.Printf("Sending %#v, sizeof: %d, buffer: %v", data, buf.Len(), buf.Bytes())
if _, err := peer.conn.Write(buf.Bytes()); err != nil {
return fmt.Errorf("failed to write packet body! %v", err)
2023-03-05 08:14:36 +00:00
}
return nil
2023-03-05 08:14:36 +00:00
}
func (peer *CNPeer) SetActiveKey(whichKey int) {
peer.whichKey = whichKey
}
func (peer *CNPeer) Kill() {
2023-06-25 06:51:21 +00:00
log.Printf("Killing peer %p", peer)
if !peer.alive {
return
}
peer.alive = false
peer.conn.Close()
2023-06-25 06:51:21 +00:00
peer.eRecv <- &Event{Type: EVENT_CLIENT_DISCONNECT, Peer: peer}
}
// meant to be invoked as a goroutine
func (peer *CNPeer) Handler() {
defer peer.Kill()
2023-03-05 08:14:36 +00:00
for {
// read packet size, the goroutine spends most of it's time parked here
var sz uint32
if err := binary.Read(peer.conn, binary.LittleEndian, &sz); err != nil {
log.Printf("[FATAL] failed to read packet size! %v\n", err)
return
2023-03-05 08:14:36 +00:00
}
2023-03-07 00:39:41 +00:00
// client should never send a packet size outside of this range
if sz > CN_PACKET_BUFFER_SIZE || sz < 4 {
log.Printf("[FATAL] malicious packet size received! %d", sz)
return
2023-03-07 00:39:41 +00:00
}
// grab buffer && read packet body
if err := func() error {
buf := pool.Get()
if _, err := buf.ReadFrom(io.LimitReader(peer.conn, int64(sz))); err != nil {
return fmt.Errorf("failed to read packet body! %v", err)
}
// decrypt
DecryptData(buf.Bytes(), peer.E_key)
pkt := NewPacket(buf)
2023-06-25 06:51:21 +00:00
// create packet && read pktID
var pktID uint32
if err := pkt.Decode(&pktID); err != nil {
return fmt.Errorf("failed to read packet type! %v", err)
}
// dispatch packet
2023-06-25 06:51:21 +00:00
log.Printf("Got packet ID: %x, with a sizeof: %d\n", pktID, sz)
peer.eRecv <- &Event{Type: EVENT_CLIENT_PACKET, Peer: peer, Pkt: buf, PktID: pktID}
return nil
}(); err != nil {
log.Printf("[FATAL] %v", err)
return
}
2023-03-05 08:14:36 +00:00
}
}