backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / app / simple_switch_15.py
1 # Copyright (C) 2011 Nippon Telegraph and Telephone Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #    http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 from ryu.base import app_manager
17 from ryu.controller import ofp_event
18 from ryu.controller.handler import CONFIG_DISPATCHER, MAIN_DISPATCHER
19 from ryu.controller.handler import set_ev_cls
20 from ryu.ofproto import ofproto_v1_5
21 from ryu.lib.packet import packet
22 from ryu.lib.packet import ethernet
23 from ryu.lib.packet import ether_types
24
25
26 class SimpleSwitch15(app_manager.RyuApp):
27     OFP_VERSIONS = [ofproto_v1_5.OFP_VERSION]
28
29     def __init__(self, *args, **kwargs):
30         super(SimpleSwitch15, self).__init__(*args, **kwargs)
31         self.mac_to_port = {}
32
33     @set_ev_cls(ofp_event.EventOFPSwitchFeatures, CONFIG_DISPATCHER)
34     def switch_features_handler(self, ev):
35         datapath = ev.msg.datapath
36         ofproto = datapath.ofproto
37         parser = datapath.ofproto_parser
38
39         # install table-miss flow entry
40         #
41         # We specify NO BUFFER to max_len of the output action due to
42         # OVS bug. At this moment, if we specify a lesser number, e.g.,
43         # 128, OVS will send Packet-In with invalid buffer_id and
44         # truncated packet data. In that case, we cannot output packets
45         # correctly.  The bug has been fixed in OVS v2.1.0.
46         match = parser.OFPMatch()
47         actions = [parser.OFPActionOutput(ofproto.OFPP_CONTROLLER,
48                                           ofproto.OFPCML_NO_BUFFER)]
49         self.add_flow(datapath, 0, match, actions)
50
51     def add_flow(self, datapath, priority, match, actions):
52         ofproto = datapath.ofproto
53         parser = datapath.ofproto_parser
54
55         inst = [parser.OFPInstructionActions(ofproto.OFPIT_APPLY_ACTIONS,
56                                              actions)]
57
58         mod = parser.OFPFlowMod(datapath=datapath, priority=priority,
59                                 match=match, instructions=inst)
60         datapath.send_msg(mod)
61
62     @set_ev_cls(ofp_event.EventOFPPacketIn, MAIN_DISPATCHER)
63     def _packet_in_handler(self, ev):
64         msg = ev.msg
65         datapath = msg.datapath
66         ofproto = datapath.ofproto
67         parser = datapath.ofproto_parser
68         in_port = msg.match['in_port']
69
70         pkt = packet.Packet(msg.data)
71         eth = pkt.get_protocols(ethernet.ethernet)[0]
72
73         if eth.ethertype == ether_types.ETH_TYPE_LLDP:
74             # ignore lldp packet
75             return
76         dst = eth.dst
77         src = eth.src
78
79         dpid = datapath.id
80         self.mac_to_port.setdefault(dpid, {})
81
82         self.logger.info("packet in %s %s %s %s", dpid, src, dst, in_port)
83
84         # learn a mac address to avoid FLOOD next time.
85         self.mac_to_port[dpid][src] = in_port
86
87         if dst in self.mac_to_port[dpid]:
88             out_port = self.mac_to_port[dpid][dst]
89         else:
90             out_port = ofproto.OFPP_FLOOD
91
92         actions = [parser.OFPActionOutput(out_port)]
93
94         # install a flow to avoid packet_in next time
95         if out_port != ofproto.OFPP_FLOOD:
96             match = parser.OFPMatch(in_port=in_port, eth_dst=dst)
97             self.add_flow(datapath, 1, match, actions)
98
99         data = None
100         if msg.buffer_id == ofproto.OFP_NO_BUFFER:
101             data = msg.data
102
103         match = parser.OFPMatch(in_port=in_port)
104
105         out = parser.OFPPacketOut(datapath=datapath, buffer_id=msg.buffer_id,
106                                   match=match, actions=actions, data=data)
107         datapath.send_msg(out)