gopenfusion/server/peer.go

130 lines
2.8 KiB
Go
Raw Normal View History

package server
2023-03-05 08:14:36 +00:00
import (
"encoding/binary"
"fmt"
"log"
"net"
2023-03-10 07:02:28 +00:00
"github.com/CPunch/gopenfusion/db"
"github.com/CPunch/gopenfusion/protocol"
2023-03-05 08:14:36 +00:00
)
const (
USE_E = iota
USE_FE
)
2023-03-09 22:42:13 +00:00
type PeerHandler interface {
HandlePacket(client *Peer, typeID uint32, pkt *protocol.Packet)
Connect(client *Peer)
Disconnect(client *Peer)
}
2023-03-09 22:42:13 +00:00
type Peer struct {
E_key []byte
FE_key []byte
SzID string
AccountID int
Player *db.Player
2023-03-09 22:42:13 +00:00
handler PeerHandler
conn net.Conn
alive bool
whichKey int
2023-03-05 08:14:36 +00:00
}
2023-03-09 22:42:13 +00:00
func NewPeer(handler PeerHandler, conn net.Conn) *Peer {
return &Peer{
E_key: []byte(protocol.DEFAULT_KEY),
FE_key: nil,
SzID: "",
AccountID: -1,
Player: nil,
handler: handler,
conn: conn,
alive: true,
whichKey: USE_E,
2023-03-05 08:14:36 +00:00
}
}
2023-03-09 22:42:13 +00:00
func (client *Peer) Send(data interface{}, typeID uint32) {
2023-03-05 08:14:36 +00:00
// encode
pkt := protocol.NewPacket(make([]byte, 0))
2023-03-05 08:14:36 +00:00
pkt.Encode(data)
2023-03-07 00:39:41 +00:00
log.Printf("Sending %#v, sizeof: %d", data, len(pkt.Buf))
2023-03-05 08:14:36 +00:00
// write packet size
2023-03-07 00:39:41 +00:00
tmp := make([]byte, 4)
2023-03-05 08:14:36 +00:00
binary.LittleEndian.PutUint32(tmp, uint32(len(pkt.Buf)+4))
if _, err := client.conn.Write(tmp); err != nil {
panic(fmt.Errorf("[FATAL] failed to write packet size! %v", err))
}
// prepend the typeID to the packet body
binary.LittleEndian.PutUint32(tmp, uint32(typeID))
2023-03-07 00:39:41 +00:00
tmp = append(tmp, pkt.Buf...)
2023-03-05 08:14:36 +00:00
2023-03-07 00:39:41 +00:00
// encrypt typeID & body
switch client.whichKey {
case USE_E:
protocol.EncryptData(tmp, client.E_key)
case USE_FE:
protocol.EncryptData(tmp, client.FE_key)
}
2023-03-05 08:14:36 +00:00
// write packet body
2023-03-07 00:39:41 +00:00
if _, err := client.conn.Write(tmp); err != nil {
2023-03-05 08:14:36 +00:00
panic(fmt.Errorf("[FATAL] failed to write packet body! %v", err))
}
}
2023-03-09 22:42:13 +00:00
func (client *Peer) Kill() {
if !client.alive {
return
}
client.alive = false
client.conn.Close()
client.handler.Disconnect(client)
}
2023-03-09 22:42:13 +00:00
func (client *Peer) ClientHandler() {
2023-03-05 08:14:36 +00:00
defer func() {
2023-03-05 08:32:11 +00:00
if err := recover(); err != nil {
log.Printf("Client %p panic'd! %v", client, err)
}
client.Kill()
2023-03-05 08:14:36 +00:00
}()
tmp := make([]byte, 4, protocol.CN_PACKET_BUFFER_SIZE)
2023-03-05 08:14:36 +00:00
for {
// read packet size
if _, err := client.conn.Read(tmp); err != nil {
panic(fmt.Errorf("[FATAL] failed to read packet size! %v", err))
}
sz := int(binary.LittleEndian.Uint32(tmp))
2023-03-07 00:39:41 +00:00
// client should never send a packet size outside of this range
if sz > protocol.CN_PACKET_BUFFER_SIZE || sz < 4 {
2023-03-07 00:39:41 +00:00
panic(fmt.Errorf("[FATAL] malicious packet size received! %d", sz))
}
2023-03-05 08:14:36 +00:00
// read packet body
2023-03-07 00:39:41 +00:00
if _, err := client.conn.Read(tmp[:sz]); err != nil {
2023-03-05 08:14:36 +00:00
panic(fmt.Errorf("[FATAL] failed to read packet body! %v", err))
}
// decrypt && grab typeID
protocol.DecryptData(tmp[:sz], client.E_key)
2023-03-07 08:06:40 +00:00
typeID := uint32(binary.LittleEndian.Uint32(tmp[:4]))
2023-03-05 08:14:36 +00:00
2023-03-07 08:06:40 +00:00
// dispatch packet
2023-03-07 00:39:41 +00:00
log.Printf("Got packet ID: %x, with a sizeof: %d\n", typeID, sz)
pkt := protocol.NewPacket(tmp[4:sz])
client.handler.HandlePacket(client, typeID, pkt)
2023-03-07 00:39:41 +00:00
// reset tmp
tmp = tmp[:4]
2023-03-05 08:14:36 +00:00
}
}