Mercurial > emacs
annotate lisp/epa-file.el @ 103847:a647dce7ce6b
(Horizontal Scrolling): Re-word to remove widow.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 11 Jul 2009 02:49:56 +0000 |
parents | 15551118906e |
children | e9b2a988e884 |
rev | line source |
---|---|
91647 | 1 ;;; epa-file.el --- the EasyPG Assistant, transparent file encryption |
100908 | 2 ;; Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
91647 | 3 |
4 ;; Author: Daiki Ueno <ueno@unixuser.org> | |
5 ;; Keywords: PGP, GnuPG | |
6 | |
7 ;; This file is part of GNU Emacs. | |
8 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94512
diff
changeset
|
9 ;; GNU Emacs is free software: you can redistribute it and/or modify |
91647 | 10 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94512
diff
changeset
|
11 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94512
diff
changeset
|
12 ;; (at your option) any later version. |
91647 | 13 |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94512
diff
changeset
|
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
91647 | 21 |
22 ;;; Code: | |
23 | |
24 (require 'epa) | |
94755
14eda1195ec3
Provide/require epa-hook, not epa-file-hook.
Eli Zaretskii <eliz@gnu.org>
parents:
94678
diff
changeset
|
25 (require 'epa-hook) |
91647 | 26 |
27 (defcustom epa-file-cache-passphrase-for-symmetric-encryption nil | |
28 "If non-nil, cache passphrase for symmetric encryption." | |
29 :type 'boolean | |
30 :group 'epa-file) | |
31 | |
32 (defcustom epa-file-select-keys nil | |
33 "If non-nil, always asks user to select recipients." | |
34 :type 'boolean | |
35 :group 'epa-file) | |
36 | |
37 (defvar epa-file-passphrase-alist nil) | |
38 | |
39 (eval-and-compile | |
40 (if (fboundp 'encode-coding-string) | |
41 (defalias 'epa-file--encode-coding-string 'encode-coding-string) | |
42 (defalias 'epa-file--encode-coding-string 'identity))) | |
43 | |
44 (eval-and-compile | |
45 (if (fboundp 'decode-coding-string) | |
46 (defalias 'epa-file--decode-coding-string 'decode-coding-string) | |
47 (defalias 'epa-file--decode-coding-string 'identity))) | |
48 | |
49 (defun epa-file-passphrase-callback-function (context key-id file) | |
50 (if (and epa-file-cache-passphrase-for-symmetric-encryption | |
51 (eq key-id 'SYM)) | |
52 (progn | |
53 (setq file (file-truename file)) | |
54 (let ((entry (assoc file epa-file-passphrase-alist)) | |
55 passphrase) | |
56 (or (copy-sequence (cdr entry)) | |
57 (progn | |
58 (unless entry | |
59 (setq entry (list file) | |
60 epa-file-passphrase-alist | |
61 (cons entry | |
62 epa-file-passphrase-alist))) | |
63 (setq passphrase (epa-passphrase-callback-function context | |
64 key-id nil)) | |
65 (setcdr entry (copy-sequence passphrase)) | |
66 passphrase)))) | |
67 (epa-passphrase-callback-function context key-id nil))) | |
68 | |
94512
d10cd2d8d9ae
* epa-file-hook.el: New file split from epa-file.el.
Daiki Ueno <ueno@unixuser.org>
parents:
94423
diff
changeset
|
69 ;;;###autoload |
91647 | 70 (defun epa-file-handler (operation &rest args) |
94423
3898a5665f50
Daiki Ueno <ueno at unixuser.org>
Glenn Morris <rgm@gnu.org>
parents:
94419
diff
changeset
|
71 (save-match-data |
3898a5665f50
Daiki Ueno <ueno at unixuser.org>
Glenn Morris <rgm@gnu.org>
parents:
94419
diff
changeset
|
72 (let ((op (get operation 'epa-file))) |
3898a5665f50
Daiki Ueno <ueno at unixuser.org>
Glenn Morris <rgm@gnu.org>
parents:
94419
diff
changeset
|
73 (if op |
3898a5665f50
Daiki Ueno <ueno at unixuser.org>
Glenn Morris <rgm@gnu.org>
parents:
94419
diff
changeset
|
74 (apply op args) |
3898a5665f50
Daiki Ueno <ueno at unixuser.org>
Glenn Morris <rgm@gnu.org>
parents:
94419
diff
changeset
|
75 (epa-file-run-real-handler operation args))))) |
3898a5665f50
Daiki Ueno <ueno at unixuser.org>
Glenn Morris <rgm@gnu.org>
parents:
94419
diff
changeset
|
76 |
91647 | 77 (defun epa-file-run-real-handler (operation args) |
78 (let ((inhibit-file-name-handlers | |
79 (cons 'epa-file-handler | |
80 (and (eq inhibit-file-name-operation operation) | |
81 inhibit-file-name-handlers))) | |
82 (inhibit-file-name-operation operation)) | |
83 (apply operation args))) | |
84 | |
85 (defun epa-file-decode-and-insert (string file visit beg end replace) | |
86 (if (fboundp 'decode-coding-inserted-region) | |
87 (save-restriction | |
88 (narrow-to-region (point) (point)) | |
103016
15551118906e
epa-file: fix garble with decode-coding-inserted-region
Daiki Ueno <ueno@unixuser.org>
parents:
100908
diff
changeset
|
89 (insert (if enable-multibyte-characters |
15551118906e
epa-file: fix garble with decode-coding-inserted-region
Daiki Ueno <ueno@unixuser.org>
parents:
100908
diff
changeset
|
90 (string-to-multibyte string) |
15551118906e
epa-file: fix garble with decode-coding-inserted-region
Daiki Ueno <ueno@unixuser.org>
parents:
100908
diff
changeset
|
91 string)) |
91647 | 92 (decode-coding-inserted-region |
93 (point-min) (point-max) | |
94 (substring file 0 (string-match epa-file-name-regexp file)) | |
103016
15551118906e
epa-file: fix garble with decode-coding-inserted-region
Daiki Ueno <ueno@unixuser.org>
parents:
100908
diff
changeset
|
95 visit beg end replace)) |
91647 | 96 (insert (epa-file--decode-coding-string string (or coding-system-for-read |
97 'undecided))))) | |
98 | |
99 (defvar last-coding-system-used) | |
100 (defun epa-file-insert-file-contents (file &optional visit beg end replace) | |
101 (barf-if-buffer-read-only) | |
102 (if (and visit (or beg end)) | |
103 (error "Attempt to visit less than an entire file")) | |
104 (setq file (expand-file-name file)) | |
105 (let* ((local-copy | |
98409
cb5ef7767703
(epa-file-insert-file-contents): Fix typo.
Daiki Ueno <ueno@unixuser.org>
parents:
95478
diff
changeset
|
106 (condition-case nil |
91647 | 107 (epa-file-run-real-handler #'file-local-copy (list file)) |
108 (error))) | |
109 (local-file (or local-copy file)) | |
110 (context (epg-make-context)) | |
111 string length entry) | |
100456
e4798aef9a53
* epa-file.el (epa-file-insert-file-contents): Set
Daiki Ueno <ueno@unixuser.org>
parents:
100304
diff
changeset
|
112 (if visit |
e4798aef9a53
* epa-file.el (epa-file-insert-file-contents): Set
Daiki Ueno <ueno@unixuser.org>
parents:
100304
diff
changeset
|
113 (setq buffer-file-name file)) |
91647 | 114 (epg-context-set-passphrase-callback |
115 context | |
116 (cons #'epa-file-passphrase-callback-function | |
117 local-file)) | |
118 (epg-context-set-progress-callback context | |
119 #'epa-progress-callback-function) | |
120 (unwind-protect | |
121 (progn | |
122 (if replace | |
123 (goto-char (point-min))) | |
124 (condition-case error | |
125 (setq string (epg-decrypt-file context local-file nil)) | |
126 (error | |
127 (if (setq entry (assoc file epa-file-passphrase-alist)) | |
128 (setcdr entry nil)) | |
129 (signal 'file-error | |
130 (cons "Opening input file" (cdr error))))) | |
131 (make-local-variable 'epa-file-encrypt-to) | |
132 (setq epa-file-encrypt-to | |
133 (mapcar #'car (epg-context-result-for context 'encrypted-to))) | |
134 (if (or beg end) | |
135 (setq string (substring string (or beg 0) end))) | |
136 (save-excursion | |
137 (save-restriction | |
138 (narrow-to-region (point) (point)) | |
139 (epa-file-decode-and-insert string file visit beg end replace) | |
140 (setq length (- (point-max) (point-min)))) | |
141 (if replace | |
100304
4dfef179eed3
* epa-hook.el (epa-file-find-file-hook): Don't mark the current
Daiki Ueno <ueno@unixuser.org>
parents:
98409
diff
changeset
|
142 (delete-region (point) (point-max))) |
100456
e4798aef9a53
* epa-file.el (epa-file-insert-file-contents): Set
Daiki Ueno <ueno@unixuser.org>
parents:
100304
diff
changeset
|
143 (if visit |
e4798aef9a53
* epa-file.el (epa-file-insert-file-contents): Set
Daiki Ueno <ueno@unixuser.org>
parents:
100304
diff
changeset
|
144 (set-visited-file-modtime)))) |
91647 | 145 (if (and local-copy |
146 (file-exists-p local-copy)) | |
147 (delete-file local-copy))) | |
148 (list file length))) | |
149 (put 'insert-file-contents 'epa-file 'epa-file-insert-file-contents) | |
150 | |
151 (defun epa-file-write-region (start end file &optional append visit lockname | |
152 mustbenew) | |
153 (if append | |
154 (error "Can't append to the file.")) | |
155 (setq file (expand-file-name file)) | |
156 (let* ((coding-system (or coding-system-for-write | |
157 (if (fboundp 'select-safe-coding-system) | |
158 ;; This is needed since Emacs 22 has | |
159 ;; no-conversion setting for *.gpg in | |
160 ;; `auto-coding-alist'. | |
161 (let ((buffer-file-name | |
162 (file-name-sans-extension file))) | |
163 (select-safe-coding-system | |
164 (point-min) (point-max))) | |
165 buffer-file-coding-system))) | |
166 (context (epg-make-context)) | |
167 (coding-system-for-write 'binary) | |
168 string entry | |
169 (recipients | |
170 (cond | |
171 ((listp epa-file-encrypt-to) epa-file-encrypt-to) | |
172 ((stringp epa-file-encrypt-to) (list epa-file-encrypt-to))))) | |
173 (epg-context-set-passphrase-callback | |
174 context | |
175 (cons #'epa-file-passphrase-callback-function | |
176 file)) | |
177 (epg-context-set-progress-callback context | |
178 #'epa-progress-callback-function) | |
179 (epg-context-set-armor context epa-armor) | |
180 (condition-case error | |
181 (setq string | |
182 (epg-encrypt-string | |
183 context | |
184 (if (stringp start) | |
185 (epa-file--encode-coding-string start coding-system) | |
95477
57f3dde2b9be
(epa-file-write-region): Write the entire buffer
Daiki Ueno <ueno@unixuser.org>
parents:
94755
diff
changeset
|
186 (unless start |
95478 | 187 (setq start (point-min) |
188 end (point-max))) | |
91647 | 189 (epa-file--encode-coding-string (buffer-substring start end) |
190 coding-system)) | |
191 (if (or epa-file-select-keys | |
192 (not (local-variable-p 'epa-file-encrypt-to | |
193 (current-buffer)))) | |
194 (epa-select-keys | |
195 context | |
196 "Select recipents for encryption. | |
197 If no one is selected, symmetric encryption will be performed. " | |
198 recipients) | |
199 (if epa-file-encrypt-to | |
200 (epg-list-keys context recipients))))) | |
201 (error | |
202 (if (setq entry (assoc file epa-file-passphrase-alist)) | |
203 (setcdr entry nil)) | |
204 (signal 'file-error (cons "Opening output file" (cdr error))))) | |
205 (epa-file-run-real-handler | |
206 #'write-region | |
207 (list string nil file append visit lockname mustbenew)) | |
208 (if (boundp 'last-coding-system-used) | |
209 (setq last-coding-system-used coding-system)) | |
210 (if (eq visit t) | |
211 (progn | |
212 (setq buffer-file-name file) | |
213 (set-visited-file-modtime)) | |
214 (if (stringp visit) | |
215 (progn | |
216 (set-visited-file-modtime) | |
217 (setq buffer-file-name visit)))) | |
218 (if (or (eq visit t) | |
219 (eq visit nil) | |
220 (stringp visit)) | |
221 (message "Wrote %s" buffer-file-name)))) | |
222 (put 'write-region 'epa-file 'epa-file-write-region) | |
223 | |
224 (defun epa-file-select-keys () | |
225 "Select recipients for encryption." | |
226 (interactive) | |
227 (make-local-variable 'epa-file-encrypt-to) | |
228 (setq epa-file-encrypt-to | |
93002
d876f5372472
EasyPG: Fix bug with C-x C-s after M-x epa-file-select-keys.
Michael Olson <mwolson@gnu.org>
parents:
91731
diff
changeset
|
229 (mapcar |
d876f5372472
EasyPG: Fix bug with C-x C-s after M-x epa-file-select-keys.
Michael Olson <mwolson@gnu.org>
parents:
91731
diff
changeset
|
230 (lambda (key) |
d876f5372472
EasyPG: Fix bug with C-x C-s after M-x epa-file-select-keys.
Michael Olson <mwolson@gnu.org>
parents:
91731
diff
changeset
|
231 (epg-sub-key-id (car (epg-key-sub-key-list key)))) |
91647 | 232 (epa-select-keys |
233 (epg-make-context) | |
234 "Select recipents for encryption. | |
93002
d876f5372472
EasyPG: Fix bug with C-x C-s after M-x epa-file-select-keys.
Michael Olson <mwolson@gnu.org>
parents:
91731
diff
changeset
|
235 If no one is selected, symmetric encryption will be performed. ")))) |
91647 | 236 |
237 ;;;###autoload | |
238 (defun epa-file-enable () | |
239 (interactive) | |
240 (if (memq epa-file-handler file-name-handler-alist) | |
241 (message "`epa-file' already enabled") | |
242 (setq file-name-handler-alist | |
243 (cons epa-file-handler file-name-handler-alist)) | |
94417
1a8916b995cf
* epa-file.el (auto-encryption-mode): Rename from epa-file-mode.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93002
diff
changeset
|
244 (add-hook 'find-file-hook 'epa-file-find-file-hook) |
91647 | 245 (setq auto-mode-alist (cons epa-file-auto-mode-alist-entry auto-mode-alist)) |
246 (message "`epa-file' enabled"))) | |
247 | |
248 ;;;###autoload | |
249 (defun epa-file-disable () | |
250 (interactive) | |
251 (if (memq epa-file-handler file-name-handler-alist) | |
252 (progn | |
253 (setq file-name-handler-alist | |
254 (delq epa-file-handler file-name-handler-alist)) | |
94417
1a8916b995cf
* epa-file.el (auto-encryption-mode): Rename from epa-file-mode.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93002
diff
changeset
|
255 (remove-hook 'find-file-hook 'epa-file-find-file-hook) |
91647 | 256 (setq auto-mode-alist (delq epa-file-auto-mode-alist-entry |
257 auto-mode-alist)) | |
258 (message "`epa-file' disabled")) | |
259 (message "`epa-file' already disabled"))) | |
260 | |
261 (provide 'epa-file) | |
262 | |
91687 | 263 ;; arch-tag: 5715152f-0eb1-4dbc-9008-07098775314d |
91647 | 264 ;;; epa-file.el ends here |