sign reply message even if not encrypting.
[edward.git] / edward
1 #! /usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 """*********************************************************************
4 * Edward is free software: you can redistribute it and/or modify *
5 * it under the terms of the GNU Affero Public License as published by *
6 * the Free Software Foundation, either version 3 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * Edward is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU Affero Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Affero Public License *
15 * along with Edward. If not, see <http://www.gnu.org/licenses/>. *
16 * *
17 * Copyright (C) 2014-2015 Andrew Engelbrecht (AGPLv3+) *
18 * Copyright (C) 2014 Josh Drake (AGPLv3+) *
19 * Copyright (C) 2014 Lisa Marie Maginnis (AGPLv3+) *
20 * Copyright (C) 2009-2015 Tails developers <tails@boum.org> ( GPLv3+) *
21 * Copyright (C) 2009 W. Trevor King <wking@drexel.edu> ( GPLv2+) *
22 * *
23 * Special thanks to Josh Drake for writing the original edward bot! :) *
24 * *
25 ************************************************************************
26
27 Code sourced from these projects:
28
29 * http://agpl.fsf.org/emailselfdefense.fsf.org/edward/CURRENT/edward.tar.gz
30 * https://git-tails.immerda.ch/whisperback/tree/whisperBack/encryption.py?h=feature/python3
31 * http://www.physics.drexel.edu/~wking/code/python/send_pgp_mime
32 """
33
34 import sys
35 import gpgme
36 import re
37 import io
38 import os
39 import importlib
40
41 import email.parser
42 import email.message
43 import email.encoders
44
45 from email.mime.multipart import MIMEMultipart
46 from email.mime.application import MIMEApplication
47 from email.mime.nonmultipart import MIMENonMultipart
48
49 import edward_config
50
51 langs = ["de", "el", "en", "fr", "ja", "pt-br", "ro", "ru", "tr"]
52
53 """This list contains the abbreviated names of reply languages available to
54 edward."""
55
56
57 match_types = [('clearsign',
58 '-----BEGIN PGP SIGNED MESSAGE-----.*?-----BEGIN PGP SIGNATURE-----.*?-----END PGP SIGNATURE-----'),
59 ('message',
60 '-----BEGIN PGP MESSAGE-----.*?-----END PGP MESSAGE-----'),
61 ('pubkey',
62 '-----BEGIN PGP PUBLIC KEY BLOCK-----.*?-----END PGP PUBLIC KEY BLOCK-----'),
63 ('detachedsig',
64 '-----BEGIN PGP SIGNATURE-----.*?-----END PGP SIGNATURE-----')]
65
66 """This list of tuples matches query names with re.search() queries used
67 to find GPG data for edward to process."""
68
69
70 class EddyMsg (object):
71 """
72 The EddyMsg class represents relevant parts of a mime message.
73
74 The represented message can be single-part or multi-part.
75
76 'multipart' is set to True if there are multiple mime parts.
77
78 'subparts' points to a list of mime sub-parts if it is a multi-part
79 message. Otherwise it points to an empty list.
80
81 'payload_bytes' contains the raw mime-decoded bytes that haven't been
82 encoded into a character set.
83
84 'payload_pieces' is a list of objects containing strings that when strung
85 together form the fully-decoded string representation of the mime part.
86
87 The 'charset' describes the character set of payload_bytes.
88
89 The 'filename', 'content_type' and 'description_list' come from the mime
90 part parameters.
91 """
92
93 multipart = False
94 subparts = []
95
96 payload_bytes = None
97 payload_pieces = []
98
99 charset = None
100 filename = None
101 content_type = None
102 description_list = None
103
104
105 class PayloadPiece (object):
106 """
107 PayloadPiece represents a complte or sub-section of a mime part.
108
109 Instances of this class are often strung together within one or more arrays
110 pointed to by each instance of the EddyMsg class.
111
112 'piece_type' refers to a string whose value describes the content of
113 'string'. Examples include "pubkey", for public keys, and "message", for
114 encrypted data (or armored signatures until they are known to be such.) The
115 names derive from the header and footer of each of these ascii-encoded gpg
116 blocks.
117
118 'string' contains some string of text, such as non-GPG text, an encrypted
119 block of text, a signature, or a public key.
120
121 'gpg_data' points to any instances of GPGData that have been created based
122 on the contents of 'string'.
123 """
124
125 piece_type = None
126 string = None
127 gpg_data = None
128
129
130 class GPGData (object):
131 """
132 GPGData holds info from decryption, sig. verification, and/or pub. keys.
133
134 Instances of this class contain decrypted information, signature
135 fingerprints and/or fingerprints of processed and imported public keys.
136
137 'decrypted' is set to True if 'plainobj' was created from encrypted data.
138
139 'plainobj' points to any decrypted, or signed part of, a GPG signature. It
140 is intended to be an instance of the EddyMsg class.
141
142 'sigs' is a list of fingerprints of keys used to sign the data in plainobj.
143
144 'keys' is a list of fingerprints of keys obtained in public key blocks.
145 """
146
147 decrypted = False
148
149 plainobj = None
150 sigs = []
151 keys = []
152
153
154 class ReplyInfo (object):
155 """
156 ReplyInfo contains details that edward uses in generating its reply.
157
158 Instances of this class contain information about whether a message was
159 successfully encrypted or signed, and whether a public key was attached, or
160 retrievable, from the local GPG store. It stores the fingerprints of
161 potential encryption key candidates and the message (if any at all) to
162 quote in edward's reply.
163
164 'replies' points one of the dictionaries of translated replies.
165
166 'target_key' refers to the fingerprint of a key used to sign encrypted
167 data. This is the preferred key, if it is set, and if is available.
168
169 'fallback_target_key' referst to the fingerprint of a key used to sign
170 unencrypted data; alternatively it may be a public key attached to the
171 message.
172
173 'msg_to_quote' refers to the part of a message which edward should quote in
174 his reply. This should remain as None if there was no encrypted and singed
175 part. This is to avoid making edward a service for decrypting other
176 people's messages to edward.
177
178 'success_decrypt' is set to True if edward could decrypt part of the
179 message.
180
181 'failed_decrypt' is set to True if edward failed to decrypt part of the
182 message.
183
184 'publick_key_received' is set to True if edward successfully imported a
185 public key.
186
187 'no_public_key' is set to True if edward doesn't have a key to encrypt to
188 when replying to the user.
189
190 'sig_success' is set to True if edward could to some extent verify the
191 signature of a signed part of the message to edward.
192
193 'sig_failure' is set to True if edward failed to some extent verify the
194 signature of a signed part of the message to edward.
195 """
196
197 replies = None
198
199 target_key = None
200 fallback_target_key = None
201 msg_to_quote = ""
202
203 success_decrypt = False
204 failed_decrypt = False
205 public_key_received = False
206 no_public_key = False
207 sig_success = False
208 sig_failure = False
209
210
211 def main ():
212
213 """
214 This is the main function for edward, a GPG reply bot.
215
216 Edward responds to GPG-encrypted and signed mail, encrypting and signing
217 the response if the user's public key is, or was, included in the message.
218
219 Args:
220 None
221
222 Returns:
223 Nothing
224
225 Pre:
226 Mime or plaintext email passing in through standard input. Portions of
227 the email may be encrypted. If the To: address contains the text
228 "edward-ja", then the reply will contain a reply written in the
229 Japanese language. There are other languages as well. The default
230 language is English.
231
232 Post:
233 A reply email will be printed to standard output. The contents of the
234 reply email depends on whether the original email was encrypted or not,
235 has or doesn't have a signature, whether a public key used in the
236 original message is provided or locally stored, and the language
237 implied by the To: address in the original email.
238 """
239
240 handle_args()
241
242 gpgme_ctx = get_gpg_context(edward_config.gnupghome,
243 edward_config.sign_with_key)
244
245 email_text = sys.stdin.read()
246 email_struct = parse_pgp_mime(email_text, gpgme_ctx)
247
248 email_to, email_from, email_subject = email_to_from_subject(email_text)
249 lang = import_lang(email_to)
250
251 replyinfo_obj = ReplyInfo()
252 replyinfo_obj.replies = lang.replies
253
254 prepare_for_reply(email_struct, replyinfo_obj)
255 encrypt_to_key = get_key_from_fp(replyinfo_obj, gpgme_ctx)
256 reply_plaintext = write_reply(replyinfo_obj)
257
258 reply_mime = generate_encrypted_mime(reply_plaintext, email_from, \
259 email_subject, encrypt_to_key,
260 gpgme_ctx)
261
262 print(reply_mime)
263
264
265 def get_gpg_context (gnupghome, sign_with_key_fp):
266 """
267 This function returns the GPG context needed for encryption and signing.
268
269 The context is needed by other functions which use GPG functionality.
270
271 Args:
272 gnupghome: The path to "~/.gnupg/" or its alternative.
273 sign_with_key: The fingerprint of the key to sign with
274
275 Returns:
276 A gpgme context to be used for GPG functions.
277
278 Post:
279 the 'armor' flag is set to True and the list of signing keys contains
280 the single specified key
281 """
282
283 os.environ['GNUPGHOME'] = gnupghome
284
285 gpgme_ctx = gpgme.Context()
286 gpgme_ctx.armor = True
287
288 try:
289 sign_with_key = gpgme_ctx.get_key(sign_with_key_fp)
290 except:
291 error("unable to load signing key. is the gnupghome "
292 + "and signing key properly set in the edward_config.py?")
293 exit(1)
294
295 gpgme_ctx.signers = [sign_with_key]
296
297 return gpgme_ctx
298
299
300 def parse_pgp_mime (email_text, gpgme_ctx):
301 """Parses the email for mime payloads and decrypts/verfies signatures.
302
303 This function creates a representation of a mime or plaintext email with
304 the EddyMsg class. It then splits each mime payload into one or more pieces
305 which may be plain text or GPG data. It then decrypts encrypted parts and
306 does some very basic signature verification on those parts.
307
308 Args:
309 email_text: an email message in string format
310 gpgme_ctx: a gpgme context
311
312 Returns:
313 A message as an instance of EddyMsg
314
315 Post:
316 the returned EddyMsg instance has split, decrypted, verified and pubkey
317 imported payloads
318 """
319
320 email_struct = email.parser.Parser().parsestr(email_text)
321
322 eddymsg_obj = parse_mime(email_struct)
323 split_payloads(eddymsg_obj)
324 gpg_on_payloads(eddymsg_obj, gpgme_ctx)
325
326 return eddymsg_obj
327
328
329 def parse_mime(msg_struct):
330 """Translates python's email.parser format into an EddyMsg format
331
332 If the message is multi-part, then a recursive object is created, where
333 each sub-part is also a EddyMsg instance.
334
335 Args:
336 msg_struct: an email parsed with email.parser.Parser(), which can be
337 multi-part
338
339 Returns:
340 an instance of EddyMsg, potentially a recursive one.
341 """
342
343 eddymsg_obj = EddyMsg()
344
345 if msg_struct.is_multipart() == True:
346 payloads = msg_struct.get_payload()
347
348 eddymsg_obj.multipart = True
349 eddymsg_obj.subparts = list(map(parse_mime, payloads))
350
351 else:
352 eddymsg_obj = get_subpart_data(msg_struct)
353
354 return eddymsg_obj
355
356
357 def scan_and_split (payload_piece, match_type, pattern):
358 """This splits the payloads of an EddyMsg object into GPG and text parts.
359
360 An EddyMsg object's payload_pieces starts off as a list containing a single
361 PayloadPiece object. This function returns a list of these objects which
362 have been split into GPG data and regular text, if such splits need to be/
363 can be made.
364
365 Args:
366 payload_piece: a single payload or a split part of a payload
367 match_type: the type of data to try to spit out from the payload piece
368 pattern: the search pattern to be used for finding that type of data
369
370 Returns:
371 a list of objects of the PayloadPiece class, in the order that the
372 string part of payload_piece originally was, broken up according to
373 matches specified by 'pattern'.
374 """
375
376 # don't try to re-split pieces containing gpg data
377 if payload_piece.piece_type != "text":
378 return [payload_piece]
379
380 flags = re.DOTALL | re.MULTILINE
381 matches = re.search("(?P<beginning>.*?)(?P<match>" + pattern +
382 ")(?P<rest>.*)", payload_piece.string, flags=flags)
383
384 if matches == None:
385 pieces = [payload_piece]
386
387 else:
388
389 beginning = PayloadPiece()
390 beginning.string = matches.group('beginning')
391 beginning.piece_type = payload_piece.piece_type
392
393 match = PayloadPiece()
394 match.string = matches.group('match')
395 match.piece_type = match_type
396
397 rest = PayloadPiece()
398 rest.string = matches.group('rest')
399 rest.piece_type = payload_piece.piece_type
400
401 more_pieces = scan_and_split(rest, match_type, pattern)
402 pieces = [beginning, match ] + more_pieces
403
404 return pieces
405
406
407 def get_subpart_data (part):
408 """This function grabs information from a single part mime object.
409
410 It copies needed data from a single part email.parser.Parser() object over
411 to an EddyMsg object.
412
413 Args:
414 part: a non-multi-part mime.parser.Parser() object
415
416 Returns:
417 a single-part EddyMsg() object
418 """
419
420 obj = EddyMsg()
421
422 obj.charset = part.get_content_charset()
423 obj.payload_bytes = part.get_payload(decode=True)
424
425 obj.filename = part.get_filename()
426 obj.content_type = part.get_content_type()
427 obj.description_list = part['content-description']
428
429 # your guess is as good as a-myy-ee-ine...
430 if obj.charset == None:
431 obj.charset = 'utf-8'
432
433 if obj.payload_bytes != None:
434 try:
435 payload = PayloadPiece()
436 payload.string = obj.payload_bytes.decode(obj.charset)
437 payload.piece_type = 'text'
438
439 obj.payload_pieces = [payload]
440 except UnicodeDecodeError:
441 pass
442
443 return obj
444
445
446 def do_to_eddys_pieces (function_to_do, eddymsg_obj, data):
447 """A function which maps another function onto a message's subparts.
448
449 This is a higer-order function which recursively performs a specified
450 function on each subpart of a multi-part message. Each single-part sub-part
451 has the function applied to it. This function also works if the part passed
452 in is single-part.
453
454 Args:
455 function_to_do: function to perform on sub-parts
456 eddymsg_obj: a single part or multi-part EddyMsg object
457 data: a second argument to pass to 'function_to_do'
458
459 Returns:
460 Nothing
461
462 Post:
463 The passed-in EddyMsg object is transformed recursively on its
464 sub-parts according to 'function_to_do'.
465 """
466
467 if eddymsg_obj.multipart == True:
468 for sub in eddymsg_obj.subparts:
469 do_to_eddys_pieces(function_to_do, sub, data)
470 else:
471 function_to_do(eddymsg_obj, data)
472
473
474 def split_payloads (eddymsg_obj):
475 """Splits all (sub-)payloads of a message into GPG data and regular text.
476
477 Recursively performs payload splitting on all sub-parts of an EddyMsg
478 object into the various GPG data types, such as GPG messages, public key
479 blocks and signed text.
480
481 Args:
482 eddymsg_obj: an instance of EddyMsg
483
484 Returns:
485 Nothing
486
487 Pre:
488 The EddyMsg object has payloads that are unsplit (by may be split)..
489
490 Post:
491 The EddyMsg object's payloads are all split into GPG and non-GPG parts.
492 """
493
494 for match_type in match_types:
495 do_to_eddys_pieces(split_payload_pieces, eddymsg_obj, match_type)
496
497
498 def split_payload_pieces (eddymsg_obj, match_type):
499 """A helper function for split_payloads(); works on PayloadPiece objects.
500
501 This function splits up PayloadPiece objects into multipe PayloadPiece
502 objects and replaces the EddyMsg object's previous list of payload pieces
503 with the new split up one.
504
505 Args:
506 eddymsg_obj: a single-part EddyMsg object.
507 match_type: a tuple from the match_types list, which specifies a match
508 name and a match pattern.
509
510 Returns:
511 Nothing
512
513 Pre:
514 The payload piece(s) of an EddyMsg object may be already split or
515 unsplit.
516
517 Post:
518 The EddyMsg object's payload piece(s) are split into a list of pieces
519 if matches of the match_type are found.
520 """
521
522 (match_name, pattern) = match_type
523
524 new_pieces_list = []
525 for piece in eddymsg_obj.payload_pieces:
526 new_pieces_list += scan_and_split(piece, match_name, pattern)
527
528 eddymsg_obj.payload_pieces = new_pieces_list
529
530
531 def gpg_on_payloads (eddymsg_obj, gpgme_ctx, prev_parts=[]):
532 """Performs GPG operations on the GPG parts of the message
533
534 This function decrypts text, verifies signatures, and imports public keys
535 included in an email.
536
537 Args:
538 eddymsg_obj: an EddyMsg object with its payload_pieces split into GPG
539 and non-GPG sections by split_payloads()
540 gpgme_ctx: a gpgme context
541
542 prev_parts: a list of mime parts that occur before the eddymsg_obj
543 part, under the same multi-part mime part. This is used for
544 verifying detached signatures. For the root mime part, this should
545 be an empty list, which is the default value if this paramater is
546 omitted.
547
548 Return:
549 Nothing
550
551 Pre:
552 eddymsg_obj should have its payloads split into gpg and non-gpg pieces.
553
554 Post:
555 Decryption, verification and key imports occur. the gpg_data member of
556 PayloadPiece objects get filled in with GPGData objects.
557 """
558
559 if eddymsg_obj.multipart == True:
560 prev_parts=[]
561 for sub in eddymsg_obj.subparts:
562 gpg_on_payloads (sub, gpgme_ctx, prev_parts)
563 prev_parts += [sub]
564
565 return
566
567 for piece in eddymsg_obj.payload_pieces:
568
569 if piece.piece_type == "text":
570 # don't transform the plaintext.
571 pass
572
573 elif piece.piece_type == "message":
574 (plaintext, sigs) = decrypt_block(piece.string, gpgme_ctx)
575
576 if plaintext:
577 piece.gpg_data = GPGData()
578 piece.gpg_data.decrypted = True
579 piece.gpg_data.sigs = sigs
580 # recurse!
581 piece.gpg_data.plainobj = parse_pgp_mime(plaintext, gpgme_ctx)
582 continue
583
584 # if not encrypted, check to see if this is an armored signature.
585 (plaintext, sigs) = verify_sig_message(piece.string, gpgme_ctx)
586
587 if plaintext:
588 piece.piece_type = "signature"
589 piece.gpg_data = GPGData()
590 piece.gpg_data.sigs = sigs
591 # recurse!
592 piece.gpg_data.plainobj = parse_pgp_mime(plaintext, gpgme_ctx)
593
594 # FIXME: handle pubkeys first, so that signatures can be validated
595 # on freshly imported keys
596 elif piece.piece_type == "pubkey":
597 key_fps = add_gpg_key(piece.string, gpgme_ctx)
598
599 if key_fps != []:
600 piece.gpg_data = GPGData()
601 piece.gpg_data.keys = key_fps
602
603 elif piece.piece_type == "clearsign":
604 (plaintext, sig_fps) = verify_clear_signature(piece.string, gpgme_ctx)
605
606 if sig_fps != []:
607 piece.gpg_data = GPGData()
608 piece.gpg_data.sigs = sig_fps
609 piece.gpg_data.plainobj = parse_pgp_mime(plaintext, gpgme_ctx)
610
611 elif piece.piece_type == "detachedsig":
612 for prev in prev_parts:
613 payload_bytes = prev.payload_bytes
614 sig_fps = verify_detached_signature(piece.string, payload_bytes, gpgme_ctx)
615
616 if sig_fps != []:
617 piece.gpg_data = GPGData()
618 piece.gpg_data.sigs = sig_fps
619 piece.gpg_data.plainobj = prev
620 break
621
622 else:
623 pass
624
625
626 def prepare_for_reply (eddymsg_obj, replyinfo_obj):
627 """Updates replyinfo_obj with info on the message's GPG success/failures
628
629 This function marks replyinfo_obj with information about whether encrypted
630 text in eddymsg_obj was successfully decrypted, signatures were verified
631 and whether a public key was found or not.
632
633 Args:
634 eddymsg_obj: a message in the EddyMsg format
635 replyinfo_obj: an instance of ReplyInfo
636
637 Returns:
638 Nothing
639
640 Pre:
641 eddymsg_obj has had its gpg_data created by gpg_on_payloads
642
643 Post:
644 replyinfo_obj has been updated with info about decryption/sig
645 verififcation status, etc. However the desired key isn't imported until
646 later, so the success or failure of that updates the values set here.
647 """
648
649 do_to_eddys_pieces(prepare_for_reply_pieces, eddymsg_obj, replyinfo_obj)
650
651 def prepare_for_reply_pieces (eddymsg_obj, replyinfo_obj):
652 """A helper function for prepare_for_reply
653
654 It updates replyinfo_obj with GPG success/failure information, when
655 supplied a single-part EddyMsg object.
656
657 Args:
658 eddymsg_obj: a single-part message in the EddyMsg format
659 replyinfo_obj: an object which holds information about the message's
660 GPG status
661
662 Returns:
663 Nothing
664
665 Pre:
666 eddymsg_obj is a single-part message. (it may be a part of a multi-part
667 message.) It has had its gpg_data created by gpg_on_payloads if it has
668 gpg data.
669
670 Post:
671 replyinfo_obj has been updated with gpg success/failure information
672 """
673
674 for piece in eddymsg_obj.payload_pieces:
675 if piece.piece_type == "text":
676 # don't quote the plaintext part.
677 pass
678
679 elif piece.piece_type == "message":
680 prepare_for_reply_message(piece, replyinfo_obj)
681
682 elif piece.piece_type == "pubkey":
683 prepare_for_reply_pubkey(piece, replyinfo_obj)
684
685 elif (piece.piece_type == "clearsign") \
686 or (piece.piece_type == "detachedsig") \
687 or (piece.piece_type == "signature"):
688 prepare_for_reply_sig(piece, replyinfo_obj)
689
690
691 def prepare_for_reply_message (piece, replyinfo_obj):
692 """Helper function for prepare_for_reply()
693
694 This function is called when the piece_type of a payload piece is
695 "message", or GPG Message block. This should be encrypted text. If the
696 encryted block is signed, a sig will be attached to .target_key unless
697 there is already one there.
698
699 Args:
700 piece: a PayloadPiece object.
701 replyinfo_obj: object which gets updated with decryption status, etc.
702
703
704 Returns:
705 Nothing
706
707 Pre:
708 the piece.payload_piece value should be "message".
709
710 Post:
711 replyinfo_obj gets updated with decryption status, signing status and a
712 potential signing key.
713 """
714
715 if piece.gpg_data == None:
716 replyinfo_obj.failed_decrypt = True
717 return
718
719 replyinfo_obj.success_decrypt = True
720
721 # we already have a key (and a message)
722 if replyinfo_obj.target_key != None:
723 return
724
725 if piece.gpg_data.sigs != []:
726 replyinfo_obj.target_key = piece.gpg_data.sigs[0]
727 get_signed_part = False
728 else:
729 # only include a signed message in the reply.
730 get_signed_part = True
731
732 replyinfo_obj.msg_to_quote = flatten_decrypted_payloads(piece.gpg_data.plainobj, get_signed_part)
733
734 # to catch public keys in encrypted blocks
735 prepare_for_reply(piece.gpg_data.plainobj, replyinfo_obj)
736
737
738 def prepare_for_reply_pubkey (piece, replyinfo_obj):
739 """Helper function for prepare_for_reply(). Marks pubkey import status.
740
741 Marks replyinfo_obj with pub key import status.
742
743 Args:
744 piece: a PayloadPiece object
745 replyinfo_obj: a ReplyInfo object
746
747 Pre:
748 piece.piece_type should be set to "pubkey".
749
750 Post:
751 replyinfo_obj has its fields updated.
752 """
753
754 if piece.gpg_data == None or piece.gpg_data.keys == []:
755 replyinfo_obj.no_public_key = True
756 else:
757 replyinfo_obj.public_key_received = True
758
759 if replyinfo_obj.fallback_target_key == None:
760 replyinfo_obj.fallback_target_key = piece.gpg_data.keys[0]
761
762
763 def prepare_for_reply_sig (piece, replyinfo_obj):
764 """Helper function for prepare_for_reply(). Marks sig verification status.
765
766 Marks replyinfo_obj with signature verification status.
767
768 Args:
769 piece: a PayloadPiece object
770 replyinfo_obj: a ReplyInfo object
771
772 Pre:
773 piece.piece_type should be set to "clearsign", "signature", or
774 "detachedsig".
775
776 Post:
777 replyinfo_obj has its fields updated.
778 """
779
780 if piece.gpg_data == None or piece.gpg_data.sigs == []:
781 replyinfo_obj.sig_failure = True
782 else:
783 replyinfo_obj.sig_success = True
784
785 if replyinfo_obj.fallback_target_key == None:
786 replyinfo_obj.fallback_target_key = piece.gpg_data.sigs[0]
787
788
789 def flatten_decrypted_payloads (eddymsg_obj, get_signed_part):
790 """Returns a string representation of a signed, encrypted part.
791
792 Returns the string representation of the first signed/encrypted or signed
793 then encrypted block of text. (Signature inside of Encryption)
794
795 Args:
796 eddymsg_obj: the message in EddyMsg format created by decrypting GPG
797 text
798 get_signed_part: True if we should only include text that contains a
799 further signature. If False, then include plain text.
800
801 Returns:
802 A string representation of encrypted and signed text.
803
804 Pre:
805 The EddyMsg instance passed in should be a piece.gpg_data.plainobj
806 which represents decrypted text. It may or may not be signed on that
807 level.
808 """
809
810 flat_string = ""
811
812 if eddymsg_obj == None:
813 return ""
814
815 # recurse on multi-part mime
816 if eddymsg_obj.multipart == True:
817 for sub in eddymsg_obj.subparts:
818 flat_string += flatten_decrypted_payloads (sub, get_signed_part)
819
820 return flat_string
821
822 for piece in eddymsg_obj.payload_pieces:
823 if (get_signed_part):
824 if ((piece.piece_type == "clearsign") \
825 or (piece.piece_type == "detachedsig") \
826 or (piece.piece_type == "signature")) \
827 and (piece.gpg_data != None):
828 # FIXME: the key used to sign this message needs to be the one that is used for the encrypted reply.
829 flat_string += flatten_decrypted_payloads (piece.gpg_data.plainobj, False)
830 break
831 else:
832 if piece.piece_type == "text":
833 flat_string += piece.string
834
835 return flat_string
836
837
838 def get_key_from_fp (replyinfo_obj, gpgme_ctx):
839 """Obtains a public key object from a key fingerprint
840
841 If the .target_key is not set, then we use .fallback_target_key.
842
843 Args:
844 replyinfo_obj: ReplyInfo instance
845 gpgme_ctx: the gpgme context
846
847 Return:
848 The key object of the key of either the target_key or the fallback one
849 if .target_key is not set. If the key cannot be loaded, then return
850 None.
851
852 Pre:
853 Loading a key requires that we have the public key imported. This
854 requires that they email contains the pub key block, or that it was
855 previously sent to edward.
856
857 Post:
858 If the key cannot be loaded, then the replyinfo_obj is marked for
859 having no public key available.
860 """
861
862 if replyinfo_obj.target_key == None:
863 replyinfo_obj.target_key = replyinfo_obj.fallback_target_key
864
865 if replyinfo_obj.target_key != None:
866 try:
867 encrypt_to_key = gpgme_ctx.get_key(replyinfo_obj.target_key)
868 return encrypt_to_key
869
870 except:
871 pass
872
873 # no available key to use
874 replyinfo_obj.target_key = None
875 replyinfo_obj.fallback_target_key = None
876
877 replyinfo_obj.no_public_key = True
878 replyinfo_obj.public_key_received = False
879
880 return None
881
882
883 def write_reply (replyinfo_obj):
884 """Write the reply email body about the GPG successes/failures.
885
886 The reply is about whether decryption, sig verification and key
887 import/loading was successful or failed. If text was successfully decrypted
888 and verified, then the first instance of such text will be included in
889 quoted form.
890
891 Args:
892 replyinfo_obj: contains details of GPG processing status
893
894 Returns:
895 the plaintext message to be sent to the user
896
897 Pre:
898 replyinfo_obj should be populated with info about GPG processing status.
899 """
900
901 reply_plain = ""
902
903 if replyinfo_obj.success_decrypt == True:
904 reply_plain += replyinfo_obj.replies['success_decrypt']
905
906 if replyinfo_obj.no_public_key == False:
907 quoted_text = email_quote_text(replyinfo_obj.msg_to_quote)
908 reply_plain += quoted_text
909
910 elif replyinfo_obj.failed_decrypt == True:
911 reply_plain += replyinfo_obj.replies['failed_decrypt']
912
913
914 if replyinfo_obj.sig_success == True:
915 reply_plain += "\n\n"
916 reply_plain += replyinfo_obj.replies['sig_success']
917
918 elif replyinfo_obj.sig_failure == True:
919 reply_plain += "\n\n"
920 reply_plain += replyinfo_obj.replies['sig_failure']
921
922
923 if replyinfo_obj.public_key_received == True:
924 reply_plain += "\n\n"
925 reply_plain += replyinfo_obj.replies['public_key_received']
926
927 elif replyinfo_obj.no_public_key == True:
928 reply_plain += "\n\n"
929 reply_plain += replyinfo_obj.replies['no_public_key']
930
931
932 reply_plain += "\n\n"
933 reply_plain += replyinfo_obj.replies['signature']
934
935 return reply_plain
936
937
938 def add_gpg_key (key_block, gpgme_ctx):
939 """Adds a GPG pubkey to the local keystore
940
941 This adds keys received through email into the key store so they can be
942 used later.
943
944 Args:
945 key_block: the string form of the ascii-armored public key block
946 gpgme_ctx: the gpgme context
947
948 Returns:
949 the fingerprint(s) of the imported key(s)
950 """
951
952 fp = io.BytesIO(key_block.encode('ascii'))
953
954 result = gpgme_ctx.import_(fp)
955 imports = result.imports
956
957 key_fingerprints = []
958
959 if imports != []:
960 for import_ in imports:
961 fingerprint = import_[0]
962 key_fingerprints += [fingerprint]
963
964 debug("added gpg key: " + fingerprint)
965
966 return key_fingerprints
967
968
969 def verify_sig_message (msg_block, gpgme_ctx):
970 """Verifies the signature of a signed, ascii-armored block of text.
971
972 It encodes the string into ascii, since binary GPG files are currently
973 unsupported, and alternative, the ascii-armored format is encodable into
974 ascii.
975
976 Args:
977 msg_block: a GPG Message block in string form. It may be encrypted or
978 not. If it is encrypted, it will return empty results.
979 gpgme_ctx: the gpgme context
980
981 Returns:
982 A tuple of the plaintext of the signed part and the list of
983 fingerprints of keys signing the data. If verification failed, perhaps
984 because the message was also encrypted, then empty results are
985 returned.
986 """
987
988 block_b = io.BytesIO(msg_block.encode('ascii'))
989 plain_b = io.BytesIO()
990
991 try:
992 sigs = gpgme_ctx.verify(block_b, None, plain_b)
993 except:
994 return ("",[])
995
996 plaintext = plain_b.getvalue().decode('utf-8')
997
998 fingerprints = []
999 for sig in sigs:
1000 fingerprints += [sig.fpr]
1001 return (plaintext, fingerprints)
1002
1003
1004 def verify_clear_signature (sig_block, gpgme_ctx):
1005 """Verifies the signature of a clear signature.
1006
1007 It first encodes the string into utf-8, but this will need to be fixed in
1008 order to support other character encodings.
1009
1010 Args:
1011 sig_block: a string of clear-signed text.
1012 gpgme_ctx: the gpgme context
1013
1014 Returns:
1015 A tuple of the plaintext of the signed part and the list of
1016 fingerprints of keys signing the data. If verification failed, then
1017 empty results are returned.
1018 """
1019
1020 # FIXME: this might require the un-decoded bytes
1021 # or the correct re-encoding with the carset of the mime part.
1022 msg_fp = io.BytesIO(sig_block.encode('utf-8'))
1023 ptxt_fp = io.BytesIO()
1024
1025 result = gpgme_ctx.verify(msg_fp, None, ptxt_fp)
1026
1027 # FIXME: this might require using the charset of the mime part.
1028 plaintext = ptxt_fp.getvalue().decode('utf-8')
1029
1030 sig_fingerprints = []
1031 for res_ in result:
1032 sig_fingerprints += [res_.fpr]
1033
1034 return plaintext, sig_fingerprints
1035
1036
1037 def verify_detached_signature (detached_sig, plaintext_bytes, gpgme_ctx):
1038 """Verifies the signature of a detached signature.
1039
1040 This requires the signature part and the signed part as separate arguments.
1041
1042 Args:
1043 detached_sig: the signature part of the detached signature
1044 plaintext_bytes: the byte form of the message being signed.
1045 gpgme_ctx: the gpgme context
1046
1047 Returns:
1048 A list of signing fingerprints if the signature verification was
1049 sucessful. Otherwise, an empty list is returned.
1050 """
1051
1052 detached_sig_fp = io.BytesIO(detached_sig.encode('ascii'))
1053 plaintext_fp = io.BytesIO(plaintext_bytes)
1054 ptxt_fp = io.BytesIO()
1055
1056 result = gpgme_ctx.verify(detached_sig_fp, plaintext_fp, None)
1057
1058 sig_fingerprints = []
1059 for res_ in result:
1060 sig_fingerprints += [res_.fpr]
1061
1062 return sig_fingerprints
1063
1064
1065 def decrypt_block (msg_block, gpgme_ctx):
1066 """Decrypts a block of GPG text, and verifies any included sigatures.
1067
1068 Some encypted messages have embeded signatures, so those are verified too.
1069
1070 Args:
1071 msg_block: the encrypted(/signed) text
1072 gpgme_ctx: the gpgme context
1073
1074 Returns:
1075 A tuple of plaintext and signatures, if the decryption and signature
1076 verification were successful, respectively.
1077 """
1078
1079 block_b = io.BytesIO(msg_block.encode('ascii'))
1080 plain_b = io.BytesIO()
1081
1082 try:
1083 sigs = gpgme_ctx.decrypt_verify(block_b, plain_b)
1084 except:
1085 return ("",[])
1086
1087 plaintext = plain_b.getvalue().decode('utf-8')
1088
1089 fingerprints = []
1090 for sig in sigs:
1091 fingerprints += [sig.fpr]
1092 return (plaintext, fingerprints)
1093
1094
1095 def email_to_from_subject (email_text):
1096 """Returns the values of the email's To:, From: and Subject: fields
1097
1098 Returns this information from an email.
1099
1100 Args:
1101 email_text: the string form of the email
1102
1103 Returns:
1104 the email To:, From:, and Subject: fields as strings
1105 """
1106
1107 email_struct = email.parser.Parser().parsestr(email_text)
1108
1109 email_to = email_struct['To']
1110 email_from = email_struct['From']
1111 email_subject = email_struct['Subject']
1112
1113 return email_to, email_from, email_subject
1114
1115
1116 def import_lang(email_to):
1117 """Imports appropriate language file for basic i18n support
1118
1119 The language imported depends on the To: address of the email received by
1120 edward. an -en ending implies the English language, whereas a -ja ending
1121 implies Japanese. The list of supported languages is listed in the 'langs'
1122 list at the beginning of the program.
1123
1124 Args:
1125 email_to: the string containing the email address that the mail was
1126 sent to.
1127
1128 Returns:
1129 the reference to the imported language module. The only variable in
1130 this file is the 'replies' dictionary.
1131 """
1132
1133 if email_to != None:
1134 for lang in langs:
1135 if "edward-" + lang in email_to:
1136 lang = "lang." + re.sub('-', '_', lang)
1137 language = importlib.import_module(lang)
1138
1139 return language
1140
1141 return importlib.import_module("lang.en")
1142
1143
1144 def generate_encrypted_mime (plaintext, email_from, email_subject, encrypt_to_key,
1145 gpgme_ctx):
1146 """This function creates the mime email reply. It can encrypt the email.
1147
1148 If the encrypt_key is included, then the email is encrypted and signed.
1149 Otherwise it is unencrypted.
1150
1151 Args:
1152 plaintext: the plaintext body of the message to create.
1153 email_from: the email address to reply to
1154 email_subject: the subject to use in reply
1155 encrypt_to_key: the key object to use for encrypting the email. (or
1156 None)
1157 gpgme_ctx: the gpgme context
1158
1159 Returns
1160 A string version of the mime message, possibly encrypted and signed.
1161 """
1162
1163 # quoted printable encoding lets most ascii characters look normal
1164 # before the mime message is decoded.
1165 char_set = email.charset.Charset("utf-8")
1166 char_set.body_encoding = email.charset.QP
1167
1168 # MIMEText doesn't allow setting the text encoding
1169 # so we use MIMENonMultipart.
1170 plaintext_mime = MIMENonMultipart('text', 'plain')
1171 plaintext_mime.set_payload(plaintext, charset=char_set)
1172
1173 if (encrypt_to_key != None):
1174
1175 encrypted_text = encrypt_sign_message(plaintext_mime.as_string(),
1176 encrypt_to_key,
1177 gpgme_ctx)
1178 gpg_payload = encrypted_text
1179
1180 else:
1181 signed_text = sign_message(plaintext_mime.as_string(), gpgme_ctx)
1182 gpg_payload = signed_text
1183
1184 control_mime = MIMEApplication("Version: 1",
1185 _subtype='pgp-encrypted',
1186 _encoder=email.encoders.encode_7or8bit)
1187 control_mime['Content-Description'] = 'PGP/MIME version identification'
1188 control_mime.set_charset('us-ascii')
1189
1190 encoded_mime = MIMEApplication(gpg_payload,
1191 _subtype='octet-stream; name="encrypted.asc"',
1192 _encoder=email.encoders.encode_7or8bit)
1193 encoded_mime['Content-Description'] = 'OpenPGP encrypted message'
1194 encoded_mime['Content-Disposition'] = 'inline; filename="encrypted.asc"'
1195 encoded_mime.set_charset('us-ascii')
1196
1197 message_mime = MIMEMultipart(_subtype="encrypted", protocol="application/pgp-encrypted")
1198 message_mime.attach(control_mime)
1199 message_mime.attach(encoded_mime)
1200 message_mime['Content-Disposition'] = 'inline'
1201
1202
1203 message_mime['To'] = email_from
1204 message_mime['Subject'] = email_subject
1205
1206 reply = message_mime.as_string()
1207
1208 return reply
1209
1210
1211 def email_quote_text (text):
1212 """Quotes input text by inserting "> "s
1213
1214 This is useful for quoting a text for the reply message. It inserts "> "
1215 strings at the beginning of lines.
1216
1217 Args:
1218 text: plain text to quote
1219
1220 Returns:
1221 Quoted text
1222 """
1223
1224 quoted_message = re.sub(r'^', r'> ', text, flags=re.MULTILINE)
1225
1226 return quoted_message
1227
1228
1229 def encrypt_sign_message (plaintext, encrypt_to_key, gpgme_ctx):
1230 """Encrypts and signs plaintext
1231
1232 This encrypts and signs a message.
1233
1234 Args:
1235 plaintext: text to sign and ecrypt
1236 encrypt_to_key: the key object to encrypt to
1237 gpgme_ctx: the gpgme context
1238
1239 Returns:
1240 An encrypted and signed string of text
1241 """
1242
1243 # the plaintext should be mime encoded in an ascii-compatible form
1244 plaintext_bytes = io.BytesIO(plaintext.encode('ascii'))
1245 encrypted_bytes = io.BytesIO()
1246
1247 gpgme_ctx.encrypt_sign([encrypt_to_key], gpgme.ENCRYPT_ALWAYS_TRUST,
1248 plaintext_bytes, encrypted_bytes)
1249
1250 encrypted_txt = encrypted_bytes.getvalue().decode('ascii')
1251 return encrypted_txt
1252
1253
1254 def sign_message (plaintext, gpgme_ctx):
1255 """Signs plaintext
1256
1257 This signs a message.
1258
1259 Args:
1260 plaintext: text to sign
1261 gpgme_ctx: the gpgme context
1262
1263 Returns:
1264 An armored signature as a string of text
1265 """
1266
1267 # the plaintext should be mime encoded in an ascii-compatible form
1268 plaintext_bytes = io.BytesIO(plaintext.encode('ascii'))
1269 signed_bytes = io.BytesIO()
1270
1271 gpgme_ctx.sign(plaintext_bytes, signed_bytes, gpgme.SIG_MODE_NORMAL)
1272
1273 signed_txt = signed_bytes.getvalue().decode('ascii')
1274 return signed_txt
1275
1276
1277 def error (error_msg):
1278 """Write an error message to stdout
1279
1280 The error message includes the program name.
1281
1282 Args:
1283 error_msg: the message to print
1284
1285 Returns:
1286 Nothing
1287
1288 Post:
1289 An error message is printed to stdout
1290 """
1291
1292 sys.stderr.write(progname + ": " + str(error_msg) + "\n")
1293
1294
1295 def debug (debug_msg):
1296 """Writes a debug message to stdout if debug == True
1297
1298 If the debug option is set in edward_config.py, then the passed message
1299 gets printed to stdout.
1300
1301 Args:
1302 debug_msg: the message to print to stdout
1303
1304 Returns:
1305 Nothing
1306
1307 Post:
1308 A debug message is printed to stdout
1309 """
1310
1311 if edward_config.debug == True:
1312 error(debug_msg)
1313
1314
1315 def handle_args ():
1316 """Sets the progname variable and complains about any arguments
1317
1318 If there are any arguments, then edward complains and quits, because input
1319 is read from stdin.
1320
1321 Args:
1322 None
1323
1324 Returns:
1325 None
1326
1327 Post:
1328 Exits with error 1 if there are arguments, otherwise returns to the
1329 calling function, such as main().
1330 """
1331
1332 global progname
1333 progname = sys.argv[0]
1334
1335 if len(sys.argv) > 1:
1336 print(progname + ": error, this program doesn't " \
1337 "need any arguments.", file=sys.stderr)
1338 exit(1)
1339
1340
1341 if __name__ == "__main__":
1342 """Executes main if this file is not loaded interactively"""
1343
1344 main()
1345