cert.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  1. package cert
  2. import (
  3. "bytes"
  4. "crypto"
  5. "crypto/rand"
  6. "crypto/sha256"
  7. "encoding/binary"
  8. "encoding/hex"
  9. "encoding/json"
  10. "encoding/pem"
  11. "fmt"
  12. "net"
  13. "time"
  14. "github.com/golang/protobuf/proto"
  15. "golang.org/x/crypto/curve25519"
  16. "golang.org/x/crypto/ed25519"
  17. )
  18. const publicKeyLen = 32
  19. const (
  20. CertBanner = "NEBULA CERTIFICATE"
  21. X25519PrivateKeyBanner = "NEBULA X25519 PRIVATE KEY"
  22. X25519PublicKeyBanner = "NEBULA X25519 PUBLIC KEY"
  23. Ed25519PrivateKeyBanner = "NEBULA ED25519 PRIVATE KEY"
  24. Ed25519PublicKeyBanner = "NEBULA ED25519 PUBLIC KEY"
  25. )
  26. type NebulaCertificate struct {
  27. Details NebulaCertificateDetails
  28. Signature []byte
  29. }
  30. type NebulaCertificateDetails struct {
  31. Name string
  32. Ips []*net.IPNet
  33. Subnets []*net.IPNet
  34. Groups []string
  35. NotBefore time.Time
  36. NotAfter time.Time
  37. PublicKey []byte
  38. IsCA bool
  39. Issuer string
  40. // Map of groups for faster lookup
  41. InvertedGroups map[string]struct{}
  42. }
  43. type m map[string]interface{}
  44. // UnmarshalNebulaCertificate will unmarshal a protobuf byte representation of a nebula cert
  45. func UnmarshalNebulaCertificate(b []byte) (*NebulaCertificate, error) {
  46. if len(b) == 0 {
  47. return nil, fmt.Errorf("nil byte array")
  48. }
  49. var rc RawNebulaCertificate
  50. err := proto.Unmarshal(b, &rc)
  51. if err != nil {
  52. return nil, err
  53. }
  54. if rc.Details == nil {
  55. return nil, fmt.Errorf("encoded Details was nil")
  56. }
  57. if len(rc.Details.Ips)%2 != 0 {
  58. return nil, fmt.Errorf("encoded IPs should be in pairs, an odd number was found")
  59. }
  60. if len(rc.Details.Subnets)%2 != 0 {
  61. return nil, fmt.Errorf("encoded Subnets should be in pairs, an odd number was found")
  62. }
  63. nc := NebulaCertificate{
  64. Details: NebulaCertificateDetails{
  65. Name: rc.Details.Name,
  66. Groups: make([]string, len(rc.Details.Groups)),
  67. Ips: make([]*net.IPNet, len(rc.Details.Ips)/2),
  68. Subnets: make([]*net.IPNet, len(rc.Details.Subnets)/2),
  69. NotBefore: time.Unix(rc.Details.NotBefore, 0),
  70. NotAfter: time.Unix(rc.Details.NotAfter, 0),
  71. PublicKey: make([]byte, len(rc.Details.PublicKey)),
  72. IsCA: rc.Details.IsCA,
  73. InvertedGroups: make(map[string]struct{}),
  74. },
  75. Signature: make([]byte, len(rc.Signature)),
  76. }
  77. copy(nc.Signature, rc.Signature)
  78. copy(nc.Details.Groups, rc.Details.Groups)
  79. nc.Details.Issuer = hex.EncodeToString(rc.Details.Issuer)
  80. if len(rc.Details.PublicKey) < publicKeyLen {
  81. return nil, fmt.Errorf("Public key was fewer than 32 bytes; %v", len(rc.Details.PublicKey))
  82. }
  83. copy(nc.Details.PublicKey, rc.Details.PublicKey)
  84. for i, rawIp := range rc.Details.Ips {
  85. if i%2 == 0 {
  86. nc.Details.Ips[i/2] = &net.IPNet{IP: int2ip(rawIp)}
  87. } else {
  88. nc.Details.Ips[i/2].Mask = net.IPMask(int2ip(rawIp))
  89. }
  90. }
  91. for i, rawIp := range rc.Details.Subnets {
  92. if i%2 == 0 {
  93. nc.Details.Subnets[i/2] = &net.IPNet{IP: int2ip(rawIp)}
  94. } else {
  95. nc.Details.Subnets[i/2].Mask = net.IPMask(int2ip(rawIp))
  96. }
  97. }
  98. for _, g := range rc.Details.Groups {
  99. nc.Details.InvertedGroups[g] = struct{}{}
  100. }
  101. return &nc, nil
  102. }
  103. // UnmarshalNebulaCertificateFromPEM will unmarshal the first pem block in a byte array, returning any non consumed data
  104. // or an error on failure
  105. func UnmarshalNebulaCertificateFromPEM(b []byte) (*NebulaCertificate, []byte, error) {
  106. p, r := pem.Decode(b)
  107. if p == nil {
  108. return nil, r, fmt.Errorf("input did not contain a valid PEM encoded block")
  109. }
  110. nc, err := UnmarshalNebulaCertificate(p.Bytes)
  111. return nc, r, err
  112. }
  113. // MarshalX25519PrivateKey is a simple helper to PEM encode an X25519 private key
  114. func MarshalX25519PrivateKey(b []byte) []byte {
  115. return pem.EncodeToMemory(&pem.Block{Type: X25519PrivateKeyBanner, Bytes: b})
  116. }
  117. // MarshalEd25519PrivateKey is a simple helper to PEM encode an Ed25519 private key
  118. func MarshalEd25519PrivateKey(key ed25519.PrivateKey) []byte {
  119. return pem.EncodeToMemory(&pem.Block{Type: Ed25519PrivateKeyBanner, Bytes: key})
  120. }
  121. // UnmarshalX25519PrivateKey will try to pem decode an X25519 private key, returning any other bytes b
  122. // or an error on failure
  123. func UnmarshalX25519PrivateKey(b []byte) ([]byte, []byte, error) {
  124. k, r := pem.Decode(b)
  125. if k == nil {
  126. return nil, r, fmt.Errorf("input did not contain a valid PEM encoded block")
  127. }
  128. if k.Type != X25519PrivateKeyBanner {
  129. return nil, r, fmt.Errorf("bytes did not contain a proper nebula X25519 private key banner")
  130. }
  131. if len(k.Bytes) != publicKeyLen {
  132. return nil, r, fmt.Errorf("key was not 32 bytes, is invalid X25519 private key")
  133. }
  134. return k.Bytes, r, nil
  135. }
  136. // UnmarshalEd25519PrivateKey will try to pem decode an Ed25519 private key, returning any other bytes b
  137. // or an error on failure
  138. func UnmarshalEd25519PrivateKey(b []byte) (ed25519.PrivateKey, []byte, error) {
  139. k, r := pem.Decode(b)
  140. if k == nil {
  141. return nil, r, fmt.Errorf("input did not contain a valid PEM encoded block")
  142. }
  143. if k.Type != Ed25519PrivateKeyBanner {
  144. return nil, r, fmt.Errorf("bytes did not contain a proper nebula Ed25519 private key banner")
  145. }
  146. if len(k.Bytes) != ed25519.PrivateKeySize {
  147. return nil, r, fmt.Errorf("key was not 64 bytes, is invalid ed25519 private key")
  148. }
  149. return k.Bytes, r, nil
  150. }
  151. // MarshalX25519PublicKey is a simple helper to PEM encode an X25519 public key
  152. func MarshalX25519PublicKey(b []byte) []byte {
  153. return pem.EncodeToMemory(&pem.Block{Type: X25519PublicKeyBanner, Bytes: b})
  154. }
  155. // MarshalEd25519PublicKey is a simple helper to PEM encode an Ed25519 public key
  156. func MarshalEd25519PublicKey(key ed25519.PublicKey) []byte {
  157. return pem.EncodeToMemory(&pem.Block{Type: Ed25519PublicKeyBanner, Bytes: key})
  158. }
  159. // UnmarshalX25519PublicKey will try to pem decode an X25519 public key, returning any other bytes b
  160. // or an error on failure
  161. func UnmarshalX25519PublicKey(b []byte) ([]byte, []byte, error) {
  162. k, r := pem.Decode(b)
  163. if k == nil {
  164. return nil, r, fmt.Errorf("input did not contain a valid PEM encoded block")
  165. }
  166. if k.Type != X25519PublicKeyBanner {
  167. return nil, r, fmt.Errorf("bytes did not contain a proper nebula X25519 public key banner")
  168. }
  169. if len(k.Bytes) != publicKeyLen {
  170. return nil, r, fmt.Errorf("key was not 32 bytes, is invalid X25519 public key")
  171. }
  172. return k.Bytes, r, nil
  173. }
  174. // UnmarshalEd25519PublicKey will try to pem decode an Ed25519 public key, returning any other bytes b
  175. // or an error on failure
  176. func UnmarshalEd25519PublicKey(b []byte) (ed25519.PublicKey, []byte, error) {
  177. k, r := pem.Decode(b)
  178. if k == nil {
  179. return nil, r, fmt.Errorf("input did not contain a valid PEM encoded block")
  180. }
  181. if k.Type != Ed25519PublicKeyBanner {
  182. return nil, r, fmt.Errorf("bytes did not contain a proper nebula Ed25519 public key banner")
  183. }
  184. if len(k.Bytes) != ed25519.PublicKeySize {
  185. return nil, r, fmt.Errorf("key was not 32 bytes, is invalid ed25519 public key")
  186. }
  187. return k.Bytes, r, nil
  188. }
  189. // Sign signs a nebula cert with the provided private key
  190. func (nc *NebulaCertificate) Sign(key ed25519.PrivateKey) error {
  191. b, err := proto.Marshal(nc.getRawDetails())
  192. if err != nil {
  193. return err
  194. }
  195. sig, err := key.Sign(rand.Reader, b, crypto.Hash(0))
  196. if err != nil {
  197. return err
  198. }
  199. nc.Signature = sig
  200. return nil
  201. }
  202. // CheckSignature verifies the signature against the provided public key
  203. func (nc *NebulaCertificate) CheckSignature(key ed25519.PublicKey) bool {
  204. b, err := proto.Marshal(nc.getRawDetails())
  205. if err != nil {
  206. return false
  207. }
  208. return ed25519.Verify(key, b, nc.Signature)
  209. }
  210. // Expired will return true if the nebula cert is too young or too old compared to the provided time, otherwise false
  211. func (nc *NebulaCertificate) Expired(t time.Time) bool {
  212. return nc.Details.NotBefore.After(t) || nc.Details.NotAfter.Before(t)
  213. }
  214. // Verify will ensure a certificate is good in all respects (expiry, group membership, signature, cert blocklist, etc)
  215. func (nc *NebulaCertificate) Verify(t time.Time, ncp *NebulaCAPool) (bool, error) {
  216. if ncp.IsBlocklisted(nc) {
  217. return false, fmt.Errorf("certificate has been blocked")
  218. }
  219. signer, err := ncp.GetCAForCert(nc)
  220. if err != nil {
  221. return false, err
  222. }
  223. if signer.Expired(t) {
  224. return false, fmt.Errorf("root certificate is expired")
  225. }
  226. if nc.Expired(t) {
  227. return false, fmt.Errorf("certificate is expired")
  228. }
  229. if !nc.CheckSignature(signer.Details.PublicKey) {
  230. return false, fmt.Errorf("certificate signature did not match")
  231. }
  232. if err := nc.CheckRootConstrains(signer); err != nil {
  233. return false, err
  234. }
  235. return true, nil
  236. }
  237. // CheckRootConstrains returns an error if the certificate violates constraints set on the root (groups, ips, subnets)
  238. func (nc *NebulaCertificate) CheckRootConstrains(signer *NebulaCertificate) error {
  239. // Make sure this cert wasn't valid before the root
  240. if signer.Details.NotAfter.Before(nc.Details.NotAfter) {
  241. return fmt.Errorf("certificate expires after signing certificate")
  242. }
  243. // Make sure this cert isn't valid after the root
  244. if signer.Details.NotBefore.After(nc.Details.NotBefore) {
  245. return fmt.Errorf("certificate is valid before the signing certificate")
  246. }
  247. // If the signer has a limited set of groups make sure the cert only contains a subset
  248. if len(signer.Details.InvertedGroups) > 0 {
  249. for _, g := range nc.Details.Groups {
  250. if _, ok := signer.Details.InvertedGroups[g]; !ok {
  251. return fmt.Errorf("certificate contained a group not present on the signing ca: %s", g)
  252. }
  253. }
  254. }
  255. // If the signer has a limited set of ip ranges to issue from make sure the cert only contains a subset
  256. if len(signer.Details.Ips) > 0 {
  257. for _, ip := range nc.Details.Ips {
  258. if !netMatch(ip, signer.Details.Ips) {
  259. return fmt.Errorf("certificate contained an ip assignment outside the limitations of the signing ca: %s", ip.String())
  260. }
  261. }
  262. }
  263. // If the signer has a limited set of subnet ranges to issue from make sure the cert only contains a subset
  264. if len(signer.Details.Subnets) > 0 {
  265. for _, subnet := range nc.Details.Subnets {
  266. if !netMatch(subnet, signer.Details.Subnets) {
  267. return fmt.Errorf("certificate contained a subnet assignment outside the limitations of the signing ca: %s", subnet)
  268. }
  269. }
  270. }
  271. return nil
  272. }
  273. // VerifyPrivateKey checks that the public key in the Nebula certificate and a supplied private key match
  274. func (nc *NebulaCertificate) VerifyPrivateKey(key []byte) error {
  275. var dst, key32 [32]byte
  276. copy(key32[:], key)
  277. curve25519.ScalarBaseMult(&dst, &key32)
  278. if !bytes.Equal(dst[:], nc.Details.PublicKey) {
  279. return fmt.Errorf("public key in cert and private key supplied don't match")
  280. }
  281. return nil
  282. }
  283. // String will return a pretty printed representation of a nebula cert
  284. func (nc *NebulaCertificate) String() string {
  285. if nc == nil {
  286. return "NebulaCertificate {}\n"
  287. }
  288. s := "NebulaCertificate {\n"
  289. s += "\tDetails {\n"
  290. s += fmt.Sprintf("\t\tName: %v\n", nc.Details.Name)
  291. if len(nc.Details.Ips) > 0 {
  292. s += "\t\tIps: [\n"
  293. for _, ip := range nc.Details.Ips {
  294. s += fmt.Sprintf("\t\t\t%v\n", ip.String())
  295. }
  296. s += "\t\t]\n"
  297. } else {
  298. s += "\t\tIps: []\n"
  299. }
  300. if len(nc.Details.Subnets) > 0 {
  301. s += "\t\tSubnets: [\n"
  302. for _, ip := range nc.Details.Subnets {
  303. s += fmt.Sprintf("\t\t\t%v\n", ip.String())
  304. }
  305. s += "\t\t]\n"
  306. } else {
  307. s += "\t\tSubnets: []\n"
  308. }
  309. if len(nc.Details.Groups) > 0 {
  310. s += "\t\tGroups: [\n"
  311. for _, g := range nc.Details.Groups {
  312. s += fmt.Sprintf("\t\t\t\"%v\"\n", g)
  313. }
  314. s += "\t\t]\n"
  315. } else {
  316. s += "\t\tGroups: []\n"
  317. }
  318. s += fmt.Sprintf("\t\tNot before: %v\n", nc.Details.NotBefore)
  319. s += fmt.Sprintf("\t\tNot After: %v\n", nc.Details.NotAfter)
  320. s += fmt.Sprintf("\t\tIs CA: %v\n", nc.Details.IsCA)
  321. s += fmt.Sprintf("\t\tIssuer: %s\n", nc.Details.Issuer)
  322. s += fmt.Sprintf("\t\tPublic key: %x\n", nc.Details.PublicKey)
  323. s += "\t}\n"
  324. fp, err := nc.Sha256Sum()
  325. if err == nil {
  326. s += fmt.Sprintf("\tFingerprint: %s\n", fp)
  327. }
  328. s += fmt.Sprintf("\tSignature: %x\n", nc.Signature)
  329. s += "}"
  330. return s
  331. }
  332. // getRawDetails marshals the raw details into protobuf ready struct
  333. func (nc *NebulaCertificate) getRawDetails() *RawNebulaCertificateDetails {
  334. rd := &RawNebulaCertificateDetails{
  335. Name: nc.Details.Name,
  336. Groups: nc.Details.Groups,
  337. NotBefore: nc.Details.NotBefore.Unix(),
  338. NotAfter: nc.Details.NotAfter.Unix(),
  339. PublicKey: make([]byte, len(nc.Details.PublicKey)),
  340. IsCA: nc.Details.IsCA,
  341. }
  342. for _, ipNet := range nc.Details.Ips {
  343. rd.Ips = append(rd.Ips, ip2int(ipNet.IP), ip2int(ipNet.Mask))
  344. }
  345. for _, ipNet := range nc.Details.Subnets {
  346. rd.Subnets = append(rd.Subnets, ip2int(ipNet.IP), ip2int(ipNet.Mask))
  347. }
  348. copy(rd.PublicKey, nc.Details.PublicKey[:])
  349. // I know, this is terrible
  350. rd.Issuer, _ = hex.DecodeString(nc.Details.Issuer)
  351. return rd
  352. }
  353. // Marshal will marshal a nebula cert into a protobuf byte array
  354. func (nc *NebulaCertificate) Marshal() ([]byte, error) {
  355. rc := RawNebulaCertificate{
  356. Details: nc.getRawDetails(),
  357. Signature: nc.Signature,
  358. }
  359. return proto.Marshal(&rc)
  360. }
  361. // MarshalToPEM will marshal a nebula cert into a protobuf byte array and pem encode the result
  362. func (nc *NebulaCertificate) MarshalToPEM() ([]byte, error) {
  363. b, err := nc.Marshal()
  364. if err != nil {
  365. return nil, err
  366. }
  367. return pem.EncodeToMemory(&pem.Block{Type: CertBanner, Bytes: b}), nil
  368. }
  369. // Sha256Sum calculates a sha-256 sum of the marshaled certificate
  370. func (nc *NebulaCertificate) Sha256Sum() (string, error) {
  371. b, err := nc.Marshal()
  372. if err != nil {
  373. return "", err
  374. }
  375. sum := sha256.Sum256(b)
  376. return hex.EncodeToString(sum[:]), nil
  377. }
  378. func (nc *NebulaCertificate) MarshalJSON() ([]byte, error) {
  379. toString := func(ips []*net.IPNet) []string {
  380. s := []string{}
  381. for _, ip := range ips {
  382. s = append(s, ip.String())
  383. }
  384. return s
  385. }
  386. fp, _ := nc.Sha256Sum()
  387. jc := m{
  388. "details": m{
  389. "name": nc.Details.Name,
  390. "ips": toString(nc.Details.Ips),
  391. "subnets": toString(nc.Details.Subnets),
  392. "groups": nc.Details.Groups,
  393. "notBefore": nc.Details.NotBefore,
  394. "notAfter": nc.Details.NotAfter,
  395. "publicKey": fmt.Sprintf("%x", nc.Details.PublicKey),
  396. "isCa": nc.Details.IsCA,
  397. "issuer": nc.Details.Issuer,
  398. },
  399. "fingerprint": fp,
  400. "signature": fmt.Sprintf("%x", nc.Signature),
  401. }
  402. return json.Marshal(jc)
  403. }
  404. //func (nc *NebulaCertificate) Copy() *NebulaCertificate {
  405. // r, err := nc.Marshal()
  406. // if err != nil {
  407. // //TODO
  408. // return nil
  409. // }
  410. //
  411. // c, err := UnmarshalNebulaCertificate(r)
  412. // return c
  413. //}
  414. func (nc *NebulaCertificate) Copy() *NebulaCertificate {
  415. c := &NebulaCertificate{
  416. Details: NebulaCertificateDetails{
  417. Name: nc.Details.Name,
  418. Groups: make([]string, len(nc.Details.Groups)),
  419. Ips: make([]*net.IPNet, len(nc.Details.Ips)),
  420. Subnets: make([]*net.IPNet, len(nc.Details.Subnets)),
  421. NotBefore: nc.Details.NotBefore,
  422. NotAfter: nc.Details.NotAfter,
  423. PublicKey: make([]byte, len(nc.Details.PublicKey)),
  424. IsCA: nc.Details.IsCA,
  425. Issuer: nc.Details.Issuer,
  426. InvertedGroups: make(map[string]struct{}, len(nc.Details.InvertedGroups)),
  427. },
  428. Signature: make([]byte, len(nc.Signature)),
  429. }
  430. copy(c.Signature, nc.Signature)
  431. copy(c.Details.Groups, nc.Details.Groups)
  432. copy(c.Details.PublicKey, nc.Details.PublicKey)
  433. for i, p := range nc.Details.Ips {
  434. c.Details.Ips[i] = &net.IPNet{
  435. IP: make(net.IP, len(p.IP)),
  436. Mask: make(net.IPMask, len(p.Mask)),
  437. }
  438. copy(c.Details.Ips[i].IP, p.IP)
  439. copy(c.Details.Ips[i].Mask, p.Mask)
  440. }
  441. for i, p := range nc.Details.Subnets {
  442. c.Details.Subnets[i] = &net.IPNet{
  443. IP: make(net.IP, len(p.IP)),
  444. Mask: make(net.IPMask, len(p.Mask)),
  445. }
  446. copy(c.Details.Subnets[i].IP, p.IP)
  447. copy(c.Details.Subnets[i].Mask, p.Mask)
  448. }
  449. for g := range nc.Details.InvertedGroups {
  450. c.Details.InvertedGroups[g] = struct{}{}
  451. }
  452. return c
  453. }
  454. func netMatch(certIp *net.IPNet, rootIps []*net.IPNet) bool {
  455. for _, net := range rootIps {
  456. if net.Contains(certIp.IP) && maskContains(net.Mask, certIp.Mask) {
  457. return true
  458. }
  459. }
  460. return false
  461. }
  462. func maskContains(caMask, certMask net.IPMask) bool {
  463. caM := maskTo4(caMask)
  464. cM := maskTo4(certMask)
  465. // Make sure forcing to ipv4 didn't nuke us
  466. if caM == nil || cM == nil {
  467. return false
  468. }
  469. // Make sure the cert mask is not greater than the ca mask
  470. for i := 0; i < len(caMask); i++ {
  471. if caM[i] > cM[i] {
  472. return false
  473. }
  474. }
  475. return true
  476. }
  477. func maskTo4(ip net.IPMask) net.IPMask {
  478. if len(ip) == net.IPv4len {
  479. return ip
  480. }
  481. if len(ip) == net.IPv6len && isZeros(ip[0:10]) && ip[10] == 0xff && ip[11] == 0xff {
  482. return ip[12:16]
  483. }
  484. return nil
  485. }
  486. func isZeros(b []byte) bool {
  487. for i := 0; i < len(b); i++ {
  488. if b[i] != 0 {
  489. return false
  490. }
  491. }
  492. return true
  493. }
  494. func ip2int(ip []byte) uint32 {
  495. if len(ip) == 16 {
  496. return binary.BigEndian.Uint32(ip[12:16])
  497. }
  498. return binary.BigEndian.Uint32(ip)
  499. }
  500. func int2ip(nn uint32) net.IP {
  501. ip := make(net.IP, net.IPv4len)
  502. binary.BigEndian.PutUint32(ip, nn)
  503. return ip
  504. }