blob: a930b1ed83f8e2082ee2c8b570bfeded462c9d49 [file] [log] [blame]
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001/*
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
17package packetHandlers
18
19import (
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -070020 "errors"
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070021 "github.com/google/gopacket"
22 "github.com/google/gopacket/layers"
23 "net"
24)
25
26func IsDhcpPacket(pkt gopacket.Packet) bool {
27 if layerDHCP := pkt.Layer(layers.LayerTypeDHCPv4); layerDHCP != nil {
28 return true
29 }
30 return false
31}
32
Matteo Scandolo618a6582020-09-09 12:21:29 -070033func IsIgmpPacket(pkt gopacket.Packet) bool {
34 if igmpLayer := pkt.Layer(layers.LayerTypeIGMP); igmpLayer != nil {
35 return true
36 }
37 return false
38}
39
Matteo Scandolo73c488d2019-11-01 14:44:22 -070040func IsLldpPacket(pkt gopacket.Packet) bool {
41 if layer := pkt.Layer(layers.LayerTypeLinkLayerDiscovery); layer != nil {
42 return true
43 }
44 return false
45}
46
Matteo Scandolo90d08f62020-10-29 12:06:55 -070047// return true if the packet is coming in the OLT from the DHCP Server
48// given that we only check DHCP packets we can use the Operation
49// Request are outgoing (toward the server)
50// Replies are incoming (toward the OLT)
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070051func IsIncomingPacket(packet gopacket.Packet) bool {
Matteo Scandolo90d08f62020-10-29 12:06:55 -070052 layerDHCP := packet.Layer(layers.LayerTypeDHCPv4)
53 if dhcp, ok := layerDHCP.(*layers.DHCPv4); ok {
54 if dhcp.Operation == layers.DHCPOpReply {
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070055 return true
56 }
57 }
58 return false
59}
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -070060
Matteo Scandolo40e067f2019-10-16 16:59:41 -070061// returns the Destination Mac Address contained in the packet
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -070062func GetDstMacAddressFromPacket(packet gopacket.Packet) (net.HardwareAddr, error) {
63 if ethLayer := packet.Layer(layers.LayerTypeEthernet); ethLayer != nil {
64 eth, _ := ethLayer.(*layers.Ethernet)
65
66 if eth.DstMAC != nil {
67 return eth.DstMAC, nil
68 }
69 }
70 return nil, errors.New("cant-find-mac-address")
71}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070072
73// returns the Source Mac Address contained in the packet
74func GetSrcMacAddressFromPacket(packet gopacket.Packet) (net.HardwareAddr, error) {
75 if ethLayer := packet.Layer(layers.LayerTypeEthernet); ethLayer != nil {
76 eth, _ := ethLayer.(*layers.Ethernet)
77
78 if eth.DstMAC != nil {
79 return eth.SrcMAC, nil
80 }
81 }
82 return nil, errors.New("cant-find-mac-address")
83}
84
85// returns wether it's an EAPOL or DHCP packet, error if it's none
Matteo Scandolo618a6582020-09-09 12:21:29 -070086func GetPktType(pkt gopacket.Packet) (PacketType, error) {
Matteo Scandolo40e067f2019-10-16 16:59:41 -070087 if pkt.Layer(layers.LayerTypeEAP) != nil || pkt.Layer(layers.LayerTypeEAPOL) != nil {
88 return EAPOL, nil
89 } else if IsDhcpPacket(pkt) {
90 return DHCP, nil
Matteo Scandolo618a6582020-09-09 12:21:29 -070091 } else if IsIgmpPacket(pkt) {
92 return IGMP, nil
Matteo Scandolo40e067f2019-10-16 16:59:41 -070093 }
Matteo Scandolo618a6582020-09-09 12:21:29 -070094 return UNKNOWN, errors.New("unknown-packet-type")
Matteo Scandolo40e067f2019-10-16 16:59:41 -070095}