123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- package nebula
- import (
- "github.com/sirupsen/logrus"
- "github.com/slackhq/nebula/firewall"
- "github.com/slackhq/nebula/header"
- "github.com/slackhq/nebula/iputil"
- "github.com/slackhq/nebula/noiseutil"
- "github.com/slackhq/nebula/udp"
- )
- func (f *Interface) consumeInsidePacket(packet []byte, fwPacket *firewall.Packet, nb, out []byte, q int, localCache firewall.ConntrackCache) {
- err := newPacket(packet, false, fwPacket)
- if err != nil {
- if f.l.Level >= logrus.DebugLevel {
- f.l.WithField("packet", packet).Debugf("Error while validating outbound packet: %s", err)
- }
- return
- }
- // Ignore local broadcast packets
- if f.dropLocalBroadcast && fwPacket.RemoteIP == f.localBroadcast {
- return
- }
- if fwPacket.RemoteIP == f.myVpnIp {
- // Immediately forward packets from self to self.
- // This should only happen on Darwin-based and FreeBSD hosts, which
- // routes packets from the Nebula IP to the Nebula IP through the Nebula
- // TUN device.
- if immediatelyForwardToSelf {
- _, err := f.readers[q].Write(packet)
- if err != nil {
- f.l.WithError(err).Error("Failed to forward to tun")
- }
- }
- // Otherwise, drop. On linux, we should never see these packets - Linux
- // routes packets from the nebula IP to the nebula IP through the loopback device.
- return
- }
- // Ignore broadcast packets
- if f.dropMulticast && isMulticast(fwPacket.RemoteIP) {
- return
- }
- hostinfo, ready := f.getOrHandshake(fwPacket.RemoteIP, func(hh *HandshakeHostInfo) {
- hh.cachePacket(f.l, header.Message, 0, packet, f.sendMessageNow, f.cachedPacketMetrics)
- })
- if hostinfo == nil {
- f.rejectInside(packet, out, q)
- if f.l.Level >= logrus.DebugLevel {
- f.l.WithField("vpnIp", fwPacket.RemoteIP).
- WithField("fwPacket", fwPacket).
- Debugln("dropping outbound packet, vpnIp not in our CIDR or in unsafe routes")
- }
- return
- }
- if !ready {
- return
- }
- dropReason := f.firewall.Drop(*fwPacket, false, hostinfo, f.pki.GetCAPool(), localCache)
- if dropReason == nil {
- f.sendNoMetrics(header.Message, 0, hostinfo.ConnectionState, hostinfo, nil, packet, nb, out, q)
- } else {
- f.rejectInside(packet, out, q)
- if f.l.Level >= logrus.DebugLevel {
- hostinfo.logger(f.l).
- WithField("fwPacket", fwPacket).
- WithField("reason", dropReason).
- Debugln("dropping outbound packet")
- }
- }
- }
- func (f *Interface) rejectInside(packet []byte, out []byte, q int) {
- if !f.firewall.InSendReject {
- return
- }
- out = iputil.CreateRejectPacket(packet, out)
- if len(out) == 0 {
- return
- }
- _, err := f.readers[q].Write(out)
- if err != nil {
- f.l.WithError(err).Error("Failed to write to tun")
- }
- }
- func (f *Interface) rejectOutside(packet []byte, ci *ConnectionState, hostinfo *HostInfo, nb, out []byte, q int) {
- if !f.firewall.OutSendReject {
- return
- }
- out = iputil.CreateRejectPacket(packet, out)
- if len(out) == 0 {
- return
- }
- if len(out) > iputil.MaxRejectPacketSize {
- if f.l.GetLevel() >= logrus.InfoLevel {
- f.l.
- WithField("packet", packet).
- WithField("outPacket", out).
- Info("rejectOutside: packet too big, not sending")
- }
- return
- }
- f.sendNoMetrics(header.Message, 0, ci, hostinfo, nil, out, nb, packet, q)
- }
- func (f *Interface) Handshake(vpnIp iputil.VpnIp) {
- f.getOrHandshake(vpnIp, nil)
- }
- // getOrHandshake returns nil if the vpnIp is not routable.
- // If the 2nd return var is false then the hostinfo is not ready to be used in a tunnel
- func (f *Interface) getOrHandshake(vpnIp iputil.VpnIp, cacheCallback func(*HandshakeHostInfo)) (*HostInfo, bool) {
- if !ipMaskContains(f.lightHouse.myVpnIp, f.lightHouse.myVpnZeros, vpnIp) {
- vpnIp = f.inside.RouteFor(vpnIp)
- if vpnIp == 0 {
- return nil, false
- }
- }
- return f.handshakeManager.GetOrHandshake(vpnIp, cacheCallback)
- }
- func (f *Interface) sendMessageNow(t header.MessageType, st header.MessageSubType, hostinfo *HostInfo, p, nb, out []byte) {
- fp := &firewall.Packet{}
- err := newPacket(p, false, fp)
- if err != nil {
- f.l.Warnf("error while parsing outgoing packet for firewall check; %v", err)
- return
- }
- // check if packet is in outbound fw rules
- dropReason := f.firewall.Drop(*fp, false, hostinfo, f.pki.GetCAPool(), nil)
- if dropReason != nil {
- if f.l.Level >= logrus.DebugLevel {
- f.l.WithField("fwPacket", fp).
- WithField("reason", dropReason).
- Debugln("dropping cached packet")
- }
- return
- }
- f.sendNoMetrics(header.Message, st, hostinfo.ConnectionState, hostinfo, nil, p, nb, out, 0)
- }
- // SendMessageToVpnIp handles real ip:port lookup and sends to the current best known address for vpnIp
- func (f *Interface) SendMessageToVpnIp(t header.MessageType, st header.MessageSubType, vpnIp iputil.VpnIp, p, nb, out []byte) {
- hostInfo, ready := f.getOrHandshake(vpnIp, func(hh *HandshakeHostInfo) {
- hh.cachePacket(f.l, t, st, p, f.SendMessageToHostInfo, f.cachedPacketMetrics)
- })
- if hostInfo == nil {
- if f.l.Level >= logrus.DebugLevel {
- f.l.WithField("vpnIp", vpnIp).
- Debugln("dropping SendMessageToVpnIp, vpnIp not in our CIDR or in unsafe routes")
- }
- return
- }
- if !ready {
- return
- }
- f.SendMessageToHostInfo(t, st, hostInfo, p, nb, out)
- }
- func (f *Interface) SendMessageToHostInfo(t header.MessageType, st header.MessageSubType, hi *HostInfo, p, nb, out []byte) {
- f.send(t, st, hi.ConnectionState, hi, p, nb, out)
- }
- func (f *Interface) send(t header.MessageType, st header.MessageSubType, ci *ConnectionState, hostinfo *HostInfo, p, nb, out []byte) {
- f.messageMetrics.Tx(t, st, 1)
- f.sendNoMetrics(t, st, ci, hostinfo, nil, p, nb, out, 0)
- }
- func (f *Interface) sendTo(t header.MessageType, st header.MessageSubType, ci *ConnectionState, hostinfo *HostInfo, remote *udp.Addr, p, nb, out []byte) {
- f.messageMetrics.Tx(t, st, 1)
- f.sendNoMetrics(t, st, ci, hostinfo, remote, p, nb, out, 0)
- }
- // SendVia sends a payload through a Relay tunnel. No authentication or encryption is done
- // to the payload for the ultimate target host, making this a useful method for sending
- // handshake messages to peers through relay tunnels.
- // via is the HostInfo through which the message is relayed.
- // ad is the plaintext data to authenticate, but not encrypt
- // nb is a buffer used to store the nonce value, re-used for performance reasons.
- // out is a buffer used to store the result of the Encrypt operation
- // q indicates which writer to use to send the packet.
- func (f *Interface) SendVia(via *HostInfo,
- relay *Relay,
- ad,
- nb,
- out []byte,
- nocopy bool,
- ) {
- if noiseutil.EncryptLockNeeded {
- // NOTE: for goboring AESGCMTLS we need to lock because of the nonce check
- via.ConnectionState.writeLock.Lock()
- }
- c := via.ConnectionState.messageCounter.Add(1)
- out = header.Encode(out, header.Version, header.Message, header.MessageRelay, relay.RemoteIndex, c)
- f.connectionManager.Out(via.localIndexId)
- // Authenticate the header and payload, but do not encrypt for this message type.
- // The payload consists of the inner, unencrypted Nebula header, as well as the end-to-end encrypted payload.
- if len(out)+len(ad)+via.ConnectionState.eKey.Overhead() > cap(out) {
- if noiseutil.EncryptLockNeeded {
- via.ConnectionState.writeLock.Unlock()
- }
- via.logger(f.l).
- WithField("outCap", cap(out)).
- WithField("payloadLen", len(ad)).
- WithField("headerLen", len(out)).
- WithField("cipherOverhead", via.ConnectionState.eKey.Overhead()).
- Error("SendVia out buffer not large enough for relay")
- return
- }
- // The header bytes are written to the 'out' slice; Grow the slice to hold the header and associated data payload.
- offset := len(out)
- out = out[:offset+len(ad)]
- // In one call path, the associated data _is_ already stored in out. In other call paths, the associated data must
- // be copied into 'out'.
- if !nocopy {
- copy(out[offset:], ad)
- }
- var err error
- out, err = via.ConnectionState.eKey.EncryptDanger(out, out, nil, c, nb)
- if noiseutil.EncryptLockNeeded {
- via.ConnectionState.writeLock.Unlock()
- }
- if err != nil {
- via.logger(f.l).WithError(err).Info("Failed to EncryptDanger in sendVia")
- return
- }
- err = f.writers[0].WriteTo(out, via.remote)
- if err != nil {
- via.logger(f.l).WithError(err).Info("Failed to WriteTo in sendVia")
- }
- f.connectionManager.RelayUsed(relay.LocalIndex)
- }
- func (f *Interface) sendNoMetrics(t header.MessageType, st header.MessageSubType, ci *ConnectionState, hostinfo *HostInfo, remote *udp.Addr, p, nb, out []byte, q int) {
- if ci.eKey == nil {
- //TODO: log warning
- return
- }
- useRelay := remote == nil && hostinfo.remote == nil
- fullOut := out
- if useRelay {
- if len(out) < header.Len {
- // out always has a capacity of mtu, but not always a length greater than the header.Len.
- // Grow it to make sure the next operation works.
- out = out[:header.Len]
- }
- // Save a header's worth of data at the front of the 'out' buffer.
- out = out[header.Len:]
- }
- if noiseutil.EncryptLockNeeded {
- // NOTE: for goboring AESGCMTLS we need to lock because of the nonce check
- ci.writeLock.Lock()
- }
- c := ci.messageCounter.Add(1)
- //l.WithField("trace", string(debug.Stack())).Error("out Header ", &Header{Version, t, st, 0, hostinfo.remoteIndexId, c}, p)
- out = header.Encode(out, header.Version, t, st, hostinfo.remoteIndexId, c)
- f.connectionManager.Out(hostinfo.localIndexId)
- // Query our LH if we haven't since the last time we've been rebound, this will cause the remote to punch against
- // all our IPs and enable a faster roaming.
- if t != header.CloseTunnel && hostinfo.lastRebindCount != f.rebindCount {
- //NOTE: there is an update hole if a tunnel isn't used and exactly 256 rebinds occur before the tunnel is
- // finally used again. This tunnel would eventually be torn down and recreated if this action didn't help.
- f.lightHouse.QueryServer(hostinfo.vpnIp)
- hostinfo.lastRebindCount = f.rebindCount
- if f.l.Level >= logrus.DebugLevel {
- f.l.WithField("vpnIp", hostinfo.vpnIp).Debug("Lighthouse update triggered for punch due to rebind counter")
- }
- }
- var err error
- out, err = ci.eKey.EncryptDanger(out, out, p, c, nb)
- if noiseutil.EncryptLockNeeded {
- ci.writeLock.Unlock()
- }
- if err != nil {
- hostinfo.logger(f.l).WithError(err).
- WithField("udpAddr", remote).WithField("counter", c).
- WithField("attemptedCounter", c).
- Error("Failed to encrypt outgoing packet")
- return
- }
- if remote != nil {
- err = f.writers[q].WriteTo(out, remote)
- if err != nil {
- hostinfo.logger(f.l).WithError(err).
- WithField("udpAddr", remote).Error("Failed to write outgoing packet")
- }
- } else if hostinfo.remote != nil {
- err = f.writers[q].WriteTo(out, hostinfo.remote)
- if err != nil {
- hostinfo.logger(f.l).WithError(err).
- WithField("udpAddr", remote).Error("Failed to write outgoing packet")
- }
- } else {
- // Try to send via a relay
- for _, relayIP := range hostinfo.relayState.CopyRelayIps() {
- relayHostInfo, relay, err := f.hostMap.QueryVpnIpRelayFor(hostinfo.vpnIp, relayIP)
- if err != nil {
- hostinfo.relayState.DeleteRelay(relayIP)
- hostinfo.logger(f.l).WithField("relay", relayIP).WithError(err).Info("sendNoMetrics failed to find HostInfo")
- continue
- }
- f.SendVia(relayHostInfo, relay, out, nb, fullOut[:header.Len+len(out)], true)
- break
- }
- }
- }
- func isMulticast(ip iputil.VpnIp) bool {
- // Class D multicast
- return (((ip >> 24) & 0xff) & 0xf0) == 0xe0
- }
|