fix.
[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                                  (append recipients
161                                          (if pgg-encrypt-for-me
162                                              (list pgg-gpg-user-id)))))))
163           ))
164     (pgg-as-lbt start end 'CRLF
165       (pgg-gpg-process-region start end nil pgg-gpg-program args)
166       )
167     (pgg-process-when-success
168       (pgg-convert-lbt-region (point-min)(point-max) 'LF))
169     ))
170
171 (luna-define-method decrypt-region ((scheme pgg-scheme-gpg) 
172                                     start end)
173   (let* ((pgg-gpg-user-id pgg-default-user-id)
174          (passphrase
175           (pgg-read-passphrase 
176            (format "GnuPG passphrase for %s: " pgg-gpg-user-id)
177            (luna-send scheme 'lookup-key-string 
178                       scheme pgg-gpg-user-id 'encrypt)))
179          (args '("--batch" "--decrypt")))
180     (pgg-gpg-process-region start end passphrase pgg-gpg-program args)
181     (pgg-process-when-success nil)
182     ))
183
184 (luna-define-method sign-region ((scheme pgg-scheme-gpg) 
185                                  start end &optional cleartext)
186   (let* ((pgg-gpg-user-id pgg-default-user-id)
187          (passphrase
188           (pgg-read-passphrase 
189            (format "GnuPG passphrase for %s: " pgg-gpg-user-id)
190            (luna-send scheme 'lookup-key-string 
191                       scheme pgg-gpg-user-id 'sign)))
192          (args 
193           (list (if cleartext "--clearsign" "--detach-sign")
194                 "--armor" "--batch" "--verbose" 
195                 "--local-user" pgg-gpg-user-id))
196          (inhibit-read-only t)
197          buffer-read-only)
198     (pgg-as-lbt start end 'CRLF
199       (pgg-gpg-process-region start end passphrase pgg-gpg-program args)
200       )
201     (pgg-process-when-success
202       (pgg-convert-lbt-region (point-min)(point-max) 'LF)
203       (when (re-search-forward "^-+BEGIN PGP SIGNATURE" nil t);XXX
204         (let ((packet 
205                (cdr (assq 2 (pgg-parse-armor-region 
206                              (progn (beginning-of-line 2)
207                                     (point))
208                              (point-max))))))
209           (pgg-add-passphrase-cache 
210            (cdr (assq 'key-identifier packet))
211            passphrase))))
212     ))
213
214 (luna-define-method verify-region ((scheme pgg-scheme-gpg) 
215                                    start end &optional signature)
216   (let ((args '("--batch" "--verify")))
217     (when (stringp signature)
218       (setq args (append args (list signature))))
219     (pgg-gpg-process-region start end nil pgg-gpg-program args)
220     (save-excursion
221       (set-buffer pgg-errors-buffer)
222       (goto-char (point-min))
223       (while (re-search-forward "^gpg: " nil t)
224         (replace-match ""))
225       (goto-char (point-min))
226       (let ((case-fold-search t))
227         (while (re-search-forward "^warning: " nil t)
228           (delete-region (match-beginning 0)
229                          (progn (beginning-of-line 2) (point)))))
230       (set-buffer pgg-status-buffer)
231       (goto-char (point-min))
232       (if (re-search-forward "^\\[GNUPG:] +GOODSIG +" nil t)
233           (progn
234             (set-buffer pgg-output-buffer)
235             (insert-buffer-substring pgg-errors-buffer)
236             t)
237         nil))
238     ))
239
240 (luna-define-method insert-key ((scheme pgg-scheme-gpg))
241   (let* ((pgg-gpg-user-id pgg-default-user-id)
242          (args (list "--batch" "--export" "--armor" 
243                      (concat "\"" pgg-gpg-user-id "\""))))
244     (pgg-gpg-process-region (point)(point) nil pgg-gpg-program args)
245     (insert-buffer-substring pgg-output-buffer)
246     ))
247
248 (luna-define-method snarf-keys-region ((scheme pgg-scheme-gpg)
249                                        start end)
250   (let ((args '("--import" "--batch" "-")) status)
251     (pgg-gpg-process-region start end nil pgg-gpg-program args)
252     (set-buffer pgg-status-buffer)
253     (goto-char (point-min))
254     (when (re-search-forward "^\\[GNUPG:] +IMPORT_RES +" nil t)
255       (setq status (buffer-substring (match-end 0) 
256                                      (progn (end-of-line) 
257                                             (point)))
258             status (vconcat (mapcar #'string-to-int 
259                                     (split-string status))))
260       (erase-buffer)
261       (insert (format "Imported %d key(s).
262 \tArmor contains %d key(s) [%d bad, %d old].\n"
263                       (+ (aref status 2)
264                          (aref status 10))
265                       (aref status 0)
266                       (aref status 1)
267                       (+ (aref status 4)
268                          (aref status 11)))
269               (if (zerop (aref status 9))
270                   ""
271                 "\tSecret keys are imported.\n")))
272     (append-to-buffer pgg-output-buffer
273                       (point-min)(point-max))
274     (pgg-process-when-success nil)
275     ))
276
277 (provide 'pgg-gpg)
278
279 ;;; pgg-gpg.el ends here
280