croc/src/client.go

152 lines
3.2 KiB
Go
Raw Normal View History

2018-06-29 15:23:00 +02:00
package croc
import (
"errors"
"net/url"
"os"
"os/signal"
"time"
log "github.com/cihub/seelog"
"github.com/gorilla/websocket"
)
func (c *Croc) client(role int) (err error) {
defer log.Flush()
2018-06-29 16:35:25 +02:00
codePhrase := "chou"
2018-06-29 15:23:00 +02:00
// initialize the channel data for this client
c.cs.Lock()
2018-06-29 16:35:25 +02:00
c.cs.channel.codePhrase = codePhrase
2018-06-30 02:29:11 +02:00
if len(codePhrase) > 0 {
if len(codePhrase) < 4 {
err = errors.New("code phrase must be more than 4 characters")
return
}
c.cs.channel.Channel = codePhrase[:3]
c.cs.channel.passPhrase = codePhrase[3:]
}
2018-06-29 15:23:00 +02:00
c.cs.Unlock()
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, os.Interrupt)
// connect to the websocket
// TODO:
// use predefined host and HTTPS, if exists
u := url.URL{Scheme: "ws", Host: "localhost:8003", Path: "/"}
log.Debugf("connecting to %s", u.String())
ws, _, err := websocket.DefaultDialer.Dial(u.String(), nil)
if err != nil {
log.Error("dial:", err)
return
}
defer ws.Close()
// read in the messages and process them
done := make(chan struct{})
go func() {
defer close(done)
for {
var cd channelData
err := ws.ReadJSON(&cd)
if err != nil {
log.Debugf("sender read error:", err)
return
}
2018-06-29 16:35:25 +02:00
log.Debugf("recv: %s", cd)
2018-06-29 15:23:00 +02:00
err = c.processState(cd)
if err != nil {
log.Warn(err)
return
}
}
}()
// initialize by joining as corresponding role
// TODO:
// allowing suggesting a channel
2018-06-29 16:35:25 +02:00
p := payload{
Open: true,
Role: role,
Channel: channel,
}
log.Debugf("sending opening payload: %+v", p)
err = ws.WriteJSON(p)
2018-06-29 15:23:00 +02:00
if err != nil {
log.Errorf("problem opening: %s", err.Error())
return
}
for {
select {
case <-done:
return
case <-interrupt:
// send Close signal to relay on interrupt
log.Debugf("interrupt")
c.cs.Lock()
channel := c.cs.channel.Channel
uuid := c.cs.channel.UUID
c.cs.Unlock()
// Cleanly close the connection by sending a close message and then
// waiting (with timeout) for the server to close the connection.
log.Debug("sending close signal")
errWrite := ws.WriteJSON(payload{
Channel: channel,
UUID: uuid,
Close: true,
})
if errWrite != nil {
log.Debugf("write close:", err)
return
}
select {
case <-done:
case <-time.After(time.Second):
}
return
}
}
return
}
func (c *Croc) processState(cd channelData) (err error) {
c.cs.Lock()
defer c.cs.Unlock()
// first check if there is relay reported error
if cd.Error != "" {
err = errors.New(cd.Error)
return
}
// TODO:
// check if the state is not aligned (i.e. have h(k) but no hh(k))
// throw error if not aligned so it can exit
// first update the channel data
// initialize if has UUID
if cd.UUID != "" {
c.cs.channel.UUID = cd.UUID
c.cs.channel.Channel = cd.Channel
c.cs.channel.Role = cd.Role
log.Debugf("initialized client state")
2018-06-29 16:35:25 +02:00
return
2018-06-29 15:23:00 +02:00
}
// copy over the rest of the state
if cd.TransferReady {
c.cs.channel.TransferReady = true
}
2018-06-29 16:35:25 +02:00
c.cs.channel.Ports = cd.Ports
2018-06-29 15:23:00 +02:00
// TODO:
// process the client state
2018-06-29 16:35:25 +02:00
log.Debugf("processing client state: %+v", c.cs.channel.String2())
if c.cs.channel.Role == 0 {
// processing for sender
} else if c.cs.channel.Role == 1 {
// processing for recipient
}
2018-06-29 15:23:00 +02:00
return
}