c4267ebbd25a4905ad97145bfff893288bbbaebb
[onosfw.git] /
1 /*
2  * Copyright 2015 Open Networking Laboratory
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 package org.onosproject.segmentrouting;
17
18 import org.onlab.packet.Ethernet;
19 import org.onlab.packet.ICMP;
20 import org.onlab.packet.IPv4;
21 import org.onlab.packet.Ip4Address;
22 import org.onlab.packet.IpPrefix;
23 import org.onlab.packet.MPLS;
24 import org.onosproject.net.ConnectPoint;
25 import org.onosproject.net.DeviceId;
26 import org.onosproject.net.flow.DefaultTrafficTreatment;
27 import org.onosproject.net.flow.TrafficTreatment;
28 import org.onosproject.net.packet.DefaultOutboundPacket;
29 import org.onosproject.net.packet.InboundPacket;
30 import org.onosproject.net.packet.OutboundPacket;
31 import org.onosproject.segmentrouting.config.DeviceConfigNotFoundException;
32 import org.onosproject.segmentrouting.config.DeviceConfiguration;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36 import java.nio.ByteBuffer;
37 import java.util.Set;
38
39 import static com.google.common.base.Preconditions.checkNotNull;
40
41 public class IcmpHandler {
42
43     private static Logger log = LoggerFactory.getLogger(IcmpHandler.class);
44     private SegmentRoutingManager srManager;
45     private DeviceConfiguration config;
46
47     /**
48      * Creates an IcmpHandler object.
49      *
50      * @param srManager SegmentRoutingManager object
51      */
52     public IcmpHandler(SegmentRoutingManager srManager) {
53         this.srManager = srManager;
54         this.config = checkNotNull(srManager.deviceConfiguration);
55     }
56
57     /**
58      * Process incoming ICMP packet.
59      * If it is an ICMP request to router or known host, then sends an ICMP response.
60      * If it is an ICMP packet to known host and forward the packet to the host.
61      * If it is an ICMP packet to unknown host in a subnet, then sends an ARP request
62      * to the subnet.
63      *
64      * @param pkt inbound packet
65      */
66     public void processPacketIn(InboundPacket pkt) {
67
68         Ethernet ethernet = pkt.parsed();
69         IPv4 ipv4 = (IPv4) ethernet.getPayload();
70
71         ConnectPoint connectPoint = pkt.receivedFrom();
72         DeviceId deviceId = connectPoint.deviceId();
73         Ip4Address destinationAddress =
74                 Ip4Address.valueOf(ipv4.getDestinationAddress());
75         Set<Ip4Address> gatewayIpAddresses = config.getPortIPs(deviceId);
76         Ip4Address routerIp;
77         try {
78             routerIp = config.getRouterIp(deviceId);
79         } catch (DeviceConfigNotFoundException e) {
80             log.warn(e.getMessage() + " Aborting processPacketIn.");
81             return;
82         }
83         IpPrefix routerIpPrefix = IpPrefix.valueOf(routerIp, IpPrefix.MAX_INET_MASK_LENGTH);
84         Ip4Address routerIpAddress = routerIpPrefix.getIp4Prefix().address();
85
86         // ICMP to the router IP or gateway IP
87         if (((ICMP) ipv4.getPayload()).getIcmpType() == ICMP.TYPE_ECHO_REQUEST &&
88                 (destinationAddress.equals(routerIpAddress) ||
89                         gatewayIpAddresses.contains(destinationAddress))) {
90             sendICMPResponse(ethernet, connectPoint);
91             // TODO: do we need to set the flow rule again ??
92
93         // ICMP for any known host
94         } else if (!srManager.hostService.getHostsByIp(destinationAddress).isEmpty()) {
95             srManager.ipHandler.forwardPackets(deviceId, destinationAddress);
96
97         // ICMP for an unknown host in the subnet of the router
98         } else if (config.inSameSubnet(deviceId, destinationAddress)) {
99             srManager.arpHandler.sendArpRequest(deviceId, destinationAddress, connectPoint);
100
101         // ICMP for an unknown host
102         } else {
103             log.debug("ICMP request for unknown host {} ", destinationAddress);
104             // Do nothing
105         }
106     }
107
108     private void sendICMPResponse(Ethernet icmpRequest, ConnectPoint outport) {
109
110         Ethernet icmpReplyEth = new Ethernet();
111
112         IPv4 icmpRequestIpv4 = (IPv4) icmpRequest.getPayload();
113         IPv4 icmpReplyIpv4 = new IPv4();
114
115         int destAddress = icmpRequestIpv4.getDestinationAddress();
116         icmpReplyIpv4.setDestinationAddress(icmpRequestIpv4.getSourceAddress());
117         icmpReplyIpv4.setSourceAddress(destAddress);
118         icmpReplyIpv4.setTtl((byte) 64);
119         icmpReplyIpv4.setChecksum((short) 0);
120
121         ICMP icmpReply = new ICMP();
122         icmpReply.setPayload(((ICMP) icmpRequestIpv4.getPayload()).getPayload());
123         icmpReply.setIcmpType(ICMP.TYPE_ECHO_REPLY);
124         icmpReply.setIcmpCode(ICMP.SUBTYPE_ECHO_REPLY);
125         icmpReply.setChecksum((short) 0);
126         icmpReplyIpv4.setPayload(icmpReply);
127
128         icmpReplyEth.setPayload(icmpReplyIpv4);
129         icmpReplyEth.setEtherType(Ethernet.TYPE_IPV4);
130         icmpReplyEth.setDestinationMACAddress(icmpRequest.getSourceMACAddress());
131         icmpReplyEth.setSourceMACAddress(icmpRequest.getDestinationMACAddress());
132         icmpReplyEth.setVlanID(icmpRequest.getVlanID());
133
134         Ip4Address destIpAddress = Ip4Address.valueOf(icmpReplyIpv4.getDestinationAddress());
135         Ip4Address destRouterAddress = config.getRouterIpAddressForASubnetHost(destIpAddress);
136         int sid = config.getSegmentId(destRouterAddress);
137         if (sid < 0) {
138             log.warn("Cannot find the Segment ID for {}", destAddress);
139             return;
140         }
141
142         sendPacketOut(outport, icmpReplyEth, sid);
143
144     }
145
146     private void sendPacketOut(ConnectPoint outport, Ethernet payload, int sid) {
147
148         IPv4 ipPacket = (IPv4) payload.getPayload();
149         Ip4Address destIpAddress = Ip4Address.valueOf(ipPacket.getDestinationAddress());
150
151         if (sid == -1 || config.getSegmentId(payload.getDestinationMAC()) == sid ||
152                 config.inSameSubnet(outport.deviceId(), destIpAddress)) {
153             TrafficTreatment treatment = DefaultTrafficTreatment.builder().
154                     setOutput(outport.port()).build();
155             OutboundPacket packet = new DefaultOutboundPacket(outport.deviceId(),
156                     treatment, ByteBuffer.wrap(payload.serialize()));
157             srManager.packetService.emit(packet);
158         } else {
159             log.warn("Send a MPLS packet as a ICMP response");
160             TrafficTreatment treatment = DefaultTrafficTreatment.builder()
161                     .setOutput(outport.port())
162                     .build();
163
164             payload.setEtherType(Ethernet.MPLS_UNICAST);
165             MPLS mplsPkt = new MPLS();
166             mplsPkt.setLabel(sid);
167             mplsPkt.setTtl(((IPv4) payload.getPayload()).getTtl());
168             mplsPkt.setPayload(payload.getPayload());
169             payload.setPayload(mplsPkt);
170
171             OutboundPacket packet = new DefaultOutboundPacket(outport.deviceId(),
172                     treatment, ByteBuffer.wrap(payload.serialize()));
173
174             srManager.packetService.emit(packet);
175         }
176     }
177
178
179 }