geneve.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // Copyright 2016 Google, Inc. All rights reserved.
  2. //
  3. // Use of this source code is governed by a BSD-style license
  4. // that can be found in the LICENSE file in the root of the source
  5. // tree.
  6. package layers
  7. import (
  8. "encoding/binary"
  9. "errors"
  10. "github.com/google/gopacket"
  11. )
  12. // Geneve is specifed here https://tools.ietf.org/html/draft-ietf-nvo3-geneve-03
  13. // Geneve Header:
  14. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  15. // |Ver| Opt Len |O|C| Rsvd. | Protocol Type |
  16. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  17. // | Virtual Network Identifier (VNI) | Reserved |
  18. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  19. // | Variable Length Options |
  20. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  21. type Geneve struct {
  22. BaseLayer
  23. Version uint8 // 2 bits
  24. OptionsLength uint8 // 6 bits
  25. OAMPacket bool // 1 bits
  26. CriticalOption bool // 1 bits
  27. Protocol EthernetType // 16 bits
  28. VNI uint32 // 24bits
  29. Options []*GeneveOption
  30. }
  31. // Geneve Tunnel Options
  32. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  33. // | Option Class | Type |R|R|R| Length |
  34. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  35. // | Variable Option Data |
  36. // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  37. type GeneveOption struct {
  38. Class uint16 // 16 bits
  39. Type uint8 // 8 bits
  40. Flags uint8 // 3 bits
  41. Length uint8 // 5 bits
  42. Data []byte
  43. }
  44. // LayerType returns LayerTypeGeneve
  45. func (gn *Geneve) LayerType() gopacket.LayerType { return LayerTypeGeneve }
  46. func decodeGeneveOption(data []byte, gn *Geneve) (*GeneveOption, uint8) {
  47. opt := &GeneveOption{}
  48. opt.Class = binary.BigEndian.Uint16(data[0:2])
  49. opt.Type = data[2]
  50. opt.Flags = data[3] >> 4
  51. opt.Length = (data[3]&0xf)*4 + 4
  52. opt.Data = make([]byte, opt.Length-4)
  53. copy(opt.Data, data[4:opt.Length])
  54. return opt, opt.Length
  55. }
  56. func (gn *Geneve) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error {
  57. if len(data) < 7 {
  58. df.SetTruncated()
  59. return errors.New("geneve packet too short")
  60. }
  61. gn.Version = data[0] >> 7
  62. gn.OptionsLength = (data[0] & 0x3f) * 4
  63. gn.OAMPacket = data[1]&0x80 > 0
  64. gn.CriticalOption = data[1]&0x40 > 0
  65. gn.Protocol = EthernetType(binary.BigEndian.Uint16(data[2:4]))
  66. var buf [4]byte
  67. copy(buf[1:], data[4:7])
  68. gn.VNI = binary.BigEndian.Uint32(buf[:])
  69. offset, length := uint8(8), int32(gn.OptionsLength)
  70. if len(data) < int(length+7) {
  71. df.SetTruncated()
  72. return errors.New("geneve packet too short")
  73. }
  74. for length > 0 {
  75. opt, len := decodeGeneveOption(data[offset:], gn)
  76. gn.Options = append(gn.Options, opt)
  77. length -= int32(len)
  78. offset += len
  79. }
  80. gn.BaseLayer = BaseLayer{data[:offset], data[offset:]}
  81. return nil
  82. }
  83. func (gn *Geneve) NextLayerType() gopacket.LayerType {
  84. return gn.Protocol.LayerType()
  85. }
  86. func decodeGeneve(data []byte, p gopacket.PacketBuilder) error {
  87. gn := &Geneve{}
  88. return decodingLayerDecoder(gn, data, p)
  89. }