a86d8d87146475c36e487e9392689c3ce9af49ee
[gnus] / lisp / auth-source.el
1 ;;; auth-source.el --- authentication sources for Gnus and Emacs
2
3 ;; Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
4
5 ;; Author: Ted Zlatanov <tzz@lifelogs.com>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; This is the auth-source.el package.  It lets users tell Gnus how to
26 ;; authenticate in a single place.  Simplicity is the goal.  Instead
27 ;; of providing 5000 options, we'll stick to simple, easy to
28 ;; understand options.
29
30 ;; See the auth.info Info documentation for details.
31
32 ;;; Code:
33
34 (require 'gnus-util)
35
36 (eval-when-compile (require 'cl))
37 (autoload 'netrc-machine-user-or-password "netrc")
38 (autoload 'secrets-create-item "secrets")
39 (autoload 'secrets-delete-item "secrets")
40 (autoload 'secrets-get-alias "secrets")
41 (autoload 'secrets-get-attribute "secrets")
42 (autoload 'secrets-get-secret "secrets")
43 (autoload 'secrets-list-collections "secrets")
44 (autoload 'secrets-search-items "secrets")
45
46 (defgroup auth-source nil
47   "Authentication sources."
48   :version "23.1" ;; No Gnus
49   :group 'gnus)
50
51 (defcustom auth-source-protocols '((imap "imap" "imaps" "143" "993")
52                                    (pop3 "pop3" "pop" "pop3s" "110" "995")
53                                    (ssh  "ssh" "22")
54                                    (sftp "sftp" "115")
55                                    (smtp "smtp" "25"))
56   "List of authentication protocols and their names"
57
58   :group 'auth-source
59   :version "23.2" ;; No Gnus
60   :type '(repeat :tag "Authentication Protocols"
61                  (cons :tag "Protocol Entry"
62                        (symbol :tag "Protocol")
63                        (repeat :tag "Names"
64                                (string :tag "Name")))))
65
66 ;;; generate all the protocols in a format Customize can use
67 ;;; TODO: generate on the fly from auth-source-protocols
68 (defconst auth-source-protocols-customize
69   (mapcar (lambda (a)
70             (let ((p (car-safe a)))
71               (list 'const
72                     :tag (upcase (symbol-name p))
73                     p)))
74           auth-source-protocols))
75
76 (defvar auth-source-cache (make-hash-table :test 'equal)
77   "Cache for auth-source data")
78
79 (defcustom auth-source-do-cache t
80   "Whether auth-source should cache information."
81   :group 'auth-source
82   :version "23.2" ;; No Gnus
83   :type `boolean)
84
85 (defcustom auth-source-debug nil
86   "Whether auth-source should log debug messages.
87 Also see `auth-source-hide-passwords'.
88
89 If the value is nil, debug messages are not logged.
90 If the value is t, debug messages are logged with `message'.
91  In that case, your authentication data will be in the
92  clear (except for passwords, which are always stripped out).
93 If the value is a function, debug messages are logged by calling
94  that function using the same arguments as `message'."
95   :group 'auth-source
96   :version "23.2" ;; No Gnus
97   :type `(choice
98           :tag "auth-source debugging mode"
99           (const :tag "Log using `message' to the *Messages* buffer" t)
100           (function :tag "Function that takes arguments like `message'")
101           (const :tag "Don't log anything" nil)))
102
103 (defcustom auth-source-hide-passwords t
104   "Whether auth-source should hide passwords in log messages.
105 Only relevant if `auth-source-debug' is not nil."
106   :group 'auth-source
107   :version "23.2" ;; No Gnus
108   :type `boolean)
109
110 (defcustom auth-sources '((:source "~/.authinfo.gpg")
111                           (:source "~/.authinfo"))
112   "List of authentication sources.
113
114 The default will get login and password information from a .gpg
115 file, which you should set up with the EPA/EPG packages to be
116 encrypted.  See the auth.info manual for details.
117
118 Each entry is the authentication type with optional properties.
119
120 It's best to customize this with `M-x customize-variable' because the choices
121 can get pretty complex."
122   :group 'auth-source
123   :version "23.2" ;; No Gnus
124   :type `(repeat :tag "Authentication Sources"
125                  (list :tag "Source definition"
126                        (const :format "" :value :source)
127                        (choice :tag "Authentication backend choice"
128                                (string :tag "Authentication Source (file)")
129                                (list :tag "secrets.el (Secret Service API/KWallet/GNOME Keyring)"
130                                      (const :format "" :value :secrets)
131                                      (choice :tag "Collection to use"
132                                              (string :tag "Collection name")
133                                              (const :tag "Default" 'default)
134                                              (const :tag "Login" "login")
135                                              (const :tag "Temporary" "session"))))
136                        (repeat :tag "Extra Parameters" :inline t
137                                (choice :tag "Extra parameter"
138                                        (list :tag "Host (omit to match as a fallback)"
139                                              (const :format "" :value :host)
140                                              (choice :tag "Host (machine) choice"
141                                                      (const :tag "Any" t)
142                                                      (regexp :tag "Host (machine) regular expression")))
143                                        (list :tag "Protocol (omit to match as a fallback)"
144                                              (const :format "" :value :protocol)
145                                              (choice :tag "Protocol"
146                                                      (const :tag "Any" t)
147                                                      ,@auth-source-protocols-customize))
148                                        (list :tag "User  (omit to match as a fallback)" :inline t
149                                              (const :format "" :value :user)
150                                              (choice :tag "Personality or username"
151                                                      (const :tag "Any" t)
152                                                      (string :tag "Specific user name"))))))))
153
154 ;; temp for debugging
155 ;; (unintern 'auth-source-protocols)
156 ;; (unintern 'auth-sources)
157 ;; (customize-variable 'auth-sources)
158 ;; (setq auth-sources nil)
159 ;; (format "%S" auth-sources)
160 ;; (customize-variable 'auth-source-protocols)
161 ;; (setq auth-source-protocols nil)
162 ;; (format "%S" auth-source-protocols)
163 ;; (auth-source-pick nil :host "a" :port 'imap)
164 ;; (auth-source-user-or-password "login" "imap.myhost.com" 'imap)
165 ;; (auth-source-user-or-password "password" "imap.myhost.com" 'imap)
166 ;; (auth-source-user-or-password-imap "login" "imap.myhost.com")
167 ;; (auth-source-user-or-password-imap "password" "imap.myhost.com")
168 ;; (auth-source-protocol-defaults 'imap)
169
170 ;; (let ((auth-source-debug 'debug)) (auth-source-debug "hello"))
171 ;; (let ((auth-source-debug t)) (auth-source-debug "hello"))
172 ;; (let ((auth-source-debug nil)) (auth-source-debug "hello"))
173 (defun auth-source-do-debug (&rest msg)
174   ;; set logger to either the function in auth-source-debug or 'message
175   ;; note that it will be 'message if auth-source-debug is nil, so
176   ;; we also check the value
177   (when auth-source-debug
178     (let ((logger (if (functionp auth-source-debug)
179                       auth-source-debug
180                     'message)))
181       (apply logger msg))))
182
183 ;; (auth-source-pick nil :host "any" :protocol 'imap :user "joe")
184 ;; (auth-source-pick t :host "any" :protocol 'imap :user "joe")
185 ;; (setq auth-sources '((:source (:secrets default) :host t :protocol t :user "joe")
186 ;;                   (:source (:secrets "session") :host t :protocol t :user "joe")
187 ;;                   (:source (:secrets "login") :host t :protocol t)
188 ;;                   (:source "~/.authinfo.gpg" :host t :protocol t)))
189
190 ;; (setq auth-sources '((:source (:secrets default) :host t :protocol t :user "joe")
191 ;;                   (:source (:secrets "session") :host t :protocol t :user "joe")
192 ;;                   (:source (:secrets "login") :host t :protocol t)
193 ;;                   ))
194
195 ;; (setq auth-sources '((:source "~/.authinfo.gpg" :host t :protocol t)))
196
197 (defun auth-get-source (entry)
198   "Return the source string of ENTRY, which is one entry in `auth-sources'.
199 If it is a Secret Service API, return the collection name, otherwise
200 the file name."
201   (let ((source (plist-get entry :source)))
202     (if (stringp source)
203         source
204       ;; Secret Service API.
205       (setq source (plist-get source :secrets))
206       (when (eq source 'default)
207         (setq source (or (secrets-get-alias "default") "login")))
208       (or source "session"))))
209
210 (defun auth-source-pick (&rest spec)
211   "Parse `auth-sources' for matches of the SPEC plist.
212
213 Common keys are :host, :protocol, and :user.  A value of t in
214 SPEC means to always succeed in the match.  A string value is
215 matched as a regex."
216   (let ((keys (loop for i below (length spec) by 2 collect (nth i spec)))
217         choices)
218     (dolist (choice (copy-tree auth-sources) choices)
219       (let ((source (plist-get choice :source))
220             (match t))
221         (when
222             (and
223              ;; Check existence of source.
224              (if (consp source)
225                  ;; Secret Service API.
226                  (member (auth-get-source choice) (secrets-list-collections))
227                ;; authinfo file.
228                (file-exists-p source))
229
230              ;; Check keywords.
231              (dolist (k keys match)
232                (let* ((v (plist-get spec k))
233                       (choicev (if (plist-member choice k)
234                                    (plist-get choice k) t)))
235                  (setq match
236                        (and match
237                             (or
238                              ;; source always matches spec key
239                              (eq t choicev)
240                              ;; source key gives regex to match against spec
241                              (and (stringp choicev) (string-match choicev v))
242                              ;; source key gives symbol to match against spec
243                              (and (symbolp choicev) (eq choicev v))))))))
244
245           (add-to-list 'choices choice 'append))))))
246
247 (defun auth-source-retrieve (mode entry &rest spec)
248   "Retrieve MODE credentials according to SPEC from ENTRY."
249   (catch 'no-password
250     (let ((host (plist-get spec :host))
251           (user (plist-get spec :user))
252           (prot (plist-get spec :protocol))
253           (source (plist-get entry :source))
254           result)
255       (cond
256        ;; Secret Service API.
257        ((consp source)
258         (let ((coll (auth-get-source entry))
259               item)
260           ;; Loop over candidates with a matching host attribute.
261           (dolist (elt (secrets-search-items coll :host host) item)
262             (when (and (or (not user)
263                            (string-equal
264                             user (secrets-get-attribute coll elt :user)))
265                        (or (not prot)
266                            (string-equal
267                             prot (secrets-get-attribute coll elt :protocol))))
268               (setq item elt)
269               (return elt)))
270           ;; Compose result.
271           (when item
272             (setq result
273                   (mapcar (lambda (m)
274                             (if (string-equal "password" m)
275                                 (or (secrets-get-secret coll item)
276                                     ;; When we do not find a password,
277                                     ;; we return nil anyway.
278                                     (throw 'no-password nil))
279                               (or (secrets-get-attribute coll item :user)
280                                   user)))
281                           (if (consp mode) mode (list mode)))))
282           (if (consp mode) result (car result))))
283        ;; Anything else is netrc.
284        (t
285         (let ((search (list source (list host) (list (format "%s" prot))
286                             (auth-source-protocol-defaults prot))))
287           (setq result
288                 (mapcar (lambda (m)
289                           (if (string-equal "password" m)
290                               (or (apply
291                                    'netrc-machine-user-or-password m search)
292                                   ;; When we do not find a password, we
293                                   ;; return nil anyway.
294                                   (throw 'no-password nil))
295                             (or (apply
296                                  'netrc-machine-user-or-password m search)
297                                 user)))
298                         (if (consp mode) mode (list mode)))))
299         (if (consp mode) result (car result)))))))
300
301 (defun auth-source-create (mode entry &rest spec)
302   "Create interactively credentials according to SPEC in ENTRY.
303 Return structure as specified by MODE."
304   (let* ((host (plist-get spec :host))
305          (user (plist-get spec :user))
306          (prot (plist-get spec :protocol))
307          (source (plist-get entry :source))
308          (name (concat (if user (format "%s@" user))
309                        host
310                        (if prot (format ":%s" prot))))
311          result)
312     (setq result
313           (mapcar
314            (lambda (m)
315              (if (equal "password" m)
316                  (let ((passwd (read-passwd "Password: ")))
317                    (cond
318                     ;; Secret Service API.
319                     ((consp source)
320                      (apply
321                       'secrets-create-item
322                       (auth-get-source entry) name passwd spec))
323                     (t)) ;; netrc not implemented yes.
324                    passwd)
325                (or
326                 ;; the originally requested :user
327                 user
328                 "unknown-user")))
329            (if (consp mode) mode (list mode))))
330     (if (consp mode) result (car result))))
331
332 (defun auth-source-delete (entry &rest spec)
333   "Delete credentials according to SPEC in ENTRY."
334   (let ((host (plist-get spec :host))
335         (user (plist-get spec :user))
336         (prot (plist-get spec :protocol))
337         (source (plist-get entry :source)))
338     (cond
339      ;; Secret Service API.
340      ((consp source)
341       (let ((coll (auth-get-source entry)))
342         ;; Loop over candidates with a matching host attribute.
343         (dolist (elt (secrets-search-items coll :host host))
344           (when (and (or (not user)
345                          (string-equal
346                           user (secrets-get-attribute coll elt :user)))
347                      (or (not prot)
348                          (string-equal
349                           prot (secrets-get-attribute coll elt :protocol))))
350             (secrets-delete-item coll elt)))))
351      (t)))) ;; netrc not implemented yes.
352
353 (defun auth-source-forget-user-or-password
354   (mode host protocol &optional username)
355   "Remove cached authentication token."
356   (interactive "slogin/password: \nsHost: \nsProtocol: \n") ;for testing
357   (remhash
358    (if username
359        (format "%s %s:%s %s" mode host protocol username)
360      (format "%s %s:%s" mode host protocol))
361    auth-source-cache))
362
363 (defun auth-source-forget-all-cached ()
364   "Forget all cached auth-source authentication tokens."
365   (interactive)
366   (setq auth-source-cache (make-hash-table :test 'equal)))
367
368 ;; (progn
369 ;;   (auth-source-forget-all-cached)
370 ;;   (list
371 ;;    (auth-source-user-or-password '("login" "password") "imap.myhost.com" "other")
372 ;;    (auth-source-user-or-password '("login" "password") "imap.myhost.com" "other" "tzz")
373 ;;    (auth-source-user-or-password '("login" "password") "imap.myhost.com" "other" "joe")))
374
375 (defun auth-source-user-or-password
376   (mode host protocol &optional username create-missing delete-existing)
377   "Find MODE (string or list of strings) matching HOST and PROTOCOL.
378
379 USERNAME is optional and will be used as \"login\" in a search
380 across the Secret Service API (see secrets.el) if the resulting
381 items don't have a username.  This means that if you search for
382 username \"joe\" and it matches an item but the item doesn't have
383 a :user attribute, the username \"joe\" will be returned.
384
385 A non nil DELETE-EXISTING means deleting any matching password
386 entry in the respective sources.  This is useful only when
387 CREATE-MISSING is non nil as well; the intended use case is to
388 remove wrong password entries.
389
390 If no matching entry is found, and CREATE-MISSING is non nil,
391 the password will be retrieved interactively, and it will be
392 stored in the password database which matches best (see
393 `auth-sources').
394
395 MODE can be \"login\" or \"password\"."
396   (auth-source-do-debug
397    "auth-source-user-or-password: get %s for %s (%s) + user=%s"
398    mode host protocol username)
399   (let* ((listy (listp mode))
400          (mode (if listy mode (list mode)))
401          (cname (if username
402                     (format "%s %s:%s %s" mode host protocol username)
403                   (format "%s %s:%s" mode host protocol)))
404          (search (list :host host :protocol protocol))
405          (search (if username (append search (list :user username)) search))
406          (found (if (not delete-existing)
407                     (gethash cname auth-source-cache)
408                   (remhash cname auth-source-cache)
409                   nil)))
410     (if found
411         (progn
412           (auth-source-do-debug
413            "auth-source-user-or-password: cached %s=%s for %s (%s) + %s"
414            mode
415            ;; don't show the password
416            (if (and (member "password" mode) auth-source-hide-passwords)
417                "SECRET"
418              found)
419            host protocol username)
420           found)                        ; return the found data
421       ;; else, if not found
422       (let ((choices (apply 'auth-source-pick search)))
423         (dolist (choice choices)
424           (if delete-existing
425               (apply 'auth-source-delete choice search)
426             (setq found (apply 'auth-source-retrieve mode choice search)))
427           (and found (return found)))
428
429         ;; We haven't found something, so we will create it interactively.
430         (when (and (not found) choices create-missing)
431           (setq found (apply 'auth-source-create mode (car choices) search)))
432
433         ;; Cache the result.
434         (when found
435           (auth-source-do-debug
436            "auth-source-user-or-password: found %s=%s for %s (%s) + %s"
437            mode
438            ;; don't show the password
439            (if (and (member "password" mode) auth-source-hide-passwords)
440                "SECRET" found)
441            host protocol username)
442           (setq found (if listy found (car-safe found)))
443           (when auth-source-do-cache
444             (puthash cname found auth-source-cache)))
445
446         found))))
447
448 (defun auth-source-protocol-defaults (protocol)
449   "Return a list of default ports and names for PROTOCOL."
450   (cdr-safe (assoc protocol auth-source-protocols)))
451
452 (defun auth-source-user-or-password-imap (mode host)
453   (auth-source-user-or-password mode host 'imap))
454
455 (defun auth-source-user-or-password-pop3 (mode host)
456   (auth-source-user-or-password mode host 'pop3))
457
458 (defun auth-source-user-or-password-ssh (mode host)
459   (auth-source-user-or-password mode host 'ssh))
460
461 (defun auth-source-user-or-password-sftp (mode host)
462   (auth-source-user-or-password mode host 'sftp))
463
464 (defun auth-source-user-or-password-smtp (mode host)
465   (auth-source-user-or-password mode host 'smtp))
466
467 (provide 'auth-source)
468
469 ;;; auth-source.el ends here