Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for encrypted backups in online restores. #5226

Merged
merged 3 commits into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions graphql/admin/endpoints_ee.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@ const adminTypes = `
"""
backupId: String!

"""
Path to the key file needed to unencrypt the backup. This file should be accessible
by all alphas in the group.
"""
keyFile: String!

"""
Access key credential for the destination.
"""
Expand Down
2 changes: 2 additions & 0 deletions graphql/admin/restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import (
type restoreInput struct {
Location string
BackupId string
KeyFile string
AccessKey string
SecretKey string
SessionToken string
Expand All @@ -45,6 +46,7 @@ func resolveRestore(ctx context.Context, m schema.Mutation) (*resolve.Resolved,
req := pb.RestoreRequest{
Location: input.Location,
BackupId: input.BackupId,
KeyFile: input.KeyFile,
AccessKey: input.AccessKey,
SecretKey: input.SecretKey,
SessionToken: input.SessionToken,
Expand Down
3 changes: 3 additions & 0 deletions protos/pb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ message RestoreRequest {
string secret_key = 6;
string session_token = 7;
bool anonymous = 8;

// Info needed to process encrypted backups.
string key_file = 9;
}

message Proposal {
Expand Down
601 changes: 327 additions & 274 deletions protos/pb/pb.pb.go

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type":"full","since":7,"groups":{"1":["dgraph.graphql.xid","dgraph.graphql.schema","dgraph.type"]},"backup_id":"heuristic_sammet9","backup_num":1,"encrypted":true}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type":"incremental","since":2094,"groups":{"1":["dgraph.graphql.xid","genre","name","performance.film","performance.character","tagline","loc","starring","director.film","performance.character_note","rating","rated","actor.film","email","cut.note","performance.actor","initial_release_date","country","dgraph.type","dgraph.graphql.schema"]},"backup_id":"heuristic_sammet9","backup_num":2,"encrypted":true}
Binary file not shown.
7 changes: 6 additions & 1 deletion systest/online-restore/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,17 @@ services:
source: $GOPATH/bin
target: /gobin
read_only: true
- type: bind
source: ./keys
target: /data/keys
read_only: true
- type: bind
source: ./backup
target: /data/alpha1/backup
target: /data/backup
read_only: true
command: /gobin/dgraph alpha -o 100 --my=alpha1:7180 --lru_mb=1024 --zero=zero1:5180
--logtostderr -v=2 --idx=1 --whitelist=10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
--encryption_key_file /data/keys/enc_key
ratel:
image: dgraph/dgraph:latest
container_name: ratel
Expand Down
Binary file added systest/online-restore/keys/enc_key
Binary file not shown.
6 changes: 4 additions & 2 deletions systest/online-restore/online_restore_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ import (

func sendRestoreRequest(t *testing.T) {
restoreRequest := `mutation restore() {
restore(input: {location: "/data/alpha1/backup", backupId: "compassionate_antonelli7"}) {
restore(input: {location: "/data/backup", backupId: "heuristic_sammet9",
keyFile: "/data/keys/enc_key"}) {
response {
code
message
Expand Down Expand Up @@ -138,7 +139,8 @@ func TestBasicRestore(t *testing.T) {

func TestInvalidBackupId(t *testing.T) {
restoreRequest := `mutation restore() {
restore(input: {location: "/data/alpha1/backup", backupId: "bad-backup-id"}) {
restore(input: {location: "/data/backup", backupId: "bad-backup-id",
keyFile: "/data/keys/enc_key"}) {
response {
code
message
Expand Down
6 changes: 5 additions & 1 deletion worker/online_restore_ee.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"net/url"

"github.com/dgraph-io/dgraph/conn"
"github.com/dgraph-io/dgraph/ee/enc"
"github.com/dgraph-io/dgraph/posting"
"github.com/dgraph-io/dgraph/protos/pb"
"github.com/dgraph-io/dgraph/schema"
Expand Down Expand Up @@ -117,7 +118,6 @@ func (w *grpcWorker) Restore(ctx context.Context, req *pb.RestoreRequest) (*pb.S
// TODO(DGRAPH-1230): Track restore operations.
// TODO(DGRAPH-1231): Use draining mode during restores.
// TODO(DGRAPH-1232): Ensure all groups receive the restore proposal.
// TODO(DGRAPH-1233): Online restores support encrypted backups.
func handleRestoreProposal(ctx context.Context, req *pb.RestoreRequest) error {
if req == nil {
return errors.Errorf("nil restore request")
Expand Down Expand Up @@ -198,6 +198,10 @@ func handleRestoreProposal(ctx context.Context, req *pb.RestoreRequest) error {
func writeBackup(ctx context.Context, req *pb.RestoreRequest) error {
res := LoadBackup(req.Location, req.BackupId,
func(r io.Reader, groupId int, preds predicateSet) (uint64, error) {
r, err := enc.GetReader(req.GetKeyFile(), r)
if err != nil {
return 0, errors.Wrapf(err, "cannot get encrypted reader")
}
gzReader, err := gzip.NewReader(r)
if err != nil {
return 0, errors.Wrapf(err, "cannot create gzip reader")
Expand Down