aboutsummaryrefslogtreecommitdiff
path: root/dpw-age
blob: 0c72b731e99d6596c5de1edf084821c000eb7d91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#!/bin/sh
# Copyright 2025 Mitchell Riedstra
# 
# Permission to use, copy, modify, and/or distribute this software for any purpose
# with or without fee is hereby granted, provided that the above copyright notice
# and this permission notice appear in all copies.
# 
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
# OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
# THIS SOFTWARE.
# 
# Example storage plugin that wraps 'age' into a password manager.
# https://github.com/FiloSottile/age
set -e

UMASK="${PASSWORD_STORE_UMASK:-077}"
umask "$UMASK"

DPW_AGE_DIR="${DPW_AGE_DIR:-$HOME/.dpw-age}"
DPW_AGE_KEY="${DPW_AGE_KEY:-$HOME/.dpw-age-key}"
DPW_AGE_RECIPIENT_SUFFIX="${DPW_AGE_RECIPIENT_SUFFIX:-.recipients}"
DPW_AGE_AUTO_SYNC="${DPW_AGE_AUTO_SYNC:-NO}"
DPW_AGE_BIN="${DPW_AGE_BIN:-age}"
age="$DPW_AGE_BIN"
# No user overrides
DPW_AGE_RECIPIENTS_FILE=""

USE_GIT=0
[ -e "${DPW_AGE_DIR}/.git" ] && USE_GIT=1

# Helper functions


_git_commit() {
	[ $USE_GIT -eq 0 ] && return
	cd "${DPW_AGE_DIR}"
	git add --all
	git commit -am "DPW Auto-commit: $1"
	_git_sync
}

# Auto push/pull
_git_sync() {
	[ $USE_GIT -eq 0 ] && return
	[ "$DPW_AGE_AUTO_SYNC" != "YES" ] && return
	cd "${DPW_AGE_DIR}"
	git fetch
	git merge
	git push
}

_set_age_recipients() {
_pth="$1"; shift

_pth="${DPW_AGE_DIR}/$_pth"

id_file="$(dirname "${_pth}")/${DPW_AGE_RECIPIENT_SUFFIX}"
while true ; do

	# Break if id_file is above our password store directory
	case $id_file in
	${DPW_AGE_DIR}*) ;;
	*) break ;;
	esac

	if [ -e "$id_file" ] ; then
		export DPW_AGE_RECIPIENTS_FILE="$id_file"
		return
	fi

	# Pop this up a directory level for the next time 'round
	id_file="$(dirname "$id_file")"
	id_file="$(dirname "$id_file")/${DPW_AGE_RECIPIENT_SUFFIX}"
done

echo "No '${DPW_AGE_RECIPIENT_SUFFIX}' files found, is '$DPW_AGE_DIR' initialized?"
exit 1
}

# Interface

sync() {
	if [ $USE_GIT -eq 0 ] ; then
		echo "Cannot sync, not a git repository"
		return
	fi
	if [ "$DPW_AGE_AUTO_SYNC" != "YES" ] ; then
		echo "Warning: DPW_AGE_AUTO_SYNC is not set to YES"
		echo "Syncing..."
		DPW_AGE_AUTO_SYNC=YES
	fi

	_git_sync
}

show() {
pth="$1"; shift
#shellcheck disable=SC2086
exec "$age" -i "${DPW_AGE_KEY}" -d < "${DPW_AGE_DIR}/${pth}.age"
}


insert() {
pth="$1"; shift
_set_age_recipients "$pth"
mkdir -p "$DPW_AGE_DIR/$(dirname "$pth")"
#shellcheck disable=SC2086
"$age" -R "$DPW_AGE_RECIPIENTS_FILE" -e \
	> "${DPW_AGE_DIR}/${pth}.age"
_git_commit "Insert: $pth"
}

list() {
find "$DPW_AGE_DIR/$1" -type f -iname "*.age" \
	| while read -r line ; do
		line="${line##$DPW_AGE_DIR}"
		line="${line#/}"
		line="${line#/}"
		line="${line%.age}"
		echo "$line"
	done
}

remove() {
cd "$DPW_AGE_DIR"
recursive=
force=
while [ $# -gt 0 ] ; do case $1 in
	-r) recursive="-r" ; shift ;;
	-f) force="-f" ; shift ;;
	-rf|-fr) recursive="-r" ; force="-f" ; shift ;;
	*) break ;;
esac ; done

files=
for fn in "$@" ; do
	if [ -e "${fn}.age" ] ; then
	files="${fn}.age "
	else
	files="$fn "
	fi
done

#shellcheck disable=SC2086
rm $recursive $force $files
_git_commit "Remove: $*"
}

_init_help() {
cat <<EOF
Usage: $0 init [--[no-]git] [--[no-]gen-key] [--[no-]pass] [-r <recipient>...]

Git is the default.

Gen key will generate a passphrase protected private key for you and place it in
\$DPW_AGE_KEY ($DPW_AGE_KEY) and the public side will be '.pub'

No pass disables the default for a passphrase protected key file

If generating a key it will automatically be added to the recipients list,
if not generating a key a recipient must be supplied.

Multiple recipients may be specified

Init will also check that you can decrypt the secrets, otherwise it will fail.
( But not clean up after itself )

See: https://github.com/FiloSottile/age for more information on 'age' itself.
EOF
exit 1
}

