inside.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. package nebula
  2. import (
  3. "net/netip"
  4. "github.com/sirupsen/logrus"
  5. "github.com/slackhq/nebula/firewall"
  6. "github.com/slackhq/nebula/header"
  7. "github.com/slackhq/nebula/iputil"
  8. "github.com/slackhq/nebula/noiseutil"
  9. "github.com/slackhq/nebula/routing"
  10. )
  11. func (f *Interface) consumeInsidePacket(packet []byte, fwPacket *firewall.Packet, nb, out []byte, q int, localCache firewall.ConntrackCache) {
  12. err := newPacket(packet, false, fwPacket)
  13. if err != nil {
  14. if f.l.Level >= logrus.DebugLevel {
  15. f.l.WithField("packet", packet).Debugf("Error while validating outbound packet: %s", err)
  16. }
  17. return
  18. }
  19. // Ignore local broadcast packets
  20. if f.dropLocalBroadcast {
  21. if f.myBroadcastAddrsTable.Contains(fwPacket.RemoteAddr) {
  22. return
  23. }
  24. }
  25. if f.myVpnAddrsTable.Contains(fwPacket.RemoteAddr) {
  26. // Immediately forward packets from self to self.
  27. // This should only happen on Darwin-based and FreeBSD hosts, which
  28. // routes packets from the Nebula addr to the Nebula addr through the Nebula
  29. // TUN device.
  30. if immediatelyForwardToSelf {
  31. if err := f.writeTun(q, packet); err != nil {
  32. f.l.WithError(err).Error("Failed to forward to tun")
  33. }
  34. }
  35. // Otherwise, drop. On linux, we should never see these packets - Linux
  36. // routes packets from the nebula addr to the nebula addr through the loopback device.
  37. return
  38. }
  39. // Ignore multicast packets
  40. if f.dropMulticast && fwPacket.RemoteAddr.IsMulticast() {
  41. return
  42. }
  43. hostinfo, ready := f.getOrHandshakeConsiderRouting(fwPacket, func(hh *HandshakeHostInfo) {
  44. hh.cachePacket(f.l, header.Message, 0, packet, f.sendMessageNow, f.cachedPacketMetrics)
  45. })
  46. if hostinfo == nil {
  47. f.rejectInside(packet, out, q)
  48. if f.l.Level >= logrus.DebugLevel {
  49. f.l.WithField("vpnAddr", fwPacket.RemoteAddr).
  50. WithField("fwPacket", fwPacket).
  51. Debugln("dropping outbound packet, vpnAddr not in our vpn networks or in unsafe networks")
  52. }
  53. return
  54. }
  55. if !ready {
  56. return
  57. }
  58. dropReason := f.firewall.Drop(*fwPacket, false, hostinfo, f.pki.GetCAPool(), localCache)
  59. if dropReason == nil {
  60. f.sendNoMetrics(header.Message, 0, hostinfo.ConnectionState, hostinfo, netip.AddrPort{}, packet, nb, out, q)
  61. } else {
  62. f.rejectInside(packet, out, q)
  63. if f.l.Level >= logrus.DebugLevel {
  64. hostinfo.logger(f.l).
  65. WithField("fwPacket", fwPacket).
  66. WithField("reason", dropReason).
  67. Debugln("dropping outbound packet")
  68. }
  69. }
  70. }
  71. func (f *Interface) rejectInside(packet []byte, out []byte, q int) {
  72. if !f.firewall.InSendReject {
  73. return
  74. }
  75. out = iputil.CreateRejectPacket(packet, out)
  76. if len(out) == 0 {
  77. return
  78. }
  79. if err := f.writeTun(q, out); err != nil {
  80. f.l.WithError(err).Error("Failed to write to tun")
  81. }
  82. }
  83. func (f *Interface) rejectOutside(packet []byte, ci *ConnectionState, hostinfo *HostInfo, nb, out []byte, q int) {
  84. if !f.firewall.OutSendReject {
  85. return
  86. }
  87. out = iputil.CreateRejectPacket(packet, out)
  88. if len(out) == 0 {
  89. return
  90. }
  91. if len(out) > iputil.MaxRejectPacketSize {
  92. if f.l.GetLevel() >= logrus.InfoLevel {
  93. f.l.
  94. WithField("packet", packet).
  95. WithField("outPacket", out).
  96. Info("rejectOutside: packet too big, not sending")
  97. }
  98. return
  99. }
  100. f.sendNoMetrics(header.Message, 0, ci, hostinfo, netip.AddrPort{}, out, nb, packet, q)
  101. }
  102. // Handshake will attempt to initiate a tunnel with the provided vpn address if it is within our vpn networks. This is a no-op if the tunnel is already established or being established
  103. func (f *Interface) Handshake(vpnAddr netip.Addr) {
  104. f.getOrHandshakeNoRouting(vpnAddr, nil)
  105. }
  106. // getOrHandshakeNoRouting returns nil if the vpnAddr is not routable.
  107. // If the 2nd return var is false then the hostinfo is not ready to be used in a tunnel
  108. func (f *Interface) getOrHandshakeNoRouting(vpnAddr netip.Addr, cacheCallback func(*HandshakeHostInfo)) (*HostInfo, bool) {
  109. if f.myVpnNetworksTable.Contains(vpnAddr) {
  110. return f.handshakeManager.GetOrHandshake(vpnAddr, cacheCallback)
  111. }
  112. return nil, false
  113. }
  114. // getOrHandshakeConsiderRouting will try to find the HostInfo to handle this packet, starting a handshake if necessary.
  115. // If the 2nd return var is false then the hostinfo is not ready to be used in a tunnel.
  116. func (f *Interface) getOrHandshakeConsiderRouting(fwPacket *firewall.Packet, cacheCallback func(*HandshakeHostInfo)) (*HostInfo, bool) {
  117. destinationAddr := fwPacket.RemoteAddr
  118. hostinfo, ready := f.getOrHandshakeNoRouting(destinationAddr, cacheCallback)
  119. // Host is inside the mesh, no routing required
  120. if hostinfo != nil {
  121. return hostinfo, ready
  122. }
  123. gateways := f.inside.RoutesFor(destinationAddr)
  124. switch len(gateways) {
  125. case 0:
  126. return nil, false
  127. case 1:
  128. // Single gateway route
  129. return f.handshakeManager.GetOrHandshake(gateways[0].Addr(), cacheCallback)
  130. default:
  131. // Multi gateway route, perform ECMP categorization
  132. gatewayAddr, balancingOk := routing.BalancePacket(fwPacket, gateways)
  133. if !balancingOk {
  134. // This happens if the gateway buckets were not calculated, this _should_ never happen
  135. f.l.Error("Gateway buckets not calculated, fallback from ECMP to random routing. Please report this bug.")
  136. }
  137. var handshakeInfoForChosenGateway *HandshakeHostInfo
  138. var hhReceiver = func(hh *HandshakeHostInfo) {
  139. handshakeInfoForChosenGateway = hh
  140. }
  141. // Store the handshakeHostInfo for later.
  142. // If this node is not reachable we will attempt other nodes, if none are reachable we will
  143. // cache the packet for this gateway.
  144. if hostinfo, ready = f.handshakeManager.GetOrHandshake(gatewayAddr, hhReceiver); ready {
  145. return hostinfo, true
  146. }
  147. // It appears the selected gateway cannot be reached, find another gateway to fallback on.
  148. // The current implementation breaks ECMP but that seems better than no connectivity.
  149. // If ECMP is also required when a gateway is down then connectivity status
  150. // for each gateway needs to be kept and the weights recalculated when they go up or down.
  151. // This would also need to interact with unsafe_route updates through reloading the config or
  152. // use of the use_system_route_table option
  153. if f.l.Level >= logrus.DebugLevel {
  154. f.l.WithField("destination", destinationAddr).
  155. WithField("originalGateway", gatewayAddr).
  156. Debugln("Calculated gateway for ECMP not available, attempting other gateways")
  157. }
  158. for i := range gateways {
  159. // Skip the gateway that failed previously
  160. if gateways[i].Addr() == gatewayAddr {
  161. continue
  162. }
  163. // We do not need the HandshakeHostInfo since we cache the packet in the originally chosen gateway
  164. if hostinfo, ready = f.handshakeManager.GetOrHandshake(gateways[i].Addr(), nil); ready {
  165. return hostinfo, true
  166. }
  167. }
  168. // No gateways reachable, cache the packet in the originally chosen gateway
  169. cacheCallback(handshakeInfoForChosenGateway)
  170. return hostinfo, false
  171. }
  172. }
  173. func (f *Interface) sendMessageNow(t header.MessageType, st header.MessageSubType, hostinfo *HostInfo, p, nb, out []byte) {
  174. fp := &firewall.Packet{}
  175. err := newPacket(p, false, fp)
  176. if err != nil {
  177. f.l.Warnf("error while parsing outgoing packet for firewall check; %v", err)
  178. return
  179. }
  180. // check if packet is in outbound fw rules
  181. dropReason := f.firewall.Drop(*fp, false, hostinfo, f.pki.GetCAPool(), nil)
  182. if dropReason != nil {
  183. if f.l.Level >= logrus.DebugLevel {
  184. f.l.WithField("fwPacket", fp).
  185. WithField("reason", dropReason).
  186. Debugln("dropping cached packet")
  187. }
  188. return
  189. }
  190. f.sendNoMetrics(header.Message, st, hostinfo.ConnectionState, hostinfo, netip.AddrPort{}, p, nb, out, 0)
  191. }
  192. // SendMessageToVpnAddr handles real addr:port lookup and sends to the current best known address for vpnAddr
  193. func (f *Interface) SendMessageToVpnAddr(t header.MessageType, st header.MessageSubType, vpnAddr netip.Addr, p, nb, out []byte) {
  194. hostInfo, ready := f.getOrHandshakeNoRouting(vpnAddr, func(hh *HandshakeHostInfo) {
  195. hh.cachePacket(f.l, t, st, p, f.SendMessageToHostInfo, f.cachedPacketMetrics)
  196. })
  197. if hostInfo == nil {
  198. if f.l.Level >= logrus.DebugLevel {
  199. f.l.WithField("vpnAddr", vpnAddr).
  200. Debugln("dropping SendMessageToVpnAddr, vpnAddr not in our vpn networks or in unsafe routes")
  201. }
  202. return
  203. }
  204. if !ready {
  205. return
  206. }
  207. f.SendMessageToHostInfo(t, st, hostInfo, p, nb, out)
  208. }
  209. func (f *Interface) SendMessageToHostInfo(t header.MessageType, st header.MessageSubType, hi *HostInfo, p, nb, out []byte) {
  210. f.send(t, st, hi.ConnectionState, hi, p, nb, out)
  211. }
  212. func (f *Interface) send(t header.MessageType, st header.MessageSubType, ci *ConnectionState, hostinfo *HostInfo, p, nb, out []byte) {
  213. f.messageMetrics.Tx(t, st, 1)
  214. f.sendNoMetrics(t, st, ci, hostinfo, netip.AddrPort{}, p, nb, out, 0)
  215. }
  216. func (f *Interface) sendTo(t header.MessageType, st header.MessageSubType, ci *ConnectionState, hostinfo *HostInfo, remote netip.AddrPort, p, nb, out []byte) {
  217. f.messageMetrics.Tx(t, st, 1)
  218. f.sendNoMetrics(t, st, ci, hostinfo, remote, p, nb, out, 0)
  219. }
  220. // SendVia sends a payload through a Relay tunnel. No authentication or encryption is done
  221. // to the payload for the ultimate target host, making this a useful method for sending
  222. // handshake messages to peers through relay tunnels.
  223. // via is the HostInfo through which the message is relayed.
  224. // ad is the plaintext data to authenticate, but not encrypt
  225. // nb is a buffer used to store the nonce value, re-used for performance reasons.
  226. // out is a buffer used to store the result of the Encrypt operation
  227. // q indicates which writer to use to send the packet.
  228. func (f *Interface) SendVia(via *HostInfo,
  229. relay *Relay,
  230. ad,
  231. nb,
  232. out []byte,
  233. nocopy bool,
  234. ) {
  235. if noiseutil.EncryptLockNeeded {
  236. // NOTE: for goboring AESGCMTLS we need to lock because of the nonce check
  237. via.ConnectionState.writeLock.Lock()
  238. }
  239. c := via.ConnectionState.messageCounter.Add(1)
  240. out = header.Encode(out, header.Version, header.Message, header.MessageRelay, relay.RemoteIndex, c)
  241. f.connectionManager.Out(via)
  242. // Authenticate the header and payload, but do not encrypt for this message type.
  243. // The payload consists of the inner, unencrypted Nebula header, as well as the end-to-end encrypted payload.
  244. if len(out)+len(ad)+via.ConnectionState.eKey.Overhead() > cap(out) {
  245. if noiseutil.EncryptLockNeeded {
  246. via.ConnectionState.writeLock.Unlock()
  247. }
  248. via.logger(f.l).
  249. WithField("outCap", cap(out)).
  250. WithField("payloadLen", len(ad)).
  251. WithField("headerLen", len(out)).
  252. WithField("cipherOverhead", via.ConnectionState.eKey.Overhead()).
  253. Error("SendVia out buffer not large enough for relay")
  254. return
  255. }
  256. // The header bytes are written to the 'out' slice; Grow the slice to hold the header and associated data payload.
  257. offset := len(out)
  258. out = out[:offset+len(ad)]
  259. // In one call path, the associated data _is_ already stored in out. In other call paths, the associated data must
  260. // be copied into 'out'.
  261. if !nocopy {
  262. copy(out[offset:], ad)
  263. }
  264. var err error
  265. out, err = via.ConnectionState.eKey.EncryptDanger(out, out, nil, c, nb)
  266. if noiseutil.EncryptLockNeeded {
  267. via.ConnectionState.writeLock.Unlock()
  268. }
  269. if err != nil {
  270. via.logger(f.l).WithError(err).Info("Failed to EncryptDanger in sendVia")
  271. return
  272. }
  273. err = f.writers[0].WriteTo(out, via.remote)
  274. if err != nil {
  275. via.logger(f.l).WithError(err).Info("Failed to WriteTo in sendVia")
  276. }
  277. f.connectionManager.RelayUsed(relay.LocalIndex)
  278. }
  279. func (f *Interface) sendNoMetrics(t header.MessageType, st header.MessageSubType, ci *ConnectionState, hostinfo *HostInfo, remote netip.AddrPort, p, nb, out []byte, q int) {
  280. if ci.eKey == nil {
  281. return
  282. }
  283. useRelay := !remote.IsValid() && !hostinfo.remote.IsValid()
  284. fullOut := out
  285. if useRelay {
  286. if len(out) < header.Len {
  287. // out always has a capacity of mtu, but not always a length greater than the header.Len.
  288. // Grow it to make sure the next operation works.
  289. out = out[:header.Len]
  290. }
  291. // Save a header's worth of data at the front of the 'out' buffer.
  292. out = out[header.Len:]
  293. }
  294. if noiseutil.EncryptLockNeeded {
  295. // NOTE: for goboring AESGCMTLS we need to lock because of the nonce check
  296. ci.writeLock.Lock()
  297. }
  298. c := ci.messageCounter.Add(1)
  299. //l.WithField("trace", string(debug.Stack())).Error("out Header ", &Header{Version, t, st, 0, hostinfo.remoteIndexId, c}, p)
  300. out = header.Encode(out, header.Version, t, st, hostinfo.remoteIndexId, c)
  301. f.connectionManager.Out(hostinfo)
  302. // Query our LH if we haven't since the last time we've been rebound, this will cause the remote to punch against
  303. // all our addrs and enable a faster roaming.
  304. if t != header.CloseTunnel && hostinfo.lastRebindCount != f.rebindCount {
  305. //NOTE: there is an update hole if a tunnel isn't used and exactly 256 rebinds occur before the tunnel is
  306. // finally used again. This tunnel would eventually be torn down and recreated if this action didn't help.
  307. f.lightHouse.QueryServer(hostinfo.vpnAddrs[0])
  308. hostinfo.lastRebindCount = f.rebindCount
  309. if f.l.Level >= logrus.DebugLevel {
  310. f.l.WithField("vpnAddrs", hostinfo.vpnAddrs).Debug("Lighthouse update triggered for punch due to rebind counter")
  311. }
  312. }
  313. var err error
  314. out, err = ci.eKey.EncryptDanger(out, out, p, c, nb)
  315. if noiseutil.EncryptLockNeeded {
  316. ci.writeLock.Unlock()
  317. }
  318. if err != nil {
  319. hostinfo.logger(f.l).WithError(err).
  320. WithField("udpAddr", remote).WithField("counter", c).
  321. WithField("attemptedCounter", c).
  322. Error("Failed to encrypt outgoing packet")
  323. return
  324. }
  325. if remote.IsValid() {
  326. err = f.writers[q].WriteTo(out, remote)
  327. if err != nil {
  328. hostinfo.logger(f.l).WithError(err).
  329. WithField("udpAddr", remote).Error("Failed to write outgoing packet")
  330. }
  331. } else if hostinfo.remote.IsValid() {
  332. err = f.writers[q].WriteTo(out, hostinfo.remote)
  333. if err != nil {
  334. hostinfo.logger(f.l).WithError(err).
  335. WithField("udpAddr", remote).Error("Failed to write outgoing packet")
  336. }
  337. } else {
  338. // Try to send via a relay
  339. for _, relayIP := range hostinfo.relayState.CopyRelayIps() {
  340. relayHostInfo, relay, err := f.hostMap.QueryVpnAddrsRelayFor(hostinfo.vpnAddrs, relayIP)
  341. if err != nil {
  342. hostinfo.relayState.DeleteRelay(relayIP)
  343. hostinfo.logger(f.l).WithField("relay", relayIP).WithError(err).Info("sendNoMetrics failed to find HostInfo")
  344. continue
  345. }
  346. f.SendVia(relayHostInfo, relay, out, nb, fullOut[:header.Len+len(out)], true)
  347. break
  348. }
  349. }
  350. }