2016-04-13 09:58:47 +02:00
|
|
|
;;; notmuch-crypto.el --- functions for handling display of cryptographic metadata.
|
2011-05-26 03:01:19 +02:00
|
|
|
;;
|
|
|
|
;; Copyright © Jameson Rollins
|
|
|
|
;;
|
|
|
|
;; This file is part of Notmuch.
|
|
|
|
;;
|
|
|
|
;; Notmuch is free software: you can redistribute it and/or modify it
|
|
|
|
;; under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; Notmuch is distributed in the hope that it will be useful, but
|
|
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;; General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2016-06-02 18:26:14 +02:00
|
|
|
;; along with Notmuch. If not, see <https://www.gnu.org/licenses/>.
|
2011-05-26 03:01:19 +02:00
|
|
|
;;
|
|
|
|
;; Authors: Jameson Rollins <jrollins@finestructure.net>
|
|
|
|
|
2016-04-13 09:58:47 +02:00
|
|
|
;;; Code:
|
|
|
|
|
2017-03-12 20:26:16 +01:00
|
|
|
(require 'epg)
|
2013-01-07 22:07:20 +01:00
|
|
|
(require 'notmuch-lib)
|
|
|
|
|
2017-07-12 12:48:18 +02:00
|
|
|
(defcustom notmuch-crypto-process-mime t
|
2011-05-26 03:01:19 +02:00
|
|
|
"Should cryptographic MIME parts be processed?
|
|
|
|
|
|
|
|
If this variable is non-nil signatures in multipart/signed
|
|
|
|
messages will be verified and multipart/encrypted parts will be
|
|
|
|
decrypted. The result of the crypto operation will be displayed
|
|
|
|
in a specially colored header button at the top of the processed
|
|
|
|
part. Signed parts will have variously colored headers depending
|
|
|
|
on the success or failure of the verification process and on the
|
|
|
|
validity of user ID of the signer.
|
|
|
|
|
|
|
|
The effect of setting this variable can be seen temporarily by
|
2011-05-31 19:06:00 +02:00
|
|
|
providing a prefix when viewing a signed or encrypted message, or
|
|
|
|
by providing a prefix when reloading the message in notmuch-show
|
|
|
|
mode."
|
2012-01-16 11:38:33 +01:00
|
|
|
:type 'boolean
|
2017-07-12 12:48:18 +02:00
|
|
|
:package-version '(notmuch . "0.25")
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-crypto)
|
2011-05-26 03:01:19 +02:00
|
|
|
|
2019-09-12 03:32:57 +02:00
|
|
|
(defcustom notmuch-crypto-get-keys-asynchronously t
|
|
|
|
"Retrieve gpg keys asynchronously."
|
|
|
|
:type 'boolean
|
|
|
|
:group 'notmuch-crypto)
|
|
|
|
|
2019-09-12 03:32:59 +02:00
|
|
|
(defcustom notmuch-crypto-gpg-program epg-gpg-program
|
|
|
|
"The gpg executable."
|
|
|
|
:type 'string
|
|
|
|
:group 'notmuch-crypto)
|
|
|
|
|
2011-12-13 18:32:10 +01:00
|
|
|
(defface notmuch-crypto-part-header
|
2016-10-29 00:31:42 +02:00
|
|
|
'((((class color)
|
|
|
|
(background dark))
|
|
|
|
(:foreground "LightBlue1"))
|
|
|
|
(((class color)
|
|
|
|
(background light))
|
|
|
|
(:foreground "blue")))
|
2011-12-13 18:32:10 +01:00
|
|
|
"Face used for crypto parts headers."
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-crypto
|
|
|
|
:group 'notmuch-faces)
|
2011-12-13 18:32:10 +01:00
|
|
|
|
2011-03-31 00:31:04 +02:00
|
|
|
(defface notmuch-crypto-signature-good
|
|
|
|
'((t (:background "green" :foreground "black")))
|
|
|
|
"Face used for good signatures."
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-crypto
|
|
|
|
:group 'notmuch-faces)
|
2011-03-31 00:31:04 +02:00
|
|
|
|
|
|
|
(defface notmuch-crypto-signature-good-key
|
|
|
|
'((t (:background "orange" :foreground "black")))
|
|
|
|
"Face used for good signatures."
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-crypto
|
|
|
|
:group 'notmuch-faces)
|
2011-03-31 00:31:04 +02:00
|
|
|
|
|
|
|
(defface notmuch-crypto-signature-bad
|
|
|
|
'((t (:background "red" :foreground "black")))
|
|
|
|
"Face used for bad signatures."
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-crypto
|
|
|
|
:group 'notmuch-faces)
|
2011-03-31 00:31:04 +02:00
|
|
|
|
|
|
|
(defface notmuch-crypto-signature-unknown
|
|
|
|
'((t (:background "red" :foreground "black")))
|
|
|
|
"Face used for signatures of unknown status."
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-crypto
|
|
|
|
:group 'notmuch-faces)
|
2011-03-31 00:31:04 +02:00
|
|
|
|
|
|
|
(defface notmuch-crypto-decryption
|
|
|
|
'((t (:background "purple" :foreground "black")))
|
|
|
|
"Face used for encryption/decryption status messages."
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-crypto
|
|
|
|
:group 'notmuch-faces)
|
2011-03-31 00:31:04 +02:00
|
|
|
|
2011-05-26 03:01:19 +02:00
|
|
|
(define-button-type 'notmuch-crypto-status-button-type
|
2011-12-17 16:47:48 +01:00
|
|
|
'action (lambda (button) (message (button-get button 'help-echo)))
|
2011-05-26 03:01:19 +02:00
|
|
|
'follow-link t
|
2013-01-07 22:07:20 +01:00
|
|
|
'help-echo "Set notmuch-crypto-process-mime to process cryptographic mime parts."
|
|
|
|
:supertype 'notmuch-button-type)
|
2011-05-26 03:01:19 +02:00
|
|
|
|
|
|
|
(defun notmuch-crypto-insert-sigstatus-button (sigstatus from)
|
2019-09-12 03:32:58 +02:00
|
|
|
"Insert a button describing the signature status SIGSTATUS sent
|
|
|
|
by user FROM."
|
2011-05-26 03:01:19 +02:00
|
|
|
(let* ((status (plist-get sigstatus :status))
|
2019-04-22 19:18:14 +02:00
|
|
|
(show-button t)
|
2011-05-31 19:07:13 +02:00
|
|
|
(face 'notmuch-crypto-signature-unknown)
|
2019-09-12 03:32:58 +02:00
|
|
|
(button-action (lambda (button) (message (button-get button 'help-echo))))
|
|
|
|
(keyid (concat "0x" (plist-get sigstatus :keyid)))
|
|
|
|
label help-msg)
|
2011-05-26 03:01:19 +02:00
|
|
|
(cond
|
|
|
|
((string= status "good")
|
2019-09-12 03:32:58 +02:00
|
|
|
(let ((fingerprint (concat "0x" (plist-get sigstatus :fingerprint)))
|
|
|
|
(userid (plist-get sigstatus :userid)))
|
|
|
|
;; If userid is present it has full or greater validity.
|
|
|
|
(if userid
|
|
|
|
(setq label (concat "Good signature by: " userid)
|
|
|
|
face 'notmuch-crypto-signature-good)
|
|
|
|
(setq label (concat "Good signature by key: " fingerprint)
|
|
|
|
face 'notmuch-crypto-signature-good-key))
|
|
|
|
(setq button-action 'notmuch-crypto-sigstatus-good-callback
|
|
|
|
help-msg (concat "Click to list key ID 0x" fingerprint "."))))
|
|
|
|
|
2011-05-26 03:01:19 +02:00
|
|
|
((string= status "error")
|
2019-09-12 03:32:58 +02:00
|
|
|
(setq label (concat "Unknown key ID " keyid " or unsupported algorithm")
|
|
|
|
button-action 'notmuch-crypto-sigstatus-error-callback
|
|
|
|
help-msg (concat "Click to retrieve key ID " keyid
|
|
|
|
" from keyserver.")))
|
|
|
|
|
2011-05-26 03:01:19 +02:00
|
|
|
((string= status "bad")
|
2019-09-12 03:32:58 +02:00
|
|
|
(setq label (concat "Bad signature (claimed key ID " keyid ")")
|
|
|
|
face 'notmuch-crypto-signature-bad))
|
|
|
|
|
2019-04-22 19:18:14 +02:00
|
|
|
(status
|
|
|
|
(setq label (concat "Unknown signature status: " status)))
|
2011-05-26 03:01:19 +02:00
|
|
|
(t
|
2019-04-22 19:18:14 +02:00
|
|
|
(setq show-button nil)))
|
|
|
|
(when show-button
|
|
|
|
(insert-button
|
|
|
|
(concat "[ " label " ]")
|
|
|
|
:type 'notmuch-crypto-status-button-type
|
|
|
|
'help-echo help-msg
|
|
|
|
'face face
|
|
|
|
'mouse-face face
|
|
|
|
'action button-action
|
|
|
|
:notmuch-sigstatus sigstatus
|
|
|
|
:notmuch-from from)
|
|
|
|
(insert "\n"))))
|
2011-05-26 03:01:19 +02:00
|
|
|
|
2011-05-31 19:07:13 +02:00
|
|
|
(defun notmuch-crypto-sigstatus-good-callback (button)
|
|
|
|
(let* ((sigstatus (button-get button :notmuch-sigstatus))
|
|
|
|
(fingerprint (concat "0x" (plist-get sigstatus :fingerprint)))
|
|
|
|
(buffer (get-buffer-create "*notmuch-crypto-gpg-out*"))
|
2019-09-12 03:32:58 +02:00
|
|
|
(window (display-buffer buffer)))
|
2011-05-31 19:07:13 +02:00
|
|
|
(with-selected-window window
|
|
|
|
(with-current-buffer buffer
|
2012-02-07 18:26:11 +01:00
|
|
|
(goto-char (point-max))
|
2019-09-12 03:32:59 +02:00
|
|
|
(call-process notmuch-crypto-gpg-program nil t t "--batch" "--no-tty" "--list-keys" fingerprint))
|
2011-05-31 19:07:13 +02:00
|
|
|
(recenter -1))))
|
|
|
|
|
2019-09-12 03:32:58 +02:00
|
|
|
(declare-function notmuch-show-refresh-view "notmuch-show" (&optional reset-state))
|
|
|
|
|
2019-09-12 03:32:57 +02:00
|
|
|
(defun notmuch-crypto--async-key-sentinel (process event)
|
|
|
|
"When the user asks for a GPG key to be retrieved
|
|
|
|
asynchronously, handle completion of that task.
|
|
|
|
|
|
|
|
If the retrieval is successful, the thread where the retrieval
|
|
|
|
was initiated is still displayed and the cursor has not moved,
|
|
|
|
redisplay the thread."
|
|
|
|
(let ((status (process-status process))
|
|
|
|
(exit-status (process-exit-status process))
|
|
|
|
(keyid (process-get process :gpg-key-id)))
|
|
|
|
(when (memq status '(exit signal))
|
|
|
|
(message "Getting the GPG key %s asynchronously...%s."
|
|
|
|
keyid
|
|
|
|
(if (= exit-status 0)
|
|
|
|
"completed"
|
|
|
|
"failed"))
|
|
|
|
;; If the original buffer is still alive and point didn't move
|
|
|
|
;; (i.e. the user didn't move on or away), refresh the buffer to
|
|
|
|
;; show the updated signature status.
|
|
|
|
(let ((show-buffer (process-get process :notmuch-show-buffer))
|
|
|
|
(show-point (process-get process :notmuch-show-point)))
|
|
|
|
(when (and (bufferp show-buffer)
|
|
|
|
(buffer-live-p show-buffer)
|
|
|
|
(= show-point
|
|
|
|
(with-current-buffer show-buffer
|
|
|
|
(point))))
|
|
|
|
(with-current-buffer show-buffer
|
|
|
|
(notmuch-show-refresh-view)))))))
|
|
|
|
|
|
|
|
(defun notmuch-crypto--set-button-label (button label)
|
|
|
|
"Set the text displayed in BUTTON to LABEL."
|
|
|
|
(save-excursion
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
;; This knows rather too much about how we typically format
|
|
|
|
;; buttons.
|
|
|
|
(goto-char (button-start button))
|
|
|
|
(forward-char 2)
|
|
|
|
(delete-region (point) (- (button-end button) 2))
|
|
|
|
(insert label))))
|
|
|
|
|
2011-05-31 19:07:13 +02:00
|
|
|
(defun notmuch-crypto-sigstatus-error-callback (button)
|
2019-09-12 03:32:58 +02:00
|
|
|
"When signature validation has failed, try to retrieve the
|
|
|
|
corresponding key when the status button is pressed."
|
2011-05-31 19:07:13 +02:00
|
|
|
(let* ((sigstatus (button-get button :notmuch-sigstatus))
|
|
|
|
(keyid (concat "0x" (plist-get sigstatus :keyid)))
|
2019-09-12 03:32:57 +02:00
|
|
|
(buffer (get-buffer-create "*notmuch-crypto-gpg-out*")))
|
|
|
|
(if notmuch-crypto-get-keys-asynchronously
|
|
|
|
(progn
|
|
|
|
(notmuch-crypto--set-button-label
|
|
|
|
button (format "Retrieving key %s asynchronously..." keyid))
|
|
|
|
(let ((p (make-process :name "notmuch GPG key retrieval"
|
|
|
|
:buffer buffer
|
2019-09-12 03:32:59 +02:00
|
|
|
:command (list notmuch-crypto-gpg-program "--recv-keys" keyid)
|
2019-09-12 03:32:57 +02:00
|
|
|
:connection-type 'pipe
|
|
|
|
:sentinel #'notmuch-crypto--async-key-sentinel
|
|
|
|
;; Create the process stopped so that
|
|
|
|
;; we have time to store the key id,
|
|
|
|
;; etc. on it.
|
|
|
|
:stop t)))
|
|
|
|
(process-put p :gpg-key-id keyid)
|
|
|
|
(process-put p :notmuch-show-buffer (current-buffer))
|
|
|
|
(process-put p :notmuch-show-point (point))
|
|
|
|
(message "Getting the GPG key %s asynchronously..." keyid)
|
|
|
|
(continue-process p)))
|
2019-09-12 03:32:59 +02:00
|
|
|
|
2019-09-12 03:32:58 +02:00
|
|
|
(let ((window (display-buffer buffer)))
|
2019-09-12 03:32:57 +02:00
|
|
|
(with-selected-window window
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(goto-char (point-max))
|
2019-09-12 03:32:59 +02:00
|
|
|
(call-process notmuch-crypto-gpg-program nil t t "--recv-keys" keyid)
|
2019-09-12 03:32:57 +02:00
|
|
|
(insert "\n")
|
2019-09-12 03:32:59 +02:00
|
|
|
(call-process notmuch-crypto-gpg-program nil t t "--list-keys" keyid))
|
2019-09-12 03:32:57 +02:00
|
|
|
(recenter -1))
|
|
|
|
(notmuch-show-refresh-view)))))
|
2011-05-31 19:07:13 +02:00
|
|
|
|
2011-05-26 03:01:19 +02:00
|
|
|
(defun notmuch-crypto-insert-encstatus-button (encstatus)
|
2019-09-12 03:32:58 +02:00
|
|
|
"Insert a button describing the encryption status ENCSTATUS."
|
|
|
|
(insert-button
|
|
|
|
(concat "[ "
|
|
|
|
(let ((status (plist-get encstatus :status)))
|
|
|
|
(cond
|
|
|
|
((string= status "good")
|
|
|
|
"Decryption successful")
|
|
|
|
((string= status "bad")
|
|
|
|
"Decryption error")
|
|
|
|
(t
|
|
|
|
(concat "Unknown encryption status"
|
|
|
|
(if status (concat ": " status))))))
|
|
|
|
" ]")
|
|
|
|
:type 'notmuch-crypto-status-button-type
|
|
|
|
'face 'notmuch-crypto-decryption
|
|
|
|
'mouse-face 'notmuch-crypto-decryption)
|
|
|
|
(insert "\n"))
|
2011-05-26 03:01:19 +02:00
|
|
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
(provide 'notmuch-crypto)
|
2016-04-13 09:58:47 +02:00
|
|
|
|
|
|
|
;;; notmuch-crypto.el ends here
|