blob: d1dc8ddced54ddc47c44680eadf7769a98c9f2cc [file] [log] [blame]
sanghob35a6192015-04-01 13:05:26 -07001/*
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 */
16package org.onosproject.segmentrouting;
17
sanghob35a6192015-04-01 13:05:26 -070018import org.onlab.packet.Ethernet;
19import org.onlab.packet.ICMP;
20import org.onlab.packet.IPv4;
21import org.onlab.packet.Ip4Address;
22import org.onlab.packet.IpPrefix;
23import org.onlab.packet.MPLS;
24import org.onosproject.net.ConnectPoint;
25import org.onosproject.net.DeviceId;
26import org.onosproject.net.flow.DefaultTrafficTreatment;
27import org.onosproject.net.flow.TrafficTreatment;
28import org.onosproject.net.packet.DefaultOutboundPacket;
29import org.onosproject.net.packet.InboundPacket;
30import org.onosproject.net.packet.OutboundPacket;
Charles Chan0b4e6182015-11-03 10:42:14 -080031import org.onosproject.segmentrouting.config.DeviceConfigNotFoundException;
32import org.onosproject.segmentrouting.config.DeviceConfiguration;
sanghob35a6192015-04-01 13:05:26 -070033import org.slf4j.Logger;
34import org.slf4j.LoggerFactory;
35
Jonathan Hart2a655752015-04-07 16:46:33 -070036import java.nio.ByteBuffer;
Saurav Das837e0bb2015-10-30 17:45:38 -070037import java.util.Set;
Jonathan Hart2a655752015-04-07 16:46:33 -070038
sanghob35a6192015-04-01 13:05:26 -070039import static com.google.common.base.Preconditions.checkNotNull;
40
41public class IcmpHandler {
42
43 private static Logger log = LoggerFactory.getLogger(IcmpHandler.class);
44 private SegmentRoutingManager srManager;
sangho666cd6d2015-04-14 16:27:13 -070045 private DeviceConfiguration config;
sanghob35a6192015-04-01 13:05:26 -070046
47 /**
48 * Creates an IcmpHandler object.
49 *
50 * @param srManager SegmentRoutingManager object
51 */
52 public IcmpHandler(SegmentRoutingManager srManager) {
53 this.srManager = srManager;
sangho666cd6d2015-04-14 16:27:13 -070054 this.config = checkNotNull(srManager.deviceConfiguration);
sanghob35a6192015-04-01 13:05:26 -070055 }
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 *
Thomas Vachuskae10f56b2015-04-15 18:20:08 -070064 * @param pkt inbound packet
sanghob35a6192015-04-01 13:05:26 -070065 */
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());
Saurav Das837e0bb2015-10-30 17:45:38 -070075 Set<Ip4Address> gatewayIpAddresses = config.getPortIPs(deviceId);
Charles Chan0b4e6182015-11-03 10:42:14 -080076 Ip4Address routerIp;
77 try {
78 routerIp = config.getRouterIp(deviceId);
79 } catch (DeviceConfigNotFoundException e) {
80 log.warn(e.getMessage() + " Aborting processPacketIn.");
81 return;
82 }
sangho666cd6d2015-04-14 16:27:13 -070083 IpPrefix routerIpPrefix = IpPrefix.valueOf(routerIp, IpPrefix.MAX_INET_MASK_LENGTH);
sanghob35a6192015-04-01 13:05:26 -070084 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) ||
Srikanth Vavilapalli4db76e32015-04-07 15:12:32 -070089 gatewayIpAddresses.contains(destinationAddress))) {
sanghob35a6192015-04-01 13:05:26 -070090 sendICMPResponse(ethernet, connectPoint);
sanghob35a6192015-04-01 13:05:26 -070091
92 // ICMP for any known host
93 } else if (!srManager.hostService.getHostsByIp(destinationAddress).isEmpty()) {
Saurav Das4ce45962015-11-24 23:21:05 -080094 // TODO: known host packet should not be coming to controller - resend flows?
sanghob35a6192015-04-01 13:05:26 -070095 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
Charles Chan68aa62d2015-11-09 16:37:23 -0800108 /**
109 * Sends an ICMP reply message.
110 *
111 * Note: we assume that packets sending from the edge switches to the hosts
112 * have untagged VLAN.
113 * @param icmpRequest the original ICMP request
114 * @param outport the output port where the ICMP reply should be sent to
115 */
sanghob35a6192015-04-01 13:05:26 -0700116 private void sendICMPResponse(Ethernet icmpRequest, ConnectPoint outport) {
Charles Chan68aa62d2015-11-09 16:37:23 -0800117 // Note: We assume that packets arrive at the edge switches have
118 // untagged VLAN.
sanghob35a6192015-04-01 13:05:26 -0700119 Ethernet icmpReplyEth = new Ethernet();
120
121 IPv4 icmpRequestIpv4 = (IPv4) icmpRequest.getPayload();
122 IPv4 icmpReplyIpv4 = new IPv4();
123
124 int destAddress = icmpRequestIpv4.getDestinationAddress();
125 icmpReplyIpv4.setDestinationAddress(icmpRequestIpv4.getSourceAddress());
126 icmpReplyIpv4.setSourceAddress(destAddress);
127 icmpReplyIpv4.setTtl((byte) 64);
128 icmpReplyIpv4.setChecksum((short) 0);
129
Jonathan Hart2a655752015-04-07 16:46:33 -0700130 ICMP icmpReply = new ICMP();
Saurav Das428ebc92015-09-30 10:00:49 -0700131 icmpReply.setPayload(((ICMP) icmpRequestIpv4.getPayload()).getPayload());
sanghob35a6192015-04-01 13:05:26 -0700132 icmpReply.setIcmpType(ICMP.TYPE_ECHO_REPLY);
133 icmpReply.setIcmpCode(ICMP.SUBTYPE_ECHO_REPLY);
134 icmpReply.setChecksum((short) 0);
sanghob35a6192015-04-01 13:05:26 -0700135 icmpReplyIpv4.setPayload(icmpReply);
136
137 icmpReplyEth.setPayload(icmpReplyIpv4);
138 icmpReplyEth.setEtherType(Ethernet.TYPE_IPV4);
139 icmpReplyEth.setDestinationMACAddress(icmpRequest.getSourceMACAddress());
140 icmpReplyEth.setSourceMACAddress(icmpRequest.getDestinationMACAddress());
sanghob35a6192015-04-01 13:05:26 -0700141
142 Ip4Address destIpAddress = Ip4Address.valueOf(icmpReplyIpv4.getDestinationAddress());
sangho666cd6d2015-04-14 16:27:13 -0700143 Ip4Address destRouterAddress = config.getRouterIpAddressForASubnetHost(destIpAddress);
144 int sid = config.getSegmentId(destRouterAddress);
sanghob35a6192015-04-01 13:05:26 -0700145 if (sid < 0) {
146 log.warn("Cannot find the Segment ID for {}", destAddress);
147 return;
148 }
149
150 sendPacketOut(outport, icmpReplyEth, sid);
151
152 }
153
154 private void sendPacketOut(ConnectPoint outport, Ethernet payload, int sid) {
155
156 IPv4 ipPacket = (IPv4) payload.getPayload();
157 Ip4Address destIpAddress = Ip4Address.valueOf(ipPacket.getDestinationAddress());
158
sangho666cd6d2015-04-14 16:27:13 -0700159 if (sid == -1 || config.getSegmentId(payload.getDestinationMAC()) == sid ||
sanghob35a6192015-04-01 13:05:26 -0700160 config.inSameSubnet(outport.deviceId(), destIpAddress)) {
161 TrafficTreatment treatment = DefaultTrafficTreatment.builder().
162 setOutput(outport.port()).build();
163 OutboundPacket packet = new DefaultOutboundPacket(outport.deviceId(),
164 treatment, ByteBuffer.wrap(payload.serialize()));
165 srManager.packetService.emit(packet);
166 } else {
167 log.warn("Send a MPLS packet as a ICMP response");
168 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
169 .setOutput(outport.port())
170 .build();
171
172 payload.setEtherType(Ethernet.MPLS_UNICAST);
173 MPLS mplsPkt = new MPLS();
174 mplsPkt.setLabel(sid);
175 mplsPkt.setTtl(((IPv4) payload.getPayload()).getTtl());
176 mplsPkt.setPayload(payload.getPayload());
177 payload.setPayload(mplsPkt);
178
179 OutboundPacket packet = new DefaultOutboundPacket(outport.deviceId(),
180 treatment, ByteBuffer.wrap(payload.serialize()));
181
182 srManager.packetService.emit(packet);
183 }
184 }
sangho666cd6d2015-04-14 16:27:13 -0700185
186
sanghob35a6192015-04-01 13:05:26 -0700187}