main.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. package nebula
  2. import (
  3. "encoding/binary"
  4. "fmt"
  5. "net"
  6. "os"
  7. "os/signal"
  8. "strconv"
  9. "strings"
  10. "syscall"
  11. "time"
  12. "github.com/sirupsen/logrus"
  13. "github.com/slackhq/nebula/sshd"
  14. "gopkg.in/yaml.v2"
  15. )
  16. var l = logrus.New()
  17. type m map[string]interface{}
  18. func Main(configPath string, configTest bool, buildVersion string) {
  19. l.Out = os.Stdout
  20. l.Formatter = &logrus.TextFormatter{
  21. FullTimestamp: true,
  22. }
  23. config := NewConfig()
  24. err := config.Load(configPath)
  25. if err != nil {
  26. l.WithError(err).Error("Failed to load config")
  27. os.Exit(1)
  28. }
  29. // Print the config if in test, the exit comes later
  30. if configTest {
  31. b, err := yaml.Marshal(config.Settings)
  32. if err != nil {
  33. l.Println(err)
  34. os.Exit(1)
  35. }
  36. l.Println(string(b))
  37. }
  38. err = configLogger(config)
  39. if err != nil {
  40. l.WithError(err).Error("Failed to configure the logger")
  41. }
  42. config.RegisterReloadCallback(func(c *Config) {
  43. err := configLogger(c)
  44. if err != nil {
  45. l.WithError(err).Error("Failed to configure the logger")
  46. }
  47. })
  48. // trustedCAs is currently a global, so loadCA operates on that global directly
  49. trustedCAs, err = loadCAFromConfig(config)
  50. if err != nil {
  51. //The errors coming out of loadCA are already nicely formatted
  52. l.WithError(err).Fatal("Failed to load ca from config")
  53. }
  54. l.WithField("fingerprints", trustedCAs.GetFingerprints()).Debug("Trusted CA fingerprints")
  55. cs, err := NewCertStateFromConfig(config)
  56. if err != nil {
  57. //The errors coming out of NewCertStateFromConfig are already nicely formatted
  58. l.WithError(err).Fatal("Failed to load certificate from config")
  59. }
  60. l.WithField("cert", cs.certificate).Debug("Client nebula certificate")
  61. fw, err := NewFirewallFromConfig(cs.certificate, config)
  62. if err != nil {
  63. l.WithError(err).Fatal("Error while loading firewall rules")
  64. }
  65. l.WithField("firewallHash", fw.GetRuleHash()).Info("Firewall started")
  66. // TODO: make sure mask is 4 bytes
  67. tunCidr := cs.certificate.Details.Ips[0]
  68. routes, err := parseRoutes(config, tunCidr)
  69. if err != nil {
  70. l.WithError(err).Fatal("Could not parse tun.routes")
  71. }
  72. unsafeRoutes, err := parseUnsafeRoutes(config, tunCidr)
  73. if err != nil {
  74. l.WithError(err).Fatal("Could not parse tun.unsafe_routes")
  75. }
  76. ssh, err := sshd.NewSSHServer(l.WithField("subsystem", "sshd"))
  77. wireSSHReload(ssh, config)
  78. if config.GetBool("sshd.enabled", false) {
  79. err = configSSH(ssh, config)
  80. if err != nil {
  81. l.WithError(err).Fatal("Error while configuring the sshd")
  82. }
  83. }
  84. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  85. // All non system modifying configuration consumption should live above this line
  86. // tun config, listeners, anything modifying the computer should be below
  87. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  88. if configTest {
  89. os.Exit(0)
  90. }
  91. config.CatchHUP()
  92. // set up our tun dev
  93. tun, err := newTun(
  94. config.GetString("tun.dev", ""),
  95. tunCidr,
  96. config.GetInt("tun.mtu", DEFAULT_MTU),
  97. routes,
  98. unsafeRoutes,
  99. config.GetInt("tun.tx_queue", 500),
  100. )
  101. if err != nil {
  102. l.WithError(err).Fatal("Failed to get a tun/tap device")
  103. }
  104. // set up our UDP listener
  105. udpQueues := config.GetInt("listen.routines", 1)
  106. udpServer, err := NewListener(config.GetString("listen.host", "0.0.0.0"), config.GetInt("listen.port", 0), udpQueues > 1)
  107. if err != nil {
  108. l.WithError(err).Fatal("Failed to open udp listener")
  109. }
  110. udpServer.reloadConfig(config)
  111. // Set up my internal host map
  112. var preferredRanges []*net.IPNet
  113. rawPreferredRanges := config.GetStringSlice("preferred_ranges", []string{})
  114. // First, check if 'preferred_ranges' is set and fallback to 'local_range'
  115. if len(rawPreferredRanges) > 0 {
  116. for _, rawPreferredRange := range rawPreferredRanges {
  117. _, preferredRange, err := net.ParseCIDR(rawPreferredRange)
  118. if err != nil {
  119. l.WithError(err).Fatal("Failed to parse preferred ranges")
  120. }
  121. preferredRanges = append(preferredRanges, preferredRange)
  122. }
  123. }
  124. // local_range was superseded by preferred_ranges. If it is still present,
  125. // merge the local_range setting into preferred_ranges. We will probably
  126. // deprecate local_range and remove in the future.
  127. rawLocalRange := config.GetString("local_range", "")
  128. if rawLocalRange != "" {
  129. _, localRange, err := net.ParseCIDR(rawLocalRange)
  130. if err != nil {
  131. l.WithError(err).Fatal("Failed to parse local range")
  132. }
  133. // Check if the entry for local_range was already specified in
  134. // preferred_ranges. Don't put it into the slice twice if so.
  135. var found bool
  136. for _, r := range preferredRanges {
  137. if r.String() == localRange.String() {
  138. found = true
  139. break
  140. }
  141. }
  142. if !found {
  143. preferredRanges = append(preferredRanges, localRange)
  144. }
  145. }
  146. hostMap := NewHostMap("main", tunCidr, preferredRanges)
  147. hostMap.SetDefaultRoute(ip2int(net.ParseIP(config.GetString("default_route", "0.0.0.0"))))
  148. hostMap.addUnsafeRoutes(&unsafeRoutes)
  149. l.WithField("network", hostMap.vpnCIDR).WithField("preferredRanges", hostMap.preferredRanges).Info("Main HostMap created")
  150. /*
  151. config.SetDefault("promoter.interval", 10)
  152. go hostMap.Promoter(config.GetInt("promoter.interval"))
  153. */
  154. punchy := NewPunchyFromConfig(config)
  155. if punchy.Punch {
  156. l.Info("UDP hole punching enabled")
  157. go hostMap.Punchy(udpServer)
  158. }
  159. port := config.GetInt("listen.port", 0)
  160. // If port is dynamic, discover it
  161. if port == 0 {
  162. uPort, err := udpServer.LocalAddr()
  163. if err != nil {
  164. l.WithError(err).Fatal("Failed to get listening port")
  165. }
  166. port = int(uPort.Port)
  167. }
  168. amLighthouse := config.GetBool("lighthouse.am_lighthouse", false)
  169. // warn if am_lighthouse is enabled but upstream lighthouses exists
  170. rawLighthouseHosts := config.GetStringSlice("lighthouse.hosts", []string{})
  171. if amLighthouse && len(rawLighthouseHosts) != 0 {
  172. l.Warn("lighthouse.am_lighthouse enabled on node but upstream lighthouses exist in config")
  173. }
  174. lighthouseHosts := make([]uint32, len(rawLighthouseHosts))
  175. for i, host := range rawLighthouseHosts {
  176. ip := net.ParseIP(host)
  177. if ip == nil {
  178. l.WithField("host", host).Fatalf("Unable to parse lighthouse host entry %v", i+1)
  179. }
  180. if !tunCidr.Contains(ip) {
  181. l.WithField("vpnIp", ip).WithField("network", tunCidr.String()).Fatalf("lighthouse host is not in our subnet, invalid")
  182. }
  183. lighthouseHosts[i] = ip2int(ip)
  184. }
  185. lightHouse := NewLightHouse(
  186. amLighthouse,
  187. ip2int(tunCidr.IP),
  188. lighthouseHosts,
  189. //TODO: change to a duration
  190. config.GetInt("lighthouse.interval", 10),
  191. port,
  192. udpServer,
  193. punchy.Respond,
  194. punchy.Delay,
  195. )
  196. //TODO: Move all of this inside functions in lighthouse.go
  197. for k, v := range config.GetMap("static_host_map", map[interface{}]interface{}{}) {
  198. vpnIp := net.ParseIP(fmt.Sprintf("%v", k))
  199. if !tunCidr.Contains(vpnIp) {
  200. l.WithField("vpnIp", vpnIp).WithField("network", tunCidr.String()).Fatalf("static_host_map key is not in our subnet, invalid")
  201. }
  202. vals, ok := v.([]interface{})
  203. if ok {
  204. for _, v := range vals {
  205. parts := strings.Split(fmt.Sprintf("%v", v), ":")
  206. addr, err := net.ResolveIPAddr("ip", parts[0])
  207. if err == nil {
  208. ip := addr.IP
  209. port, err := strconv.Atoi(parts[1])
  210. if err != nil {
  211. l.Fatalf("Static host address for %s could not be parsed: %s", vpnIp, v)
  212. }
  213. lightHouse.AddRemote(ip2int(vpnIp), NewUDPAddr(ip2int(ip), uint16(port)), true)
  214. }
  215. }
  216. } else {
  217. //TODO: make this all a helper
  218. parts := strings.Split(fmt.Sprintf("%v", v), ":")
  219. addr, err := net.ResolveIPAddr("ip", parts[0])
  220. if err == nil {
  221. ip := addr.IP
  222. port, err := strconv.Atoi(parts[1])
  223. if err != nil {
  224. l.Fatalf("Static host address for %s could not be parsed: %s", vpnIp, v)
  225. }
  226. lightHouse.AddRemote(ip2int(vpnIp), NewUDPAddr(ip2int(ip), uint16(port)), true)
  227. }
  228. }
  229. }
  230. err = lightHouse.ValidateLHStaticEntries()
  231. if err != nil {
  232. l.WithError(err).Error("Lighthouse unreachable")
  233. }
  234. handshakeConfig := HandshakeConfig{
  235. tryInterval: config.GetDuration("handshakes.try_interval", DefaultHandshakeTryInterval),
  236. retries: config.GetInt("handshakes.retries", DefaultHandshakeRetries),
  237. waitRotation: config.GetInt("handshakes.wait_rotation", DefaultHandshakeWaitRotation),
  238. }
  239. handshakeManager := NewHandshakeManager(tunCidr, preferredRanges, hostMap, lightHouse, udpServer, handshakeConfig)
  240. //TODO: These will be reused for psk
  241. //handshakeMACKey := config.GetString("handshake_mac.key", "")
  242. //handshakeAcceptedMACKeys := config.GetStringSlice("handshake_mac.accepted_keys", []string{})
  243. serveDns := config.GetBool("lighthouse.serve_dns", false)
  244. checkInterval := config.GetInt("timers.connection_alive_interval", 5)
  245. pendingDeletionInterval := config.GetInt("timers.pending_deletion_interval", 10)
  246. ifConfig := &InterfaceConfig{
  247. HostMap: hostMap,
  248. Inside: tun,
  249. Outside: udpServer,
  250. certState: cs,
  251. Cipher: config.GetString("cipher", "aes"),
  252. Firewall: fw,
  253. ServeDns: serveDns,
  254. HandshakeManager: handshakeManager,
  255. lightHouse: lightHouse,
  256. checkInterval: checkInterval,
  257. pendingDeletionInterval: pendingDeletionInterval,
  258. DropLocalBroadcast: config.GetBool("tun.drop_local_broadcast", false),
  259. DropMulticast: config.GetBool("tun.drop_multicast", false),
  260. UDPBatchSize: config.GetInt("listen.batch", 64),
  261. }
  262. switch ifConfig.Cipher {
  263. case "aes":
  264. noiseEndiannes = binary.BigEndian
  265. case "chachapoly":
  266. noiseEndiannes = binary.LittleEndian
  267. default:
  268. l.Fatalf("Unknown cipher: %v", ifConfig.Cipher)
  269. }
  270. ifce, err := NewInterface(ifConfig)
  271. if err != nil {
  272. l.WithError(err).Fatal("Failed to initialize interface")
  273. }
  274. ifce.RegisterConfigChangeCallbacks(config)
  275. go handshakeManager.Run(ifce)
  276. go lightHouse.LhUpdateWorker(ifce)
  277. err = startStats(config)
  278. if err != nil {
  279. l.WithError(err).Fatal("Failed to start stats emitter")
  280. }
  281. //TODO: check if we _should_ be emitting stats
  282. go ifce.emitStats(config.GetDuration("stats.interval", time.Second*10))
  283. attachCommands(ssh, hostMap, handshakeManager.pendingHostMap, lightHouse, ifce)
  284. ifce.Run(config.GetInt("tun.routines", 1), udpQueues, buildVersion)
  285. // Start DNS server last to allow using the nebula IP as lighthouse.dns.host
  286. if amLighthouse && serveDns {
  287. l.Debugln("Starting dns server")
  288. go dnsMain(hostMap, config)
  289. }
  290. // Just sit here and be friendly, main thread.
  291. shutdownBlock(ifce)
  292. }
  293. func shutdownBlock(ifce *Interface) {
  294. var sigChan = make(chan os.Signal)
  295. signal.Notify(sigChan, syscall.SIGTERM)
  296. signal.Notify(sigChan, syscall.SIGINT)
  297. sig := <-sigChan
  298. l.WithField("signal", sig).Info("Caught signal, shutting down")
  299. //TODO: stop tun and udp routines, the lock on hostMap does effectively does that though
  300. //TODO: this is probably better as a function in ConnectionManager or HostMap directly
  301. ifce.hostMap.Lock()
  302. for _, h := range ifce.hostMap.Hosts {
  303. if h.ConnectionState.ready {
  304. ifce.send(closeTunnel, 0, h.ConnectionState, h, h.remote, []byte{}, make([]byte, 12, 12), make([]byte, mtu))
  305. l.WithField("vpnIp", IntIp(h.hostId)).WithField("udpAddr", h.remote).
  306. Debug("Sending close tunnel message")
  307. }
  308. }
  309. ifce.hostMap.Unlock()
  310. l.WithField("signal", sig).Info("Goodbye")
  311. os.Exit(0)
  312. }