2023-03-14 11:23:45 +01:00
|
|
|
# backup.sh [![backup.sh](https://github.com/ice-bit/backup.sh/actions/workflows/backup.sh.yml/badge.svg)](https://github.com/ice-bit/backup.sh/actions/workflows/backup.sh.yml)
|
2023-03-13 17:11:32 +01:00
|
|
|
`backup.sh` is a POSIX compliant, modular and lightweight backup utility to save and encrypt your files.
|
2023-04-03 16:29:57 +02:00
|
|
|
This tool is intended to be used on small scale UNIX environments such as VPS, personal servers and
|
2023-03-13 17:11:32 +01:00
|
|
|
workstations. `backup.sh` uses [rsync](https://linux.die.net/man/1/rsync), [tar](https://linux.die.net/man/1/tar)
|
2023-10-10 11:59:37 +02:00
|
|
|
and [gpg](https://linux.die.net/man/1/gpg) to copy, compress and encrypt the backup.
|
2023-03-13 17:11:32 +01:00
|
|
|
|
2023-10-10 11:59:37 +02:00
|
|
|
While `backup.sh` should work in any POSIX compliant environment,
|
|
|
|
`backup.sh` should work in any POSIX compliant environment, and it's successfully being used on
|
2023-04-03 16:29:57 +02:00
|
|
|
- GNU/Linux;
|
2023-10-10 11:59:37 +02:00
|
|
|
- OpenBSD
|
2023-04-03 16:29:57 +02:00
|
|
|
- FreeBSD;
|
|
|
|
- Apple MacOS.
|
|
|
|
|
2023-03-13 17:11:32 +01:00
|
|
|
## Installation
|
|
|
|
`backup.sh` consists in a single source file, to install it you can copy the script wherever you want.
|
|
|
|
Alternatively, you can install the script, the default sources file and the man file using the following command:
|
|
|
|
```sh
|
|
|
|
$> sudo make install
|
|
|
|
```
|
2023-03-16 11:43:14 +01:00
|
|
|
This will copy `backup.sh` into `/usr/local/bin/backup.sh`, `sources.bk` into `/usr/local/etc/sources.bk` and
|
2023-03-14 16:23:53 +01:00
|
|
|
`backup.sh.1` into `/usr/local/share/man/man1/backup.sh.1`. To uninstall the program along with the sample _sources file_ and the manual page,
|
2023-03-14 11:12:16 +01:00
|
|
|
you can issue `sudo make uninstall`.
|
2023-03-13 17:11:32 +01:00
|
|
|
|
2023-03-14 09:19:17 +01:00
|
|
|
At this point you still need to install the following dependencies:
|
2023-03-13 17:11:32 +01:00
|
|
|
- `rsync`
|
|
|
|
- `tar`
|
2023-10-10 11:59:37 +02:00
|
|
|
- `gpg`
|
2023-03-13 17:11:32 +01:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
To show the available options, you can run `backup.sh --help`, which will print out the following message:
|
|
|
|
```text
|
|
|
|
backup.sh - POSIX compliant, modular and lightweight backup utility.
|
|
|
|
|
|
|
|
Syntax: ./backup.sh [-b|-e|-h]
|
|
|
|
options:
|
2023-03-14 09:19:17 +01:00
|
|
|
-b|--backup SOURCES DEST PASS Backup folders from SOURCES file.
|
2023-03-13 17:11:32 +01:00
|
|
|
-e|--extract ARCHIVE PASS Extract ARCHIVE using PASS.
|
|
|
|
-h|--help Show this helper.
|
|
|
|
```
|
|
|
|
|
2023-03-14 16:23:53 +01:00
|
|
|
As you can see, `backup.sh` supports two options: **backup creation** and **backup extraction**, the former requires
|
2023-03-13 17:11:32 +01:00
|
|
|
root permissions, while the latter does not. Let us see them in details.
|
|
|
|
|
|
|
|
### Backup creation
|
2023-03-14 09:19:17 +01:00
|
|
|
To specify the directories to backup, `backup.sh` uses an associative array
|
2023-03-13 17:11:32 +01:00
|
|
|
defined in a text file(called _sources file_) with the following syntax:
|
|
|
|
|
|
|
|
```text
|
|
|
|
<LABEL>=<PATH>
|
|
|
|
```
|
|
|
|
|
|
|
|
Where `<LABEL>` is the name of the backup and `<PATH>` is its path. For example,
|
2023-03-14 09:19:17 +01:00
|
|
|
if you want to back up `/etc/nginx` and `/etc/ssh`, add the following entries to the _sources file_:
|
2023-03-13 17:11:32 +01:00
|
|
|
|
|
|
|
```text
|
|
|
|
nginx=/etc/nginx/
|
|
|
|
ssh=/etc/ssh/
|
|
|
|
```
|
|
|
|
|
|
|
|
`backup.sh` will create two folders inside the backup archive with the following syntax:
|
|
|
|
```text
|
|
|
|
backup-<LABEL>-<YYYYMMDD>
|
|
|
|
```
|
|
|
|
|
|
|
|
In the previous example, this would be:
|
|
|
|
```text
|
|
|
|
backup-nginx-<YYYYMMDD>
|
|
|
|
backup-ssh-<YYYYMMDD>
|
|
|
|
```
|
|
|
|
|
|
|
|
You can add as many entries as you want, just be sure to use the proper syntax. In particular,
|
|
|
|
the _sources file_, **should not** includes:
|
|
|
|
- Spaces between the label and the equal sign;
|
|
|
|
- Empty lines;
|
|
|
|
- Comments.
|
|
|
|
|
2023-03-16 11:43:14 +01:00
|
|
|
You can find a sample _sources file_ at `sources.bk`(or at `/usr/local/etc/sources.bk`).
|
2023-03-13 17:11:32 +01:00
|
|
|
|
|
|
|
After having defined the _sources file_, you can invoke `backup.sh` using the following syntax:
|
|
|
|
```sh
|
2023-03-14 09:19:17 +01:00
|
|
|
$> sudo ./backup.sh --backup <SOURCES_FILE> <DEST> <ENCRYPTION_PASSWORD>
|
2023-03-13 17:11:32 +01:00
|
|
|
```
|
|
|
|
|
2023-03-14 09:19:17 +01:00
|
|
|
Where `<SOURCES_FILE>` is the _sources file_, `<DEST>` is the absolute path of the output of the backup
|
|
|
|
**without trailing slashes** and `<ENCRYPTION_PASSWORD>` is the password to encrypt the compressed archive.
|
2023-03-13 17:11:32 +01:00
|
|
|
|
|
|
|
In the previous example, this would be:
|
|
|
|
```sh
|
2023-03-14 09:19:17 +01:00
|
|
|
$> sudo ./backup.sh --backup sources.bk /home/john badpw1234
|
2023-03-13 17:11:32 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
The backup utility will begin to copy the files defined in the _sources file_:
|
|
|
|
```text
|
|
|
|
Copying nginx(1/2)
|
|
|
|
Copying ssh(2/2)
|
2023-10-10 11:59:37 +02:00
|
|
|
Compressing backup...
|
|
|
|
Encrypting backup...
|
|
|
|
File name: /home/marco/backup-<HOSTNAME>-<YYYYMMDD>.tar.gz.enc
|
|
|
|
File size: 7336400696(6.9G)
|
|
|
|
File hash: 0e75ca393117f389d9e8edfea7106d98
|
|
|
|
Elapsed time: 259 seconds.
|
2023-03-13 17:11:32 +01:00
|
|
|
```
|
|
|
|
|
2023-10-10 11:59:37 +02:00
|
|
|
After that, you will find the final backup archive in `/home/john/backup-<HOSTNAME>-<YYYYMMDD>.tar.gz.enc`.
|
2023-03-13 17:11:32 +01:00
|
|
|
|
2023-03-13 17:21:05 +01:00
|
|
|
You can also use `backup.sh` from a crontab rule:
|
|
|
|
```sh
|
|
|
|
$> sudo crontab -e
|
2023-03-20 11:42:51 +01:00
|
|
|
30 03 * * 6 EKEY=$(cat /home/john/.ekey) bash -c '/usr/local/bin/backup.sh -b /usr/local/etc/sources.bk /home/john $EKEY' > /dev/null 2>&1
|
2023-03-13 17:21:05 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
This will automatically run `backup.sh` every Saturday morning at 03:30 AM. In the example above, the encryption
|
|
|
|
key is stored in a local file(with fixed permissions) to avoid password leaking in crontab logs. You can also
|
|
|
|
adopt this practice while using the `--extract` option to avoid password leaking in shell history.
|
|
|
|
|
2023-03-14 16:23:53 +01:00
|
|
|
### Backup extraction
|
2023-03-13 17:11:32 +01:00
|
|
|
`backup.sh` can also extract the encrypted backup archive using the following syntax:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
$> ./backup.sh --extract <ENCRYPTED_ARCHIVE> <ARCHIVE_PASSWORD>
|
|
|
|
```
|
|
|
|
|
2023-03-14 09:19:17 +01:00
|
|
|
Where `<ENCRYPTED_ARCHIVE>` is the encrypted backup and `<ARCHIVE_PASSWORD>` is the backup password.
|
2023-03-13 17:11:32 +01:00
|
|
|
|
|
|
|
For instance:
|
|
|
|
|
|
|
|
```sh
|
2023-10-10 11:59:37 +02:00
|
|
|
$> ./backup.sh --extract backup-<hostname>-<YYYYMMDD>.tar.gz.enc badpw1234
|
2023-03-13 17:11:32 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
This will create a new folder called `backup.sh.tmp` in your local directory. Be sure to rename any directory
|
|
|
|
with that name to avoid collisions. From the previous example, you should have the following directories:
|
|
|
|
```text
|
|
|
|
backup-nginx-<YYYYMMDD>
|
|
|
|
backup-ssh-<YYYYMMDD>
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2023-10-10 11:59:37 +02:00
|
|
|
## How does backup.sh work?
|
|
|
|
**backup.sh** uses _rsync_ to copy the files, _tar_ to compress the backup and _gpg_ to encrypt it.
|
|
|
|
By default, rsync is being used with the following parameters:
|
|
|
|
|
|
|
|
```
|
2023-03-14 09:50:05 +01:00
|
|
|
$> rsync -aPhrq --delete
|
|
|
|
```
|
|
|
|
|
|
|
|
That is:
|
|
|
|
|
2023-10-10 11:59:37 +02:00
|
|
|
- a: archive mode: rsync copies files recursively while preserving as much metadata as possible;
|
|
|
|
- P: progress/partial: allows rsync to resume interrupted transfers and to shows progress information;
|
|
|
|
- h: human readable output, rsync shows output numbers in a more readable way;
|
|
|
|
- r: recursive mode: forces rsync to copy directories and their content;
|
|
|
|
- q: quiet mode: reduces the amount of information rsync produces;
|
|
|
|
- delete: delete mode: forces rsync to delete any extraneous files at the destination dir.
|
2023-03-14 09:50:05 +01:00
|
|
|
|
|
|
|
|
2023-10-10 11:59:37 +02:00
|
|
|
After that the backup folder is being encrypted using gpg. By default, it is used with the following parameters:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
$> gpg -a \
|
|
|
|
--symmetric \
|
|
|
|
--cipher-algo=AES256 \
|
|
|
|
--no-symkey-cache \
|
|
|
|
--pinentry-mode=loopback \
|
|
|
|
--batch --passphrase-fd 3 3<<< "$PASSWORD" \
|
|
|
|
--output "$OUTPUT" \
|
|
|
|
"$INPUT"
|
|
|
|
```
|
|
|
|
|
|
|
|
This command encrypts the backup using the AES-256 symmetric encryption algorithm with a 256bit key. Here is what each flag do:
|
|
|
|
- `--symmetric`: Use symmetric encryption;
|
|
|
|
- `--cipher-algo=AES256`: Use AES256 algorithm;
|
|
|
|
- `--no-symkey-cache`: Do not save password on GPG's cache;
|
|
|
|
- `--pinentry-mode=loopback --batch`: Do not prompt the user;
|
|
|
|
- `--passphrase-fd 3 3<< "$PASSWORD"`: Read password without revealing it on `ps`;
|
|
|
|
- `--output`: Specify output file;
|
|
|
|
- `$INPUT`: Specify input file.
|
2023-03-14 09:50:05 +01:00
|
|
|
|
2023-03-13 17:11:32 +01:00
|
|
|
## Unit tests
|
2023-03-14 11:12:16 +01:00
|
|
|
`backup.sh` provides some unit tests inside the `tests.sh` script. This script generates some dummy files inside the following
|
|
|
|
directories:
|
|
|
|
- /var/log
|
|
|
|
- /var/www
|
|
|
|
- /etc/nginx
|
|
|
|
- /etc/ssh
|
|
|
|
|
|
|
|
For this reason, this script should **NOT** be used in non-testing environments. To run all tests, issue the following command:
|
|
|
|
```sh
|
|
|
|
$> sudo ./tests.sh I_HAVE_READ_THE_HELPER
|
|
|
|
```
|
|
|
|
|
2023-03-13 17:11:32 +01:00
|
|
|
## License
|
2023-04-03 16:29:57 +02:00
|
|
|
This software is released under GPLv3, you can obtain a copy of this license by cloning this repository or by visiting
|
|
|
|
[this page](https://choosealicense.com/licenses/gpl-3.0/).
|