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