Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright 2016 the original author or authors. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | import structlog |
| 18 | import io |
| 19 | from lxml import etree |
| 20 | from lxml.builder import E |
| 21 | import netconf.nc_common.error as ncerror |
| 22 | from netconf import NSMAP, qmap |
| 23 | from utils import elm |
| 24 | from twisted.internet.defer import inlineCallbacks, returnValue, Deferred |
| 25 | from capabilities import Capabilities |
| 26 | from netconf.nc_rpc.rpc_factory import get_rpc_factory_instance |
| 27 | from netconf.constants import Constants as C |
| 28 | |
| 29 | log = structlog.get_logger() |
| 30 | |
| 31 | |
| 32 | class NetconfProtocolError(Exception): pass |
| 33 | |
| 34 | |
| 35 | class NetconfProtocolHandler: |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 36 | def __init__(self, nc_server, nc_conn, session, grpc_client): |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 37 | self.started = True |
| 38 | self.conn = nc_conn |
| 39 | self.nc_server = nc_server |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 40 | self.grpc_client = grpc_client |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 41 | self.new_framing = False |
| 42 | self.capabilities = Capabilities() |
| 43 | self.session = session |
| 44 | self.exiting = False |
| 45 | self.connected = Deferred() |
| 46 | self.connected.addCallback(self.nc_server.client_disconnected, |
| 47 | self, None) |
| 48 | |
| 49 | def send_message(self, msg): |
| 50 | self.conn.send_msg(C.XML_HEADER + msg, self.new_framing) |
| 51 | |
| 52 | def receive_message(self): |
| 53 | return self.conn.receive_msg_any(self.new_framing) |
| 54 | |
| 55 | def send_hello(self, caplist, session=None): |
| 56 | msg = elm(C.HELLO, attrib={C.XMLNS: NSMAP[C.NC]}) |
| 57 | caps = E.capabilities(*[E.capability(x) for x in caplist]) |
| 58 | msg.append(caps) |
| 59 | |
| 60 | if session is not None: |
| 61 | msg.append(E(C.SESSION_ID, str(session.session_id))) |
| 62 | msg = etree.tostring(msg) |
| 63 | log.info("Sending HELLO", msg=msg) |
| 64 | msg = msg.decode('utf-8') |
| 65 | self.send_message(msg) |
| 66 | |
| 67 | def send_rpc_reply(self, rpc_reply, origmsg): |
| 68 | reply = etree.Element(qmap(C.NC) + C.RPC_REPLY, attrib=origmsg.attrib, |
| 69 | nsmap=origmsg.nsmap) |
| 70 | try: |
| 71 | rpc_reply.getchildren |
| 72 | reply.append(rpc_reply) |
| 73 | except AttributeError: |
| 74 | reply.extend(rpc_reply) |
| 75 | ucode = etree.tounicode(reply, pretty_print=True) |
| 76 | log.info("RPC-Reply", reply=ucode) |
| 77 | self.send_message(ucode) |
| 78 | |
| 79 | def set_framing_version(self): |
| 80 | if C.NETCONF_BASE_11 in self.capabilities.client_caps: |
| 81 | self.new_framing = True |
| 82 | elif C.NETCONF_BASE_10 not in self.capabilities.client_caps: |
| 83 | raise SessionError( |
| 84 | "Client doesn't implement 1.0 or 1.1 of netconf") |
| 85 | |
| 86 | @inlineCallbacks |
| 87 | def open_session(self): |
| 88 | # The transport should be connected at this point. |
| 89 | try: |
| 90 | # Send hello message. |
| 91 | yield self.send_hello(self.capabilities.server_caps, self.session) |
| 92 | # Get reply |
| 93 | reply = yield self.receive_message() |
| 94 | log.info("reply-received", reply=reply) |
| 95 | |
| 96 | # Parse reply |
| 97 | tree = etree.parse(io.BytesIO(reply.encode('utf-8'))) |
| 98 | root = tree.getroot() |
| 99 | caps = root.xpath(C.CAPABILITY_XPATH, namespaces=NSMAP) |
| 100 | |
| 101 | # Store capabilities |
| 102 | for cap in caps: |
| 103 | self.capabilities.add_client_capability(cap.text) |
| 104 | |
| 105 | self.set_framing_version() |
| 106 | self.session.session_opened = True |
| 107 | |
| 108 | log.info('session-opened', session_id=self.session.session_id, |
| 109 | framing="1.1" if self.new_framing else "1.0") |
| 110 | except Exception as e: |
| 111 | log.error('hello-failure', exception=repr(e)) |
| 112 | self.stop(repr(e)) |
| 113 | raise |
| 114 | |
| 115 | @inlineCallbacks |
| 116 | def start(self): |
| 117 | log.info('starting') |
| 118 | |
| 119 | try: |
| 120 | yield self.open_session() |
| 121 | while True: |
| 122 | if not self.session.session_opened: |
| 123 | break; |
| 124 | msg = yield self.receive_message() |
| 125 | yield self.handle_request(msg) |
| 126 | |
| 127 | except Exception as e: |
| 128 | log.exception('exception', exception=repr(e)) |
| 129 | self.stop(repr(e)) |
| 130 | |
| 131 | log.info('shutdown') |
| 132 | returnValue(self) |
| 133 | |
| 134 | @inlineCallbacks |
| 135 | def handle_request(self, msg): |
| 136 | if not self.session.session_opened: |
| 137 | return |
| 138 | |
| 139 | # Any error with XML encoding here is going to cause a session close |
| 140 | try: |
| 141 | tree = etree.parse(io.BytesIO(msg.encode('utf-8'))) |
| 142 | if not tree: |
| 143 | raise ncerror.SessionError(msg, "Invalid XML from client.") |
| 144 | except etree.XMLSyntaxError: |
| 145 | log.error("malformed-message", msg=msg) |
| 146 | try: |
| 147 | error = ncerror.BadMsg(msg) |
| 148 | self.send_message(error.get_reply_msg()) |
| 149 | except AttributeError: |
| 150 | log.error("attribute-error", msg=msg) |
| 151 | # close session |
| 152 | self.close() |
| 153 | return |
| 154 | |
| 155 | rpcs = tree.xpath(C.RPC_XPATH, namespaces=NSMAP) |
| 156 | if not rpcs: |
| 157 | raise ncerror.SessionError(msg, "No rpc found") |
| 158 | |
| 159 | # A message can have multiple rpc requests |
| 160 | rpc_factory = get_rpc_factory_instance() |
| 161 | for rpc in rpcs: |
| 162 | try: |
| 163 | # Validate message id is received |
| 164 | try: |
| 165 | msg_id = rpc.get(C.MESSAGE_ID) |
| 166 | log.info("Received-rpc-message-id", msg_id=msg_id) |
| 167 | except (TypeError, ValueError): |
| 168 | log.error('no-message-id', rpc=rpc) |
| 169 | raise ncerror.MissingElement(msg, C.MESSAGE_ID) |
| 170 | |
| 171 | # Get a rpc handler |
| 172 | rpc_handler = rpc_factory.get_rpc_handler(rpc, |
| 173 | msg, |
Khen Nursimulu | aaac7ee | 2016-12-11 22:03:52 -0500 | [diff] [blame] | 174 | self.grpc_client, |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 175 | self.session) |
| 176 | if rpc_handler: |
| 177 | # set the parameters for this handler |
| 178 | response = yield rpc_handler.execute() |
| 179 | log.info('handler', |
| 180 | rpc_handler=rpc_handler, |
| 181 | is_error=response.is_error, |
| 182 | response=response) |
| 183 | self.send_rpc_reply(response.node, rpc) |
| 184 | if response.close_session: |
| 185 | log.info('response-closing-session', response=response) |
| 186 | self.close() |
| 187 | else: |
| 188 | log.error('no-rpc-handler', |
| 189 | request=msg, |
| 190 | session_id=self.session.session_id) |
| 191 | raise ncerror.NotImpl(msg) |
| 192 | |
| 193 | except ncerror.BadMsg as err: |
| 194 | log.info('ncerror.BadMsg') |
| 195 | if self.new_framing: |
| 196 | self.send_message(err.get_reply_msg()) |
| 197 | else: |
| 198 | # If we are 1.0 we have to simply close the connection |
| 199 | # as we are not allowed to send this error |
| 200 | log.error("Closing-1-0-session--malformed-message") |
| 201 | self.close() |
| 202 | except (ncerror.NotImpl, ncerror.MissingElement) as e: |
| 203 | log.info('error', repr(e)) |
| 204 | self.send_message(e.get_reply_msg()) |
| 205 | except Exception as ex: |
| 206 | log.info('Exception', repr(ex)) |
| 207 | error = ncerror.ServerException(rpc, ex) |
| 208 | self.send_message(error.get_reply_msg()) |
| 209 | |
Khen Nursimulu | a7b842a | 2016-12-03 23:28:42 -0500 | [diff] [blame] | 210 | |
| 211 | def stop(self, reason): |
| 212 | if not self.exiting: |
| 213 | log.debug('stopping') |
| 214 | self.exiting = True |
| 215 | if self.session.session_opened: |
| 216 | # TODO: send a closing message to the far end |
| 217 | self.conn.close_connection() |
| 218 | self.nc_server.session_mgr.remove_session(self.session) |
| 219 | self.session.session_opened = False |
| 220 | self.connected.callback(None) |
| 221 | log.info('stopped') |
| 222 | |
| 223 | def close(self): |
| 224 | if not self.exiting: |
| 225 | log.debug('closing-client') |
| 226 | self.exiting = True |
| 227 | if self.session.session_opened: |
| 228 | self.conn.close_connection() |
| 229 | self.nc_server.session_mgr.remove_session(self.session) |
| 230 | self.session.session_opened = False |
| 231 | self.connected.callback(None) |
| 232 | log.info('closing-client') |