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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
|
#!/usr/bin/env python
import logging
import mailbox
import os
import signal
try:
from urllib.parse import unquote
except ImportError:
from urllib import unquote
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
from gi.repository import GLib
from gi.repository import Gdk
from gpg import errors
from wormhole.errors import ServerConnectionError, LonelyError, WrongPasswordError
if __name__ == "__main__":
from twisted.internet import gtk3reactor
gtk3reactor.install()
from twisted.internet import reactor
from twisted.internet.defer import inlineCallbacks
if __name__ == "__main__" and __package__ is None:
logging.getLogger().error("You seem to be trying to execute " +
"this script directly which is discouraged. " +
"Try python -m instead.")
parent_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
os.sys.path.insert(0, parent_dir)
os.sys.path.insert(0, os.path.join(parent_dir, 'monkeysign'))
import keysign
#mod = __import__('keysign')
#sys.modules["keysign"] = mod
__package__ = str('keysign')
from .keylistwidget import KeyListWidget
from .KeyPresent import KeyPresentWidget
from .offer import Offer
from .util import get_attachments
from . import gpgmeh
# We import i18n to have the locale set up for Glade
from .i18n import _
log = logging.getLogger(__name__)
try:
from .bluetoothoffer import BluetoothOffer
except ImportError:
log.exception("cannot import BluetoothOffer")
BluetoothOffer = None
DRAG_ACTION = Gdk.DragAction.COPY
class SendApp:
"""Common functionality needed when building the sending part
This class will automatically start the keyserver
and avahi components. It will load a GtkStack from "send.ui"
and automatically switch to a newly generate KeyPresentWidget.
To switch the stack back and stop the keyserver, you have to
call deactivate().
"""
def __init__(self, builder=None):
self.offer = None
self.stack = None
self.stack_saved_visible_child = None
self.klw = None
self.kpw = None
ui_file_path = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"send.ui")
if not builder:
builder = Gtk.Builder()
builder.add_objects_from_file(ui_file_path, ["send_stack"])
keys = gpgmeh.get_usable_secret_keys()
klw = KeyListWidget(keys, builder=builder)
klw.connect("key-activated", self.on_key_activated)
self.klw = klw
stack = builder.get_object("send_stack")
stack.add(klw)
self.stack = stack
# This is a dirty hack :-/
# The problem is that the .ui file contains a few widgets
# that we (potentially) want to instantiate separately.
# Now that may not necessarily be what Gtk people envisioned
# so it's not supported nicely.
# The actual problem is that the widgets of our desire are
# currently attached to a GtkStack. When our custom widget
# code runs, it detaches itself from its parent, i.e. the stack.
# We need need to instantiate the widget with key, however.
fakekey = gpgmeh.Key("","","")
kpw = KeyPresentWidget(fakekey, "", builder=builder)
self.rb = builder.get_object('resultbox')
self.stack.remove(self.rb)
self.key = None
self.result_label = builder.get_object("result_label")
self.success_label = builder.get_object("success_label")
self.password_error_label = builder.get_object("password_error_label")
self.notify = None
self.internet_option = False
# Add drag and drop to the keys list widget
builder.connect_signals(self)
self.label = builder.get_object("keys_listbox")
self.label.drag_dest_set(Gtk.DestDefaults.ALL, [], DRAG_ACTION)
self.label.drag_dest_set_target_list(None)
self.label.drag_dest_add_text_targets()
self.label.drag_dest_add_uri_targets()
self.rb.connect('drag-data-received', self.on_rb_drag_data_received)
# We should probably only accept drag data when we have successfully sent the key.
# Now we're unconditionally accepting drags.
self.rb.drag_dest_set(Gtk.DestDefaults.ALL, [], DRAG_ACTION)
self.rb.drag_dest_set_target_list(None)
self.rb.drag_dest_add_text_targets()
self.rb.drag_dest_add_uri_targets()
self.rb_import_okay = builder.get_object('rb_infobar_import_okay')
self.rb_button_ib_return_signature = builder.get_object('rb_return_signature')
self.rb_import_error = builder.get_object('rb_infobar_import_error')
assert self.rb_import_error
self.button_rb_import_error = builder.get_object('rb_import_error_details_button')
def on_drag_data_received(self, widget, drag_context, x, y, data, info, time):
if self.notify is not None:
log.debug("We are trying to send a key, no imports at this stage")
return
try:
self.decrypt_and_import_certifications(data)
except errors.GPGMEError as e:
self.signature_import_error(e)
else:
self.signature_imported(decrypted_certifications, sender)
def on_rb_drag_data_received(self, widget, drag_context, x, y, data, info, time):
try:
decrypted_certifications = self.decrypt_and_import_certifications(data)
except errors.GPGMEError as e:
self.rb_signature_import_error(e)
else:
self.rb_signature_imported(decrypted_certifications)
def decrypt_and_import_certifications(self, data):
filename = data.get_text()
# If we don't have a filename it means that the user maybe dropped
# an attachment or an entire email.
if not filename:
filename = data.get_data().decode("utf-8")
filename = unquote(filename)
filename = filename[7:].strip('\r\n\x00') # remove file://, \r\n and NULL
log.info("Received file: %s", filename)
signatures = get_attachments(filename)
if not signatures:
with open(filename, "rb") as si:
signatures.append(si.read())
# We currently do not know how to obtain the sender of the email.
# We could parse the email for a From: header.
# But if only the attachment is dropped, we don't have that information.
# We could probably find the issuer in the hashed area of the certification packet,
# and then try to find that key in our keyring.
sender = None
decrypted_certifications = []
try:
for signature in signatures:
decrypted_certification = gpgmeh.decrypt_signature(signature)
import_result = gpgmeh.import_signature(decrypted_certification)
decrypted_certifications.append(decrypted_certification)
except errors.GPGMEError as e:
log.exception("Could not import signatures")
raise
else:
return decrypted_certifications
@inlineCallbacks
def on_key_activated(self, widget, key):
# Deactivate any old connection attempt
self._deactivate_timer()
self.deactivate()
self.klw.ib_internet.hide()
self.key = key
log.info("Activated key %r", key)
####
# Start network services
self.klw.code_spinner.start()
if self.internet_option:
#self.kpw.internet_spinner.start()
# After 10 seconds without a wormhole code we display an info bar
timer = 10
self.notify = reactor.callLater(timer, self.slow_connection)
self.offer = Offer(self.key)
try:
info = yield self.offer.allocate_code(worm=True)
except ServerConnectionError:
# We are without a working Internet connection so we stop the previously
# activated Avahi server and we display an infobar
self._deactivate_timer()
self.offer.stop_avahi()
self.offer = None
self.klw.code_spinner.stop()
self.no_connection()
return
code, discovery_data = info
self.create_keypresent(code, discovery_data)
defers = self.offer.start()
for de in defers:
# TODO handle errors here?
de.addCallback(self._received)
else:
self.offer = Offer(self.key)
info = yield self.offer.allocate_code(worm=False)
code, discovery_data = info
self.create_keypresent(code, discovery_data)
defers = self.offer.start()
for de in defers:
de.addCallback(self._received)
def _received(self, start_data):
success, message = start_data
if message and type(message) == LonelyError:
# This only means that we closed wormhole before a transfer
pass
elif message and message == "Back":
# Simply the return of the back button, no errors here
pass
elif message and type(message) == ServerConnectionError:
self._deactivate_timer()
self.deactivate()
self.klw.code_spinner.stop()
self.no_connection()
else:
self.show_result(success, message)
def on_ib_closed(self, widget, data):
if Gtk.ResponseType.CLOSE == data:
widget.hide()
def slow_connection(self):
self.klw.label_ib_internet.set_label(_("Still trying to get a connection to the Internet. "
"It appears to be slow or unavailable."))
self.klw.ib_internet.show()
log.info("Slow Internet connection")
def no_connection(self):
self.klw.label_ib_internet.set_label(_("There isn't an Internet connection!"))
self.klw.ib_internet.show()
log.info("No Internet connection")
def signature_imported(self, decrypted_certifications, sender=None):
"""When we have received, decrypted, and imported a certification,
this function will show the infobar and offer to return the certification
to the sender.
We appreciate that the sender, i.e. an email address, is not always known,
simply because that information is currently not included in the certification
the attestor sends.
"""
self.klw.ib_import_okay.show()
if not sender:
# We do not know where to return the certification to, so we hide the button
self.klw.button_ib_import_okay.hide()
else:
def return_certification(button):
log.info("Return certification to %s (%d)",
sender, len(decrypted_certifications))
self.klw.button_ib_import_okay.connect('clicked', return_certification)
self.klw.button_ib_import_okay.show()
log.info("Signature imported")
def signature_import_error(self, e):
self.klw.ib_import_error.show()
# We hide the error details button, because we don't have that functionality just yet
self.klw.button_ib_import_error.hide()
log.info("Signature import error")
def rb_signature_imported(self, decrypted_certifications):
self.rb_import_okay.show()
sender = None
if not sender:
# We do not know where to return the certification to, so we hide the button
self.rb_button_ib_return_signature.hide()
else:
def return_certification(button):
log.info("Return certification to %s (%d)",
sender, len(decrypted_certifications))
self.rb_button_ib_return_signature.connect('clicked', return_certification)
self.rb_button_ib_return_signature.show()
log.info("Signature imported")
def rb_signature_import_error(self, e):
self.rb_import_error.show()
# We hide the error details button, because we don't have that functionality just yet
self.button_rb_import_error.hide()
log.info("Signature import error")
def create_keypresent(self, discovery_code, discovery_data):
self._deactivate_timer()
log.info("Use this for discovering the other key: %r", discovery_data)
####
# Create widget for key
self.kpw = KeyPresentWidget(self.key, discovery_code, discovery_data)
####
# Show widget for key
self.stack.add(self.kpw)
self.stack_saved_visible_child = self.stack.get_visible_child()
self.stack.set_visible_child(self.kpw)
log.debug('Setting kpw: %r', self.kpw)
self.klw.ib_internet.hide()
self.klw.code_spinner.stop()
def show_result(self, success, message):
self._deactivate_offer()
self.stack.add(self.rb)
self.stack.remove(self.kpw)
self.kpw = None
if success:
self.result_label.hide()
self.success_label.show()
self.password_error_label.hide()
self.stack.set_visible_child(self.rb)
else:
if type(message) == WrongPasswordError:
self.success_label.hide()
self.result_label.hide()
self.password_error_label.show()
else:
self.success_label.hide()
self.password_error_label.hide()
self.result_label.show()
self.result_label.set_label(_("An unexpected error occurred:\n%s" % message))
self.stack.set_visible_child(self.rb)
def deactivate(self):
self._deactivate_offer()
####
# Re-set stack to initial position
self.set_saved_child_visible()
if self.kpw:
self.stack.remove(self.kpw)
self.kpw = None
def set_saved_child_visible(self):
if self.stack_saved_visible_child:
self.stack.set_visible_child(self.stack_saved_visible_child)
self.stack_saved_visible_child = None
def set_internet_option(self, value):
self._deactivate_timer()
self.deactivate()
self.klw.ib_internet.hide()
self.klw.code_spinner.stop()
self.internet_option = value
def _deactivate_timer(self):
if self.notify and not self.notify.called:
self.notify.cancel()
self.notify = None
def _deactivate_offer(self):
# Stop network services
if self.offer:
self.offer.stop()
self.offer = None
log.debug("Stopped network services")
class App(Gtk.Application):
def __init__(self, *args, **kwargs):
super(App, self).__init__(*args, **kwargs)
self.connect('activate', self.on_activate)
self.send_app = None
#self.builder = Gtk.Builder.new_from_file('send.ui')
def on_activate(self, data=None):
ui_file_path = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"send.ui")
self.builder = Gtk.Builder.new_from_file(ui_file_path)
window = self.builder.get_object("appwindow")
assert window
window.connect("delete-event", self.on_delete_window)
self.headerbar = self.builder.get_object("headerbar")
hb = self.builder.get_object("headerbutton")
hb.connect("clicked", self.on_header_button_clicked)
self.header_button = hb
self.internet_toggle = self.builder.get_object("internet_toggle")
self.internet_toggle.connect("toggled", self.on_toggle_clicked)
self.send_app = SendApp(builder=self.builder)
ss = self.send_app.stack
ss.connect('notify::visible-child', self.on_send_stack_switch)
ss.connect('map', self.on_send_stack_mapped)
self.send_stack = ss
window.show_all()
self.add_window(window)
@staticmethod
def on_delete_window(*args):
reactor.callFromThread(reactor.stop)
def on_toggle_clicked(self, toggle):
log.info("Internet toggled to: %s", toggle.get_active())
self.send_app.set_internet_option(toggle.get_active())
def on_send_stack_switch(self, stack, *args):
log.debug("Switched Send Stack! %r", args)
current = self.send_app.stack.get_visible_child()
if current == self.send_app.klw:
log.debug("Key list page now visible")
self.on_keylist_mapped(self.send_app.klw)
elif current == self.send_app.kpw:
log.debug("Key present page now visible")
self.on_keypresent_mapped(self.send_app.kpw)
elif current == self.send_app.rb:
log.debug("Result page now visible")
self.on_resultbox_mapped(self.send_app.rb)
else:
log.error("An unexpected page is now visible: %r", current)
def on_resultbox_mapped(self, rb):
log.debug("Resultbox becomes visible!")
self.header_button.set_sensitive(True)
self.header_button.set_image(
Gtk.Image.new_from_icon_name("go-previous",
Gtk.IconSize.BUTTON))
self.internet_toggle.hide()
def on_keylist_mapped(self, keylistwidget):
log.debug("Keylist becomes visible!")
self.header_button.set_image(
Gtk.Image.new_from_icon_name("view-refresh",
Gtk.IconSize.BUTTON))
# We don't support refreshing for now.
self.header_button.set_sensitive(False)
self.internet_toggle.show()
def on_send_stack_mapped(self, stack):
log.debug("send stack becomes visible!")
# Adjust the top bar buttons
self.on_send_stack_switch(stack)
def on_keypresent_mapped(self, kpw):
log.debug("keypresent becomes visible!")
self.header_button.set_sensitive(True)
self.header_button.set_image(
Gtk.Image.new_from_icon_name("go-previous",
Gtk.IconSize.BUTTON))
self.internet_toggle.hide()
def on_send_header_button_clicked(self, button, *args):
# Here we assume that there is only two places where
# we could have possibly pressed this button, i.e.
# from the keypresentwidget or the result page
log.debug("Send Headerbutton %r clicked! %r", button, args)
current = self.send_app.stack.get_visible_child()
klw = self.send_app.klw
kpw = self.send_app.kpw
# If we are in the keypresentwidget
if current == kpw:
self.send_stack.set_visible_child(klw)
self.send_app.deactivate()
# Else we are in the result page
else:
self.send_stack.remove(current)
self.send_app.set_saved_child_visible()
self.send_app.on_key_activated(None, self.send_app.key)
def on_header_button_clicked(self, button, *args):
log.debug("Headerbutton %r clicked! %r", button, args)
return self.on_send_header_button_clicked(button, *args)
if __name__ == "__main__":
logging.basicConfig(level=logging.DEBUG)
app = App()
try:
GLib.unix_signal_add_full(GLib.PRIORITY_HIGH, signal.SIGINT,
lambda *args: reactor.callFromThread(reactor.stop), None)
except AttributeError:
pass
reactor.registerGApplication(app)
reactor.run()
|