Files
indra/pkg/relay/skins.go
2023-02-26 12:04:15 +00:00

166 lines
4.4 KiB
Go

package relay
import (
"net/netip"
"time"
"git-indra.lan/indra-labs/lnd/lnd/lnwire"
"git-indra.lan/indra-labs/indra/pkg/crypto/key/prv"
"git-indra.lan/indra-labs/indra/pkg/crypto/key/pub"
"git-indra.lan/indra-labs/indra/pkg/crypto/nonce"
"git-indra.lan/indra-labs/indra/pkg/messages/balance"
"git-indra.lan/indra-labs/indra/pkg/messages/confirm"
"git-indra.lan/indra-labs/indra/pkg/messages/crypt"
"git-indra.lan/indra-labs/indra/pkg/messages/delay"
"git-indra.lan/indra-labs/indra/pkg/messages/exit"
"git-indra.lan/indra-labs/indra/pkg/messages/forward"
"git-indra.lan/indra-labs/indra/pkg/messages/getbalance"
"git-indra.lan/indra-labs/indra/pkg/messages/hiddenservice"
"git-indra.lan/indra-labs/indra/pkg/messages/intro"
"git-indra.lan/indra-labs/indra/pkg/messages/noop"
"git-indra.lan/indra-labs/indra/pkg/messages/response"
"git-indra.lan/indra-labs/indra/pkg/messages/reverse"
"git-indra.lan/indra-labs/indra/pkg/messages/session"
"git-indra.lan/indra-labs/indra/pkg/types"
"git-indra.lan/indra-labs/indra/pkg/util/slice"
)
type Skins []types.Onion
var nop = &noop.Layer{}
func (o Skins) ForwardCrypt(s *Session, k *prv.Key,
n nonce.IV) Skins {
return o.Forward(s.AddrPort).Crypt(s.HeaderPub, s.PayloadPub, k, n, 0)
}
func (o Skins) ReverseCrypt(s *Session, k *prv.Key, n nonce.IV,
seq int) Skins {
return o.Reverse(s.AddrPort).Crypt(s.HeaderPub, s.PayloadPub, k, n, seq)
}
func (o Skins) ForwardSession(s *Node,
k *prv.Key, n nonce.IV, sess *session.Layer) Skins {
return o.Forward(s.AddrPort).
Crypt(s.IdentityPub, nil, k, n, 0).
Session(sess)
}
func (o Skins) Balance(id, confID nonce.ID,
amt lnwire.MilliSatoshi) Skins {
return append(o, &balance.Layer{
ID: id,
ConfID: confID,
MilliSatoshi: amt,
})
}
func (o Skins) Confirmation(id nonce.ID, load byte) Skins {
return append(o, &confirm.Layer{ID: id, Load: load})
}
func (o Skins) Crypt(toHdr, toPld *pub.Key, from *prv.Key, n nonce.IV,
depth int) Skins {
return append(o, &crypt.Layer{
Depth: depth,
ToHeaderPub: toHdr,
ToPayloadPub: toPld,
From: from,
Nonce: n,
Onion: nop,
})
}
func (o Skins) Delay(d time.Duration) Skins {
return append(o, &delay.Layer{Duration: d, Onion: nop})
}
func (o Skins) Exit(port uint16, prvs [3]*prv.Key, pubs [3]*pub.Key,
nonces [3]nonce.IV, id nonce.ID, payload slice.Bytes) Skins {
return append(o, &exit.Layer{
Port: port,
Ciphers: GenCiphers(prvs, pubs),
Nonces: nonces,
ID: id,
Bytes: payload,
Onion: nop,
})
}
func (o Skins) Forward(addr *netip.AddrPort) Skins {
return append(o,
&forward.Layer{
AddrPort: addr,
Onion: &noop.Layer{},
})
}
func (o Skins) GetBalance(id, confID nonce.ID, prvs [3]*prv.Key,
pubs [3]*pub.Key, nonces [3]nonce.IV) Skins {
return append(o, &getbalance.Layer{
ID: id,
ConfID: confID,
Ciphers: GenCiphers(prvs, pubs),
Nonces: nonces,
Onion: nop,
})
}
func (o Skins) HiddenService(id nonce.ID, intr *intro.Layer, prvs [3]*prv.Key,
pubs [3]*pub.Key, nonces [3]nonce.IV) Skins {
return append(o, &hiddenservice.Layer{
ID: id,
Layer: *intr,
Ciphers: GenCiphers(prvs, pubs),
Nonces: nonces,
})
}
func (o Skins) Reverse(ip *netip.AddrPort) Skins {
return append(o, &reverse.Layer{AddrPort: ip, Onion: nop})
}
func (o Skins) Response(id nonce.ID, res slice.Bytes, port uint16) Skins {
rs := response.Layer{ID: id, Port: port, Bytes: res}
return append(o, &rs)
}
func (o Skins) Session(sess *session.Layer) Skins {
// SendKeys can apply to from 1 to 5 nodes, if either key is nil then
// this crypt just doesn't get added in the serialization process.
if sess.Header == nil || sess.Payload == nil {
return o
}
return append(o, &session.Layer{
Header: sess.Header,
Payload: sess.Payload,
Onion: &noop.Layer{},
})
}
// Assemble inserts the slice of Layer s inside each other so the first then
// contains the second, second contains the third, and so on, and then returns
// the first onion, on which you can then call Encode and generate the wire
// message form of the onion.
func (o Skins) Assemble() (on types.Onion) {
// First item is the outer crypt.
on = o[0]
// Iterate through the remaining layers.
for _, oc := range o[1:] {
on.Insert(oc)
// Next step we are inserting inside the one we just inserted.
on = oc
}
// At the end, the first element contains references to every element
// inside it.
return o[0]
}