#!/bin/bash -v # The goal of this is to build a little tree with some files, dirs and subdirs. # In plain, then encrypt them to create a remote backup, but using ``cp -al'' # on remote for keeping old version of tree. So moving ``/'' to ``/backups/root'' # on remote host. # This script use 6 minutes for doing his demo. This make things more readable # because `ls` show minutes by defaults (not seconds). For impatients you could # replace ``sleep 60'' by ``sleep 1'' at top of loop. # Once done, you could browse created and mounted folders in an interactive bash # session. Everything will be unmounted and removed when exit. shopt -s extglob delay=${1:-61} steps=${2:-5} # 1min between syncs because ls default granularity TEMPDIR=$(mktemp -d) || exit 1 cd "$TEMPDIR" || exit 1 password='What a strong pass phrase!' mkdir -p source/dirs{1..5}/subdir{1..5} cryptedSrce remote UnencryptedRemote # Creating some arbitrary files (distributing words from bash man page # into 155 (differents) files ($(( 5 **3+ 5 **2+ 5 ))) # This doesn't really matter in crypto-backup process. Just having stuff for. read -t .$((1000000-10#${EPOCHREALTIME#*.})) _;echo ${EPOCHREALTIME} for target in source/{,dirs{1..5}/{,subdir{1..5}/}}file{{a..d},EbutWithABiggerFileName}; do dd count=4 2>/dev/null | xargs echo 2>/dev/null | fold -sw 68 >$target done < <(man -Len -Pcol\ -b bash ) # Then list of some words for doing some changes, later... mapfile -t words < <( find source/ -type f -exec cat {} + | tr \ \\n | sort | uniq -c | sed 's/^ *[7-9][0-9] \([a-z]\{6,99\}\)$/\1/p;d') printf 'Differents words to edits: %d:\n %s\n' ${#words[@]} "${words[*]}" # End of build 155 files ########## # Crypto-backup initialisation start here: ########## # Master key creation gocryptfs -q --init --reverse source <<<"$password" # Mount cryptfs for data encryption to mountpoint gocryptfs -q --reverse source cryptedSrce <<<"$password" ## To be done on LVM snapshots if used! mkdir -p source/backups/root ## Hopefully inode number are same on both side of gocryptfs inum=$(stat -c %i source/backups/root) ## Storing encrypted version of /backup/root target=$(find cryptedSrce/ -mindepth 2 -maxdepth 2 -type d -inum $inum ) # 1st synchronization: ( Everything, INCLUDING /backup/root ) tar -cplC cryptedSrce .| tar -xpC remote/ # Then... move everything into /backup/root, in encrypted filesystem # re-using same .diriv file, required a 1st bakup level target=${target#*/} bash <( sort -u | echo inode=$(wc -l) ) >( echo file=$(wc -l) ) | sed -ne /=/p ) backupDirs=$( find UnencryptedRemote/backups -maxdepth 1 -mindepth 1 -name root* -type d | wc -l ) printf '\nAfter %d edits in %s steps, there are:\n' $alledit $steps ;\ printf ' - %8s %s\n' $filesInSource 'files in source,' \ $inodesInBackup 'different files in backup and' \ $filesInBackup 'visibles entries in backup, in' \ $backupDirs 'diffents "/root" backups.' echo "Running interactive bash for any purpose..." echo "U could try some:" printf 'ls -ltr {source,UnencryptedRemote/backups/*}/"%s"\n' \ "${mostEdited[@]##* }" export target words cwords declare -p target echo "Current folder will be destroyed when exit." bash -i fusermount -u UnencryptedRemote fusermount -u cryptedSrce cd || exit 1 rm -fR "$TEMPDIR"