-
-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathSslOptions.java
More file actions
563 lines (512 loc) · 16.1 KB
/
SslOptions.java
File metadata and controls
563 lines (512 loc) · 16.1 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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
/*
* Jooby https://jooby.io
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
* Copyright 2014 Edgar Espina
*/
package io.jooby;
import static io.jooby.SneakyThrows.throwingFunction;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.InvalidPathException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import javax.net.ssl.SSLContext;
import org.jspecify.annotations.Nullable;
import com.typesafe.config.Config;
/**
* SSL options for enabling HTTPs in Jooby. Jooby supports two certificate formats:
*
* <p>- PKCS12 - X.509
*
* <p>Jooby doesn't support JKS format due it is a proprietary format, it favors the use of PKCS12
* format.
*
* @author edgar
* @since 2.3.0
*/
public final class SslOptions implements java.io.Closeable {
/** The desired SSL client authentication mode for SSL channels in server mode. */
public enum ClientAuth {
/** SSL client authentication is NOT requested. */
NONE,
/** SSL client authentication is requested but not required. */
REQUESTED,
/** SSL client authentication is required. */
REQUIRED
}
/** TLSv1.2. Default TLS protocol. */
public static final String TLS_V1_2 = "TLSv1.2";
/**
* TLSv1.3 protocol. Available in: - 8u261-b12 from Oracle JDK - TLS 1.3 support in OpenJDK is
* (beside Azul's OpenJSSE) expected to come into 8u272. - Java 11.0.3 or higher.
*/
public static final String TLS_V1_3 = "TLSv1.3";
/** X509 constant. */
public static final String X509 = "X509";
/** PKCS12 constant. */
public static final String PKCS12 = "PKCS12";
private String password;
private String type = PKCS12;
private InputStream cert;
private InputStream trustCert;
private String trustPassword;
private InputStream privateKey;
private ClientAuth clientAuth = ClientAuth.NONE;
private List<String> protocol = Arrays.asList(TLS_V1_3, TLS_V1_2);
private SSLContext sslContext;
/** Default constructor. */
public SslOptions() {}
/**
* Certificate type. Default is {@link #PKCS12}.
*
* @return Certificate type. Default is {@link #PKCS12}.
*/
public String getType() {
return type;
}
/**
* Set certificate type.
*
* @param type Certificate type.
* @return Ssl options.
*/
public SslOptions setType(String type) {
this.type = type;
return this;
}
/**
* A PKCS12 or X.509 certificate chain file in PEM format. It can be an absolute path or a
* classpath resource. Required.
*
* @return A PKCS12 or X.509 certificate chain file in PEM format. It can be an absolute path or a
* classpath resource. Required.
*/
public InputStream getCert() {
return cert;
}
/**
* Set certificate path. A PKCS12 or X.509 certificate chain file in PEM format. It can be an
* absolute path or a classpath resource. Required.
*
* @param cert Certificate path or location.
* @return Ssl options.
*/
public SslOptions setCert(InputStream cert) {
this.cert = cert;
return this;
}
/**
* A PKCS12 or X.509 certificate chain file in PEM format. It can be an absolute path or a
* classpath resource. Required for {@link ClientAuth#REQUIRED} or {@link ClientAuth#REQUESTED}.
*
* @return A PKCS12 or X.509 certificate chain file in PEM format. It can be an absolute path or a
* classpath resource. Required for {@link ClientAuth#REQUIRED} or {@link
* ClientAuth#REQUESTED}.
*/
public @Nullable InputStream getTrustCert() {
return trustCert;
}
/**
* Set certificate path. A PKCS12 or X.509 certificate chain file in PEM format. It can be an
* absolute path or a classpath resource. Required.
*
* @param trustCert Certificate path or location.
* @return Ssl options.
*/
public SslOptions setTrustCert(@Nullable InputStream trustCert) {
this.trustCert = trustCert;
return this;
}
/**
* Trust certificate password. Optional.
*
* @return Trust certificate password. Optional.
*/
public @Nullable String getTrustPassword() {
return trustPassword;
}
/**
* Set trust certificate password.
*
* @param password Certificate password.
* @return SSL options.
*/
public SslOptions setTrustPassword(@Nullable String password) {
this.trustPassword = password;
return this;
}
/**
* Private key file location. A PKCS#8 private key file in PEM format. It can be an absolute path
* or a classpath resource. Required when using X.509 certificates.
*
* @return A PKCS#8 private key file in PEM format. It can be an absolute path or a classpath
* resource. Required when using X.509 certificates.
*/
public @Nullable InputStream getPrivateKey() {
return privateKey;
}
/**
* Set private key file location. A PKCS#8 private key file in PEM format. It can be an absolute
* path or a classpath resource. Required when using X.509 certificates.
*
* @param privateKey Private key file location. A PKCS#8 private key file in PEM format. It can be
* an absolute path or a classpath resource. Required when using X.509 certificates.
* @return Ssl options.
*/
public SslOptions setPrivateKey(@Nullable InputStream privateKey) {
this.privateKey = privateKey;
return this;
}
@Override
public void close() {
List<InputStream> resources =
Stream.of(cert, trustCert, privateKey).collect(Collectors.toList());
for (InputStream resource : resources) {
if (resource != null) {
try {
resource.close();
} catch (IOException ignored) {
// just try next
}
}
}
resources.clear();
cert = null;
trustCert = null;
privateKey = null;
}
/**
* Certificate password.
*
* @param password Certificate password.
* @return SSL options.
*/
public SslOptions setPassword(@Nullable String password) {
this.password = password;
return this;
}
/**
* Certificate password.
*
* @return Certificate password.
*/
public @Nullable String getPassword() {
return password;
}
/**
* Search for a resource at the given path. This method uses the following order:
*
* <p>- Look at file system for path as it is (absolute path) - Look at file system for path
* relative to current process dir - Look at class path for path
*
* @param path Path (file system path or classpath).
* @return Resource.
*/
public static InputStream getResource(String path) {
try {
Path filepath = Paths.get(path);
Stream<Path> paths;
if (Files.exists(filepath)) {
// absolute file:
paths = Stream.of(filepath);
} else {
try {
// Try relative to current dir:
paths = Stream.of(Paths.get(System.getProperty("user.dir"), path));
} catch (InvalidPathException cause) {
// Try with classloader:
paths = Stream.empty();
}
}
InputStream resource =
paths
.map(it -> it.normalize().toAbsolutePath())
.filter(Files::exists)
.findFirst()
.map(throwingFunction(file -> Files.newInputStream(file)))
.orElseGet(
() ->
SslOptions.class
.getClassLoader()
.getResourceAsStream(path.startsWith("/") ? path.substring(1) : path));
if (resource == null) {
throw new FileNotFoundException(path);
}
return resource;
} catch (IOException cause) {
throw SneakyThrows.propagate(cause);
}
}
/**
* The desired SSL client authentication mode for SSL channels in server mode.
*
* <p>Default is: {@link ClientAuth#REQUESTED}.
*
* @return desired SSL client authentication mode for SSL channels in server mode.
*/
public ClientAuth getClientAuth() {
return clientAuth;
}
/**
* Set desired SSL client authentication mode for SSL channels in server mode.
*
* @param clientAuth The desired SSL client authentication mode for SSL channels in server mode.
* @return This options.
*/
public SslOptions setClientAuth(ClientAuth clientAuth) {
this.clientAuth = clientAuth;
return this;
}
/**
* Specify the enabled protocols for an SSL/TLS session. Default is: <code>TLSv1.2</code> and
* <code>TLSv1.3</code>.
*
* <p>If a listed protocol is not supported, it is ignored; however, if you specify a list of
* protocols, none of which are supported, an exception will be thrown.
*
* <p>Please note TLSv1.3 protocol is available in: - 8u261-b12 from Oracle JDK - TLS 1.3 support
* in OpenJDK is (beside Azul's OpenJSSE) expected to come into 8u272. - Java 11.0.3 or higher.
*
* @return TLS protocols. Default is: <code>TLSv1.2</code> and <code>TLSv1.3</code>.
*/
public List<String> getProtocol() {
return protocol;
}
/**
* Specify the enabled protocols for an SSL/TLS session. If a listed protocol is not supported, it
* is ignored; however, if you specify a list of protocols, none of which are supported, an
* exception will be thrown.
*
* @param protocol TLS protocols.
* @return This options.
*/
public SslOptions setProtocol(String... protocol) {
return setProtocol(Arrays.asList(protocol));
}
/**
* Specify the enabled protocols for an SSL/TLS session. If a listed protocol is not supported, it
* is ignored; however, if you specify a list of protocols, none of which are supported, an
* exception will be thrown.
*
* @param protocol TLS protocols.
* @return This options.
*/
public SslOptions setProtocol(List<String> protocol) {
this.protocol = protocol;
return this;
}
/**
* Returns the custom SSL Context if set (default <code>null</code>).
*
* <p>If a custom SSL Context is set, all options except for {@link #getClientAuth()} and {@link
* #getProtocol()} are ignored.
*
* @return the custom SSL Context or null
*/
public @Nullable SSLContext getSslContext() {
return sslContext;
}
/**
* Sets a custom SSL context.
*
* <p>If a custom SSL Context is set, all options except for {@link #getClientAuth()} and {@link
* #getProtocol()} are ignored.
*
* @param sslContext the new context or null to unset it
*/
public void setSslContext(@Nullable SSLContext sslContext) {
this.sslContext = sslContext;
}
@Override
public String toString() {
return type;
}
/**
* Creates SSL options for X.509 certificate type.
*
* @param crt Certificate path or location.
* @param key Private key path or location.
* @return New SSL options.
*/
public static SslOptions x509(String crt, String key) {
return x509(crt, key, null);
}
/**
* Creates SSL options for X.509 certificate type.
*
* @param crt Certificate path or location.
* @param key Private key path or location.
* @param password Password.
* @return New SSL options.
*/
public static SslOptions x509(String crt, String key, @Nullable String password) {
SslOptions options = new SslOptions();
options.setType(X509);
options.setPrivateKey(getResource(key));
options.setCert(getResource(crt));
options.setPassword(password);
return options;
}
/**
* Creates SSL options for PKCS12 certificate type.
*
* @param crt Certificate path or location.
* @param password Password.
* @return New SSL options.
*/
public static SslOptions pkcs12(String crt, String password) {
SslOptions options = new SslOptions();
options.setType(PKCS12);
options.setCert(getResource(crt));
options.setPassword(password);
return options;
}
/**
* Creates SSL options using a self-signed certificate using PKCS12. Useful for development.
* Certificate works for <code>localhost</code>.
*
* @return New SSL options.
*/
public static SslOptions selfSigned() {
return selfSigned(PKCS12);
}
/**
* Creates SSL options using a self-signed certificate. Useful for development. Certificate works
* for <code>localhost</code>.
*
* @param type Certificate type: <code>PKCS12</code> or <code>X509</code>.
* @return New SSL options.
*/
public static SslOptions selfSigned(final String type) {
switch (type.toUpperCase()) {
case PKCS12:
return pkcs12("io/jooby/ssl/localhost.p12", "changeit");
case X509:
return x509("io/jooby/ssl/localhost.crt", "io/jooby/ssl/localhost.key");
default:
throw new UnsupportedOperationException("SSL type: " + type);
}
}
/**
* Get SSL options from application configuration. Configuration must be at <code>server.ssl
* </code> or <code>ssl</code>.
*
* <p>PKCS12 example:
*
* <pre>
* server {
* ssl {
* type: PKCS12
* cert: mycertificate.crt
* password: mypassword
* }
* }
* </pre>
*
* X509 example:
*
* <pre>
* server {
* ssl {
* type: X509
* cert: mycertificate.crt
* key: mykey.key
* }
* }
* </pre>
*
* @param conf Application configuration.
* @return SSl options or empty.
*/
public static Optional<SslOptions> from(Config conf) {
return from(conf, "server.ssl", "ssl");
}
/**
* Get SSL options from application configuration. It looks for ssl options at the given path(s).
*
* <p>PKCS12 example:
*
* <pre>
* server {
* ssl {
* type: PKCS12
* cert: mycertificate.crt
* password: mypassword
* }
* }
* </pre>
*
* X509 example:
*
* <pre>
* server {
* ssl {
* type: X509
* cert: mycertificate.crt
* key: mykey.key
* }
* }
* </pre>
*
* @param conf Application configuration.
* @param key Path to use for loading SSL options. Required.
* @return SSl options or empty.
*/
static Optional<SslOptions> from(Config conf, String... key) {
return Stream.of(key)
.filter(conf::hasPath)
.findFirst()
.map(
path -> {
String type =
conf.hasPath(path + ".type")
? conf.getString(path + ".type").toUpperCase()
: PKCS12;
SslOptions options;
if (type.equalsIgnoreCase("self-signed")) {
options = SslOptions.selfSigned();
} else {
options = new SslOptions();
options.setType(type);
if (X509.equalsIgnoreCase(type)) {
options.setCert(getResource(conf.getString(path + ".cert")));
options.setPrivateKey(getResource(conf.getString(path + ".key")));
if (conf.hasPath(path + ".password")) {
options.setPassword(conf.getString(path + ".password"));
}
} else if (type.equalsIgnoreCase(PKCS12)) {
options.setCert(getResource(conf.getString(path + ".cert")));
options.setPassword(conf.getString(path + ".password"));
} else {
throw new UnsupportedOperationException("SSL type: " + type);
}
}
if (conf.hasPath(path + ".clientAuth")) {
options.setClientAuth(
ClientAuth.valueOf(conf.getString(path + ".clientAuth").toUpperCase()));
}
if (conf.hasPath(path + ".trust.cert")) {
options.setTrustCert(getResource(conf.getString(path + ".trust.cert")));
}
if (conf.hasPath(path + ".trust.password")) {
options.setTrustPassword(conf.getString(path + ".trust.password"));
}
if (conf.hasPath(path + ".protocol")) {
Object value = conf.getAnyRef(path + ".protocol");
if (value instanceof List) {
options.setProtocol((List) value);
} else {
options.setProtocol(value.toString());
}
}
return options;
});
}
}