]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-crypto.el
928de0bbd926b31f94604c9146a0eb3cdd9d2018
[notmuch] / emacs / notmuch-crypto.el
1 ;;; notmuch-crypto.el --- functions for handling display of cryptographic metadata.
2 ;;
3 ;; Copyright © Jameson Rollins
4 ;;
5 ;; This file is part of Notmuch.
6 ;;
7 ;; Notmuch is free software: you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11 ;;
12 ;; Notmuch is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Notmuch.  If not, see <https://www.gnu.org/licenses/>.
19 ;;
20 ;; Authors: Jameson Rollins <jrollins@finestructure.net>
21
22 ;;; Code:
23
24 (require 'epg)
25 (require 'notmuch-lib)
26
27 (defcustom notmuch-crypto-process-mime t
28   "Should cryptographic MIME parts be processed?
29
30 If this variable is non-nil signatures in multipart/signed
31 messages will be verified and multipart/encrypted parts will be
32 decrypted.  The result of the crypto operation will be displayed
33 in a specially colored header button at the top of the processed
34 part.  Signed parts will have variously colored headers depending
35 on the success or failure of the verification process and on the
36 validity of user ID of the signer.
37
38 The effect of setting this variable can be seen temporarily by
39 providing a prefix when viewing a signed or encrypted message, or
40 by providing a prefix when reloading the message in notmuch-show
41 mode."
42   :type 'boolean
43   :package-version '(notmuch . "0.25")
44   :group 'notmuch-crypto)
45
46 (defcustom notmuch-crypto-get-keys-asynchronously t
47   "Retrieve gpg keys asynchronously."
48   :type 'boolean
49   :group 'notmuch-crypto)
50
51 (defcustom notmuch-crypto-gpg-program epg-gpg-program
52   "The gpg executable."
53   :type 'string
54   :group 'notmuch-crypto)
55
56 (defface notmuch-crypto-part-header
57   '((((class color)
58       (background dark))
59      (:foreground "LightBlue1"))
60     (((class color)
61       (background light))
62      (:foreground "blue")))
63   "Face used for crypto parts headers."
64   :group 'notmuch-crypto
65   :group 'notmuch-faces)
66
67 (defface notmuch-crypto-signature-good
68   '((t (:background "green" :foreground "black")))
69   "Face used for good signatures."
70   :group 'notmuch-crypto
71   :group 'notmuch-faces)
72
73 (defface notmuch-crypto-signature-good-key
74   '((t (:background "orange" :foreground "black")))
75   "Face used for good signatures."
76   :group 'notmuch-crypto
77   :group 'notmuch-faces)
78
79 (defface notmuch-crypto-signature-bad
80   '((t (:background "red" :foreground "black")))
81   "Face used for bad signatures."
82   :group 'notmuch-crypto
83   :group 'notmuch-faces)
84
85 (defface notmuch-crypto-signature-unknown
86   '((t (:background "red" :foreground "black")))
87   "Face used for signatures of unknown status."
88   :group 'notmuch-crypto
89   :group 'notmuch-faces)
90
91 (defface notmuch-crypto-decryption
92   '((t (:background "purple" :foreground "black")))
93   "Face used for encryption/decryption status messages."
94   :group 'notmuch-crypto
95   :group 'notmuch-faces)
96
97 (define-button-type 'notmuch-crypto-status-button-type
98   'action (lambda (button) (message (button-get button 'help-echo)))
99   'follow-link t
100   'help-echo "Set notmuch-crypto-process-mime to process cryptographic mime parts."
101   :supertype 'notmuch-button-type)
102
103 (defun notmuch-crypto-insert-sigstatus-button (sigstatus from)
104   "Insert a button describing the signature status SIGSTATUS sent
105 by user FROM."
106   (let* ((status (plist-get sigstatus :status))
107          (show-button t)
108          (face 'notmuch-crypto-signature-unknown)
109          (button-action (lambda (button) (message (button-get button 'help-echo))))
110          (keyid (concat "0x" (plist-get sigstatus :keyid)))
111          label help-msg)
112     (cond
113      ((string= status "good")
114       (let ((fingerprint (concat "0x" (plist-get sigstatus :fingerprint)))
115             (userid (plist-get sigstatus :userid)))
116         ;; If userid is present it has full or greater validity.
117         (if userid
118             (setq label (concat "Good signature by: " userid)
119                   face 'notmuch-crypto-signature-good)
120           (setq label (concat "Good signature by key: " fingerprint)
121                 face 'notmuch-crypto-signature-good-key))
122         (setq button-action 'notmuch-crypto-sigstatus-good-callback
123               help-msg (concat "Click to list key ID 0x" fingerprint "."))))
124
125      ((string= status "error")
126       (setq label (concat "Unknown key ID " keyid " or unsupported algorithm")
127             button-action 'notmuch-crypto-sigstatus-error-callback
128             help-msg (concat "Click to retrieve key ID " keyid
129                              " from keyserver.")))
130
131      ((string= status "bad")
132       (setq label (concat "Bad signature (claimed key ID " keyid ")")
133             face 'notmuch-crypto-signature-bad))
134
135      (status
136       (setq label (concat "Unknown signature status: " status)))
137      (t
138       (setq show-button nil)))
139     (when show-button
140       (insert-button
141        (concat "[ " label " ]")
142        :type 'notmuch-crypto-status-button-type
143        'help-echo help-msg
144        'face face
145        'mouse-face face
146        'action button-action
147        :notmuch-sigstatus sigstatus
148        :notmuch-from from)
149       (insert "\n"))))
150
151 (defun notmuch-crypto-sigstatus-good-callback (button)
152   (let* ((id (notmuch-show-get-message-id))
153          (sigstatus (button-get button :notmuch-sigstatus))
154          (fingerprint (concat "0x" (plist-get sigstatus :fingerprint)))
155          (buffer (get-buffer-create "*notmuch-crypto-gpg-out*"))
156          (window (display-buffer buffer)))
157     (with-selected-window window
158       (with-current-buffer buffer
159         (goto-char (point-max))
160         (insert (format "-- Key %s in message %s:\n"
161                         fingerprint id))
162         (call-process notmuch-crypto-gpg-program nil t t "--batch" "--no-tty" "--list-keys" fingerprint))
163       (recenter -1))))
164
165 (declare-function notmuch-show-refresh-view "notmuch-show" (&optional reset-state))
166 (declare-function notmuch-show-get-message-id "notmuch-show" (&optional bare))
167
168 (defun notmuch-crypto--async-key-sentinel (process event)
169   "When the user asks for a GPG key to be retrieved
170 asynchronously, handle completion of that task.
171
172 If the retrieval is successful, the thread where the retrieval
173 was initiated is still displayed and the cursor has not moved,
174 redisplay the thread."
175   (let ((status (process-status process))
176         (exit-status (process-exit-status process))
177         (keyid (process-get process :gpg-key-id)))
178     (when (memq status '(exit signal))
179       (message "Getting the GPG key %s asynchronously...%s."
180                keyid
181                (if (= exit-status 0)
182                    "completed"
183                  "failed"))
184       ;; If the original buffer is still alive and point didn't move
185       ;; (i.e. the user didn't move on or away), refresh the buffer to
186       ;; show the updated signature status.
187       (let ((show-buffer (process-get process :notmuch-show-buffer))
188             (show-point (process-get process :notmuch-show-point)))
189         (when (and (bufferp show-buffer)
190                    (buffer-live-p show-buffer)
191                    (= show-point
192                       (with-current-buffer show-buffer
193                         (point))))
194           (with-current-buffer show-buffer
195             (notmuch-show-refresh-view)))))))
196
197 (defun notmuch-crypto--set-button-label (button label)
198   "Set the text displayed in BUTTON to LABEL."
199   (save-excursion
200     (let ((inhibit-read-only t))
201       ;; This knows rather too much about how we typically format
202       ;; buttons.
203       (goto-char (button-start button))
204       (forward-char 2)
205       (delete-region (point) (- (button-end button) 2))
206       (insert label))))
207
208 (defun notmuch-crypto-sigstatus-error-callback (button)
209   "When signature validation has failed, try to retrieve the
210 corresponding key when the status button is pressed."
211   (let* ((sigstatus (button-get button :notmuch-sigstatus))
212          (keyid (concat "0x" (plist-get sigstatus :keyid)))
213          (buffer (get-buffer-create "*notmuch-crypto-gpg-out*")))
214     (if notmuch-crypto-get-keys-asynchronously
215         (progn
216           (notmuch-crypto--set-button-label
217            button (format "Retrieving key %s asynchronously..." keyid))
218           (with-current-buffer buffer
219             (goto-char (point-max))
220             (insert (format "--- Retrieving key %s:\n" keyid)))
221           (let ((p (make-process :name "notmuch GPG key retrieval"
222                                  :connection-type 'pipe
223                                  :buffer buffer
224                                  :stderr buffer
225                                  :command (list notmuch-crypto-gpg-program "--recv-keys" keyid)
226                                  :sentinel #'notmuch-crypto--async-key-sentinel)))
227             (process-put p :gpg-key-id keyid)
228             (process-put p :notmuch-show-buffer (current-buffer))
229             (process-put p :notmuch-show-point (point))
230             (message "Getting the GPG key %s asynchronously..." keyid)))
231
232       (let ((window (display-buffer buffer)))
233         (with-selected-window window
234           (with-current-buffer buffer
235             (goto-char (point-max))
236             (insert (format "--- Retrieving key %s:\n" keyid))
237             (call-process notmuch-crypto-gpg-program nil t t "--recv-keys" keyid)
238             (insert "\n")
239             (call-process notmuch-crypto-gpg-program nil t t "--list-keys" keyid))
240           (recenter -1))
241         (notmuch-show-refresh-view)))))
242
243 (defun notmuch-crypto-insert-encstatus-button (encstatus)
244   "Insert a button describing the encryption status ENCSTATUS."
245   (insert-button
246    (concat "[ "
247            (let ((status (plist-get encstatus :status)))
248              (cond
249               ((string= status "good")
250                "Decryption successful")
251               ((string= status "bad")
252                "Decryption error")
253               (t
254                (concat "Unknown encryption status"
255                        (if status (concat ": " status))))))
256            " ]")
257    :type 'notmuch-crypto-status-button-type
258    'face 'notmuch-crypto-decryption
259    'mouse-face 'notmuch-crypto-decryption)
260   (insert "\n"))
261
262 ;;
263
264 (provide 'notmuch-crypto)
265
266 ;;; notmuch-crypto.el ends here