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