-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathPropertyValue.java
More file actions
442 lines (369 loc) · 13.3 KB
/
PropertyValue.java
File metadata and controls
442 lines (369 loc) · 13.3 KB
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
package org.linguafranca.pwdb;
import com.google.common.base.Charsets;
import javax.crypto.Cipher;
import javax.crypto.SealedObject;
import javax.crypto.SecretKey;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.StandardCharsets;
import java.security.SecureRandom;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
/**
* An interface through which (textual) property values can be stored in memory as something other than String
* and using various techniques for obfuscating the value and to make it harder to access the values
* via a heap dump etc.
*/
public interface PropertyValue {
CharSequence getValue();
char [] getValueAsChars();
byte [] getValueAsBytes();
boolean isProtected();
String getValueAsString();
static byte[] charsToBytes(char[] value) {
CharBuffer cb = CharBuffer.wrap(value);
ByteBuffer bb = StandardCharsets.UTF_8.encode(cb);
byte[] result = new byte[bb.limit()];
bb.get(result);
return result;
}
static char[] bytesToChars(byte[] value) {
ByteBuffer bb = ByteBuffer.wrap(value);
CharBuffer cb = Charsets.UTF_8.decode(bb);
char[] chars = new char[cb.limit()];
cb.get(chars);
return chars;
}
static byte[] charSequenceToBytes(CharSequence charSequence){
CharBuffer cb = CharBuffer.wrap(charSequence);
ByteBuffer bb = StandardCharsets.UTF_8.encode(cb);
byte[] result = new byte[bb.limit()];
bb.get(result);
return result;
}
static CharSequence bytesToCharSequence(byte[] bytes){
ByteBuffer bb = ByteBuffer.wrap(bytes);
return StandardCharsets.UTF_8.decode(bb);
}
/**
* A factory interface for PropertyValue.
*/
interface Factory<P extends PropertyValue> {
P of (CharSequence aCharSequence);
P of (char [] value);
P of (byte [] value);
}
/**
* A specification of which factories are to be used for unprotected values as opposed to protected values.
*/
interface Strategy {
/**
* A list of the properties that should be protected
*/
List<String> getProtectedProperties();
/**
* A factory for protected properties
*/
PropertyValue.Factory<? extends PropertyValue> newProtected();
/**
* A factory for unprotected property values
*/
PropertyValue.Factory<? extends PropertyValue> newUnprotected();
/**
* Return a factory given a property name and the properties that should be protected
*/
default PropertyValue.Factory<? extends PropertyValue> getFactoryFor(String propertyName) {
return getProtectedProperties().contains(propertyName) ?
newProtected() :
newUnprotected();
}
class Default implements Strategy {
@Override
public List<String> getProtectedProperties() {
//noinspection ArraysAsListWithZeroOrOneArgument
return new ArrayList<>(Arrays.asList(Entry.STANDARD_PROPERTY_NAME_PASSWORD));
}
@Override
public Factory<? extends PropertyValue> newProtected() {
return SealedStore.getFactory();
}
@Override
public Factory<? extends PropertyValue> newUnprotected() {
return BytesStore.getFactory();
}
}
}
/**
* Values are stored as strings.
*/
class StringStore implements PropertyValue {
private final String value;
private final static PropertyValue.Factory<StringStore> factory =
new PropertyValue.Factory<StringStore>(){
@Override
public StringStore of(CharSequence aCharSequence) {
return new StringStore(aCharSequence);
}
@Override
public StringStore of(char[] value) {
return new StringStore(value);
}
@Override
public StringStore of(byte[] value) {
return new StringStore((value));
}
};
public static PropertyValue.Factory<StringStore> getFactory() {
return factory;
}
public StringStore(CharSequence aCharSequence){
this.value = String.valueOf(aCharSequence);
}
public StringStore(char[] value){
this.value = String.valueOf(value);
}
public StringStore(byte[] value){
this.value = StandardCharsets.UTF_8.decode(ByteBuffer.wrap(value)).toString();
}
@Override
public String getValueAsString() {
return value;
}
@Override
public char[] getValueAsChars() {
return value.toCharArray();
}
@Override
public byte[] getValueAsBytes() {
return value.getBytes(StandardCharsets.UTF_8);
}
@Override
public CharSequence getValue() {
return value;
}
@Override
public boolean isProtected() {
return false;
}
}
/**
* Property values are stored as byte arrays.
*/
class BytesStore implements PropertyValue, Serializable {
private final byte[] value;
private final static PropertyValue.Factory<BytesStore> factory =
new PropertyValue.Factory<BytesStore>(){
@Override
public BytesStore of(CharSequence aCharSequence) {
return new BytesStore(aCharSequence);
}
@Override
public BytesStore of(char[] value) {
return new BytesStore(value);
}
@Override
public BytesStore of(byte[] value) {
return new BytesStore((value));
}
};
public static PropertyValue.Factory<BytesStore> getFactory() {
return factory;
}
public BytesStore(CharSequence aString) {
this.value = charSequenceToBytes(aString);
}
public BytesStore(char [] value) {
this.value = charsToBytes(value);
}
public BytesStore(byte [] value) {
this.value = Arrays.copyOf(value, value.length);
}
@Override
public String getValueAsString() {
return new String(this.value, StandardCharsets.UTF_8);
}
@Override
public CharSequence getValue() {
ByteBuffer bb = ByteBuffer.wrap(this.value);
return Charsets.UTF_8.decode(bb);
}
@Override
public char [] getValueAsChars() {
return bytesToChars(this.value);
}
@Override
public byte [] getValueAsBytes() {
return Arrays.copyOf(this.value, this.value.length);
}
@Override
public boolean isProtected() {
return false;
}
}
/**
* Encrypted property value storage intended for storing passwords in something other than
* plaintext using {@link javax.crypto.SealedObject} class.
* <p>
* The Key for the encrypted value is stored off-heap.
* <p>
* The overhead of using this class for encryption of the value then serialization of the key
* for storage off-heap may be significant.
*/
class SealedStore implements PropertyValue {
static SecureRandom secureRandom = new SecureRandom();
private final SealedObject sealedObject;
private final ByteBuffer buffer;
private ByteBuffer storeKey(SecretKey key) throws IOException {
try (ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos)) {
oos.writeObject(key);
ByteBuffer b = ByteBuffer.allocateDirect(baos.size());
b.put(baos.toByteArray());
return b;
}
}
private SecretKey retrieveKey(ByteBuffer buffer) {
byte [] bytes = new byte[buffer.position()];
buffer.rewind();
buffer.get(bytes);
try {
try (ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
ObjectInputStream ois = new ObjectInputStream(bais)) {
return (SecretKey) ois.readObject();
}
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private byte[] getBytes() {
try {
SecretKey key = retrieveKey(buffer);
byte[] cs = ((byte[]) sealedObject.getObject(key));
key.destroy();
return cs;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
private final static PropertyValue.Factory<SealedStore> factory =
new PropertyValue.Factory<SealedStore>(){
@Override
public SealedStore of(CharSequence aCharSequence) {
return new SealedStore(aCharSequence);
}
@Override
public SealedStore of(char[] value) {
return new SealedStore(value);
}
@Override
public SealedStore of(byte[] value) {
return new SealedStore(value);
}
};
public static PropertyValue.Factory<SealedStore> getFactory() {
return factory;
}
/**
* Believe it or not ... a SecretKey generated by the standard KeyGenerator throws an
* exception when the destroy() method is called, so we roll our own
* <p>
* See JavaDoc of {@link SecretKey} re serialization etc
*/
private static class AESKey implements SecretKey {
private boolean destroyed = false;
private final byte[] key = new byte[16];
final String algorithm = "AES";
{
secureRandom.nextBytes(key);
}
@Override
public void destroy() {
Arrays.fill(this.key, (byte) 0);
this.destroyed = true;
}
@Override
public boolean isDestroyed() {
return this.destroyed;
}
@Override
public String getAlgorithm() {
return this.algorithm;
}
@Override
public String getFormat() {
return "RAW";
}
@Override
public byte[] getEncoded() {
return this.key.clone();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof AESKey)) return false;
AESKey aesKey = (AESKey) o;
return destroyed == aesKey.destroyed && Arrays.equals(key, aesKey.key);
}
@Override
public int hashCode() {
int result = Objects.hash(destroyed, algorithm);
result = 31 * result + Arrays.hashCode(key);
return result;
}
@SuppressWarnings("unused")
public void writeObject(ObjectOutputStream os) throws IOException {
if (destroyed) {
throw new IllegalStateException("Can't serialize a destroyed key");
}
os.defaultWriteObject();
}
}
public SealedStore(byte [] bytes){
try {
Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding");
SecretKey key = new AESKey();
cipher.init(Cipher.ENCRYPT_MODE, key);
buffer = storeKey(key);
key.destroy();
sealedObject = new SealedObject(bytes, cipher);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
public SealedStore(char [] chars) {
this(charsToBytes(chars));
}
public SealedStore(CharSequence charSequence) {
this(charSequenceToBytes(charSequence));
}
@Override
public String getValueAsString() {
return new String(getBytes(), StandardCharsets.UTF_8);
}
@Override
public char[] getValueAsChars() {
return bytesToChars(getBytes());
}
@Override
public byte[] getValueAsBytes() {
byte [] result = getBytes();
return Arrays.copyOf(result, result.length);
}
@Override
public CharSequence getValue() {
return bytesToCharSequence(getBytes());
}
@Override
public boolean isProtected() {
return true;
}
}
}