Title The Click modular router Author Morris, Kohler, Jannotti, Kaashoek Location SOSP Date 1999 Keyword click, component, router Click is a component-based architecture for building flexible and configurable software-based routers. A Click user builds a new router by assembling "elements": packets move from element to element (like in a graph where elements are nodes). Elements are C++ objects and may maintain private state. Packets are copy-on-write (so are presumably passed only via pointers through the objects). The authors introduce two interesting ideas: 1) Pull processing. In a push connection, the upstream element hands a packet to the downstream element; in a pull connection, the downstream element asks the upstream element to return a packet. Elements are not scheduled separately (calls between them are just function calls) and they must cooperatively choose to stop processing. To go from a "pull element" to a "push element" you need to put a "queue" in the middle. Elements themselves do not buffer packets (or presumably stall at all). 2) Flow-based router contexts. Elements are able to examine packets further up the pipeline and act accordingly. Other items: - I don't see what the Null elements are for. - "In a few cases elements require information of an inconveniently global nature." Yuk. - As a proof of concept, they play with two schedulers, Priority and RoundRobin. - Click is implemented as a loadable Linux kernel module. - Click uses /proc to communicate with processes. - Click performs at 90% of Linux's current speed. I think they are trying to say that you get this flexibility to build what you want and only get a marginal slowdown, but this seems a fairly steep loss to me. - Compare to x-kernel, another framework for implementing network protocols. The Click Modular Router: R. Morris and M. F. Kaashoek The principal motivation for the Click modular router is that modern routers are expected to do more than route packets and that specifying policies on current routers is difficult if it is possible at all. Click also represents a reversal of the trend toward special-purpose routing hardware and away from general purpose machines for IP routing. Unlike the project of the previous paper (OSKit), Click is a modular system with a relatively narrow focus and as such a much cleaner and more manageable design. As in OSKit, however, there is a price to be paid for such a high degree of modularity. A Click router is specified by a configuration, which is a DAG with vertices called "elements" and edges, which represent possible paths for packet transfer. An element is an object with input and output ports and a configuration string to specialize its behavior. One of the advantages of the opaque implementation of elements is that, for instance, a Queue in a router configuration may be replaced with another instance of an element that implements a more complex policy, such as RED or differentiated services. There are two types of connections between elements in a Click router: push and pull. Both are implemented as function calls so that scheduling along a path is the responsibility of the user; there are no implicit queues or pre-emption points. In this way, the design of the router is reminiscent of Hoare's CSP. The distinction between push and pull helps to solve a number of common problems in routers, including, for instance, packet scheduling: an input interface can push a packet into the processing graph while an output interface can pull the next packet out. Every port in the router configuration must be either a push or pull port (so-called "agnostic" ports must be instantiated as one or the other). Some elements, such as queues, use "flow-based router context" to find other elements that are not directly connected but are interested in being notified of certain events. For instance, a down-stream interface or element may wish to receive a wakeup when packets are available in a given queue. Such information is determined from the transitive closure of the configuration graph. In addition to such information computed at initialization time, a simple pre-processor for the Click configuration language can help to optimize a configuration using pattern matching. The final few sections describe the implementation of Click in the Linux kernel and a number of simple experiments performed on the initial implementation. A running Click router contains (1) instantiated elements (2) a router object, which collects statistics and router configuration information (3) copy-on-write (COW) packets (4) hooks into timers, which have 10ms resolution on PC platforms (5) a work-list for scheduling element processing. The router gains control of the system either when (1) a packet arrives (2) an outbound interface is ready to send or (3) a timer expires. Greater flexibility and efficiency might be achieved with a polling architecture and/or more control over scheduling of element processing, both of which are mentioned as potential future work. As the authors themselves mention, Click provides a great deal of flexibility, which can easily lead to complex and inefficient router configurations. One way to tackle this problem is through more aggressive static analysis (both for correctness and for performance), a subject deferred to future work. That said, through some simple measurements, the authors try to show that the overhead of their modular design is relatively small: on the order of ten percent. I do have some questions about their experimental set up (a single router sitting between two computers with no other traffic on the network). That said, their results are well presented and their analysis solid.