US20040167923A1 - Method and apparatus for longest matching prefix determination in a communication network - Google Patents

Method and apparatus for longest matching prefix determination in a communication network Download PDF

Info

Publication number
US20040167923A1
US20040167923A1 US10/786,420 US78642004A US2004167923A1 US 20040167923 A1 US20040167923 A1 US 20040167923A1 US 78642004 A US78642004 A US 78642004A US 2004167923 A1 US2004167923 A1 US 2004167923A1
Authority
US
United States
Prior art keywords
bitmap
stride
leaf
branch
address
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US10/786,420
Inventor
David Carr.
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to US10/786,420 priority Critical patent/US20040167923A1/en
Publication of US20040167923A1 publication Critical patent/US20040167923A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/22Parsing or analysis of headers
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/74Address processing for routing
    • H04L45/745Address table lookup; Address filtering
    • H04L45/74591Address table lookup; Address filtering using content-addressable memories [CAM]

Definitions

  • the invention relates generally to communications networks and more particularly to a method and apparatus for longest matching prefix determination in communications networks.
  • Data communications networks utilize addresses to forward packets of information between users.
  • the number of addresses supported, the amount of traffic, and the speed with which the traffic is traveling are all increasing.
  • routers in such communications networks must determine sources and destinations of endstations associated with traffic more quickly than in the past.
  • IP Internet Protocol
  • LPM longest prefix match
  • Routers that forward packets typically include a database that stores a number of address prefixes and their associated forwarding decisions that indicate where the data should be sent next (next hops). When the router receives a packet it must determine which of the prefixes in the database is the best match for the packet.
  • FIG. 1 illustrates a basic binary trie structure that includes a set of binary prefixes.
  • the example trie illustrated in FIG. 1 corresponds to a six-bit address space that is used to simplify the discussion.
  • the shaded circles indicate valid prefixes.
  • the binary trie illustrated in FIG. 1 contains a default route corresponding to the root of the trie and a plurality of valid prefixes that may only be partially specified (e.g. 000XXX), or fully specified (e.g. 000100).
  • Bits included in the address to be resolved are used to make branching decisions at each of the nodes within the trie, where 0 bits cause a branch to the left and one bits cause a branch to the right.
  • the binary prefix 000XXX is a valid prefix, as is the prefix 000100.
  • the longest matching prefix is 000100, and thus 000100 is the prefix which must be selected for the address.
  • FIG. 2 illustrates a prior art technique for simplifying the basic binary trie illustrated in FIG. 1.
  • FIG. 2 illustrates a Patricia trie that flattens the basic binary trie in areas where decisions at nodes within the trie structure cannot result in more than one possible prefix determination.
  • nodes within the trie structure that are traversed in route to a valid prefix with no further decision making required are compressed out.
  • Such path compression can reduce the average number of memory accesses required to determine the LPM for an address to log 2 N accesses, where N is the number valid prefixes stored in the trie.
  • Patricia trees may require L memory accesses to resolve an LPM, where L is equal to the number of bits in the address, which may be 32 bits in some applications such as IP version 4 and 128 bits for IP version 6.
  • L is equal to the number of bits in the address, which may be 32 bits in some applications such as IP version 4 and 128 bits for IP version 6.
  • Another trie processing method that attempts to reduce the time it takes to determine the appropriate prefix is to create a multi-way branching trie that processes multiple bits of the address in a single step. This is illustrated in FIG. 3, where a trie that exists in a 32-bit address space has been broken into a set of steps, or strides. As is illustrated, the strides may be selected to be of varying bit lengths. Thus, 4-bit strides, 8-bit strides, and even 16-bit strides may be employed to traverse the trie structure. For each stride, a portion of the address is compared with sets of bits corresponding to that stride to determine if a LPM has been resolved or if one or more additional strides must be traversed in order to determine the LPM.
  • FIG. 4 shows the root level of a 5-bit portion of a trie structure after prefix expansion.
  • the cut depth is the bottom set of prefixes of the trie structure illustrated in FIG. 4 and is shown surrounded by a long rectangular box.
  • new nodes may have to be created at the cut depth in order to make the trie complete. Values for newly created nodes are then propagated from parent nodes.
  • Propagation of a prefix value to a newly created node is illustrated via the arrows originating from parent nodes.
  • One example is the labeled parent node that propagates a valid prefix to the three labeled propagated nodes.
  • the highest level, or root node also serves as a parent node to some of the nodes at the cut level.
  • FIG. 1 illustrates a graphical representation of a prior art binary trie structure
  • FIG. 2 illustrates a graphical representation of a prior art Patricia trie structure
  • FIG. 3 illustrates a graphical representation of a prior art trie structure broken into a number of strides
  • FIG. 4 illustrates a graphical representation of a prior art prefix-expanded trie
  • FIG. 5 illustrates compression of the stride results for a trie cut to a set of compressed stride results in accordance with a particular embodiment of the present invention
  • FIG. 6 illustrates a graphical representation of a trie cut associated with a stride that includes compressed nodes
  • FIG. 7 illustrates the further compression of compressed stride results into a stride record and corresponding leaf and branch tables in accordance with a particular embodiment of the present invention
  • FIG. 8 illustrates an alternate form of further compression of the compressed stride results into a stride record that includes sub-tries and a corresponding leaf pointer table in accordance with a particular embodiment of the present invention
  • FIG. 9 illustrates a graphical representation of a trie cut with compressed nodes that distinguishes between subsequent dense and sparse stride records in accordance with a particular embodiment of the present invention
  • FIG. 10 illustrates a graphical representation of a sparse stride record in accordance with a particular embodiment of the present invention
  • FIG. 11 illustrates a graphical representation of a dense stride record in accordance with a particular embodiment of the present invention
  • FIG. 12 illustrates a graphical representation of a dense block in accordance with a particular embodiment of the present invention
  • FIG. 13 illustrates a flow diagram of a method for compressing stride data in accordance with a particular embodiment of the present invention
  • FIG. 14 illustrates a block diagram of a packet routing circuit in accordance with a particular embodiment of the present invention
  • FIG. 15 illustrates a block diagram of a packet routing processor in accordance with a particular embodiment of the present invention
  • FIG. 16 illustrates a flow diagram of a method for packet routing in accordance with a particular embodiment of the present invention
  • FIG. 17 illustrates a flow diagram of a method for processing a dense stride record in accordance with a particular embodiment of the present invention.
  • FIG. 18 illustrates a graphical representation of the determination of a forwarding decision for a particular address in accordance with a particular embodiment of the present invention.
  • the present invention provides a method and apparatus for compressing the data associated with trie cuts (strides), and a method and apparatus for utilizing such compressed data to determine forwarding decisions for data packets in a communication network.
  • the compression technique presented generates a pair of bitmaps and a pair of base pointers for each set of compressed data.
  • the bitmaps are compared with a portion of the address to ascertain whether the forwarding decision is determined within this portion of the trie.
  • Forwarding decisions are stored in a leaf table that is accessed via a leaf table index.
  • the leaf table index is generated by combining a leaf table offset generated from at least one of the bitmaps with a leaf table base pointer included in the stride record.
  • the leaf table will be accessed via the leaf table index to retrieve the forwarding decision. If the forwarding decision is not completely determined within the stride, a branch table is used to determine the location of the subsequent stride to be processed. The branch table is accessed via a branch table index generated by combining the branch table base pointer of the stride with a branch table index generated from one or more of the bitmaps included in the stride record.
  • the method and apparatus described herein provide techniques for compressing data associated with stride records. Techniques are also described for storing the data in an efficient manner such that forwarding decisions can be determined utilizing a minimal number of memory accesses.
  • the compression techniques described herein enable the data associated with large strides to be stored in an efficient manner such that the memory required to store the forwarding or branching decisions for each stride is greatly reduced in comparison to prior art solutions. As such, rapid determination of forwarding decisions can be performed in a system that utilizes memory efficiently such that large strides can be accommodated with a practical amount of memory in a system that can support high speed routing.
  • FIG. 5 shows the list, or table of stride results 62 represents the corresponding pointers for each of the nodes in the extended trie structure of FIG. 4.
  • the leaf pointer for 000XXX corresponds to the left most shaded circle in the cut level of the trie structure of FIG. 4.
  • the bottom-most entry in the list of stride results 62 a leaf pointer for 11111X, corresponds to the right most shaded circle at the cut level of the trie structure of FIG. 4.
  • FIG. 6 illustrates a compressed trie structure 50 in which consecutive repetitive results are compressed to a single result.
  • a bitmap 54 is used to indicate whether or not a result is stored for a particular node.
  • the first bit in the bitmap 54 is a one, thus indicating that results are included in the compressed set of results for the first node 52 at the cut level.
  • the results for the second node 51 are the same as the result for the first node 52 .
  • the bitmap stores a 0 at the bit location corresponding to the second node 51 .
  • a 0 bit entry in the bitmap 54 corresponds to a node for which the result has been compressed and, as such, the associated pointer is not immediately available.
  • a search algorithm In order to retrieve this compressed pointer, a search algorithm must search for the first non-compressed entry (as represented by a 1 bit) to the left of the compressed entry in the bitmap 54 . The pointer returned at this entry is identical to that which would have been stored for the compressed entry in an uncompressed format.
  • the closest set bit corresponds to a node for which valid results are stored in the set of compressed stride results 66 illustrated in FIG. 5. This result is also applicable to the subsequent nodes for which a 0 is stored in the bitmap 54 .
  • the compressed stride results 66 greatly reduce the number of pointers that must be stored to represent the results for each of the nodes at the cut level in the expanded trie structure.
  • the bitmap 54 is used in conjunction with the set of compressed stride results 66 to determine the appropriate pointer for each of the nodes at the cut level.
  • the bitmap 54 can be used in conjunction with the compressed stride results 66 . If the compressed stride results 66 are individually stored in a contiguous fashion within memory, an appropriate pointer can be determined by calculating an offset within the set of contiguous compressed results based on the number of set bits in the bitmap 54 to the left of the desired bit location. Although this may be accomplished by sequentially scanning the bitmap 54 and counting the number of 1's, more efficient means for calculating the number of 1's in a particular set of bits are commonly available.
  • a population count (popcount) operation may be available which calculates the number of 1's in a set of bits.
  • a population count (popcount) operation may be available which calculates the number of 1's in a set of bits.
  • an offset to the table of compressed stride results 66 can be determined.
  • a simple linear set of instructions can be used to calculate the popcount for a set of bits.
  • One such set of instructions is detailed in the GNU C library.
  • FIG. 6 illustrates a refinement on the data structure of FIG. 6 in which an additional bitmap is added to the compressed record to indicate which of the pointers are leaf pointers.
  • FIG. 7 illustrates the compressed stride results 66 being further compressed into a stride block 70 that includes a branch bitmap 72 , a leaf bitmap 74 , a leaf base pointer 75 and a set of branches 77 (sub-tries).
  • “Block” is a term that may be used to describe a portion of the trie structure that includes the information for processing a stride.
  • a set bit in the branch bitmap 72 indicates that the node corresponding to the bit location within the branch bitmap 72 has a result that corresponds to an entry in the list of branch pointers.
  • a set bit within the leaf bitmap 74 indicates that the node to which the bit location within the leaf bitmap 74 corresponds has a result which is a leaf pointer stored in the leaf pointer table 76 . If a leaf pointer needs to be referenced, a popcount can be used to determine an index within the leaf pointer table 76 . This index can be combined with the leaf base pointer 75 , which points to the first entry of the leaf pointer table 76 , in order to access the appropriate entry within the leaf pointer table 76 .
  • the sub-tires are placed in contiguous memory, and the individual sub-trie pointers are replaced by a bitmap and a base pointer to the contiguous memory location.
  • FIG. 8 The stride record 80 of FIG. 8 has been reduced to the branch bitmap 72 , the leaf bitmap 74 , the leaf base pointer 75 , and a branch base pointer 76 .
  • the branch base pointer 76 points to a base entry of a branch table 89 (which also may be referred to as a next sub-trie block) that stores the branches (sub-tries) for the particular stride.
  • the branch table 89 can be accessed through a combination of the branch base pointer 76 and an offset generated using the branch bitmap 72 .
  • the appropriate offset for the branch table 89 can be determined.
  • the stride block 80 in the compressed format shown in FIG. 8 is compact enough to fit within a cache line of a cache structure utilized by a processor for processing the stride.
  • an entire cache line (group of words) may be read from the cache in roughly the same time as is required to read a single word. This allows the stride to be processed in an efficient manner such that the forwarding decision for an address can be determined using a minimal number of memory accesses. Because of the compression performed, the amount of memory required to store the data required to process each stride is also greatly reduced in comparison with prior art solutions.
  • strides of the overall trie structure may include a small number of pointers that can be stored in a small amount of memory. These sparse sections of the trie can be compressed into a particular sparse compression format that is more efficient in terms of processing as it may include the actual results for leaves rather than pointers to a leaf table.
  • the stride block that points to a subsequent sparse or dense block may include an encoding such that the type of compression used for the subsequent blocks is known.
  • FIG. 9 illustrates a particular encoding technique that can be used to accomplish this differentiation.
  • FIG. 9 illustrates a stride that includes compressed nodes.
  • Each node at the cut level can have one of four states. These four states are encoded through the combination of an extends bitmap 95 and a type bitmap 96 included in the stride record 99 .
  • For each node at the cut level there is a bit within the extended bitmap 95 and a bit within the type bitmap 96 . The combination of these two bits for each node indicates the particular state of that node.
  • the extends and type bitmaps allow four states to be encoded for each node, which was not possible using the leaf and branch bitmaps as described thus far.
  • the distinction between the use of the branch and leaf bitmaps as opposed to type and extends bitmaps is solely dependent on whether different encoding of blocks (sparse vs. dense) is employed in the system. For embodiments that only use one block encoding, branch and leaf bitmaps provide enough encoded states. For embodiments that support sparse and dense blocks, extends and type bitmaps provide the necessary number of states to indicate the type of encoding for subsequent blocks.
  • the first node is shown to have state that corresponds to a leaf indication 91 .
  • Nodes having a state corresponding to a leaf indication are shown as shaded circles.
  • a leaf indication indicates that a valid entry is included within the leaf table for this particular node.
  • a combination of the extends bitmap 95 and the type bitmap 96 will generate the leaf bitmap 74 described earlier, which can then be manipulated to determine an offset for the leaf table. This offset can then be combined with the leaf base pointer 75 to access the leaf table and fetch the forwarding decision for the node from the leaf table.
  • Leaf indications are encoded with a 0 in the extends bitmap 95 and a 1 in the type bitmap 96 .
  • the particular bit encodings used in the examples described herein are arbitrary, and as long as the particular relationships between different bitmaps are preserved, differing bit values for various encodings may be utilized.
  • the second node location is shown to correspond to an empty indication 94 , which is illustrated as an unshaded circle. Empty indications are encoded with a 0 in the extends bitmap 95 and a 0 in the type bitmap 96 . An empty indication means that a search to the left must be performed to determine the appropriate result for this particular node as it has been compressed.
  • the third node location at the cut level is shown to correspond to a sparse indication 92 .
  • Sparse indications are indicated by a 1 in the extends bitmap 95 and a 0 in the type bitmap 96 .
  • a sparse indication means that the search extends beyond the cut level present in the trie structure 90 .
  • the subsequent stride block fetched based on the index generated for this node will be a sparse stride block, which, in one embodiment, may process a stride of 8 address bits. Knowing that the subsequent block to be fetched is a sparse block enables the processor to improve the efficiency with which the subsequent stride block is processed. This is because additional information can be stored within the sparse block, as it does not include as many end results as a dense block.
  • An example sparse stride block 901 is illustrated in FIG. 10.
  • the sparse block 901 includes a branch base pointer that points to the next block in the trie structure.
  • the leaf base pointer included in the sparse block stores a base address for the leaf table. All leaves for the sparse block are stored contiguously from this base address, and can be accessed by generating an appropriate offset using the type and extends bitmaps.
  • the second line of the sparse block is shown to include eight values. Each of these values can be directly compared with the portion of the address that is being used to resolve this stride. If an exact match is found, then there is a pointer associated with that address in either the branch table or the leaf table.
  • a left search is performed such that the next highest value in the array of values is selected, which is analogous to the scan bit operation on a bitmap.
  • the type and extends bitmaps are each only 8-bit bitmaps. The use of the type and extends bitmaps is identical to that of a dense block, and they can be used to determine offsets to either the branch table or the leaf table, and the bitmaps can also be used to distinguish between sparse and dense subsequent blocks.
  • the sixth bit location within the cut level of the stride is shown to correspond to a dense indication 93 .
  • the dense indication 93 is indicated by a 1 in the extends bitmap 95 and a 1 in the type bitmap 96 .
  • a dense indication 93 indicates that an offset should be generated and combined with the branch base pointer 76 to reference a subsequent stride block that is a dense block.
  • the stride block 99 of FIG. 9 is a dense stride block in that it includes a full extends bitmap and type bitmap for all of the nodes at the cut level for the stride. This is in contrast to a sparse block that only includes a limited set of values corresponding to a limited set of nodes, and the appropriate type and extends bitmaps for those particular values.
  • a block is a portion of the trie structure that is used to process a stride.
  • a block can be divided into a number of records where a particular record is selected by a portion of the address bits used to step through the stride.
  • a block for an 8-bit stride may be divided into eight records where three of the eight address bits used to process this stride are used to select a specific one of the records within the block corresponding to the stride.
  • the remaining five bits could then be used to process the record selected, where the structure of the record may be similar to the structures described thus far for a 5-bit block.
  • each record could be structured as a block in that it would include bitmaps and base pointers.
  • FIG. 11 illustrates a dense record 911 . The differentiation between blocks and strides will be further explained with reference to FIG. 18 below.
  • the dense record 911 includes an extends bitmap, a type bitmap, a number of bits that are reserved for future use (RFU), a branch table base pointer, a leaf table base pointer, and may include an indication as to how many of the blocks in the sub-trie below are sparse blocks.
  • the indication as to how many blocks in the sub-trie below are sparse blocks can be used to optimize accesses to the sub-trie below.
  • Dense blocks are used where the density of pointers within a stride prohibits the use of the more memory efficient sparse blocks.
  • One example of a dense block 921 for an 8-bit stride is shown in FIG. 12.
  • the large bitmaps included in the dense block above may be difficult for software to manipulate, and the amount of data that has to be retrieved to process such a block is large.
  • the fields within the block are not aligned to normal cache line boundaries, and the amount of contiguous memory that would likely be required for the leaf table and branch table would place restrictions on the dynamic allocation of memory in the implementation.
  • the representation illustrated above does present the minimum memory usage for a dense block. In embodiments that include wide or separate memory structures, such a dense block structure may be practical.
  • dense blocks may be broken up into records to facilitate both the hardware implementation of the system and efficient processing by software. This was briefly discussed above. For example, a 32 bit microprocessor would most likely prefer to manipulate 32 bit bitmaps. Thus, for an 8-bit stride, eight stride records could be used which are indexed using the upper three bits of the stride. Each of the records would then be used to process the lower five bits of the stride, where the bitmaps in a 5-bit dense stride record would be 32-bit bitmaps.
  • each record may include an indication of the number of sparse records included in the following stride block. If the sparse records are stored contiguously in the branch table before the dense records, indexing the branch table is simplified by keeping a count of the number of sparse records.
  • FIG. 13 illustrates a flow diagram of one method for compressing a dense stride block.
  • the stride block is separated into a plurality of stride portions. This is analogous to separating the block into a number of records. For each stride portion, or record, steps 104 - 112 are performed.
  • the stride results for the portion are compressed to produce a compressed bitmap and a compressed list of stride results.
  • the compressed bitmap and compressed list of stride results are further compressed to produce a leaf bitmap, branch bitmap, leaf table section and a branch table section.
  • the leaf table section is stored in the portion of memory or the table associated with the leaf pointers for the trie.
  • these leaf pointers are stored in a contiguous fashion within the leaf table starting at a leaf base pointer for the stride portion such that they can be accessed through the combination of a base pointer and offsets combined to produce indexes to the table.
  • the branch table section is stored in memory starting at a location corresponding to a branch base pointer. Preferably, it is stored in a contiguous fashion in memory such that random access to the entries in the branch table can be performed using a base pointer and offsets.
  • a stride record is stored in memory for the stride portion where the stride record includes the leaf bitmap, the branch bitmap, the leaf table base pointer at which the leaf table section was stored, and the branch table base pointer at which the branch table section for the stride portion was stored.
  • Storing the stride record at step 112 may include encoding the leaf bitmap and the branch bitmap in an extends bitmap and a type bitmap as was described with respect to FIG. 9 above.
  • the extends bitmap and type bitmap enable the stride record to encode sparse and dense format distinctions for subsequent stride blocks that are accessed via branch pointers included in the branch table.
  • FIG. 14 illustrates a block diagram of a packet routing circuit 250 that may be used in conjunction with the trie compression techniques discussed thus far to perform packet routing in a communications network.
  • the packet routing circuit 250 includes memory 220 , a determination block 200 , packet memory 230 , and output circuitry 240 . Packets 202 received by the packet routing circuit 250 are stored in the packet memory 230 while a forwarding decision for each packet is determined. The address 203 for each packet is provided to the determination block 200 that determines the routing decision 242 for each packet.
  • the determination block 200 may be implemented as a state machine, discrete circuitry, or as a packet routing processor such as that illustrated in FIG. 15.
  • the determination block 200 is operably coupled to a memory 220 that stores a forwarding table 222 .
  • the forwarding table 222 is structured in a manner such that the forwarding decisions for packets are determined through the use of a compressed trie structure.
  • the compressed trie structure may include a number of strides where the block corresponding to each stride may be broken into a number of records.
  • the determination block 200 When the determination block 200 receives a packet address, it processes the address to determine a forwarding decision 242 in a manner similar to that illustrated in the flow diagram of FIG. 16, which is described in additional detail below.
  • a cache 210 may be included in the packet routing circuit 250 .
  • the cache 210 which is operably coupled to the memory 220 and the determination block 200 , may be used to cache certain portions of the forwarding table 222 such that the determination of the forwarding decision 242 can be done in a more efficient manner that requires fewer accesses to the memory 220 .
  • a forwarding decision 242 Once a forwarding decision 242 has been determined by the determination block 200 , it is provided to the output circuitry 240 . For each packet, the output circuitry receives a forwarding decision 242 and forwards the packet to at least one of the plurality of outputs 246 based on the forwarding decision.
  • the packet routing circuit 250 is included in a router for use in a data communication network.
  • a router may be used in a data communications network that supports IP traffic.
  • the memory 220 may store a plurality of forwarding tables, where a particular forwarding table is selected for use in determining the forwarding decision for a particular packet based on either a field included in the packet or the identity of an input port over which the packet was received.
  • FIG. 15 illustrates a packet routing processor 300 that includes a processing module 302 and memory 304 .
  • the packet routing processor preferably executes the method illustrated in FIG. 16 through the use of software stored as a set of operational instructions in the memory 304 .
  • the processing module 302 may include a single processing entity or a plurality of processing entities. Such a processing entity may be a microprocessor, a microcontroller, a digital signal processor or any device that processes information based on operational or programming instructions.
  • the memory 304 may be a single memory device or a plurality of memory devices. Such a memory device may be a read only memory device, random access memory device, floppy disk, hard drive memory, or any device that stores digital information. Note that the memory 304 may be incorporated in the memory 220 included in the packet routing circuit or may be a separate memory structure.
  • the memory 304 stores programming or operational instructions that, when executed by the processing module 302 , allow the processing module 302 to perform packet routing functions such as those illustrated in the flow diagram of FIG. 16.
  • the packet routing processor 300 may implement some of the functions of FIG. 16 through software stored in the memory 304 , whereas other portions may be implemented using hardware or circuitry included within the packet routing processor 300 . Thus, in some embodiments a mix of hardware and software may be used to perform the method illustrated in FIG. 16
  • FIG. 16 illustrates a flow diagram of a method for packet routing in a communications network.
  • the method begins at step 402 where a packet is received.
  • the packet includes an address that is used to determine a forwarding decision for the packet.
  • the forwarding decision is determined based on a compressed trie structure that may be stored in a forwarding table.
  • the compressed trie structure is preferably made up of a number of strides where the blocks that make up a stride may be divided into a number of records where the blocks and records are preferably structured as indicated above.
  • a first stride block is fetched using a first portion of the address.
  • a stride block may be broken into a number of records in order to simplify processing.
  • the most significant bits of the address are used to retrieve a stride record included in a stride block, where the most significant bits index between a number of stride records that make up a dense block within the trie structure.
  • Each stride block includes a first bitmap, a second bitmap, a leaf table base pointer, and a branch table base pointer.
  • step 406 it is determined if the forwarding decision for the address can be fully determined based on the stride block that has been fetched. This is determined based on at least one of the first and second bitmaps.
  • the first bitmap is an extends bitmap and the second bitmap is a type bitmap, the extends bitmap alone can be used to determine if the forwarding decision is fully determined using this stride record.
  • a leaf table offset is generated from at least one of the first and second bitmaps and the second portion of the address.
  • the second portion of the address is used to select a specific bit location within one or more of the bitmaps and a masking operation followed by a population count is used to determine an offset to the leaf table.
  • the extends bitmap and type bitmap must be combined to generate the leaf bitmap. This can be accomplished by performing a bit-wise AND operation of the type bitmap and the bit-wise inverse of the extends bitmap.
  • the leaf table offset generated at step 408 is combined with the leaf table base pointer to produce a leaf table index.
  • This leaf table index is then used at step 412 to access the leaf table to retrieve the forwarding decision for the packet.
  • the leaf table may either directly store the forwarding decisions, or may store pointers to a list of forwarding decisions.
  • step 406 If it determined at step 406 that the forwarding decision is not fully determined in this stride, the method proceeds to step 414 where the steps necessary to fetch a subsequent stride record or block commence.
  • a branch table offset is generated from the second portion of the address and at least one of the first and second bitmaps. If sparse and dense blocks are supported by the system in which the method of FIG. 16 is employed, generating the branch table offset may include generating either a branch table offset to a sparse block or to a dense block. The sparse and dense distinction and the encodings necessary for distinguishing between sparse and dense blocks were described with respect to FIG. 9 above. Thus, extend and type bitmaps are required for distinguishing sparse and dense blocks.
  • the generation of the branch table offset is performed using masking and popcount steps in a similar manner as those used to generate the leaf table offset.
  • the branch table offset is combined with a branch table base pointer to produce a branch table index.
  • the branch table index is then used to retrieve a subsequent stride block at step 418 .
  • Step 418 may include retrieving a subsequent block corresponding to a stride and then indexing to a particular record within the stride. It may also involve simply fetching a subsequent sparse block in its entirety.
  • FIG. 17 illustrates a flow diagram of a method for processing a dense block or record utilizing a portion of the address corresponding to the packet.
  • a particular bit within the bitmaps included for the dense record is selected using the address portion.
  • it is determined if the bit to which the address portion corresponds is set within the extends bitmap. If not, this indicates that a leaf will be reached during this record, and steps 506 - 516 are executed in order to retrieve a forwarding decision for that leaf.
  • the leaf bitmap is generated by bit-wise ANDing the type bitmap with the bit-wise inverse of the extends bitmap.
  • a scan to the left in the leaf bitmap is performed to find the next set bit.
  • unwanted bits in the leaf bitmap generated at step 506 are masked off. The unwanted bits are those bits to the right of the set bit determined at step 506 .
  • a popcount is performed on the remaining non-masked bits in the leaf bitmap in order to determine a leaf offset.
  • the leaf offset is combined with the leaf base pointer for the record to generate a leaf index. This leaf index is then used at step 516 to retrieve the forwarding decision for the packet.
  • step 504 If it is determined at step 504 that the bit in the extends bitmap corresponding to the portion of the address is set, this indicates that a subsequent block must be fetched in order to further process the address. As such, the method proceeds to step 518 . At step 518 it is determined if the bit corresponding to the address portion is also set in the type bitmap, where the type bitmap indicates whether or not the subsequent block to be fetched is sparse or dense. If the bit is set at 518 , a dense block is to be processed, and the method proceeds to step 520 .
  • the dense entry bitmap is generated by bit-wise ANDing the type and extends bitmaps together. Unwanted bits in the dense entry bitmap are masked off at step 522 , where those bits to the right of that selected by the address portion are masked. At step 524 , a popcount is performed on the remaining non-masked bits in order to determine a dense offset.
  • the dense offset is combined with a dense base pointer to generate the dense index.
  • the dense base pointer may be determined by adding the size of the number of sparse blocks included in the subsequent block to the branch base pointer.
  • storing the number of sparse blocks included in a subsequent stride as described earlier can be used to efficiently generate pointers to subsequent dense stride blocks.
  • the dense index generated at step 526 can then be used at step 528 to retrieve the subsequent dense stride block. Because the processing system already knows that the subsequent block is a dense block, it will be fetched and processed in the manner most efficient for dense blocks.
  • the subsequent record to be fetched is a sparse block.
  • a sparse entry bitmap is generated at step 530 . This is accomplished by bit-wise ANDing the extends bitmap with the bit-wise inverse of the type bitmap.
  • step 532 unwanted bits in the sparse entry bitmap are masked off.
  • step 534 a popcount is performed to determine a sparse offset.
  • the sparse offset is combined with a sparse base pointer at step 536 to generate a sparse index. Note that if the sparse records for the subsequent stride are all stored contiguously prior to the dense records, the sparse base pointer will simply be the branch base pointer for the subsequent stride.
  • step 538 the subsequent sparse stride record is retrieved using the sparse index generated at step 536 .
  • the methodology for processing a sparse stride record or block is similar to that for processing a dense record.
  • the exception is that rather than checking the extends and type bitmaps at a particular bit location corresponding to the portion of the address, a comparison must first be performed with the values included in the sparse record. If a match is determined, the bit location corresponding to that value in the extends and type bitmaps is consulted to determine if a leaf has been reached or if a subsequent sparse or dense record must be fetched. If no match is determined, the next higher value is selected, and the bit location corresponding to that value is referenced in the bitmaps. As stated earlier, this is analogous to performing a scan left operation in a dense bit map.
  • FIG. 18 illustrates a graphical representation of the determination of a leaf table pointer 750 utilizing an address 702 that is provided as an example to supplement the discussion above.
  • a first portion of the address 704 is applied to a block corresponding to the first stride in the trie structure that stores the potential prefix matches for the address.
  • the first portion of the address 704 indexes through this dense block to select the dense record 706 .
  • the first stride is shown to process 8 bits of the address 702 , in other embodiments, the first stride may process 16 bits of the address. Processing the first 16 bits of the address in a single stride may allow the average number of memory accesses required to process an address to be reduced at the cost of additional memory. Thus, the number of bits processed in each stride of a system may be selected based on both speed and memory considerations.
  • the first block of the trie structure is always encoded as a dense block.
  • this block may also be encoded as a sparse block in some circumstances, but in embodiments that support sparse or dense encoding of the first block, an external variable that indicates the type of encoding used must be available such that processing of the first block is properly performed.
  • bitmaps 708 for the dense record 706 are processed via a function 707 , which processes the bitmaps using a second portion of the address 705 to generate an offset 709 . Note that this assumes that the address 702 will require multiple records to determine the forwarding decision. If the forwarding decision were determined based on the dense record 706 alone, a leaf in the trie would have been reached during the first stride, and no further processing would be necessary.
  • the offset 709 is combined with the branch table base pointer 710 for the dense record 706 to generate a sparse block pointer 711 .
  • the offset 709 was preferably determined in a manner that included a differentiation between subsequent blocks being sparse or dense. Thus, the processor will know that the next block to be fetched is sparse, and can be fetched and processed accordingly.
  • the sparse block pointer 711 is used to retrieve the sparse block 720 . Because the sparse block 720 is sparse, the subsequent eight bits of the address that make up address portion 712 are used in comparison operations with each of the values included in the array of values of the sparse block 720 . This value comparison generates an offset 724 that is combined with a branch table base pointer 722 for the sparse block to generate a subsequent dense block base pointer 726 .
  • the dense block base pointer 726 points to the beginning of a dense block which is indexed through by a subsequent portion of the address 731 . This indexing selects a particular dense record 730 within the dense block.
  • the bitmaps 732 for the dense record 730 are provided to the function 707 along with address bits 737 to produce the offset 733 .
  • the offset 733 is then combined with a branch table base pointer 734 for the dense record 730 to produce a sparse block pointer 735 that selects the sparse block 740 .
  • the final eight bits of the address 741 are then used to compare with the values stored in the sparse block to produce the offset 744 .
  • the offset 744 is combined with the leaf table base pointer 742 of the sparse block 740 to generate the leaf table index 750 .
  • the leaf table index 750 can then be used to access the leaf table and retrieve the forwarding decision for the packet. It should be noted that dense and sparse blocks can be combined in any order when processing an address. FIG. 18 illustrates one example of one such combination.
  • the present invention provides a means for compressing the data associated with strides in trie structures in a manner that improves memory usage and reduces the average number of memory access required to determine a forwarding decision for a packet.
  • higher speed networks can be supported without the need for impractically large memory structures to store the trie structures.
  • Utilization of the compressed data structures requires only linear operations, thus reducing the overall cost and complexity of the packet forwarding system.

Abstract

A method and apparatus for compressing the data associated with trie cuts (strides), and a method and apparatus for utilizing such compressed data to determine forwarding decisions for data packets in a communication network are presented. The compression technique presented generates a pair of bitmaps and a pair of base pointers for each set of compressed data. The bitmaps are compared with a portion of the address to ascertain whether the forwarding decision is determined within this portion of the trie. Forwarding decisions are stored in a leaf table that is accessed via a leaf table index. The leaf table index is generated by combining a leaf table offset generated from at least one of the bitmaps with a leaf table base pointer included in the stride block. Thus, if the forwarding decision is determined within the stride, the leaf table will be accessed via the leaf table index to retrieve the forwarding decision. If the forwarding decision is not completely determined within the stride, a branch table is used to determine the location of the subsequent stride to be processed. The branch table is accessed via a branch table index generated by combining the branch table base pointer of the stride with a branch table index generated from one or more of the bitmaps included in the stride block.

Description

    CROSS-REFERENCE TO RELATED APPLICATIONS
  • This application is a continuation of prior application Ser. No. 09/606,859, filed Jun. 28, 2000.[0001]
  • BACKGROUND OF THE INVENTION
  • (1) Field of the Invention [0002]
  • The invention relates generally to communications networks and more particularly to a method and apparatus for longest matching prefix determination in communications networks. [0003]
  • (2) Description of the Related Art [0004]
  • Data communications networks utilize addresses to forward packets of information between users. As data communication networks continue to evolve, the number of addresses supported, the amount of traffic, and the speed with which the traffic is traveling are all increasing. As such, routers in such communications networks must determine sources and destinations of endstations associated with traffic more quickly than in the past. [0005]
  • Routing data packets in Internet Protocol (IP) networks requires determining the best matching prefix corresponding to the source and destination addresses for the packet, which may also be referred to as determining a longest prefix match (LPM) for the addresses. Routers that forward packets typically include a database that stores a number of address prefixes and their associated forwarding decisions that indicate where the data should be sent next (next hops). When the router receives a packet it must determine which of the prefixes in the database is the best match for the packet. [0006]
  • Binary tries have commonly been used for determining the LPM for data packets. FIG. 1 illustrates a basic binary trie structure that includes a set of binary prefixes. The example trie illustrated in FIG. 1 corresponds to a six-bit address space that is used to simplify the discussion. The shaded circles indicate valid prefixes. The binary trie illustrated in FIG. 1 contains a default route corresponding to the root of the trie and a plurality of valid prefixes that may only be partially specified (e.g. 000XXX), or fully specified (e.g. 000100). Bits included in the address to be resolved are used to make branching decisions at each of the nodes within the trie, where 0 bits cause a branch to the left and one bits cause a branch to the right. As is illustrated, the binary prefix 000XXX is a valid prefix, as is the [0007] prefix 000100. Although a packet that has an address that matches the prefix 000100 would also match the valid prefix 000XXX, the longest matching prefix is 000100, and thus 000100 is the prefix which must be selected for the address.
  • FIG. 2 illustrates a prior art technique for simplifying the basic binary trie illustrated in FIG. 1. FIG. 2 illustrates a Patricia trie that flattens the basic binary trie in areas where decisions at nodes within the trie structure cannot result in more than one possible prefix determination. In other words, nodes within the trie structure that are traversed in route to a valid prefix with no further decision making required are compressed out. Such path compression can reduce the average number of memory accesses required to determine the LPM for an address to log[0008] 2N accesses, where N is the number valid prefixes stored in the trie. However, in the worst case when a path cannot be compressed, Patricia trees may require L memory accesses to resolve an LPM, where L is equal to the number of bits in the address, which may be 32 bits in some applications such as IP version 4 and 128 bits for IP version 6. The variability in the number of memory accesses requires presents problems for high-speed router design. Furthermore, even if all LPM determinations could be made with log2N memory accesses, the memory bandwidth requirements would still make router design impractical when high link rates must be supported.
  • Another trie processing method that attempts to reduce the time it takes to determine the appropriate prefix is to create a multi-way branching trie that processes multiple bits of the address in a single step. This is illustrated in FIG. 3, where a trie that exists in a 32-bit address space has been broken into a set of steps, or strides. As is illustrated, the strides may be selected to be of varying bit lengths. Thus, 4-bit strides, 8-bit strides, and even 16-bit strides may be employed to traverse the trie structure. For each stride, a portion of the address is compared with sets of bits corresponding to that stride to determine if a LPM has been resolved or if one or more additional strides must be traversed in order to determine the LPM. [0009]
  • In order to be able to process a number of address bits in a stride, prefix expansion must be performed so that there is a valid prefix for each binary value at the cut depth for the stride, where the cut depth is determined by the size of the stride. FIG. 4 shows the root level of a 5-bit portion of a trie structure after prefix expansion. The cut depth is the bottom set of prefixes of the trie structure illustrated in FIG. 4 and is shown surrounded by a long rectangular box. In order to have valid prefixes at all of the nodes at the cut level, new nodes may have to be created at the cut depth in order to make the trie complete. Values for newly created nodes are then propagated from parent nodes. Propagation of a prefix value to a newly created node is illustrated via the arrows originating from parent nodes. One example is the labeled parent node that propagates a valid prefix to the three labeled propagated nodes. As can be seen, the highest level, or root node also serves as a parent node to some of the nodes at the cut level. [0010]
  • Those nodes in the trie structure of FIG. 4 that represent a final prefix match and a resolved forwarding decision are represented by a shaded circle, whereas those nodes that indicate the next stride must be accessed in order to continue towards determination of a forwarding decision are represented by shaded squares. Thus, shaded circles represent a point at which the search for prefix match is terminated, whereas shaded squares indicate that the prefix match must exist at a deeper level in the overall trie structure and therefore the search is extended. [0011]
  • Because 2[0012] N valid prefixes are typically stored to process an N-bit stride, larger strides require a great deal of memory, which can be a limiting factor in the stride size chosen. Smaller strides require, on average, more memory accesses to ascertain the forwarding decisions. Thus, there is a trade-off between the amount of memory required to store the data for a trie structure and the number of memory accesses required to completely traverse the trie structure to the appropriate end prefix.
  • Therefore, a need exists for a method and apparatus that reduces the memory required to store values associated with strides in trie structures such that prefix matching can be performed using a minimal number of memory accesses. [0013]
  • BRIEF DESCRIPTION OF THE SEVERAL VIEWS OF THE DRAWINGS
  • FIG. 1 illustrates a graphical representation of a prior art binary trie structure; [0014]
  • FIG. 2 illustrates a graphical representation of a prior art Patricia trie structure; [0015]
  • FIG. 3 illustrates a graphical representation of a prior art trie structure broken into a number of strides; [0016]
  • FIG. 4 illustrates a graphical representation of a prior art prefix-expanded trie; [0017]
  • FIG. 5 illustrates compression of the stride results for a trie cut to a set of compressed stride results in accordance with a particular embodiment of the present invention; [0018]
  • FIG. 6 illustrates a graphical representation of a trie cut associated with a stride that includes compressed nodes; [0019]
  • FIG. 7 illustrates the further compression of compressed stride results into a stride record and corresponding leaf and branch tables in accordance with a particular embodiment of the present invention; [0020]
  • FIG. 8 illustrates an alternate form of further compression of the compressed stride results into a stride record that includes sub-tries and a corresponding leaf pointer table in accordance with a particular embodiment of the present invention; [0021]
  • FIG. 9 illustrates a graphical representation of a trie cut with compressed nodes that distinguishes between subsequent dense and sparse stride records in accordance with a particular embodiment of the present invention; [0022]
  • FIG. 10 illustrates a graphical representation of a sparse stride record in accordance with a particular embodiment of the present invention; [0023]
  • FIG. 11 illustrates a graphical representation of a dense stride record in accordance with a particular embodiment of the present invention; [0024]
  • FIG. 12 illustrates a graphical representation of a dense block in accordance with a particular embodiment of the present invention; [0025]
  • FIG. 13 illustrates a flow diagram of a method for compressing stride data in accordance with a particular embodiment of the present invention; [0026]
  • FIG. 14 illustrates a block diagram of a packet routing circuit in accordance with a particular embodiment of the present invention; [0027]
  • FIG. 15 illustrates a block diagram of a packet routing processor in accordance with a particular embodiment of the present invention; [0028]
  • FIG. 16 illustrates a flow diagram of a method for packet routing in accordance with a particular embodiment of the present invention; [0029]
  • FIG. 17 illustrates a flow diagram of a method for processing a dense stride record in accordance with a particular embodiment of the present invention; and [0030]
  • FIG. 18 illustrates a graphical representation of the determination of a forwarding decision for a particular address in accordance with a particular embodiment of the present invention. [0031]
  • DETAILED DESCRIPTION OF THE INVENTION
  • Generally, the present invention provides a method and apparatus for compressing the data associated with trie cuts (strides), and a method and apparatus for utilizing such compressed data to determine forwarding decisions for data packets in a communication network. The compression technique presented generates a pair of bitmaps and a pair of base pointers for each set of compressed data. The bitmaps are compared with a portion of the address to ascertain whether the forwarding decision is determined within this portion of the trie. Forwarding decisions are stored in a leaf table that is accessed via a leaf table index. The leaf table index is generated by combining a leaf table offset generated from at least one of the bitmaps with a leaf table base pointer included in the stride record. Thus, if the forwarding decision is determined within the stride, the leaf table will be accessed via the leaf table index to retrieve the forwarding decision. If the forwarding decision is not completely determined within the stride, a branch table is used to determine the location of the subsequent stride to be processed. The branch table is accessed via a branch table index generated by combining the branch table base pointer of the stride with a branch table index generated from one or more of the bitmaps included in the stride record. [0032]
  • The method and apparatus described herein provide techniques for compressing data associated with stride records. Techniques are also described for storing the data in an efficient manner such that forwarding decisions can be determined utilizing a minimal number of memory accesses. The compression techniques described herein enable the data associated with large strides to be stored in an efficient manner such that the memory required to store the forwarding or branching decisions for each stride is greatly reduced in comparison to prior art solutions. As such, rapid determination of forwarding decisions can be performed in a system that utilizes memory efficiently such that large strides can be accommodated with a practical amount of memory in a system that can support high speed routing. [0033]
  • The invention can be better understood with reference to FIGS. [0034] 5-18. FIG. 5 shows the list, or table of stride results 62 represents the corresponding pointers for each of the nodes in the extended trie structure of FIG. 4. At the top of the list, the leaf pointer for 000XXX corresponds to the left most shaded circle in the cut level of the trie structure of FIG. 4. The bottom-most entry in the list of stride results 62, a leaf pointer for 11111X, corresponds to the right most shaded circle at the cut level of the trie structure of FIG. 4.
  • As can be seen from the list of stride results [0035] 62 in FIG. 5, there is a fair amount of repetition for certain entries. For example, the first two entries of the table of stride results 62 are the same. This is because these entries correspond to a pair of the propagated nodes that were created and filled with the leaf pointer corresponding to the parent node. Similar sets of repeating pointers can be observed within the stride results 62.
  • By recognizing that compression of the stride results [0036] 62 can be accomplished through a form of run length encoding, the amount of memory required to store the results for this 5-bit stride can be greatly reduced. FIG. 6 illustrates a compressed trie structure 50 in which consecutive repetitive results are compressed to a single result. A bitmap 54 is used to indicate whether or not a result is stored for a particular node. For example, the first bit in the bitmap 54 is a one, thus indicating that results are included in the compressed set of results for the first node 52 at the cut level.
  • As was seen in the table of stride results [0037] 62, the results for the second node 51 are the same as the result for the first node 52. As such, the bitmap stores a 0 at the bit location corresponding to the second node 51. A 0 bit entry in the bitmap 54 corresponds to a node for which the result has been compressed and, as such, the associated pointer is not immediately available. In order to retrieve this compressed pointer, a search algorithm must search for the first non-compressed entry (as represented by a 1 bit) to the left of the compressed entry in the bitmap 54. The pointer returned at this entry is identical to that which would have been stored for the compressed entry in an uncompressed format. The closest set bit corresponds to a node for which valid results are stored in the set of compressed stride results 66 illustrated in FIG. 5. This result is also applicable to the subsequent nodes for which a 0 is stored in the bitmap 54. As is illustrated, the compressed stride results 66 greatly reduce the number of pointers that must be stored to represent the results for each of the nodes at the cut level in the expanded trie structure. The bitmap 54 is used in conjunction with the set of compressed stride results 66 to determine the appropriate pointer for each of the nodes at the cut level.
  • Many modern processors include a single cycle instruction that scans a register for the least or most significant bit set. When combined with masking of portions of the [0038] bitmap 54, such operations provide an easy means for determining the next higher bit set in a particular bitmap with respect to a bit position selected by an address.
  • As stated above, in order to recover the appropriate pointer, or result, for a node within the cut section of a stride, the [0039] bitmap 54 can be used in conjunction with the compressed stride results 66. If the compressed stride results 66 are individually stored in a contiguous fashion within memory, an appropriate pointer can be determined by calculating an offset within the set of contiguous compressed results based on the number of set bits in the bitmap 54 to the left of the desired bit location. Although this may be accomplished by sequentially scanning the bitmap 54 and counting the number of 1's, more efficient means for calculating the number of 1's in a particular set of bits are commonly available. In many processors, a population count (popcount) operation may be available which calculates the number of 1's in a set of bits. Thus, by masking off the lower section of the bitmap 54 below the selected bit location and performing a popcount on the remaining set of bits, an offset to the table of compressed stride results 66 can be determined. In processors that do not support a specific popcount operation, a simple linear set of instructions can be used to calculate the popcount for a set of bits. One such set of instructions is detailed in the GNU C library.
  • Although the combination of the [0040] bitmap 54 and the set of compressed stride results 66 is illustrated in FIG. 6 reduces the amount of memory required to store the results for a particular trie cut, or stride, two memory accesses are still required in order to determine a specific result for a node. One memory access to retrieve the bitmap 54, and another to retrieve the appropriate pointer from the list of compressed stride results 66. FIG. 7 illustrates a refinement on the data structure of FIG. 6 in which an additional bitmap is added to the compressed record to indicate which of the pointers are leaf pointers. By storing the leaf pointers in a separate leaf pointer table and calculating an index to this table when a leaf is determined, the total number of memory accesses required can be reduced.
  • FIG. 7 illustrates the compressed stride results [0041] 66 being further compressed into a stride block 70 that includes a branch bitmap 72, a leaf bitmap 74, a leaf base pointer 75 and a set of branches 77 (sub-tries). “Block” is a term that may be used to describe a portion of the trie structure that includes the information for processing a stride. A set bit in the branch bitmap 72 indicates that the node corresponding to the bit location within the branch bitmap 72 has a result that corresponds to an entry in the list of branch pointers. A set bit within the leaf bitmap 74 indicates that the node to which the bit location within the leaf bitmap 74 corresponds has a result which is a leaf pointer stored in the leaf pointer table 76. If a leaf pointer needs to be referenced, a popcount can be used to determine an index within the leaf pointer table 76. This index can be combined with the leaf base pointer 75, which points to the first entry of the leaf pointer table 76, in order to access the appropriate entry within the leaf pointer table 76.
  • In order to eliminate the list of sub-trie pointers from the [0042] stride block 70, the sub-tires are placed in contiguous memory, and the individual sub-trie pointers are replaced by a bitmap and a base pointer to the contiguous memory location. This is illustrated in FIG. 8. The stride record 80 of FIG. 8 has been reduced to the branch bitmap 72, the leaf bitmap 74, the leaf base pointer 75, and a branch base pointer 76. The branch base pointer 76 points to a base entry of a branch table 89 (which also may be referred to as a next sub-trie block) that stores the branches (sub-tries) for the particular stride. As was the case with the leaf pointer table 76, the branch table 89 can be accessed through a combination of the branch base pointer 76 and an offset generated using the branch bitmap 72. Thus, by masking off a portion of the branch bitmap 72 and performing a popcount on the remaining portion, the appropriate offset for the branch table 89 can be determined.
  • The [0043] stride block 80 in the compressed format shown in FIG. 8 is compact enough to fit within a cache line of a cache structure utilized by a processor for processing the stride. As is known in the art, an entire cache line (group of words) may be read from the cache in roughly the same time as is required to read a single word. This allows the stride to be processed in an efficient manner such that the forwarding decision for an address can be determined using a minimal number of memory accesses. Because of the compression performed, the amount of memory required to store the data required to process each stride is also greatly reduced in comparison with prior art solutions.
  • In order to further optimize the storage of the results for a particular stride, a differentiation can be made between subsequent blocks, which must be processed in order to determine the final forwarding decision. Some strides of the overall trie structure may include a small number of pointers that can be stored in a small amount of memory. These sparse sections of the trie can be compressed into a particular sparse compression format that is more efficient in terms of processing as it may include the actual results for leaves rather than pointers to a leaf table. In order to take advantage of the differentiation between sparse and dense blocks, the stride block that points to a subsequent sparse or dense block may include an encoding such that the type of compression used for the subsequent blocks is known. FIG. 9 illustrates a particular encoding technique that can be used to accomplish this differentiation. FIG. 9 illustrates a stride that includes compressed nodes. Each node at the cut level can have one of four states. These four states are encoded through the combination of an extends [0044] bitmap 95 and a type bitmap 96 included in the stride record 99. For each node at the cut level, there is a bit within the extended bitmap 95 and a bit within the type bitmap 96. The combination of these two bits for each node indicates the particular state of that node.
  • The extends and type bitmaps allow four states to be encoded for each node, which was not possible using the leaf and branch bitmaps as described thus far. As is apparent to one of ordinary skill in the art, the distinction between the use of the branch and leaf bitmaps as opposed to type and extends bitmaps is solely dependent on whether different encoding of blocks (sparse vs. dense) is employed in the system. For embodiments that only use one block encoding, branch and leaf bitmaps provide enough encoded states. For embodiments that support sparse and dense blocks, extends and type bitmaps provide the necessary number of states to indicate the type of encoding for subsequent blocks. [0045]
  • The first node is shown to have state that corresponds to a [0046] leaf indication 91. Nodes having a state corresponding to a leaf indication are shown as shaded circles. A leaf indication indicates that a valid entry is included within the leaf table for this particular node. A combination of the extends bitmap 95 and the type bitmap 96 will generate the leaf bitmap 74 described earlier, which can then be manipulated to determine an offset for the leaf table. This offset can then be combined with the leaf base pointer 75 to access the leaf table and fetch the forwarding decision for the node from the leaf table. Leaf indications are encoded with a 0 in the extends bitmap 95 and a 1 in the type bitmap 96. As is apparent to one of ordinary skill in the art, the particular bit encodings used in the examples described herein are arbitrary, and as long as the particular relationships between different bitmaps are preserved, differing bit values for various encodings may be utilized.
  • The second node location is shown to correspond to an [0047] empty indication 94, which is illustrated as an unshaded circle. Empty indications are encoded with a 0 in the extends bitmap 95 and a 0 in the type bitmap 96. An empty indication means that a search to the left must be performed to determine the appropriate result for this particular node as it has been compressed.
  • The third node location at the cut level is shown to correspond to a [0048] sparse indication 92. Sparse indications are indicated by a 1 in the extends bitmap 95 and a 0 in the type bitmap 96. A sparse indication means that the search extends beyond the cut level present in the trie structure 90. It further indicates that the subsequent stride block fetched based on the index generated for this node will be a sparse stride block, which, in one embodiment, may process a stride of 8 address bits. Knowing that the subsequent block to be fetched is a sparse block enables the processor to improve the efficiency with which the subsequent stride block is processed. This is because additional information can be stored within the sparse block, as it does not include as many end results as a dense block. An example sparse stride block 901 is illustrated in FIG. 10.
  • The [0049] sparse block 901 includes a branch base pointer that points to the next block in the trie structure. The leaf base pointer included in the sparse block stores a base address for the leaf table. All leaves for the sparse block are stored contiguously from this base address, and can be accessed by generating an appropriate offset using the type and extends bitmaps. The second line of the sparse block is shown to include eight values. Each of these values can be directly compared with the portion of the address that is being used to resolve this stride. If an exact match is found, then there is a pointer associated with that address in either the branch table or the leaf table. If no match it determined, a left search is performed such that the next highest value in the array of values is selected, which is analogous to the scan bit operation on a bitmap. Because only eight values are stored within the sparse block, the type and extends bitmaps are each only 8-bit bitmaps. The use of the type and extends bitmaps is identical to that of a dense block, and they can be used to determine offsets to either the branch table or the leaf table, and the bitmaps can also be used to distinguish between sparse and dense subsequent blocks.
  • Returning to FIG. 9, the sixth bit location within the cut level of the stride is shown to correspond to a [0050] dense indication 93. The dense indication 93 is indicated by a 1 in the extends bitmap 95 and a 1 in the type bitmap 96. A dense indication 93 indicates that an offset should be generated and combined with the branch base pointer 76 to reference a subsequent stride block that is a dense block. The stride block 99 of FIG. 9 is a dense stride block in that it includes a full extends bitmap and type bitmap for all of the nodes at the cut level for the stride. This is in contrast to a sparse block that only includes a limited set of values corresponding to a limited set of nodes, and the appropriate type and extends bitmaps for those particular values.
  • As stated earlier, a block is a portion of the trie structure that is used to process a stride. A block can be divided into a number of records where a particular record is selected by a portion of the address bits used to step through the stride. For example, a block for an 8-bit stride may be divided into eight records where three of the eight address bits used to process this stride are used to select a specific one of the records within the block corresponding to the stride. The remaining five bits could then be used to process the record selected, where the structure of the record may be similar to the structures described thus far for a 5-bit block. In other words, each record could be structured as a block in that it would include bitmaps and base pointers. FIG. 11 illustrates a [0051] dense record 911. The differentiation between blocks and strides will be further explained with reference to FIG. 18 below.
  • The [0052] dense record 911 includes an extends bitmap, a type bitmap, a number of bits that are reserved for future use (RFU), a branch table base pointer, a leaf table base pointer, and may include an indication as to how many of the blocks in the sub-trie below are sparse blocks. The indication as to how many blocks in the sub-trie below are sparse blocks can be used to optimize accesses to the sub-trie below.
  • Dense blocks are used where the density of pointers within a stride prohibits the use of the more memory efficient sparse blocks. One example of a [0053] dense block 921 for an 8-bit stride is shown in FIG. 12.
  • Note that the large bitmaps included in the dense block above may be difficult for software to manipulate, and the amount of data that has to be retrieved to process such a block is large. In addition, the fields within the block are not aligned to normal cache line boundaries, and the amount of contiguous memory that would likely be required for the leaf table and branch table would place restrictions on the dynamic allocation of memory in the implementation. However, the representation illustrated above does present the minimum memory usage for a dense block. In embodiments that include wide or separate memory structures, such a dense block structure may be practical. [0054]
  • In other embodiments where the dense blocks such as that illustrated above are less practical, dense blocks may be broken up into records to facilitate both the hardware implementation of the system and efficient processing by software. This was briefly discussed above. For example, a 32 bit microprocessor would most likely prefer to manipulate 32 bit bitmaps. Thus, for an 8-bit stride, eight stride records could be used which are indexed using the upper three bits of the stride. Each of the records would then be used to process the lower five bits of the stride, where the bitmaps in a 5-bit dense stride record would be 32-bit bitmaps. [0055]
  • In order to facilitate fetching of records for a subsequent stride, each record may include an indication of the number of sparse records included in the following stride block. If the sparse records are stored contiguously in the branch table before the dense records, indexing the branch table is simplified by keeping a count of the number of sparse records. [0056]
  • FIG. 13 illustrates a flow diagram of one method for compressing a dense stride block. At [0057] step 102 the stride block is separated into a plurality of stride portions. This is analogous to separating the block into a number of records. For each stride portion, or record, steps 104-112 are performed.
  • At [0058] step 104, the stride results for the portion are compressed to produce a compressed bitmap and a compressed list of stride results. This is the compression step illustrated in FIG. 6. At step 106, the compressed bitmap and compressed list of stride results are further compressed to produce a leaf bitmap, branch bitmap, leaf table section and a branch table section. This is similar to the step shown in FIG. 7 where the leaf table section corresponds to the set of leaf pointers included in the leaf pointer table for the stride portion, and the branch table section corresponds to the set of branch pointers for the stride portion. At step 108, the leaf table section is stored in the portion of memory or the table associated with the leaf pointers for the trie. Preferably, these leaf pointers are stored in a contiguous fashion within the leaf table starting at a leaf base pointer for the stride portion such that they can be accessed through the combination of a base pointer and offsets combined to produce indexes to the table.
  • At [0059] step 110, the branch table section is stored in memory starting at a location corresponding to a branch base pointer. Preferably, it is stored in a contiguous fashion in memory such that random access to the entries in the branch table can be performed using a base pointer and offsets.
  • At [0060] step 110, a stride record is stored in memory for the stride portion where the stride record includes the leaf bitmap, the branch bitmap, the leaf table base pointer at which the leaf table section was stored, and the branch table base pointer at which the branch table section for the stride portion was stored. Storing the stride record at step 112 may include encoding the leaf bitmap and the branch bitmap in an extends bitmap and a type bitmap as was described with respect to FIG. 9 above. The extends bitmap and type bitmap enable the stride record to encode sparse and dense format distinctions for subsequent stride blocks that are accessed via branch pointers included in the branch table.
  • FIG. 14 illustrates a block diagram of a [0061] packet routing circuit 250 that may be used in conjunction with the trie compression techniques discussed thus far to perform packet routing in a communications network. The packet routing circuit 250 includes memory 220, a determination block 200, packet memory 230, and output circuitry 240. Packets 202 received by the packet routing circuit 250 are stored in the packet memory 230 while a forwarding decision for each packet is determined. The address 203 for each packet is provided to the determination block 200 that determines the routing decision 242 for each packet. The determination block 200 may be implemented as a state machine, discrete circuitry, or as a packet routing processor such as that illustrated in FIG. 15. The determination block 200 is operably coupled to a memory 220 that stores a forwarding table 222. Preferably, the forwarding table 222 is structured in a manner such that the forwarding decisions for packets are determined through the use of a compressed trie structure. The compressed trie structure may include a number of strides where the block corresponding to each stride may be broken into a number of records.
  • When the [0062] determination block 200 receives a packet address, it processes the address to determine a forwarding decision 242 in a manner similar to that illustrated in the flow diagram of FIG. 16, which is described in additional detail below. In order to facilitate the determination of the forwarding decision 242, a cache 210 may be included in the packet routing circuit 250. The cache 210, which is operably coupled to the memory 220 and the determination block 200, may be used to cache certain portions of the forwarding table 222 such that the determination of the forwarding decision 242 can be done in a more efficient manner that requires fewer accesses to the memory 220.
  • Once a [0063] forwarding decision 242 has been determined by the determination block 200, it is provided to the output circuitry 240. For each packet, the output circuitry receives a forwarding decision 242 and forwards the packet to at least one of the plurality of outputs 246 based on the forwarding decision.
  • Preferably, the [0064] packet routing circuit 250 is included in a router for use in a data communication network. Such a router may be used in a data communications network that supports IP traffic. The memory 220 may store a plurality of forwarding tables, where a particular forwarding table is selected for use in determining the forwarding decision for a particular packet based on either a field included in the packet or the identity of an input port over which the packet was received.
  • FIG. 15 illustrates a [0065] packet routing processor 300 that includes a processing module 302 and memory 304. The packet routing processor preferably executes the method illustrated in FIG. 16 through the use of software stored as a set of operational instructions in the memory 304. The processing module 302 may include a single processing entity or a plurality of processing entities. Such a processing entity may be a microprocessor, a microcontroller, a digital signal processor or any device that processes information based on operational or programming instructions.
  • The [0066] memory 304 may be a single memory device or a plurality of memory devices. Such a memory device may be a read only memory device, random access memory device, floppy disk, hard drive memory, or any device that stores digital information. Note that the memory 304 may be incorporated in the memory 220 included in the packet routing circuit or may be a separate memory structure. The memory 304 stores programming or operational instructions that, when executed by the processing module 302, allow the processing module 302 to perform packet routing functions such as those illustrated in the flow diagram of FIG. 16. Note that the packet routing processor 300 may implement some of the functions of FIG. 16 through software stored in the memory 304, whereas other portions may be implemented using hardware or circuitry included within the packet routing processor 300. Thus, in some embodiments a mix of hardware and software may be used to perform the method illustrated in FIG. 16
  • FIG. 16 illustrates a flow diagram of a method for packet routing in a communications network. The method begins at [0067] step 402 where a packet is received. The packet includes an address that is used to determine a forwarding decision for the packet. The forwarding decision is determined based on a compressed trie structure that may be stored in a forwarding table. The compressed trie structure is preferably made up of a number of strides where the blocks that make up a stride may be divided into a number of records where the blocks and records are preferably structured as indicated above.
  • At step [0068] 404 a first stride block is fetched using a first portion of the address. As stated above, a stride block may be broken into a number of records in order to simplify processing. In one embodiment, the most significant bits of the address are used to retrieve a stride record included in a stride block, where the most significant bits index between a number of stride records that make up a dense block within the trie structure. Each stride block includes a first bitmap, a second bitmap, a leaf table base pointer, and a branch table base pointer. Once the stride block has been fetched at step 404, it is processed using steps 406-416.
  • At [0069] step 406, it is determined if the forwarding decision for the address can be fully determined based on the stride block that has been fetched. This is determined based on at least one of the first and second bitmaps. The first bitmap is an extends bitmap and the second bitmap is a type bitmap, the extends bitmap alone can be used to determine if the forwarding decision is fully determined using this stride record.
  • If the forwarding decision is fully determined using the stride block, the method proceeds to [0070] 408 where a leaf table offset is generated from at least one of the first and second bitmaps and the second portion of the address. The second portion of the address is used to select a specific bit location within one or more of the bitmaps and a masking operation followed by a population count is used to determine an offset to the leaf table. The extends bitmap and type bitmap must be combined to generate the leaf bitmap. This can be accomplished by performing a bit-wise AND operation of the type bitmap and the bit-wise inverse of the extends bitmap.
  • At [0071] step 410, the leaf table offset generated at step 408 is combined with the leaf table base pointer to produce a leaf table index. This leaf table index is then used at step 412 to access the leaf table to retrieve the forwarding decision for the packet. The leaf table may either directly store the forwarding decisions, or may store pointers to a list of forwarding decisions.
  • If it determined at [0072] step 406 that the forwarding decision is not fully determined in this stride, the method proceeds to step 414 where the steps necessary to fetch a subsequent stride record or block commence. At step 414 a branch table offset is generated from the second portion of the address and at least one of the first and second bitmaps. If sparse and dense blocks are supported by the system in which the method of FIG. 16 is employed, generating the branch table offset may include generating either a branch table offset to a sparse block or to a dense block. The sparse and dense distinction and the encodings necessary for distinguishing between sparse and dense blocks were described with respect to FIG. 9 above. Thus, extend and type bitmaps are required for distinguishing sparse and dense blocks. The generation of the branch table offset is performed using masking and popcount steps in a similar manner as those used to generate the leaf table offset.
  • At [0073] step 416, the branch table offset is combined with a branch table base pointer to produce a branch table index. The branch table index is then used to retrieve a subsequent stride block at step 418. Step 418 may include retrieving a subsequent block corresponding to a stride and then indexing to a particular record within the stride. It may also involve simply fetching a subsequent sparse block in its entirety.
  • A method that may be used for processing the dense blocks are illustrated in FIG. 17, which has been included for added clarity. FIG. 17 illustrates a flow diagram of a method for processing a dense block or record utilizing a portion of the address corresponding to the packet. At step [0074] 502 a particular bit within the bitmaps included for the dense record is selected using the address portion. At step 504 it is determined if the bit to which the address portion corresponds is set within the extends bitmap. If not, this indicates that a leaf will be reached during this record, and steps 506-516 are executed in order to retrieve a forwarding decision for that leaf.
  • At [0075] step 506 the leaf bitmap is generated by bit-wise ANDing the type bitmap with the bit-wise inverse of the extends bitmap. At step 508, it is determined if the bit to which the address portion corresponds in the leaf bitmap is set. If it is, the method proceeds to step 510, and if it is not, the method proceeds to step 509. At step 509, a scan to the left in the leaf bitmap is performed to find the next set bit. At step 510, unwanted bits in the leaf bitmap generated at step 506 are masked off. The unwanted bits are those bits to the right of the set bit determined at step 506.
  • At [0076] step 512, a popcount is performed on the remaining non-masked bits in the leaf bitmap in order to determine a leaf offset. At step 514, the leaf offset is combined with the leaf base pointer for the record to generate a leaf index. This leaf index is then used at step 516 to retrieve the forwarding decision for the packet.
  • If it is determined at [0077] step 504 that the bit in the extends bitmap corresponding to the portion of the address is set, this indicates that a subsequent block must be fetched in order to further process the address. As such, the method proceeds to step 518. At step 518 it is determined if the bit corresponding to the address portion is also set in the type bitmap, where the type bitmap indicates whether or not the subsequent block to be fetched is sparse or dense. If the bit is set at 518, a dense block is to be processed, and the method proceeds to step 520.
  • At [0078] step 520, the dense entry bitmap is generated by bit-wise ANDing the type and extends bitmaps together. Unwanted bits in the dense entry bitmap are masked off at step 522, where those bits to the right of that selected by the address portion are masked. At step 524, a popcount is performed on the remaining non-masked bits in order to determine a dense offset.
  • At [0079] step 526, the dense offset is combined with a dense base pointer to generate the dense index. Assuming that all sparse blocks are contiguously stored based on a branch base pointer, and all dense blocks are stored immediately following the sparse blocks (also contiguously), the dense base pointer may be determined by adding the size of the number of sparse blocks included in the subsequent block to the branch base pointer. Thus, storing the number of sparse blocks included in a subsequent stride as described earlier can be used to efficiently generate pointers to subsequent dense stride blocks. The dense index generated at step 526 can then be used at step 528 to retrieve the subsequent dense stride block. Because the processing system already knows that the subsequent block is a dense block, it will be fetched and processed in the manner most efficient for dense blocks.
  • If at [0080] step 518 it is determined that the bit corresponding to the address portion is not set in the type bitmap, the subsequent record to be fetched is a sparse block. As such, a sparse entry bitmap is generated at step 530. This is accomplished by bit-wise ANDing the extends bitmap with the bit-wise inverse of the type bitmap.
  • At [0081] step 532, unwanted bits in the sparse entry bitmap are masked off. At step 534, a popcount is performed to determine a sparse offset. The sparse offset is combined with a sparse base pointer at step 536 to generate a sparse index. Note that if the sparse records for the subsequent stride are all stored contiguously prior to the dense records, the sparse base pointer will simply be the branch base pointer for the subsequent stride. At step 538, the subsequent sparse stride record is retrieved using the sparse index generated at step 536.
  • The methodology for processing a sparse stride record or block is similar to that for processing a dense record. The exception is that rather than checking the extends and type bitmaps at a particular bit location corresponding to the portion of the address, a comparison must first be performed with the values included in the sparse record. If a match is determined, the bit location corresponding to that value in the extends and type bitmaps is consulted to determine if a leaf has been reached or if a subsequent sparse or dense record must be fetched. If no match is determined, the next higher value is selected, and the bit location corresponding to that value is referenced in the bitmaps. As stated earlier, this is analogous to performing a scan left operation in a dense bit map. [0082]
  • FIG. 18 illustrates a graphical representation of the determination of a [0083] leaf table pointer 750 utilizing an address 702 that is provided as an example to supplement the discussion above. A first portion of the address 704 is applied to a block corresponding to the first stride in the trie structure that stores the potential prefix matches for the address. The first portion of the address 704 indexes through this dense block to select the dense record 706. Although the first stride is shown to process 8 bits of the address 702, in other embodiments, the first stride may process 16 bits of the address. Processing the first 16 bits of the address in a single stride may allow the average number of memory accesses required to process an address to be reduced at the cost of additional memory. Thus, the number of bits processed in each stride of a system may be selected based on both speed and memory considerations.
  • In one embodiment, it is assumed that the first block of the trie structure is always encoded as a dense block. As is apparent to one of ordinary skill in the art, this block may also be encoded as a sparse block in some circumstances, but in embodiments that support sparse or dense encoding of the first block, an external variable that indicates the type of encoding used must be available such that processing of the first block is properly performed. [0084]
  • The [0085] bitmaps 708 for the dense record 706 are processed via a function 707, which processes the bitmaps using a second portion of the address 705 to generate an offset 709. Note that this assumes that the address 702 will require multiple records to determine the forwarding decision. If the forwarding decision were determined based on the dense record 706 alone, a leaf in the trie would have been reached during the first stride, and no further processing would be necessary.
  • The offset [0086] 709 is combined with the branch table base pointer 710 for the dense record 706 to generate a sparse block pointer 711. The offset 709 was preferably determined in a manner that included a differentiation between subsequent blocks being sparse or dense. Thus, the processor will know that the next block to be fetched is sparse, and can be fetched and processed accordingly.
  • The [0087] sparse block pointer 711 is used to retrieve the sparse block 720. Because the sparse block 720 is sparse, the subsequent eight bits of the address that make up address portion 712 are used in comparison operations with each of the values included in the array of values of the sparse block 720. This value comparison generates an offset 724 that is combined with a branch table base pointer 722 for the sparse block to generate a subsequent dense block base pointer 726.
  • The dense [0088] block base pointer 726 points to the beginning of a dense block which is indexed through by a subsequent portion of the address 731. This indexing selects a particular dense record 730 within the dense block. The bitmaps 732 for the dense record 730 are provided to the function 707 along with address bits 737 to produce the offset 733. The offset 733 is then combined with a branch table base pointer 734 for the dense record 730 to produce a sparse block pointer 735 that selects the sparse block 740.
  • The final eight bits of the [0089] address 741 are then used to compare with the values stored in the sparse block to produce the offset 744. The offset 744 is combined with the leaf table base pointer 742 of the sparse block 740 to generate the leaf table index 750. The leaf table index 750 can then be used to access the leaf table and retrieve the forwarding decision for the packet. It should be noted that dense and sparse blocks can be combined in any order when processing an address. FIG. 18 illustrates one example of one such combination.
  • The present invention provides a means for compressing the data associated with strides in trie structures in a manner that improves memory usage and reduces the average number of memory access required to determine a forwarding decision for a packet. As such, higher speed networks can be supported without the need for impractically large memory structures to store the trie structures. Utilization of the compressed data structures requires only linear operations, thus reducing the overall cost and complexity of the packet forwarding system. [0090]
  • In the foregoing specification, the invention has been described with reference to specific embodiments. However, one of ordinary skill in the art appreciates that various modifications and changes can be made without departing from the scope of the present invention as set forth in the claims below. Accordingly, the specification and figures are to be regarded in an illustrative rather than a restrictive sense, and all such modifications are intended to be included within the scope of present invention. [0091]
  • Benefits, other advantages, and solutions to problems have been described above with regard to specific embodiments. However, the benefits, advantages, solutions to problems, and any element(s) that may cause any benefit, advantage, or solution to occur or become more pronounced are not to be construed as a critical, required, or essential feature or element of any or all the claims. As used herein, the terms “comprises,” “comprising,” or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. [0092]

Claims (36)

What is claimed is:
1. A method for packet routing, comprising:
receiving a packet that includes an address;
fetching a first stride block based on a first portion of the address, wherein each stride block includes a first bitmap, a second bitmap, a leaf table base pointer, and a branch table base pointer;
processing the first stride block, wherein processing a stride block includes:
determining if a forwarding decision is determined based on a second portion of the address and at least one of the first and second bitmaps of the stride block;
when the forwarding decision is determined based on at least one of the first and second bitmaps:
generating a leaf table offset from at least one of the first and second bitmaps and the second portion of the address;
combining the leaf table offset with the leaf table base pointer to produce a leaf table index; and
accessing a leaf table using the leaf table index to retrieve the forwarding decision;
when the forwarding decision is not determined based on the second portion of the address and at least one of the first and second bitmaps;
generating a branch table offset from the second portion of the address and at least one of the first and second bitmaps;
combining the branch table offset with the branch table base pointer to produce a branch table index;
accessing a branch table using the branch table index to retrieve a subsequent stride block; and
processing the subsequent stride block and any additional subsequent stride blocks generated using additional portions of the address until the forwarding decision is retrieved.
2. The method of claim 1, wherein the first bitmap is a leaf bitmap and the second bitmap is a branch bitmap, wherein determining if a forwarding decision is determined further comprises determining if the forwarding decision is determined based on the second portion of the address and the leaf and branch bitmaps, wherein generating the leaf table offset further comprises generating the leaf table offset from the second portion of the address and the leaf bitmap, and wherein generating the branch table offset further comprises generating the branch table offset from the second portion of the address and the branch bitmap.
3. The method of claim 2, wherein generating the leaf table offset further comprises:
masking off a portion of the leaf bitmap to produce a masked leaf bitmap, wherein the portion of the leaf bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked leaf bitmap to produce the leaf offset.
4. The method of claim 2, wherein generating the branch table offset further comprises:
masking off a portion of the branch bitmap to produce a masked branch bitmap, wherein the portion of the branch bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked branch bitmap to produce the branch offset.
5. The method of claim 1, wherein accessing the leaf table using the leaf table index to retrieve the forwarding decision further comprises:
accessing the leaf table to retrieve a pointer to the forwarding decision; and
retrieving the forwarding decision using the pointer to the forwarding decision.
6. The method of claim 1, wherein the first bitmap is an extends bitmap and the second bitmap is a type bitmap, wherein determining if a forwarding decision is determined further comprises determining if the forwarding decision is determined based on the second portion of the address and the extends bitmap, wherein generating the leaf table offset further comprises generating the leaf table offset from the second portion of the address and the extends and type bitmaps, and wherein generating the branch table offset further comprises generating the branch table offset from the second portion of the address and the extends and type bitmaps.
7. The method of claim 6, wherein generating the leaf table offset further comprises:
combining the extends bitmap and the type bitmap to generate a leaf bitmap;
masking off a portion of the leaf bitmap to produce a masked leaf bitmap, wherein the portion of the leaf bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked leaf bitmap to produce the leaf offset.
8. The method of claim 6, wherein generating the branch table offset further comprises:
combining the extends bitmap and the type bitmap to generate a branch bitmap;
masking off a portion of the branch bitmap to produce a masked branch bitmap, wherein the portion of the branch bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked branch bitmap to produce the branch offset.
9. The method of claim 8, wherein the type bitmap identifies each subsequent stride block as one of a sparse stride block and a dense stride block.
10. The method of claim 9, wherein subsequent stride blocks for each stride block are stored in contiguous sets.
11. The method of claim 10, wherein sparse blocks are grouped together and dense blocks are grouped together in the contiguous sets.
12. A packet routing processor, comprising:
a processing module; and
memory operably coupled to the processing module, wherein the memory stores operating instructions such that, when executed by the processing module, the operating instructions cause the processing module to perform the functions of:
fetching a first stride block based on a first portion of an address for a received packet, wherein each stride block includes a first bitmap, a second bitmap, a leaf table base pointer, and a branch table base pointer;
processing the first stride block, wherein processing a stride block includes:
determining if a forwarding decision is determined based on a second portion of the address and at least one of the first and second bitmaps of the stride block;
when the forwarding decision is determined based on at least one of the first and second bitmaps:
generating a leaf table offset from at least one of the first and second bitmaps and the second portion of the address;
combining the leaf table offset with the leaf table base pointer to produce a leaf table index; and
accessing a leaf table using the leaf table index to retrieve the forwarding decision;
when the forwarding decision is not determined based on the second portion of the address and at least one of the first and second bitmaps;
generating a branch table offset from the second portion of the address and at least one of the first and second bitmaps;
combining the branch table offset with the branch table base pointer to produce a branch table index;
accessing a branch table using the branch table index to retrieve a subsequent stride block; and
processing the subsequent stride block and any additional subsequent stride blocks generated using additional portions of the address until the forwarding decision is retrieved.
13. The packet routing processor of claim 12, wherein the first bitmap is a leaf bitmap and the second bitmap is a branch bitmap, wherein determining if a forwarding decision is determined further comprises determining if the forwarding decision is determined based on the second portion of the address and the leaf and branch bitmaps, wherein generating the leaf table offset further comprises generating the leaf table offset from the second portion of the address and the leaf bitmap, and wherein generating the branch table offset further comprises generating the branch table offset from the second portion of the address and the branch bitmap.
14. The packet routing processor of claim 13, wherein generating the leaf table offset further comprises:
masking off a portion of the leaf bitmap to produce a masked leaf bitmap, wherein the portion of the leaf bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked leaf bitmap to produce the leaf offset.
15. The packet routing processor of claim 13, wherein generating the branch table offset further comprises:
masking off a portion of the branch bitmap to produce a masked branch bitmap, wherein the portion of the branch bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked branch bitmap to produce the branch offset.
16. The packet routing processor of claim 12, wherein accessing the leaf table using the leaf table index to retrieve the forwarding decision further comprises:
accessing the leaf table to retrieve a pointer to the forwarding decision; and
retrieving the forwarding decision using the pointer to the forwarding decision.
17. The packet routing processor of claim 12, wherein the first bitmap is an extends bitmap and the second bitmap is a type bitmap, wherein determining if a forwarding decision is determined further comprises determining if the forwarding decision is determined based on the second portion of the address and the extends bitmap, wherein generating the leaf table offset further comprises generating the leaf table offset from the second portion of the address and the extends and type bitmaps, and wherein generating the branch table offset further comprises generating the branch table offset from the second portion of the address and the extends and type bitmaps.
18. The packet routing processor of claim 17, wherein generating the leaf table offset further comprises:
combining the extends bitmap and the type bitmap to generate a leaf bitmap;
masking off a portion of the leaf bitmap to produce a masked leaf bitmap, wherein the portion of the leaf bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked leaf bitmap to produce the leaf offset.
19. The packet routing processor of claim 17, wherein generating the branch table offset further comprises:
combining the extends bitmap and the type bitmap to generate a branch bitmap;
masking off a portion of the branch bitmap to produce a masked branch bitmap, wherein the portion of the branch bitmap that is masked off is determined based on the second portion of the address; and
performing a population count on the masked branch bitmap to produce the branch offset.
20. The packet routing processor of claim 19, wherein the type bitmap identifies each subsequent stride block as one of a sparse stride block and a dense stride block.
21. The packet routing processor of claim 20, wherein dense stride blocks store subsequent sparse stride blocks and subsequent dense stride blocks in contiguous sets.
22. A packet routing circuit, comprising:
a packet memory receives packets and stores the packets prior to forwarding, wherein each packet includes an address;
output circuitry operably coupled to the packet memory, wherein for each packet, the output circuitry receives a forwarding decision and forwards the packet to at least one of a plurality of outputs based on the forwarding decision;
memory that stores a forwarding table, wherein the forwarding table stores forwarding decisions for the packets; and
a determination block operably coupled to the memory and the output circuitry, wherein the determination block receives the address for each packet and determines the forwarding decision for the packet, wherein the determination block provides the forwarding decision for the packet to the output circuitry such that the packet is forwarded to at least one of the outputs, wherein determining the forwarding decision for the packet includes:
fetching a first stride block from the forwarding table stored in the memory based on a first portion of an address for a received packet, wherein each stride block includes a first bitmap, a second bitmap, a leaf table base pointer, and a branch table base pointer;
processing the first stride block, wherein processing a stride block includes:
determining if a forwarding decision is determined based on a second portion of the address and at least one of the first and second bitmaps of the stride block;
when the forwarding decision is determined based on at least one of the first and second bitmaps:
generating a leaf table offset from at least one of the first and second bitmaps and the second portion of the address;
combining the leaf table offset with the leaf table base pointer to produce a leaf table index; and
accessing a leaf table stored in the memory using the leaf table index to retrieve the forwarding decision;
when the forwarding decision is not determined based on the second portion of the address and at least one of the first and second bitmaps;
generating a branch table offset from the second portion of the address and at least one of the first and second bitmaps;
combining the branch table offset with the branch table base pointer to produce a branch table index;
accessing a branch table stored in the memory using the branch table index to retrieve a subsequent stride block; and
processing the subsequent stride block and any additional subsequent stride blocks generated using additional portions of the address until the forwarding decision is retrieved.
23. The packet routing circuit of claim 22 further comprises a cache operably coupled to the memory and the determination block, wherein the cache stores at least a portion of the forwarding table.
24. The packet routing circuit of claim 22, wherein the memory stores a plurality of forwarding tables, wherein a particular forwarding table is selected for use in determining the forwarding decision for a particular packet based on at least one of a field included in the particular packet and an identity of an input port to the packet routing circuit over which the particular packet was received.
25. The packet routing circuit of claim 22, wherein the determination block further comprises:
a processing module; and
an instruction memory operably coupled to the processing module, wherein the instruction memory stores instructions that, when executed by the processing module, cause the processing module to perform functions necessary to determine the forwarding decision for the packet.
26. The packet routing circuit of claim 22, wherein the determination block further comprises a state machine.
27. The packet routing circuitry of claim 22, wherein the packet routing circuitry is included in a router.
28. The packet routing circuit of claim 27, wherein the packets are internet protocol (IP) packets.
29. The packet routing circuit of claim 22, wherein the determination block utilizes population counts to determine branch and leaf offsets.
30. The packet routing circuit of claim 22, wherein the determination block utilizes linear operations to determine the forwarding decision for each of the packets.
31. A method for compressing a stride included in a trie structure, wherein the stride includes a plurality of nodes, comprising:
separating the stride into a plurality of stride portions, wherein each stride portion includes stride results for a portion of the plurality of nodes, wherein a stride result is one of a leaf pointer and a branch pointer; and
for each stride portion:
compressing the stride results for the stride portion using run length encoding to produce a compression bitmap and a compressed list of stride results;
generating a leaf bitmap, a branch bitmap, a leaf table section, and a branch table section from the compression bitmap and the compressed list of stride results;
storing the leaf table section in a leaf table at a leaf table base pointer for the stride portion;
storing the branch table section in a branch table at a branch table base pointer for the stride portion; and
storing a stride block in memory for the stride portion, wherein the stride block includes the leaf bitmap, the branch bitmap, the leaf table base pointer, and the branch table base pointer.
32. The method of claim 31, wherein compressing the results for a stride block further comprises selecting one of a sparse compression format and a dense compression format based on a number of compressed stride results; and wherein
storing the stride block in memory further comprises storing the stride block in the selected one of the sparse compression format and the dense compression format.
33. The method of claim 32, wherein the leaf bitmap and branch bitmap for each stride block are encoded in an extends bitmap and a type bitmap, wherein the extends bitmap and type bitmap for each stride block encode sparse and dense format distinctions for stride blocks accessed via branch pointers included in the branch table.
34. The method of claim 33, wherein the sparse compression format includes a value array corresponding to values for address bits used to access the stride block, and wherein the dense compression format includes bitmaps corresponding to the address bits, wherein a quantity of memory required to store the stride block in the sparse compression format is less than a quantity of memory required to store the stride block in a dense compression format.
35. A method for packet routing, comprising:
receiving a packet that includes an address;
fetching a first stride block, wherein the first stride block encodes a first portion of a longest prefix match trie, wherein the first stride block is one of a sparse stride block and a dense stride block, wherein sparse stride blocks encode portions of the longest prefix match trie that include no more than a first number of nodes, wherein dense stride blocks encode portions of the longest prefix match trie that include more than the first number of nodes;
comparing a first portion of the address with a first portion of the first stride block to determine if a forwarding decision for the packet is resolved by the first stride block;
when the forwarding decision is resolved by the first stride block, determining the forwarding decision for the packet;
when the forwarding decision for the packet is not resolved by the first stride block:
determining a second stride block based on the first portion of the address and a second portion of the first stride block; and
processing the second stride block and any subsequent stride blocks determined until the forwarding decision is determined, wherein processing a stride block includes fetching the stride block and comparing a portion of the address with a portion of the stride block to determine one of the forwarding decision and a subsequent stride block for processing; and
forwarding the packet based on the forwarding decision.
36. The method of claim 35, wherein when the first stride block is a dense stride block, comparing a first portion of the address with the portion of the first stride block further comprises:
selecting a stride record of a plurality of stride records included in the first stride block using a first set of bits in the first portion of the address, wherein each stride record of the plurality of stride records encodes a portion of nodes encoded by the first stride block; and
comparing a second set of bits in the first portion of the address with a portion of the stride record to determine if the forwarding decision is resolved by the first stride block.
US10/786,420 2000-06-28 2004-02-24 Method and apparatus for longest matching prefix determination in a communication network Abandoned US20040167923A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US10/786,420 US20040167923A1 (en) 2000-06-28 2004-02-24 Method and apparatus for longest matching prefix determination in a communication network

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/606,859 US6697363B1 (en) 2000-06-28 2000-06-28 Method and apparatus for longest matching prefix determination in a communication network
US10/786,420 US20040167923A1 (en) 2000-06-28 2004-02-24 Method and apparatus for longest matching prefix determination in a communication network

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US09/606,859 Continuation US6697363B1 (en) 2000-06-28 2000-06-28 Method and apparatus for longest matching prefix determination in a communication network

