1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
|
# Copyright (C) 2020 Philipp Hörist <philipp AT hoerist.com>
#
# This file is part of nbxmpp.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; If not, see <http://www.gnu.org/licenses/>.
import logging
from collections import deque
from gi.repository import GLib
from gi.repository import Gio
from gi.repository import GObject
from nbxmpp.const import TCPState
from nbxmpp.const import ConnectionType
from nbxmpp.util import utf8_decode
from nbxmpp.util import convert_tls_error_flags
from nbxmpp.connection import Connection
log = logging.getLogger('nbxmpp.tcp')
READ_BUFFER_SIZE = 8192
class TCPConnection(Connection):
def __init__(self, *args, **kwargs):
Connection.__init__(self, *args, **kwargs)
self._client = Gio.SocketClient.new()
self._client.set_timeout(7)
if self._address.proxy is not None:
self._proxy_resolver = self._address.proxy.get_resolver()
self._client.set_proxy_resolver(self._proxy_resolver)
GObject.Object.connect(self._client, 'event', self._on_event)
self._con = None
self._read_buffer = b''
self._write_queue = deque([])
self._write_stanza_buffer = None
self._connect_cancellable = Gio.Cancellable()
self._read_cancellable = Gio.Cancellable()
self._tls_handshake_in_progress = False
self._input_closed = False
self._output_closed = False
self._keepalive_id = None
def connect(self):
self.state = TCPState.CONNECTING
if self._address.is_service:
self._client.connect_to_service_async(self._address.domain,
self._address.service,
self._connect_cancellable,
self._on_connect_finished,
None)
elif self._address.is_host:
self._client.connect_to_host_async(self._address.host,
0,
self._connect_cancellable,
self._on_connect_finished,
None)
else:
raise ValueError('Invalid Address')
def _on_event(self, _socket_client, event, _connectable, connection):
if event == Gio.SocketClientEvent.CONNECTING:
self._remote_address = connection.get_remote_address().to_string()
use_proxy = self._address.proxy is not None
target = 'proxy' if use_proxy else self._address.domain
self._log.info('Connecting to %s (%s)',
target,
self._remote_address)
def _check_certificate(self, _connection, certificate, errors):
self._peer_certificate = certificate
self._peer_certificate_errors = convert_tls_error_flags(errors)
if self._accept_certificate():
return True
self.notify('bad-certificate')
return False
def _on_certificate_set(self, connection, _param):
self._peer_certificate = connection.props.peer_certificate
self._peer_certificate_errors = convert_tls_error_flags(
connection.props.peer_certificate_errors)
self._tls_handshake_in_progress = False
self.notify('certificate-set')
def _on_connect_finished(self, client, result, _user_data):
try:
if self._address.proxy is not None:
self._con = client.connect_to_host_finish(result)
elif self._address.is_service:
self._con = client.connect_to_service_finish(result)
elif self._address.is_host:
self._con = client.connect_to_host_finish(result)
else:
raise ValueError('Address must be a service or host')
except GLib.Error as error:
self._log.info('Connect Error: %s', error)
self._finalize('connection-failed')
return
# We use the timeout only for connecting
self._con.get_socket().set_timeout(0)
self._con.set_graceful_disconnect(True)
self._con.get_socket().set_keepalive(True)
self._local_address = self._con.get_local_address()
self.state = TCPState.CONNECTED
use_proxy = self._address.proxy is not None
target = 'proxy' if use_proxy else self._address.domain
self._log.info('Connected to %s (%s)',
target,
self._con.get_remote_address().to_string())
self._on_connected()
def _on_connected(self):
self.notify('connected')
self._read_async()
def _remove_keepalive_timer(self):
if self._keepalive_id is not None:
self._log.info('Remove keepalive timer')
GLib.source_remove(self._keepalive_id)
self._keepalive_id = None
def _renew_keepalive_timer(self):
if self._con is None:
return
self._remove_keepalive_timer()
self._log.info('Add keepalive timer')
self._keepalive_id = GLib.timeout_add_seconds(5, self._send_keepalive)
def _send_keepalive(self):
self._log.info('Send keepalive')
self._keepalive_id = None
if not self._con.get_output_stream().has_pending():
self._write_all_async(' '.encode())
def start_tls_negotiation(self):
self._log.info('Start TLS negotiation')
self._tls_handshake_in_progress = True
remote_address = self._con.get_remote_address()
identity = Gio.NetworkAddress.new(self._address.domain,
remote_address.props.port)
tls_client = Gio.TlsClientConnection.new(self._con, identity)
if self._address.type == ConnectionType.DIRECT_TLS:
tls_client.set_advertised_protocols(['xmpp-client'])
tls_client.set_validation_flags(Gio.TlsCertificateFlags.VALIDATE_ALL)
tls_client.connect('accept-certificate', self._check_certificate)
tls_client.connect('notify::peer-certificate', self._on_certificate_set)
# This Wraps the Gio.TlsClientConnection and the Gio.Socket together
# so we get back a Gio.SocketConnection
self._con = Gio.TcpWrapperConnection.new(tls_client,
self._con.get_socket())
def _read_async(self):
if self._input_closed:
return
self._con.get_input_stream().read_bytes_async(
READ_BUFFER_SIZE,
GLib.PRIORITY_DEFAULT,
self._read_cancellable,
self._on_read_async_finish,
None)
def _on_read_async_finish(self, stream, result, _user_data):
try:
data = stream.read_bytes_finish(result)
except GLib.Error as error:
quark = GLib.quark_try_string('g-io-error-quark')
if error.matches(quark, Gio.IOErrorEnum.CANCELLED):
if self._input_closed:
return
quark = GLib.quark_try_string('g-tls-error-quark')
if error.matches(quark, Gio.TlsError.MISC):
if self._tls_handshake_in_progress:
self._log.error('Handshake failed: %s', error)
self._finalize('connection-failed')
return
if error.matches(quark, Gio.TlsError.EOF):
self._log.info('Incoming stream closed: TLS EOF')
self._finalize('disconnected')
return
if error.matches(quark, Gio.TlsError.BAD_CERTIFICATE):
self._log.info('Certificate Error: %s', error)
self._finalize('disconnected')
return
self._log.error('Read Error: %s', error)
if self._state not in (TCPState.DISCONNECTING,
TCPState.DISCONNECTED):
self._finalize('disconnected')
return
except RuntimeError as error:
# PyGObject raises a RuntimeError when it fails to convert the
# GError. Why it failed is printed by PyGObject
self._log.error(error)
return
data = data.get_data()
if not data:
if self._state == TCPState.DISCONNECTING:
self._log.info('Reveived zero data on _read_async()')
self._finalize('disconnected')
else:
self._log.warning('Reveived zero data on _read_async()')
return
self._renew_keepalive_timer()
self._read_buffer += data
try:
data, self._read_buffer = utf8_decode(self._read_buffer)
except UnicodeDecodeError as error:
self._log.warning(error)
self._log.warning('read buffer: "%s"', self._read_buffer)
self._log.warning('data: "%s"', data)
self._finalize('disconnected')
return
self._log_stanza(data, received=True)
try:
self.notify('data-received', data)
except Exception:
self._log.exception('Error while executing data-received:')
# Call next async read only after the received data is processed
# otherwise this can lead to problems if we call
# start_tls_negotiation() while we have a pending read which is
# the case for START TLS because its triggered by <proceed>
self._read_async()
def _write_stanzas(self):
self._write_stanza_buffer = self._write_queue
self._write_queue = deque([])
data = ''.join(map(str, self._write_stanza_buffer)).encode()
self._write_all_async(data)
def _write_all_async(self, data):
# We have to pass data to the callback, because GLib takes no
# reference on the passed data and python would gc collect it
# bevor GLib has a chance to write it to the stream
self._con.get_output_stream().write_all_async(
data,
GLib.PRIORITY_DEFAULT,
None,
self._on_write_all_async_finished,
data)
def _on_write_all_async_finished(self, stream, result, data):
try:
stream.write_all_finish(result)
except GLib.Error as error:
quark = GLib.quark_try_string('g-tls-error-quark')
if error.matches(quark, Gio.TlsError.BAD_CERTIFICATE):
self._write_stanza_buffer = None
return
if self._output_closed:
self._check_for_shutdown()
return
self._log.error('Write Error: %s', error)
return
except RuntimeError as error:
# PyGObject raises a RuntimeError when it fails to convert the
# GError. Why it failed is printed by PyGObject
self._log.error(error)
return
data = data.decode()
self._log_stanza(data, received=False)
if data == ' ':
# keepalive whitespace
self._renew_keepalive_timer()
else:
for stanza in self._write_stanza_buffer:
try:
self.notify('data-sent', stanza)
except Exception:
self._log.exception('Error while executing data-sent:')
if self._output_closed and not self._write_queue:
self._check_for_shutdown()
return
if self._write_queue:
self._write_stanzas()
def send(self, stanza, now=False):
if self._state in (TCPState.DISCONNECTED, TCPState.DISCONNECTING):
self._log.warning('send() not possible in state: %s', self._state)
return
if now:
self._write_queue.appendleft(stanza)
else:
self._write_queue.append(stanza)
if not self._con.get_output_stream().has_pending():
self._write_stanzas()
def disconnect(self):
self._remove_keepalive_timer()
if self.state == TCPState.CONNECTING:
self.state = TCPState.DISCONNECTING
self._connect_cancellable.cancel()
return
if self._state in (TCPState.DISCONNECTED, TCPState.DISCONNECTING):
self._log.warning('Called disconnect on state: %s', self._state)
return
self.state = TCPState.DISCONNECTING
self._finalize('disconnected')
def _check_for_shutdown(self):
if self._input_closed and self._output_closed:
self._finalize('disconnected')
def shutdown_input(self):
self._remove_keepalive_timer()
self._log.info('Shutdown input')
self._input_closed = True
self._read_cancellable.cancel()
self._check_for_shutdown()
def shutdown_output(self):
self._remove_keepalive_timer()
self.state = TCPState.DISCONNECTING
self._log.info('Shutdown output')
self._output_closed = True
def _finalize(self, signal_name):
self._remove_keepalive_timer()
if self._con is not None:
try:
self._con.get_socket().shutdown(True, True)
except GLib.Error as error:
self._log.info(error)
self._input_closed = True
self._output_closed = True
self.state = TCPState.DISCONNECTED
self.notify(signal_name)
self.destroy()
def destroy(self):
super().destroy()
self._con = None
self._client = None
self._write_queue = None
|