inside.go 14 KB

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