Publications (1)

Publication Number Publication Date
US20040167923A1 true US20040167923A1 (en) 2004-08-26

Family

ID=24429768

Family Applications (2)

Application Number Title Priority Date Filing Date
US09/606,859 Expired - Fee Related US6697363B1 (en) 2000-06-28 2000-06-28 Method and apparatus for longest matching prefix determination in a communication network
US10/786,420 Abandoned US20040167923A1 (en) 2000-06-28 2004-02-24 Method and apparatus for longest matching prefix determination in a communication network

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US09/606,859 Expired - Fee Related US6697363B1 (en) 2000-06-28 2000-06-28 Method and apparatus for longest matching prefix determination in a communication network

Country Status (4)

Country Link
US (2) US6697363B1 (en)
EP (1) EP1168723B1 (en)
AT (1) ATE368988T1 (en)
DE (1) DE60129643T2 (en)

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030225983A1 (en) * 2002-04-10 2003-12-04 Habben Hartmut Karl Data memory
US7007021B1 (en) * 2000-11-28 2006-02-28 Altera Corporation Data structure and method for pipeline heap-sorting
US20060288024A1 (en) * 2005-04-28 2006-12-21 Freescale Semiconductor Incorporated Compressed representations of tries
US20070294502A1 (en) * 2006-06-14 2007-12-20 Bernard Karl Gunther Lookup table array compression and indexing
US7430560B1 (en) * 2005-07-22 2008-09-30 X-Engines, Inc. Multi-level compressed lock-up tables formed by logical operations to compress selected index bits
US20090271366A1 (en) * 2008-04-25 2009-10-29 International Business Machines Corporation Methods and Systems for Improving Hash Table Performance
US7827218B1 (en) * 2006-11-18 2010-11-02 X-Engines, Inc. Deterministic lookup using hashed key in a multi-stride compressed trie structure
US20110029713A1 (en) * 2009-08-03 2011-02-03 Wade Gregory L Data volume sparseness
US7921088B1 (en) * 2005-07-22 2011-04-05 X-Engines, Inc. Logical operations encoded by a function table for compressing index bits in multi-level compressed look-up tables

