Tasks that run for extended periods of time should provide a notification mechanism to alert upper layers when they terminate abnormally. Failure to do this does not cause any resource leaks because the threads in the pool are still recycled, however, it makes failure diagnosis extremely difficult.
Noncompliant Code Example
This noncompliant code example consists of class PoolService
that encapsulate a thread pool and a runnable class, Task
. The run()
method of the task can throw runtime exceptions such as the NullPointerException
.
class PoolService { private final ExecutorService pool = Executors.newFixedThreadPool(10); public void doSomething() throws InterruptedException, IOException { pool.execute(new Task()); } } class Task implements Runnable { @Override public void run() { // ... throw new NullPointerException(); // ... } }
The task does not notify upper layers when it terminated unexpectedly because of the runtime exception. Moreover, there is no recovery code.
Compliant Solution
This compliant solution refactors the task so that it catches Throwable
and forwards it to a custom exception reporter (see [EXC01-J. Use a class dedicated to reporting exceptions] for details on class MyExceptionReporter
).
// ... public class Task implements Runnable { @Override public void run() { try { // ... throw new NullPointerException(); // ... } catch(Throwable t) { // Execute any recovery code MyExceptionReporter.report(t); } } }
overriding the afterExecute method in ThreadPoolExecutor}} is also suggested
Compliant Solution
This compliant solution sets an uncaught exception handler for the thread pool. During the construction of the thread pool, a ThreadFactory
is passed. The factory is responsible for creating new threads and setting the uncaught exception handler on their behalf.
class PoolService { private static final ThreadFactory factory = new ExceptionThreadFactory(new MyExceptionHandler()); private static final ExecutorService pool = Executors.newFixedThreadPool(10, factory); public void doSomething() throws InterruptedException, IOException { pool.execute(new Task()); // Task is a runnable class } public static class ExceptionThreadFactory implements ThreadFactory { private static final ThreadFactory defaultFactory = Executors.defaultThreadFactory(); private final Thread.UncaughtExceptionHandler handler; public ExceptionThreadFactory(Thread.UncaughtExceptionHandler handler) { this.handler = handler; } @Override public Thread newThread(Runnable run) { Thread thread = defaultFactory.newThread(run); thread.setUncaughtExceptionHandler(handler); return thread; } } public static class MyExceptionHandler extends ExceptionReporter implements Thread.UncaughtExceptionHandler { private final Logger logger = Logger.getLogger("com.organization.Log"); // ... @Override public void uncaughtException(Thread thread, Throwable t) { logger.log(Level.SEVERE, "Thread exited with exception: " + thread.getName(), t); } } }
Note that the uncaught exception handler is not called when the method ExecutorService.submit()
is used. This is because the thrown exception is considered to be part of the return status and consequently, it is rethrown by Future.get()
, wrapped in an ExecutionException
[[Goetz 06]].
Risk Assessment
Failing to provide a mechanism to report that tasks in a thread pool failed as a result of an exceptional condition can make it harder to find the problem and cause unresponsiveness.
Rule |
Severity |
Likelihood |
Remediation Cost |
Priority |
Level |
---|---|---|---|---|---|
CON36- J |
low |
probable |
medium |
P4 |
L3 |
Automated Detection
TODO
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
References
[[API 06]] Class Thread, method stop
, interface ExecutorService
[[Goetz 06]] Chapter 7: Cancellation and shutdown
[!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_left.png!] [!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_up.png!] [!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_right.png!]