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
|
/* KeyStores.java
Copyright (C) 2010 Red Hat, Inc.
This file is part of IcedTea.
IcedTea is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 2.
IcedTea is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with IcedTea; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
*/
package net.sourceforge.jnlp.security;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.security.AllPermission;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.cert.CertificateException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;
import net.sourceforge.jnlp.config.DeploymentConfiguration;
import net.sourceforge.jnlp.runtime.Translator;
import net.sourceforge.jnlp.util.FileUtils;
/**
* The <code>KeyStores</code> class allows easily accessing the various KeyStores
* used.
*/
public final class KeyStores {
/* this gets turned into user-readable strings, see toUserReadableString */
public enum Level {
USER,
SYSTEM,
}
public enum Type {
CERTS,
JSSE_CERTS,
CA_CERTS,
JSSE_CA_CERTS,
CLIENT_CERTS,
}
public static final Map<Integer,String> keystoresPaths=new HashMap<Integer, String>();
private static DeploymentConfiguration config = null;
private static final String KEYSTORE_TYPE = "JKS";
/** the default password used to protect the KeyStores */
private static final String DEFAULT_PASSWORD = "changeit";
public static final char[] getPassword() {
return DEFAULT_PASSWORD.toCharArray();
}
/** Set the configuration object to use for getting KeyStore paths */
public static void setConfiguration(DeploymentConfiguration newConfig) {
SecurityManager sm = System.getSecurityManager();
if (sm != null) {
sm.checkPermission(new AllPermission());
}
config = newConfig;
}
/**
* Returns a KeyStore corresponding to the appropriate level level (user or
* system) and type.
*
* @param level whether the KeyStore desired is a user-level or system-level
* KeyStore
* @param type the type of KeyStore desired
* @return a KeyStore containing certificates from the appropriate
*/
public static final KeyStore getKeyStore(Level level, Type type) {
boolean create = false;
if (level == Level.USER) {
create = true;
} else {
create = false;
}
return getKeyStore(level, type, create);
}
/**
* Returns a KeyStore corresponding to the appropriate level level (user or
* system) and type.
*
* @param level whether the KeyStore desired is a user-level or system-level
* KeyStore
* @param type the type of KeyStore desired
* @return a KeyStore containing certificates from the appropriate
*/
public static final KeyStore getKeyStore(Level level, Type type, boolean create) {
SecurityManager sm = System.getSecurityManager();
if (sm != null) {
sm.checkPermission(new AllPermission());
}
String location = getKeyStoreLocation(level, type);
KeyStore ks = null;
try {
ks = createKeyStoreFromFile(new File(location), create, DEFAULT_PASSWORD);
//hashcode is used instead of instance so when no references are left
//to keystore, then this will not be blocker for garbage collection
keystoresPaths.put(ks.hashCode(),location);
} catch (Exception e) {
e.printStackTrace();
}
return ks;
}
public static String getPathToKeystore(int k) {
String s = keystoresPaths.get(k);
if (s == null) {
return "unknown keystore location";
}
return s;
}
/**
* Returns an array of KeyStore that contain certificates that are trusted.
* The KeyStores contain certificates from different sources.
*
* @return an array of KeyStore containing trusted Certificates
*/
public static final KeyStore[] getCertKeyStores() {
List<KeyStore> result = new ArrayList<KeyStore>(10);
KeyStore ks = null;
/* System-level JSSE certificates */
ks = getKeyStore(Level.SYSTEM, Type.JSSE_CERTS);
if (ks != null) {
result.add(ks);
}
/* System-level certificates */
ks = getKeyStore(Level.SYSTEM, Type.CERTS);
if (ks != null) {
result.add(ks);
}
/* User-level JSSE certificates */
ks = getKeyStore(Level.USER, Type.JSSE_CERTS);
if (ks != null) {
result.add(ks);
}
/* User-level certificates */
ks = getKeyStore(Level.USER, Type.CERTS);
if (ks != null) {
result.add(ks);
}
return result.toArray(new KeyStore[result.size()]);
}
/**
* Returns an array of KeyStore that contain trusted CA certificates.
*
* @return an array of KeyStore containing trusted CA certificates
*/
public static final KeyStore[] getCAKeyStores() {
List<KeyStore> result = new ArrayList<KeyStore>(10);
KeyStore ks = null;
/* System-level JSSE CA certificates */
ks = getKeyStore(Level.SYSTEM, Type.JSSE_CA_CERTS);
if (ks != null) {
result.add(ks);
}
/* System-level CA certificates */
ks = getKeyStore(Level.SYSTEM, Type.CA_CERTS);
if (ks != null) {
result.add(ks);
}
/* User-level JSSE CA certificates */
ks = getKeyStore(Level.USER, Type.JSSE_CA_CERTS);
if (ks != null) {
result.add(ks);
}
/* User-level CA certificates */
ks = getKeyStore(Level.USER, Type.CA_CERTS);
if (ks != null) {
result.add(ks);
}
return result.toArray(new KeyStore[result.size()]);
}
/**
* Returns KeyStores containing trusted client certificates
*
* @return an array of KeyStore objects that can be used to check client
* authentication certificates
*/
public static KeyStore[] getClientKeyStores() {
List<KeyStore> result = new ArrayList<KeyStore>();
KeyStore ks = null;
ks = getKeyStore(Level.SYSTEM, Type.CLIENT_CERTS);
if (ks != null) {
result.add(ks);
}
ks = getKeyStore(Level.USER, Type.CLIENT_CERTS);
if (ks != null) {
result.add(ks);
}
return result.toArray(new KeyStore[result.size()]);
}
/**
* Returns the location of a KeyStore corresponding to the given level and type.
*
* @param level the specified level of the key store to be returned.
* @param type the specified type of the key store to be returned.
* @return the location of the key store.
*/
public static final String getKeyStoreLocation(Level level, Type type) {
String configKey = null;
switch (level) {
case SYSTEM:
switch (type) {
case JSSE_CA_CERTS:
configKey = DeploymentConfiguration.KEY_SYSTEM_TRUSTED_JSSE_CA_CERTS;
break;
case CA_CERTS:
configKey = DeploymentConfiguration.KEY_SYSTEM_TRUSTED_CA_CERTS;
break;
case JSSE_CERTS:
configKey = DeploymentConfiguration.KEY_SYSTEM_TRUSTED_JSSE_CERTS;
break;
case CERTS:
configKey = DeploymentConfiguration.KEY_SYSTEM_TRUSTED_CERTS;
break;
case CLIENT_CERTS:
configKey = DeploymentConfiguration.KEY_SYSTEM_TRUSTED_CLIENT_CERTS;
break;
}
break;
case USER:
switch (type) {
case JSSE_CA_CERTS:
configKey = DeploymentConfiguration.KEY_USER_TRUSTED_JSSE_CA_CERTS;
break;
case CA_CERTS:
configKey = DeploymentConfiguration.KEY_USER_TRUSTED_CA_CERTS;
break;
case JSSE_CERTS:
configKey = DeploymentConfiguration.KEY_USER_TRUSTED_JSSE_CERTS;
break;
case CERTS:
configKey = DeploymentConfiguration.KEY_USER_TRUSTED_CERTS;
break;
case CLIENT_CERTS:
configKey = DeploymentConfiguration.KEY_USER_TRUSTED_CLIENT_CERTS;
break;
}
break;
}
if (configKey == null) {
throw new RuntimeException("Unspported");
}
return config.getProperty(configKey);
}
/**
* Returns a String that can be used as a translation key to create a
* user-visible representation of this KeyStore. Creates a string by
* concatenating a level and type, converting everything to Title Case and
* removing the _'s. (USER,CA_CERTS) becomes UserCaCerts.
*
* @param level the level of the key store.
* @param type the type of the key store.
* @return the translation key.
*/
public static final String toTranslatableString(Level level, Type type) {
StringBuilder response = new StringBuilder();
response.append("KS");
if (level != null) {
String levelString = level.toString();
response.append(levelString.substring(0, 1).toUpperCase());
response.append(levelString.substring(1).toLowerCase());
}
if (type != null) {
String typeString = type.toString();
StringTokenizer tokenizer = new StringTokenizer(typeString, "_");
while (tokenizer.hasMoreTokens()) {
String token = tokenizer.nextToken();
response.append(token.substring(0, 1).toUpperCase());
response.append(token.substring(1).toLowerCase());
}
}
return response.toString();
}
/**
* Returns a human readable name for this KeyStore
*
* @param level the level of the KeyStore
* @param type the type of KeyStore
* @return a localized name for this KeyStore
*/
public static String toDisplayableString(Level level, Type type) {
return Translator.R(toTranslatableString(level, type));
}
/**
* Reads the file (using the password) and uses it to create a new
* {@link KeyStore}. If the file does not exist and should not be created,
* it returns an empty but initialized KeyStore
*
* @param file the file to load information from
* @param password the password to unlock the KeyStore file.
* @return a KeyStore containing data from the file
*/
private static final KeyStore createKeyStoreFromFile(File file, boolean createIfNotFound,
String password) throws IOException, KeyStoreException, NoSuchAlgorithmException,
CertificateException {
FileInputStream fis = null;
KeyStore ks = null;
try {
if (createIfNotFound && !file.exists()) {
File parent = file.getParentFile();
if (!parent.isDirectory() && !parent.mkdirs()) {
throw new IOException("unable to create " + parent);
}
FileUtils.createRestrictedFile(file, true);
ks = KeyStore.getInstance(KEYSTORE_TYPE);
ks.load(null, password.toCharArray());
FileOutputStream fos = new FileOutputStream(file);
ks.store(fos, password.toCharArray());
fos.close();
}
// TODO catch exception when password is incorrect and prompt user
if (file.exists()) {
fis = new FileInputStream(file);
ks = KeyStore.getInstance(KEYSTORE_TYPE);
ks.load(fis, password.toCharArray());
} else {
ks = KeyStore.getInstance(KEYSTORE_TYPE);
ks.load(null, password.toCharArray());
}
} finally {
if (fis != null) {
fis.close();
}
}
return ks;
}
}
|