|
| 1 | +//go:build !octopus && !pacific && !quincy && ceph_preview |
| 2 | + |
| 3 | +package rbd |
| 4 | + |
| 5 | +import ( |
| 6 | + "testing" |
| 7 | + |
| 8 | + "github.com/stretchr/testify/assert" |
| 9 | + "github.com/stretchr/testify/require" |
| 10 | +) |
| 11 | + |
| 12 | +func TestEncryptionOptionsLUKS(t *testing.T) { |
| 13 | + conn := radosConnect(t) |
| 14 | + defer conn.Shutdown() |
| 15 | + |
| 16 | + poolname := GetUUID() |
| 17 | + err := conn.MakePool(poolname) |
| 18 | + assert.NoError(t, err) |
| 19 | + defer conn.DeletePool(poolname) |
| 20 | + |
| 21 | + ioctx, err := conn.OpenIOContext(poolname) |
| 22 | + require.NoError(t, err) |
| 23 | + defer ioctx.Destroy() |
| 24 | + |
| 25 | + name := GetUUID() |
| 26 | + testImageSize := uint64(50) * 1024 * 1024 |
| 27 | + options := NewRbdImageOptions() |
| 28 | + assert.NoError(t, |
| 29 | + options.SetUint64(ImageOptionOrder, uint64(testImageOrder))) |
| 30 | + err = CreateImage(ioctx, name, testImageSize, options) |
| 31 | + assert.NoError(t, err) |
| 32 | + |
| 33 | + img, err := OpenImage(ioctx, name, NoSnapshot) |
| 34 | + assert.NoError(t, err) |
| 35 | + |
| 36 | + encOpts := EncryptionOptionsLUKS2{ |
| 37 | + Alg: EncryptionAlgorithmAES256, |
| 38 | + Passphrase: []byte("sesame-123-luks-ury"), |
| 39 | + } |
| 40 | + err = img.EncryptionFormat(encOpts) |
| 41 | + assert.NoError(t, err) |
| 42 | + |
| 43 | + // close the image so we can reopen it and load the encryption info |
| 44 | + // then write some encrypted data at the end of the image |
| 45 | + err = img.Close() |
| 46 | + assert.NoError(t, err) |
| 47 | + defer func() { |
| 48 | + assert.NoError(t, img.Remove()) |
| 49 | + }() |
| 50 | + |
| 51 | + testData := []byte("Another day another image to unlock") |
| 52 | + var offset int64 |
| 53 | + |
| 54 | + t.Run("prepare", func(t *testing.T) { |
| 55 | + img, err = OpenImage(ioctx, name, NoSnapshot) |
| 56 | + assert.NoError(t, err) |
| 57 | + defer img.Close() |
| 58 | + err = img.EncryptionLoad2([]EncryptionOptions{encOpts}) |
| 59 | + assert.NoError(t, err) |
| 60 | + |
| 61 | + stats, err := img.Stat() |
| 62 | + require.NoError(t, err) |
| 63 | + offset = int64(stats.Size) - int64(len(testData)) |
| 64 | + |
| 65 | + nOut, err := img.WriteAt(testData, offset) |
| 66 | + assert.Equal(t, len(testData), nOut) |
| 67 | + assert.NoError(t, err) |
| 68 | + }) |
| 69 | + |
| 70 | + unlock := []EncryptionOptions{ |
| 71 | + EncryptionOptionsLUKS{Passphrase: []byte("sesame-123-luks-ury")}, |
| 72 | + } |
| 73 | + |
| 74 | + t.Run("readEncLoad", func(t *testing.T) { |
| 75 | + require.NotEqual(t, offset, 0) |
| 76 | + // Re-open the image, using the generic luks encryption options |
| 77 | + img, err = OpenImage(ioctx, name, NoSnapshot) |
| 78 | + assert.NoError(t, err) |
| 79 | + defer img.Close() |
| 80 | + err = img.EncryptionLoad(unlock[0]) |
| 81 | + assert.NoError(t, err) |
| 82 | + |
| 83 | + inData := make([]byte, len(testData)) |
| 84 | + nIn, err := img.ReadAt(inData, offset) |
| 85 | + assert.Equal(t, nIn, len(testData)) |
| 86 | + assert.Equal(t, inData, testData) |
| 87 | + assert.NoError(t, err) |
| 88 | + }) |
| 89 | + |
| 90 | + t.Run("readEncLoad2", func(t *testing.T) { |
| 91 | + require.NotEqual(t, offset, 0) |
| 92 | + // Re-open the image, using the generic luks encryption options |
| 93 | + img, err = OpenImage(ioctx, name, NoSnapshot) |
| 94 | + assert.NoError(t, err) |
| 95 | + defer img.Close() |
| 96 | + err = img.EncryptionLoad2(unlock) |
| 97 | + assert.NoError(t, err) |
| 98 | + |
| 99 | + inData := make([]byte, len(testData)) |
| 100 | + nIn, err := img.ReadAt(inData, offset) |
| 101 | + assert.Equal(t, nIn, len(testData)) |
| 102 | + assert.Equal(t, inData, testData) |
| 103 | + assert.NoError(t, err) |
| 104 | + }) |
| 105 | + |
| 106 | + t.Run("noEnc", func(t *testing.T) { |
| 107 | + require.NotEqual(t, offset, 0) |
| 108 | + // Re-open the image and attempt to read the encrypted data without loading the encryption |
| 109 | + img, err = OpenImage(ioctx, name, NoSnapshot) |
| 110 | + assert.NoError(t, err) |
| 111 | + defer img.Close() |
| 112 | + |
| 113 | + inData := make([]byte, len(testData)) |
| 114 | + nIn, err := img.ReadAt(inData, offset) |
| 115 | + assert.Equal(t, nIn, len(testData)) |
| 116 | + assert.NotEqual(t, inData, testData) |
| 117 | + assert.NoError(t, err) |
| 118 | + }) |
| 119 | +} |
0 commit comments