aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2022-08-19 12:19:02 -0300
committerSilvio Rhatto <rhatto@riseup.net>2022-08-19 12:19:02 -0300
commit1f22874fe9f0aaf05970827a1af1ede5b87fe538 (patch)
tree8a2f0e91102481481f364e821ce60b834c491db8
parent5777d59957eb7f9de435e4eac5c5ae50e7147ae0 (diff)
parent0ccb3e0511f492eb5fb5dfb9729489c6fb9fa0ab (diff)
downloadkeyringer-1f22874fe9f0aaf05970827a1af1ede5b87fe538.tar.gz
keyringer-1f22874fe9f0aaf05970827a1af1ede5b87fe538.tar.bz2
Update upstream source from tag 'upstream_keyringer_0.5.8'
Update to upstream version '0.5.8' with Debian dir 89025fcbd57cc1741d67a2d3050828d11b26de77
-rw-r--r--.gitignore13
-rw-r--r--ChangeLog6
-rwxr-xr-xkeyringer2
-rwxr-xr-xlib/keyringer/actions/recrypt59
-rwxr-xr-xlib/keyringer/actions/xclip2
5 files changed, 56 insertions, 26 deletions
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 8948a4c..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,13 +0,0 @@
-debian/keyringer.debhelper.log
-debian/keyringer
-debian/files
-debian/files
-debian/keyringer.substvars
-tarballs
-www
-.pc
-.ikiwiki
-/.ikiwiki
-/recentchanges
-/www
-build-area
diff --git a/ChangeLog b/ChangeLog
index 7b6fae2..81e4d25 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-08-19 - 0.5.8 - Silvio Rhatto <rhatto@riseup.net>
+
+ Fix re-encryption when the secret hass NULL bytes
+
+ Attempt to fix xclip message 'Error: target STRING not available'
+
2022-06-07 - 0.5.7 - Silvio Rhatto <rhatto@riseup.net>
New upstream URLs
diff --git a/keyringer b/keyringer
index f28c8f3..878d5d1 100755
--- a/keyringer
+++ b/keyringer
@@ -140,7 +140,7 @@ function keyringer_dispatch {
# Config
NAME="keyringer"
-KEYRINGER_VERSION="0.5.7"
+KEYRINGER_VERSION="0.5.8"
CONFIG_VERSION="0.1"
CONFIG_BASE="$HOME/.$NAME"
CONFIG="$CONFIG_BASE/config"
diff --git a/lib/keyringer/actions/recrypt b/lib/keyringer/actions/recrypt
index 0e2f6a0..5542bfc 100755
--- a/lib/keyringer/actions/recrypt
+++ b/lib/keyringer/actions/recrypt
@@ -9,33 +9,66 @@ source "$LIB" readwrite $* || exit 1
# Recrypt a single secret
function keyringer_recrypt {
-
# Get file
keyringer_get_file "$1"
# Set recipients file
keyringer_set_recipients "$FILE"
- # Decrypt
- decrypted="$($GPG --use-agent -d "$KEYDIR/$FILE")"
+ # Verbosity
+ echo "Processing $FILE..."
- if [ "$?" != "0" ]; then
- echo "Decryption error on $1."
- exit 1
- fi
+ # Recrypt in stages. This approach will fail for secrets that have NULL bytes, since
+ # bash can't hold those as variables.
+ #
+ # In that case, it would lead to the following warning:
+ #
+ # lib/keyringer/actions/recrypt: line 20: warning: command substitution: ignored null byte in input
+ #
+ # See https://stackoverflow.com/a/42493691
+ #
+ ## Decrypt
+ #decrypted="$($GPG --use-agent -d "$KEYDIR/$FILE")"
+
+ #if [ "$?" != "0" ]; then
+ # echo "Decryption error on $1."
+ # exit 1
+ #fi
+
+ ## Recrypt
+ #recrypted="`echo "$decrypted" | $GPG --use-agent --armor -e -s $(keyringer_recipients "$RECIPIENTS_FILE")`"
+
+ #if [ "$?" != "0" ]; then
+ # echo "Recryption error on $1."
+ # exit 1
+ #fi
- # Recrypt
- recrypted="`echo "$decrypted" | $GPG --use-agent --armor -e -s $(keyringer_recipients "$RECIPIENTS_FILE")`"
+ #unset decrypted
+ #echo "$recrypted" > "$KEYDIR/$FILE"
+
+ # As we can't use variables as the secret material can contain NULL bytes, we
+ # use a temporary file instead
+ set -o pipefail
+ mkdir -p -m 700 "$TMPWORK/`dirname $FILE`"
+ $GPG --use-agent -d "$KEYDIR/$FILE" | $GPG --use-agent --armor -e -s $(keyringer_recipients "$RECIPIENTS_FILE") -o "$TMPWORK/$FILE.recrypted"
if [ "$?" != "0" ]; then
echo "Recryption error on $1."
+
+ if [ -e "$TMPWORK/$FILE.recrypted" ]; then
+ keyringer_shred "$TMPWORK/$FILE.recrypted"
+ fi
+
exit 1
fi
- unset decrypted
- echo "$recrypted" > "$KEYDIR/$FILE"
+ # Move the re-encrypted secret only if there was no error
+ mv "$TMPWORK/$FILE.recrypted" "$KEYDIR/$FILE"
}
+# Set a tmp file
+keyringer_set_tmpfile recrypt -d
+
# Syntax check and dispatcher
if [ ! -z "$2" ]; then
keyringer_recrypt $2
@@ -46,3 +79,7 @@ else
fi
done
fi
+
+# Cleanup
+rm -rf "$TMPWORK"
+trap - EXIT
diff --git a/lib/keyringer/actions/xclip b/lib/keyringer/actions/xclip
index f63fdb5..0e36dae 100755
--- a/lib/keyringer/actions/xclip
+++ b/lib/keyringer/actions/xclip
@@ -20,7 +20,7 @@ clip() {
# Avoid "Error: target STRING not available"
# https://github.com/astrand/xclip/issues/38
- echo "$RANDOM" | $xclip
+ echo "$RANDOM" | $xclip &> /dev/null
# Copy text into clipboard
echo -n "$1" | $xclip