(encrypt-region): Fix last change.
[elisp/semi.git] / pgg-gpg.el
1 ;;; pgg-gpg.el --- GnuPG support for PGG.
2
3 ;; Copyright (C) 1999 Daiki Ueno
4
5 ;; Author: Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
6 ;; Created: 1999/10/28
7 ;; Keywords: PGP, OpenPGP, GnuPG
8
9 ;; This file is part of SEMI (Secure Emacs MIME Interface).
10
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
15
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; 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 (require 'pgg))
29
30 (defgroup pgg-gpg ()
31   "GnuPG interface"
32   :group 'pgg)
33
34 (defcustom pgg-gpg-program "gpg" 
35   "The GnuPG executable."
36   :group 'pgg-gpg
37   :type 'string)
38
39 (defcustom pgg-gpg-shell-file-name "/bin/sh"
40   "File name to load inferior shells from.  Bourne shell or its equivalent
41 \(not tcsh) is needed for \"2>\"."
42   :group 'pgg-gpg
43   :type 'string)
44
45 (defcustom pgg-gpg-shell-command-switch "-c"
46   "Switch used to have the shell execute its command line argument."
47   :group 'pgg-gpg
48   :type 'string)
49
50 (defcustom pgg-gpg-extra-args nil
51   "Extra arguments for every GnuPG invocation."
52   :group 'pgg-gpg
53   :type 'string)
54
55 (eval-and-compile
56   (luna-define-class pgg-scheme-gpg (pgg-scheme))
57   )
58   
59 (defvar pgg-gpg-user-id nil
60   "GnuPG ID of your default identity.")
61
62 (defvar pgg-scheme-gpg-instance nil)
63
64 ;;;###autoload
65 (defun pgg-make-scheme-gpg ()
66   (or pgg-scheme-gpg-instance
67       (setq pgg-scheme-gpg-instance
68             (luna-make-entity 'pgg-scheme-gpg))))
69
70 (defun pgg-gpg-process-region (start end passphrase program args)
71   (let* ((errors-file-name
72           (concat temporary-file-directory 
73                   (make-temp-name "pgg-errors")))
74          (status-file-name
75           (concat temporary-file-directory 
76                   (make-temp-name "pgg-status")))
77          (args 
78           (append
79            `("--status-fd" "3"
80              ,@(if passphrase '("--passphrase-fd" "0"))
81              ,@pgg-gpg-extra-args)
82            args
83            (list (concat "2>" errors-file-name)
84                  (concat "3>" status-file-name))))
85          (shell-file-name pgg-gpg-shell-file-name)
86          (shell-command-switch pgg-gpg-shell-command-switch)
87          (output-buffer pgg-output-buffer)
88          (errors-buffer pgg-errors-buffer)
89          (status-buffer pgg-status-buffer)
90          (process-connection-type nil)
91          process status exit-status)
92     (with-current-buffer (get-buffer-create output-buffer)
93       (buffer-disable-undo)
94       (erase-buffer))
95     (setq process
96           (apply #'start-process-shell-command "*GnuPG*" output-buffer
97                  program args))
98     (set-process-sentinel process 'ignore)
99     (when passphrase
100       (process-send-string process (concat passphrase "\n")))
101     (process-send-region process start end)
102     (process-send-eof process)
103     (while (eq 'run (process-status process))
104       (accept-process-output process 5))
105     (setq status (process-status process)
106           exit-status (process-exit-status process))
107     (delete-process process)
108     (with-current-buffer output-buffer
109       (pgg-convert-lbt-region (point-min)(point-max) 'LF)
110
111       (if (memq status '(stop signal))
112           (error "%s exited abnormally: '%s'" program exit-status))
113       (if (= 127 exit-status)
114           (error "%s could not be found" program))
115
116       (set-buffer (get-buffer-create errors-buffer))
117       (buffer-disable-undo)
118       (erase-buffer)
119       (insert-file-contents errors-file-name)
120       (delete-file errors-file-name)
121       
122       (set-buffer (get-buffer-create status-buffer))
123       (buffer-disable-undo)
124       (erase-buffer)
125       (insert-file-contents status-file-name)
126       (delete-file status-file-name)
127
128       (if (and process (eq 'run (process-status process)))
129           (interrupt-process process))
130       )
131     ))
132
133 (luna-define-method lookup-key-string ((scheme pgg-scheme-gpg)
134                                        string &optional type)
135   (let ((args (list "--with-colons" "--no-greeting" "--batch" 
136                     (if type "--list-secret-keys" "--list-keys")
137                     string)))
138     (pgg-gpg-process-region (point)(point) nil pgg-gpg-program args)
139     (with-current-buffer pgg-output-buffer
140       (goto-char (point-min))
141       (when (re-search-forward "^\\(sec\\|pub\\):"  nil t)
142         (substring 
143          (nth 3 (split-string 
144                  (buffer-substring (match-end 0)
145                                    (progn (end-of-line)(point)))
146                  ":"))
147          8)))
148     ))
149
150 (luna-define-method encrypt-region ((scheme pgg-scheme-gpg) 
151                                     start end recipients)
152   (let* ((pgg-gpg-user-id pgg-default-user-id)
153          (args 
154           `("--batch" "--armor" "--always-trust" "--encrypt"
155             ,@(if recipients
156                   (apply #'append 
157                          (mapcar (lambda (rcpt) 
158                                    (list "--remote-user" 
159                                          (concat "\"" rcpt "\""))) 
160                                  recipients))))))
161     (pgg-as-lbt start end 'CRLF
162       (pgg-gpg-process-region start end nil pgg-gpg-program args)
163       )
164     (pgg-process-when-success
165       (pgg-convert-lbt-region (point-min)(point-max) 'LF))
166     ))
167
168 (luna-define-method decrypt-region ((scheme pgg-scheme-gpg) 
169                                     start end)
170   (let* ((pgg-gpg-user-id pgg-default-user-id)
171          (passphrase
172           (pgg-read-passphrase 
173            (format "GnuPG passphrase for %s: " pgg-gpg-user-id)
174            (luna-send scheme 'lookup-key-string 
175                       scheme pgg-gpg-user-id 'encrypt)))
176          (args '("--batch" "--decrypt")))
177     (pgg-gpg-process-region start end passphrase pgg-gpg-program args)
178     (pgg-process-when-success nil)
179     ))
180
181 (luna-define-method sign-region ((scheme pgg-scheme-gpg) 
182                                  start end &optional cleartext)
183   (let* ((pgg-gpg-user-id pgg-default-user-id)
184          (passphrase
185           (pgg-read-passphrase 
186            (format "GnuPG passphrase for %s: " pgg-gpg-user-id)
187            (luna-send scheme 'lookup-key-string 
188                       scheme pgg-gpg-user-id 'sign)))
189          (args 
190           (list (if cleartext "--clearsign" "--detach-sign")
191                 "--armor" "--batch" "--verbose" 
192                 "--local-user" pgg-gpg-user-id))
193          (inhibit-read-only t)
194          buffer-read-only)
195     (pgg-as-lbt start end 'CRLF
196       (pgg-gpg-process-region start end passphrase pgg-gpg-program args)
197       )
198     (pgg-process-when-success
199       (pgg-convert-lbt-region (point-min)(point-max) 'LF)
200       (when (re-search-forward "^-+BEGIN PGP SIGNATURE" nil t);XXX
201         (let ((packet 
202                (cdr (assq 2 (pgg-parse-armor-region 
203                              (progn (beginning-of-line 2)
204                                     (point))
205                              (point-max))))))
206           (pgg-add-passphrase-cache 
207            (cdr (assq 'key-identifier packet))
208            passphrase))))
209     ))
210
211 (luna-define-method verify-region ((scheme pgg-scheme-gpg) 
212                                    start end &optional signature)
213   (let ((args '("--batch" "--verify")))
214     (when (stringp signature)
215       (setq args (append args (list signature))))
216     (pgg-gpg-process-region start end nil pgg-gpg-program args)
217     (save-excursion
218       (set-buffer pgg-errors-buffer)
219       (goto-char (point-min))
220       (while (re-search-forward "^gpg: " nil t)
221         (replace-match ""))
222       (goto-char (point-min))
223       (let ((case-fold-search t))
224         (while (re-search-forward "^warning: " nil t)
225           (delete-region (match-beginning 0)
226                          (progn (beginning-of-line 2) (point)))))
227       (set-buffer pgg-status-buffer)
228       (goto-char (point-min))
229       (if (re-search-forward "^\\[GNUPG:] +GOODSIG +" nil t)
230           (progn
231             (set-buffer pgg-output-buffer)
232             (insert-buffer-substring pgg-errors-buffer)
233             t)
234         nil))
235     ))
236
237 (luna-define-method insert-key ((scheme pgg-scheme-gpg))
238   (let* ((pgg-gpg-user-id pgg-default-user-id)
239          (args (list "--batch" "--export" "--armor" 
240                      (concat "\"" pgg-gpg-user-id "\""))))
241     (pgg-gpg-process-region (point)(point) nil pgg-gpg-program args)
242     (insert-buffer-substring pgg-output-buffer)
243     ))
244
245 (luna-define-method snarf-keys-region ((scheme pgg-scheme-gpg)
246                                        start end)
247   (let ((args '("--import" "--batch" "-")) status)
248     (pgg-gpg-process-region start end nil pgg-gpg-program args)
249     (set-buffer pgg-status-buffer)
250     (goto-char (point-min))
251     (when (re-search-forward "^\\[GNUPG:] +IMPORT_RES +" nil t)
252       (setq status (buffer-substring (match-end 0) 
253                                      (progn (end-of-line) 
254                                             (point)))
255             status (vconcat (mapcar #'string-to-int 
256                                     (split-string status))))
257       (erase-buffer)
258       (insert (format "Imported %d key(s).
259 \tArmor contains %d key(s) [%d bad, %d old].\n"
260                       (+ (aref status 2)
261                          (aref status 10))
262                       (aref status 0)
263                       (aref status 1)
264                       (+ (aref status 4)
265                          (aref status 11)))
266               (if (zerop (aref status 9))
267                   ""
268                 "\tSecret keys are imported.\n")))
269     (append-to-buffer pgg-output-buffer
270                       (point-min)(point-max))
271     (pgg-process-when-success nil)
272     ))
273
274 (provide 'pgg-gpg)
275
276 ;;; pgg-gpg.el ends here
277