_init() {
USE_GIT=1
if [ -d "${DPW_AGE_DIR}" ] ; then
	echo "Cannot init new password store, one exists"
	exit 1
fi

recipients=
genkey=1
passphrase=1
while [ $# -gt 0 ] ; do case $1 in
	--git) USE_GIT=1 ; shift ;;
	--no-git) USE_GIT=0 ; shift ;;
	--gen-key) genkey=1; shift ;;
	--no-gen-key) genkey=0; shift ;;
	--pass) passphrase=1; shift ;;
	--no-pass) passphrase=0; shift ;;
	-r|--recipient) recipients="$recipients:$2"; shift ; shift ;;
	*) _init_help ;;
esac ; done

[ $genkey -eq 1 ] && [ -e "${DPW_AGE_KEY}" ] \
	&& echo "Cannot continue, \"${DPW_AGE_KEY}\" already exists" && exit

echo "genkey: $genkey passphrase: $passphrase"

if [ $genkey -eq 1 ] && [ $passphrase -eq 1 ] ; then
	touch "${DPW_AGE_KEY}.pub" # Let the user's UMASK bet set
	umask 077 # but override it for the key
	age-keygen 2>"${DPW_AGE_KEY}.pub" | age --armor -p > "${DPW_AGE_KEY}" 2>&2
	sed -i.bak -e's/^Public key: //g' "${DPW_AGE_KEY}.pub"
	rm "${DPW_AGE_KEY}.pub.bak"
	umask "$UMASK"
elif [ $genkey -eq 1 ] ; then
	touch "${DPW_AGE_KEY}.pub" # Let the user's UMASK bet set
	umask 077 # but override it for the key
	age-keygen >"${DPW_AGE_KEY}"
	sed -ne's/^# public key: //gp' < "${DPW_AGE_KEY}" > "${DPW_AGE_KEY}.pub"
	cat < "${DPW_AGE_KEY}.pub" >> "${DPW_AGE_DIR}/${DPW_AGE_RECIPIENT_SUFFIX}"
	umask "$UMASK"
fi
if [ $genkey -eq 1 ] ; then
	recipients="$recipients:$(cat "${DPW_AGE_KEY}.pub")"
fi

mkdir -p "${DPW_AGE_DIR}"
cd "${DPW_AGE_DIR}"

DPW_AGE_RECIPIENTS_FILE="${DPW_AGE_DIR}/${DPW_AGE_RECIPIENT_SUFFIX}"
echo "$recipients" | tr ':' '\n' >> "${DPW_AGE_RECIPIENTS_FILE}"

grep -q YUBIKEY "${DPW_AGE_KEY}" \
	&& echo "Detected yubikey, you may need to tap it..."
# Test the key and recipients before we get too far along
tmpf="$(mktemp)"
echo "testing our key... works!" | "$age" -R "${DPW_AGE_RECIPIENTS_FILE}" -e \
	> "$tmpf"
"$age" -i "${DPW_AGE_KEY}" -d < "$tmpf"

if [ $USE_GIT -eq 1 ] ; then
	git init
	cat >> .git/config <<EOF
[diff "age"]
	binary = true
	textconv = age --decrypt -i "${DPW_AGE_KEY}"
EOF
	cp .git/config gitconfig

	echo "*.age diff=age" >> .gitattributes
fi


_git_commit

echo "Age Password store initialized in ${DPW_AGE_DIR}"
}

_help() {
cat <<EOF
Usage: $0 [command] [args]

Where command may be one of:
	show
	list
	insert
	rm
	sync
	init

The 'init' command has its own help page.

dpw-age is influnced by the following enviornment variables:

DPW_AGE_DIR="${DPW_AGE_DIR}"
DPW_AGE_KEY="${DPW_AGE_KEY}
DPW_AGE_RECIPIENT_SUFFIX="${DPW_AGE_RECIPIENT_SUFFIX}"
DPW_AGE_AUTO_SYNC="${DPW_AGE_AUTO_SYNC}"
PASSWORD_STORE_UMASK="${UMASK}"

If the above are set their values are shown, if unset the defaults are shown.

Note on DPW_AGE_AUTO_SYNC, if set to "YES" and DPW_AGE_DIR is a git repository
then it will automatically fetch, merge, and push for every action. This
will require you to have set an upstream for the branch you're on.
EOF
}

if [ -z "$1" ] ; then _help ; exit 1; fi
act="$1"; shift
case $act in
	show) show "$@" ;;
	list) list "$@" ;;
	insert) insert "$@" ;;
	rm) remove "$@" ;;
	sync) sync ;;
	init) _init "$@" ;;
	*) _help; echo "Bad command $act"; exit 1; ;;
esac