Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 1 | """ |
| 2 | OpenFlow Test Framework |
| 3 | |
| 4 | Controller class |
| 5 | |
| 6 | Provide the interface to the control channel to the switch under test. |
| 7 | |
| 8 | Class inherits from thread so as to run in background allowing |
| 9 | asynchronous callbacks (if needed, not required). Also supports |
| 10 | polling. |
| 11 | |
| 12 | The controller thread maintains a queue. Incoming messages that |
| 13 | are not handled by a callback function are placed in this queue for |
| 14 | poll calls. |
| 15 | |
| 16 | Callbacks and polling support specifying the message type |
| 17 | |
| 18 | @todo Support transaction semantics via xid |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 19 | @todo Support select and listen on an administrative socket (or |
| 20 | use a timeout to support clean shutdown). |
| 21 | |
| 22 | Currently only one connection is accepted during the life of |
| 23 | the controller. There seems |
| 24 | to be no clean way to interrupt an accept call. Using select that also listens |
| 25 | on an administrative socket and can shut down the socket might work. |
| 26 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 27 | """ |
| 28 | |
Rich Lane | 720eaf2 | 2013-08-09 18:00:45 -0700 | [diff] [blame] | 29 | import sys |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 30 | import os |
| 31 | import socket |
| 32 | import time |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 33 | import struct |
| 34 | import select |
| 35 | import logging |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 36 | from threading import Thread |
| 37 | from threading import Lock |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 38 | from threading import Condition |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 39 | |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 40 | import ofutils |
| 41 | import loxi |
| 42 | |
| 43 | # Configured openflow version |
| 44 | import ofp as cfg_ofp |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 45 | |
| 46 | FILTER=''.join([(len(repr(chr(x)))==3) and chr(x) or '.' |
| 47 | for x in range(256)]) |
| 48 | |
| 49 | def hex_dump_buffer(src, length=16): |
| 50 | """ |
| 51 | Convert src to a hex dump string and return the string |
| 52 | @param src The source buffer |
| 53 | @param length The number of bytes shown in each line |
| 54 | @returns A string showing the hex dump |
| 55 | """ |
| 56 | result = ["\n"] |
| 57 | for i in xrange(0, len(src), length): |
| 58 | chars = src[i:i+length] |
| 59 | hex = ' '.join(["%02x" % ord(x) for x in chars]) |
| 60 | printable = ''.join(["%s" % ((ord(x) <= 127 and |
| 61 | FILTER[ord(x)]) or '.') for x in chars]) |
| 62 | result.append("%04x %-*s %s\n" % (i, length*3, hex, printable)) |
| 63 | return ''.join(result) |
| 64 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 65 | ##@todo Find a better home for these identifiers (controller) |
Glen Gibb | 741b118 | 2010-07-08 16:43:58 -0700 | [diff] [blame] | 66 | RCV_SIZE_DEFAULT = 32768 |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 67 | LISTEN_QUEUE_SIZE = 1 |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 68 | |
| 69 | class Controller(Thread): |
| 70 | """ |
| 71 | Class abstracting the control interface to the switch. |
| 72 | |
| 73 | For receiving messages, two mechanism will be implemented. First, |
| 74 | query the interface with poll. Second, register to have a |
| 75 | function called by message type. The callback is passed the |
| 76 | message type as well as the raw packet (or message object) |
| 77 | |
| 78 | One of the main purposes of this object is to translate between network |
| 79 | and host byte order. 'Above' this object, things should be in host |
| 80 | byte order. |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 81 | |
| 82 | @todo Consider using SocketServer for listening socket |
| 83 | @todo Test transaction code |
| 84 | |
| 85 | @var rcv_size The receive size to use for receive calls |
| 86 | @var max_pkts The max size of the receive queue |
| 87 | @var keep_alive If true, listen for echo requests and respond w/ |
| 88 | echo replies |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 89 | @var initial_hello If true, will send a hello message immediately |
| 90 | upon connecting to the switch |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 91 | @var switch If not None, do an active connection to the switch |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 92 | @var host The host to use for connect |
| 93 | @var port The port to connect on |
| 94 | @var packets_total Total number of packets received |
| 95 | @var packets_expired Number of packets popped from queue as queue full |
| 96 | @var packets_handled Number of packets handled by something |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 97 | @var dbg_state Debug indication of state |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 98 | """ |
| 99 | |
Rich Lane | 4d1f3eb | 2013-10-03 13:45:57 -0700 | [diff] [blame] | 100 | def __init__(self, switch=None, host='127.0.0.1', port=6653, max_pkts=1024): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 101 | Thread.__init__(self) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 102 | # Socket related |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 103 | self.rcv_size = RCV_SIZE_DEFAULT |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 104 | self.listen_socket = None |
| 105 | self.switch_socket = None |
| 106 | self.switch_addr = None |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 107 | self.connect_cv = Condition() |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 108 | self.message_cv = Condition() |
Rich Lane | c9d3edd | 2013-10-09 00:21:01 -0700 | [diff] [blame] | 109 | self.tx_lock = Lock() |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 110 | |
Rich Lane | 4dfd5e1 | 2012-12-22 19:48:01 -0800 | [diff] [blame] | 111 | # Used to wake up the event loop from another thread |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 112 | self.waker = ofutils.EventDescriptor() |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 113 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 114 | # Counters |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 115 | self.socket_errors = 0 |
| 116 | self.parse_errors = 0 |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 117 | self.packets_total = 0 |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 118 | self.packets_expired = 0 |
| 119 | self.packets_handled = 0 |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 120 | self.poll_discards = 0 |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 121 | |
| 122 | # State |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 123 | self.sync = Lock() |
| 124 | self.handlers = {} |
| 125 | self.keep_alive = False |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 126 | self.active = True |
| 127 | self.initial_hello = True |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 128 | |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 129 | # OpenFlow message/packet queue |
| 130 | # Protected by the packets_cv lock / condition variable |
| 131 | self.packets = [] |
| 132 | self.packets_cv = Condition() |
Dan Talayco | dd6b6ff | 2013-04-12 08:20:18 -0700 | [diff] [blame] | 133 | self.packet_in_count = 0 |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 134 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 135 | # Settings |
| 136 | self.max_pkts = max_pkts |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 137 | self.switch = switch |
| 138 | self.passive = not self.switch |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 139 | self.host = host |
| 140 | self.port = port |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 141 | self.dbg_state = "init" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 142 | self.logger = logging.getLogger("controller") |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 143 | self.filter_packet_in = False # Drop "excessive" packet ins |
| 144 | self.pkt_in_run = 0 # Count on run of packet ins |
| 145 | self.pkt_in_filter_limit = 50 # Count on run of packet ins |
| 146 | self.pkt_in_dropped = 0 # Total dropped packet ins |
| 147 | self.transact_to = 15 # Transact timeout default value; add to config |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 148 | |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 149 | # Transaction and message type waiting variables |
| 150 | # xid_cv: Condition variable (semaphore) for packet waiters |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 151 | # xid: Transaction ID being waited on |
| 152 | # xid_response: Transaction response message |
| 153 | self.xid_cv = Condition() |
| 154 | self.xid = None |
| 155 | self.xid_response = None |
| 156 | |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 157 | self.buffered_input = "" |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 158 | |
Rich Lane | 207502e | 2012-12-31 14:29:12 -0800 | [diff] [blame] | 159 | # Create listen socket |
| 160 | if self.passive: |
| 161 | self.logger.info("Create/listen at " + self.host + ":" + |
| 162 | str(self.port)) |
| 163 | self.listen_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 164 | self.listen_socket.setsockopt(socket.SOL_SOCKET, |
| 165 | socket.SO_REUSEADDR, 1) |
| 166 | self.listen_socket.bind((self.host, self.port)) |
| 167 | self.listen_socket.listen(LISTEN_QUEUE_SIZE) |
| 168 | |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 169 | def filter_packet(self, rawmsg, hdr): |
| 170 | """ |
| 171 | Check if packet should be filtered |
| 172 | |
| 173 | Currently filters packet in messages |
| 174 | @return Boolean, True if packet should be dropped |
| 175 | """ |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 176 | # XXX didn't actually check for packet-in... |
| 177 | return False |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 178 | # Add check for packet in and rate limit |
| 179 | if self.filter_packet_in: |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 180 | # If we were dropping packets, report number dropped |
| 181 | # TODO dont drop expected packet ins |
| 182 | if self.pkt_in_run > self.pkt_in_filter_limit: |
| 183 | self.logger.debug("Dropped %d packet ins (%d total)" |
| 184 | % ((self.pkt_in_run - |
| 185 | self.pkt_in_filter_limit), |
| 186 | self.pkt_in_dropped)) |
| 187 | self.pkt_in_run = 0 |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 188 | |
| 189 | return False |
| 190 | |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 191 | def _pkt_handle(self, pkt): |
| 192 | """ |
| 193 | Check for all packet handling conditions |
| 194 | |
| 195 | Parse and verify message |
| 196 | Check if XID matches something waiting |
| 197 | Check if message is being expected for a poll operation |
| 198 | Check if keep alive is on and message is an echo request |
| 199 | Check if any registered handler wants the packet |
| 200 | Enqueue if none of those conditions is met |
| 201 | |
| 202 | an echo request in case keep_alive is true, followed by |
| 203 | registered message handlers. |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 204 | @param pkt The raw packet (string) which may contain multiple OF msgs |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 205 | """ |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 206 | |
| 207 | # snag any left over data from last read() |
| 208 | pkt = self.buffered_input + pkt |
| 209 | self.buffered_input = "" |
| 210 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 211 | # Process each of the OF msgs inside the pkt |
| 212 | offset = 0 |
| 213 | while offset < len(pkt): |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 214 | if offset + 8 > len(pkt): |
| 215 | break |
| 216 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 217 | # Parse the header to get type |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 218 | hdr_version, hdr_type, hdr_length, hdr_xid = cfg_ofp.message.parse_header(pkt[offset:]) |
| 219 | |
| 220 | # Use loxi to resolve to ofp of matching version |
| 221 | ofp = loxi.protocol(hdr_version) |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 222 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 223 | # Extract the raw message bytes |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 224 | if (offset + hdr_length) > len(pkt): |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 225 | break |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 226 | rawmsg = pkt[offset : offset + hdr_length] |
| 227 | offset += hdr_length |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 228 | |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 229 | #if self.filter_packet(rawmsg, hdr): |
| 230 | # continue |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 231 | |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 232 | # Check that supported version on switch is as least as recent as |
| 233 | # the configured Openflow version in oftests |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 234 | if hdr_version < cfg_ofp.OFP_VERSION: |
Rich Lane | c44b624 | 2013-01-10 12:23:54 -0800 | [diff] [blame] | 235 | self.logger.error("Switch only supports up to OpenFlow version %d (OFTest version is %d)", |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 236 | hdr_version, cfg_ofp.OFP_VERSION) |
Rich Lane | c44b624 | 2013-01-10 12:23:54 -0800 | [diff] [blame] | 237 | print "Switch only supports up to OpenFlow version %d (OFTest version is %d)" % \ |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 238 | (hdr_version, cfg_ofp.OFP_VERSION) |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 239 | self.disconnect() |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 240 | return |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 241 | |
Rich Lane | f688351 | 2013-03-11 17:00:09 -0700 | [diff] [blame] | 242 | msg = ofp.message.parse_message(rawmsg) |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 243 | if not msg: |
| 244 | self.parse_errors += 1 |
| 245 | self.logger.warn("Could not parse message") |
| 246 | continue |
| 247 | |
Rich Lane | 1fd43e3 | 2014-01-06 15:22:50 -0800 | [diff] [blame] | 248 | self.logger.debug("Msg in: version %d class %s len %d xid %d", |
| 249 | hdr_version, type(msg).__name__, hdr_length, hdr_xid) |
| 250 | |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 251 | with self.sync: |
| 252 | # Check if transaction is waiting |
| 253 | with self.xid_cv: |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 254 | if self.xid and hdr_xid == self.xid: |
| 255 | self.logger.debug("Matched expected XID " + str(hdr_xid)) |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 256 | self.xid_response = (msg, rawmsg) |
| 257 | self.xid = None |
| 258 | self.xid_cv.notify() |
| 259 | continue |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 260 | |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 261 | # Check if keep alive is set; if so, respond to echo requests |
| 262 | if self.keep_alive: |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 263 | if hdr_type == ofp.OFPT_ECHO_REQUEST: |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 264 | self.logger.debug("Responding to echo request") |
Rich Lane | 78ef8b9 | 2013-01-10 12:19:23 -0800 | [diff] [blame] | 265 | rep = ofp.message.echo_reply() |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 266 | rep.xid = hdr_xid |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 267 | # Ignoring additional data |
Rich Lane | 1fd43e3 | 2014-01-06 15:22:50 -0800 | [diff] [blame] | 268 | self.message_send(rep) |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 269 | continue |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 270 | |
Dan Talayco | dd6b6ff | 2013-04-12 08:20:18 -0700 | [diff] [blame] | 271 | # Generalize to counters for all packet types? |
| 272 | if msg.type == ofp.OFPT_PACKET_IN: |
| 273 | self.packet_in_count += 1 |
| 274 | |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 275 | # Log error messages |
Rich Lane | fa2a4de | 2014-01-29 16:03:04 -0800 | [diff] [blame] | 276 | if isinstance(msg, ofp.message.error_msg): |
| 277 | #pylint: disable=E1103 |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 278 | if msg.err_type in ofp.ofp_error_type_map: |
| 279 | type_str = ofp.ofp_error_type_map[msg.err_type] |
| 280 | if msg.err_type == ofp.OFPET_HELLO_FAILED: |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 281 | code_map = ofp.ofp_hello_failed_code_map |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 282 | elif msg.err_type == ofp.OFPET_BAD_REQUEST: |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 283 | code_map = ofp.ofp_bad_request_code_map |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 284 | elif msg.err_type == ofp.OFPET_BAD_ACTION: |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 285 | code_map = ofp.ofp_bad_action_code_map |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 286 | elif msg.err_type == ofp.OFPET_FLOW_MOD_FAILED: |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 287 | code_map = ofp.ofp_flow_mod_failed_code_map |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 288 | elif msg.err_type == ofp.OFPET_PORT_MOD_FAILED: |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 289 | code_map = ofp.ofp_port_mod_failed_code_map |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 290 | elif msg.err_type == ofp.OFPET_QUEUE_OP_FAILED: |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 291 | code_map = ofp.ofp_queue_op_failed_code_map |
| 292 | else: |
| 293 | code_map = None |
| 294 | |
| 295 | if code_map and msg.code in code_map: |
| 296 | code_str = code_map[msg.code] |
| 297 | else: |
| 298 | code_str = "unknown" |
| 299 | else: |
| 300 | type_str = "unknown" |
Rich Lane | 1879dc7 | 2013-03-11 22:08:51 -0700 | [diff] [blame] | 301 | code_str = "unknown" |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 302 | self.logger.warn("Received error message: xid=%d type=%s (%d) code=%s (%d)", |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 303 | hdr_xid, type_str, msg.err_type, code_str, msg.code) |
Rich Lane | 5d63b9c | 2013-01-11 14:12:37 -0800 | [diff] [blame] | 304 | |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 305 | # Now check for message handlers; preference is given to |
| 306 | # handlers for a specific packet |
| 307 | handled = False |
Rich Lane | 1622bbb | 2013-03-11 17:11:53 -0700 | [diff] [blame] | 308 | if hdr_type in self.handlers.keys(): |
| 309 | handled = self.handlers[hdr_type](self, msg, rawmsg) |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 310 | if not handled and ("all" in self.handlers.keys()): |
| 311 | handled = self.handlers["all"](self, msg, rawmsg) |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 312 | |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 313 | if not handled: # Not handled, enqueue |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 314 | with self.packets_cv: |
| 315 | if len(self.packets) >= self.max_pkts: |
| 316 | self.packets.pop(0) |
| 317 | self.packets_expired += 1 |
| 318 | self.packets.append((msg, rawmsg)) |
| 319 | self.packets_cv.notify_all() |
| 320 | self.packets_total += 1 |
| 321 | else: |
| 322 | self.packets_handled += 1 |
| 323 | self.logger.debug("Message handled by callback") |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 324 | |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 325 | # end of 'while offset < len(pkt)' |
| 326 | # note that if offset = len(pkt), this is |
| 327 | # appends a harmless empty string |
| 328 | self.buffered_input += pkt[offset:] |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 329 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 330 | def _socket_ready_handle(self, s): |
| 331 | """ |
| 332 | Handle an input-ready socket |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 333 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 334 | @param s The socket object that is ready |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 335 | @returns 0 on success, -1 on error |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 336 | """ |
| 337 | |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 338 | if self.passive and s and s == self.listen_socket: |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 339 | if self.switch_socket: |
Rich Lane | e1da7ea | 2012-07-26 15:58:45 -0700 | [diff] [blame] | 340 | self.logger.warning("Ignoring incoming connection; already connected to switch") |
Rich Lane | b4f8ecb | 2012-09-25 09:36:26 -0700 | [diff] [blame] | 341 | (sock, addr) = self.listen_socket.accept() |
| 342 | sock.close() |
Rich Lane | e1da7ea | 2012-07-26 15:58:45 -0700 | [diff] [blame] | 343 | return 0 |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 344 | |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 345 | try: |
| 346 | (sock, addr) = self.listen_socket.accept() |
| 347 | except: |
| 348 | self.logger.warning("Error on listen socket accept") |
| 349 | return -1 |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 350 | self.logger.info(self.host+":"+str(self.port)+": Incoming connection from "+str(addr)) |
Rich Lane | e1da7ea | 2012-07-26 15:58:45 -0700 | [diff] [blame] | 351 | |
Rich Lane | ee3586c | 2012-07-11 17:26:02 -0700 | [diff] [blame] | 352 | with self.connect_cv: |
Rich Lane | e1da7ea | 2012-07-26 15:58:45 -0700 | [diff] [blame] | 353 | (self.switch_socket, self.switch_addr) = (sock, addr) |
Rich Lane | 82ef183 | 2012-12-22 17:04:35 -0800 | [diff] [blame] | 354 | self.switch_socket.setsockopt(socket.IPPROTO_TCP, |
| 355 | socket.TCP_NODELAY, True) |
Rich Lane | 1a8d5aa | 2012-10-08 15:40:03 -0700 | [diff] [blame] | 356 | if self.initial_hello: |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 357 | self.message_send(cfg_ofp.message.hello()) |
Rich Lane | e1da7ea | 2012-07-26 15:58:45 -0700 | [diff] [blame] | 358 | self.connect_cv.notify() # Notify anyone waiting |
Rich Lane | d929b8d | 2013-04-15 15:59:14 -0700 | [diff] [blame] | 359 | |
| 360 | # Prevent further connections |
| 361 | self.listen_socket.close() |
| 362 | self.listen_socket = None |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 363 | elif s and s == self.switch_socket: |
| 364 | for idx in range(3): # debug: try a couple of times |
| 365 | try: |
| 366 | pkt = self.switch_socket.recv(self.rcv_size) |
| 367 | except: |
| 368 | self.logger.warning("Error on switch read") |
| 369 | return -1 |
| 370 | |
| 371 | if not self.active: |
| 372 | return 0 |
| 373 | |
| 374 | if len(pkt) == 0: |
| 375 | self.logger.warning("Zero-length switch read, %d" % idx) |
| 376 | else: |
| 377 | break |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 378 | |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 379 | if len(pkt) == 0: # Still no packet |
Dan Talayco | 0fc08bd | 2012-04-09 16:56:18 -0700 | [diff] [blame] | 380 | self.logger.warning("Zero-length switch read; closing cxn") |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 381 | self.logger.info(str(self)) |
| 382 | return -1 |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 383 | |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 384 | self._pkt_handle(pkt) |
Rich Lane | 4dfd5e1 | 2012-12-22 19:48:01 -0800 | [diff] [blame] | 385 | elif s and s == self.waker: |
| 386 | self.waker.wait() |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 387 | else: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 388 | self.logger.error("Unknown socket ready: " + str(s)) |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 389 | return -1 |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 390 | |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 391 | return 0 |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 392 | |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 393 | def active_connect(self): |
| 394 | """ |
| 395 | Actively connect to a switch IP addr |
| 396 | """ |
| 397 | try: |
| 398 | self.logger.info("Trying active connection to %s" % self.switch) |
| 399 | soc = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 400 | soc.connect((self.switch, self.port)) |
| 401 | self.logger.info("Connected to " + self.switch + " on " + |
| 402 | str(self.port)) |
Rich Lane | 82ef183 | 2012-12-22 17:04:35 -0800 | [diff] [blame] | 403 | soc.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, True) |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 404 | self.switch_addr = (self.switch, self.port) |
| 405 | return soc |
| 406 | except (StandardError, socket.error), e: |
| 407 | self.logger.error("Could not connect to %s at %d:: %s" % |
| 408 | (self.switch, self.port, str(e))) |
| 409 | return None |
| 410 | |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 411 | def wakeup(self): |
| 412 | """ |
| 413 | Wake up the event loop, presumably from another thread. |
| 414 | """ |
Rich Lane | 4dfd5e1 | 2012-12-22 19:48:01 -0800 | [diff] [blame] | 415 | self.waker.notify() |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 416 | |
| 417 | def sockets(self): |
| 418 | """ |
| 419 | Return list of sockets to select on. |
| 420 | """ |
Rich Lane | 4dfd5e1 | 2012-12-22 19:48:01 -0800 | [diff] [blame] | 421 | socs = [self.listen_socket, self.switch_socket, self.waker] |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 422 | return [x for x in socs if x] |
| 423 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 424 | def run(self): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 425 | """ |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 426 | Activity function for class |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 427 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 428 | Assumes connection to switch already exists. Listens on |
| 429 | switch_socket for messages until an error (or zero len pkt) |
| 430 | occurs. |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 431 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 432 | When there is a message on the socket, check for handlers; queue the |
| 433 | packet if no one handles the packet. |
| 434 | |
| 435 | See note for controller describing the limitation of a single |
| 436 | connection for now. |
| 437 | """ |
| 438 | |
Rich Lane | 207502e | 2012-12-31 14:29:12 -0800 | [diff] [blame] | 439 | self.dbg_state = "running" |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 440 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 441 | while self.active: |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 442 | try: |
| 443 | sel_in, sel_out, sel_err = \ |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 444 | select.select(self.sockets(), [], self.sockets(), 1) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 445 | except: |
| 446 | print sys.exc_info() |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 447 | self.logger.error("Select error, disconnecting") |
| 448 | self.disconnect() |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 449 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 450 | for s in sel_err: |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 451 | self.logger.error("Got socket error on: " + str(s) + ", disconnecting") |
| 452 | self.disconnect() |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 453 | |
| 454 | for s in sel_in: |
| 455 | if self._socket_ready_handle(s) == -1: |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 456 | self.disconnect() |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 457 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 458 | # End of main loop |
| 459 | self.dbg_state = "closing" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 460 | self.logger.info("Exiting controller thread") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 461 | self.shutdown() |
| 462 | |
Rich Lane | 8806bc4 | 2012-07-26 19:18:37 -0700 | [diff] [blame] | 463 | def connect(self, timeout=-1): |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 464 | """ |
| 465 | Connect to the switch |
| 466 | |
Rich Lane | 8806bc4 | 2012-07-26 19:18:37 -0700 | [diff] [blame] | 467 | @param timeout Block for up to timeout seconds. Pass -1 for the default. |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 468 | @return Boolean, True if connected |
| 469 | """ |
| 470 | |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 471 | if not self.passive: # Do active connection now |
| 472 | self.logger.info("Attempting to connect to %s on port %s" % |
| 473 | (self.switch, str(self.port))) |
| 474 | soc = self.active_connect() |
| 475 | if soc: |
| 476 | self.logger.info("Connected to %s", self.switch) |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 477 | self.dbg_state = "running" |
| 478 | self.switch_socket = soc |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 479 | self.wakeup() |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 480 | with self.connect_cv: |
| 481 | if self.initial_hello: |
Wilson Ng | c11a918 | 2013-10-28 16:02:03 -0700 | [diff] [blame] | 482 | self.message_send(cfg_ofp.message.hello()) |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 483 | self.connect_cv.notify() # Notify anyone waiting |
| 484 | else: |
| 485 | self.logger.error("Could not actively connect to switch %s", |
| 486 | self.switch) |
| 487 | self.active = False |
| 488 | else: |
| 489 | with self.connect_cv: |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 490 | ofutils.timed_wait(self.connect_cv, lambda: self.switch_socket, |
| 491 | timeout=timeout) |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 492 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 493 | return self.switch_socket is not None |
| 494 | |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 495 | def disconnect(self, timeout=-1): |
| 496 | """ |
| 497 | If connected to a switch, disconnect. |
| 498 | """ |
| 499 | if self.switch_socket: |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 500 | self.switch_socket.close() |
| 501 | self.switch_socket = None |
| 502 | self.switch_addr = None |
Ken Chiang | 74be472 | 2012-12-21 13:07:03 -0800 | [diff] [blame] | 503 | with self.packets_cv: |
| 504 | self.packets = [] |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 505 | with self.connect_cv: |
| 506 | self.connect_cv.notifyAll() |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 507 | |
| 508 | def wait_disconnected(self, timeout=-1): |
| 509 | """ |
| 510 | @param timeout Block for up to timeout seconds. Pass -1 for the default. |
| 511 | @return Boolean, True if disconnected |
| 512 | """ |
| 513 | |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 514 | with self.connect_cv: |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 515 | ofutils.timed_wait(self.connect_cv, |
| 516 | lambda: True if not self.switch_socket else None, |
| 517 | timeout=timeout) |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 518 | return self.switch_socket is None |
| 519 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 520 | def kill(self): |
| 521 | """ |
| 522 | Force the controller thread to quit |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 523 | """ |
| 524 | self.active = False |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 525 | self.wakeup() |
Rich Lane | 376bb40 | 2012-12-31 15:20:16 -0800 | [diff] [blame] | 526 | self.join() |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 527 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 528 | def shutdown(self): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 529 | """ |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 530 | Shutdown the controller closing all sockets |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 531 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 532 | @todo Might want to synchronize shutdown with self.sync... |
| 533 | """ |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 534 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 535 | self.active = False |
| 536 | try: |
| 537 | self.switch_socket.shutdown(socket.SHUT_RDWR) |
| 538 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 539 | self.logger.info("Ignoring switch soc shutdown error") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 540 | self.switch_socket = None |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 541 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 542 | try: |
| 543 | self.listen_socket.shutdown(socket.SHUT_RDWR) |
| 544 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 545 | self.logger.info("Ignoring listen soc shutdown error") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 546 | self.listen_socket = None |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 547 | |
Rich Lane | ee3586c | 2012-07-11 17:26:02 -0700 | [diff] [blame] | 548 | # Wakeup condition variables on which controller may be wait |
| 549 | with self.xid_cv: |
| 550 | self.xid_cv.notifyAll() |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 551 | |
Rich Lane | ee3586c | 2012-07-11 17:26:02 -0700 | [diff] [blame] | 552 | with self.connect_cv: |
| 553 | self.connect_cv.notifyAll() |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 554 | |
Rich Lane | 3279754 | 2012-12-22 17:46:05 -0800 | [diff] [blame] | 555 | self.wakeup() |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 556 | self.dbg_state = "down" |
| 557 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 558 | def register(self, msg_type, handler): |
| 559 | """ |
| 560 | Register a callback to receive a specific message type. |
| 561 | |
| 562 | Only one handler may be registered for a given message type. |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 563 | |
| 564 | WARNING: A lock is held during the handler call back, so |
| 565 | the handler should not make any blocking calls |
| 566 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 567 | @param msg_type The type of message to receive. May be DEFAULT |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 568 | for all non-handled packets. The special type, the string "all" |
| 569 | will send all packets to the handler. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 570 | @param handler The function to call when a message of the given |
| 571 | type is received. |
| 572 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 573 | # Should check type is valid |
| 574 | if not handler and msg_type in self.handlers.keys(): |
| 575 | del self.handlers[msg_type] |
| 576 | return |
| 577 | self.handlers[msg_type] = handler |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 578 | |
sumithdev09 | 5542cf5 | 2013-07-12 14:56:28 -0400 | [diff] [blame] | 579 | def poll(self, exp_msg=None, timeout=-1): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 580 | """ |
| 581 | Wait for the next OF message received from the switch. |
| 582 | |
| 583 | @param exp_msg If set, return only when this type of message |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 584 | is received (unless timeout occurs). |
Rich Lane | b64ce3d | 2012-07-26 15:37:57 -0700 | [diff] [blame] | 585 | |
| 586 | @param timeout Maximum number of seconds to wait for the message. |
| 587 | Pass -1 for the default timeout. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 588 | |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 589 | @retval A pair (msg, pkt) where msg is a message object and pkt |
| 590 | the string representing the packet as received from the socket. |
| 591 | This allows additional parsing by the receiver if necessary. |
| 592 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 593 | The data members in the message are in host endian order. |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 594 | If an error occurs, (None, None) is returned |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 595 | """ |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 596 | |
Rich Lane | e9d3691 | 2014-01-31 12:46:05 -0800 | [diff] [blame] | 597 | if exp_msg is None: |
| 598 | self.logger.warn("DEPRECATED polling for any message class") |
| 599 | klass = None |
| 600 | elif isinstance(exp_msg, int): |
| 601 | klass = cfg_ofp.message.message.subtypes[exp_msg] |
| 602 | elif issubclass(exp_msg, cfg_ofp.message.message): |
| 603 | klass = exp_msg |
Ed Swierk | 9e55e28 | 2012-08-22 06:57:28 -0700 | [diff] [blame] | 604 | else: |
Rich Lane | 4957503 | 2014-02-03 14:55:44 -0800 | [diff] [blame^] | 605 | raise ValueError("Unexpected exp_msg argument %r", exp_msg) |
Rich Lane | e9d3691 | 2014-01-31 12:46:05 -0800 | [diff] [blame] | 606 | |
| 607 | self.logger.debug("Polling for %s", klass.__name__) |
Rich Lane | b64ce3d | 2012-07-26 15:37:57 -0700 | [diff] [blame] | 608 | |
| 609 | # Take the packet from the queue |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 610 | def grab(): |
Rich Lane | e9d3691 | 2014-01-31 12:46:05 -0800 | [diff] [blame] | 611 | for i in range(len(self.packets)): |
| 612 | msg = self.packets[i][0] |
| 613 | if klass is None or isinstance(msg, klass): |
| 614 | self.logger.debug("Got %s message", msg.__class__.__name__) |
| 615 | (msg, pkt) = self.packets.pop(i) |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 616 | return (msg, pkt) |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 617 | # Not found |
Rich Lane | e9d3691 | 2014-01-31 12:46:05 -0800 | [diff] [blame] | 618 | self.logger.debug("%s message not in queue", klass.__name__) |
Rich Lane | b64ce3d | 2012-07-26 15:37:57 -0700 | [diff] [blame] | 619 | return None |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 620 | |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 621 | with self.packets_cv: |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 622 | ret = ofutils.timed_wait(self.packets_cv, grab, timeout=timeout) |
Rich Lane | c4f071b | 2012-07-11 17:25:57 -0700 | [diff] [blame] | 623 | |
Rich Lane | b64ce3d | 2012-07-26 15:37:57 -0700 | [diff] [blame] | 624 | if ret != None: |
| 625 | (msg, pkt) = ret |
Rich Lane | b64ce3d | 2012-07-26 15:37:57 -0700 | [diff] [blame] | 626 | return (msg, pkt) |
| 627 | else: |
| 628 | return (None, None) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 629 | |
Rich Lane | 8fbfd66 | 2013-03-11 15:30:44 -0700 | [diff] [blame] | 630 | def transact(self, msg, timeout=-1): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 631 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 632 | Run a message transaction with the switch |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 633 | |
| 634 | Send the message in msg and wait for a reply with a matching |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 635 | transaction id. Transactions have the highest priority in |
| 636 | received message handling. |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 637 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 638 | @param msg The message object to send; must not be a string |
Rich Lane | e1da7ea | 2012-07-26 15:58:45 -0700 | [diff] [blame] | 639 | @param timeout The timeout in seconds; if -1 use default. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 640 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 641 | |
Rich Lane | 8fbfd66 | 2013-03-11 15:30:44 -0700 | [diff] [blame] | 642 | if msg.xid == None: |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 643 | msg.xid = ofutils.gen_xid() |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 644 | |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 645 | self.logger.debug("Running transaction %d" % msg.xid) |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 646 | |
Rich Lane | 9aca199 | 2012-07-11 17:26:31 -0700 | [diff] [blame] | 647 | with self.xid_cv: |
| 648 | if self.xid: |
| 649 | self.logger.error("Can only run one transaction at a time") |
| 650 | return (None, None) |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 651 | |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 652 | self.xid = msg.xid |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 653 | self.xid_response = None |
Rich Lane | 1fd43e3 | 2014-01-06 15:22:50 -0800 | [diff] [blame] | 654 | self.message_send(msg) |
Rich Lane | 9aca199 | 2012-07-11 17:26:31 -0700 | [diff] [blame] | 655 | |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 656 | self.logger.debug("Waiting for transaction %d" % msg.xid) |
Rich Lane | cd97d3d | 2013-01-07 18:50:06 -0800 | [diff] [blame] | 657 | ofutils.timed_wait(self.xid_cv, lambda: self.xid_response, timeout=timeout) |
Rich Lane | 9aca199 | 2012-07-11 17:26:31 -0700 | [diff] [blame] | 658 | |
| 659 | if self.xid_response: |
| 660 | (resp, pkt) = self.xid_response |
| 661 | self.xid_response = None |
| 662 | else: |
| 663 | (resp, pkt) = (None, None) |
| 664 | |
Dan Talayco | 09c2c59 | 2010-05-13 14:21:52 -0700 | [diff] [blame] | 665 | if resp is None: |
| 666 | self.logger.warning("No response for xid " + str(self.xid)) |
| 667 | return (resp, pkt) |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 668 | |
Rich Lane | 8fbfd66 | 2013-03-11 15:30:44 -0700 | [diff] [blame] | 669 | def message_send(self, msg): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 670 | """ |
| 671 | Send the message to the switch |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 672 | |
Dan Talayco | 11c26e7 | 2010-03-07 22:03:57 -0800 | [diff] [blame] | 673 | @param msg A string or OpenFlow message object to be forwarded to |
| 674 | the switch. |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 675 | """ |
| 676 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 677 | if not self.switch_socket: |
| 678 | # Sending a string indicates the message is ready to go |
Ed Swierk | 9e55e28 | 2012-08-22 06:57:28 -0700 | [diff] [blame] | 679 | raise Exception("no socket") |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 680 | |
Rich Lane | 1fd43e3 | 2014-01-06 15:22:50 -0800 | [diff] [blame] | 681 | if msg.xid == None: |
| 682 | msg.xid = ofutils.gen_xid() |
| 683 | |
| 684 | outpkt = msg.pack() |
| 685 | |
| 686 | self.logger.debug("Msg out: version %d class %s len %d xid %d", |
| 687 | msg.version, type(msg).__name__, len(outpkt), msg.xid) |
Rich Lane | c9d3edd | 2013-10-09 00:21:01 -0700 | [diff] [blame] | 688 | |
| 689 | with self.tx_lock: |
| 690 | if self.switch_socket.sendall(outpkt) is not None: |
| 691 | raise AssertionError("failed to send message to switch") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 692 | |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 693 | return 0 # for backwards compatibility |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 694 | |
Dan Talayco | dd6b6ff | 2013-04-12 08:20:18 -0700 | [diff] [blame] | 695 | def clear_queue(self): |
| 696 | """ |
| 697 | Clear the input queue and report the number of messages |
| 698 | that were in it |
| 699 | """ |
Dan Talayco | 7071cf1 | 2013-04-16 11:02:13 -0700 | [diff] [blame] | 700 | enqueued_pkt_count = len(self.packets) |
Dan Talayco | dd6b6ff | 2013-04-12 08:20:18 -0700 | [diff] [blame] | 701 | with self.packets_cv: |
| 702 | self.packets = [] |
Dan Talayco | 7071cf1 | 2013-04-16 11:02:13 -0700 | [diff] [blame] | 703 | return enqueued_pkt_count |
Dan Talayco | dd6b6ff | 2013-04-12 08:20:18 -0700 | [diff] [blame] | 704 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 705 | def __str__(self): |
| 706 | string = "Controller:\n" |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 707 | string += " state " + self.dbg_state + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 708 | string += " switch_addr " + str(self.switch_addr) + "\n" |
| 709 | string += " pending pkts " + str(len(self.packets)) + "\n" |
| 710 | string += " total pkts " + str(self.packets_total) + "\n" |
| 711 | string += " expired pkts " + str(self.packets_expired) + "\n" |
| 712 | string += " handled pkts " + str(self.packets_handled) + "\n" |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 713 | string += " poll discards " + str(self.poll_discards) + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 714 | string += " parse errors " + str(self.parse_errors) + "\n" |
| 715 | string += " sock errrors " + str(self.socket_errors) + "\n" |
| 716 | string += " max pkts " + str(self.max_pkts) + "\n" |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 717 | string += " target switch " + str(self.switch) + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 718 | string += " host " + str(self.host) + "\n" |
| 719 | string += " port " + str(self.port) + "\n" |
| 720 | string += " keep_alive " + str(self.keep_alive) + "\n" |
Dan Talayco | f8de518 | 2012-04-12 22:38:41 -0700 | [diff] [blame] | 721 | string += " pkt_in_run " + str(self.pkt_in_run) + "\n" |
| 722 | string += " pkt_in_dropped " + str(self.pkt_in_dropped) + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 723 | return string |
| 724 | |
| 725 | def show(self): |
| 726 | print str(self) |
| 727 | |
| 728 | def sample_handler(controller, msg, pkt): |
| 729 | """ |
| 730 | Sample message handler |
| 731 | |
| 732 | This is the prototype for functions registered with the controller |
| 733 | class for packet reception |
| 734 | |
| 735 | @param controller The controller calling the handler |
| 736 | @param msg The parsed message object |
| 737 | @param pkt The raw packet that was received on the socket. This is |
| 738 | in case the packet contains extra unparsed data. |
| 739 | @returns Boolean value indicating if the packet was handled. If |
| 740 | not handled, the packet is placed in the queue for pollers to received |
| 741 | """ |
| 742 | pass |