oc 3072 packet classification using bdds and pipelined
play

OC-3072 Packet Classification Using BDDs and Pipelined SRAMs Amit - PDF document

OC-3072 Packet Classification Using BDDs and Pipelined SRAMs Amit Prakash Adnan Aziz Department of Electrical and Computer Engineering The University of Texas at Austin adnan@ece.utexas.edu prakash Abstract We focus on one of the


  1. ✂ OC-3072 Packet Classification Using BDDs and Pipelined SRAMs Amit Prakash Adnan Aziz Department of Electrical and Computer Engineering The University of Texas at Austin � adnan@ece.utexas.edu prakash Abstract We focus on one of the most performance critical com- putations performed by a router, namely packet classifica- We present a solution to the problem of quickly classi- tion, a special case of which is the longest prefix matching fying packets. Our approach is based on techniques from problem previously described. In its more general form, the logic synthesis. Specifically, we express the classification problem consists of looking at multiple fields in the pack- rules as Boolean logic equations, build Binary Decision Di- et header, and determining what actions to perform on the agrams for these equations, and then map the BDDs to a packet. In addition to making forwarding decisions, pack- logic network consisting of a pipeline of static RAM banks. et classification has applications to implementing class-of- We illustrate our approach by applying it to the longest pre- service, building firewalls, gathering statistics, enforcing fix matching for IP forwarding, and present evidence that service-level-agreements, etc. our scheme can perform a billion matches per second on a To keep our exposition simple, we will first illustrate our CAIDA backbone forwarding table containing 60,000 pre- approach on the longest prefix matching problem. We will fixes. We show how our approach generalizes to classifying describe how our approach generalizes to classification on packets on multiple fields. multiple fields to the general problem at the end of the pa- per. 1 Introduction 1.1 Prior work The longest prefix matching problem has received Until relatively recently, routers were little more than widespread attention. Approaches can be grouped into two general purpose computers connected to specialized hard- classes: software-centric, e.g., [1, 9, 12, 11] and hardware- ware for transmitting and receiving packets over links. This based, e.g., [5, 6]. was because link bandwidth was low enough that general purpose processors could implement all the functionality The state-of-the-art in software-based solutions is em- needed for routing. bodied by the binary search on hash tables algorithm [12]. The advent of high-speed optical link technology has led Since the data structures are large, its best case performance to a reversal to this situation — today routers and not links is bounded by the latency of dynamic RAM, which is ap- are the bottleneck in moving information around the Inter- proximately 50 nanoseconds. In practice, the approach is net. One approach to make routers faster is to implement reported to achieve approximately 2 million matches per performance-critical aspects of routing in custom hardware. second, which is too slow for today’s high speed opti- One of the basic operations that a router has to perform cal links. Furthermore, incremental updates are extremely is to take an incoming packet and determine which output complex; given that backbone routers change their forward- link to put it on. The “forwarding table” contains the in- ing table based on BGP updates every 30 seconds, this is a formation needed to make this decision. Conceptually, this major limitation. Finally, the approach involves relatively table consists of a set of (bitPrefix, outputPort) pairs. The complex operations (e.g., computing hash codes) and is not 32 bit IP destination address ✁ of an input packet is com- “regular” enough to be easily mapped into a direct hardware pared with the prefixes in the set and the packet ✂ is forward- implementation. ed to the output port that corresponds to the longest prefix A diverse set of hardware-based solutions have been of- that matches ✁ . Routers participate in elaborate protocols to fered to the longest prefix matching problem. Gupta et compute forwarding tables which result in paths that are in al. [5] describe a scheme which expands all the prefixes some sense optimum [8, Chapter 11]. up to 24 bits in length, and stores that portion of the for-

  2. ✢ ✢ ✢ warding table in DRAM. Since the vast majority of prefixes from a target standard-cell library, which implements these are no more than 24 bits long, for these prefixes they can logic equations. make a forwarding decision by simply doing a DRAM ac- Truly optimum synthesis is extremely difficult to cess, thereby achieving up to ✄✆☎✞✝✠✟✡☎☞☛ matches per sec- achieve, due to the fact that the underlying decision prob- ond for 50 nanosecond DRAM. However, their approach lems are invariably NP-hard. As such, general purpose syn- suffers from several limitations: it employs a large amoun- thesis tools make extensive use of heuristics. In our work, t of (power hungry) DRAM (9–33 Mbytes are reported), we will develop a logic synthesis procedure that maps the lookup times depend on the prefix length distribution, and forwarding table expressed using Boolean logic equations updates are complex. The approach does not scale — it to a special reprogrammable architecture that is suitable for cannot be used for IP version 6, or for level 4 packet clas- implementing classification rules. sification. Another hardware oriented approach is the use Given that synthesis tools operate with Boolean-valued of Content Addressable Memories (CAMs) [6]. A CAM functions of Boolean-valued variables, it is imperative to is a fully associative memory, i.e., it can perform an exact use a data structure that can compactly represent and ma- match in a single clock cycle by doing multiple comparisons nipulate a large class of useful Boolean functions. The data in parallel. Longest prefix matching can be performed using structure of choice for representing Boolean functions is the Ternary CAMs with some priority decode logic. CAMs can Reduced Ordered Binary Decision Diagram [2]. be used to compute up to 50 million matches per second. Binary Decision Diagrams have their roots in the decom- However, updating the CAM is difficult, since entries need position given by the Shannon expansion theorem, i.e., the to be ordered by length. Furthermore, CAMs, being latch result that ✌✞✍✏✎✒✑✓✌✆✔✖✕✗✎✙✘✙✑✚✌✆✔✡✛ . Recursively applying this based, burn a great deal of power. decomposition leads to a tree structured representation. A reduced ordered binary decision diagram (henceforth BDD) for the function, is precisely such a representation, with the 1.2 Problem relevance added requirements that the variables about which Shannon expansion takes place occur in a fixed order in the tree, n- It is worth stressing that the longest prefix matching odes with equal children are removed, and isomorphic sub- problem is still important today. There are two arguments trees are merged. An example of a BDD is given in Fig- that have been made that it is irrelevant: (1) since packets ure 1(a). The two children of a BDD node are referred to as are written in slow DRAM memory, this is more of a bottle- the 0-branch and 1-branch; these correspond to the function neck to performance, and (2) deployment of multiprotocol computed when the node variable is set to 0 or 1, respec- label switching (MPLS) does away with the need for doing tively. longest prefix matching. We argue against the first point by noting that a fast 3 Our classifier matcher can be used to perform the forwarding decisions for multiple input ports. Furthermore, the general packet Let us consider a router which has ✄☞✜ output ports. Given classification problem is more complex, and needs corre- a forwarding table, our goal in the longest prefix matching spondingly more computation. problem is to find an optimized implementation of the func- Similarly, the introduction of MPLS does not complete- tion PM which takes as an argument a 32 bit address (i.e., ly do away with the packet classification problem. It is not has domain ✣✚☎✥✤✦✟✆✧✓★✪✩ ) and returns a ✫ -bit output port identi- clear whether MPLS will really be widely deployed, as it re- fier, i.e., has range ✣✓☎✬✤✡✟✆✧✭✜ . quires a complex label management scheme in a distributed Given a forwarding table, it is straightforward to write environment. MPLS labels will still need to be computed at Boolean logic equations specifying PM . In principle, we entry points into MPLS networks. Furthermore, more gen- can run logic synthesis on these equations to obtain an effi- eral classification (level 4 and above), cannot be achieved cient hardware implementation of PM . Performing longest by simple MPLS labels because MPLS labels are simply prefix matching is then just a matter of floating the destina- too “coarse.” tion IP address as an input to this hardware — the output port identifier is the output of the synthesized circuit. 2 Background — logic synthesis & BDDs This approach differs from previous hardware approach- es in that the forwarding table is encoded in the circuit itself, Logic synthesis [10] is the term given to the process of instead of being fed as an input to a logic circuit. However realizing an optimized gate-level implementation of a logi- this also means that hardware has to be reprogrammable as cal specification. It is common to express the specification the table may change. Thus, our logic synthesis algorithm using Boolean logic equations. The task of the synthesis needs to target reprogrammable hardware. tool is to compute an optimized netlist of logic gates, drawn For reprogrammable hardware, Field Programmable

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend