2
0

main.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  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. unsafeRoutes, err := parseUnsafeRoutes(config, tunCidr)
  70. if err != nil {
  71. l.WithError(err).Fatal("Could not parse tun.routes")
  72. }
  73. ssh, err := sshd.NewSSHServer(l.WithField("subsystem", "sshd"))
  74. wireSSHReload(ssh, config)
  75. if config.GetBool("sshd.enabled", false) {
  76. err = configSSH(ssh, config)
  77. if err != nil {
  78. l.WithError(err).Fatal("Error while configuring the sshd")
  79. }
  80. }
  81. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  82. // All non system modifying configuration consumption should live above this line
  83. // tun config, listeners, anything modifying the computer should be below
  84. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  85. if configTest {
  86. os.Exit(0)
  87. }
  88. config.CatchHUP()
  89. // set up our tun dev
  90. tun, err := newTun(
  91. config.GetString("tun.dev", ""),
  92. tunCidr,
  93. config.GetInt("tun.mtu", 1300),
  94. routes,
  95. unsafeRoutes,
  96. config.GetInt("tun.tx_queue", 500),
  97. )
  98. if err != nil {
  99. l.WithError(err).Fatal("Failed to get a tun/tap device")
  100. }
  101. // set up our UDP listener
  102. udpQueues := config.GetInt("listen.routines", 1)
  103. udpServer, err := NewListener(config.GetString("listen.host", "0.0.0.0"), config.GetInt("listen.port", 0), udpQueues > 1)
  104. if err != nil {
  105. l.WithError(err).Fatal("Failed to open udp listener")
  106. }
  107. udpServer.reloadConfig(config)
  108. // Set up my internal host map
  109. var preferredRanges []*net.IPNet
  110. rawPreferredRanges := config.GetStringSlice("preferred_ranges", []string{})
  111. // First, check if 'preferred_ranges' is set and fallback to 'local_range'
  112. if len(rawPreferredRanges) > 0 {
  113. for _, rawPreferredRange := range rawPreferredRanges {
  114. _, preferredRange, err := net.ParseCIDR(rawPreferredRange)
  115. if err != nil {
  116. l.WithError(err).Fatal("Failed to parse preferred ranges")
  117. }
  118. preferredRanges = append(preferredRanges, preferredRange)
  119. }
  120. }
  121. // local_range was superseded by preferred_ranges. If it is still present,
  122. // merge the local_range setting into preferred_ranges. We will probably
  123. // deprecate local_range and remove in the future.
  124. rawLocalRange := config.GetString("local_range", "")
  125. if rawLocalRange != "" {
  126. _, localRange, err := net.ParseCIDR(rawLocalRange)
  127. if err != nil {
  128. l.WithError(err).Fatal("Failed to parse local range")
  129. }
  130. // Check if the entry for local_range was already specified in
  131. // preferred_ranges. Don't put it into the slice twice if so.
  132. var found bool
  133. for _, r := range preferredRanges {
  134. if r.String() == localRange.String() {
  135. found = true
  136. break
  137. }
  138. }
  139. if !found {
  140. preferredRanges = append(preferredRanges, localRange)
  141. }
  142. }
  143. hostMap := NewHostMap("main", tunCidr, preferredRanges)
  144. hostMap.SetDefaultRoute(ip2int(net.ParseIP(config.GetString("default_route", "0.0.0.0"))))
  145. hostMap.addUnsafeRoutes(&unsafeRoutes)
  146. l.WithField("network", hostMap.vpnCIDR).WithField("preferredRanges", hostMap.preferredRanges).Info("Main HostMap created")
  147. /*
  148. config.SetDefault("promoter.interval", 10)
  149. go hostMap.Promoter(config.GetInt("promoter.interval"))
  150. */
  151. punchy := config.GetBool("punchy", false)
  152. if punchy == true {
  153. l.Info("UDP hole punching enabled")
  154. go hostMap.Punchy(udpServer)
  155. }
  156. port := config.GetInt("listen.port", 0)
  157. // If port is dynamic, discover it
  158. if port == 0 {
  159. uPort, err := udpServer.LocalAddr()
  160. if err != nil {
  161. l.WithError(err).Fatal("Failed to get listening port")
  162. }
  163. port = int(uPort.Port)
  164. }
  165. punchBack := config.GetBool("punch_back", false)
  166. amLighthouse := config.GetBool("lighthouse.am_lighthouse", false)
  167. // warn if am_lighthouse is enabled but upstream lighthouses exists
  168. rawLighthouseHosts := config.GetStringSlice("lighthouse.hosts", []string{})
  169. if amLighthouse && len(rawLighthouseHosts) != 0 {
  170. l.Warn("lighthouse.am_lighthouse enabled on node but upstream lighthouses exist in config")
  171. }
  172. lighthouseHosts := make([]uint32, len(rawLighthouseHosts))
  173. for i, host := range rawLighthouseHosts {
  174. ip := net.ParseIP(host)
  175. if ip == nil {
  176. l.WithField("host", host).Fatalf("Unable to parse lighthouse host entry %v", i+1)
  177. }
  178. lighthouseHosts[i] = ip2int(ip)
  179. }
  180. lightHouse := NewLightHouse(
  181. amLighthouse,
  182. ip2int(tunCidr.IP),
  183. lighthouseHosts,
  184. //TODO: change to a duration
  185. config.GetInt("lighthouse.interval", 10),
  186. port,
  187. udpServer,
  188. punchBack,
  189. )
  190. //TODO: Move all of this inside functions in lighthouse.go
  191. for k, v := range config.GetMap("static_host_map", map[interface{}]interface{}{}) {
  192. vpnIp := net.ParseIP(fmt.Sprintf("%v", k))
  193. vals, ok := v.([]interface{})
  194. if ok {
  195. for _, v := range vals {
  196. parts := strings.Split(fmt.Sprintf("%v", v), ":")
  197. addr, err := net.ResolveIPAddr("ip", parts[0])
  198. if err == nil {
  199. ip := addr.IP
  200. port, err := strconv.Atoi(parts[1])
  201. if err != nil {
  202. l.Fatalf("Static host address for %s could not be parsed: %s", vpnIp, v)
  203. }
  204. lightHouse.AddRemote(ip2int(vpnIp), NewUDPAddr(ip2int(ip), uint16(port)), true)
  205. }
  206. }
  207. } else {
  208. //TODO: make this all a helper
  209. parts := strings.Split(fmt.Sprintf("%v", v), ":")
  210. addr, err := net.ResolveIPAddr("ip", parts[0])
  211. if err == nil {
  212. ip := addr.IP
  213. port, err := strconv.Atoi(parts[1])
  214. if err != nil {
  215. l.Fatalf("Static host address for %s could not be parsed: %s", vpnIp, v)
  216. }
  217. lightHouse.AddRemote(ip2int(vpnIp), NewUDPAddr(ip2int(ip), uint16(port)), true)
  218. }
  219. }
  220. }
  221. err = lightHouse.ValidateLHStaticEntries()
  222. if err != nil {
  223. l.WithError(err).Error("Lighthouse unreachable")
  224. }
  225. handshakeManager := NewHandshakeManager(tunCidr, preferredRanges, hostMap, lightHouse, udpServer)
  226. //TODO: These will be reused for psk
  227. //handshakeMACKey := config.GetString("handshake_mac.key", "")
  228. //handshakeAcceptedMACKeys := config.GetStringSlice("handshake_mac.accepted_keys", []string{})
  229. serveDns := config.GetBool("lighthouse.serve_dns", false)
  230. checkInterval := config.GetInt("timers.connection_alive_interval", 5)
  231. pendingDeletionInterval := config.GetInt("timers.pending_deletion_interval", 10)
  232. ifConfig := &InterfaceConfig{
  233. HostMap: hostMap,
  234. Inside: tun,
  235. Outside: udpServer,
  236. certState: cs,
  237. Cipher: config.GetString("cipher", "aes"),
  238. Firewall: fw,
  239. ServeDns: serveDns,
  240. HandshakeManager: handshakeManager,
  241. lightHouse: lightHouse,
  242. checkInterval: checkInterval,
  243. pendingDeletionInterval: pendingDeletionInterval,
  244. DropLocalBroadcast: config.GetBool("tun.drop_local_broadcast", false),
  245. DropMulticast: config.GetBool("tun.drop_multicast", false),
  246. UDPBatchSize: config.GetInt("listen.batch", 64),
  247. }
  248. switch ifConfig.Cipher {
  249. case "aes":
  250. noiseEndiannes = binary.BigEndian
  251. case "chachapoly":
  252. noiseEndiannes = binary.LittleEndian
  253. default:
  254. l.Fatalf("Unknown cipher: %v", ifConfig.Cipher)
  255. }
  256. ifce, err := NewInterface(ifConfig)
  257. if err != nil {
  258. l.WithError(err).Fatal("Failed to initialize interface")
  259. }
  260. ifce.RegisterConfigChangeCallbacks(config)
  261. go handshakeManager.Run(ifce)
  262. go lightHouse.LhUpdateWorker(ifce)
  263. err = startStats(config)
  264. if err != nil {
  265. l.WithError(err).Fatal("Failed to start stats emitter")
  266. }
  267. //TODO: check if we _should_ be emitting stats
  268. go ifce.emitStats(config.GetDuration("stats.interval", time.Second*10))
  269. attachCommands(ssh, hostMap, handshakeManager.pendingHostMap, lightHouse, ifce)
  270. ifce.Run(config.GetInt("tun.routines", 1), udpQueues, buildVersion)
  271. // Start DNS server last to allow using the nebula IP as lighthouse.dns.host
  272. if amLighthouse && serveDns {
  273. l.Debugln("Starting dns server")
  274. go dnsMain(hostMap, config)
  275. }
  276. // Just sit here and be friendly, main thread.
  277. shutdownBlock(ifce)
  278. }
  279. func shutdownBlock(ifce *Interface) {
  280. var sigChan = make(chan os.Signal)
  281. signal.Notify(sigChan, syscall.SIGTERM)
  282. signal.Notify(sigChan, syscall.SIGINT)
  283. sig := <-sigChan
  284. l.WithField("signal", sig).Info("Caught signal, shutting down")
  285. //TODO: stop tun and udp routines, the lock on hostMap does effectively does that though
  286. //TODO: this is probably better as a function in ConnectionManager or HostMap directly
  287. ifce.hostMap.Lock()
  288. for _, h := range ifce.hostMap.Hosts {
  289. if h.ConnectionState.ready {
  290. ifce.send(closeTunnel, 0, h.ConnectionState, h, h.remote, []byte{}, make([]byte, 12, 12), make([]byte, mtu))
  291. l.WithField("vpnIp", IntIp(h.hostId)).WithField("udpAddr", h.remote).
  292. Debug("Sending close tunnel message")
  293. }
  294. }
  295. ifce.hostMap.Unlock()
  296. l.WithField("signal", sig).Info("Goodbye")
  297. os.Exit(0)
  298. }