Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: minor changes, with suggestions
Wiki Markup
Many programs must address the problem of handling a series of incoming requests. The Thread-Per-Message design pattern (described in \[[Lea 00|AA. Java References#Lea 00]\]) is the simplest concurrency strategy wherein a new thread is created for each request.  This design pattern is generally recommended over sequential executions of time consuming, I/O bound, session based or isolated tasks.

...



However, this design pattern also has several pitfalls, including overheads of thread-creation and scheduling, task processing, resource allocation and deallocation, and frequent context switching \[[Lea 00|AA. Java References#Lea 00]\]. Furthermore, an attacker can cause a denial of service by overwhelming the system with too many requests all at once. Instead of degrading gracefully, the system becomes unresponsive, resulting in a denial of service.  From the safety point of view, one component can potentially exhaust all resources because of some intermittent error, starving all other components.

...



Thread pools allow a system to service as many requests as it can comfortably sustain, rather than terminating all services when presented with a deluge of requests. Thread pools overcome these issues because the maximum number of _worker threads_ that can be initialized and executed concurrently can be suitably controlled. Every object that supports thread pools accepts a {{Runnable}} or {{Callable<T>}} task and stores it in a temporary queue until resources become available.  Because the threads in a thread pool can be reused and efficiently added or removed from the pool, thread life-cycle management related overhead is minimized.

...

Noncompliant Code Example

...

  


h2. Noncompliant Code Example

This noncompliant code example demonstrates the Thread-Per-Message design pattern.  The class {{RequestHandler}} provides a public static factory method so that callers can obtain its instance. Subsequently, the {{handleRequest()}} method is used to handle each request in its own thread.

...



{code
:bgColor
=#FFCCCC
}
class Helper {
  public void handle(Socket socket) {
    //... 		
  }	
}

final class RequestHandler {
  private final Helper helper = new Helper();
  private final ServerSocket server;

  private RequestHandler(int port) throws IOException {
    server = new ServerSocket(port);
  }
  
  public static RequestHandler newInstance() throws IOException {
    return new RequestHandler(0); // Selects next available port
  }
  
  public void handleRequest() {
    new Thread(new Runnable() {
      public void run() {
        try {
          helper.handle(server.accept());
        } catch (IOException e) {
          // Forward to handler   
        }
      }
    }).start();
  }

  // ... other methods such as shutting down the thread pool and task cancellation ...
}
{code}

The Thread-Per-Message strategy fails to provide graceful degradation of service. As the number of concurrent threads increases, processing continues normally until some resource is exhausted. The resource to be exhausted first depends on the tasks being performed, and could be available file descriptors, available threads provided by the system, available memory, or any number of other resources. When a critical resource, such as memory, gets exhausted, the system will fail hard, refusing to service any more

...

Compliant Solution

...

 requests.

{mc} If you want to include the above para, I suggest using a version similar to the following: ~DM
The Thread-Per-Message strategy fails to provide graceful degradation of service. As more threads are created, processing continues normally until some scarce resource is exhausted. For example, a system may only allow only a limited number of open file descriptors even though several more threads can be created to service requests. When the scarce resource is memory, the system may fail abruptly, resulting in a denial of service.
{mc}

h2. Compliant Solution

This compliant solution uses a _Fixed Thread Pool_ that places an upper bound on the number of concurrently executing threads. Tasks submitted to the pool are stored in an internal queue. This prevents the system from being overwhelmed when trying to respond to all incoming requests and allows it to degrade gracefully by serving a fixed number of clients at a particular time. \[[Tutorials 08|AA. Java References#Tutorials 08]\]

...



{code
:bgColor
=#ccccff
}
// class Helper remains unchanged

final class RequestHandler {
  private final Helper helper = new Helper();
  private final ServerSocket server;
  private final ExecutorService exec;
	 
  private RequestHandler(int port, int poolSize) throws IOException {
    server = new ServerSocket(port);
    exec = Executors.newFixedThreadPool(poolSize);
  }
	  
  public static RequestHandler newInstance(int poolSize) throws IOException {
    return new RequestHandler(0, poolSize); 
  }
	  
  public void handleRequest() {	
    Future<?> future = exec.submit(new Runnable() {
      @Override public void run() {
	try {
  	  helper.handle(server.accept());
	} catch (IOException e) {
          // Forward to handler						
        }
      }
    });
  }
}
{code}

...

According to the Java API documentation for the {{Executor}} interface \[[API 06|AA. Java References#API 06]\]:

...



{quote}
\[The Interface {{Executor}} is\] An object that executes submitted {{Runnable}} tasks. This interface provides a way of decoupling task submission from the mechanics of how each task will be run, including details of thread use, scheduling, etc. An {{Executor}} is normally used instead of explicitly creating threads.

...


{quote}

The {{ExecutorService}} interface used in this compliant solution derives from the {{java.util.concurrent.Executor}} interface. The {{ExecutorService.submit()}} method allows callers to obtain

...

 a {{Future<V>}} object. This object encapuslates the as-yet-unknown result of an asynchronous computation, and enables callers to perform additional functions such as task cancellation.

...

 

The choice of the unbounded {{newFixedThreadPool}} may not always be the best. Refer to the API documentation for choosing between {{newFixedThreadPool()}}, {{newCachedThreadPool()}}, {{newSingleThreadExecutor()}} and {{newScheduledThreadPool()}} to meet specific design requirements.

...

Risk Assessment

...




h2. Risk Assessment

Using simplistic concurrency primitives to process an unbounded number of requests may result in severe performance degradation, deadlocks and starvation, or exhaustion of system resources (denial-of-service).

...

Rule

Severity

Likelihood

Remediation Cost

Priority

Level

CON21- J

low

probable

high

P2

L3

Automated Detection

TODO

Related Vulnerabilities

Apache Geronimo 3838

References

...



|| Rule || Severity || Likelihood || Remediation Cost || Priority || Level ||
| CON21- J | low | probable | high | {color:green}{*}P2{*}{color} | {color:green}{*}L3{*}{color} |


h3. Automated Detection

TODO

h3. Related Vulnerabilities

[Apache Geronimo 3838|http://issues.apache.org/jira/browse/GERONIMO-3838]

h2. References

\[[API 06|AA. Java References#API 06]\] [Interface Executor|http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Executor.html]
\[[Lea 00|AA. Java References#Lea 00]\] Section 4.1.3 Thread-Per-Message and 4.1.4 Worker Threads
\[[Tutorials 08|AA. Java References#Tutorials 08]\] [Thread Pools|http://java.sun.com/docs/books/tutorial/essential/concurrency/pools.html]
\[[Goetz 06|AA. Java References#Goetz 06]\] Chapter 8, Applying Thread Pools
\[[MITRE 09|AA. Java References#MITRE 09]\] [CWE ID 405|http://cwe.mitre.org/data/definitions/405.html] "Asymmetric Resource Consumption (Amplification)", [CWE ID 410|http://cwe.mitre.org/data/definitions/410.html] "Insufficient Resource Pool"

...



----
[!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_left.png!|CON20-J. Do not perform operations that may block while holding a

...

 lock]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_up.png!|11. Concurrency (CON)]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[!The CERT Sun Microsystems Secure Coding Standard for Java^button_arrow_right.png!|CON22-J. Do not use incorrect forms of the double-checked locking idiom]