Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package core |
| 18 | |
| 19 | import ( |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 20 | "errors" |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 21 | "net" |
| 22 | "strconv" |
| 23 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame] | 24 | "github.com/google/gopacket" |
| 25 | "github.com/google/gopacket/layers" |
| 26 | "github.com/google/gopacket/pcap" |
Zack Williams | 2abf393 | 2019-08-05 14:07:05 -0700 | [diff] [blame^] | 27 | "github.com/opencord/voltha-bbsim/common/logger" |
| 28 | "github.com/opencord/voltha-bbsim/device" |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 29 | ) |
| 30 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 31 | // RecvWorker receives the packet and forwards to the channel |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 32 | func RecvWorker(io *Ioinfo, handler *pcap.Handle, r chan Packet) { |
Keita NISHIMOTO | c66b8eb | 2018-10-20 07:19:39 +0900 | [diff] [blame] | 33 | logger.Debug("recvWorker runs. handler: %v", *handler) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 34 | packetSource := gopacket.NewPacketSource(handler, handler.LinkType()) |
| 35 | for packet := range packetSource.Packets() { |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 36 | logger.Debug("recv packet from IF: %v ", *handler) |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 37 | // logger.Println(packet.Dump()) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 38 | pkt := Packet{} |
| 39 | pkt.Info = io |
| 40 | pkt.Pkt = packet |
| 41 | r <- pkt |
| 42 | } |
| 43 | } |
| 44 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 45 | // SendUni sends packet to UNI interface |
Matteo Scandolo | a286c74 | 2018-11-20 08:10:04 -0800 | [diff] [blame] | 46 | func SendUni(handle *pcap.Handle, packet gopacket.Packet, onu *device.Onu) { |
Keita NISHIMOTO | b841749 | 2018-10-19 17:37:38 +0900 | [diff] [blame] | 47 | err := handle.WritePacketData(packet.Data()) |
| 48 | if err != nil { |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 49 | device.LoggerWithOnu(onu).Errorf("Error in send packet to UNI-IF: %v e:%v", *handle, err) |
Keita NISHIMOTO | b841749 | 2018-10-19 17:37:38 +0900 | [diff] [blame] | 50 | } |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 51 | device.LoggerWithOnu(onu).Debugf("Successfully send packet to UNI-IF: %v", *handle) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 52 | } |
| 53 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 54 | // SendNni sends packaet to NNI interface |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 55 | func SendNni(handle *pcap.Handle, packet gopacket.Packet) { |
Keita NISHIMOTO | b841749 | 2018-10-19 17:37:38 +0900 | [diff] [blame] | 56 | err := handle.WritePacketData(packet.Data()) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 57 | if err != nil { |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 58 | logger.Error("Error in send packet to NNI e:%s", err) |
Keita NISHIMOTO | b841749 | 2018-10-19 17:37:38 +0900 | [diff] [blame] | 59 | } |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 60 | logger.Debug("send packet to NNI-IF: %v ", *handle) |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 61 | // logger.Println(packet.Dump()) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 62 | } |
| 63 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 64 | // PopVLAN pops the vlan ans return packet |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 65 | func PopVLAN(pkt gopacket.Packet) (gopacket.Packet, uint16, error) { |
| 66 | if layer := getDot1QLayer(pkt); layer != nil { |
| 67 | if eth := getEthernetLayer(pkt); eth != nil { |
| 68 | ethernetLayer := &layers.Ethernet{ |
| 69 | SrcMAC: eth.SrcMAC, |
| 70 | DstMAC: eth.DstMAC, |
| 71 | EthernetType: layer.Type, |
| 72 | } |
| 73 | buffer := gopacket.NewSerializeBuffer() |
| 74 | gopacket.SerializeLayers(buffer, gopacket.SerializeOptions{}, |
| 75 | ethernetLayer, |
| 76 | gopacket.Payload(layer.Payload), |
| 77 | ) |
| 78 | retpkt := gopacket.NewPacket( |
| 79 | buffer.Bytes(), |
| 80 | layers.LayerTypeEthernet, |
| 81 | gopacket.Default, |
| 82 | ) |
| 83 | vid := uint16(4095 & layer.VLANIdentifier) |
Keita NISHIMOTO | c66b8eb | 2018-10-20 07:19:39 +0900 | [diff] [blame] | 84 | logger.Debug("Pop the 802.1Q header (VID: %d)", vid) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 85 | return retpkt, vid, nil |
| 86 | } |
| 87 | } |
Scott Baker | 2b4ffb7 | 2019-08-02 16:20:47 -0700 | [diff] [blame] | 88 | return nil, 0, errors.New("failed to pop vlan") |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 89 | } |
| 90 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 91 | // PushVLAN pushes the vlan header to the packet and returns tha packet |
Matteo Scandolo | a286c74 | 2018-11-20 08:10:04 -0800 | [diff] [blame] | 92 | func PushVLAN(pkt gopacket.Packet, vid uint16, onu *device.Onu) (gopacket.Packet, error) { |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 93 | if eth := getEthernetLayer(pkt); eth != nil { |
| 94 | ethernetLayer := &layers.Ethernet{ |
| 95 | SrcMAC: eth.SrcMAC, |
| 96 | DstMAC: eth.DstMAC, |
| 97 | EthernetType: 0x8100, |
| 98 | } |
| 99 | dot1qLayer := &layers.Dot1Q{ |
| 100 | Type: eth.EthernetType, |
| 101 | VLANIdentifier: uint16(vid), |
| 102 | } |
| 103 | |
| 104 | buffer := gopacket.NewSerializeBuffer() |
| 105 | gopacket.SerializeLayers( |
| 106 | buffer, |
| 107 | gopacket.SerializeOptions{ |
| 108 | FixLengths: false, |
| 109 | }, |
| 110 | ethernetLayer, |
| 111 | dot1qLayer, |
| 112 | gopacket.Payload(eth.Payload), |
| 113 | ) |
| 114 | ret := gopacket.NewPacket( |
| 115 | buffer.Bytes(), |
| 116 | layers.LayerTypeEthernet, |
| 117 | gopacket.Default, |
| 118 | ) |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 119 | device.LoggerWithOnu(onu).Debugf("Push the 802.1Q header (VID: %d)", vid) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 120 | return ret, nil |
| 121 | } |
| 122 | return nil, errors.New("failed to push vlan") |
| 123 | } |
| 124 | |
| 125 | func getEthernetLayer(pkt gopacket.Packet) *layers.Ethernet { |
| 126 | eth := &layers.Ethernet{} |
| 127 | if ethLayer := pkt.Layer(layers.LayerTypeEthernet); ethLayer != nil { |
| 128 | eth, _ = ethLayer.(*layers.Ethernet) |
| 129 | } |
| 130 | return eth |
| 131 | } |
| 132 | func getDot1QLayer(pkt gopacket.Packet) (dot1q *layers.Dot1Q) { |
| 133 | if dot1qLayer := pkt.Layer(layers.LayerTypeDot1Q); dot1qLayer != nil { |
| 134 | dot1q = dot1qLayer.(*layers.Dot1Q) |
| 135 | } |
| 136 | return dot1q |
| 137 | } |
| 138 | |
| 139 | func getMacAddress(ifName string) net.HardwareAddr { |
| 140 | var err error |
| 141 | var netIf *net.Interface |
| 142 | var hwAddr net.HardwareAddr |
| 143 | if netIf, err = net.InterfaceByName(ifName); err == nil { |
| 144 | hwAddr = netIf.HardwareAddr |
| 145 | } |
| 146 | return hwAddr |
| 147 | } |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 148 | |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 149 | func makeNniName(oltid uint32) (upif string, dwif string) { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 150 | upif = NniVethNorthPfx + strconv.Itoa(int(oltid)) |
| 151 | dwif = NniVethSouthPfx + strconv.Itoa(int(oltid)) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 152 | return |
| 153 | } |
| 154 | |
| 155 | func setupVethHandler(inveth string, outveth string, vethnames []string) (*pcap.Handle, []string, error) { |
| 156 | logger.Debug("SetupVethHandler(%s, %s) called ", inveth, outveth) |
| 157 | err1 := CreateVethPairs(inveth, outveth) |
| 158 | vethnames = append(vethnames, inveth) |
| 159 | if err1 != nil { |
Zack Williams | b85f593 | 2019-05-10 16:21:35 -0700 | [diff] [blame] | 160 | logger.Error("setupVethHandler failed: %v", err1) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 161 | RemoveVeths(vethnames) |
| 162 | return nil, vethnames, err1 |
| 163 | } |
| 164 | handler, err2 := getVethHandler(inveth) |
| 165 | if err2 != nil { |
Zack Williams | b85f593 | 2019-05-10 16:21:35 -0700 | [diff] [blame] | 166 | logger.Error("getVethHandler failed: %v", err2) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 167 | RemoveVeths(vethnames) |
| 168 | return nil, vethnames, err2 |
| 169 | } |
| 170 | return handler, vethnames, nil |
| 171 | } |
| 172 | |
| 173 | func getVethHandler(vethname string) (*pcap.Handle, error) { |
| 174 | var ( |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 175 | device = vethname |
| 176 | snapshotLen int32 = 1518 |
| 177 | promiscuous = false |
| 178 | err error |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 179 | timeout = pcap.BlockForever |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 180 | ) |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 181 | handle, err := pcap.OpenLive(device, snapshotLen, promiscuous, timeout) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 182 | if err != nil { |
| 183 | return nil, err |
| 184 | } |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 185 | logger.Debug("Server handle is created for %s", vethname) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 186 | return handle, nil |
| 187 | } |