main.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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 := config.GetBool("punchy", false)
  155. if punchy == true {
  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. punchBack := config.GetBool("punch_back", false)
  169. amLighthouse := config.GetBool("lighthouse.am_lighthouse", false)
  170. // warn if am_lighthouse is enabled but upstream lighthouses exists
  171. rawLighthouseHosts := config.GetStringSlice("lighthouse.hosts", []string{})
  172. if amLighthouse && len(rawLighthouseHosts) != 0 {
  173. l.Warn("lighthouse.am_lighthouse enabled on node but upstream lighthouses exist in config")
  174. }
  175. lighthouseHosts := make([]uint32, len(rawLighthouseHosts))
  176. for i, host := range rawLighthouseHosts {
  177. ip := net.ParseIP(host)
  178. if ip == nil {
  179. l.WithField("host", host).Fatalf("Unable to parse lighthouse host entry %v", i+1)
  180. }
  181. lighthouseHosts[i] = ip2int(ip)
  182. }
  183. lightHouse := NewLightHouse(
  184. amLighthouse,
  185. ip2int(tunCidr.IP),
  186. lighthouseHosts,
  187. //TODO: change to a duration
  188. config.GetInt("lighthouse.interval", 10),
  189. port,
  190. udpServer,
  191. punchBack,
  192. )
  193. //TODO: Move all of this inside functions in lighthouse.go
  194. for k, v := range config.GetMap("static_host_map", map[interface{}]interface{}{}) {
  195. vpnIp := net.ParseIP(fmt.Sprintf("%v", k))
  196. vals, ok := v.([]interface{})
  197. if ok {
  198. for _, v := range vals {
  199. parts := strings.Split(fmt.Sprintf("%v", v), ":")
  200. addr, err := net.ResolveIPAddr("ip", parts[0])
  201. if err == nil {
  202. ip := addr.IP
  203. port, err := strconv.Atoi(parts[1])
  204. if err != nil {
  205. l.Fatalf("Static host address for %s could not be parsed: %s", vpnIp, v)
  206. }
  207. lightHouse.AddRemote(ip2int(vpnIp), NewUDPAddr(ip2int(ip), uint16(port)), true)
  208. }
  209. }
  210. } else {
  211. //TODO: make this all a helper
  212. parts := strings.Split(fmt.Sprintf("%v", v), ":")
  213. addr, err := net.ResolveIPAddr("ip", parts[0])
  214. if err == nil {
  215. ip := addr.IP
  216. port, err := strconv.Atoi(parts[1])
  217. if err != nil {
  218. l.Fatalf("Static host address for %s could not be parsed: %s", vpnIp, v)
  219. }
  220. lightHouse.AddRemote(ip2int(vpnIp), NewUDPAddr(ip2int(ip), uint16(port)), true)
  221. }
  222. }
  223. }
  224. err = lightHouse.ValidateLHStaticEntries()
  225. if err != nil {
  226. l.WithError(err).Error("Lighthouse unreachable")
  227. }
  228. handshakeManager := NewHandshakeManager(tunCidr, preferredRanges, hostMap, lightHouse, udpServer)
  229. //TODO: These will be reused for psk
  230. //handshakeMACKey := config.GetString("handshake_mac.key", "")
  231. //handshakeAcceptedMACKeys := config.GetStringSlice("handshake_mac.accepted_keys", []string{})
  232. serveDns := config.GetBool("lighthouse.serve_dns", false)
  233. checkInterval := config.GetInt("timers.connection_alive_interval", 5)
  234. pendingDeletionInterval := config.GetInt("timers.pending_deletion_interval", 10)
  235. ifConfig := &InterfaceConfig{
  236. HostMap: hostMap,
  237. Inside: tun,
  238. Outside: udpServer,
  239. certState: cs,
  240. Cipher: config.GetString("cipher", "aes"),
  241. Firewall: fw,
  242. ServeDns: serveDns,
  243. HandshakeManager: handshakeManager,
  244. lightHouse: lightHouse,
  245. checkInterval: checkInterval,
  246. pendingDeletionInterval: pendingDeletionInterval,
  247. DropLocalBroadcast: config.GetBool("tun.drop_local_broadcast", false),
  248. DropMulticast: config.GetBool("tun.drop_multicast", false),
  249. UDPBatchSize: config.GetInt("listen.batch", 64),
  250. }
  251. switch ifConfig.Cipher {
  252. case "aes":
  253. noiseEndiannes = binary.BigEndian
  254. case "chachapoly":
  255. noiseEndiannes = binary.LittleEndian
  256. default:
  257. l.Fatalf("Unknown cipher: %v", ifConfig.Cipher)
  258. }
  259. ifce, err := NewInterface(ifConfig)
  260. if err != nil {
  261. l.WithError(err).Fatal("Failed to initialize interface")
  262. }
  263. ifce.RegisterConfigChangeCallbacks(config)
  264. go handshakeManager.Run(ifce)
  265. go lightHouse.LhUpdateWorker(ifce)
  266. err = startStats(config)
  267. if err != nil {
  268. l.WithError(err).Fatal("Failed to start stats emitter")
  269. }
  270. //TODO: check if we _should_ be emitting stats
  271. go ifce.emitStats(config.GetDuration("stats.interval", time.Second*10))
  272. attachCommands(ssh, hostMap, handshakeManager.pendingHostMap, lightHouse, ifce)
  273. ifce.Run(config.GetInt("tun.routines", 1), udpQueues, buildVersion)
  274. // Start DNS server last to allow using the nebula IP as lighthouse.dns.host
  275. if amLighthouse && serveDns {
  276. l.Debugln("Starting dns server")
  277. go dnsMain(hostMap, config)
  278. }
  279. // Just sit here and be friendly, main thread.
  280. shutdownBlock(ifce)
  281. }
  282. func shutdownBlock(ifce *Interface) {
  283. var sigChan = make(chan os.Signal)
  284. signal.Notify(sigChan, syscall.SIGTERM)
  285. signal.Notify(sigChan, syscall.SIGINT)
  286. sig := <-sigChan
  287. l.WithField("signal", sig).Info("Caught signal, shutting down")
  288. //TODO: stop tun and udp routines, the lock on hostMap does effectively does that though
  289. //TODO: this is probably better as a function in ConnectionManager or HostMap directly
  290. ifce.hostMap.Lock()
  291. for _, h := range ifce.hostMap.Hosts {
  292. if h.ConnectionState.ready {
  293. ifce.send(closeTunnel, 0, h.ConnectionState, h, h.remote, []byte{}, make([]byte, 12, 12), make([]byte, mtu))
  294. l.WithField("vpnIp", IntIp(h.hostId)).WithField("udpAddr", h.remote).
  295. Debug("Sending close tunnel message")
  296. }
  297. }
  298. ifce.hostMap.Unlock()
  299. l.WithField("signal", sig).Info("Goodbye")
  300. os.Exit(0)
  301. }