Families Citing this family (53)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP3591420B2 (en) * 2000-04-07 2004-11-17 日本電気株式会社 Cache table management device and program recording medium in router
US6697363B1 (en) * 2000-06-28 2004-02-24 Alcatel Canada Inc. Method and apparatus for longest matching prefix determination in a communication network
US7274697B2 (en) * 2000-11-16 2007-09-25 Tensilica, Inc. Fast IP route lookup with 16/K and 16/Kc compressed data structures
US6888838B1 (en) * 2000-11-16 2005-05-03 Tensilica, Inc. Fast IP route lookup with configurable processor and compressed routing table
US6804677B2 (en) 2001-02-26 2004-10-12 Ori Software Development Ltd. Encoding semi-structured data for efficient search and browsing
US7227842B1 (en) 2001-04-24 2007-06-05 Tensilica, Inc. Fast IP packet classification with configurable processor
US6985483B2 (en) * 2001-07-31 2006-01-10 North Carolina State University Methods and systems for fast packet forwarding
US7212531B1 (en) * 2001-11-27 2007-05-01 Marvell Semiconductor Israel Ltd. Apparatus and method for efficient longest prefix match lookup
US7287033B2 (en) * 2002-03-06 2007-10-23 Ori Software Development, Ltd. Efficient traversals over hierarchical data and indexing semistructured data
US7490162B1 (en) 2002-05-15 2009-02-10 F5 Networks, Inc. Method and system for forwarding messages received at a traffic manager
US7899067B2 (en) * 2002-05-31 2011-03-01 Cisco Technology, Inc. Method and apparatus for generating and using enhanced tree bitmap data structures in determining a longest prefix match
US7325071B2 (en) * 2002-06-04 2008-01-29 Lucent Technologies Inc. Forwarding traffic in a network using a single forwarding table that includes forwarding information related to a plurality of logical networks
US20030236793A1 (en) * 2002-06-19 2003-12-25 Ericsson Inc. Compressed prefix tree structure and method for traversing a compressed prefix tree
US7099881B2 (en) * 2002-12-06 2006-08-29 Stmicroelectronics, Inc. Method for increasing average storage capacity in a bit-mapped tree-based storage engine by using remappable prefix representations and a run-length encoding scheme that defines multi-length fields to compactly store IP prefixes
US7782853B2 (en) * 2002-12-06 2010-08-24 Stmicroelectronics, Inc. Apparatus and method of using fully configurable memory, multi-stage pipeline logic and an embedded processor to implement multi-bit trie algorithmic network search engine
US7162481B2 (en) * 2002-12-06 2007-01-09 Stmicroelectronics, Inc. Method for increasing storage capacity in a multi-bit trie-based hardware storage engine by compressing the representation of single-length prefixes
US7774484B1 (en) 2002-12-19 2010-08-10 F5 Networks, Inc. Method and system for managing network traffic
EP1611486B1 (en) * 2003-04-10 2016-03-16 Nikon Corporation Environmental system including a transport region for an immersion lithography apparatus
US7415463B2 (en) * 2003-05-13 2008-08-19 Cisco Technology, Inc. Programming tree data structures and handling collisions while performing lookup operations
US7483901B1 (en) * 2003-09-10 2009-01-27 Nextaxiom Technology, Inc. System and method for data transfer between two or more connected software services
US7533387B1 (en) 2003-09-10 2009-05-12 Nextaxiom Technology, Inc. Guaranteed invocation/consumption of nested, composite software services
US7584454B1 (en) 2003-09-10 2009-09-01 Nextaxiom Technology, Inc. Semantic-based transactional support and recovery for nested composite software services
US7702882B2 (en) * 2003-09-10 2010-04-20 Samsung Electronics Co., Ltd. Apparatus and method for performing high-speed lookups in a routing table
US7581205B1 (en) 2003-09-30 2009-08-25 Nextaxiom Technology, Inc. System and method of implementing a customizable software platform
US9614772B1 (en) 2003-10-20 2017-04-04 F5 Networks, Inc. System and method for directing network traffic in tunneling applications
US8225282B1 (en) 2003-11-25 2012-07-17 Nextaxiom Technology, Inc. Semantic-based, service-oriented system and method of developing, programming and managing software modules and software solutions
US7308505B2 (en) * 2003-12-17 2007-12-11 International Business Machines Corporation Method, system and program product for facilitating forwarding of data packets through a node of a data transfer network using multiple types of forwarding tables
US7564841B2 (en) * 2004-03-05 2009-07-21 Samsung Electronics Co., Ltd. Apparatus and method for performing forwarding table searches using consecutive symbols tables
CN101401090B (en) * 2004-04-19 2010-08-25 加利福尼亚大学董事会 Deep packet filtering device and deep packet filtering method
US7586895B2 (en) * 2005-04-01 2009-09-08 Cisco Technology, Inc. Performing extended lookups on MAC-based tables including level 3 multicast group destination addresses
US8418233B1 (en) 2005-07-29 2013-04-09 F5 Networks, Inc. Rule based extensible authentication
US8533308B1 (en) 2005-08-12 2013-09-10 F5 Networks, Inc. Network traffic management through protocol-configurable transaction processing
US7551609B2 (en) * 2005-10-21 2009-06-23 Cisco Technology, Inc. Data structure for storing and accessing multiple independent sets of forwarding information
US7526495B2 (en) * 2006-01-03 2009-04-28 Emc Corporation Real-time construction of a selection representation for items in tree structures
US7620646B1 (en) * 2006-01-03 2009-11-17 Emc Corporation Real-time construction of a selection representation for items in tree structures
US7574445B2 (en) * 2006-01-03 2009-08-11 Emc Corporation Generating a selection representation for items in tree structures
US7605815B1 (en) 2006-01-03 2009-10-20 Emc Corporation Selection representation methods applied to logical groupings
US8565088B1 (en) 2006-02-01 2013-10-22 F5 Networks, Inc. Selectively enabling packet concatenation based on a transaction boundary
EP2074767A2 (en) * 2006-08-02 2009-07-01 University Of Florida Research Foundation, Inc. Succinct representation of static packet classifiers
US9106606B1 (en) 2007-02-05 2015-08-11 F5 Networks, Inc. Method, intermediate device and computer program code for maintaining persistency
CN101277252A (en) * 2007-03-30 2008-10-01 迈普(四川)通信技术有限公司 Method for traversing multi-branch Trie tree
US8073046B2 (en) * 2007-06-14 2011-12-06 Zoran Corporation Fast training equalization of a signal by using adaptive-iterative algorithm with main path phase correction
US9178785B1 (en) 2008-01-24 2015-11-03 NextAxiom Technology, Inc Accounting for usage and usage-based pricing of runtime engine
CN101577662B (en) 2008-05-05 2012-04-04 华为技术有限公司 Method and device for matching longest prefix based on tree form data structure
US9832069B1 (en) 2008-05-30 2017-11-28 F5 Networks, Inc. Persistence based on server response in an IP multimedia subsystem (IMS)
US9130846B1 (en) 2008-08-27 2015-09-08 F5 Networks, Inc. Exposed control components for customizable load balancing and persistence
US8295279B2 (en) * 2008-12-02 2012-10-23 Electronics And Telecommunications Research Institute Routing method and apparatus for providing different path by service
US8179898B2 (en) * 2009-06-11 2012-05-15 Alcatel Lucent Packet processing using braided tries
US9747293B2 (en) * 2012-02-28 2017-08-29 Deep Information Sciences, Inc. Method and system for storage and retrieval of information
US8923298B2 (en) * 2012-05-04 2014-12-30 Futurewei Technoligies, Inc. Optimized trie-based address lookup
US10133760B2 (en) * 2015-01-12 2018-11-20 International Business Machines Corporation Hardware for a bitmap data structure for efficient storage of heterogeneous lists
US10681417B2 (en) * 2017-05-12 2020-06-09 Google Llc Enhanced multicast network communications
US11178054B1 (en) 2018-08-22 2021-11-16 Marvell Israel (M.I.S.L) Ltd. Method and apparatus for longest prefix match search

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6560610B1 (en) * 1999-08-10 2003-05-06 Washington University Data structure using a tree bitmap and method for rapid classification of data in a database
US6697363B1 (en) * 2000-06-28 2004-02-24 Alcatel Canada Inc. Method and apparatus for longest matching prefix determination in a communication network

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
AU620994B2 (en) * 1989-07-12 1992-02-27 Digital Equipment Corporation Compressed prefix matching database searching
US6011795A (en) * 1997-03-20 2000-01-04 Washington University Method and apparatus for fast hierarchical address lookup using controlled expansion of prefixes
US6396842B1 (en) * 1998-04-30 2002-05-28 3Com Corporation Method of searching using longest match based Randix Search Trie with variable length keys and having prefix capability
US6434115B1 (en) * 1998-07-02 2002-08-13 Pluris, Inc. System and method for switching packets in a network
SK287491B6 (en) 1998-10-16 2010-11-08 Biogen Idec Ma Inc. Interferon-beta-1 fusion proteins and their use
US6192051B1 (en) * 1999-02-26 2001-02-20 Redstone Communications, Inc. Network router search engine using compressed tree forwarding table
US6590898B1 (en) * 1999-12-30 2003-07-08 New Jersey Institute Of Technology Method and apparatus for routing data packets

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6560610B1 (en) * 1999-08-10 2003-05-06 Washington University Data structure using a tree bitmap and method for rapid classification of data in a database
US6697363B1 (en) * 2000-06-28 2004-02-24 Alcatel Canada Inc. Method and apparatus for longest matching prefix determination in a communication network

