1 ;;; epg-config.el --- configuration of the EasyPG Library
3 ;; Copyright (C) 2006-2016 Free Software Foundation, Inc.
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
6 ;; Keywords: PGP, GnuPG
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 (eval-when-compile (require 'cl-lib
))
28 (defconst epg-package-name
"epg"
29 "Name of this package.")
31 (defconst epg-version-number
"1.0.0"
32 "Version number of this package.")
34 (defconst epg-bug-report-address
"ueno@unixuser.org"
35 "Report bugs to this address.")
38 "Interface to the GNU Privacy Guard (GnuPG)."
44 (defcustom epg-gpg-program
(if (executable-find "gpg2")
47 "The `gpg' executable.
48 Setting this variable directly does not take effect;
49 instead use \\[customize] (see the info node `Easy Customization')."
54 (defcustom epg-gpgsm-program
"gpgsm"
55 "The `gpgsm' executable.
56 Setting this variable directly does not take effect;
57 instead use \\[customize] (see the info node `Easy Customization')."
61 (defcustom epg-gpgconf-program
"gpgconf"
62 "The `gpgconf' executable."
67 (defcustom epg-gpg-home-directory nil
68 "The directory which contains the configuration files of `epg-gpg-program'."
70 :type
'(choice (const :tag
"Default" nil
) directory
))
72 (defcustom epg-passphrase-coding-system nil
73 "Coding system to use with messages from `epg-gpg-program'."
77 (defcustom epg-debug nil
78 "If non-nil, debug output goes to the \" *epg-debug*\" buffer.
79 Note that the buffer name starts with a space."
83 (defconst epg-gpg-minimum-version
"1.4.3")
85 (defconst epg-config--program-alist
88 ("gpg2" .
"2.1.6") ("gpg" .
"1.4.3"))
92 "Alist used to obtain the usable configuration of executables.
93 The first element of each entry is protocol symbol, which is
94 either `OpenPGP' or `CMS'. The second element is a symbol where
95 the executable name is remembered. The rest of the entry is an
96 alist mapping executable names to the minimum required version
97 suitable for the use with Emacs.")
99 (defconst epg-config--configuration-constructor-alist
100 '((OpenPGP . epg-config--make-gpg-configuration
)
101 (CMS . epg-config--make-gpgsm-configuration
))
102 "Alist used to obtain the usable configuration of executables.
103 The first element of each entry is protocol symbol, which is
104 either `OpenPGP' or `CMS'. The second element is a function
105 which constructs a configuration object (actually a plist).")
107 (defvar epg--configurations nil
)
110 (defun epg-find-configuration (protocol &optional no-cache program-alist
)
111 "Find or create a usable configuration to handle PROTOCOL.
112 This function first looks at the existing configuration found by
113 the previous invocation of this function, unless NO-CACHE is non-nil.
115 Then it walks through PROGRAM-ALIST or
116 `epg-config--program-alist'. If `epg-gpg-program' or
117 `epg-gpgsm-program' is already set with custom, use it.
118 Otherwise, it tries the programs listed in the entry until the
119 version requirement is met."
120 (unless program-alist
121 (setq program-alist epg-config--program-alist
))
122 (let ((entry (assq protocol program-alist
)))
124 (error "Unknown protocol %S" protocol
))
125 (cl-destructuring-bind (symbol . alist
)
128 (alist-get protocol epg-config--configuration-constructor-alist
)))
129 (or (and (not no-cache
) (alist-get protocol epg--configurations
))
130 ;; If the executable value is already set with M-x
131 ;; customize, use it without checking.
132 (if (and symbol
(get symbol
'saved-value
))
134 (funcall constructor
(symbol-value symbol
))))
135 (push (cons protocol configuration
) epg--configurations
)
138 (dolist (program-version alist
)
139 (let ((executable (executable-find (car program-version
))))
142 (funcall constructor executable
)))
144 (epg-check-configuration configuration
145 (cdr program-version
))
148 (push (cons protocol configuration
)
149 epg--configurations
))
150 (throw 'found configuration
)))))))))))))
152 ;; Create an `epg-configuration' object for `gpg', using PROGRAM.
153 (defun epg-config--make-gpg-configuration (program)
154 (let (config groups type args
)
156 (apply #'call-process program nil
(list t nil
) nil
157 (append (if epg-gpg-home-directory
158 (list "--homedir" epg-gpg-home-directory
))
159 '("--with-colons" "--list-config")))
160 (goto-char (point-min))
161 (while (re-search-forward "^cfg:\\([^:]+\\):\\(.*\\)" nil t
)
162 (setq type
(intern (match-string 1))
163 args
(match-string 2))
166 (if (string-match "\\`\\([^:]+\\):" args
)
168 (cons (cons (downcase (match-string 1 args
))
169 (delete "" (split-string
175 (message "Invalid group configuration: %S" args
))))
176 ((memq type
'(pubkey cipher digest compress
))
177 (if (string-match "\\`\\([0-9]+\\)\\(;[0-9]+\\)*" args
)
180 (mapcar #'string-to-number
181 (delete "" (split-string args
";"))))
184 (message "Invalid %S algorithm configuration: %S"
187 (setq config
(cons (cons type args
) config
))))))
188 (push (cons 'program program
) config
)
190 (cons (cons 'groups groups
) config
)
193 ;; Create an `epg-configuration' object for `gpgsm', using PROGRAM.
194 (defun epg-config--make-gpgsm-configuration (program)
196 (call-process program nil
(list t nil
) nil
"--version")
197 (goto-char (point-min))
198 (when (looking-at "\\S-+ (")
199 (goto-char (match-end 0))
202 (skip-syntax-forward "-" (point-at-eol))
203 (list (cons 'program program
)
204 (cons 'version
(buffer-substring (point) (point-at-eol)))))))
207 (defun epg-configuration ()
208 "Return a list of internal configuration parameters of `epg-gpg-program'."
209 (declare (obsolete epg-find-configuration
"25.1"))
210 (epg-config--make-gpg-configuration epg-gpg-program
))
212 (defun epg-config--parse-version (string)
215 (while (eq index
(string-match "\\([0-9]+\\)\\.?" string index
))
216 (setq version
(cons (string-to-number (match-string 1 string
))
218 index
(match-end 0)))
221 (defun epg-config--compare-version (v1 v2
)
222 (while (and v1 v2
(= (car v1
) (car v2
)))
223 (setq v1
(cdr v1
) v2
(cdr v2
)))
224 (- (or (car v1
) 0) (or (car v2
) 0)))
227 (defun epg-check-configuration (config &optional minimum-version
)
228 "Verify that a sufficient version of GnuPG is installed."
229 (let ((entry (assq 'version config
))
232 (stringp (cdr entry
)))
233 (error "Undetermined version: %S" entry
))
234 (setq version
(epg-config--parse-version (cdr entry
))
235 minimum-version
(epg-config--parse-version
237 epg-gpg-minimum-version
)))
238 (unless (>= (epg-config--compare-version version minimum-version
) 0)
239 (error "Unsupported version: %s" (cdr entry
)))))
242 (defun epg-expand-group (config group
)
243 "Look at CONFIG and try to expand GROUP."
244 (let ((entry (assq 'groups config
)))
246 (setq entry
(assoc (downcase group
) (cdr entry
))))
249 (provide 'epg-config
)
251 ;;; epg-config.el ends here