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)) |
| 175 | if hdr.version != OFP_VERSION: |
| 176 | self.logger.error("Version %d does not match OFTest version %d" |
| 177 | % (hdr.version, OFP_VERSION)) |
| 178 | print "Version %d does not match OFTest version %d" % \ |
| 179 | (hdr.version, OFP_VERSION) |
| 180 | self.active = False |
| 181 | self.switch_socket = None |
| 182 | self.kill() |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 183 | |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 184 | msg = of_message_parse(rawmsg) |
| 185 | if not msg: |
| 186 | self.parse_errors += 1 |
| 187 | self.logger.warn("Could not parse message") |
| 188 | continue |
| 189 | |
| 190 | self.sync.acquire() |
| 191 | |
| 192 | # Check if transaction is waiting |
| 193 | self.xid_cv.acquire() |
| 194 | if self.xid: |
| 195 | if hdr.xid == self.xid: |
| 196 | self.logger.debug("Matched expected XID " + str(hdr.xid)) |
| 197 | self.xid_response = (msg, rawmsg) |
| 198 | self.xid = None |
| 199 | self.xid_cv.notify() |
| 200 | self.xid_cv.release() |
| 201 | self.sync.release() |
| 202 | continue |
| 203 | self.xid_cv.release() |
| 204 | |
| 205 | # PREVENT QUEUE ACCESS AT THIS POINT? |
| 206 | # Check if anyone waiting on this type of message |
| 207 | self.expect_msg_cv.acquire() |
| 208 | if self.expect_msg: |
| 209 | if not self.expect_msg_type or (self.expect_msg_type == hdr.type): |
| 210 | self.logger.debug("Matched expected msg type " |
| 211 | + ofp_type_map[hdr.type]) |
| 212 | self.expect_msg_response = (msg, rawmsg) |
| 213 | self.expect_msg = False |
| 214 | self.expect_msg_cv.notify() |
| 215 | self.expect_msg_cv.release() |
| 216 | self.sync.release() |
| 217 | continue |
| 218 | self.expect_msg_cv.release() |
| 219 | |
| 220 | # Check if keep alive is set; if so, respond to echo requests |
| 221 | if self.keep_alive: |
| 222 | if hdr.type == OFPT_ECHO_REQUEST: |
| 223 | self.sync.release() |
| 224 | self.logger.debug("Responding to echo request") |
| 225 | rep = echo_reply() |
| 226 | rep.header.xid = hdr.xid |
| 227 | # Ignoring additional data |
| 228 | self.message_send(rep.pack(), zero_xid=True) |
Dan Talayco | 7455ed2 | 2010-10-27 10:51:12 -0700 | [diff] [blame] | 229 | offset += hdr.length |
Glen Gibb | 6d46706 | 2010-07-08 16:15:08 -0700 | [diff] [blame] | 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() |
| 252 | offset += hdr.length |
Rob Sherwood | e3e452a | 2012-03-06 09:24:26 -0800 | [diff] [blame] | 253 | # end of 'while offset < len(pkt)' |
| 254 | # note that if offset = len(pkt), this is |
| 255 | # appends a harmless empty string |
| 256 | self.buffered_input += pkt[offset:] |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 257 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 258 | def _socket_ready_handle(self, s): |
| 259 | """ |
| 260 | Handle an input-ready socket |
| 261 | @param s The socket object that is ready |
| 262 | @retval True, reset the switch connection |
| 263 | """ |
| 264 | |
| 265 | if s == self.listen_socket: |
| 266 | if self.switch_socket: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 267 | self.logger.error("Multiple switch cxns not supported") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 268 | sys.exit(1) |
| 269 | |
| 270 | (self.switch_socket, self.switch_addr) = \ |
| 271 | self.listen_socket.accept() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 272 | self.logger.info("Got cxn to " + str(self.switch_addr)) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 273 | # Notify anyone waiting |
| 274 | self.connect_cv.acquire() |
| 275 | self.connect_cv.notify() |
| 276 | self.connect_cv.release() |
| 277 | self.socs.append(self.switch_socket) |
| 278 | if self.initial_hello: |
| 279 | self.message_send(hello()) |
| 280 | elif s == self.switch_socket: |
| 281 | try: |
| 282 | pkt = self.switch_socket.recv(self.rcv_size) |
| 283 | except: |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 284 | self.logger.warning("Error on switch read") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 285 | return True |
| 286 | |
| 287 | if not self.active: |
| 288 | return False |
| 289 | |
| 290 | if len(pkt) == 0: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 291 | self.logger.info("zero-len pkt in") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 292 | return True |
| 293 | |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 294 | self._pkt_handle(pkt) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 295 | else: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 296 | self.logger.error("Unknown socket ready: " + str(s)) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 297 | return True |
| 298 | |
| 299 | return False |
| 300 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 301 | def run(self): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 302 | """ |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 303 | Activity function for class |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 304 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 305 | Assumes connection to switch already exists. Listens on |
| 306 | switch_socket for messages until an error (or zero len pkt) |
| 307 | occurs. |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 308 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 309 | When there is a message on the socket, check for handlers; queue the |
| 310 | packet if no one handles the packet. |
| 311 | |
| 312 | See note for controller describing the limitation of a single |
| 313 | connection for now. |
| 314 | """ |
| 315 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 316 | self.dbg_state = "starting" |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 317 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 318 | # Create listen socket |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 319 | self.logger.info("Create/listen at " + self.host + ":" + |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 320 | str(self.port)) |
| 321 | self.listen_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
| 322 | self.listen_socket.setsockopt(socket.SOL_SOCKET, |
| 323 | socket.SO_REUSEADDR, 1) |
| 324 | self.listen_socket.bind((self.host, self.port)) |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 325 | self.dbg_state = "listening" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 326 | self.listen_socket.listen(LISTEN_QUEUE_SIZE) |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 327 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 328 | self.logger.info("Waiting for switch connection") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 329 | self.socs = [self.listen_socket] |
| 330 | self.dbg_state = "running" |
| 331 | while self.active: |
| 332 | reset_switch_cxn = False |
| 333 | try: |
| 334 | sel_in, sel_out, sel_err = \ |
| 335 | select.select(self.socs, [], self.socs, 1) |
| 336 | except: |
| 337 | print sys.exc_info() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 338 | self.logger.error("Select error, exiting") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 339 | sys.exit(1) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 340 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 341 | if not self.active: |
| 342 | break |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 343 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 344 | for s in sel_in: |
| 345 | reset_switch_cxn = self._socket_ready_handle(s) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 346 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 347 | for s in sel_err: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 348 | self.logger.error("Got socket error on: " + str(s)) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 349 | if s == self.switch_socket: |
| 350 | reset_switch_cxn = True |
| 351 | else: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 352 | self.logger.error("Socket error; exiting") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 353 | self.active = False |
| 354 | break |
| 355 | |
| 356 | if self.active and reset_switch_cxn: |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 357 | if self.exit_on_reset: |
| 358 | self.kill() |
| 359 | else: |
| 360 | self.logger.warning("Closing switch cxn") |
| 361 | try: |
| 362 | self.switch_socket.close() |
| 363 | except: |
| 364 | pass |
| 365 | self.switch_socket = None |
| 366 | self.socs = self.socs[0:1] |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 367 | |
| 368 | # End of main loop |
| 369 | self.dbg_state = "closing" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 370 | self.logger.info("Exiting controller thread") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 371 | self.shutdown() |
| 372 | |
| 373 | def connect(self, timeout=None): |
| 374 | """ |
| 375 | Connect to the switch |
| 376 | |
| 377 | @param timeout If None, block until connected. If 0, return |
| 378 | immedidately. Otherwise, block for up to timeout seconds |
| 379 | @return Boolean, True if connected |
| 380 | """ |
| 381 | |
| 382 | if timeout == 0: |
| 383 | return self.switch_socket is not None |
| 384 | if self.switch_socket is not None: |
| 385 | return True |
| 386 | self.connect_cv.acquire() |
| 387 | self.connect_cv.wait(timeout) |
| 388 | self.connect_cv.release() |
| 389 | |
| 390 | return self.switch_socket is not None |
| 391 | |
| 392 | def kill(self): |
| 393 | """ |
| 394 | Force the controller thread to quit |
| 395 | |
| 396 | Just sets the active state variable to false and expects |
| 397 | the select timeout to kick in |
| 398 | """ |
| 399 | self.active = False |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 400 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 401 | def shutdown(self): |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 402 | """ |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 403 | Shutdown the controller closing all sockets |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 404 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 405 | @todo Might want to synchronize shutdown with self.sync... |
| 406 | """ |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 407 | self.active = False |
| 408 | try: |
| 409 | self.switch_socket.shutdown(socket.SHUT_RDWR) |
| 410 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 411 | self.logger.info("Ignoring switch soc shutdown error") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 412 | self.switch_socket = None |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 413 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 414 | try: |
| 415 | self.listen_socket.shutdown(socket.SHUT_RDWR) |
| 416 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 417 | self.logger.info("Ignoring listen soc shutdown error") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 418 | self.listen_socket = None |
| 419 | self.dbg_state = "down" |
| 420 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 421 | def register(self, msg_type, handler): |
| 422 | """ |
| 423 | Register a callback to receive a specific message type. |
| 424 | |
| 425 | Only one handler may be registered for a given message type. |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 426 | |
| 427 | WARNING: A lock is held during the handler call back, so |
| 428 | the handler should not make any blocking calls |
| 429 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 430 | @param msg_type The type of message to receive. May be DEFAULT |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 431 | for all non-handled packets. The special type, the string "all" |
| 432 | will send all packets to the handler. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 433 | @param handler The function to call when a message of the given |
| 434 | type is received. |
| 435 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 436 | # Should check type is valid |
| 437 | if not handler and msg_type in self.handlers.keys(): |
| 438 | del self.handlers[msg_type] |
| 439 | return |
| 440 | self.handlers[msg_type] = handler |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 441 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 442 | def poll(self, exp_msg=None, timeout=None): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 443 | """ |
| 444 | Wait for the next OF message received from the switch. |
| 445 | |
| 446 | @param exp_msg If set, return only when this type of message |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 447 | is received (unless timeout occurs). |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 448 | @param timeout If None, do not block. Otherwise, sleep in |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 449 | intervals of 1 second until message is received. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 450 | |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 451 | @retval A pair (msg, pkt) where msg is a message object and pkt |
| 452 | the string representing the packet as received from the socket. |
| 453 | This allows additional parsing by the receiver if necessary. |
| 454 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 455 | The data members in the message are in host endian order. |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 456 | If an error occurs, (None, None) is returned |
| 457 | |
| 458 | The current queue is searched for a message of the desired type |
| 459 | before sleeping on message in events. |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 460 | """ |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 461 | |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 462 | msg = pkt = None |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 463 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 464 | self.logger.debug("Poll for " + ofp_type_map[exp_msg]) |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 465 | # First check the current queue |
| 466 | self.sync.acquire() |
| 467 | if len(self.packets) > 0: |
| 468 | if not exp_msg: |
| 469 | (msg, pkt) = self.packets.pop(0) |
| 470 | self.sync.release() |
| 471 | return (msg, pkt) |
| 472 | else: |
| 473 | for i in range(len(self.packets)): |
| 474 | msg = self.packets[i][0] |
| 475 | if msg.header.type == exp_msg: |
| 476 | (msg, pkt) = self.packets.pop(i) |
| 477 | self.sync.release() |
| 478 | return (msg, pkt) |
| 479 | |
| 480 | # Okay, not currently in the queue |
| 481 | if timeout is None or timeout <= 0: |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 482 | self.sync.release() |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 483 | return (None, None) |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 484 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 485 | msg = pkt = None |
| 486 | self.logger.debug("Entering timeout") |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 487 | # Careful of race condition releasing sync before message cv |
Dan Talayco | 90576bd | 2010-02-19 10:59:02 -0800 | [diff] [blame] | 488 | # Also, this style is ripe for a lockup. |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 489 | self.expect_msg_cv.acquire() |
| 490 | self.sync.release() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 491 | self.expect_msg_response = None |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 492 | self.expect_msg = True |
| 493 | self.expect_msg_type = exp_msg |
| 494 | self.expect_msg_cv.wait(timeout) |
| 495 | if self.expect_msg_response is not None: |
| 496 | (msg, pkt) = self.expect_msg_response |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 497 | self.expect_msg_cv.release() |
| 498 | |
| 499 | if msg is None: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 500 | self.logger.debug("Poll time out") |
| 501 | else: |
| 502 | self.logger.debug("Got msg " + str(msg)) |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 503 | |
| 504 | return (msg, pkt) |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 505 | |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 506 | def transact(self, msg, timeout=None, zero_xid=False): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 507 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 508 | Run a message transaction with the switch |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 509 | |
| 510 | 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] | 511 | transaction id. Transactions have the highest priority in |
| 512 | received message handling. |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 513 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 514 | @param msg The message object to send; must not be a string |
| 515 | @param timeout The timeout in seconds (?) |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 516 | @param zero_xid Normally, if the XID is 0 an XID will be generated |
| 517 | for the message. Set xero_xid to override this behavior |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 518 | @return The matching message object or None if unsuccessful |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 519 | |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 520 | """ |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 521 | |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 522 | if not zero_xid and msg.header.xid == 0: |
| 523 | msg.header.xid = gen_xid() |
| 524 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 525 | self.xid_cv.acquire() |
| 526 | if self.xid: |
| 527 | self.xid_cv.release() |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 528 | self.logger.error("Can only run one transaction at a time") |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 529 | return None |
| 530 | |
| 531 | self.xid = msg.header.xid |
| 532 | self.xid_response = None |
| 533 | self.message_send(msg.pack()) |
| 534 | self.xid_cv.wait(timeout) |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 535 | if self.xid_response: |
Dan Talayco | 09c2c59 | 2010-05-13 14:21:52 -0700 | [diff] [blame] | 536 | (resp, pkt) = self.xid_response |
Dan Talayco | d12b661 | 2010-03-07 22:00:46 -0800 | [diff] [blame] | 537 | self.xid_response = None |
| 538 | else: |
Dan Talayco | 09c2c59 | 2010-05-13 14:21:52 -0700 | [diff] [blame] | 539 | (resp, pkt) = (None, None) |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 540 | self.xid_cv.release() |
Dan Talayco | 09c2c59 | 2010-05-13 14:21:52 -0700 | [diff] [blame] | 541 | if resp is None: |
| 542 | self.logger.warning("No response for xid " + str(self.xid)) |
| 543 | return (resp, pkt) |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 544 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 545 | def message_send(self, msg, zero_xid=False): |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 546 | """ |
| 547 | Send the message to the switch |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 548 | |
Dan Talayco | 11c26e7 | 2010-03-07 22:03:57 -0800 | [diff] [blame] | 549 | @param msg A string or OpenFlow message object to be forwarded to |
| 550 | the switch. |
| 551 | @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] | 552 | the XID in the header is 0, then an XID will be generated |
| 553 | for the message. Set xero_xid to override this behavior (and keep an |
| 554 | existing 0 xid) |
Dan Talayco | e37999f | 2010-02-09 15:27:12 -0800 | [diff] [blame] | 555 | |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 556 | @return -1 if error, 0 on success |
Dan Talayco | 3408952 | 2010-02-07 23:07:41 -0800 | [diff] [blame] | 557 | |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 558 | """ |
| 559 | |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 560 | if not self.switch_socket: |
| 561 | # Sending a string indicates the message is ready to go |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 562 | self.logger.info("message_send: no socket") |
Dan Talayco | 1b3f690 | 2010-02-15 14:14:19 -0800 | [diff] [blame] | 563 | return -1 |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 564 | #@todo If not string, try to pack |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 565 | if type(msg) != type(""): |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 566 | try: |
| 567 | if msg.header.xid == 0 and not zero_xid: |
| 568 | msg.header.xid = gen_xid() |
| 569 | outpkt = msg.pack() |
| 570 | except: |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 571 | self.logger.error( |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 572 | "message_send: not an OF message or string?") |
| 573 | return -1 |
| 574 | else: |
| 575 | outpkt = msg |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 576 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 577 | self.logger.debug("Sending pkt of len " + str(len(outpkt))) |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 578 | if self.switch_socket.sendall(outpkt) is None: |
| 579 | return 0 |
| 580 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 581 | self.logger.error("Unknown error on sendall") |
Dan Talayco | 710438c | 2010-02-18 15:16:07 -0800 | [diff] [blame] | 582 | return -1 |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 583 | |
| 584 | def __str__(self): |
| 585 | string = "Controller:\n" |
Dan Talayco | d7e2dbe | 2010-02-13 21:51:15 -0800 | [diff] [blame] | 586 | string += " state " + self.dbg_state + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 587 | string += " switch_addr " + str(self.switch_addr) + "\n" |
| 588 | string += " pending pkts " + str(len(self.packets)) + "\n" |
| 589 | string += " total pkts " + str(self.packets_total) + "\n" |
| 590 | string += " expired pkts " + str(self.packets_expired) + "\n" |
| 591 | string += " handled pkts " + str(self.packets_handled) + "\n" |
Dan Talayco | e226eb1 | 2010-02-18 23:06:30 -0800 | [diff] [blame] | 592 | string += " poll discards " + str(self.poll_discards) + "\n" |
Dan Talayco | 21c75c7 | 2010-02-12 22:59:24 -0800 | [diff] [blame] | 593 | string += " parse errors " + str(self.parse_errors) + "\n" |
| 594 | string += " sock errrors " + str(self.socket_errors) + "\n" |
| 595 | string += " max pkts " + str(self.max_pkts) + "\n" |
| 596 | string += " host " + str(self.host) + "\n" |
| 597 | string += " port " + str(self.port) + "\n" |
| 598 | string += " keep_alive " + str(self.keep_alive) + "\n" |
| 599 | return string |
| 600 | |
| 601 | def show(self): |
| 602 | print str(self) |
| 603 | |
| 604 | def sample_handler(controller, msg, pkt): |
| 605 | """ |
| 606 | Sample message handler |
| 607 | |
| 608 | This is the prototype for functions registered with the controller |
| 609 | class for packet reception |
| 610 | |
| 611 | @param controller The controller calling the handler |
| 612 | @param msg The parsed message object |
| 613 | @param pkt The raw packet that was received on the socket. This is |
| 614 | in case the packet contains extra unparsed data. |
| 615 | @returns Boolean value indicating if the packet was handled. If |
| 616 | not handled, the packet is placed in the queue for pollers to received |
| 617 | """ |
| 618 | pass |