1 ;;; pgg-gpg.el --- GnuPG support for PGG.
3 ;; Copyright (C) 1999, 2000, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Daiki Ueno <ueno@unixuser.org>
7 ;; Symmetric encryption and gpg-agent support added by:
8 ;; Sascha Wilde <wilde@sha-bang.de>
10 ;; Keywords: PGP, OpenPGP, GnuPG
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 (require 'cl
) ; for gpg macros
38 (defcustom pgg-gpg-program
"gpg"
39 "The GnuPG executable."
43 (defcustom pgg-gpg-extra-args nil
44 "Extra arguments for every GnuPG invocation."
46 :type
'(repeat (string :tag
"Argument")))
48 (defcustom pgg-gpg-recipient-argument
"--recipient"
49 "GnuPG option to specify recipient."
51 :type
'(choice (const :tag
"New `--recipient' option" "--recipient")
52 (const :tag
"Old `--remote-user' option" "--remote-user")))
54 (defcustom pgg-gpg-use-agent t
55 "Whether to use gnupg agent for key caching."
59 (defvar pgg-gpg-user-id nil
60 "GnuPG ID of your default identity.")
62 (defun pgg-gpg-process-region (start end passphrase program args
)
63 (let* ((use-agent (and (null passphrase
) (pgg-gpg-use-agent-p)))
64 (output-file-name (pgg-make-temp-file "pgg-output"))
67 ,@(if use-agent
'("--use-agent")
68 (if passphrase
'("--passphrase-fd" "0")))
70 "--output" ,output-file-name
71 ,@pgg-gpg-extra-args
,@args
))
72 (output-buffer pgg-output-buffer
)
73 (errors-buffer pgg-errors-buffer
)
74 (orig-mode (default-file-modes))
75 (process-connection-type nil
)
77 process status exit-status
78 passphrase-with-newline
79 encoded-passphrase-with-new-line
)
80 (with-current-buffer (get-buffer-create errors-buffer
)
85 (set-default-file-modes 448)
86 (let ((coding-system-for-write 'binary
))
88 (apply #'start-process
"*GnuPG*" errors-buffer
90 (set-process-sentinel process
#'ignore
)
92 (setq passphrase-with-newline
(concat passphrase
"\n"))
93 (if pgg-passphrase-coding-system
95 (setq encoded-passphrase-with-new-line
97 passphrase-with-newline
98 (coding-system-change-eol-conversion
99 pgg-passphrase-coding-system
'unix
)))
100 (pgg-clear-string passphrase-with-newline
))
101 (setq encoded-passphrase-with-new-line passphrase-with-newline
102 passphrase-with-newline nil
))
103 (process-send-string process encoded-passphrase-with-new-line
))
104 (process-send-region process start end
)
105 (process-send-eof process
)
106 (while (eq 'run
(process-status process
))
107 (accept-process-output process
5))
108 ;; Accept any remaining pending output coming after the
110 (accept-process-output process
5)
111 (setq status
(process-status process
)
112 exit-status
(process-exit-status process
))
113 (delete-process process
)
114 (with-current-buffer (get-buffer-create output-buffer
)
115 (buffer-disable-undo)
117 (if (file-exists-p output-file-name
)
118 (let ((coding-system-for-read (if pgg-text-mode
121 (insert-file-contents output-file-name
)))
122 (set-buffer errors-buffer
)
123 (if (memq status
'(stop signal
))
124 (error "%s exited abnormally: '%s'" program exit-status
))
125 (if (= 127 exit-status
)
126 (error "%s could not be found" program
))))
127 (if passphrase-with-newline
128 (pgg-clear-string passphrase-with-newline
))
129 (if encoded-passphrase-with-new-line
130 (pgg-clear-string encoded-passphrase-with-new-line
))
131 (if (and process
(eq 'run
(process-status process
)))
132 (interrupt-process process
))
133 (if (file-exists-p output-file-name
)
134 (delete-file output-file-name
))
135 (set-default-file-modes orig-mode
))))
137 (defun pgg-gpg-possibly-cache-passphrase (passphrase &optional key notruncate
)
141 (goto-char (point-min))
142 (re-search-forward "^\\[GNUPG:] \\(GOOD_PASSPHRASE\\>\\)\\|\\(SIG_CREATED\\)" nil t
)))
143 (pgg-add-passphrase-to-cache
146 (goto-char (point-min))
147 (if (re-search-forward
148 "^\\[GNUPG:] NEED_PASSPHRASE\\(_PIN\\)? \\w+ ?\\w*" nil t
)
149 (substring (match-string 0) -
8))))
153 (defvar pgg-gpg-all-secret-keys
'unknown
)
155 (defun pgg-gpg-lookup-all-secret-keys ()
156 "Return all secret keys present in secret key ring."
157 (when (eq pgg-gpg-all-secret-keys
'unknown
)
158 (setq pgg-gpg-all-secret-keys
'())
159 (let ((args (list "--with-colons" "--no-greeting" "--batch"
160 "--list-secret-keys")))
162 (apply #'call-process pgg-gpg-program nil t nil args
)
163 (goto-char (point-min))
164 (while (re-search-forward
165 "^\\(sec\\|pub\\):[^:]*:[^:]*:[^:]*:\\([^:]*\\)" nil t
)
166 (push (substring (match-string 2) 8)
167 pgg-gpg-all-secret-keys
)))))
168 pgg-gpg-all-secret-keys
)
170 (defun pgg-gpg-lookup-key (string &optional type
)
171 "Search keys associated with STRING."
172 (let ((args (list "--with-colons" "--no-greeting" "--batch"
173 (if type
"--list-secret-keys" "--list-keys")
176 (apply #'call-process pgg-gpg-program nil t nil args
)
177 (goto-char (point-min))
178 (if (re-search-forward "^\\(sec\\|pub\\):[^:]*:[^:]*:[^:]*:\\([^:]*\\)"
180 (substring (match-string 2) 8)))))
182 (defun pgg-gpg-lookup-key-owner (string &optional all
)
183 "Search keys associated with STRING and return owner of identified key.
185 The value may be just the bare key id, or it may be a combination of the
186 user name associated with the key and the key id, with the key id enclosed
187 in \"<...>\" angle brackets.
189 Optional ALL non-nil means search all keys, including secret keys."
190 (let ((args (list "--with-colons" "--no-greeting" "--batch"
191 (if all
"--list-secret-keys" "--list-keys")
193 (key-regexp (concat "^\\(sec\\|pub\\|uid\\)"
194 ":[^:]*:[^:]*:[^:]*:\\([^:]*\\):[^:]*"
195 ":[^:]*:[^:]*:[^:]*:\\([^:]+\\):")))
197 (apply #'call-process pgg-gpg-program nil t nil args
)
198 (goto-char (point-min))
199 (if (re-search-forward key-regexp
203 (defun pgg-gpg-key-id-from-key-owner (key-owner)
204 (cond ((not key-owner
) nil
)
205 ;; Extract bare key id from outermost paired angle brackets, if any:
206 ((string-match "[^<]*<\\(.+\\)>[^>]*" key-owner
)
207 (substring key-owner
(match-beginning 1)(match-end 1)))
210 (defun pgg-gpg-encrypt-region (start end recipients
&optional sign passphrase
)
211 "Encrypt the current region between START and END.
213 If optional argument SIGN is non-nil, do a combined sign and encrypt.
215 If optional PASSPHRASE is not specified, it will be obtained from the
216 passphrase cache or user."
217 (let* ((pgg-gpg-user-id (or pgg-gpg-user-id pgg-default-user-id
))
218 (passphrase (or passphrase
219 (when (and sign
(not (pgg-gpg-use-agent-p)))
221 (format "GnuPG passphrase for %s: "
226 (list "--batch" "--armor" "--always-trust" "--encrypt")
227 (if pgg-text-mode
(list "--textmode"))
228 (if sign
(list "--sign" "--local-user" pgg-gpg-user-id
))
229 (if (or recipients pgg-encrypt-for-me
)
231 (mapcar (lambda (rcpt)
232 (list pgg-gpg-recipient-argument rcpt
))
234 (if pgg-encrypt-for-me
235 (list pgg-gpg-user-id
)))))))))
236 (pgg-gpg-process-region start end passphrase pgg-gpg-program args
)
238 (with-current-buffer pgg-errors-buffer
239 ;; Possibly cache passphrase under, e.g. "jas", for future sign.
240 (pgg-gpg-possibly-cache-passphrase passphrase pgg-gpg-user-id
)
241 ;; Possibly cache passphrase under, e.g. B565716F, for future decrypt.
242 (pgg-gpg-possibly-cache-passphrase passphrase
)))
243 (pgg-process-when-success)))
245 (defun pgg-gpg-encrypt-symmetric-region (start end
&optional passphrase
)
246 "Encrypt the current region between START and END with symmetric cipher.
248 If optional PASSPHRASE is not specified, it will be obtained from the
249 passphrase cache or user."
250 (let* ((passphrase (or passphrase
251 (when (not (pgg-gpg-use-agent-p))
253 "GnuPG passphrase for symmetric encryption: "))))
255 (append (list "--batch" "--armor" "--symmetric" )
256 (if pgg-text-mode
(list "--textmode")))))
257 (pgg-gpg-process-region start end passphrase pgg-gpg-program args
)
258 (pgg-process-when-success)))
260 (defun pgg-gpg-decrypt-region (start end
&optional passphrase
)
261 "Decrypt the current region between START and END.
263 If optional PASSPHRASE is not specified, it will be obtained from the
264 passphrase cache or user."
265 (let* ((current-buffer (current-buffer))
266 (message-keys (with-temp-buffer
267 (insert-buffer-substring current-buffer
)
268 (pgg-decode-armor-region (point-min) (point-max))))
269 (secret-keys (pgg-gpg-lookup-all-secret-keys))
270 ;; XXX the user is stuck if they need to use the passphrase for
271 ;; any but the first secret key for which the message is
272 ;; encrypted. ideally, we would incrementally give them a
273 ;; chance with subsequent keys each time they fail with one.
274 (key (pgg-gpg-select-matching-key message-keys secret-keys
))
275 (key-owner (and key
(pgg-gpg-lookup-key-owner key t
)))
276 (key-id (pgg-gpg-key-id-from-key-owner key-owner
))
277 (pgg-gpg-user-id (or key-id key
278 pgg-gpg-user-id pgg-default-user-id
))
279 (passphrase (or passphrase
280 (when (not (pgg-gpg-use-agent-p))
282 (format (if (pgg-gpg-symmetric-key-p message-keys
)
283 "Passphrase for symmetric decryption: "
284 "GnuPG passphrase for %s: ")
287 (args '("--batch" "--decrypt")))
288 (pgg-gpg-process-region start end passphrase pgg-gpg-program args
)
289 (with-current-buffer pgg-errors-buffer
290 (pgg-gpg-possibly-cache-passphrase passphrase pgg-gpg-user-id
)
291 (goto-char (point-min))
292 (re-search-forward "^\\[GNUPG:] DECRYPTION_OKAY\\>" nil t
))))
295 (defun pgg-gpg-symmetric-key-p (message-keys)
296 "True if decoded armor MESSAGE-KEYS has symmetric encryption indicator."
298 (dolist (key message-keys result
)
299 (when (and (eq (car key
) 3)
300 (member '(symmetric-key-algorithm) key
))
301 (setq result key
)))))
303 (defun pgg-gpg-select-matching-key (message-keys secret-keys
)
304 "Choose a key from MESSAGE-KEYS that matches one of the keys in SECRET-KEYS."
305 (loop for message-key in message-keys
306 for message-key-id
= (and (equal (car message-key
) 1)
307 (cdr (assq 'key-identifier
309 for key
= (and message-key-id
(pgg-lookup-key message-key-id
'encrypt
))
310 when
(and key
(member key secret-keys
)) return key
))
312 (defun pgg-gpg-sign-region (start end
&optional cleartext passphrase
)
313 "Make detached signature from text between START and END."
314 (let* ((pgg-gpg-user-id (or pgg-gpg-user-id pgg-default-user-id
))
315 (passphrase (or passphrase
316 (when (not (pgg-gpg-use-agent-p))
318 (format "GnuPG passphrase for %s: "
322 (append (list (if cleartext
"--clearsign" "--detach-sign")
323 "--armor" "--batch" "--verbose"
324 "--local-user" pgg-gpg-user-id
)
325 (if pgg-text-mode
(list "--textmode"))))
326 (inhibit-read-only t
)
328 (pgg-gpg-process-region start end passphrase pgg-gpg-program args
)
329 (with-current-buffer pgg-errors-buffer
330 ;; Possibly cache passphrase under, e.g. "jas", for future sign.
331 (pgg-gpg-possibly-cache-passphrase passphrase pgg-gpg-user-id
)
332 ;; Possibly cache passphrase under, e.g. B565716F, for future decrypt.
333 (pgg-gpg-possibly-cache-passphrase passphrase
))
334 (pgg-process-when-success)))
336 (defun pgg-gpg-verify-region (start end
&optional signature
)
337 "Verify region between START and END as the detached signature SIGNATURE."
338 (let ((args '("--batch" "--verify")))
339 (when (stringp signature
)
340 (setq args
(append args
(list signature
))))
341 (setq args
(append args
'("-")))
342 (pgg-gpg-process-region start end nil pgg-gpg-program args
)
343 (with-current-buffer pgg-errors-buffer
344 (goto-char (point-min))
345 (while (re-search-forward "^gpg: \\(.*\\)\n" nil t
)
346 (with-current-buffer pgg-output-buffer
347 (insert-buffer-substring pgg-errors-buffer
348 (match-beginning 1) (match-end 0)))
349 (delete-region (match-beginning 0) (match-end 0)))
350 (goto-char (point-min))
351 (re-search-forward "^\\[GNUPG:] GOODSIG\\>" nil t
))))
353 (defun pgg-gpg-insert-key ()
354 "Insert public key at point."
355 (let* ((pgg-gpg-user-id (or pgg-gpg-user-id pgg-default-user-id
))
356 (args (list "--batch" "--export" "--armor"
358 (pgg-gpg-process-region (point)(point) nil pgg-gpg-program args
)
359 (insert-buffer-substring pgg-output-buffer
)))
361 (defun pgg-gpg-snarf-keys-region (start end
)
362 "Add all public keys in region between START and END to the keyring."
363 (let ((args '("--import" "--batch" "-")) status
)
364 (pgg-gpg-process-region start end nil pgg-gpg-program args
)
365 (set-buffer pgg-errors-buffer
)
366 (goto-char (point-min))
367 (when (re-search-forward "^\\[GNUPG:] IMPORT_RES\\>" nil t
)
368 (setq status
(buffer-substring (match-end 0)
369 (progn (end-of-line)(point)))
370 status
(vconcat (mapcar #'string-to-number
(split-string status
))))
372 (insert (format "Imported %d key(s).
373 \tArmor contains %d key(s) [%d bad, %d old].\n"
380 (if (zerop (aref status
9))
382 "\tSecret keys are imported.\n")))
383 (append-to-buffer pgg-output-buffer
(point-min)(point-max))
384 (pgg-process-when-success)))
386 (defun pgg-gpg-update-agent ()
387 "Try to connet to gpg-agent and send UPDATESTARTUPTTY."
388 (if (fboundp 'make-network-process
)
389 (let* ((agent-info (getenv "GPG_AGENT_INFO"))
390 (socket (and agent-info
391 (string-match "^\\([^:]*\\)" agent-info
)
392 (match-string 1 agent-info
)))
394 (make-network-process :name
"gpg-agent-process"
395 :host
'local
:family
'local
397 (when (and conn
(eq (process-status conn
) 'open
))
398 (process-send-string conn
"UPDATESTARTUPTTY\n")
399 (delete-process conn
)
401 ;; We can't check, so assume gpg-agent is up.
404 (defun pgg-gpg-use-agent-p ()
405 "Return t if `pgg-gpg-use-agent' is t and gpg-agent is available."
406 (and pgg-gpg-use-agent
(pgg-gpg-update-agent)))
410 ;;; pgg-gpg.el ends here