2017-02-04 07:51:32 +00:00
|
|
|
|
;;; auth-source-pass.el --- Integrate auth-source with password-store -*- lexical-binding: t -*-
|
|
|
|
|
|
2019-01-01 00:59:58 +00:00
|
|
|
|
;; Copyright (C) 2015, 2017-2019 Free Software Foundation, Inc.
|
2017-02-04 07:51:32 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Damien Cassou <damien@cassou.me>,
|
|
|
|
|
;; Nicolas Petton <nicolas@petton.fr>
|
2018-03-26 07:04:36 +00:00
|
|
|
|
;; Version: 4.0.1
|
2018-02-22 16:58:07 +00:00
|
|
|
|
;; Package-Requires: ((emacs "25"))
|
|
|
|
|
;; Url: https://github.com/DamienCassou/auth-password-store
|
2017-02-04 07:51:32 +00:00
|
|
|
|
;; Created: 07 Jun 2015
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2017-02-04 07:51:32 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Integrates password-store (http://passwordstore.org/) within
|
|
|
|
|
;; auth-source.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
(require 'seq)
|
2017-05-02 20:59:51 +00:00
|
|
|
|
(eval-when-compile (require 'subr-x))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(eval-when-compile
|
|
|
|
|
(require 'cl-lib))
|
|
|
|
|
(require 'auth-source)
|
|
|
|
|
(require 'url-parse)
|
|
|
|
|
|
|
|
|
|
(cl-defun auth-source-pass-search (&rest spec
|
2017-04-03 19:36:03 +00:00
|
|
|
|
&key backend type host user port
|
|
|
|
|
&allow-other-keys)
|
2017-02-04 07:51:32 +00:00
|
|
|
|
"Given a property list SPEC, return search matches from the :backend.
|
|
|
|
|
See `auth-source-search' for details on SPEC."
|
|
|
|
|
(cl-assert (or (null type) (eq type (oref backend type)))
|
|
|
|
|
t "Invalid password-store search: %s %s")
|
2018-01-08 16:34:38 +00:00
|
|
|
|
(when (consp host)
|
|
|
|
|
(warn "auth-source-pass ignores all but first host in spec.")
|
2017-02-04 07:51:32 +00:00
|
|
|
|
;; Take the first non-nil item of the list of hosts
|
|
|
|
|
(setq host (seq-find #'identity host)))
|
2018-01-08 16:34:38 +00:00
|
|
|
|
(cond ((eq host t)
|
|
|
|
|
(warn "auth-source-pass does not handle host wildcards.")
|
|
|
|
|
nil)
|
|
|
|
|
((null host)
|
|
|
|
|
;; Do not build a result, as none will match when HOST is nil
|
|
|
|
|
nil)
|
|
|
|
|
(t
|
|
|
|
|
(list (auth-source-pass--build-result host port user)))))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--build-result (host port user)
|
|
|
|
|
"Build auth-source-pass entry matching HOST, PORT and USER."
|
2017-11-09 09:40:19 +00:00
|
|
|
|
(let ((entry (auth-source-pass--find-match host user port)))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(when entry
|
|
|
|
|
(let ((retval (list
|
|
|
|
|
:host host
|
|
|
|
|
:port (or (auth-source-pass-get "port" entry) port)
|
|
|
|
|
:user (or (auth-source-pass-get "user" entry) user)
|
|
|
|
|
:secret (lambda () (auth-source-pass-get 'secret entry)))))
|
|
|
|
|
(auth-source-pass--do-debug "return %s as final result (plus hidden password)"
|
2017-04-03 19:36:03 +00:00
|
|
|
|
(seq-subseq retval 0 -2)) ;; remove password
|
2017-02-04 07:51:32 +00:00
|
|
|
|
retval))))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun auth-source-pass-enable ()
|
|
|
|
|
"Enable auth-source-password-store."
|
|
|
|
|
;; To add password-store to the list of sources, evaluate the following:
|
|
|
|
|
(add-to-list 'auth-sources 'password-store)
|
|
|
|
|
;; clear the cache (required after each change to #'auth-source-pass-search)
|
|
|
|
|
(auth-source-forget-all-cached))
|
|
|
|
|
|
|
|
|
|
(defvar auth-source-pass-backend
|
|
|
|
|
(auth-source-backend
|
2018-02-12 19:28:20 +00:00
|
|
|
|
(when (<= emacs-major-version 25) "password-store")
|
2017-02-04 07:51:32 +00:00
|
|
|
|
:source "." ;; not used
|
|
|
|
|
:type 'password-store
|
|
|
|
|
:search-function #'auth-source-pass-search)
|
|
|
|
|
"Auth-source backend for password-store.")
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass-backend-parse (entry)
|
|
|
|
|
"Create a password-store auth-source backend from ENTRY."
|
|
|
|
|
(when (eq entry 'password-store)
|
|
|
|
|
(auth-source-backend-parse-parameters entry auth-source-pass-backend)))
|
|
|
|
|
|
2018-03-26 04:28:17 +00:00
|
|
|
|
(if (boundp 'auth-source-backend-parser-functions)
|
|
|
|
|
(add-hook 'auth-source-backend-parser-functions #'auth-source-pass-backend-parse)
|
|
|
|
|
(advice-add 'auth-source-backend-parse :before-until #'auth-source-pass-backend-parse))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass-get (key entry)
|
|
|
|
|
"Return the value associated to KEY in the password-store entry ENTRY.
|
|
|
|
|
|
|
|
|
|
ENTRY is the name of a password-store entry.
|
|
|
|
|
The key used to retrieve the password is the symbol `secret'.
|
|
|
|
|
|
|
|
|
|
The convention used as the format for a password-store file is
|
|
|
|
|
the following (see http://www.passwordstore.org/#organization):
|
|
|
|
|
|
|
|
|
|
secret
|
|
|
|
|
key1: value1
|
|
|
|
|
key2: value2"
|
|
|
|
|
(let ((data (auth-source-pass-parse-entry entry)))
|
|
|
|
|
(or (cdr (assoc key data))
|
|
|
|
|
(and (string= key "user")
|
|
|
|
|
(cdr (assoc "username" data))))))
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--read-entry (entry)
|
|
|
|
|
"Return a string with the file content of ENTRY."
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents (expand-file-name
|
|
|
|
|
(format "%s.gpg" entry)
|
|
|
|
|
"~/.password-store"))
|
|
|
|
|
(buffer-substring-no-properties (point-min) (point-max))))
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass-parse-entry (entry)
|
|
|
|
|
"Return an alist of the data associated with ENTRY.
|
|
|
|
|
|
|
|
|
|
ENTRY is the name of a password-store entry."
|
|
|
|
|
(let ((file-contents (ignore-errors (auth-source-pass--read-entry entry))))
|
|
|
|
|
(and file-contents
|
|
|
|
|
(cons `(secret . ,(auth-source-pass--parse-secret file-contents))
|
|
|
|
|
(auth-source-pass--parse-data file-contents)))))
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--parse-secret (contents)
|
|
|
|
|
"Parse the password-store data in the string CONTENTS and return its secret.
|
|
|
|
|
The secret is the first line of CONTENTS."
|
2019-03-19 00:02:01 +00:00
|
|
|
|
(car (split-string contents "\n" t)))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--parse-data (contents)
|
|
|
|
|
"Parse the password-store data in the string CONTENTS and return an alist.
|
|
|
|
|
CONTENTS is the contents of a password-store formatted file."
|
2019-03-20 01:45:17 +00:00
|
|
|
|
(let ((lines (split-string contents "\n" t "[ \t]+")))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(seq-remove #'null
|
|
|
|
|
(mapcar (lambda (line)
|
2017-05-02 20:59:51 +00:00
|
|
|
|
(let ((pair (mapcar (lambda (s) (string-trim s))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(split-string line ":"))))
|
|
|
|
|
(when (> (length pair) 1)
|
|
|
|
|
(cons (car pair)
|
|
|
|
|
(mapconcat #'identity (cdr pair) ":")))))
|
|
|
|
|
(cdr lines)))))
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--do-debug (&rest msg)
|
|
|
|
|
"Call `auth-source-do-debug` with MSG and a prefix."
|
|
|
|
|
(apply #'auth-source-do-debug
|
2018-03-23 08:16:25 +00:00
|
|
|
|
(cons (concat "auth-source-pass: " (car msg))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(cdr msg))))
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--select-one-entry (entries user)
|
|
|
|
|
"Select one entry from ENTRIES by searching for a field matching USER."
|
|
|
|
|
(let ((number (length entries))
|
|
|
|
|
(entry-with-user
|
|
|
|
|
(and user
|
|
|
|
|
(seq-find (lambda (entry)
|
|
|
|
|
(string-equal (auth-source-pass-get "user" entry) user))
|
|
|
|
|
entries))))
|
|
|
|
|
(auth-source-pass--do-debug "found %s matches: %s" number
|
|
|
|
|
(mapconcat #'identity entries ", "))
|
|
|
|
|
(if entry-with-user
|
|
|
|
|
(progn
|
|
|
|
|
(auth-source-pass--do-debug "return %s as it contains matching user field"
|
|
|
|
|
entry-with-user)
|
|
|
|
|
entry-with-user)
|
|
|
|
|
(auth-source-pass--do-debug "return %s as it is the first one" (car entries))
|
|
|
|
|
(car entries))))
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--entry-valid-p (entry)
|
|
|
|
|
"Return t iff ENTRY can be opened.
|
|
|
|
|
Also displays a warning if not. This function is slow, don't call it too
|
|
|
|
|
often."
|
|
|
|
|
(if (auth-source-pass-parse-entry entry)
|
|
|
|
|
t
|
|
|
|
|
(auth-source-pass--do-debug "entry '%s' is not valid" entry)
|
|
|
|
|
nil))
|
|
|
|
|
|
|
|
|
|
;; TODO: add tests for that when `assess-with-filesystem' is included
|
|
|
|
|
;; in Emacs
|
|
|
|
|
(defun auth-source-pass-entries ()
|
|
|
|
|
"Return a list of all password store entries."
|
|
|
|
|
(let ((store-dir (expand-file-name "~/.password-store/")))
|
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (file) (file-name-sans-extension (file-relative-name file store-dir)))
|
2019-03-16 18:36:38 +00:00
|
|
|
|
(directory-files-recursively store-dir "\\.gpg$"))))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
|
2017-02-16 08:34:17 +00:00
|
|
|
|
(defun auth-source-pass--find-all-by-entry-name (entryname user)
|
|
|
|
|
"Search the store for all entries either matching ENTRYNAME/USER or ENTRYNAME.
|
2017-02-04 07:51:32 +00:00
|
|
|
|
Only return valid entries as of `auth-source-pass--entry-valid-p'."
|
|
|
|
|
(seq-filter (lambda (entry)
|
|
|
|
|
(and
|
2017-02-16 08:34:17 +00:00
|
|
|
|
(or
|
|
|
|
|
(let ((components-host-user
|
|
|
|
|
(member entryname (split-string entry "/"))))
|
|
|
|
|
(and (= (length components-host-user) 2)
|
|
|
|
|
(string-equal user (cadr components-host-user))))
|
2017-04-03 19:36:03 +00:00
|
|
|
|
(string-equal entryname (file-name-nondirectory entry)))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(auth-source-pass--entry-valid-p entry)))
|
|
|
|
|
(auth-source-pass-entries)))
|
|
|
|
|
|
2017-02-16 08:34:17 +00:00
|
|
|
|
(defun auth-source-pass--find-one-by-entry-name (entryname user)
|
|
|
|
|
"Search the store for an entry matching ENTRYNAME.
|
2017-02-04 07:51:32 +00:00
|
|
|
|
If USER is non nil, give precedence to entries containing a user field
|
|
|
|
|
matching USER."
|
|
|
|
|
(auth-source-pass--do-debug "searching for '%s' in entry names (user: %s)"
|
2017-04-03 19:36:03 +00:00
|
|
|
|
entryname
|
|
|
|
|
user)
|
2017-02-16 08:34:17 +00:00
|
|
|
|
(let ((matching-entries (auth-source-pass--find-all-by-entry-name entryname user)))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(pcase (length matching-entries)
|
|
|
|
|
(0 (auth-source-pass--do-debug "no match found")
|
|
|
|
|
nil)
|
|
|
|
|
(1 (auth-source-pass--do-debug "found 1 match: %s" (car matching-entries))
|
|
|
|
|
(car matching-entries))
|
|
|
|
|
(_ (auth-source-pass--select-one-entry matching-entries user)))))
|
|
|
|
|
|
2017-11-09 09:40:19 +00:00
|
|
|
|
(defun auth-source-pass--find-match (host user port)
|
|
|
|
|
"Return a password-store entry name matching HOST, USER and PORT.
|
|
|
|
|
|
|
|
|
|
Disambiguate between user provided inside HOST (e.g., user@server.com) and
|
|
|
|
|
inside USER by giving priority to USER. Same for PORT."
|
|
|
|
|
(let* ((url (url-generic-parse-url (if (string-match-p ".*://" host)
|
|
|
|
|
host
|
|
|
|
|
(format "https://%s" host)))))
|
|
|
|
|
(auth-source-pass--find-match-unambiguous
|
|
|
|
|
(or (url-host url) host)
|
|
|
|
|
(or user (url-user url))
|
|
|
|
|
;; url-port returns 443 (because of the https:// above) by default
|
|
|
|
|
(or port (number-to-string (url-port url))))))
|
|
|
|
|
|
|
|
|
|
(defun auth-source-pass--find-match-unambiguous (hostname user port)
|
|
|
|
|
"Return a password-store entry name matching HOSTNAME, USER and PORT.
|
|
|
|
|
If many matches are found, return the first one. If no match is found,
|
|
|
|
|
return nil.
|
|
|
|
|
|
|
|
|
|
HOSTNAME should not contain any username or port number."
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(or
|
2017-11-09 09:40:19 +00:00
|
|
|
|
(and user port (auth-source-pass--find-one-by-entry-name (format "%s@%s:%s" user hostname port) user))
|
|
|
|
|
(and user (auth-source-pass--find-one-by-entry-name (format "%s@%s" user hostname) user))
|
|
|
|
|
(and port (auth-source-pass--find-one-by-entry-name (format "%s:%s" hostname port) nil))
|
|
|
|
|
(auth-source-pass--find-one-by-entry-name hostname user)
|
2017-02-04 07:51:32 +00:00
|
|
|
|
;; if that didn't work, remove subdomain: foo.bar.com -> bar.com
|
2017-11-09 09:40:19 +00:00
|
|
|
|
(let ((components (split-string hostname "\\.")))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
(when (= (length components) 3)
|
|
|
|
|
;; start from scratch
|
2017-11-09 09:40:19 +00:00
|
|
|
|
(auth-source-pass--find-match-unambiguous
|
|
|
|
|
(mapconcat 'identity (cdr components) ".")
|
|
|
|
|
user
|
|
|
|
|
port)))))
|
2017-02-04 07:51:32 +00:00
|
|
|
|
|
|
|
|
|
(provide 'auth-source-pass)
|
|
|
|
|
;;; auth-source-pass.el ends here
|