Synch up with EMIKO 1.13.11.
[elisp/semi.git] / pgg.el
1 ;;; pgg.el --- glue for the various PGP implementations.
2
3 ;; Copyright (C) 1999,2000 Daiki Ueno
4
5 ;; Author: Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
6 ;; Created: 1999/10/28
7 ;; Keywords: PGP
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
27 ;;; Commentary:
28 ;; 
29
30 ;;; Code:
31
32 (require 'calist)
33
34 (eval-and-compile (require 'luna))
35
36 (require 'pgg-def)
37 (require 'pgg-parse)
38
39 (eval-when-compile
40   (ignore-errors
41     (require 'w3)
42     (require 'url)))
43
44 (in-calist-package 'pgg)
45
46 (defun pgg-field-match-method-with-containment
47   (calist field-type field-value)
48   (let ((s-field (assq field-type calist)))
49     (cond ((null s-field)
50            (cons (cons field-type field-value) calist))
51           ((memq (cdr s-field) field-value)
52            calist))))
53
54 (define-calist-field-match-method 'signature-version
55   #'pgg-field-match-method-with-containment)
56
57 (define-calist-field-match-method 'symmetric-key-algorithm
58   #'pgg-field-match-method-with-containment)
59
60 (define-calist-field-match-method 'public-key-algorithm
61   #'pgg-field-match-method-with-containment)
62
63 (define-calist-field-match-method 'hash-algorithm
64   #'pgg-field-match-method-with-containment)
65
66 (defvar pgg-verify-condition nil
67   "Condition-tree about which PGP implementation is used for verifying.")
68
69 (defvar pgg-decrypt-condition nil
70   "Condition-tree about which PGP implementation is used for decrypting.")
71
72 (ctree-set-calist-strictly
73  'pgg-verify-condition
74  '((signature-version 3)(public-key-algorithm RSA)(hash-algorithm MD5)
75    (scheme . pgp)))
76
77 (ctree-set-calist-strictly
78  'pgg-decrypt-condition
79  '((public-key-algorithm RSA)(symmetric-key-algorithm IDEA)
80    (scheme . pgp)))
81
82 (ctree-set-calist-strictly
83  'pgg-verify-condition
84  '((signature-version 3 4)
85    (public-key-algorithm RSA ELG DSA)
86    (hash-algorithm MD5 SHA1 RIPEMD160)
87    (scheme . pgp5)))
88
89 (ctree-set-calist-strictly
90  'pgg-decrypt-condition
91  '((public-key-algorithm RSA ELG DSA)
92    (symmetric-key-algorithm 3DES CAST5 IDEA)
93    (scheme . pgp5)))
94
95 (ctree-set-calist-strictly
96  'pgg-verify-condition
97  '((signature-version 3 4)
98    (public-key-algorithm ELG-E DSA ELG)
99    (hash-algorithm MD5 SHA1 RIPEMD160)
100    (scheme . gpg)))
101
102 (ctree-set-calist-strictly
103  'pgg-decrypt-condition
104  '((public-key-algorithm ELG-E DSA ELG)
105    (symmetric-key-algorithm 3DES CAST5 BLOWFISH TWOFISH)
106    (scheme . gpg)))
107
108 ;;; @ definition of the implementation scheme
109 ;;;
110
111 (eval-and-compile
112   (luna-define-class pgg-scheme ())
113
114   (luna-define-internal-accessors 'pgg-scheme))
115
116 (luna-define-generic pgg-scheme-lookup-key (scheme string &optional type)
117   "Search keys associated with STRING")
118
119 (luna-define-generic pgg-scheme-encrypt-region (scheme start end recipients)
120   "Encrypt the current region between START and END.")
121
122 (luna-define-generic pgg-scheme-decrypt-region (scheme start end)
123   "Decrypt the current region between START and END.")
124
125 (luna-define-generic pgg-scheme-sign-region
126   (scheme start end &optional cleartext)
127   "Make detached signature from text between START and END.")
128
129 (luna-define-generic pgg-scheme-verify-region
130   (scheme start end &optional signature)
131   "Verify region between START and END
132 as the detached signature SIGNATURE.")
133
134 (luna-define-generic pgg-scheme-insert-key (scheme)
135   "Insert public key at point.")
136
137 (luna-define-generic pgg-scheme-snarf-keys-region (scheme start end)
138   "Add all public keys in region between START
139 and END to the keyring.")
140
141 ;;; @ utility functions
142 ;;;
143
144 (defvar pgg-fetch-key-function (function pgg-fetch-key-with-w3))
145
146 (defmacro pgg-make-scheme (scheme)
147   `(progn
148      (require (intern (format "pgg-%s" ,scheme)))
149      (funcall (intern (format "pgg-make-scheme-%s"
150                               ,scheme)))))
151
152 (put 'pgg-save-coding-system 'lisp-indent-function 2)
153
154 (defmacro pgg-save-coding-system (start end &rest body)
155   `(if (interactive-p)
156        (let ((buffer (current-buffer)))
157          (with-temp-buffer
158            (let (buffer-undo-list)
159              (insert-buffer-substring buffer ,start ,end)
160              (encode-coding-region (point-min)(point-max)
161                                    buffer-file-coding-system)
162              (prog1 (save-excursion ,@body)
163                (push nil buffer-undo-list)
164                (ignore-errors (undo))))))
165      (save-restriction
166        (narrow-to-region ,start ,end)
167        ,@body)))
168
169 (defun pgg-temp-buffer-show-function (buffer)
170   (let ((window (split-window-vertically
171                  (- (window-height) 
172                     (/ (window-height) 5)))))
173     (set-window-buffer window buffer)))
174
175 (defun pgg-display-output-buffer (start end status)
176   (if status
177       (progn
178         (delete-region start end)
179         (insert-buffer-substring pgg-output-buffer)
180         (decode-coding-region start (point) buffer-file-coding-system))
181     (let ((temp-buffer-show-function 
182            (function pgg-temp-buffer-show-function)))
183       (with-output-to-temp-buffer pgg-echo-buffer
184         (set-buffer standard-output)
185         (insert-buffer-substring pgg-errors-buffer)))))
186
187 (defvar pgg-passphrase-cache-expiry 16)
188 (defvar pgg-passphrase-cache (make-vector 7 0))
189
190 (defvar pgg-read-passphrase nil)
191 (defun pgg-read-passphrase (prompt &optional key)
192   (if (not pgg-read-passphrase)
193       (if (functionp 'read-passwd)
194           (setq pgg-read-passphrase 'read-passwd)
195         (if (load "passwd" t)
196             (setq pgg-read-passphrase 'read-passwd)
197           (autoload 'ange-ftp-read-passwd "ange-ftp")
198           (setq pgg-read-passphrase 'ange-ftp-read-passwd))))
199   (or (and pgg-cache-passphrase
200            key (setq key (pgg-truncate-key-identifier key))
201            (symbol-value (intern-soft key pgg-passphrase-cache)))
202       (funcall pgg-read-passphrase prompt)))
203
204 (defun pgg-add-passphrase-cache (key passphrase)
205   (setq key (pgg-truncate-key-identifier key))
206   (set (intern key pgg-passphrase-cache)
207        passphrase)
208   (run-at-time pgg-passphrase-cache-expiry nil
209                #'pgg-remove-passphrase-cache
210                key))
211
212 (defun pgg-remove-passphrase-cache (key)
213   (let ((passphrase (symbol-value (intern-soft key pgg-passphrase-cache))))
214     (when passphrase
215       (fillarray passphrase ?_)
216       (unintern key pgg-passphrase-cache))))
217
218 (defmacro pgg-convert-lbt-region (start end lbt)
219   `(let ((pgg-conversion-end (set-marker (make-marker) ,end)))
220      (goto-char ,start)
221      (case ,lbt
222        (CRLF
223         (while (progn
224                  (end-of-line)
225                  (> (marker-position pgg-conversion-end) (point)))
226           (insert "\r")
227           (forward-line 1)))
228        (LF
229         (while (re-search-forward "\r$" pgg-conversion-end t)
230           (replace-match ""))))))
231
232 (put 'pgg-as-lbt 'lisp-indent-function 3)
233
234 (defmacro pgg-as-lbt (start end lbt &rest body)
235   `(let ((inhibit-read-only t)
236          buffer-read-only
237          buffer-undo-list)
238      (pgg-convert-lbt-region ,start ,end ,lbt)
239      (let ((,end (point)))
240        ,@body)
241      (push nil buffer-undo-list)
242      (ignore-errors (undo))))
243
244 (put 'pgg-process-when-success 'lisp-indent-function 0)
245
246 (defmacro pgg-process-when-success (&rest body)
247   `(with-current-buffer pgg-output-buffer
248      (if (zerop (buffer-size)) nil ,@body t)))
249
250
251 ;;; @ interface functions
252 ;;;
253
254 ;;;###autoload
255 (defun pgg-encrypt-region (start end rcpts)
256   "Encrypt the current region between START and END for RCPTS."
257   (interactive
258    (list (region-beginning)(region-end)
259          (split-string (read-string "Recipients: ") "[ \t,]+")))
260   (let* ((entity (pgg-make-scheme pgg-default-scheme))
261          (status 
262           (pgg-save-coding-system start end
263             (pgg-scheme-encrypt-region entity (point-min)(point-max) rcpts))))
264     (when (interactive-p)
265       (pgg-display-output-buffer start end status))
266     status))
267
268 ;;;###autoload
269 (defun pgg-decrypt-region (start end)
270   "Decrypt the current region between START and END."
271   (interactive "r")
272   (let* ((packet (cdr (assq 1 (pgg-parse-armor-region start end))))
273          (scheme
274           (or pgg-scheme
275               (cdr (assq 'scheme
276                          (progn
277                            (in-calist-package 'pgg)
278                            (ctree-match-calist pgg-decrypt-condition
279                                                packet))))
280               pgg-default-scheme))
281          (entity (pgg-make-scheme scheme))
282          (status
283           (pgg-save-coding-system start end
284             (pgg-scheme-decrypt-region entity (point-min)(point-max)))))
285     (when (interactive-p)
286       (pgg-display-output-buffer start end status))
287     status))
288
289 ;;;###autoload
290 (defun pgg-sign-region (start end &optional cleartext)
291   "Make the signature from text between START and END.
292 If the optional 3rd argument CLEARTEXT is non-nil, it does not create
293 a detached signature."
294   (interactive "r")
295   (let* ((entity (pgg-make-scheme pgg-default-scheme))
296          (status (pgg-save-coding-system start end
297                    (pgg-scheme-sign-region entity (point-min)(point-max)
298                                            (or (interactive-p) cleartext)))))
299     (when (interactive-p)
300       (pgg-display-output-buffer start end status))
301     status))
302
303 ;;;###autoload
304 (defun pgg-verify-region (start end &optional signature fetch)
305   "Verify the current region between START and END.
306 If the optional 3rd argument SIGNATURE is non-nil, it is treated as
307 the detached signature of the current region.
308
309 If the optional 4th argument FETCH is non-nil, we attempt to fetch the
310 signer's public key from `pgg-default-keyserver-address'."
311   (interactive "r")
312   (let* ((packet
313           (if (null signature) nil
314             (with-temp-buffer
315               (buffer-disable-undo)
316               (set-buffer-multibyte nil)
317               (insert-file-contents signature)
318               (cdr (assq 2 (pgg-decode-armor-region 
319                             (point-min)(point-max)))))))
320          (scheme
321           (or pgg-scheme
322               (cdr (assq 'scheme
323                          (progn
324                            (in-calist-package 'pgg)
325                            (ctree-match-calist pgg-verify-condition
326                                                packet))))
327               pgg-default-scheme))
328          (entity (pgg-make-scheme scheme))
329          (key (cdr (assq 'key-identifier packet)))
330          status keyserver)
331     (and (stringp key)
332          (setq key (concat "0x" (pgg-truncate-key-identifier key)))
333          (null (let ((pgg-scheme scheme))
334                  (pgg-lookup-key key)))
335          (or fetch (interactive-p))
336          (y-or-n-p (format "Key %s not found; attempt to fetch? " key))
337          (setq keyserver
338                (or (cdr (assq 'preferred-key-server packet))
339                    pgg-default-keyserver-address))
340          (pgg-fetch-key keyserver key))
341     (setq status (pgg-save-coding-system start end
342                    (pgg-scheme-verify-region entity (point-min)(point-max)
343                                              signature)))
344     (when (interactive-p)
345       (let ((temp-buffer-show-function
346              (function pgg-temp-buffer-show-function)))
347         (with-output-to-temp-buffer pgg-echo-buffer
348           (set-buffer standard-output)
349           (insert-buffer-substring (if status pgg-output-buffer
350                                      pgg-errors-buffer)))))
351     status))
352
353 ;;;###autoload
354 (defun pgg-insert-key ()
355   "Insert the ASCII armored public key."
356   (interactive)
357   (let ((entity (pgg-make-scheme (or pgg-scheme pgg-default-scheme))))
358     (pgg-scheme-insert-key entity)))
359
360 ;;;###autoload
361 (defun pgg-snarf-keys-region (start end)
362   "Import public keys in the current region between START and END."
363   (interactive "r")
364   (let ((entity (pgg-make-scheme (or pgg-scheme pgg-default-scheme))))
365     (pgg-save-coding-system start end
366       (pgg-scheme-snarf-keys-region entity start end))))
367
368 (defun pgg-lookup-key (string &optional type)
369   (let ((entity (pgg-make-scheme (or pgg-scheme pgg-default-scheme))))
370     (pgg-scheme-lookup-key entity string type)))
371
372 (defvar pgg-insert-url-function  (function pgg-insert-url-with-w3))
373
374 (defun pgg-insert-url-with-w3 (url)
375   (require 'w3)
376   (require 'url)
377   (let (buffer-file-name)
378     (url-insert-file-contents url)))
379
380 (defvar pgg-insert-url-extra-arguments nil)
381 (defvar pgg-insert-url-program nil)
382
383 (defun pgg-insert-url-with-program (url)
384   (let ((args (copy-sequence pgg-insert-url-extra-arguments))
385         process)
386     (insert
387      (with-temp-buffer
388        (setq process
389              (apply #'start-process " *PGG url*" (current-buffer)
390                     pgg-insert-url-program (nconc args (list url))))
391        (set-process-sentinel process #'ignore)
392        (while (eq 'run (process-status process))
393          (accept-process-output process 5))
394        (delete-process process)
395        (if (and process (eq 'run (process-status process)))
396            (interrupt-process process))
397        (buffer-string)))))
398
399 (defun pgg-fetch-key (keyserver key)
400   "Attempt to fetch a KEY from KEYSERVER for addition to PGP or GnuPG keyring."
401   (with-current-buffer (get-buffer-create pgg-output-buffer)
402     (buffer-disable-undo)
403     (erase-buffer)
404     (let ((proto (if (string-match "^[a-zA-Z\\+\\.\\\\-]+:" keyserver)
405                      (substring keyserver 0 (1- (match-end 0))))))
406       (save-excursion
407         (funcall pgg-insert-url-function
408                  (if proto keyserver
409                    (format "http://%s:11371/pks/lookup?op=get&search=%s"
410                            keyserver key))))
411       (when (re-search-forward "^-+BEGIN" nil 'last)
412         (delete-region (point-min) (match-beginning 0))
413         (when (re-search-forward "^-+END" nil t)
414           (delete-region (progn (end-of-line) (point))
415                          (point-max)))
416         (insert "\n")
417         (with-temp-buffer
418           (insert-buffer-substring pgg-output-buffer)
419           (pgg-snarf-keys-region (point-min)(point-max)))))))
420
421
422 (provide 'pgg)
423
424 ;;; pgg.el ends here