Cited By (17)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7007021B1 (en) * 2000-11-28 2006-02-28 Altera Corporation Data structure and method for pipeline heap-sorting
US7197621B2 (en) * 2002-04-10 2007-03-27 Nxp B.V. Fast search algorithm for data sorting in chained lists
US20030225983A1 (en) * 2002-04-10 2003-12-04 Habben Hartmut Karl Data memory
US20060288024A1 (en) * 2005-04-28 2006-12-21 Freescale Semiconductor Incorporated Compressed representations of tries
US7921088B1 (en) * 2005-07-22 2011-04-05 X-Engines, Inc. Logical operations encoded by a function table for compressing index bits in multi-level compressed look-up tables
US7430560B1 (en) * 2005-07-22 2008-09-30 X-Engines, Inc. Multi-level compressed lock-up tables formed by logical operations to compress selected index bits
US20130031065A1 (en) * 2005-07-22 2013-01-31 Green Investment Fund, L.L.C. Multi-level compressed look-up tables formed by logical operations to compress selected index bits
US20090024643A1 (en) * 2005-07-22 2009-01-22 X-Engines, Inc Multi-Level Compressed Look-up Tables Formed by Logical Operations to Compress Selected Index Bits
US8356020B2 (en) * 2005-07-22 2013-01-15 Green Investment Fund, L.L.C. Multi-level compressed look-up tables formed by logical operations to compress selected index bits
US20070294502A1 (en) * 2006-06-14 2007-12-20 Bernard Karl Gunther Lookup table array compression and indexing
US7446681B2 (en) 2006-06-14 2008-11-04 Freescale Semiconductor, Inc. Lookup table array compression and indexing
US7827218B1 (en) * 2006-11-18 2010-11-02 X-Engines, Inc. Deterministic lookup using hashed key in a multi-stride compressed trie structure
US8572140B1 (en) * 2006-11-18 2013-10-29 X-Engines, Inc. Deterministic lookup using hashed key in a multi-stride compressed trie structure
US20090271366A1 (en) * 2008-04-25 2009-10-29 International Business Machines Corporation Methods and Systems for Improving Hash Table Performance
US8429143B2 (en) * 2008-04-25 2013-04-23 International Business Machines Corporation Methods and systems for improving hash table performance
US20110029713A1 (en) * 2009-08-03 2011-02-03 Wade Gregory L Data volume sparseness
US8825936B2 (en) * 2009-08-03 2014-09-02 Quantum Corporation Systems and methods for increasing data volume sparseness

