cert.go 17 KB

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