2019-08-06 13:45:25 +03:00
|
|
|
package tunnel
|
|
|
|
|
2019-08-07 20:44:33 +03:00
|
|
|
import (
|
2020-03-11 20:55:39 +03:00
|
|
|
"crypto/cipher"
|
2020-03-09 20:10:08 +03:00
|
|
|
"encoding/base32"
|
2019-08-30 22:05:00 +03:00
|
|
|
"io"
|
2020-03-11 20:55:39 +03:00
|
|
|
"sync"
|
2019-09-04 11:48:05 +03:00
|
|
|
"time"
|
2019-08-06 13:45:25 +03:00
|
|
|
|
2020-03-11 20:55:39 +03:00
|
|
|
"github.com/micro/go-micro/v2/logger"
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/transport"
|
2019-08-07 20:44:33 +03:00
|
|
|
)
|
2019-08-06 13:45:25 +03:00
|
|
|
|
2019-08-30 22:05:00 +03:00
|
|
|
// session is our pseudo session for transport.Socket
|
|
|
|
type session struct {
|
2019-09-03 17:56:37 +03:00
|
|
|
// the tunnel id
|
|
|
|
tunnel string
|
2019-08-30 22:05:00 +03:00
|
|
|
// the channel name
|
|
|
|
channel string
|
2019-08-07 20:44:33 +03:00
|
|
|
// the session id based on Micro.Tunnel-Session
|
|
|
|
session string
|
2019-11-25 21:56:00 +03:00
|
|
|
// token is the session token
|
|
|
|
token string
|
2019-08-07 20:44:33 +03:00
|
|
|
// closed
|
|
|
|
closed chan bool
|
|
|
|
// remote addr
|
|
|
|
remote string
|
|
|
|
// local addr
|
|
|
|
local string
|
|
|
|
// send chan
|
|
|
|
send chan *message
|
|
|
|
// recv chan
|
|
|
|
recv chan *message
|
2019-09-04 11:48:05 +03:00
|
|
|
// if the discovery worked
|
|
|
|
discovered bool
|
|
|
|
// if the session was accepted
|
|
|
|
accepted bool
|
2019-08-30 22:05:00 +03:00
|
|
|
// outbound marks the session as outbound dialled connection
|
2019-08-14 19:14:39 +03:00
|
|
|
outbound bool
|
2019-08-30 22:05:00 +03:00
|
|
|
// lookback marks the session as a loopback on the inbound
|
2019-08-29 01:12:22 +03:00
|
|
|
loopback bool
|
2019-10-15 17:40:04 +03:00
|
|
|
// mode of the connection
|
|
|
|
mode Mode
|
2019-12-08 02:28:39 +03:00
|
|
|
// the dial timeout
|
|
|
|
dialTimeout time.Duration
|
|
|
|
// the read timeout
|
|
|
|
readTimeout time.Duration
|
2019-08-29 14:42:27 +03:00
|
|
|
// the link on which this message was received
|
|
|
|
link string
|
2019-08-30 22:05:00 +03:00
|
|
|
// the error response
|
|
|
|
errChan chan error
|
2020-02-24 17:15:20 +03:00
|
|
|
// key for session encryption
|
2020-03-09 20:10:08 +03:00
|
|
|
key []byte
|
2020-03-11 20:55:39 +03:00
|
|
|
// cipher for session
|
|
|
|
gcm cipher.AEAD
|
|
|
|
sync.RWMutex
|
2019-08-06 13:45:25 +03:00
|
|
|
}
|
|
|
|
|
2019-08-07 20:44:33 +03:00
|
|
|
// message is sent over the send channel
|
|
|
|
type message struct {
|
2019-08-29 14:42:27 +03:00
|
|
|
// type of message
|
|
|
|
typ string
|
2019-08-07 20:44:33 +03:00
|
|
|
// tunnel id
|
2019-09-03 17:56:37 +03:00
|
|
|
tunnel string
|
2019-08-30 22:05:00 +03:00
|
|
|
// channel name
|
|
|
|
channel string
|
2019-08-07 20:44:33 +03:00
|
|
|
// the session id
|
|
|
|
session string
|
2019-08-14 19:14:39 +03:00
|
|
|
// outbound marks the message as outbound
|
|
|
|
outbound bool
|
2019-08-29 01:12:22 +03:00
|
|
|
// loopback marks the message intended for loopback
|
|
|
|
loopback bool
|
2019-10-15 17:40:04 +03:00
|
|
|
// mode of the connection
|
|
|
|
mode Mode
|
2019-08-29 14:42:27 +03:00
|
|
|
// the link to send the message on
|
|
|
|
link string
|
2019-08-07 20:44:33 +03:00
|
|
|
// transport data
|
|
|
|
data *transport.Message
|
2019-08-30 22:05:00 +03:00
|
|
|
// the error channel
|
|
|
|
errChan chan error
|
2019-08-07 20:44:33 +03:00
|
|
|
}
|
|
|
|
|
2019-08-30 22:05:00 +03:00
|
|
|
func (s *session) Remote() string {
|
2019-08-07 20:44:33 +03:00
|
|
|
return s.remote
|
|
|
|
}
|
|
|
|
|
2019-08-30 22:05:00 +03:00
|
|
|
func (s *session) Local() string {
|
2019-08-07 20:44:33 +03:00
|
|
|
return s.local
|
2019-08-06 13:45:25 +03:00
|
|
|
}
|
|
|
|
|
2019-09-11 22:07:43 +03:00
|
|
|
func (s *session) Link() string {
|
|
|
|
return s.link
|
|
|
|
}
|
|
|
|
|
2019-08-30 22:05:00 +03:00
|
|
|
func (s *session) Id() string {
|
|
|
|
return s.session
|
2019-08-07 20:44:33 +03:00
|
|
|
}
|
|
|
|
|
2019-08-30 22:05:00 +03:00
|
|
|
func (s *session) Channel() string {
|
|
|
|
return s.channel
|
2019-08-07 20:44:33 +03:00
|
|
|
}
|
|
|
|
|
2019-09-04 14:18:37 +03:00
|
|
|
// newMessage creates a new message based on the session
|
2019-09-04 14:16:31 +03:00
|
|
|
func (s *session) newMessage(typ string) *message {
|
|
|
|
return &message{
|
2019-10-15 17:40:04 +03:00
|
|
|
typ: typ,
|
|
|
|
tunnel: s.tunnel,
|
|
|
|
channel: s.channel,
|
|
|
|
session: s.session,
|
|
|
|
outbound: s.outbound,
|
|
|
|
loopback: s.loopback,
|
|
|
|
mode: s.mode,
|
|
|
|
link: s.link,
|
|
|
|
errChan: s.errChan,
|
2019-09-04 11:48:05 +03:00
|
|
|
}
|
2019-09-04 14:16:31 +03:00
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
func (s *session) sendMsg(msg *message) error {
|
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
return io.EOF
|
|
|
|
case s.send <- msg:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *session) wait(msg *message) error {
|
|
|
|
// wait for an error response
|
|
|
|
select {
|
|
|
|
case err := <-msg.errChan:
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
case <-s.closed:
|
|
|
|
return io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-25 16:16:22 +03:00
|
|
|
// waitFor waits for the message type required until the timeout specified
|
2019-10-25 16:22:38 +03:00
|
|
|
func (s *session) waitFor(msgType string, timeout time.Duration) (*message, error) {
|
2019-10-25 16:16:22 +03:00
|
|
|
now := time.Now()
|
|
|
|
|
2019-12-08 02:28:39 +03:00
|
|
|
after := func(timeout time.Duration) <-chan time.Time {
|
|
|
|
if timeout < time.Duration(0) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the delta
|
2019-10-25 16:16:22 +03:00
|
|
|
d := time.Since(now)
|
2019-12-08 02:28:39 +03:00
|
|
|
|
2019-10-25 16:16:22 +03:00
|
|
|
// dial timeout minus time since
|
|
|
|
wait := timeout - d
|
|
|
|
|
|
|
|
if wait < time.Duration(0) {
|
2019-12-08 02:28:39 +03:00
|
|
|
wait = time.Duration(0)
|
2019-10-25 16:16:22 +03:00
|
|
|
}
|
|
|
|
|
2019-12-08 02:28:39 +03:00
|
|
|
return time.After(wait)
|
2019-10-25 16:16:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// wait for the message type
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case msg := <-s.recv:
|
2019-12-08 02:28:39 +03:00
|
|
|
// there may be no message type
|
|
|
|
if len(msgType) == 0 {
|
|
|
|
return msg, nil
|
|
|
|
}
|
|
|
|
|
2019-10-25 16:16:22 +03:00
|
|
|
// ignore what we don't want
|
|
|
|
if msg.typ != msgType {
|
2020-03-11 20:55:39 +03:00
|
|
|
if logger.V(logger.DebugLevel, log) {
|
|
|
|
log.Debugf("Tunnel received non %s message in waiting for %s", msg.typ, msgType)
|
|
|
|
}
|
2019-10-25 16:16:22 +03:00
|
|
|
continue
|
|
|
|
}
|
2019-12-08 02:28:39 +03:00
|
|
|
|
2019-10-25 16:16:22 +03:00
|
|
|
// got the message
|
2019-10-25 16:22:38 +03:00
|
|
|
return msg, nil
|
2019-12-08 02:28:39 +03:00
|
|
|
case <-after(timeout):
|
|
|
|
return nil, ErrReadTimeout
|
2019-10-25 16:16:22 +03:00
|
|
|
case <-s.closed:
|
2020-01-03 23:43:53 +03:00
|
|
|
// check pending message queue
|
|
|
|
select {
|
|
|
|
case msg := <-s.recv:
|
|
|
|
// there may be no message type
|
|
|
|
if len(msgType) == 0 {
|
|
|
|
return msg, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ignore what we don't want
|
|
|
|
if msg.typ != msgType {
|
2020-03-11 20:55:39 +03:00
|
|
|
if logger.V(logger.DebugLevel, log) {
|
|
|
|
log.Debugf("Tunnel received non %s message in waiting for %s", msg.typ, msgType)
|
|
|
|
}
|
2020-01-03 23:43:53 +03:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// got the message
|
|
|
|
return msg, nil
|
|
|
|
default:
|
|
|
|
// non blocking
|
|
|
|
}
|
2019-10-25 16:22:38 +03:00
|
|
|
return nil, io.EOF
|
2019-10-25 16:16:22 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// Discover attempts to discover the link for a specific channel.
|
|
|
|
// This is only used by the tunnel.Dial when first connecting.
|
2019-10-25 16:16:22 +03:00
|
|
|
func (s *session) Discover() error {
|
|
|
|
// create a new discovery message for this channel
|
|
|
|
msg := s.newMessage("discover")
|
2019-12-06 02:11:42 +03:00
|
|
|
// broadcast the message to all links
|
2019-10-25 16:16:22 +03:00
|
|
|
msg.mode = Broadcast
|
2019-12-06 02:11:42 +03:00
|
|
|
// its an outbound connection since we're dialling
|
2019-10-25 16:16:22 +03:00
|
|
|
msg.outbound = true
|
2019-12-06 02:11:42 +03:00
|
|
|
// don't set the link since we don't know where it is
|
2019-10-25 16:16:22 +03:00
|
|
|
msg.link = ""
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// if multicast then set that as session
|
|
|
|
if s.mode == Multicast {
|
|
|
|
msg.session = "multicast"
|
|
|
|
}
|
|
|
|
|
|
|
|
// send discover message
|
|
|
|
if err := s.sendMsg(msg); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-25 16:16:22 +03:00
|
|
|
|
|
|
|
// set time now
|
|
|
|
now := time.Now()
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// after strips down the dial timeout
|
2019-10-25 16:16:22 +03:00
|
|
|
after := func() time.Duration {
|
|
|
|
d := time.Since(now)
|
|
|
|
// dial timeout minus time since
|
2019-12-08 02:28:39 +03:00
|
|
|
wait := s.dialTimeout - d
|
|
|
|
// make sure its always > 0
|
2019-10-25 16:16:22 +03:00
|
|
|
if wait < time.Duration(0) {
|
|
|
|
return time.Duration(0)
|
|
|
|
}
|
|
|
|
return wait
|
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// the discover message is sent out, now
|
2019-10-25 16:16:22 +03:00
|
|
|
// wait to hear back about the sent message
|
|
|
|
select {
|
|
|
|
case <-time.After(after()):
|
|
|
|
return ErrDialTimeout
|
|
|
|
case err := <-s.errChan:
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// bail early if its not unicast
|
|
|
|
// we don't need to wait for the announce
|
2019-10-25 16:16:22 +03:00
|
|
|
if s.mode != Unicast {
|
|
|
|
s.discovered = true
|
|
|
|
s.accepted = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// wait for announce
|
|
|
|
_, err := s.waitFor("announce", after())
|
2019-10-25 16:16:22 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// set discovered
|
|
|
|
s.discovered = true
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-04 14:16:31 +03:00
|
|
|
// Open will fire the open message for the session. This is called by the dialler.
|
2019-12-06 02:11:42 +03:00
|
|
|
// This is to indicate that we want to create a new session.
|
2019-09-04 14:16:31 +03:00
|
|
|
func (s *session) Open() error {
|
|
|
|
// create a new message
|
|
|
|
msg := s.newMessage("open")
|
2019-09-04 11:48:05 +03:00
|
|
|
|
|
|
|
// send open message
|
2019-12-06 02:11:42 +03:00
|
|
|
if err := s.sendMsg(msg); err != nil {
|
|
|
|
return err
|
2019-09-04 11:48:05 +03:00
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// wait for an error response for send
|
|
|
|
if err := s.wait(msg); err != nil {
|
|
|
|
return err
|
2019-09-04 11:48:05 +03:00
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// now wait for the accept message to be returned
|
2019-12-08 02:28:39 +03:00
|
|
|
msg, err := s.waitFor("accept", s.dialTimeout)
|
2019-10-25 16:22:38 +03:00
|
|
|
if err != nil {
|
2019-10-25 16:16:22 +03:00
|
|
|
return err
|
2019-09-04 11:48:05 +03:00
|
|
|
}
|
|
|
|
|
2019-10-25 16:16:22 +03:00
|
|
|
// set to accepted
|
|
|
|
s.accepted = true
|
|
|
|
// set link
|
|
|
|
s.link = msg.link
|
|
|
|
|
2019-09-04 11:48:05 +03:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-04 13:58:03 +03:00
|
|
|
// Accept sends the accept response to an open message from a dialled connection
|
2019-09-04 11:48:05 +03:00
|
|
|
func (s *session) Accept() error {
|
2019-09-04 14:16:31 +03:00
|
|
|
msg := s.newMessage("accept")
|
2019-09-04 11:48:05 +03:00
|
|
|
|
|
|
|
// send the accept message
|
2019-12-06 02:11:42 +03:00
|
|
|
if err := s.sendMsg(msg); err != nil {
|
|
|
|
return err
|
2019-10-15 17:40:04 +03:00
|
|
|
}
|
|
|
|
|
2019-09-04 11:48:05 +03:00
|
|
|
// wait for send response
|
2019-12-06 02:11:42 +03:00
|
|
|
return s.wait(msg)
|
2019-09-04 11:48:05 +03:00
|
|
|
}
|
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// Announce sends an announcement to notify that this session exists.
|
|
|
|
// This is primarily used by the listener.
|
2019-09-04 13:58:03 +03:00
|
|
|
func (s *session) Announce() error {
|
2019-09-04 14:16:31 +03:00
|
|
|
msg := s.newMessage("announce")
|
|
|
|
// we don't need an error back
|
|
|
|
msg.errChan = nil
|
2019-09-05 17:16:11 +03:00
|
|
|
// announce to all
|
2019-10-15 17:40:04 +03:00
|
|
|
msg.mode = Broadcast
|
2019-09-04 14:16:31 +03:00
|
|
|
// we don't need the link
|
|
|
|
msg.link = ""
|
2019-09-04 13:58:03 +03:00
|
|
|
|
2019-12-06 02:11:42 +03:00
|
|
|
// send announce message
|
|
|
|
return s.sendMsg(msg)
|
2019-09-04 13:58:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send is used to send a message
|
2019-08-30 22:05:00 +03:00
|
|
|
func (s *session) Send(m *transport.Message) error {
|
2020-03-11 20:55:39 +03:00
|
|
|
var err error
|
|
|
|
|
|
|
|
s.RLock()
|
|
|
|
gcm := s.gcm
|
|
|
|
s.RUnlock()
|
|
|
|
|
|
|
|
if gcm == nil {
|
|
|
|
gcm, err = newCipher(s.key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
s.Lock()
|
|
|
|
s.gcm = gcm
|
|
|
|
s.Unlock()
|
|
|
|
}
|
2019-11-25 18:34:41 +03:00
|
|
|
// encrypt the transport message payload
|
2020-03-11 20:55:39 +03:00
|
|
|
body, err := Encrypt(gcm, m.Body)
|
2019-11-25 18:34:41 +03:00
|
|
|
if err != nil {
|
2019-11-25 21:56:00 +03:00
|
|
|
log.Debugf("failed to encrypt message body: %v", err)
|
2019-11-25 18:34:41 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-02-24 17:15:20 +03:00
|
|
|
// make copy, without rehash and realloc
|
2019-08-11 20:11:33 +03:00
|
|
|
data := &transport.Message{
|
2020-02-24 17:15:20 +03:00
|
|
|
Header: make(map[string]string, len(m.Header)),
|
2019-11-25 18:34:41 +03:00
|
|
|
Body: body,
|
2019-08-11 20:11:33 +03:00
|
|
|
}
|
|
|
|
|
2019-11-25 21:56:00 +03:00
|
|
|
// encrypt all the headers
|
2019-08-11 20:11:33 +03:00
|
|
|
for k, v := range m.Header {
|
2019-11-25 21:56:00 +03:00
|
|
|
// encrypt the transport message payload
|
2020-03-11 20:55:39 +03:00
|
|
|
val, err := Encrypt(s.gcm, []byte(v))
|
2019-11-25 21:56:00 +03:00
|
|
|
if err != nil {
|
|
|
|
log.Debugf("failed to encrypt message header %s: %v", k, err)
|
|
|
|
return err
|
|
|
|
}
|
2020-03-09 20:10:08 +03:00
|
|
|
// add the encrypted header value
|
|
|
|
data.Header[k] = base32.StdEncoding.EncodeToString(val)
|
2019-08-11 20:11:33 +03:00
|
|
|
}
|
|
|
|
|
2019-09-04 14:16:31 +03:00
|
|
|
// create a new message
|
|
|
|
msg := s.newMessage("session")
|
|
|
|
// set the data
|
|
|
|
msg.data = data
|
2019-09-04 11:48:05 +03:00
|
|
|
|
2019-09-04 14:16:31 +03:00
|
|
|
// if multicast don't set the link
|
2019-12-06 02:11:42 +03:00
|
|
|
if s.mode != Unicast {
|
2019-09-04 14:16:31 +03:00
|
|
|
msg.link = ""
|
2019-09-04 11:48:05 +03:00
|
|
|
}
|
|
|
|
|
2020-03-11 20:55:39 +03:00
|
|
|
if logger.V(logger.TraceLevel, log) {
|
|
|
|
log.Tracef("Appending to send backlog: %v", msg)
|
|
|
|
}
|
2019-12-06 02:11:42 +03:00
|
|
|
// send the actual message
|
|
|
|
if err := s.sendMsg(msg); err != nil {
|
2019-08-30 22:05:00 +03:00
|
|
|
return err
|
|
|
|
}
|
2019-12-06 02:11:42 +03:00
|
|
|
|
|
|
|
// wait for an error response
|
|
|
|
return s.wait(msg)
|
2019-08-06 13:45:25 +03:00
|
|
|
}
|
|
|
|
|
2019-09-04 13:58:03 +03:00
|
|
|
// Recv is used to receive a message
|
2019-08-30 22:05:00 +03:00
|
|
|
func (s *session) Recv(m *transport.Message) error {
|
2019-12-03 11:11:36 +03:00
|
|
|
var msg *message
|
|
|
|
|
2019-12-08 02:28:39 +03:00
|
|
|
msg, err := s.waitFor("", s.readTimeout)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-12-03 11:11:36 +03:00
|
|
|
}
|
2019-08-30 22:05:00 +03:00
|
|
|
|
|
|
|
// check the error if one exists
|
|
|
|
select {
|
|
|
|
case err := <-msg.errChan:
|
|
|
|
return err
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2020-03-11 20:55:39 +03:00
|
|
|
if logger.V(logger.TraceLevel, log) {
|
|
|
|
log.Tracef("Received from recv backlog: %v", msg)
|
|
|
|
}
|
|
|
|
|
|
|
|
gcm, err := newCipher([]byte(s.token + s.channel + msg.session))
|
|
|
|
if err != nil {
|
|
|
|
if logger.V(logger.ErrorLevel, log) {
|
|
|
|
log.Errorf("unable to create cipher: %v", err)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2019-11-25 18:34:41 +03:00
|
|
|
|
|
|
|
// decrypt the received payload using the token
|
2019-12-06 03:18:40 +03:00
|
|
|
// we have to used msg.session because multicast has a shared
|
2019-12-07 22:54:29 +03:00
|
|
|
// session id of "multicast" in this session struct on
|
2019-12-06 03:18:40 +03:00
|
|
|
// the listener side
|
2020-03-11 20:55:39 +03:00
|
|
|
msg.data.Body, err = Decrypt(gcm, msg.data.Body)
|
2019-11-25 18:34:41 +03:00
|
|
|
if err != nil {
|
2020-03-11 20:55:39 +03:00
|
|
|
if logger.V(logger.DebugLevel, log) {
|
|
|
|
log.Debugf("failed to decrypt message body: %v", err)
|
|
|
|
}
|
2019-11-25 18:34:41 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:10:08 +03:00
|
|
|
// dencrypt all the headers
|
2019-11-25 21:56:00 +03:00
|
|
|
for k, v := range msg.data.Header {
|
2020-03-09 20:10:08 +03:00
|
|
|
// decode the header values
|
|
|
|
h, err := base32.StdEncoding.DecodeString(v)
|
2019-11-25 21:56:00 +03:00
|
|
|
if err != nil {
|
2020-03-11 20:55:39 +03:00
|
|
|
if logger.V(logger.DebugLevel, log) {
|
|
|
|
log.Debugf("failed to decode message header %s: %v", k, err)
|
|
|
|
}
|
2019-11-25 21:56:00 +03:00
|
|
|
return err
|
|
|
|
}
|
2020-03-09 20:10:08 +03:00
|
|
|
|
|
|
|
// dencrypt the transport message payload
|
2020-03-11 20:55:39 +03:00
|
|
|
val, err := Decrypt(gcm, h)
|
2019-11-25 21:56:00 +03:00
|
|
|
if err != nil {
|
2020-03-11 20:55:39 +03:00
|
|
|
if logger.V(logger.DebugLevel, log) {
|
|
|
|
log.Debugf("failed to decrypt message header %s: %v", k, err)
|
|
|
|
}
|
2019-11-25 21:56:00 +03:00
|
|
|
return err
|
|
|
|
}
|
2020-03-09 20:10:08 +03:00
|
|
|
// add decrypted header value
|
2019-11-25 21:56:00 +03:00
|
|
|
msg.data.Header[k] = string(val)
|
|
|
|
}
|
|
|
|
|
2019-12-08 03:53:55 +03:00
|
|
|
// set the link
|
|
|
|
// TODO: decruft, this is only for multicast
|
|
|
|
// since the session is now a single session
|
|
|
|
// likely provide as part of message.Link()
|
|
|
|
msg.data.Header["Micro-Link"] = msg.link
|
|
|
|
|
2019-08-07 20:44:33 +03:00
|
|
|
// set message
|
|
|
|
*m = *msg.data
|
|
|
|
// return nil
|
|
|
|
return nil
|
2019-08-06 13:45:25 +03:00
|
|
|
}
|
|
|
|
|
2019-09-04 13:58:03 +03:00
|
|
|
// Close closes the session by sending a close message
|
2019-08-30 22:05:00 +03:00
|
|
|
func (s *session) Close() error {
|
2019-08-07 20:44:33 +03:00
|
|
|
select {
|
|
|
|
case <-s.closed:
|
|
|
|
// no op
|
|
|
|
default:
|
|
|
|
close(s.closed)
|
2019-09-04 11:48:05 +03:00
|
|
|
|
2019-12-08 15:12:20 +03:00
|
|
|
// don't send close on multicast or broadcast
|
2019-12-06 02:11:42 +03:00
|
|
|
if s.mode != Unicast {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-04 11:48:05 +03:00
|
|
|
// append to backlog
|
2019-09-04 14:16:31 +03:00
|
|
|
msg := s.newMessage("close")
|
|
|
|
// no error response on close
|
|
|
|
msg.errChan = nil
|
2019-09-04 11:48:05 +03:00
|
|
|
|
|
|
|
// send the close message
|
|
|
|
select {
|
|
|
|
case s.send <- msg:
|
2019-12-06 02:11:42 +03:00
|
|
|
case <-time.After(time.Millisecond * 10):
|
2019-09-04 11:48:05 +03:00
|
|
|
}
|
2019-08-07 20:44:33 +03:00
|
|
|
}
|
2019-09-04 11:48:05 +03:00
|
|
|
|
2019-08-07 20:44:33 +03:00
|
|
|
return nil
|
2019-08-06 13:45:25 +03:00
|
|
|
}
|