-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathEncryptManifest.dfy
198 lines (176 loc) · 7.02 KB
/
EncryptManifest.dfy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
include "JsonConfig.dfy"
include "WriteManifest.dfy"
include "../../../../DynamoDbEncryption/dafny/DynamoDbItemEncryptor/src/Index.dfy"
module {:options "-functionSyntax:4"} EncryptManifest {
import opened Wrappers
import opened StandardLibrary
import opened StandardLibrary.UInt
import opened JSON.Values
import opened WriteManifest
import JSON.API
import JSON.Errors
import opened DynamoDbEncryptionUtil
import DdbItemJson
import StandardLibrary.String
import FileIO
import opened JSONHelpers
import JsonConfig
import ENC = AwsCryptographyDbEncryptionSdkDynamoDbItemEncryptorTypes
function Manifest() : (string, JSON)
{
var result : seq<(string, JSON)> :=
[
("type", String(DECRYPT_TYPE)),
("version", String("1"))
];
("manifest", Object(result))
}
function Client(lang : string, version : string) : (string, JSON)
{
var result : seq<(string, JSON)> :=
[
("name", String(LIB_PREFIX + lang)),
("version", String(version))
];
("client", Object(result))
}
method OnePositiveTest(name : string, theType : string, desc : string, config : JSON, decryptConfig : Option<JSON>, record : JSON) returns (output : Result<(string, JSON), string>)
{
var rec :- JsonConfig.GetRecord(record);
var encryptor :- JsonConfig.GetItemEncryptor(name, config);
var encrypted :- expect encryptor.EncryptItem(
ENC.EncryptItemInput(
plaintextItem:=rec.item
)
);
var item :- expect DdbItemJson.DdbItemToJson(encrypted.encryptedItem);
var result : seq<(string, JSON)> :=
[
("type", String(theType)),
("description", String(desc)),
("config", if decryptConfig.Some? then decryptConfig.value else config),
("plaintext", record),
("encrypted", item)
];
return Success((name, Object(result)));
}
method OneNegativeTest(name : string, config : JSON, record : JSON) returns (output : Result<bool, string>)
{
var rec :- JsonConfig.GetRecord(record);
var encryptor :- JsonConfig.GetItemEncryptor(name, config);
var encrypted := encryptor.EncryptItem(
ENC.EncryptItemInput(
plaintextItem:=rec.item
)
);
if encrypted.Success? {
return Failure("Test " + name + " failed to fail to encrypt.");
}
return Success(true);
}
method OneTest(name : string, value : JSON) returns (output : Result<Option<(string, JSON)>, string>)
{
:- Need(value.Object?, "Test must be an object");
var types : Option<string> := None;
var description : Option<string> := None;
var config : Option<JSON> := None;
var decryptConfig : Option<JSON> := None;
var record : Option<JSON> := None;
for i := 0 to |value.obj| {
var obj := value.obj[i];
match obj.0 {
case "type" =>
:- Need(obj.1.String?, "Value of 'type' must be a string.");
types := Some(obj.1.str);
case "description" =>
:- Need(obj.1.String?, "Value of 'description' must be a string.");
description := Some(obj.1.str);
case "config" =>
:- Need(obj.1.Object?, "Value of 'config' must be an object.");
config := Some(obj.1);
case "decryptConfig" =>
:- Need(obj.1.Object?, "Value of 'decryptConfig' must be an object.");
decryptConfig := Some(obj.1);
case "record" =>
:- Need(obj.1.Object?, "Value of 'record' must be an object.");
record := Some(obj.1);
case _ => return Failure("Unknown test member : " + obj.0 + " in " + name);
}
}
:- Need(types.Some?, "Test requires a 'type' member.");
:- Need(description.Some?, "Test requires a 'description' member.");
:- Need(config.Some?, "Test requires a 'config' member.");
:- Need(record.Some?, "Test requires a 'record' member.");
if types.value == "positive-encrypt" {
var x :- OnePositiveTest(name, "positive-decrypt", description.value, config.value, decryptConfig, record.value);
return Success(Some(x));
} else if types.value == "negative-decrypt" {
var x :- OnePositiveTest(name, "negative-decrypt", description.value, config.value, decryptConfig, record.value);
return Success(Some(x));
} else if types.value == "negative-encrypt" {
var _ := OneNegativeTest(name, config.value, record.value);
return Success(None);
} else {
return Failure("Invalid encrypt type : '" + types.value + "'.");
}
}
method Encrypt(inFile : string, outFile : string, lang : string, version : string) returns (output : Result<bool, string>)
{
print "Encrypt : ", inFile, "\n";
var configBv :- expect FileIO.ReadBytesFromFile(inFile);
var configBytes := BvToBytes(configBv);
var json :- expect API.Deserialize(configBytes);
:- Need(json.Object?, "Encrypt file must contain a JSON object.");
var keys : Option<string> := None;
var manifest : Option<seq<(string, JSON)>> := None;
var tests : Option<seq<(string, JSON)>> := None;
for i := 0 to |json.obj| {
var obj := json.obj[i];
match obj.0 {
case "keys" =>
:- Need(obj.1.String?, "Value of 'keys' must be a string.");
keys := Some(obj.1.str);
case "manifest" =>
:- Need(obj.1.Object?, "Value of 'manifest' must be an object.");
manifest := Some(obj.1.obj);
case "tests" =>
:- Need(obj.1.Object?, "Value of 'tests' must be an object.");
tests := Some(obj.1.obj);
case _ => return Failure("Unknown top level encrypt tag : " + obj.0);
}
}
:- Need(keys.Some?, "Encrypt manifest requires a 'keys' member.");
:- Need(manifest.Some?, "Encrypt manifest requires a 'manifest' member.");
:- Need(tests.Some?, "Encrypt manifest requires a 'tests' member.");
for i := 0 to |manifest.value| {
var obj := manifest.value[i];
match obj.0 {
case "type" =>
:- Need(obj.1.String?, "Value of 'type' must be a string.");
:- Need(obj.1.str == ENCRYPT_TYPE, "Value of 'type' must be '" + ENCRYPT_TYPE + "'.");
case "version" =>
:- Need(obj.1.String?, "Value of 'version' must be a string.");
:- Need(obj.1.str == "1", "Value of 'version' must be '1'");
case _ => return Failure("Unknown manifest member : " + obj.0);
}
}
var result : seq<(string, JSON)> :=
[Manifest(), Client(lang, version), ("keys", String("file://keys.json"))];
var test : seq<(string, JSON)> := [];
for i := 0 to |tests.value| {
var obj := tests.value[i];
:- Need(obj.1.Object?, "Value of test '" + obj.0 + "' must be an Object.");
var newTest :- OneTest(obj.0, obj.1);
if newTest.Some? {
test := test + [newTest.value];
}
}
var final := Object(result + [("tests", Object(test))]);
var jsonBytes :- expect API.Serialize(final);
var jsonBv := BytesBv(jsonBytes);
var x :- expect FileIO.WriteBytesToFile(outFile, jsonBv);
return Success(true);
}
}