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