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 | |
| 43 | ##@todo Find a better home for these identifiers (controller) |
Glen Gibb | 741b118 | 2010-07-08 16:43:58 -0700 | [diff] [blame] | 44 | RCV_SIZE_DEFAULT = 32768 |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 45 | LISTEN_QUEUE_SIZE = 1 |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 46 | |
| 47 | class Controller(Thread): |
| 48 | """ |
| 49 | Class abstracting the control interface to the switch. |
| 50 | |
| 51 | For receiving messages, two mechanism will be implemented. First, |
| 52 | query the interface with poll. Second, register to have a |
| 53 | function called by message type. The callback is passed the |
| 54 | message type as well as the raw packet (or message object) |
| 55 | |
| 56 | One of the main purposes of this object is to translate between network |
| 57 | and host byte order. 'Above' this object, things should be in host |
| 58 | byte order. |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 59 | |
| 60 | @todo Consider using SocketServer for listening socket |
| 61 | @todo Test transaction code |
| 62 | |
| 63 | @var rcv_size The receive size to use for receive calls |
| 64 | @var max_pkts The max size of the receive queue |
| 65 | @var keep_alive If true, listen for echo requests and respond w/ |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 66 | @var keep_alive If true, listen for echo requests and respond w/ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 67 | echo replies |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 68 | @var initial_hello If true, will send a hello message immediately |
| 69 | upon connecting to the switch |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 70 | @var exit_on_reset If true, terminate controller on connection reset |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 71 | @var host The host to use for connect |
| 72 | @var port The port to connect on |
| 73 | @var packets_total Total number of packets received |
| 74 | @var packets_expired Number of packets popped from queue as queue full |
| 75 | @var packets_handled Number of packets handled by something |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 76 | @var dbg_state Debug indication of state |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 77 | """ |
| 78 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 79 | def __init__(self, host='127.0.0.1', port=6633, max_pkts=1024): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 80 | Thread.__init__(self) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 81 | # Socket related |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 82 | self.rcv_size = RCV_SIZE_DEFAULT |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 83 | self.listen_socket = None |
| 84 | self.switch_socket = None |
| 85 | self.switch_addr = None |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 86 | self.socs = [] |
| 87 | self.connect_cv = Condition() |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 88 | self.message_cv = Condition() |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 89 | |
| 90 | # Counters |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 91 | self.socket_errors = 0 |
| 92 | self.parse_errors = 0 |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 93 | self.packets_total = 0 |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 94 | self.packets_expired = 0 |
| 95 | self.packets_handled = 0 |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 96 | self.poll_discards = 0 |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 97 | |
| 98 | # State |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 99 | self.packets = [] |
| 100 | self.sync = Lock() |
| 101 | self.handlers = {} |
| 102 | self.keep_alive = False |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 103 | self.active = True |
| 104 | self.initial_hello = True |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 105 | self.exit_on_reset = True |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 106 | |
| 107 | # Settings |
| 108 | self.max_pkts = max_pkts |
| 109 | self.passive = True |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 110 | self.host = host |
| 111 | self.port = port |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 112 | self.dbg_state = "init" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 113 | self.logger = logging.getLogger("controller") |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 114 | |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 115 | # Transaction and message type waiting variables |
| 116 | # xid_cv: Condition variable (semaphore) for packet waiters |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 117 | # xid: Transaction ID being waited on |
| 118 | # xid_response: Transaction response message |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 119 | # expect_msg: Is a message being waited on |
| 120 | # expect_msg_cv: Semaphore for waiters |
| 121 | # expect_msg_type: Type of message expected |
| 122 | # expect_msg_response: Result passed through here |
| 123 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 124 | self.xid_cv = Condition() |
| 125 | self.xid = None |
| 126 | self.xid_response = None |
| 127 | |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 128 | self.expect_msg = False |
| 129 | self.expect_msg_cv = Condition() |
| 130 | self.expect_msg_type = None |
| 131 | self.expect_msg_response = None |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 132 | self.buffered_input = "" |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 133 | |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 134 | def _pkt_handle(self, pkt): |
| 135 | """ |
| 136 | Check for all packet handling conditions |
| 137 | |
| 138 | Parse and verify message |
| 139 | Check if XID matches something waiting |
| 140 | Check if message is being expected for a poll operation |
| 141 | Check if keep alive is on and message is an echo request |
| 142 | Check if any registered handler wants the packet |
| 143 | Enqueue if none of those conditions is met |
| 144 | |
| 145 | an echo request in case keep_alive is true, followed by |
| 146 | registered message handlers. |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 147 | @param pkt The raw packet (string) which may contain multiple OF msgs |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 148 | """ |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 149 | |
| 150 | # snag any left over data from last read() |
| 151 | pkt = self.buffered_input + pkt |
| 152 | self.buffered_input = "" |
| 153 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 154 | # Process each of the OF msgs inside the pkt |
| 155 | offset = 0 |
| 156 | while offset < len(pkt): |
| 157 | # Parse the header to get type |
| 158 | hdr = of_header_parse(pkt[offset:]) |
| 159 | if not hdr: |
| 160 | self.logger.info("Could not parse header, pkt len", len(pkt)) |
| 161 | self.parse_errors += 1 |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 162 | return |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 163 | if hdr.length == 0: |
| 164 | self.logger.info("Header length is zero") |
| 165 | self.parse_errors += 1 |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 166 | return |
| 167 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 168 | # Extract the raw message bytes |
Ed Swierk | 836e5bd | 2012-03-20 11:08:53 -0700 | [diff] [blame] | 169 | if (offset + hdr.length) > len(pkt): |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 170 | break |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 171 | rawmsg = pkt[offset : offset + hdr.length] |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 172 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 173 | self.logger.debug("Msg in: len %d. offset %d. type %s. hdr.len %d" % |
| 174 | (len(pkt), offset, ofp_type_map[hdr.type], hdr.length)) |
Dan Talayco | 4306d3e | 2011-09-07 09:42:26 -0700 | [diff] [blame] | 175 | offset += hdr.length |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 176 | if hdr.version != OFP_VERSION: |
| 177 | self.logger.error("Version %d does not match OFTest version %d" |
| 178 | % (hdr.version, OFP_VERSION)) |
| 179 | print "Version %d does not match OFTest version %d" % \ |
| 180 | (hdr.version, OFP_VERSION) |
| 181 | self.active = False |
| 182 | self.switch_socket = None |
| 183 | self.kill() |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 184 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 185 | msg = of_message_parse(rawmsg) |
| 186 | if not msg: |
| 187 | self.parse_errors += 1 |
| 188 | self.logger.warn("Could not parse message") |
| 189 | continue |
| 190 | |
| 191 | self.sync.acquire() |
| 192 | |
| 193 | # Check if transaction is waiting |
| 194 | self.xid_cv.acquire() |
| 195 | if self.xid: |
| 196 | if hdr.xid == self.xid: |
| 197 | self.logger.debug("Matched expected XID " + str(hdr.xid)) |
| 198 | self.xid_response = (msg, rawmsg) |
| 199 | self.xid = None |
| 200 | self.xid_cv.notify() |
| 201 | self.xid_cv.release() |
| 202 | self.sync.release() |
| 203 | continue |
| 204 | self.xid_cv.release() |
| 205 | |
| 206 | # PREVENT QUEUE ACCESS AT THIS POINT? |
| 207 | # Check if anyone waiting on this type of message |
| 208 | self.expect_msg_cv.acquire() |
| 209 | if self.expect_msg: |
| 210 | if not self.expect_msg_type or (self.expect_msg_type == hdr.type): |
| 211 | self.logger.debug("Matched expected msg type " |
| 212 | + ofp_type_map[hdr.type]) |
| 213 | self.expect_msg_response = (msg, rawmsg) |
| 214 | self.expect_msg = False |
| 215 | self.expect_msg_cv.notify() |
| 216 | self.expect_msg_cv.release() |
| 217 | self.sync.release() |
| 218 | continue |
| 219 | self.expect_msg_cv.release() |
| 220 | |
| 221 | # Check if keep alive is set; if so, respond to echo requests |
| 222 | if self.keep_alive: |
| 223 | if hdr.type == OFPT_ECHO_REQUEST: |
| 224 | self.sync.release() |
| 225 | self.logger.debug("Responding to echo request") |
| 226 | rep = echo_reply() |
| 227 | rep.header.xid = hdr.xid |
| 228 | # Ignoring additional data |
| 229 | self.message_send(rep.pack(), zero_xid=True) |
| 230 | continue |
| 231 | |
| 232 | # Now check for message handlers; preference is given to |
| 233 | # handlers for a specific packet |
| 234 | handled = False |
| 235 | if hdr.type in self.handlers.keys(): |
| 236 | handled = self.handlers[hdr.type](self, msg, rawmsg) |
| 237 | if not handled and ("all" in self.handlers.keys()): |
| 238 | handled = self.handlers["all"](self, msg, rawmsg) |
| 239 | |
| 240 | if not handled: # Not handled, enqueue |
| 241 | self.logger.debug("Enqueuing pkt type " + ofp_type_map[hdr.type]) |
| 242 | if len(self.packets) >= self.max_pkts: |
| 243 | self.packets.pop(0) |
| 244 | self.packets_expired += 1 |
| 245 | self.packets.append((msg, rawmsg)) |
| 246 | self.packets_total += 1 |
| 247 | else: |
| 248 | self.packets_handled += 1 |
| 249 | self.logger.debug("Message handled by callback") |
| 250 | |
| 251 | self.sync.release() |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 252 | # end of 'while offset < len(pkt)' |
| 253 | # note that if offset = len(pkt), this is |
| 254 | # appends a harmless empty string |
| 255 | self.buffered_input += pkt[offset:] |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 256 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 257 | def _socket_ready_handle(self, s): |
| 258 | """ |
| 259 | Handle an input-ready socket |
| 260 | @param s The socket object that is ready |
| 261 | @retval True, reset the switch connection |
| 262 | """ |
| 263 | |
| 264 | if s == self.listen_socket: |
| 265 | if self.switch_socket: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 266 | self.logger.error("Multiple switch cxns not supported") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 267 | sys.exit(1) |
| 268 | |
| 269 | (self.switch_socket, self.switch_addr) = \ |
| 270 | self.listen_socket.accept() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 271 | self.logger.info("Got cxn to " + str(self.switch_addr)) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 272 | # Notify anyone waiting |
| 273 | self.connect_cv.acquire() |
| 274 | self.connect_cv.notify() |
| 275 | self.connect_cv.release() |
| 276 | self.socs.append(self.switch_socket) |
| 277 | if self.initial_hello: |
| 278 | self.message_send(hello()) |
| 279 | elif s == self.switch_socket: |
| 280 | try: |
| 281 | pkt = self.switch_socket.recv(self.rcv_size) |
| 282 | except: |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 283 | self.logger.warning("Error on switch read") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 284 | return True |
| 285 | |
| 286 | if not self.active: |
| 287 | return False |
| 288 | |
| 289 | if len(pkt) == 0: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 290 | self.logger.info("zero-len pkt in") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 291 | return True |
| 292 | |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 293 | self._pkt_handle(pkt) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 294 | else: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 295 | self.logger.error("Unknown socket ready: " + str(s)) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 296 | return True |
| 297 | |
| 298 | return False |
| 299 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 300 | def run(self): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 301 | """ |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 302 | Activity function for class |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 303 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 304 | Assumes connection to switch already exists. Listens on |
| 305 | switch_socket for messages until an error (or zero len pkt) |
| 306 | occurs. |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 307 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 308 | When there is a message on the socket, check for handlers; queue the |
| 309 | packet if no one handles the packet. |
| 310 | |
| 311 | See note for controller describing the limitation of a single |
| 312 | connection for now. |
| 313 | """ |
| 314 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 315 | self.dbg_state = "starting" |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 316 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 317 | # Create listen socket |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 318 | self.logger.info("Create/listen at " + self.host + ":" + |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 319 | str(self.port)) |
| 320 | self.listen_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 321 | self.listen_socket.setsockopt(socket.SOL_SOCKET, |
| 322 | socket.SO_REUSEADDR, 1) |
| 323 | self.listen_socket.bind((self.host, self.port)) |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 324 | self.dbg_state = "listening" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 325 | self.listen_socket.listen(LISTEN_QUEUE_SIZE) |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 326 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 327 | self.logger.info("Waiting for switch connection") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 328 | self.socs = [self.listen_socket] |
| 329 | self.dbg_state = "running" |
| 330 | while self.active: |
| 331 | reset_switch_cxn = False |
| 332 | try: |
| 333 | sel_in, sel_out, sel_err = \ |
| 334 | select.select(self.socs, [], self.socs, 1) |
| 335 | except: |
| 336 | print sys.exc_info() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 337 | self.logger.error("Select error, exiting") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 338 | sys.exit(1) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 339 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 340 | if not self.active: |
| 341 | break |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 342 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 343 | for s in sel_in: |
| 344 | reset_switch_cxn = self._socket_ready_handle(s) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 345 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 346 | for s in sel_err: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 347 | self.logger.error("Got socket error on: " + str(s)) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 348 | if s == self.switch_socket: |
| 349 | reset_switch_cxn = True |
| 350 | else: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 351 | self.logger.error("Socket error; exiting") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 352 | self.active = False |
| 353 | break |
| 354 | |
| 355 | if self.active and reset_switch_cxn: |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 356 | if self.exit_on_reset: |
| 357 | self.kill() |
| 358 | else: |
| 359 | self.logger.warning("Closing switch cxn") |
| 360 | try: |
| 361 | self.switch_socket.close() |
| 362 | except: |
| 363 | pass |
| 364 | self.switch_socket = None |
| 365 | self.socs = self.socs[0:1] |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 366 | |
| 367 | # End of main loop |
| 368 | self.dbg_state = "closing" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 369 | self.logger.info("Exiting controller thread") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 370 | self.shutdown() |
| 371 | |
| 372 | def connect(self, timeout=None): |
| 373 | """ |
| 374 | Connect to the switch |
| 375 | |
| 376 | @param timeout If None, block until connected. If 0, return |
| 377 | immedidately. Otherwise, block for up to timeout seconds |
| 378 | @return Boolean, True if connected |
| 379 | """ |
| 380 | |
| 381 | if timeout == 0: |
| 382 | return self.switch_socket is not None |
| 383 | if self.switch_socket is not None: |
| 384 | return True |
| 385 | self.connect_cv.acquire() |
| 386 | self.connect_cv.wait(timeout) |
| 387 | self.connect_cv.release() |
| 388 | |
| 389 | return self.switch_socket is not None |
| 390 | |
| 391 | def kill(self): |
| 392 | """ |
| 393 | Force the controller thread to quit |
| 394 | |
| 395 | Just sets the active state variable to false and expects |
| 396 | the select timeout to kick in |
| 397 | """ |
| 398 | self.active = False |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 399 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 400 | def shutdown(self): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 401 | """ |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 402 | Shutdown the controller closing all sockets |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 403 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 404 | @todo Might want to synchronize shutdown with self.sync... |
| 405 | """ |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 406 | self.active = False |
| 407 | try: |
| 408 | self.switch_socket.shutdown(socket.SHUT_RDWR) |
| 409 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 410 | self.logger.info("Ignoring switch soc shutdown error") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 411 | self.switch_socket = None |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 412 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 413 | try: |
| 414 | self.listen_socket.shutdown(socket.SHUT_RDWR) |
| 415 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 416 | self.logger.info("Ignoring listen soc shutdown error") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 417 | self.listen_socket = None |
| 418 | self.dbg_state = "down" |
| 419 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 420 | def register(self, msg_type, handler): |
| 421 | """ |
| 422 | Register a callback to receive a specific message type. |
| 423 | |
| 424 | Only one handler may be registered for a given message type. |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 425 | |
| 426 | WARNING: A lock is held during the handler call back, so |
| 427 | the handler should not make any blocking calls |
| 428 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 429 | @param msg_type The type of message to receive. May be DEFAULT |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 430 | for all non-handled packets. The special type, the string "all" |
| 431 | will send all packets to the handler. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 432 | @param handler The function to call when a message of the given |
| 433 | type is received. |
| 434 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 435 | # Should check type is valid |
| 436 | if not handler and msg_type in self.handlers.keys(): |
| 437 | del self.handlers[msg_type] |
| 438 | return |
| 439 | self.handlers[msg_type] = handler |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 440 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 441 | def poll(self, exp_msg=None, timeout=None): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 442 | """ |
| 443 | Wait for the next OF message received from the switch. |
| 444 | |
| 445 | @param exp_msg If set, return only when this type of message |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 446 | is received (unless timeout occurs). |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 447 | @param timeout If None, do not block. Otherwise, sleep in |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 448 | intervals of 1 second until message is received. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 449 | |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 450 | @retval A pair (msg, pkt) where msg is a message object and pkt |
| 451 | the string representing the packet as received from the socket. |
| 452 | This allows additional parsing by the receiver if necessary. |
| 453 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 454 | The data members in the message are in host endian order. |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 455 | If an error occurs, (None, None) is returned |
| 456 | |
| 457 | The current queue is searched for a message of the desired type |
| 458 | before sleeping on message in events. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 459 | """ |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 460 | |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 461 | msg = pkt = None |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 462 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 463 | self.logger.debug("Poll for " + ofp_type_map[exp_msg]) |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 464 | # First check the current queue |
| 465 | self.sync.acquire() |
| 466 | if len(self.packets) > 0: |
| 467 | if not exp_msg: |
| 468 | (msg, pkt) = self.packets.pop(0) |
| 469 | self.sync.release() |
| 470 | return (msg, pkt) |
| 471 | else: |
| 472 | for i in range(len(self.packets)): |
| 473 | msg = self.packets[i][0] |
| 474 | if msg.header.type == exp_msg: |
| 475 | (msg, pkt) = self.packets.pop(i) |
| 476 | self.sync.release() |
| 477 | return (msg, pkt) |
| 478 | |
| 479 | # Okay, not currently in the queue |
| 480 | if timeout is None or timeout <= 0: |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 481 | self.sync.release() |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 482 | return (None, None) |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 483 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 484 | msg = pkt = None |
| 485 | self.logger.debug("Entering timeout") |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 486 | # Careful of race condition releasing sync before message cv |
Dan Talayco | 90576bd | 2010-02-19 10:59:02 -0800 | [diff] [blame] | 487 | # Also, this style is ripe for a lockup. |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 488 | self.expect_msg_cv.acquire() |
| 489 | self.sync.release() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 490 | self.expect_msg_response = None |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 491 | self.expect_msg = True |
| 492 | self.expect_msg_type = exp_msg |
| 493 | self.expect_msg_cv.wait(timeout) |
| 494 | if self.expect_msg_response is not None: |
| 495 | (msg, pkt) = self.expect_msg_response |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 496 | self.expect_msg_cv.release() |
| 497 | |
| 498 | if msg is None: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 499 | self.logger.debug("Poll time out") |
| 500 | else: |
| 501 | self.logger.debug("Got msg " + str(msg)) |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 502 | |
| 503 | return (msg, pkt) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 504 | |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 505 | def transact(self, msg, timeout=None, zero_xid=False): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 506 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 507 | Run a message transaction with the switch |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 508 | |
| 509 | 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] | 510 | transaction id. Transactions have the highest priority in |
| 511 | received message handling. |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 512 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 513 | @param msg The message object to send; must not be a string |
| 514 | @param timeout The timeout in seconds (?) |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 515 | @param zero_xid Normally, if the XID is 0 an XID will be generated |
| 516 | for the message. Set xero_xid to override this behavior |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 517 | @return The matching message object or None if unsuccessful |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 518 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 519 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 520 | |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 521 | if not zero_xid and msg.header.xid == 0: |
| 522 | msg.header.xid = gen_xid() |
| 523 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 524 | self.xid_cv.acquire() |
| 525 | if self.xid: |
| 526 | self.xid_cv.release() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 527 | self.logger.error("Can only run one transaction at a time") |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 528 | return None |
| 529 | |
| 530 | self.xid = msg.header.xid |
| 531 | self.xid_response = None |
| 532 | self.message_send(msg.pack()) |
| 533 | self.xid_cv.wait(timeout) |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 534 | if self.xid_response: |
Dan Talayco | 09c2c59 | 2010-05-13 14:21:52 -0700 | [diff] [blame] | 535 | (resp, pkt) = self.xid_response |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 536 | self.xid_response = None |
| 537 | else: |
Dan Talayco | 09c2c59 | 2010-05-13 14:21:52 -0700 | [diff] [blame] | 538 | (resp, pkt) = (None, None) |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 539 | self.xid_cv.release() |
Dan Talayco | 09c2c59 | 2010-05-13 14:21:52 -0700 | [diff] [blame] | 540 | if resp is None: |
| 541 | self.logger.warning("No response for xid " + str(self.xid)) |
| 542 | return (resp, pkt) |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 543 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 544 | def message_send(self, msg, zero_xid=False): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 545 | """ |
| 546 | Send the message to the switch |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 547 | |
Dan Talayco | 11c26e7 | 2010-03-07 22:03:57 -0800 | [diff] [blame] | 548 | @param msg A string or OpenFlow message object to be forwarded to |
| 549 | the switch. |
| 550 | @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] | 551 | the XID in the header is 0, then an XID will be generated |
| 552 | for the message. Set xero_xid to override this behavior (and keep an |
| 553 | existing 0 xid) |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 554 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 555 | @return -1 if error, 0 on success |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 556 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 557 | """ |
| 558 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 559 | if not self.switch_socket: |
| 560 | # Sending a string indicates the message is ready to go |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 561 | self.logger.info("message_send: no socket") |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 562 | return -1 |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 563 | #@todo If not string, try to pack |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 564 | if type(msg) != type(""): |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 565 | try: |
| 566 | if msg.header.xid == 0 and not zero_xid: |
| 567 | msg.header.xid = gen_xid() |
| 568 | outpkt = msg.pack() |
| 569 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 570 | self.logger.error( |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 571 | "message_send: not an OF message or string?") |
| 572 | return -1 |
| 573 | else: |
| 574 | outpkt = msg |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 575 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 576 | self.logger.debug("Sending pkt of len " + str(len(outpkt))) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 577 | if self.switch_socket.sendall(outpkt) is None: |
| 578 | return 0 |
| 579 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 580 | self.logger.error("Unknown error on sendall") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 581 | return -1 |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 582 | |
| 583 | def __str__(self): |
| 584 | string = "Controller:\n" |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 585 | string += " state " + self.dbg_state + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 586 | string += " switch_addr " + str(self.switch_addr) + "\n" |
| 587 | string += " pending pkts " + str(len(self.packets)) + "\n" |
| 588 | string += " total pkts " + str(self.packets_total) + "\n" |
| 589 | string += " expired pkts " + str(self.packets_expired) + "\n" |
| 590 | string += " handled pkts " + str(self.packets_handled) + "\n" |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 591 | string += " poll discards " + str(self.poll_discards) + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 592 | string += " parse errors " + str(self.parse_errors) + "\n" |
| 593 | string += " sock errrors " + str(self.socket_errors) + "\n" |
| 594 | string += " max pkts " + str(self.max_pkts) + "\n" |
| 595 | string += " host " + str(self.host) + "\n" |
| 596 | string += " port " + str(self.port) + "\n" |
| 597 | string += " keep_alive " + str(self.keep_alive) + "\n" |
| 598 | return string |
| 599 | |
| 600 | def show(self): |
| 601 | print str(self) |
| 602 | |
| 603 | def sample_handler(controller, msg, pkt): |
| 604 | """ |
| 605 | Sample message handler |
| 606 | |
| 607 | This is the prototype for functions registered with the controller |
| 608 | class for packet reception |
| 609 | |
| 610 | @param controller The controller calling the handler |
| 611 | @param msg The parsed message object |
| 612 | @param pkt The raw packet that was received on the socket. This is |
| 613 | in case the packet contains extra unparsed data. |
| 614 | @returns Boolean value indicating if the packet was handled. If |
| 615 | not handled, the packet is placed in the queue for pollers to received |
| 616 | """ |
| 617 | pass |