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