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