docker-volume-backup/src/main.go

479 lines
13 KiB
Go
Raw Normal View History

package main
import (
2021-08-22 14:44:33 +02:00
"bytes"
"context"
2021-08-21 19:26:42 +02:00
"errors"
"fmt"
2021-08-21 21:26:27 +02:00
"io"
2021-08-22 14:44:33 +02:00
"io/ioutil"
"os"
"os/exec"
2021-08-21 21:26:27 +02:00
"path"
2021-08-22 14:00:21 +02:00
"path/filepath"
"strconv"
"strings"
"time"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/filters"
"github.com/docker/docker/api/types/swarm"
"github.com/docker/docker/client"
"github.com/joho/godotenv"
2021-08-21 21:26:27 +02:00
minio "github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
2021-08-22 16:41:06 +02:00
"github.com/sirupsen/logrus"
2021-08-21 21:26:27 +02:00
"github.com/walle/targz"
2021-08-22 14:44:33 +02:00
"golang.org/x/crypto/openpgp"
)
func main() {
unlock, err := lock()
if err != nil {
panic(err)
}
defer unlock()
2021-08-21 19:26:42 +02:00
s := &script{}
2021-08-21 19:26:42 +02:00
2021-08-21 21:26:27 +02:00
must(s.init)()
err = s.stopContainersAndRun(s.takeBackup)
if err != nil {
panic(err)
}
2021-08-21 21:26:27 +02:00
must(s.encryptBackup)()
must(s.copyBackup)()
must(s.cleanBackup)()
must(s.pruneOldBackups)()
2021-08-21 19:26:42 +02:00
}
type script struct {
2021-08-22 16:41:06 +02:00
ctx context.Context
cli *client.Client
mc *minio.Client
logger *logrus.Logger
file string
bucket string
archive string
2021-08-21 19:26:42 +02:00
}
// lock opens a lock file without releasing it and returns a function that
// can be called once the lock shall be released again.
func lock() (func() error, error) {
lockfile := "/var/dockervolumebackup.lock"
lf, err := os.OpenFile(lockfile, os.O_CREATE, os.ModeAppend)
if err != nil {
return nil, fmt.Errorf("lock: error opening lock file: %w", err)
}
return func() error {
if err := lf.Close(); err != nil {
return fmt.Errorf("lock: error releasing file lock: %w", err)
}
if err := os.Remove(lockfile); err != nil {
return fmt.Errorf("lock: error removing lock file: %w", err)
}
return nil
}, nil
}
2021-08-21 19:26:42 +02:00
// init creates all resources needed for the script to perform actions against
// remote resources like the Docker engine or remote storage locations.
2021-08-21 19:26:42 +02:00
func (s *script) init() error {
s.ctx = context.Background()
2021-08-22 16:41:06 +02:00
s.logger = logrus.New()
s.logger.SetOutput(os.Stdout)
2021-08-21 19:26:42 +02:00
if err := godotenv.Load("/etc/backup.env"); err != nil {
return fmt.Errorf("init: failed to load env file: %w", err)
}
_, err := os.Stat("/var/run/docker.sock")
if !os.IsNotExist(err) {
2021-08-21 19:26:42 +02:00
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
if err != nil {
2021-08-22 16:41:06 +02:00
return fmt.Errorf("init: failed to create docker client")
}
2021-08-21 19:26:42 +02:00
s.cli = cli
}
2021-08-21 21:26:27 +02:00
if bucket := os.Getenv("AWS_S3_BUCKET_NAME"); bucket != "" {
s.bucket = bucket
2021-08-21 21:26:27 +02:00
mc, err := minio.New(os.Getenv("AWS_ENDPOINT"), &minio.Options{
Creds: credentials.NewStaticV4(
os.Getenv("AWS_ACCESS_KEY_ID"),
os.Getenv("AWS_SECRET_ACCESS_KEY"),
"",
),
Secure: os.Getenv("AWS_ENDPOINT_PROTO") == "https",
})
if err != nil {
return fmt.Errorf("init: error setting up minio client: %w", err)
}
s.mc = mc
}
2021-08-22 16:41:06 +02:00
file := os.Getenv("BACKUP_FILENAME")
if file == "" {
return errors.New("init: BACKUP_FILENAME not given")
}
s.file = path.Join("/tmp", file)
2021-08-22 16:41:06 +02:00
s.archive = os.Getenv("BACKUP_ARCHIVE")
2021-08-21 19:26:42 +02:00
return nil
}
// stopContainersAndRun stops all Docker containers that are marked as to being
// stopped during the backup and runs the given thunk. After returning, it makes
// sure containers are being restarted if required.
func (s *script) stopContainersAndRun(thunk func() error) error {
2021-08-21 19:26:42 +02:00
if s.cli == nil {
return nil
}
allContainers, err := s.cli.ContainerList(s.ctx, types.ContainerListOptions{
Quiet: true,
})
if err != nil {
return fmt.Errorf("stopContainersAndRun: error querying for containers: %w", err)
}
containersToStop, err := s.cli.ContainerList(s.ctx, types.ContainerListOptions{
2021-08-21 19:26:42 +02:00
Quiet: true,
Filters: filters.NewArgs(filters.KeyValuePair{
Key: "label",
Value: fmt.Sprintf(
"docker-volume-backup.stop-during-backup=%s",
os.Getenv("BACKUP_STOP_CONTAINER_LABEL"),
),
2021-08-21 19:26:42 +02:00
}),
})
if err != nil {
return fmt.Errorf("stopContainersAndRun: error querying for containers to stop: %w", err)
}
2021-08-22 16:41:06 +02:00
s.logger.Infof("Stopping %d out of %d running containers\n", len(containersToStop), len(allContainers))
var stoppedContainers []types.Container
var errors []error
if len(containersToStop) != 0 {
for _, container := range containersToStop {
2021-08-21 19:26:42 +02:00
if err := s.cli.ContainerStop(s.ctx, container.ID, nil); err != nil {
errors = append(errors, err)
} else {
stoppedContainers = append(stoppedContainers, container)
}
}
}
defer func() error {
servicesRequiringUpdate := map[string]struct{}{}
var restartErrors []error
for _, container := range stoppedContainers {
if swarmServiceName, ok := container.Labels["com.docker.swarm.service.name"]; ok {
servicesRequiringUpdate[swarmServiceName] = struct{}{}
continue
}
if err := s.cli.ContainerStart(s.ctx, container.ID, types.ContainerStartOptions{}); err != nil {
restartErrors = append(restartErrors, err)
}
}
if len(servicesRequiringUpdate) != 0 {
services, _ := s.cli.ServiceList(s.ctx, types.ServiceListOptions{})
for serviceName := range servicesRequiringUpdate {
var serviceMatch swarm.Service
for _, service := range services {
if service.Spec.Name == serviceName {
serviceMatch = service
break
}
}
if serviceMatch.ID == "" {
return fmt.Errorf("stopContainersAndRun: Couldn't find service with name %s", serviceName)
}
serviceMatch.Spec.TaskTemplate.ForceUpdate = 1
_, err := s.cli.ServiceUpdate(
s.ctx, serviceMatch.ID,
serviceMatch.Version, serviceMatch.Spec, types.ServiceUpdateOptions{},
2021-08-22 15:04:44 +02:00
)
if err != nil {
restartErrors = append(restartErrors, err)
}
}
}
if len(restartErrors) != 0 {
return fmt.Errorf(
"stopContainersAndRun: %d error(s) restarting containers and services: %w",
len(restartErrors),
err,
)
}
2021-08-22 16:41:06 +02:00
s.logger.Infof("Successfully restarted %d containers.", len(stoppedContainers))
return nil
}()
var stopErr error
if len(errors) != 0 {
stopErr = fmt.Errorf(
"stopContainersAndRun: %d errors stopping containers: %w",
len(errors),
err,
)
}
if stopErr != nil {
return stopErr
}
2021-08-21 21:26:27 +02:00
return thunk()
2021-08-21 19:26:42 +02:00
}
// takeBackup creates a tar archive of the configured backup location and
// saves it to disk.
2021-08-21 19:26:42 +02:00
func (s *script) takeBackup() error {
outBytes, err := exec.Command("date", fmt.Sprintf("+%s", s.file)).Output()
if err != nil {
return fmt.Errorf("takeBackup: error formatting filename template: %w", err)
}
s.file = strings.TrimSpace(string(outBytes))
2021-08-21 21:26:27 +02:00
if err := targz.Compress(os.Getenv("BACKUP_SOURCES"), s.file); err != nil {
return fmt.Errorf("takeBackup: error compressing backup folder: %w", err)
}
2021-08-22 16:41:06 +02:00
s.logger.Infof("Successfully created backup from %s at %s", os.Getenv("BACKUP_SOURCES"), s.file)
2021-08-21 21:26:27 +02:00
return nil
2021-08-21 19:26:42 +02:00
}
// encryptBackup encrypts the backup file using PGP and the configured passphrase.
// In case no passphrase is given it returns early, leaving the backup file
// untouched.
2021-08-21 19:26:42 +02:00
func (s *script) encryptBackup() error {
2021-08-22 14:44:33 +02:00
passphrase := os.Getenv("GPG_PASSPHRASE")
if passphrase == "" {
2021-08-21 19:26:42 +02:00
return nil
}
2021-08-22 14:44:33 +02:00
buf := bytes.NewBuffer(nil)
_, name := path.Split(s.file)
pt, err := openpgp.SymmetricallyEncrypt(buf, []byte(passphrase), &openpgp.FileHints{
IsBinary: true,
FileName: name,
}, nil)
if err != nil {
return fmt.Errorf("encryptBackup: error encrypting backup file: %w", err)
}
unencrypted, err := ioutil.ReadFile(s.file)
if err != nil {
pt.Close()
return fmt.Errorf("encryptBackup: error reading unencrypted backup file: %w", err)
}
_, err = pt.Write(unencrypted)
if err != nil {
pt.Close()
return fmt.Errorf("encryptBackup: error writing backup contents: %w", err)
}
pt.Close()
gpgFile := fmt.Sprintf("%s.gpg", s.file)
if err := ioutil.WriteFile(gpgFile, buf.Bytes(), os.ModeAppend); err != nil {
return fmt.Errorf("encryptBackup: error writing encrypted version of backup: %w", err)
}
if err := os.Remove(s.file); err != nil {
return fmt.Errorf("encryptBackup: error removing unencrpyted backup: %w", err)
}
s.file = gpgFile
2021-08-22 16:41:06 +02:00
s.logger.Info("Successfully encrypted backup using given passphrase.")
2021-08-22 14:44:33 +02:00
return nil
2021-08-21 19:26:42 +02:00
}
// copyBackup makes sure the backup file is copied to both local and remote locations
// as per the given configuration.
2021-08-21 19:26:42 +02:00
func (s *script) copyBackup() error {
2021-08-21 21:26:27 +02:00
_, name := path.Split(s.file)
if s.bucket != "" {
_, err := s.mc.FPutObject(s.ctx, s.bucket, name, s.file, minio.PutObjectOptions{
2021-08-21 21:26:27 +02:00
ContentType: "application/tar+gzip",
})
if err != nil {
return fmt.Errorf("copyBackup: error uploading backup to remote storage: %w", err)
}
2021-08-22 16:41:06 +02:00
s.logger.Infof("Successfully uploaded backup %s to bucket %s", s.file, s.bucket)
2021-08-21 21:26:27 +02:00
}
2021-08-22 15:04:44 +02:00
2021-08-22 16:41:06 +02:00
if s.archive != "" {
if _, err := os.Stat(s.archive); !os.IsNotExist(err) {
if err := copy(s.file, path.Join(s.archive, name)); err != nil {
2021-08-21 21:26:27 +02:00
return fmt.Errorf("copyBackup: error copying file to local archive: %w", err)
}
}
2021-08-22 16:41:06 +02:00
s.logger.Infof("Successfully stored copy of backup %s in local archive %s", s.file, s.archive)
2021-08-21 21:26:27 +02:00
}
return nil
2021-08-21 19:26:42 +02:00
}
// cleanBackup removes the backup file from disk.
2021-08-21 19:26:42 +02:00
func (s *script) cleanBackup() error {
2021-08-21 21:26:27 +02:00
if err := os.Remove(s.file); err != nil {
return fmt.Errorf("cleanBackup: error removing file: %w", err)
}
2021-08-22 16:41:06 +02:00
s.logger.Info("Successfully cleaned local backup.")
2021-08-21 21:26:27 +02:00
return nil
2021-08-21 19:26:42 +02:00
}
// pruneOldBackups rotates away backups from local and remote storages using
// the given configuration. In case the given configuration would delete all
// backups, it does nothing instead.
func (s *script) pruneOldBackups() error {
2021-08-21 21:26:27 +02:00
retention := os.Getenv("BACKUP_RETENTION_DAYS")
if retention == "" {
2021-08-21 19:26:42 +02:00
return nil
}
2021-08-22 14:00:21 +02:00
retentionDays, err := strconv.Atoi(retention)
if err != nil {
return fmt.Errorf("pruneOldBackups: error parsing BACKUP_RETENTION_DAYS as int: %w", err)
}
sleepFor, err := time.ParseDuration(os.Getenv("BACKUP_PRUNING_LEEWAY"))
if err != nil {
return fmt.Errorf("pruneBackups: error parsing given leeway value: %w", err)
}
2021-08-22 16:41:06 +02:00
s.logger.Infof("Sleeping for %s before pruning backups.", os.Getenv("BACKUP_PRUNING_LEEWAY"))
time.Sleep(sleepFor)
2021-08-22 16:41:06 +02:00
s.logger.Infof("Trying to prune backups older than %d days now.", retentionDays)
2021-08-22 14:00:21 +02:00
deadline := time.Now().AddDate(0, 0, -retentionDays)
if s.bucket != "" {
candidates := s.mc.ListObjects(s.ctx, s.bucket, minio.ListObjectsOptions{
2021-08-22 15:04:44 +02:00
WithMetadata: true,
Prefix: os.Getenv("BACKUP_PRUNING_PREFIX"),
})
var matches []minio.ObjectInfo
2021-08-22 16:41:06 +02:00
var lenCandidates int
2021-08-22 15:04:44 +02:00
for candidate := range candidates {
2021-08-22 16:41:06 +02:00
lenCandidates++
if candidate.Err != nil {
return fmt.Errorf("pruneOldBackups: error looking up candidates from remote storage: %w", candidate.Err)
}
2021-08-22 15:04:44 +02:00
if candidate.LastModified.Before(deadline) {
matches = append(matches, candidate)
}
}
2021-08-22 16:41:06 +02:00
if len(matches) != 0 && len(matches) != lenCandidates {
2021-08-22 15:04:44 +02:00
objectsCh := make(chan minio.ObjectInfo)
go func() {
2021-08-22 16:41:06 +02:00
for _, match := range matches {
objectsCh <- match
2021-08-22 15:04:44 +02:00
}
close(objectsCh)
2021-08-22 15:04:44 +02:00
}()
errChan := s.mc.RemoveObjects(s.ctx, s.bucket, objectsCh, minio.RemoveObjectsOptions{})
2021-08-22 15:04:44 +02:00
var errors []error
for result := range errChan {
if result.Err != nil {
errors = append(errors, result.Err)
}
}
if len(errors) != 0 {
return fmt.Errorf(
"pruneOldBackups: %d errors removing files from remote storage: %w",
len(errors),
errors[0],
)
}
2021-08-22 16:41:06 +02:00
s.logger.Infof(
"Successfully pruned %d out of %d remote backups as their age exceeded the configured retention period.",
len(matches),
lenCandidates,
)
} else if len(matches) != 0 && len(matches) == lenCandidates {
s.logger.Warnf("The current configuration would delete all %d remote backups. Refusing to do so.", len(matches))
} else {
s.logger.Info("No remote backups were pruned.")
2021-08-22 15:04:44 +02:00
}
}
2021-08-22 15:04:44 +02:00
2021-08-22 16:41:06 +02:00
if s.archive != "" {
2021-08-22 15:04:44 +02:00
candidates, err := filepath.Glob(
2021-08-22 16:41:06 +02:00
path.Join(s.archive, fmt.Sprintf("%s*", os.Getenv("BACKUP_PRUNING_PREFIX"))),
2021-08-22 14:00:21 +02:00
)
if err != nil {
2021-08-22 15:04:44 +02:00
return fmt.Errorf(
"pruneOldBackups: error looking up matching files, starting with: %w", err,
)
2021-08-22 14:00:21 +02:00
}
2021-08-22 15:04:44 +02:00
var matches []os.FileInfo
for _, candidate := range candidates {
fi, err := os.Stat(candidate)
2021-08-22 14:00:21 +02:00
if err != nil {
2021-08-22 15:04:44 +02:00
return fmt.Errorf(
"pruneOldBackups: error calling stat on file %s: %w",
candidate,
err,
)
2021-08-22 14:00:21 +02:00
}
if fi.ModTime().Before(deadline) {
2021-08-22 15:04:44 +02:00
matches = append(matches, fi)
2021-08-22 14:00:21 +02:00
}
}
2021-08-22 16:41:06 +02:00
if len(matches) != 0 && len(matches) != len(candidates) {
2021-08-22 15:04:44 +02:00
var errors []error
for _, candidate := range matches {
2021-08-22 14:00:21 +02:00
if err := os.Remove(candidate.Name()); err != nil {
2021-08-22 15:04:44 +02:00
errors = append(errors, err)
2021-08-22 14:00:21 +02:00
}
}
2021-08-22 15:04:44 +02:00
if len(errors) != 0 {
return fmt.Errorf(
"pruneOldBackups: %d errors deleting local files, starting with: %w",
len(errors),
errors[0],
)
}
2021-08-22 16:41:06 +02:00
s.logger.Infof(
"Successfully pruned %d out of %d local backups as their age exceeded the configured retention period.",
len(matches),
len(candidates),
)
} else if len(matches) != 0 && len(matches) == len(candidates) {
s.logger.Warnf("The current configuration would delete all %d local backups. Refusing to do so.", len(matches))
} else {
s.logger.Info("No local backups were pruned.")
2021-08-22 14:00:21 +02:00
}
}
return nil
}
2021-08-21 21:26:27 +02:00
func must(f func() error) func() {
return func() {
if err := f(); err != nil {
panic(err)
}
}
}
func copy(src, dst string) error {
in, err := os.Open(src)
if err != nil {
return err
}
defer in.Close()
out, err := os.Create(dst)
if err != nil {
return err
}
_, err = io.Copy(out, in)
if err != nil {
out.Close()
2021-08-21 21:26:27 +02:00
return err
}
return out.Close()
}