-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathWolfSSLDebug.java
More file actions
587 lines (512 loc) · 19 KB
/
WolfSSLDebug.java
File metadata and controls
587 lines (512 loc) · 19 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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
/* WolfSSLDebug.java
*
* Copyright (C) 2006-2026 wolfSSL Inc.
*
* This file is part of wolfSSL.
*
* wolfSSL 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; either version 2 of the License, or
* (at your option) any later version.
*
* wolfSSL 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
*/
package com.wolfssl;
import java.time.Instant;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.util.logging.*;
import java.util.logging.Formatter;
import java.util.logging.Handler;
import java.util.function.Supplier;
/**
* Central location for all debugging messages
*
* This class is used internally for displaying debug message.
*
* @author wolfSSL
*/
public class WolfSSLDebug {
/**
* Shared time formatter for all debug log messages.
*/
public static final DateTimeFormatter TIME_FORMATTER =
DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS")
.withZone(ZoneId.systemDefault());
/**
* Create one Logger per logging layer:
* com.wolfssl.jni - JNI layer logging
* com.wolfssl.jsse - JSSE layer logging
*/
private static final Logger jniLogger =
Logger.getLogger("com.wolfssl.jni");
private static final Logger jsseLogger =
Logger.getLogger("com.wolfssl.jsse");
/**
* Check if JSSE level debug logging has been enabled.
* This could have been named "DEBUG_JSSE", but was originally called
* "DEBUG" prior to JNI debug being enabled. Thus for backwards
* compatibility it has been left as "DEBUG".
*
* Is true if "wolfjsse.debug" is set to "true", otherwise false.
*/
public static volatile boolean DEBUG = checkJSSEDebugProperty();
/**
* Check if JNI level debug logging has been enabled.
*
* Is true if "wolfssljni.debug" is set to "true", otherwise false.
*/
public static volatile boolean DEBUG_JNI = checkJNIDebugProperty();
/**
* Check if JSON debug logging format has been enabled.
*
* Is true if "wolfjsse.debugFormat" is set to "JSON", otherwise false.
*/
public static volatile boolean DEBUG_JSON = jsonOutEnabled();
/**
* wolfSSL JNI/JSSE component level being logged.
* Will be used to determine what string gets put into log messages.
*/
public enum Component {
/** wolfSSL JNI component */
JNI("wolfJNI"),
/** wolfSSL JSSE component */
JSSE("wolfJSSE");
private final String componentString;
Component(String compString) {
this.componentString = compString;
}
public String toString() {
return this.componentString;
}
}
/** Error level debug message */
public static final String ERROR = "ERROR";
/** Info level debug message */
public static final String INFO = "INFO";
/**
* Native wolfSSL logging callback.
* Used to print native wolfSSL debug logs when 'wolfssl.debug' System
* property is set to "true".
*/
private static WolfSSLNativeLoggingCallback nativeLogCb = null;
/**
* Default private constructor, utility class with static methods.
*/
private WolfSSLDebug() {
}
static {
configureLoggers();
}
/**
* Custom handler that flushes after each log record
*/
private static class FlushingStreamHandler extends StreamHandler {
public FlushingStreamHandler() {
super(System.err, new WolfSSLFormatter());
}
@Override
public synchronized void publish(LogRecord record) {
super.publish(record);
flush();
}
}
/**
* Configure loggers based on system properties
*/
private static void configureLoggers() {
/* Remove any existing handlers */
for (Handler handler : jniLogger.getHandlers()) {
jniLogger.removeHandler(handler);
}
for (Handler handler : jsseLogger.getHandlers()) {
jsseLogger.removeHandler(handler);
}
/* Only configure handlers if debug is enabled for either component */
if (DEBUG || DEBUG_JNI) {
/* Create custom handler that flushes after each record */
FlushingStreamHandler handler = new FlushingStreamHandler();
if (DEBUG_JSON) {
handler.setFormatter(new JSONFormatter());
} else {
handler.setFormatter(new WolfSSLFormatter());
}
/* Add handlers */
if (DEBUG_JNI) {
jniLogger.addHandler(handler);
}
if (DEBUG) {
jsseLogger.addHandler(handler);
}
}
/* Set log levels based on debug properties */
jniLogger.setLevel(DEBUG_JNI ? Level.ALL : Level.OFF);
jsseLogger.setLevel(DEBUG ? Level.ALL : Level.OFF);
/* Disable parent handlers to prevent double logging */
jniLogger.setUseParentHandlers(false);
jsseLogger.setUseParentHandlers(false);
}
/**
* Custom formatter for wolfSSL logs
*/
private static class WolfSSLFormatter extends Formatter {
@Override
public String format(LogRecord record) {
if (record == null) {
return "null record\n";
}
String sourceClass = record.getSourceClassName();
if (sourceClass == null) {
sourceClass = "unknown";
} else {
/* Extract simple class name (after last dot) */
int lastDot = sourceClass.lastIndexOf('.');
if (lastDot >= 0) {
sourceClass = sourceClass.substring(lastDot + 1);
}
}
String component;
String loggerName = record.getLoggerName();
if (loggerName != null && loggerName.contains("jni")) {
component = "wolfJNI";
}
else {
component = "wolfJSSE";
}
Level level = record.getLevel();
String levelStr = (level != null) ? level.toString() : "UNKNOWN";
@SuppressWarnings("deprecation")
long threadId = record.getThreadID();
String message = record.getMessage();
if (message == null) {
message = "";
}
return String.format("%s [%s %s: TID %d: %s] %s%n",
TIME_FORMATTER.format(Instant.ofEpochMilli(record.getMillis())),
component,
levelStr,
threadId,
sourceClass,
message);
}
}
/**
* JSON formatter for wolfSSL logs
*/
private static class JSONFormatter extends Formatter {
@SuppressWarnings("deprecation")
@Override
public String format(LogRecord record) {
if (record == null) {
return "{\"error\": \"null record\"}\n";
}
String component;
String loggerName = record.getLoggerName();
if (loggerName != null && loggerName.contains("jni")) {
component = "wolfJNI";
}
else {
component = "wolfJSSE";
}
Level level = record.getLevel();
String levelStr = (level != null) ? level.toString() : "UNKNOWN";
String threadName = Thread.currentThread().getName();
String message = record.getMessage();
if (message == null) {
message = "";
}
return String.format(
"{\n" +
" \"@timestamp\": \"%s\",\n" +
" \"level\": \"%s\",\n" +
" \"logger_name\": \"%s\",\n" +
" \"message\": \"%s\",\n" +
" \"thread_name\": \"%s\",\n" +
" \"thread_id\": \"%d\"\n" +
"}\n",
TIME_FORMATTER.format(Instant.ofEpochMilli(record.getMillis())),
levelStr,
component,
message,
threadName,
record.getThreadID());
}
}
/**
* Check if "wolfssljni.debug" System property is set to "true".
*
* @return true if set to "true", otherwise return false
*/
private static boolean checkJNIDebugProperty() {
String enabled = System.getProperty("wolfssljni.debug");
if ((enabled != null) && (enabled.equalsIgnoreCase("true"))) {
return true;
}
return false;
}
/**
* Check if "wolfjsse.debug" System property is set to "true".
*
* @return true if set to "true", otherwise return false
*/
private static boolean checkJSSEDebugProperty() {
String enabled = System.getProperty("wolfjsse.debug");
if ((enabled != null) && (enabled.equalsIgnoreCase("true"))) {
return true;
}
return false;
}
/**
* Check if "wolfjsse.debugFormat" is set to "JSON".
*
* @return true if set to "JSON", otherwise false.
*/
private static boolean jsonOutEnabled() {
String enabled = System.getProperty("wolfjsse.debugFormat");
if ((enabled != null) && (enabled.equalsIgnoreCase("JSON"))) {
return true;
}
return false;
}
/**
* Refresh debug enabled/disabled flags based on current
* System properties.
*/
public static synchronized void refreshDebugFlags() {
boolean oldDebug = DEBUG;
boolean oldDebugJNI = DEBUG_JNI;
DEBUG = checkJSSEDebugProperty();
DEBUG_JNI = checkJNIDebugProperty();
DEBUG_JSON = jsonOutEnabled();
/* Only reconfigure if debug state has changed */
if (oldDebug != DEBUG || oldDebugJNI != DEBUG_JNI) {
configureLoggers();
}
}
/**
* Checks if debugging is turned on and prints out the message.
*
* Output format can be controlled with the "wolfjsse.debugFormat"
* System property. If not set, default debug output format will be used.
* If set to "JSON", all debug logs will be output in the following JSON
* format, which can be read by DataDog:
*
* {
* "@timestamp": "2024-04-05 11:13:07.193",
* "level": "INFO",
* "logger_name": "wolfJSSE",
* "message": "debug message",
* "thread_name": "thread_name",
* "thread_id": "thread_ID"
* }
*
* @param <T> class type of cl
* @param cl class being called from to get debug info
* @param tag level of debug message i.e. WolfSSLDebug.INFO
* @param messageSupplier supplier of message to be printed out
*/
public static synchronized <T> void log(Class<T> cl, String tag,
Supplier<String> messageSupplier) {
log(cl, Component.JSSE, tag, 0, messageSupplier);
}
/**
* Checks if debugging is turned on and prints out the message,
* includes component that is passed in.
*
* Output format can be controlled with the "wolfjsse.debugFormat"
* System property. If not set, default debug output format will be used.
* If set to "JSON", all debug logs will be output in the following JSON
* format, which can be read by DataDog:
*
* {
* "@timestamp": "2024-04-05 11:13:07.193",
* "level": "INFO",
* "logger_name": "wolfJSSE",
* "message": "debug message",
* "thread_name": "thread_name",
* "thread_id": "thread_ID"
* }
*
* @param <T> class type of cl
* @param component JNI/JSSE component being logged, from Component enum
* @param cl class being called from to get debug info
* @param tag level of debug message i.e. WolfSSLDebug.INFO
* @param messageSupplier supplier of message to be printed out
*/
public static synchronized <T> void log(Class<T> cl, Component component,
String tag, Supplier<String> messageSupplier) {
log(cl, component, tag, 0, messageSupplier);
}
/**
* Checks if debugging is turned on and prints out the message, including
* native pointer that is passed in.
*
* Output format can be controlled with the "wolfjsse.debugFormat"
* System property. If not set, default debug output format will be used.
* If set to "JSON", all debug logs will be output in the following JSON
* format, which can be read by DataDog:
*
* {
* "@timestamp": "2024-04-05 11:13:07.193",
* "level": "INFO",
* "logger_name": "wolfJSSE",
* "message": "debug message",
* "thread_name": "thread_name",
* "thread_id": "thread_ID"
* }
*
* @param <T> class type of cl
* @param component JNI/JSSE component being logged, from Component enum
* @param cl class being called from to get debug info
* @param tag level of debug message i.e. WolfSSLDebug.INFO
* @param nativePtr native pointer of class object, if available
* @param messageSupplier supplier of message to be printed out
*/
public static synchronized <T> void log(Class<T> cl, Component component,
String tag, long nativePtr, Supplier<String> messageSupplier) {
if (!isDebugEnabled(component)) {
return;
}
Logger targetLogger;
if (component == Component.JNI) {
targetLogger = jniLogger;
}
else {
targetLogger = jsseLogger;
}
Level level = tag.equals(ERROR) ? Level.SEVERE : Level.INFO;
LogRecord record = new LogRecord(level, messageSupplier.get());
record.setSourceClassName(cl.getName());
record.setLoggerName(targetLogger.getName());
targetLogger.log(record);
}
/**
* Print out a byte array in hex if debugging is enabled.
*
* Output format can be controlled with the "wolfjsse.debugFormat"
* System property. If not set, default debug output format will be used.
* If set to "JSON", all debug logs will be output in the following JSON
* format, which can be read by DataDog:
*
* {
* "@timestamp": "2024-04-05 11:13:07.193",
* "level": "INFO",
* "logger_name": "wolfJSSE",
* "message": "label [sz]: array hex string",
* "thread_name": "thread_name",
* "thread_id": "thread_ID"
* }
*
* @param <T> class type for cl
* @param cl class this method is being called from
* @param tag level of debug message i.e. WolfSSLDebug.INFO
* @param label label string to print with hex
* @param in byte array to be printed as hex
* @param sz number of bytes from in array to be printed
*/
public static synchronized <T> void logHex(Class<T> cl, String tag,
Supplier<String> label, byte[] in, int sz) {
logHex(cl, Component.JSSE, tag, 0, label, in, sz);
}
/**
* Print out a byte array in hex if debugging is enabled, including
* component name and native pointer.
*
* Output format can be controlled with the "wolfjsse.debugFormat"
* System property. If not set, default debug output format will be used.
* If set to "JSON", all debug logs will be output in the following JSON
* format, which can be read by DataDog:
*
* {
* "@timestamp": "2024-04-05 11:13:07.193",
* "level": "INFO",
* "logger_name": "wolfJSSE",
* "message": "label [sz]: array hex string",
* "thread_name": "thread_name",
* "thread_id": "thread_ID"
* }
*
* @param <T> class type for cl
* @param cl class this method is being called from
* @param component JNI/JSSE component being logged, from Component enum
* @param tag level of debug message i.e. WolfSSLDebug.INFO
* @param nativePtr native pointer of class object, if available
* @param label label string to print with hex
* @param in byte array to be printed as hex
* @param sz number of bytes from in array to be printed
*/
public static synchronized <T> void logHex(Class<T> cl, Component component,
String tag, long nativePtr, Supplier<String> label, byte[] in, int sz) {
if (!isDebugEnabled(component) || cl == null || in == null || sz == 0) {
return;
}
Logger targetLogger;
if (component == Component.JNI) {
targetLogger = jniLogger;
}
else {
targetLogger = jsseLogger;
}
Level level = tag.equals(ERROR) ? Level.SEVERE : Level.INFO;
StringBuilder hexString = new StringBuilder();
int printSz = Math.min(in.length, sz);
for (int i = 0; i < printSz; i++) {
if ((i % 16) == 0) {
hexString.append(String.format("\n%06X", (i / 16) * 16));
}
hexString.append(String.format(" %02X", in[i]));
}
String className = cl.getSimpleName();
if (nativePtr != 0) {
className = className + ": " + nativePtr;
}
LogRecord record = new LogRecord(level, label.get() +
" [" + sz + "]: " + hexString.toString());
record.setSourceClassName(cl.getName());
record.setLoggerName(targetLogger.getName());
targetLogger.log(record) ;
}
/**
* Check if debug logging is enabled for the specified component.
*
* @param component the component to check (JNI or JSSE)
*
* @return true if debug logging is enabled for the component,
*/
public static boolean isDebugEnabled(Component component) {
if (component == Component.JSSE && DEBUG) {
return true;
}
if (component == Component.JNI && DEBUG_JNI) {
return true;
}
return false;
}
/**
* Enable native wolfSSL debug logging based on value of the
* 'wolfssl.debug' System property.
*/
public static synchronized void setNativeWolfSSLDebugging() {
String wolfsslDebug = System.getProperty("wolfssl.debug");
if ((wolfsslDebug != null) && (wolfsslDebug.equalsIgnoreCase("true"))) {
WolfSSL.debuggingON();
}
setDefaultNativeLoggingCallback();
}
/**
* Register default native wolfSSL logging callback
*/
private static synchronized void setDefaultNativeLoggingCallback() {
if (nativeLogCb == null) {
nativeLogCb = new WolfSSLNativeLoggingCallback();
}
WolfSSL.setLoggingCb(nativeLogCb);
}
}