(pgg-gpg-encrypt-region): Cache passphrase under hex
[gnus] / lisp / pgg-gpg.el
1 ;;; pgg-gpg.el --- GnuPG support for PGG.
2
3 ;; Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc.
4
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
6 ;; Created: 1999/10/28
7 ;; Keywords: PGP, OpenPGP, GnuPG
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Code:
27
28 (eval-when-compile
29   (require 'cl)                         ; for gpg macros
30   (require 'pgg))
31
32 (defgroup pgg-gpg ()
33   "GnuPG interface"
34   :group 'pgg)
35
36 (defcustom pgg-gpg-program "gpg"
37   "The GnuPG executable."
38   :group 'pgg-gpg
39   :type 'string)
40
41 (defcustom pgg-gpg-extra-args nil
42   "Extra arguments for every GnuPG invocation."
43   :group 'pgg-gpg
44   :type '(repeat (string :tag "Argument")))
45
46 (defvar pgg-gpg-user-id nil
47   "GnuPG ID of your default identity.")
48
49 (defun pgg-gpg-process-region (start end passphrase program args)
50   (let* ((output-file-name (pgg-make-temp-file "pgg-output"))
51          (args
52           `("--status-fd" "2"
53             ,@(if passphrase '("--passphrase-fd" "0"))
54             "--yes" ; overwrite
55             "--output" ,output-file-name
56             ,@pgg-gpg-extra-args ,@args))
57          (output-buffer pgg-output-buffer)
58          (errors-buffer pgg-errors-buffer)
59          (orig-mode (default-file-modes))
60          (process-connection-type nil)
61          exit-status)
62     (with-current-buffer (get-buffer-create errors-buffer)
63       (buffer-disable-undo)
64       (erase-buffer))
65     (unwind-protect
66         (progn
67           (set-default-file-modes 448)
68           (let ((coding-system-for-write 'binary)
69                 (input (buffer-substring-no-properties start end))
70                 (default-enable-multibyte-characters nil))
71             (with-temp-buffer
72               (when passphrase
73                 (insert passphrase "\n"))
74               (insert input)
75               (setq exit-status
76                     (apply #'call-process-region (point-min) (point-max) program
77                            nil errors-buffer nil args))))
78           (with-current-buffer (get-buffer-create output-buffer)
79             (buffer-disable-undo)
80             (erase-buffer)
81             (if (file-exists-p output-file-name)
82                 (let ((coding-system-for-read 'raw-text-dos))
83                   (insert-file-contents output-file-name)))
84             (set-buffer errors-buffer)
85             (if (not (equal exit-status 0))
86                 (insert (format "\n%s exited abnormally: '%s'\n"
87                                 program exit-status)))))
88       (if (file-exists-p output-file-name)
89           (delete-file output-file-name))
90       (set-default-file-modes orig-mode))))
91
92 (defun pgg-gpg-possibly-cache-passphrase (passphrase &optional key)
93   (if (and pgg-cache-passphrase
94            (progn
95              (goto-char (point-min))
96              (re-search-forward "^\\[GNUPG:] GOOD_PASSPHRASE\\>" nil t)))
97       (pgg-add-passphrase-cache
98        (or key
99            (progn
100              (goto-char (point-min))
101              (if (re-search-forward
102                   "^\\[GNUPG:] NEED_PASSPHRASE \\w+ ?\\w*" nil t)
103                  (substring (match-string 0) -8))))
104        passphrase)))
105
106 (defvar pgg-gpg-all-secret-keys 'unknown)
107
108 (defun pgg-gpg-lookup-all-secret-keys ()
109   "Return all secret keys present in secret key ring."
110   (when (eq pgg-gpg-all-secret-keys 'unknown)
111     (setq pgg-gpg-all-secret-keys '())
112     (let ((args (list "--with-colons" "--no-greeting" "--batch"
113                       "--list-secret-keys")))
114       (with-temp-buffer
115         (apply #'call-process pgg-gpg-program nil t nil args)
116         (goto-char (point-min))
117         (while (re-search-forward "^\\(sec\\|pub\\):"  nil t)
118           (push (substring
119                  (nth 3 (split-string
120                          (buffer-substring (match-end 0)
121                                            (progn (end-of-line) (point)))
122                          ":")) 8)
123                 pgg-gpg-all-secret-keys)))))
124   pgg-gpg-all-secret-keys)
125
126 (defun pgg-gpg-lookup-key (string &optional type)
127   "Search keys associated with STRING."
128   (let ((args (list "--with-colons" "--no-greeting" "--batch"
129                     (if type "--list-secret-keys" "--list-keys")
130                     string)))
131     (with-temp-buffer
132       (apply #'call-process pgg-gpg-program nil t nil args)
133       (goto-char (point-min))
134       (if (re-search-forward "^\\(sec\\|pub\\):"  nil t)
135           (substring
136            (nth 3 (split-string
137                    (buffer-substring (match-end 0)
138                                      (progn (end-of-line)(point)))
139                    ":")) 8)))))
140
141 (defun pgg-gpg-encrypt-region (start end recipients &optional sign)
142   "Encrypt the current region between START and END.
143 If optional argument SIGN is non-nil, do a combined sign and encrypt."
144   (let* ((pgg-gpg-user-id (or pgg-gpg-user-id pgg-default-user-id))
145          (passphrase
146           (when sign
147             (pgg-read-passphrase
148              (format "GnuPG passphrase for %s: " pgg-gpg-user-id)
149              pgg-gpg-user-id)))
150          (args
151           (append
152            (list "--batch" "--armor" "--always-trust" "--encrypt")
153            (if sign (list "--sign" "--local-user" pgg-gpg-user-id))
154            (if recipients
155                (apply #'nconc
156                       (mapcar (lambda (rcpt)
157                                 (list "--remote-user" rcpt))
158                               (append recipients
159                                       (if pgg-encrypt-for-me
160                                           (list pgg-gpg-user-id)))))))))
161     (pgg-as-lbt start end 'CRLF
162       (pgg-gpg-process-region start end passphrase pgg-gpg-program args))
163     (when sign
164       (with-current-buffer pgg-errors-buffer
165         ;; Possibly cache passphrase under, e.g. "jas", for future sign.
166         (pgg-gpg-possibly-cache-passphrase passphrase pgg-gpg-user-id)
167         ;; Possibly cache passphrase under, e.g. B565716F, for future decrypt.
168         (pgg-gpg-possibly-cache-passphrase passphrase)))
169     (pgg-process-when-success)))
170
171 (defun pgg-gpg-decrypt-region (start end)
172   "Decrypt the current region between START and END."
173   (let* ((current-buffer (current-buffer))
174          (message-keys (with-temp-buffer
175                          (insert-buffer-substring current-buffer)
176                          (pgg-decode-armor-region (point-min) (point-max))))
177          (secret-keys (pgg-gpg-lookup-all-secret-keys))
178          (key (pgg-gpg-select-matching-key message-keys secret-keys))
179          (pgg-gpg-user-id (or key pgg-gpg-user-id pgg-default-user-id))
180          (passphrase
181           (pgg-read-passphrase
182            (format "GnuPG passphrase for %s: " pgg-gpg-user-id)
183            pgg-gpg-user-id))
184          (args '("--batch" "--decrypt")))
185     (pgg-gpg-process-region start end passphrase pgg-gpg-program args)
186     (with-current-buffer pgg-errors-buffer
187       (pgg-gpg-possibly-cache-passphrase passphrase pgg-gpg-user-id)
188       (goto-char (point-min))
189       (re-search-forward "^\\[GNUPG:] DECRYPTION_OKAY\\>" nil t))))
190
191 (defun pgg-gpg-select-matching-key (message-keys secret-keys)
192   "Choose a key from MESSAGE-KEYS that matches one of the keys in SECRET-KEYS."
193   (loop for message-key in message-keys
194         for message-key-id = (and (equal (car message-key) 1)
195                                   (cdr (assq 'key-identifier message-key)))
196         for key = (and message-key-id (pgg-lookup-key message-key-id 'encrypt))
197         when (and key (member key secret-keys)) return key))
198
199 (defun pgg-gpg-sign-region (start end &optional cleartext)
200   "Make detached signature from text between START and END."
201   (let* ((pgg-gpg-user-id (or pgg-gpg-user-id pgg-default-user-id))
202          (passphrase
203           (pgg-read-passphrase
204            (format "GnuPG passphrase for %s: " pgg-gpg-user-id)
205            pgg-gpg-user-id))
206          (args
207           (list (if cleartext "--clearsign" "--detach-sign")
208                 "--armor" "--batch" "--verbose"
209                 "--local-user" pgg-gpg-user-id))
210          (inhibit-read-only t)
211          buffer-read-only)
212     (pgg-as-lbt start end 'CRLF
213       (pgg-gpg-process-region start end passphrase pgg-gpg-program args))
214     (with-current-buffer pgg-errors-buffer
215       ;; Possibly cache passphrase under, e.g. "jas", for future sign.
216       (pgg-gpg-possibly-cache-passphrase passphrase pgg-gpg-user-id)
217       ;; Possibly cache passphrase under, e.g. B565716F, for future decrypt.
218       (pgg-gpg-possibly-cache-passphrase passphrase))
219     (pgg-process-when-success)))
220
221 (defun pgg-gpg-verify-region (start end &optional signature)
222   "Verify region between START and END as the detached signature SIGNATURE."
223   (let ((args '("--batch" "--verify")))
224     (when (stringp signature)
225       (setq args (append args (list signature))))
226     (setq args (append args '("-")))
227     (pgg-gpg-process-region start end nil pgg-gpg-program args)
228     (with-current-buffer pgg-errors-buffer
229       (goto-char (point-min))
230       (while (re-search-forward "^gpg: \\(.*\\)\n" nil t)
231         (with-current-buffer pgg-output-buffer
232           (insert-buffer-substring pgg-errors-buffer
233                                    (match-beginning 1) (match-end 0)))
234         (delete-region (match-beginning 0) (match-end 0)))
235       (goto-char (point-min))
236       (re-search-forward "^\\[GNUPG:] GOODSIG\\>" nil t))))
237
238 (defun pgg-gpg-insert-key ()
239   "Insert public key at point."
240   (let* ((pgg-gpg-user-id (or pgg-gpg-user-id pgg-default-user-id))
241          (args (list "--batch" "--export" "--armor"
242                      pgg-gpg-user-id)))
243     (pgg-gpg-process-region (point)(point) nil pgg-gpg-program args)
244     (insert-buffer-substring pgg-output-buffer)))
245
246 (defun pgg-gpg-snarf-keys-region (start end)
247   "Add all public keys in region between START and END to the keyring."
248   (let ((args '("--import" "--batch" "-")) status)
249     (pgg-gpg-process-region start end nil pgg-gpg-program args)
250     (set-buffer pgg-errors-buffer)
251     (goto-char (point-min))
252     (when (re-search-forward "^\\[GNUPG:] IMPORT_RES\\>" nil t)
253       (setq status (buffer-substring (match-end 0)
254                                      (progn (end-of-line)(point)))
255             status (vconcat (mapcar #'string-to-int (split-string status))))
256       (erase-buffer)
257       (insert (format "Imported %d key(s).
258 \tArmor contains %d key(s) [%d bad, %d old].\n"
259                       (+ (aref status 2)
260                          (aref status 10))
261                       (aref status 0)
262                       (aref status 1)
263                       (+ (aref status 4)
264                          (aref status 11)))
265               (if (zerop (aref status 9))
266                   ""
267                 "\tSecret keys are imported.\n")))
268     (append-to-buffer pgg-output-buffer (point-min)(point-max))
269     (pgg-process-when-success)))
270
271 (provide 'pgg-gpg)
272
273 ;;; pgg-gpg.el ends here