Also Published As

Publication number Publication date
EP1168723A3 (en) 2002-10-30
ATE368988T1 (en) 2007-08-15
DE60129643T2 (en) 2008-05-21
DE60129643D1 (en) 2007-09-13
EP1168723B1 (en) 2007-08-01
EP1168723A2 (en) 2002-01-02
US6697363B1 (en) 2004-02-24

Similar Documents

Publication Publication Date Title
US6697363B1 (en) Method and apparatus for longest matching prefix determination in a communication network
US7403494B2 (en) Method for generating nodes in multiway search tree and search method using the same
US6266706B1 (en) Fast routing lookup system using complete prefix tree, bit vector, and pointers in a routing table for determining where to route IP datagrams
US7415472B2 (en) Comparison tree data structures of particular use in performing lookup operations
US6691124B2 (en) Compact data structures for pipelined message forwarding lookups
US6067574A (en) High speed routing using compressed tree process
US7415463B2 (en) Programming tree data structures and handling collisions while performing lookup operations
US7633960B2 (en) Dense mode coding scheme
US7433871B2 (en) Efficient ipv4/ipv6 best matching prefix method and apparatus
US6782382B2 (en) Prefix search method and data structure using compressed search tables
US6963868B2 (en) Multi-bit Patricia trees
US20030174717A1 (en) System and method for longest prefix match for internet protocol lookup
KR100586461B1 (en) Method, Hardware Architecture and Recording Medium for Searching IP Address by Using Pipeline Binary Tree
JP4995125B2 (en) How to search fixed length data
EP2159708A1 (en) Method for selecting hash function, method for storing and searching routing table and devices thereof
US20030091043A1 (en) Methods and systems for fast packet forwarding
US6963924B1 (en) IP routing lookup scheme and system for multi-gigabit switching routers
US20070121632A1 (en) Method and system for routing an IP packet
US7478109B1 (en) Identification of a longest matching prefix based on a search of intervals corresponding to the prefixes
US20050114393A1 (en) Dynamic forwarding method using binary search
Pao et al. Efficient hardware architecture for fast IP address lookup
KR100560420B1 (en) Internet protocol address lookup method using a trie
WO2001022667A1 (en) Method and system for efficient routing table compression and fast routing lookups

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION