US6775281B1 - Method and apparatus for a four-way hash table - Google Patents

Method and apparatus for a four-way hash table Download PDF

Info

Publication number
US6775281B1
US6775281B1 US09/409,184 US40918499A US6775281B1 US 6775281 B1 US6775281 B1 US 6775281B1 US 40918499 A US40918499 A US 40918499A US 6775281 B1 US6775281 B1 US 6775281B1
Authority
US
United States
Prior art keywords
key
indices
locations
index
location
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.)
Expired - Lifetime
Application number
US09/409,184
Inventor
David A. Brown
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.)
Chartoleaux KG LLC
Original Assignee
Mosaid Technologies Inc
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 Mosaid Technologies Inc filed Critical Mosaid Technologies Inc
Assigned to MOSAID TECHNOLOGIES, INC. reassignment MOSAID TECHNOLOGIES, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BROWN, DAVID A.
Priority to US09/409,184 priority Critical patent/US6775281B1/en
Priority to CA002385331A priority patent/CA2385331C/en
Priority to AU72644/00A priority patent/AU7264400A/en
Priority to PCT/CA2000/001061 priority patent/WO2001024440A2/en
Priority to GB0207003A priority patent/GB2370187B/en
Priority to CNB008137080A priority patent/CN1179523C/en
Priority to JP2001527500A priority patent/JP4482259B2/en
Priority to US10/187,472 priority patent/US6862287B2/en
Application granted granted Critical
Publication of US6775281B1 publication Critical patent/US6775281B1/en
Priority to US11/069,635 priority patent/US7990958B2/en
Assigned to SATECH GROUP A.B. LIMITED LIABILITY COMPANY reassignment SATECH GROUP A.B. LIMITED LIABILITY COMPANY ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: MOSAID TECHNOLOGIES INCORPORATED
Assigned to CHARTOLEAUX KG LIMITED LIABILITY COMPANY reassignment CHARTOLEAUX KG LIMITED LIABILITY COMPANY MERGER (SEE DOCUMENT FOR DETAILS). Assignors: SATECH GROUP A.B. LIMITED LIABILITY COMPANY
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • 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

Definitions

  • a networking switch receives data packets from a number of ingress ports connected to the switch and forwards the data packets to a number of egress ports connected to the switch.
  • the switch determines the egress port to which the data packets are forwarded dependent on a destination address included in the data packet received at one of the ingress ports.
  • the egress ports to which data packets are to be forwarded based on a destination address are stored in a forwarding entry in a forwarding table in the networking switch.
  • the forwarding table is searched for the forwarding entry associated with a particular destination address.
  • forwarding table for each possible destination address accessible through the switch. For example, for a 48 bit Ethernet destination address, that is, a Media Access Control (“MAC”) address, 2 48 forwarding entries are required in the forwarding table to store forwarding information for all the possible MAC addresses. Instead, only a portion of the MAC addresses are stored in a hash table. A hash function is performed on the destination address to provide a smaller number which is then used to index the hash table.
  • MAC Media Access Control
  • multiple destination addresses may map to the same index, that is, aliasing may occur.
  • an insert of an entry into a location in the hash table may be blocked if the location is already storing a forwarding entry for another destination.
  • One approach to the problem of aliasing is to generate a second hash function for the destination address in order to provide a second index if the forwarding entry is not found at the first index.
  • multiple levels of hashing results in a non-deterministic search by adding delay to the search for the forwarding entry.
  • One well-known technique for reducing aliasing and providing a deterministic search is to provide more than one location at each index. This is also called the multiple bucket technique.
  • a hash table implementing multiple buckets a predetermined number of locations or buckets are provided at each index.
  • FIG. 1A illustrates a block diagram of a prior art multi-bucket hash table 136 .
  • the hash table 136 includes 2 15 indices (through index bits 14:0) 134 .
  • Each of the buckets 138 A-D stores one forwarding entry.
  • the size of the hash table 136 is determined by the size of the location 138 A-D and the total number of indices 134 . For example, if each bucket 138 A-D is one byte wide, a 128 Kilobytes (32 Kilobytes ⁇ 4) hash table is required.
  • the multi-bucket hash table results in inefficient use of memory and an insert of a forwarding entry may be blocked if all the locations at an index are used. Thus, no further forwarding entries for destination addresses mapping to the index can be stored at that index in the hash table even though unused locations may be available at other indices in the hash table.
  • a network switch includes a plurality of hash tables, each of which is accessed concurrently with a different computed index.
  • the indices are computed by hash function logic from a key dependent on a destination address.
  • a forwarding entry for a key is inserted in one of the locations identified by the computed indices for the key.
  • the indices are computed to access the four hash tables, and the located forwarding entries are searched for one having a matching key. By appropriate storage of forwarding entries during the insert process, the match search can be completed in one search cycle.
  • the forwarding entry is preferably inserted in an unused location identified by the computed indices by an insert selection logic after detecting the unused location. However, if the insert selection logic determines that all the locations identified by the computed indices for the key are used, the insert selection logic may overwrite one of the used locations.
  • the insert selection logic moves one of the forwarding entries having another key to another location available to the other key and then inserts the new forwarding entry. Since the movement of that entry may result in movement of yet another entry, the forwarding entries may be recursively reordered.
  • a key match logic searches the hash tables for a search key stored in a forwarding entry in one of the locations specified by the computed indices and provides the matching forwarding entry. Because of the reordering in the insert process, the proper forwarding entry in one of the indexed locations can be assured.
  • the hash function logic preferably computes the index for each hash table by generating a CRC for the key and selecting a portion of the CRC as the index.
  • the number of hash tables and corresponding indices is preferably four.
  • FIG. 1A is a block diagram of a prior art multi-bucket hash table for providing forwarding entries
  • FIG. 1B is a block diagram illustrating hash tables for providing forwarding entries according to the principles of the present invention
  • FIG. 1C is a block diagram of a non-blocking common memory switch in which the hash tables,of FIG. 1B can be used;
  • FIG. 1D is a block diagram of a prior art Ethernet data packet which may be received at an ingress port
  • FIG. 2 is a block diagram illustrating the search logic including the hash tables in the forwarding logic shown in the non-blocking common memory switch in FIG. 1C;
  • FIG. 3 is a block diagram illustrating hash function logic shown in FIG. 2;
  • FIG. 4 is a block diagram illustrating the format of a forwarding entry stored in any one of the hash tables shown in FIG. 1B;
  • FIG. 5 is a flow graph illustrating the steps in the search logic for searching for a forwarding entry matching a search key in one of the hash tables;
  • FIG. 6 is a block diagram illustrating the insert logic for inserting a new entry in one of the hash tables
  • FIG. 7 is a flow chart illustrating the steps in the insert logic shown in FIG. 6 for inserting a forwarding entry into one of the hash tables by overwriting a used entry;
  • FIG. 8 is a flow chart illustrating the steps in the insert logic shown in FIG. 6 for recursively reordering the forwarding entries stored in the hash tables in order to free a location in the hash tables for inserting a forwarding entry.
  • FIG. 1B is a block diagram illustrating hash tables 190 A-D in a network switch for storing forwarding entries according to the principles of the present invention.
  • Each of the hash tables 190 A-D provides only 2 13 indices, with one location at each index for storing a forwarding entry.
  • the combined hash tables 190 A-D have 12 15 (2 13 ⁇ 2 2 ) indices.
  • the four hash tables 190 A-D provide the same number of indices as the prior art multi-bucket hash table shown in FIG. 1A, in a hash table that is one fourth the size of prior art multi-bucket hash table.
  • the number of locations at each index and the number of bits per location is a design choice and not a limitation of the invention.
  • Each of the computed indices is provided to a different hash table 190 A-D.
  • Each of the computed indices is provided to a different hash table 190 A-D.
  • four different indices are generated dependent on Key_A, that is, Key_A index 1 - 4 172 A-D.
  • a forwarding entry for a key is inserted in one of the locations identified by one of the four computed indices so that on a subsequent search for the key, the key is located in one search cycle.
  • Key_A in order to provide a forwarding entry for Key_A in one search cycle, Key_A must be stored in one of the locations 138 , 146 , 156 164 identified by Key_A Index 1 - 4 176 A-D. If all of the locations 138 , 146 , 156 , 164 are storing forwarding entries for other insert keys, one of the forwarding entries is moved to another location in one of the hash tables 190 A-D in order to provide one of the locations 138 , 146 , 156 , 164 for storing Key_A.
  • a method for reordering the forwarding entries stored in the hash tables 190 A-D is described in conjunction with FIG. 8 .
  • the four Key_A indices 172 A-D identify location 138 in hash table_ 1 190 A, location 146 in hash table_ 2 190 B, location 156 in hash table_ 3 190 C and location 164 in hash table_ 4 190 D. All the locations 138 , 146 , 156 , 164 are storing forwarding entries for keys other than Key_A. Key_B is stored in location 138 , Key_C is stored in location 146 , Key_D is stored in location 156 and Key_E is stored in location 164 . Unused or empty locations are available in the hash tables; for example, locations 140 , 142 , 144 are unused in hash table 1 190 A.
  • Key A shares location 138 with Key B.
  • An entry for Key B stored at location 138 can therefore be moved to an empty location identified by any of the other indices for Key_B 174 B-D.
  • the other locations 148 , 158 , 166 identified by the other indices for Key_B 174 B-D are used; therefore, Key_B can not be moved to one of the other locations 148 , 158 , 166 .
  • two of the locations 140 , 168 identified by two of the other indices for Key_C 176 A, 176 D are empty.
  • the forwarding entry for Key_C may be moved from location 146 to location 168 or 140 .
  • the forwarding entry for Key_A is inserted into location 146 identified by key_A index_ 2 172 B.
  • a search for the forwarding entry for Key_A or Key_C is deterministic, that is, each of the searches can be completed in one search cycle.
  • forwarding entries for Key_D could have been moved from location 156 to location 142 , 150 or 170 to provide location 156 for inserting Key_A
  • Key_E could have been moved from location 164 to location 144 , 152 or 162 to provide location 164 for inserting Key_A.
  • the forwarding entries stored in the hash tables 190 A-D are reordered so that a forwarding entry for a destination address is stored at one of the computed indices for the destination address.
  • FIG. 1A A comparison of the approach of the present invention to the prior art approach presented in FIG. 1A is facilitated by considering the expansion of the individual index locations of FIG. 1B to include four buckets each, each as illustrated in FIG. 1 A.
  • Such a configuration uses the same 32K ⁇ 4 memory as FIG. 1 A.
  • Each index into the hash table similarly offers four forwarding entries which might be a proper match to the destination address, but there are four indices into the hash table for each key as opposed to the single index of FIG. 1 A.
  • the present approach additionally offers the possibility of shifting otherwise blocking forwarding entries to other locations which are not shared with a particular key, thus offering greater flexibility in the insertion process. Any keys which might be in conflict at a particular index will not likely be in conflict at any other index to which a forwarding entry might be moved. This advantage is obtained regardless of whether multiple buckets are used, and the single bucket approach of FIG. 1B accomplishes this with a reduction in the memory area required by a factor of four.
  • insertion process may require additional processing time for the relocation proportional to the level of recursion which is implementation dependent, time required to process an insertion is much less critical than the need to find a match in a single cycle during the routing process. With the present invention, such a match is substantially more probable. In fact, a match is almost certain within the bounds of total memory size.
  • FIG. 1C is a block diagram of a common memory switch 100 in which the hash tables shown in FIG. 1B may be used. All data received on ingress ports 102 is stored in segment buffer memory 108 before being switched to one or more egress ports 112 .
  • the packet storage manager 106 controls write and read access to the segment buffer memory 108 .
  • the switch 100 includes an ingress ports engine 104 and an egress ports engine 110 .
  • a data packet is received serially at an ingress port 102 .
  • the ingress ports engine 104 detects and processes headers in the received data packet and selects a forward vector 114 stored in a forward entry for the data packet in the forwarding logic 128 in the ingress port engine 104 .
  • the forward vector 114 is a bit map, with a bit corresponding to each of the plurality of egress ports 112 , indicating whether the data packet is to be forwarded to that egress port 112 dependent on the destination address in the header.
  • the forward vector 114 is forwarded to the packet storage manager 106 .
  • data packets with destination address X are forwarded through egress port_ 112 A to the network node with destination address 136 A
  • data packets with destination address Y are forwarded through egress port_ 112 N to the network node with destination address Y 136 C
  • data packets with destination address Z are forwarded through egress port_N 112 N to the network node with destination address Z 136 B.
  • the packet storage manager 106 provides access to the segment buffer memory 108 .
  • the packet storage manager 106 provides segment buffer memory addresses 122 for read and write operations to the segment buffer 108 and stores in the manager 106 the locations in the segment buffer memory 108 of each data packet stored.
  • the egress engine 110 selects one of the plurality of egress ports 112 , through select control signals 120 , on which to transmit a data packet and provides the stored data packet to the selected egress port 112 .
  • the segment buffer memory 108 is a common memory shared by all ingress ports 102 and egress ports 112 , as described in co-pending U.S. application Ser. No. 09/386,589 filed on Aug. 31, 1999 entitled “Method and Apparatus for an Interleaved Non-Blocking Packet Buffer” by David A. Brown, the entire teachings of which are incorporated by reference.
  • the switch 100 is non-blocking, that is, a data packet arriving at any of the ingress ports 102 is not blocked from being forwarded to any of the egress ports 112 .
  • the switch 100 provides concurrent processing by the ingress ports engine 104 of data packets received at ingress ports 102 and processing of stored data packets by the egress port engine 110 for egress ports 112 .
  • FIG. 1D is a block diagram illustrating a prior art Ethernet data packet 120 which may be received at an ingress port 102 .
  • the Ethernet data packet includes a header 122 , data field 134 , and a frame check sequence 132 .
  • the header 122 includes a destination address 124 , a source address 126 , and a length or type field 130 .
  • the source address 126 and the destination address 124 are unique 48 bit addresses identifying the physical device at the source and the destination respectively.
  • the data packet may also include a 12 bit VLAN Identifier (“VID”) (not shown).
  • VIP VLAN Identifier
  • the size of the data packet 120 is dependent on the size of data field 134 , which can vary from 46 bytes to 1,500 bytes.
  • FIG. 2 is a block diagram of the search logic 216 in the forwarding logic 128 shown in the ingress ports engine 104 in the non-blocking common memory switch 100 in FIG. 1C according to the principles of the present invention.
  • the search logic 216 includes four hash tables 190 A-D.
  • the number of hash tables 190 A-D is a design choice and not a limitation of the invention.
  • the search logic 216 also includes a hash function logic 200 and a key match logic 204 .
  • the hash function logic 200 concurrently generates four indices 208 A-D dependent on a search key 206 .
  • the search key 206 is similar to a tag in cache memory.
  • the key match logic 204 determines which of the four locations identified by the indices 208 A-D stores a forwarding entry associated with the search key 206 . Upon finding a matching forwarding entry, the forward vector 114 portion of the matching forwarding entry is forwarded to the packet storage manager 106 (FIG. 1 C).
  • the ingress ports engine 104 examines the header 122 (FIG. 1D) of the data packet 120 as the data packet is being received from one of the ingress ports 102 (FIG. 1 C).
  • a copy of the 48 bit destination address 124 (FIG. 1D) is concatenated with a 12 bit VLAN IDentifier (“VDI”) to form a 60-bit search key 206 .
  • VDI VLAN IDentifier
  • the concatenation of the destination address and the VDI is a design choice and not a limitation of the invention, thus, the search key may be the destination address 124 (FIG. 1 D).
  • the search key 206 is forwarded to the hash function logic 200 .
  • the hash function logic 200 provides four thirteen bit indices 208 A-D as a result of performing a hash function on the search key 206 .
  • the invention is described for an Ethernet data packet 120 as shown in FIG. 1 D.
  • the invention is not limited to Ethernet data packets, it may be used to insert and search for forwarding entries for any other type of data packet.
  • FIG. 3 is a block diagram illustrating the hash function logic 200 shown in FIG. 2 .
  • the hash function logic 200 includes a Cyclic Redundancy Check (“CRC”) generation logic 300 and a hash table index logic 302 .
  • the hash function is a CRC function which is performed on the search key 206 in the CRC generation logic 300 .
  • CRC generation logic is well known to those skilled in the art.
  • the hash function is not limited to CRC generation, the hash function used may be any hash function used by those skilled in the art.
  • the CRC generation logic 300 generates a 32 bit CRC 304 from the 60 bit search key 206 .
  • the 32 bit CRC 304 is forwarded to the hash table index logic 302 .
  • the hash table index logic 302 generates four indices 208 A-D from the 32 bit CRC 304 .
  • Each of the four indices 208 A-D has 13 bits and thus provides 8K addresses to address the 8K locations in each of the hash tables 190 A-D.
  • the four indices 208 A-D are generated by mapping bits of the 32 bit CRC 304 to the four indices 208 A-D as follows: Bits 12 : 0 of the CRC 304 are mapped to Bits 12 : 0 of Index_ 1 208 A; Bits 18 : 6 of the CRC 304 are mapped to Bits 12 : 0 of Index_ 2 208 B; Bits 25 : 13 of the CRC 304 are mapped to Bits 12 : 0 of Index_ 3 208 C and Bits 31 : 19 of the CRC 304 are mapped to Bits 12 : 0 of Index- 4 208 D.
  • the entries 210 A-D stored at the locations in the hash tables 190 A-D specified by the indices 208 A-D are forwarded to the key match logic 204 .
  • the search key 206 is also forwarded to the key match logic 204 .
  • FIG. 4 is a block diagram showing the format of a forwarding entry 210 stored in any one of the locations in hash tables 190 A-D shown in FIG. 2 .
  • the forwarding entry 210 includes fields indicating where a data packet is to be forwarded.
  • the forwarding entry 210 includes the following fields: an age flag 402 , a remote cache refresh flag 404 , a learn port number 406 , address associated QoS valid 408 , an address associated QoS 410 , a logical port forward vector 412 , a static entry indicator flag 414 , a type flag 416 , a valid entry indicator flag 418 and a key 420 .
  • the one bit age flag 402 indicates the age of the forwarding entry 210 .
  • the one bit remote cache refresh flag 404 indicates if timeouts are enabled.
  • the learn port number 406 indicates on which interface the MAC address stored in the key 420 in the forwarding entry was learned. For example, if the MAC address was learned on a local external access port, this is the physical ingress port number 104 .
  • the address associated Quality of Service (“QoS”) field 410 indicates a management assigned quality of service for the address.
  • the one bit address QoS associated valid 408 flag indicates whether the QoS field 410 is to be used for future queuing consideration.
  • the 32 bit logical port forward vector 412 indicates to which ports the data packet is to be forwarded.
  • the one bit static entry indicator flag 414 indicates whether the forwarding entry 210 is static or dynamic.
  • the one bit type flag 416 indicates whether the forwarding entry 210 can be used for a level 2 forwarding entry.
  • the one bit valid entry indicator flag 418 indicates whether the forwarding entry 210 is valid.
  • the 60 bit key 420 stores the search key 206 associated with the forwarding entry 210 .
  • the key match logic 204 compares the key entry 420 stored in each of the forwarding entries 210 A-D forwarded from the hash tables 190 A-D with the search key 206 . If there is a match, the 32 bit logical port forward vector 412 (FIG. 4) from that forwarding entry is forwarded on the forward vector 114 to the packet storage manager 106 (FIG. 1 ). If there is no match a miss signal 214 is generated and the miss is processed by the no match found logic (not shown) in the ingress ports engine 104 .
  • FIG. 5 is a flow graph illustrating the steps in the search logic 216 for searching for a forwarding entry 210 matching a search key 206 in one of the hash tables 190 A-D.
  • the search logic 216 waits for a search request. If there is a search request processing continues with step 502 . If not, the search logic 216 continues to wait for a search request.
  • the hash function logic 200 generates four indices 208 A-D from the search key 206 and forwards the four indices 208 A-D to the hash tables 190 A-D. Processing continues with step 504 .
  • step 504 the forwarding entries 210 A-D stored at the locations in the hash tables 210 A-D specified by the indices 208 A-D are forwarded to the key match logic 204 . Processing continues with step 506 .
  • the key match logic 204 compares the key 420 (FIG. 4) stored in each of the forwarding entries 210 A-D with the search key 206 and determines if there is a match. If there is a match processing continues with step 508 . If not, processing continues with step 510 .
  • the forwarding entry 210 A-D for the search key 206 has been found.
  • the logical port forward vector 412 (FIG. 4) stored in the forwarding entry 210 is forwarded on the forward vector 114 (FIG. 1C) to the packet storage manager 106 (FIG. 1 C).
  • the data packet is forwarded to the predetermined egress ports 112 through the packet storage manager 106 , segment buffer memory 108 and the egress ports engine 110 . Processing continues with step 500 .
  • a forwarding entry 210 A-D matching the search key 206 has not been found.
  • the ingress ports engine 104 processes the miss for example, by flooding, that is, sending the data packet to all of the egress ports 112 . This process is part of the bridging protocol. Processing continues with step 500 .
  • FIG. 6 is a block diagram illustrating the insert logic 608 in the forwarding logic 128 (FIG. 1C) for inserting a forwarding entry 210 in a location in one of the hash tables 190 A-D.
  • a copy of the 48 bit destination address 124 (FIG. 1D) is concatenated with a 12 bit VLAN IDentifier (“VID”) to form a 60-bit insert key 606 .
  • VID VLAN IDentifier
  • the concatenation of the destination address and the VID is a design choice and not a limitation of the invention.
  • the same hash function is performed on the insert key 606 as is performed on the search key 206 .
  • the hash function has already been described for the search key 206 in conjunction with FIG. 3 .
  • Four indices 208 A-D are generated as a result of the hash function. Each of the indices identifies the location in a respective hash table 190 A-D at which the insert key 606 may be inserted.
  • the contents of the forwarding entries 210 A-D stored at the locations in the hash tables 190 A-D identified by the indices 208 A-D are forwarded to the forward entry insert logic 600 .
  • the forward entry insert logic 600 determines at which locations identified by the indices 208 A-D to insert the insert key 606 dependent on the contents of the forwarding entries 210 A-D and the state of the overwrite signal 602 .
  • the forward entry insert logic 600 determines which of the locations identified by indices 208 A-D are unused. If an unused location is found, a forwarding entry 210 including the insert key 606 is inserted in the unused location identified by the index 208 to the unused location. If no unused location is found and the overwrite signal 602 indicates that overwrite is enabled, one of the indices 208 A-D is randomly selected and a forwarding entry including the insert key 606 is inserted in the location identified by the selected index 208 .
  • a reordering of forwarding entries stored in the hash tables 190 A-D is performed in order to provide an unused location identified by the indices 208 A-D to insert a forwarding entry including the insert key 606 .
  • a method for reordering forwarding entries 210 A-D in the hash tables 190 A-D is described in conjunction with FIG. 8 .
  • FIG. 7 is a flow chart illustrating the steps in the insert logic 608 shown in FIG. 6 for inserting a forward entry 210 including an insert key 606 in a location in one of the hash tables 190 A-D.
  • the hash function logic 200 receives a request to insert a forwarding entry in a location in one of the hashing tables 190 A-D. Processing continues with step 702 .
  • the hash function logic 200 concurrently generates four indices 208 A-D in parallel from the insert key 606 .
  • the generation of the indices 208 A-D has already been described in conjunction with FIG. 3 .
  • Processing continues with step 704 .
  • step 704 the contents of the locations in the hash tables 190 A-D identified by the generated indices 208 A-D are forwarded to the forward entry insert logic 600 . Processing continues with step 706 .
  • step 716 if the insert key 606 is already stored in a location identified by the generated indices 208 A-D a forwarding entry insert is overwritten at that location.
  • the forward entry insert logic 600 determines from the forwarded contents whether the locations are unused. For example, by examining the valid entry field 418 (FIG. 4) in the forwarding entry 210 . If one of the locations is unused, processing continues with step 708 . If all the locations identified by the generated indices 208 A-D are used, processing continues with step 710 .
  • the forward entry insert logic 600 inserts a forwarding entry 210 including the insert key 606 in a location identified by one of the generated indices 190 A-D identifying an unused location.
  • the forward entry insert logic 600 determines if overwrite is enabled dependent on the state of the overwrite signal 602 (FIG. 6 ). Overwrite is set if a single cycle insert is required and the forwarding entries in the hash tables are continually updated for example, if the hash tables 190 A-D are being used in an Ethernet bridge. If overwrite is enabled, processing continues with step 712 . If overwrite is not enabled, processing continues with step 714 .
  • the forward entry insert logic 600 selects an used location identified by any one of the generated indices 208 A-D in which to overwrite a forwarding entry including the insert key 606 .
  • the forward entry insert logic 600 (FIG. 6) performs reordering of the forwarding entries 210 A-D stored in locations identified by the generated indices 208 A-D in order to move one of the forwarding entries to a location specified by another index in one of the hash tables 190 A-D.
  • a method for reordering is described in conjunction with FIG. 8 . After the reordering is complete and an unused location is provided at one of the locations identified by the generated indices 208 A-D, a forwarding entry 210 including the insert key 606 is inserted in the unused location.
  • FIG. 8 is a flow chart illustrating the steps in the forward entry insert logic 600 shown in FIG. 6 for reordering the forwarding entries in the hash tables 190 A-D shown in FIG. 1B to insert Key_A in a location identified by the indices for Key_A 172 A-D.
  • the forward entry insert logic 600 determines if any of the locations identified by the indices for Key_A 172 A-D are unused. If there is an unused location, no reordering of the forwarding entries is required and processing continues with step 814 . If all the locations are used, reordering is required to provide an unused location identified by one of the indices for Key_A 172 A-D in which to store Key_A and processing continues with step 802 .
  • the forward entry insert logic 600 determines from Key_B stored in location 138 identified by Key_A index_ 1 172 A and Key_B index_ 1 174 A, the other indices for Key_B 174 B-D, in which Key_B may be stored.
  • the forward entry insert logic 600 may determine the other indices for Key_B 174 B-D by performing a hash function on Key_B to generate the indices for Key_B 174 B-D or by using Key_B to index a recursive index table (not shown) in which the indices for Key_B 174 B-D were stored when Key_B was inserted in location 138 . Having determined the other indices associated with Key_B 174 B-D processing continues with step 804 .
  • the forward entry insert logic 600 examines the forwarding entries stored at the locations 148 , 158 , 166 identified by the indices for Key_B 174 B-C. As shown in FIG. 1B, Key_F is stored at location 148 identified by Key_B index_ 2 174 B and Key_F index_ 2 182 B, Key_H is stored at location 158 identified by Key_B index_ 3 174 C and Key_H index_ 3 186 C and Key_I is stored at location 166 identified by Key_B index_ 4 174 D and Key_I index_ 4 188 D.
  • step 806 If all the locations 148 , 158 , 166 identified by the other indices for Key_B 174 B-D are in-use as shown in FIG. 1B, processing continues with step 806 . If the forward entry insert logic 600 (FIG. 6) finds one of the locations 148 , 158 , 166 identified by the other indices for Key_B 174 B-D is unused, processing continues with step 816 .
  • the forward entry insert logic 600 determines from Key_C stored in location 146 , the other indices for Key_C 806 A, 806 C-D other than the location identified by the Key_A index_ 2 172 B and the Key_C index_ 2 176 B, in which Key_C may be stored. Having determined the other indices associated with Key_C processing continues with step 808 .
  • the forward entry insert logic 600 examines the forwarding entries stored at the locations identified by the indices for Key_C 176 A, 176 D-C. As shown in FIG. 8, location 140 identified by Key_C index_ 1 176 A is unused, Key_G is stored at location 160 identified by Key_C Index_ 3 176 C and Key_G index_ 3 184 C and location 168 identified by Key_C index_ 4 176 D is unused. If any of the locations 140 , 160 , 168 identified by the indices for Key_C 176 A, 176 C-D are unused as shown in FIG. 8, processing continues with step 810 . If the forward entry insert logic 600 (FIG. 6) finds none of the locations 142 , 160 , 168 identified by the indices for Key_C 176 A, 176 C-D are unused, processing continues with step 818 .
  • the forward entry insert logic 600 moves Key_C from location 146 identified by Key_C index_ 2 172 B and Key_A index_ 2 172 B to location 140 identified by Key_C index_ 1 176 A. Key_A is inserted in location 146 identified by Key_A index_ 2 172 B.
  • Key_A is inserted in an unused location identified by one of the Key_A indices 172 A-D.
  • the forward entry insert logic 600 moves Key_B from location 138 identified by Key_A index_ 1 172 A and Key_B index_ 1 174 A to an unused location identified by one of the indices for Key_B 174 B-D.
  • Key_A is inserted in location 138 identified by Key_A index 1 172 A and Key_B index_ 1 174 A.
  • the forward entry insert logic 600 determines from Key_D stored in location 156 identified by Key_A index_ 3 172 C and Key_D index_ 3 178 D, the other indices for Key_D 806 A-B, 806 D, in which Key_D may be stored. Having determined the other indices for Key_D processing continues with step 820 .
  • the forward entry insert logic 600 examines the keys stored at the locations identified by the other indices for Key_D 806 A-B, 806 D. As shown in FIG. 1B, all locations 142 , 150 , 170 identified by Key_D indices 806 A-B, 806 D are unused. If any of the locations 142 , 150 , 170 identified by the indices for Key_D 806 A-B, 806 D are unused as shown in FIG. 8, processing continues with step 822 . If the forward entry insert logic 600 (FIG. 6) finds none of the locations 142 , 150 , 170 identified by the indices for Key_D 806 A-B, 806 D is unused, processing continues with step 824 .
  • the forward entry insert logic 600 moves Key_D from location 156 identified by Key_A index_ 3 172 C to one of the unused locations 142 , 150 , 170 identified by Key_D indices 806 A-B, 806 D.
  • Key_A is inserted in location 156 identified by Key_D index 3 178 C.
  • the forward entry insert logic 600 determines from Key_E stored in location 164 identified by Key_A index_ 4 172 D and Key_E index_ 4 180 D, the other indices for Key_E 180 A-C, 180 D, in which Key_E may be stored. Having determined the other indices associated with Key_E processing continues with step 826 .
  • the forward entry insert logic 600 examines the keys stored at the locations identified by the other indices for Key_E 180 A-C. As shown in FIG. 1B, locations 144 , 152 , 162 identified by indices for Key_E 180 A-C are unused. If any of the locations 144 , 152 , 162 identified by the indices for Key_E 180 A-C are unused as shown in FIG. 1B, processing continues with step 828 . If the forward entry insert logic 600 (FIG. 6) finds none of the locations 144 , 152 , 168 identified by the indices for Key_E 180 A-C is unused, processing continues with step 830 .
  • the forward entry insert logic 600 moves Key_E from location 164 identified by Key_A index_ 4 172 D and Key_E index_ 4 180 D to one of the locations 144 , 152 , 162 identified by the other indices for Key_E 180 A-C.
  • Key_E is inserted in first empty location detected, that is, location 144 if the indices for Key_E 180 A-C are being searched in the order A-C.
  • Key_A is inserted in location 164 identified by Key_A index_ 4 172 D.
  • the index selection logic 600 continues to search for an unused location by examining the forwarding entries stored at other locations shared by the Key_B, Key_C, Key_D and Key_E forwarding entries by examining all the forwarding entries associated with Key_F, Key_G, Key_H and Key_I until a forwarding entry at one of the Key_A indices 172 A-D is emptied and Key_A is inserted.
  • the locations identified by the indices for a key are searched in a predetermined order for example, in A-D order.
  • the key is inserted in the first empty location found.
  • the entry is inserted at the location identified by index_ 1 208 A, followed by the location identified by index_ 2 208 B, index_ 3 208 C and index_ 4 208 D.
  • Reordering the forwarding entries in the hash tables provides efficient utilization of the hash tables and increases the probability that a forwarding entry can be inserted in the hash tables when the hash tables are almost fill.

Abstract

A number of hash tables are accessed concurrently with a different computed index for each hash table. Each index identifies a location in one of the hash tables at which a forwarding entry may be stored. To search for a forwarding entry, the locations identified by the indices computed by performing a hash function on a search key are searched to a match for the search key. To insert a forwarding entry if single cycle inserting is not required and all the locations identified by the indices computed by performing a hash function on an insert key are used then the data base is reordered so that the forwarding entry can be inserted at one of the locations identified by one of the computed indices for the insert key. If single cycle insertion is required and all the locations identified by the computed indices are used, one of the locations identified by one of the computed indices for the insert key is randomly overwritten by the forwarding entry.

Description

BACKGROUND OF THE INVENTION
In a computer network, a networking switch receives data packets from a number of ingress ports connected to the switch and forwards the data packets to a number of egress ports connected to the switch. The switch determines the egress port to which the data packets are forwarded dependent on a destination address included in the data packet received at one of the ingress ports.
The egress ports to which data packets are to be forwarded based on a destination address are stored in a forwarding entry in a forwarding table in the networking switch. The forwarding table is searched for the forwarding entry associated with a particular destination address.
In general, it is not feasible to provide an entry in the forwarding table for each possible destination address accessible through the switch. For example, for a 48 bit Ethernet destination address, that is, a Media Access Control (“MAC”) address, 248 forwarding entries are required in the forwarding table to store forwarding information for all the possible MAC addresses. Instead, only a portion of the MAC addresses are stored in a hash table. A hash function is performed on the destination address to provide a smaller number which is then used to index the hash table.
As a result of performing a hash function on the destination address, multiple destination addresses may map to the same index, that is, aliasing may occur. Thus, an insert of an entry into a location in the hash table may be blocked if the location is already storing a forwarding entry for another destination.
One approach to the problem of aliasing is to generate a second hash function for the destination address in order to provide a second index if the forwarding entry is not found at the first index. However, multiple levels of hashing results in a non-deterministic search by adding delay to the search for the forwarding entry.
One well-known technique for reducing aliasing and providing a deterministic search is to provide more than one location at each index. This is also called the multiple bucket technique. In a hash table implementing multiple buckets, a predetermined number of locations or buckets are provided at each index.
FIG. 1A illustrates a block diagram of a prior art multi-bucket hash table 136. The hash table 136 includes 215 indices (through index bits 14:0) 134. There are four buckets 138A-D at each index 134. Each of the buckets 138A-D stores one forwarding entry. The size of the hash table 136 is determined by the size of the location 138A-D and the total number of indices 134. For example, if each bucket 138A-D is one byte wide, a 128 Kilobytes (32 Kilobytes×4) hash table is required.
However, the multi-bucket hash table results in inefficient use of memory and an insert of a forwarding entry may be blocked if all the locations at an index are used. Thus, no further forwarding entries for destination addresses mapping to the index can be stored at that index in the hash table even though unused locations may be available at other indices in the hash table.
SUMMARY OF THE INVENTION
A network switch includes a plurality of hash tables, each of which is accessed concurrently with a different computed index. The indices are computed by hash function logic from a key dependent on a destination address. A forwarding entry for a key is inserted in one of the locations identified by the computed indices for the key. When a packet is received, the indices are computed to access the four hash tables, and the located forwarding entries are searched for one having a matching key. By appropriate storage of forwarding entries during the insert process, the match search can be completed in one search cycle.
The forwarding entry is preferably inserted in an unused location identified by the computed indices by an insert selection logic after detecting the unused location. However, if the insert selection logic determines that all the locations identified by the computed indices for the key are used, the insert selection logic may overwrite one of the used locations.
In a preferred embodiment, having determined that all the locations identified by the computed indices for the key are used, the insert selection logic moves one of the forwarding entries having another key to another location available to the other key and then inserts the new forwarding entry. Since the movement of that entry may result in movement of yet another entry, the forwarding entries may be recursively reordered.
When a packet is received, a key match logic searches the hash tables for a search key stored in a forwarding entry in one of the locations specified by the computed indices and provides the matching forwarding entry. Because of the reordering in the insert process, the proper forwarding entry in one of the indexed locations can be assured.
The hash function logic preferably computes the index for each hash table by generating a CRC for the key and selecting a portion of the CRC as the index. The number of hash tables and corresponding indices is preferably four.
BRIEF DESCRIPTION OF THE DRAWINGS
The foregoing and other objects, features and advantages of the invention will be apparent from the following more particular description of preferred embodiments of the invention, as illustrated in the accompanying drawings in which like reference characters refer to the same parts throughout the different views. The drawings are not necessarily to scale, emphasis instead being placed upon illustrating the principles of the invention.
FIG. 1A is a block diagram of a prior art multi-bucket hash table for providing forwarding entries;
FIG. 1B is a block diagram illustrating hash tables for providing forwarding entries according to the principles of the present invention;
FIG. 1C is a block diagram of a non-blocking common memory switch in which the hash tables,of FIG. 1B can be used;
FIG. 1D is a block diagram of a prior art Ethernet data packet which may be received at an ingress port;
FIG. 2 is a block diagram illustrating the search logic including the hash tables in the forwarding logic shown in the non-blocking common memory switch in FIG. 1C;
FIG. 3 is a block diagram illustrating hash function logic shown in FIG. 2;
FIG. 4 is a block diagram illustrating the format of a forwarding entry stored in any one of the hash tables shown in FIG. 1B;
FIG. 5 is a flow graph illustrating the steps in the search logic for searching for a forwarding entry matching a search key in one of the hash tables;
FIG. 6 is a block diagram illustrating the insert logic for inserting a new entry in one of the hash tables;
FIG. 7 is a flow chart illustrating the steps in the insert logic shown in FIG. 6 for inserting a forwarding entry into one of the hash tables by overwriting a used entry;
FIG. 8 is a flow chart illustrating the steps in the insert logic shown in FIG. 6 for recursively reordering the forwarding entries stored in the hash tables in order to free a location in the hash tables for inserting a forwarding entry.
DETAILED DESCRIPTION OF THE INVENTION
FIG. 1B is a block diagram illustrating hash tables 190A-D in a network switch for storing forwarding entries according to the principles of the present invention. Each of the hash tables 190A-D provides only 213 indices, with one location at each index for storing a forwarding entry. The combined hash tables 190A-D have 1215 (213×22) indices. Thus, the four hash tables 190A-D provide the same number of indices as the prior art multi-bucket hash table shown in FIG. 1A, in a hash table that is one fourth the size of prior art multi-bucket hash table. The number of locations at each index and the number of bits per location is a design choice and not a limitation of the invention.
Four different indices are computed concurrently by hash function logic dependent on a destination address. The hash function logic is described further with reference to FIG. 3. Each of the computed indices is provided to a different hash table 190A-D. For example, four different indices are generated dependent on Key_A, that is, Key_A index 1-4 172A-D. A forwarding entry for a key is inserted in one of the locations identified by one of the four computed indices so that on a subsequent search for the key, the key is located in one search cycle.
For example, in order to provide a forwarding entry for Key_A in one search cycle, Key_A must be stored in one of the locations 138, 146, 156 164 identified by Key_A Index 1-4 176A-D. If all of the locations 138, 146, 156, 164 are storing forwarding entries for other insert keys, one of the forwarding entries is moved to another location in one of the hash tables 190A-D in order to provide one of the locations 138, 146, 156, 164 for storing Key_A. A method for reordering the forwarding entries stored in the hash tables 190A-D is described in conjunction with FIG. 8.
As shown, the four Key_A indices 172A-D identify location 138 in hash table_1 190A, location 146 in hash table_2 190B, location 156 in hash table_3 190C and location 164 in hash table_4 190D. All the locations 138, 146, 156, 164 are storing forwarding entries for keys other than Key_A. Key_B is stored in location 138, Key_C is stored in location 146, Key_D is stored in location 156 and Key_E is stored in location 164. Unused or empty locations are available in the hash tables; for example, locations 140, 142, 144 are unused in hash table 1 190A.
In order to provide a deterministic search, that is, switching without queuing Key_A must be stored in one of the locations identified by the indices for Key_A 172A-D. Thus, one of the keys stored in locations 138, 146, 156, 164 must be moved to an unused location, so that a forwarding entry for Key_A can be stored in the emptied location, and the forwarding entry for the key that is moved is stored in a location identified by one of the moved key's other indices.
Key A shares location 138 with Key B. An entry for Key B stored at location 138 can therefore be moved to an empty location identified by any of the other indices for Key_B 174B-D. As shown, the other locations 148, 158, 166 identified by the other indices for Key_B 174B-D are used; therefore, Key_B can not be moved to one of the other locations 148, 158, 166. However, two of the locations 140, 168 identified by two of the other indices for Key_C 176A, 176D are empty. Thus, the forwarding entry for Key_C may be moved from location 146 to location 168 or 140. After moving the forwarding entry for Key_C, the forwarding entry for Key_A is inserted into location 146 identified by key_A index_2 172B. A search for the forwarding entry for Key_A or Key_C is deterministic, that is, each of the searches can be completed in one search cycle. Similarly, forwarding entries for Key_D could have been moved from location 156 to location 142, 150 or 170 to provide location 156 for inserting Key_A, or, Key_E could have been moved from location 164 to location 144, 152 or 162 to provide location 164 for inserting Key_A.
Thus, in order to provide a deterministic search for each forwarding entry stored in the hash tables 190A-D, the forwarding entries stored in the hash tables 190A-D are reordered so that a forwarding entry for a destination address is stored at one of the computed indices for the destination address.
A comparison of the approach of the present invention to the prior art approach presented in FIG. 1A is facilitated by considering the expansion of the individual index locations of FIG. 1B to include four buckets each, each as illustrated in FIG. 1A. Such a configuration uses the same 32K×4 memory as FIG. 1A. Each index into the hash table similarly offers four forwarding entries which might be a proper match to the destination address, but there are four indices into the hash table for each key as opposed to the single index of FIG. 1A.
With the present invention, there is a greater sharing of each index with other destination addresses. When inserting forwarding entries in the FIG. 1B approach, conflict at any one index is more likely because of the greater sharing, but overall the FIG. 1B approach with multiple indices per key and multiple buckets provides no more initial conflict in the insertion process. Advantageously, the present approach additionally offers the possibility of shifting otherwise blocking forwarding entries to other locations which are not shared with a particular key, thus offering greater flexibility in the insertion process. Any keys which might be in conflict at a particular index will not likely be in conflict at any other index to which a forwarding entry might be moved. This advantage is obtained regardless of whether multiple buckets are used, and the single bucket approach of FIG. 1B accomplishes this with a reduction in the memory area required by a factor of four.
Although the insertion process may require additional processing time for the relocation proportional to the level of recursion which is implementation dependent, time required to process an insertion is much less critical than the need to find a match in a single cycle during the routing process. With the present invention, such a match is substantially more probable. In fact, a match is almost certain within the bounds of total memory size.
FIG. 1C is a block diagram of a common memory switch 100 in which the hash tables shown in FIG. 1B may be used. All data received on ingress ports 102 is stored in segment buffer memory 108 before being switched to one or more egress ports 112. The packet storage manager 106 controls write and read access to the segment buffer memory 108.
The switch 100 includes an ingress ports engine 104 and an egress ports engine 110. A data packet is received serially at an ingress port 102. The ingress ports engine 104 detects and processes headers in the received data packet and selects a forward vector 114 stored in a forward entry for the data packet in the forwarding logic 128 in the ingress port engine 104. The forward vector 114 is a bit map, with a bit corresponding to each of the plurality of egress ports 112, indicating whether the data packet is to be forwarded to that egress port 112 dependent on the destination address in the header. The forward vector 114 is forwarded to the packet storage manager 106. For example, data packets with destination address X are forwarded through egress port_112A to the network node with destination address 136A, data packets with destination address Y are forwarded through egress port_112N to the network node with destination address Y 136C and data packets with destination address Z are forwarded through egress port_N 112N to the network node with destination address Z 136B.
The packet storage manager 106 provides access to the segment buffer memory 108. The packet storage manager 106 provides segment buffer memory addresses 122 for read and write operations to the segment buffer 108 and stores in the manager 106 the locations in the segment buffer memory 108 of each data packet stored. The egress engine 110 selects one of the plurality of egress ports 112, through select control signals 120, on which to transmit a data packet and provides the stored data packet to the selected egress port 112.
The segment buffer memory 108 is a common memory shared by all ingress ports 102 and egress ports 112, as described in co-pending U.S. application Ser. No. 09/386,589 filed on Aug. 31, 1999 entitled “Method and Apparatus for an Interleaved Non-Blocking Packet Buffer” by David A. Brown, the entire teachings of which are incorporated by reference. The switch 100 is non-blocking, that is, a data packet arriving at any of the ingress ports 102 is not blocked from being forwarded to any of the egress ports 112. The switch 100 provides concurrent processing by the ingress ports engine 104 of data packets received at ingress ports 102 and processing of stored data packets by the egress port engine 110 for egress ports 112.
FIG. 1D is a block diagram illustrating a prior art Ethernet data packet 120 which may be received at an ingress port 102. The Ethernet data packet includes a header 122, data field 134, and a frame check sequence 132. The header 122 includes a destination address 124, a source address 126, and a length or type field 130. The source address 126 and the destination address 124 are unique 48 bit addresses identifying the physical device at the source and the destination respectively. The data packet may also include a 12 bit VLAN Identifier (“VID”) (not shown). The size of the data packet 120 is dependent on the size of data field 134, which can vary from 46 bytes to 1,500 bytes.
FIG. 2 is a block diagram of the search logic 216 in the forwarding logic 128 shown in the ingress ports engine 104 in the non-blocking common memory switch 100 in FIG. 1C according to the principles of the present invention. The search logic 216 includes four hash tables 190A-D. The number of hash tables 190A-D is a design choice and not a limitation of the invention.
The search logic 216 also includes a hash function logic 200 and a key match logic 204. The hash function logic 200 concurrently generates four indices 208A-D dependent on a search key 206. The search key 206 is similar to a tag in cache memory. The key match logic 204 determines which of the four locations identified by the indices 208A-D stores a forwarding entry associated with the search key 206. Upon finding a matching forwarding entry, the forward vector 114 portion of the matching forwarding entry is forwarded to the packet storage manager 106 (FIG. 1C).
To search for the forwarding entry corresponding to a destination address in the header of a data packet, the ingress ports engine 104 examines the header 122 (FIG. 1D) of the data packet 120 as the data packet is being received from one of the ingress ports 102 (FIG. 1C). A copy of the 48 bit destination address 124 (FIG. 1D) is concatenated with a 12 bit VLAN IDentifier (“VDI”) to form a 60-bit search key 206. The concatenation of the destination address and the VDI is a design choice and not a limitation of the invention, thus, the search key may be the destination address 124 (FIG. 1D). The search key 206 is forwarded to the hash function logic 200. The hash function logic 200 provides four thirteen bit indices 208A-D as a result of performing a hash function on the search key 206.
The invention is described for an Ethernet data packet 120 as shown in FIG. 1D. However, the invention is not limited to Ethernet data packets, it may be used to insert and search for forwarding entries for any other type of data packet.
FIG. 3 is a block diagram illustrating the hash function logic 200 shown in FIG. 2. The hash function logic 200 includes a Cyclic Redundancy Check (“CRC”) generation logic 300 and a hash table index logic 302. The hash function is a CRC function which is performed on the search key 206 in the CRC generation logic 300. CRC generation logic is well known to those skilled in the art. The hash function is not limited to CRC generation, the hash function used may be any hash function used by those skilled in the art. The CRC generation logic 300 generates a 32 bit CRC 304 from the 60 bit search key 206.
The 32 bit CRC 304 is forwarded to the hash table index logic 302. The hash table index logic 302 generates four indices 208A-D from the 32 bit CRC 304. Each of the four indices 208A-D has 13 bits and thus provides 8K addresses to address the 8K locations in each of the hash tables 190A-D. The four indices 208A-D are generated by mapping bits of the 32 bit CRC 304 to the four indices 208A-D as follows: Bits 12:0 of the CRC 304 are mapped to Bits 12:0 of Index_1 208A; Bits 18:6 of the CRC 304 are mapped to Bits 12:0 of Index_2 208B; Bits 25:13 of the CRC 304 are mapped to Bits 12:0 of Index_3 208C and Bits 31:19 of the CRC 304 are mapped to Bits 12:0 of Index-4 208D.
Returning to FIG. 2, after the indices 208A-D have been generated by the hash function logic 200, the entries 210A-D stored at the locations in the hash tables 190A-D specified by the indices 208A-D are forwarded to the key match logic 204. The search key 206 is also forwarded to the key match logic 204.
FIG. 4 is a block diagram showing the format of a forwarding entry 210 stored in any one of the locations in hash tables 190A-D shown in FIG. 2. The forwarding entry 210 includes fields indicating where a data packet is to be forwarded. The forwarding entry 210 includes the following fields: an age flag 402, a remote cache refresh flag 404, a learn port number 406, address associated QoS valid 408, an address associated QoS 410, a logical port forward vector 412, a static entry indicator flag 414, a type flag 416, a valid entry indicator flag 418 and a key 420.
The one bit age flag 402 indicates the age of the forwarding entry 210. The one bit remote cache refresh flag 404 indicates if timeouts are enabled. The learn port number 406 indicates on which interface the MAC address stored in the key 420 in the forwarding entry was learned. For example, if the MAC address was learned on a local external access port, this is the physical ingress port number 104. The address associated Quality of Service (“QoS”) field 410 indicates a management assigned quality of service for the address. The one bit address QoS associated valid 408 flag indicates whether the QoS field 410 is to be used for future queuing consideration. The 32 bit logical port forward vector 412 indicates to which ports the data packet is to be forwarded. The one bit static entry indicator flag 414 indicates whether the forwarding entry 210 is static or dynamic. The one bit type flag 416 indicates whether the forwarding entry 210 can be used for a level 2 forwarding entry. The one bit valid entry indicator flag 418 indicates whether the forwarding entry 210 is valid. The 60 bit key 420 stores the search key 206 associated with the forwarding entry 210.
Returning to FIG. 2, the key match logic 204 compares the key entry 420 stored in each of the forwarding entries 210A-D forwarded from the hash tables 190A-D with the search key 206. If there is a match, the 32 bit logical port forward vector 412 (FIG. 4) from that forwarding entry is forwarded on the forward vector 114 to the packet storage manager 106 (FIG. 1). If there is no match a miss signal 214 is generated and the miss is processed by the no match found logic (not shown) in the ingress ports engine 104.
FIG. 5 is a flow graph illustrating the steps in the search logic 216 for searching for a forwarding entry 210 matching a search key 206 in one of the hash tables 190A-D.
At step 500, the search logic 216 waits for a search request. If there is a search request processing continues with step 502. If not, the search logic 216 continues to wait for a search request.
At step 502, the hash function logic 200 generates four indices 208A-D from the search key 206 and forwards the four indices 208A-D to the hash tables 190A-D. Processing continues with step 504.
At step 504, the forwarding entries 210A-D stored at the locations in the hash tables 210A-D specified by the indices 208A-D are forwarded to the key match logic 204. Processing continues with step 506.
At step 506, the key match logic 204 compares the key 420 (FIG. 4) stored in each of the forwarding entries 210A-D with the search key 206 and determines if there is a match. If there is a match processing continues with step 508. If not, processing continues with step 510.
At step 508, the forwarding entry 210A-D for the search key 206 has been found. The logical port forward vector 412 (FIG. 4) stored in the forwarding entry 210 is forwarded on the forward vector 114 (FIG. 1C) to the packet storage manager 106 (FIG. 1C). The data packet is forwarded to the predetermined egress ports 112 through the packet storage manager 106, segment buffer memory 108 and the egress ports engine 110. Processing continues with step 500.
At step 510, a forwarding entry 210A-D matching the search key 206 has not been found. The ingress ports engine 104 processes the miss for example, by flooding, that is, sending the data packet to all of the egress ports 112. This process is part of the bridging protocol. Processing continues with step 500.
FIG. 6 is a block diagram illustrating the insert logic 608 in the forwarding logic 128 (FIG. 1C) for inserting a forwarding entry 210 in a location in one of the hash tables 190A-D. A copy of the 48 bit destination address 124 (FIG. 1D) is concatenated with a 12 bit VLAN IDentifier (“VID”) to form a 60-bit insert key 606. The concatenation of the destination address and the VID is a design choice and not a limitation of the invention. The same hash function is performed on the insert key 606 as is performed on the search key 206. The hash function has already been described for the search key 206 in conjunction with FIG. 3. Four indices 208A-D are generated as a result of the hash function. Each of the indices identifies the location in a respective hash table 190A-D at which the insert key 606 may be inserted.
The contents of the forwarding entries 210A-D stored at the locations in the hash tables 190A-D identified by the indices 208A-D are forwarded to the forward entry insert logic 600. The forward entry insert logic 600 determines at which locations identified by the indices 208A-D to insert the insert key 606 dependent on the contents of the forwarding entries 210A-D and the state of the overwrite signal 602.
The forward entry insert logic 600 determines which of the locations identified by indices 208A-D are unused. If an unused location is found, a forwarding entry 210 including the insert key 606 is inserted in the unused location identified by the index 208 to the unused location. If no unused location is found and the overwrite signal 602 indicates that overwrite is enabled, one of the indices 208A-D is randomly selected and a forwarding entry including the insert key 606 is inserted in the location identified by the selected index 208.
If all the locations are used and the overwrite signal 602 indicates that overwrite is not enabled, a reordering of forwarding entries stored in the hash tables 190A-D is performed in order to provide an unused location identified by the indices 208A-D to insert a forwarding entry including the insert key 606. A method for reordering forwarding entries 210A-D in the hash tables 190A-D is described in conjunction with FIG. 8.
FIG. 7 is a flow chart illustrating the steps in the insert logic 608 shown in FIG. 6 for inserting a forward entry 210 including an insert key 606 in a location in one of the hash tables 190A-D.
At step 700, the hash function logic 200 receives a request to insert a forwarding entry in a location in one of the hashing tables 190A-D. Processing continues with step 702.
At step 702, the hash function logic 200 concurrently generates four indices 208A-D in parallel from the insert key 606. The generation of the indices 208A-D has already been described in conjunction with FIG. 3. Processing continues with step 704.
At step 704, the contents of the locations in the hash tables 190A-D identified by the generated indices 208A-D are forwarded to the forward entry insert logic 600. Processing continues with step 706.
At step 716, if the insert key 606 is already stored in a location identified by the generated indices 208A-D a forwarding entry insert is overwritten at that location.
At step 706, the forward entry insert logic 600 (FIG. 6) determines from the forwarded contents whether the locations are unused. For example, by examining the valid entry field 418 (FIG. 4) in the forwarding entry 210. If one of the locations is unused, processing continues with step 708. If all the locations identified by the generated indices 208A-D are used, processing continues with step 710.
At step 708, the forward entry insert logic 600 (FIG. 6) inserts a forwarding entry 210 including the insert key 606 in a location identified by one of the generated indices 190A-D identifying an unused location.
At step 710, the forward entry insert logic 600 (FIG. 6) determines if overwrite is enabled dependent on the state of the overwrite signal 602 (FIG. 6). Overwrite is set if a single cycle insert is required and the forwarding entries in the hash tables are continually updated for example, if the hash tables 190A-D are being used in an Ethernet bridge. If overwrite is enabled, processing continues with step 712. If overwrite is not enabled, processing continues with step 714.
At step 712, the forward entry insert logic 600 (FIG. 6) selects an used location identified by any one of the generated indices 208A-D in which to overwrite a forwarding entry including the insert key 606.
At step 714, the forward entry insert logic 600 (FIG. 6) performs reordering of the forwarding entries 210A-D stored in locations identified by the generated indices 208A-D in order to move one of the forwarding entries to a location specified by another index in one of the hash tables 190A-D. A method for reordering is described in conjunction with FIG. 8. After the reordering is complete and an unused location is provided at one of the locations identified by the generated indices 208A-D, a forwarding entry 210 including the insert key 606 is inserted in the unused location.
FIG. 8 is a flow chart illustrating the steps in the forward entry insert logic 600 shown in FIG. 6 for reordering the forwarding entries in the hash tables 190A-D shown in FIG. 1B to insert Key_A in a location identified by the indices for Key_A 172A-D.
At step 800, having determined that Key_A is not stored at the locations identified by the indices for Key_A 172A-D, the forward entry insert logic 600 (FIG. 6) determines if any of the locations identified by the indices for Key_A 172A-D are unused. If there is an unused location, no reordering of the forwarding entries is required and processing continues with step 814. If all the locations are used, reordering is required to provide an unused location identified by one of the indices for Key_A 172A-D in which to store Key_A and processing continues with step 802.
At step 802, the forward entry insert logic 600 (FIG. 6 ) determines from Key_B stored in location 138 identified by Key_A index_1 172A and Key_B index_1 174A, the other indices for Key_B 174B-D, in which Key_B may be stored. The forward entry insert logic 600 may determine the other indices for Key_B 174B-D by performing a hash function on Key_B to generate the indices for Key_B 174B-D or by using Key_B to index a recursive index table (not shown) in which the indices for Key_B 174B-D were stored when Key_B was inserted in location 138. Having determined the other indices associated with Key_B 174B-D processing continues with step 804.
At step 804, the forward entry insert logic 600 (FIG. 6) examines the forwarding entries stored at the locations 148, 158, 166 identified by the indices for Key_B 174B-C. As shown in FIG. 1B, Key_F is stored at location 148 identified by Key_B index_2 174B and Key_F index_2 182B, Key_H is stored at location 158 identified by Key_B index_3 174C and Key_H index_3 186C and Key_I is stored at location 166 identified by Key_B index_4 174D and Key_I index_4 188D. If all the locations 148, 158, 166 identified by the other indices for Key_B 174B-D are in-use as shown in FIG. 1B, processing continues with step 806. If the forward entry insert logic 600 (FIG. 6) finds one of the locations 148, 158, 166 identified by the other indices for Key_B 174B-D is unused, processing continues with step 816.
At step 806, the forward entry insert logic 600 (FIG. 6 ) determines from Key_C stored in location 146, the other indices for Key_C 806A, 806C-D other than the location identified by the Key_A index_2 172B and the Key_C index_2 176B, in which Key_C may be stored. Having determined the other indices associated with Key_C processing continues with step 808.
At step 808, the forward entry insert logic 600 (FIG. 6) examines the forwarding entries stored at the locations identified by the indices for Key_C 176A, 176D-C. As shown in FIG. 8, location 140 identified by Key_C index_1 176A is unused, Key_G is stored at location 160 identified by Key_C Index_3 176C and Key_G index_3 184C and location 168 identified by Key_C index_4 176D is unused. If any of the locations 140, 160, 168 identified by the indices for Key_C 176A, 176C-D are unused as shown in FIG. 8, processing continues with step 810. If the forward entry insert logic 600 (FIG. 6) finds none of the locations 142, 160, 168 identified by the indices for Key_C 176A, 176C-D are unused, processing continues with step 818.
At step 810, the forward entry insert logic 600 (FIG. 6) moves Key_C from location 146 identified by Key_C index_2 172B and Key_A index_2 172B to location 140 identified by Key_C index_1 176A. Key_A is inserted in location 146 identified by Key_A index_2 172B.
At step 814, Key_A is inserted in an unused location identified by one of the Key_A indices 172A-D.
At step 816, the forward entry insert logic 600 (FIG. 6) moves Key_B from location 138 identified by Key_A index_1 172A and Key_B index_1 174A to an unused location identified by one of the indices for Key_B 174B-D. Key_A is inserted in location 138 identified by Key_A index 1 172A and Key_B index_1 174A.
At step 818, the forward entry insert logic 600 (FIG. 6 ) determines from Key_D stored in location 156 identified by Key_A index_3 172C and Key_D index_3 178D, the other indices for Key_D 806A-B, 806D, in which Key_D may be stored. Having determined the other indices for Key_D processing continues with step 820.
At step 820, the forward entry insert logic 600 (FIG. 6) examines the keys stored at the locations identified by the other indices for Key_D 806A-B, 806D. As shown in FIG. 1B, all locations 142,150,170 identified by Key_D indices 806A-B, 806D are unused. If any of the locations 142, 150, 170 identified by the indices for Key_D 806A-B, 806D are unused as shown in FIG. 8, processing continues with step 822. If the forward entry insert logic 600 (FIG. 6) finds none of the locations 142, 150, 170 identified by the indices for Key_D 806A-B, 806D is unused, processing continues with step 824.
At step 822, the forward entry insert logic 600 (FIG. 6) moves Key_D from location 156 identified by Key_A index_3 172C to one of the unused locations 142,150,170 identified by Key_D indices 806A-B, 806D. Key_A is inserted in location 156 identified by Key_D index 3 178C.
At step 824, the forward entry insert logic 600 (FIG. 6 ) determines from Key_E stored in location 164 identified by Key_A index_4 172D and Key_E index_4 180D, the other indices for Key_E 180A-C, 180D, in which Key_E may be stored. Having determined the other indices associated with Key_E processing continues with step 826.
At step 826, the forward entry insert logic 600 (FIG. 6) examines the keys stored at the locations identified by the other indices for Key_E 180A-C. As shown in FIG. 1B, locations 144, 152,162 identified by indices for Key_E 180A-C are unused. If any of the locations 144, 152, 162 identified by the indices for Key_E 180A-C are unused as shown in FIG. 1B, processing continues with step 828. If the forward entry insert logic 600 (FIG. 6) finds none of the locations 144, 152, 168 identified by the indices for Key_E 180A-C is unused, processing continues with step 830.
At step 828, the forward entry insert logic 600 (FIG. 6) moves Key_E from location 164 identified by Key_A index_4 172D and Key_E index_4 180D to one of the locations 144, 152, 162 identified by the other indices for Key_E 180A-C. Preferably, Key_E is inserted in first empty location detected, that is, location 144 if the indices for Key_E 180A-C are being searched in the order A-C. Key_A is inserted in location 164 identified by Key_A index_4 172D.
At step 830, the index selection logic 600 (FIG. 6) continues to search for an unused location by examining the forwarding entries stored at other locations shared by the Key_B, Key_C, Key_D and Key_E forwarding entries by examining all the forwarding entries associated with Key_F, Key_G, Key_H and Key_I until a forwarding entry at one of the Key_A indices 172A-D is emptied and Key_A is inserted.
In general, the locations identified by the indices for a key are searched in a predetermined order for example, in A-D order. The key is inserted in the first empty location found. Thus, the entry is inserted at the location identified by index_1 208A, followed by the location identified by index_2 208B, index_3 208C and index_4 208D.
Reordering the forwarding entries in the hash tables provides efficient utilization of the hash tables and increases the probability that a forwarding entry can be inserted in the hash tables when the hash tables are almost fill.
While this invention has been particularly shown and described with references to preferred embodiments thereof, it will be understood by those skilled in the art that various changes in form and details may be made therein without departing from the scope of the invention encompassed by the appended claims.

Claims (15)

What is claimed is:
1. A network switch comprising:
a plurality of hash tables, each hash table including a plurality of locations, each location capable of storing a forwarding entry accessible by an index;
hash function logic which concurrently computes separate indices for the hash tables from a key dependent on a destination address; and
forward entry insert logic which, upon detecting all locations in the hash tables identified by the computed indices are used recursively relocates forwarding entries stored in the hash tables so as to provide a location identified by one of the computed indices in which to store the forwarding entry.
2. The network switch as claimed in claim 1 further comprising:
key match logic which searches locations identified by the computed indices for the key stored in one of the forwarding entries and upon finding the matching key provides a forward vector stored at the location in which the key is stored.
3. The network switch as claimed in claim 1 wherein the hash function logic computes an index by generating a CRC for the key and mapping a portion of the CRC as the index.
4. The network switch as claimed in claim 1 wherein the number of hash tables is four.
5. The network switch of claim 1 wherein the forward entry insert logic upon detecting one of the locations is unused, inserts the forward entry in the unused location identified by the computed indices.
6. A network switch comprising:
a plurality of hash tables, each hash table including a plurality of locations, each location capable of storing one forwarding entry accessible by an index;
means for concurrently computing separate indices for the hash tables from a key dependent on a destination address; and
means for inserting upon detecting all locations in the hash tables identified by the computed indices are used by recursively relocating forwarding entries stored in the hash tables to provide a location identified by one of the computed indices in which to store the forwarding entry.
7. The network switch as claimed in claim 6 further comprising:
means for searching locations identified by the computed indices for the key stored in one of the forwarding entries stored in the locations and upon finding the key providing the index identifying the location in which the key is stored.
8. The network switch as claimed in claim 6 wherein the means for concurrently computing computes an index by generating a CRC for the key and mapping a portion of the CRC as the index.
9. The network switch as claimed in claim 6 wherein the number of hash tables is four.
10. The network switch of claim 6 wherein the means for inserting upon detecting one of the locations is unused, inserts the forward entry in the unused location identified by the computed indices.
11. A method for storing forwarding entries in a network switch comprising:
providing a plurality of hash tables, each hash table including a plurality of locations, each location capable of storing a forwarding entry accessible by an index;
concurrently computing separate indices for the hash tables dependent on a destination address; and
inserting a forwarding entry in one of the locations identified by a computed index by recursively relocating forwarding entries stored in the hash tables so as to provide a location identified by one of the computed indices in which to store the forwarding entry, upon detecting all the locations identified by the computed index are used.
12. The method as claimed in claim 11 further comprising:
searching locations identified by the computed indices for a key stored in one of the forwarding entries stored in one of the locations; and
providing a forward vector stored at the location in which the key is stored, upon finding the key.
13. The method as claimed in claim 11 wherein computing further comprises:
generating a CRC for a key; and
mapping a portion of the CRC as the index.
14. The method as claimed in claim 11 wherein the number of hash tables is four.
15. The method of claim 11 wherein upon detecting one of the locations is unused, inserting the forwarding entry in the unused location identified by the computed indices.
US09/409,184 1999-09-30 1999-09-30 Method and apparatus for a four-way hash table Expired - Lifetime US6775281B1 (en)

Priority Applications (9)

Application Number Priority Date Filing Date Title
US09/409,184 US6775281B1 (en) 1999-09-30 1999-09-30 Method and apparatus for a four-way hash table
CNB008137080A CN1179523C (en) 1999-09-30 2000-09-18 Method and apparatus for four-way hash table
JP2001527500A JP4482259B2 (en) 1999-09-30 2000-09-18 Method and apparatus for a 4-way hash table
AU72644/00A AU7264400A (en) 1999-09-30 2000-09-18 Method and apparatus for a four-way hash table
PCT/CA2000/001061 WO2001024440A2 (en) 1999-09-30 2000-09-18 Method and apparatus for a four-way hash table
GB0207003A GB2370187B (en) 1999-09-30 2000-09-18 Method and apparatus for a four-way hash table
CA002385331A CA2385331C (en) 1999-09-30 2000-09-18 Method and apparatus for a four-way hash table
US10/187,472 US6862287B2 (en) 1999-09-30 2002-06-28 Method and apparatus for a four-way hash table
US11/069,635 US7990958B2 (en) 1999-09-30 2005-02-28 Method and apparatus for a four-way hash table

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US09/409,184 US6775281B1 (en) 1999-09-30 1999-09-30 Method and apparatus for a four-way hash table

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US10/187,472 Continuation-In-Part US6862287B2 (en) 1999-09-30 2002-06-28 Method and apparatus for a four-way hash table

Publications (1)

Publication Number Publication Date
US6775281B1 true US6775281B1 (en) 2004-08-10

Family

ID=23619397

Family Applications (3)

Application Number Title Priority Date Filing Date
US09/409,184 Expired - Lifetime US6775281B1 (en) 1999-09-30 1999-09-30 Method and apparatus for a four-way hash table
US10/187,472 Expired - Lifetime US6862287B2 (en) 1999-09-30 2002-06-28 Method and apparatus for a four-way hash table
US11/069,635 Expired - Fee Related US7990958B2 (en) 1999-09-30 2005-02-28 Method and apparatus for a four-way hash table

Family Applications After (2)

Application Number Title Priority Date Filing Date
US10/187,472 Expired - Lifetime US6862287B2 (en) 1999-09-30 2002-06-28 Method and apparatus for a four-way hash table
US11/069,635 Expired - Fee Related US7990958B2 (en) 1999-09-30 2005-02-28 Method and apparatus for a four-way hash table

Country Status (7)

Country Link
US (3) US6775281B1 (en)
JP (1) JP4482259B2 (en)
CN (1) CN1179523C (en)
AU (1) AU7264400A (en)
CA (1) CA2385331C (en)
GB (1) GB2370187B (en)
WO (1) WO2001024440A2 (en)

Cited By (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020004858A1 (en) * 2000-07-07 2002-01-10 Carr Jeffrey D. System and method for the concealment of device input parameters
US20020169937A1 (en) * 2001-05-10 2002-11-14 Koichi Kagawa Table management technique
US20030081787A1 (en) * 2001-10-31 2003-05-01 Mahesh Kallahalla System for enabling lazy-revocation through recursive key generation
US20030210786A1 (en) * 2002-05-08 2003-11-13 Carr Jeffrey Douglas System and method for securely controlling access to device functions
US20030218978A1 (en) * 2002-05-24 2003-11-27 Mosaid Technologies, Inc. Method and apparatus for reordering entries in a multi probe lookup
US20040054655A1 (en) * 2000-08-31 2004-03-18 Mosaid Technologies, Inc. Method and apparatus for searching a filtering database with one search operation
US20040205056A1 (en) * 2003-01-27 2004-10-14 International Business Machines Corporation Fixed Length Data Search Device, Method for Searching Fixed Length Data, Computer Program, and Computer Readable Recording Medium
US20050108617A1 (en) * 2003-11-13 2005-05-19 Lappin James B.Jr. Method and apparatus for managing network traffic using cyclical redundancy check hash functions
US20050147113A1 (en) * 1999-09-30 2005-07-07 Mosaid Technologies, Inc. Method and apparatus for a four-way hash table
US7069268B1 (en) * 2003-01-13 2006-06-27 Cisco Technology, Inc. System and method for identifying data using parallel hashing
US20060265370A1 (en) * 2005-05-17 2006-11-23 Cisco Technology, Inc. (A California Corporation) Method and apparatus for reducing overflow of hash table entries
US7274694B1 (en) * 2003-01-09 2007-09-25 Cisco Technology, Inc. Defining link aggregation across a stack
US20090010167A1 (en) * 2006-04-12 2009-01-08 Huawei Technologies Co., Ltd. Method And System For Controlling Data Flow
US20090024758A1 (en) * 2007-07-17 2009-01-22 Eric Michel Levy-Abegnoli Detecting neighbor discovery denial of service attacks against a router
US7586940B1 (en) * 2001-07-24 2009-09-08 Cisco Technology, Inc. Forwarding packets in a gateway performing network address translation (NAT)
CN102682116A (en) * 2012-05-14 2012-09-19 中兴通讯股份有限公司 Method and device for processing table items based on Hash table
US8800059B2 (en) 1999-03-19 2014-08-05 Broadcom Corporation System and method for processing and protecting content
US8886913B2 (en) 2011-05-18 2014-11-11 Hitachi, Ltd. Apparatus and method for identifier management
US9397924B2 (en) 2008-12-02 2016-07-19 At&T Intellectual Property I, L.P. Method for applying macro-controls onto IP networks using intelligent route indexing
US10305801B2 (en) * 2014-04-21 2019-05-28 Hewlett Packard Enterprise Development Lp Forwarding data packets

Families Citing this family (48)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7099325B1 (en) * 2001-05-10 2006-08-29 Advanced Micro Devices, Inc. Alternately accessed parallel lookup tables for locating information in a packet switched network
US6990102B1 (en) 2001-05-10 2006-01-24 Advanced Micro Devices, Inc. Parallel lookup tables for locating information in a packet switched network
US7058642B2 (en) * 2002-03-20 2006-06-06 Intel Corporation Method and data structure for a low memory overhead database
US7408930B2 (en) * 2003-02-07 2008-08-05 Fujitsu Limited Address learning to enable high speed routing table lookups
CN100378725C (en) * 2003-09-04 2008-04-02 摩托罗拉公司 Conversion table and dictionary for text speech conversion treatment
US7474653B2 (en) * 2003-12-05 2009-01-06 Hewlett-Packard Development Company, L.P. Decision cache using multi-key lookup
US8085772B2 (en) * 2003-12-31 2011-12-27 Intel Corporation Packet forwarding
US7359381B2 (en) * 2004-01-30 2008-04-15 Hewlett-Packard Development Company, L.P. Parallel hardware arrangement for correlating an external transport address pair with a local endpoint association
US7634655B2 (en) * 2004-02-13 2009-12-15 Microsoft Corporation Efficient hash table protection for data transport protocols
US7424016B2 (en) * 2005-04-05 2008-09-09 Cisco Technology, Inc. Distributing a stream of packets across available output paths within a network
US7822033B1 (en) * 2005-12-30 2010-10-26 Extreme Networks, Inc. MAC address detection device for virtual routers
US7894451B2 (en) 2005-12-30 2011-02-22 Extreme Networks, Inc. Method of providing virtual router functionality
TWI324471B (en) * 2006-06-01 2010-05-01 Via Tech Inc Mac address management method
US8345685B2 (en) * 2006-06-09 2013-01-01 Ethernety Networks Ltd Method and device for processing data packets
CN100452043C (en) * 2006-09-06 2009-01-14 南京中兴软创科技有限责任公司 A storage and search method of multiple index hash table
DE102007018403B4 (en) * 2007-04-17 2009-06-25 Vita-X Ag Computer system and method for storing data
US20090025351A1 (en) * 2007-07-26 2009-01-29 Harry T. Faeldan Tri-wheeled modular housing telescopic grass trimmer
US8463610B1 (en) * 2008-01-18 2013-06-11 Patrick J. Bourke Hardware-implemented scalable modular engine for low-power speech recognition
US7852486B2 (en) * 2008-02-07 2010-12-14 Board Of Regents, The University Of Texas System Wavelength and intensity monitoring of optical cavity
CN101692651B (en) * 2009-09-27 2014-12-31 中兴通讯股份有限公司 Method and device for Hash lookup table
US20110249676A1 (en) * 2010-04-09 2011-10-13 Bijendra Singh Method and System for Forwarding and Switching Traffic in a Network Element
US8880554B2 (en) * 2010-12-03 2014-11-04 Futurewei Technologies, Inc. Method and apparatus for high performance, updatable, and deterministic hash table for network equipment
US8605732B2 (en) 2011-02-15 2013-12-10 Extreme Networks, Inc. Method of providing virtual router functionality
EP2515499B1 (en) * 2011-04-21 2015-10-28 Wibu-Systems AG Method for generating a cryptographic key for a secure digital data object on the basis of the current components of a computer
US9344366B2 (en) 2011-08-02 2016-05-17 Cavium, Inc. System and method for rule matching in a processor
US8775776B2 (en) 2012-01-18 2014-07-08 International Business Machines Corporation Hash table using hash table banks
US8787373B2 (en) 2012-01-19 2014-07-22 International Business Machines Corporation Multicast miss notification for a distributed network switch
US8854973B2 (en) 2012-08-29 2014-10-07 International Business Machines Corporation Sliced routing table management with replication
US9124527B2 (en) * 2012-08-29 2015-09-01 International Business Machines Corporation Sliced routing table management
US9215171B2 (en) 2012-08-29 2015-12-15 International Business Machines Corporation Hashing-based routing table management
US8792494B2 (en) 2012-09-14 2014-07-29 International Business Machines Corporation Facilitating insertion of device MAC addresses into a forwarding database
CN103874047B (en) * 2012-12-17 2017-08-04 华为终端有限公司 Information on services finds method and apparatus
US8854972B1 (en) * 2013-01-25 2014-10-07 Palo Alto Networks, Inc. Security device implementing flow lookup scheme for improved performance
US10474652B2 (en) * 2013-03-14 2019-11-12 Inpixon Optimizing wide data-type storage and analysis of data in a column store database
US9276846B2 (en) * 2013-03-15 2016-03-01 Cavium, Inc. Packet extraction optimization in a network processor
US9154934B2 (en) 2013-03-28 2015-10-06 Futurewei Technologies, Inc. System and method for pre-association discovery
CN104579948A (en) * 2013-10-29 2015-04-29 国家计算机网络与信息安全管理中心 Method and device for fragmenting message
US9363178B2 (en) * 2013-12-18 2016-06-07 Telefonaktiebolaget L M Ericsson (Publ) Method, apparatus, and system for supporting flexible lookup keys in software-defined networks
US10419267B2 (en) * 2014-01-22 2019-09-17 Lenovo Enterprise Solutions (Singapore) Pte. Ltd. Network control software notification with advance learning
US9935831B1 (en) * 2014-06-03 2018-04-03 Big Switch Networks, Inc. Systems and methods for controlling network switches using a switch modeling interface at a controller
JP6520259B2 (en) 2015-03-18 2019-05-29 富士通株式会社 Communication apparatus and communication control method
US9898069B1 (en) 2016-03-31 2018-02-20 Amazon Technologies, Inc. Power reduction methods for variable sized tables
US10200312B1 (en) 2016-05-06 2019-02-05 Amazon Technologies, Inc. Power management of routing tables using horizontal scaling
US10003555B1 (en) 2016-05-06 2018-06-19 Amazon Technologies, Inc. Power management of routing tables using vertical scaling
US11539622B2 (en) 2020-05-04 2022-12-27 Mellanox Technologies, Ltd. Dynamically-optimized hash-based packet classifier
US11782895B2 (en) * 2020-09-07 2023-10-10 Mellanox Technologies, Ltd. Cuckoo hashing including accessing hash tables using affinity table
US11917042B2 (en) 2021-08-15 2024-02-27 Mellanox Technologies, Ltd. Optimizing header-based action selection
US11929837B2 (en) 2022-02-23 2024-03-12 Mellanox Technologies, Ltd. Rule compilation schemes for fast packet classification

Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0365337A2 (en) 1988-10-20 1990-04-25 Hewlett-Packard Company Method for accessing data in a table and its application to the routing of data between remote stations
US5032987A (en) 1988-08-04 1991-07-16 Digital Equipment Corporation System with a plurality of hash tables each using different adaptive hashing functions
US5129074A (en) * 1988-09-22 1992-07-07 Hitachi Vlsi Engineering Corporation Data string storage device and method of storing and retrieving data strings
US5371499A (en) * 1992-02-28 1994-12-06 Intersecting Concepts, Inc. Data compression using hashing
US5473607A (en) * 1993-08-09 1995-12-05 Grand Junction Networks, Inc. Packet filtering for data networks
US5802054A (en) 1996-08-15 1998-09-01 3Com Corporation Atomic network switch with integrated circuit switch nodes
US5914938A (en) 1996-11-19 1999-06-22 Bay Networks, Inc. MAC address table search unit
US5949786A (en) * 1996-08-15 1999-09-07 3Com Corporation Stochastic circuit identification in a multi-protocol network switch
US6034958A (en) * 1997-07-11 2000-03-07 Telefonaktiebolaget Lm Ericsson VP/VC lookup function
US6091725A (en) * 1995-12-29 2000-07-18 Cisco Systems, Inc. Method for traffic management, traffic prioritization, access control, and packet forwarding in a datagram computer network

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6223172B1 (en) * 1997-10-31 2001-04-24 Nortel Networks Limited Address routing using address-sensitive mask decimation scheme
US6430184B1 (en) * 1998-04-10 2002-08-06 Top Layer Networks, Inc. System and process for GHIH-speed pattern matching for application-level switching of data packets
US6775281B1 (en) * 1999-09-30 2004-08-10 Mosaid Technologies, Inc. Method and apparatus for a four-way hash table
US6690667B1 (en) * 1999-11-30 2004-02-10 Intel Corporation Switch with adaptive address lookup hashing scheme
US6865577B1 (en) * 2000-11-06 2005-03-08 At&T Corp. Method and system for efficiently retrieving information from a database

Patent Citations (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5032987A (en) 1988-08-04 1991-07-16 Digital Equipment Corporation System with a plurality of hash tables each using different adaptive hashing functions
US5129074A (en) * 1988-09-22 1992-07-07 Hitachi Vlsi Engineering Corporation Data string storage device and method of storing and retrieving data strings
EP0365337A2 (en) 1988-10-20 1990-04-25 Hewlett-Packard Company Method for accessing data in a table and its application to the routing of data between remote stations
US5371499A (en) * 1992-02-28 1994-12-06 Intersecting Concepts, Inc. Data compression using hashing
US5473607A (en) * 1993-08-09 1995-12-05 Grand Junction Networks, Inc. Packet filtering for data networks
US6091725A (en) * 1995-12-29 2000-07-18 Cisco Systems, Inc. Method for traffic management, traffic prioritization, access control, and packet forwarding in a datagram computer network
US5802054A (en) 1996-08-15 1998-09-01 3Com Corporation Atomic network switch with integrated circuit switch nodes
US5949786A (en) * 1996-08-15 1999-09-07 3Com Corporation Stochastic circuit identification in a multi-protocol network switch
US5914938A (en) 1996-11-19 1999-06-22 Bay Networks, Inc. MAC address table search unit
US6034958A (en) * 1997-07-11 2000-03-07 Telefonaktiebolaget Lm Ericsson VP/VC lookup function

Cited By (42)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8800059B2 (en) 1999-03-19 2014-08-05 Broadcom Corporation System and method for processing and protecting content
US7990958B2 (en) * 1999-09-30 2011-08-02 SAtech Group, A.B. Limited Liability Company Method and apparatus for a four-way hash table
US20050147113A1 (en) * 1999-09-30 2005-07-07 Mosaid Technologies, Inc. Method and apparatus for a four-way hash table
US8045716B2 (en) 2000-07-07 2011-10-25 Broadcom Corporation System and method for the concealment of device input parameters
US20020004858A1 (en) * 2000-07-07 2002-01-10 Carr Jeffrey D. System and method for the concealment of device input parameters
US20090254744A1 (en) * 2000-07-07 2009-10-08 Broadcom Corporation System and method for the concealment of device input parameters
US7548622B2 (en) * 2000-07-07 2009-06-16 Broadcom Corporation System and method for the concealment of device input parameters
US7302432B2 (en) * 2000-08-31 2007-11-27 Mosaid, Technologies, Inc. Method and apparatus for searching a filtering database with one search operation
US20040054655A1 (en) * 2000-08-31 2004-03-18 Mosaid Technologies, Inc. Method and apparatus for searching a filtering database with one search operation
US20020169937A1 (en) * 2001-05-10 2002-11-14 Koichi Kagawa Table management technique
US6910118B2 (en) * 2001-05-10 2005-06-21 Allied Telesis Holdings K.K. Table management technique
US7986703B2 (en) 2001-07-24 2011-07-26 Cisco Technology, Inc. Forwarding packets in a gateway performing network address translation (NAT)
US7586940B1 (en) * 2001-07-24 2009-09-08 Cisco Technology, Inc. Forwarding packets in a gateway performing network address translation (NAT)
US20030081787A1 (en) * 2001-10-31 2003-05-01 Mahesh Kallahalla System for enabling lazy-revocation through recursive key generation
US7203317B2 (en) * 2001-10-31 2007-04-10 Hewlett-Packard Development Company, L.P. System for enabling lazy-revocation through recursive key generation
US7810152B2 (en) 2002-05-08 2010-10-05 Broadcom Corporation System and method for securely controlling access to device functions
US20030210786A1 (en) * 2002-05-08 2003-11-13 Carr Jeffrey Douglas System and method for securely controlling access to device functions
US8401013B2 (en) 2002-05-24 2013-03-19 Mosaid Technologies Incorporated Congestion management in a network
US7277426B2 (en) 2002-05-24 2007-10-02 Mosaid Technologies, Inc. Method and apparatus for reordering entries in a multi probe lookup
US20030218978A1 (en) * 2002-05-24 2003-11-27 Mosaid Technologies, Inc. Method and apparatus for reordering entries in a multi probe lookup
US20110019546A1 (en) * 2002-05-24 2011-01-27 Brown David A Congestion management in a network
US8855121B2 (en) 2002-05-24 2014-10-07 Conversant Intellectual Property Management Inc. Congestion management in a network
US7830877B2 (en) 2002-05-24 2010-11-09 Mosaid Technologies Inc. Congestion level management in a network device
US7274694B1 (en) * 2003-01-09 2007-09-25 Cisco Technology, Inc. Defining link aggregation across a stack
US7069268B1 (en) * 2003-01-13 2006-06-27 Cisco Technology, Inc. System and method for identifying data using parallel hashing
US7469243B2 (en) * 2003-01-27 2008-12-23 International Business Machines Corporation Method and device for searching fixed length data
US20040205056A1 (en) * 2003-01-27 2004-10-14 International Business Machines Corporation Fixed Length Data Search Device, Method for Searching Fixed Length Data, Computer Program, and Computer Readable Recording Medium
WO2005048006A3 (en) * 2003-11-13 2006-08-03 Nokia Inc Method and apparatus for managing network traffic using cyclical redundancy check hash functions
WO2005048006A2 (en) * 2003-11-13 2005-05-26 Nokia Inc. Method and apparatus for managing network traffic using cyclical redundancy check hash functions
US7047453B2 (en) * 2003-11-13 2006-05-16 Nokia, Inc. Method and apparatus for managing network traffic using cyclical redundancy check hash functions
US20050108617A1 (en) * 2003-11-13 2005-05-19 Lappin James B.Jr. Method and apparatus for managing network traffic using cyclical redundancy check hash functions
US20060265370A1 (en) * 2005-05-17 2006-11-23 Cisco Technology, Inc. (A California Corporation) Method and apparatus for reducing overflow of hash table entries
US7680806B2 (en) * 2005-05-17 2010-03-16 Cisco Technology, Inc. Reducing overflow of hash table entries
US20090010167A1 (en) * 2006-04-12 2009-01-08 Huawei Technologies Co., Ltd. Method And System For Controlling Data Flow
US7944837B2 (en) * 2006-04-12 2011-05-17 Huawei Technologies Co., Ltd. Method and system for controlling data flow
US20090024758A1 (en) * 2007-07-17 2009-01-22 Eric Michel Levy-Abegnoli Detecting neighbor discovery denial of service attacks against a router
US8312541B2 (en) * 2007-07-17 2012-11-13 Cisco Technology, Inc. Detecting neighbor discovery denial of service attacks against a router
US9397924B2 (en) 2008-12-02 2016-07-19 At&T Intellectual Property I, L.P. Method for applying macro-controls onto IP networks using intelligent route indexing
US8886913B2 (en) 2011-05-18 2014-11-11 Hitachi, Ltd. Apparatus and method for identifier management
CN102682116A (en) * 2012-05-14 2012-09-19 中兴通讯股份有限公司 Method and device for processing table items based on Hash table
CN102682116B (en) * 2012-05-14 2014-06-11 中兴通讯股份有限公司 Method and device for processing table items based on Hash table
US10305801B2 (en) * 2014-04-21 2019-05-28 Hewlett Packard Enterprise Development Lp Forwarding data packets

Also Published As

Publication number Publication date
WO2001024440A2 (en) 2001-04-05
AU7264400A (en) 2001-04-30
GB2370187B (en) 2003-12-10
GB2370187A (en) 2002-06-19
US20050147113A1 (en) 2005-07-07
CN1179523C (en) 2004-12-08
US20030026259A1 (en) 2003-02-06
CA2385331C (en) 2008-08-12
US6862287B2 (en) 2005-03-01
WO2001024440A3 (en) 2001-11-08
CN1377543A (en) 2002-10-30
CA2385331A1 (en) 2001-04-05
US7990958B2 (en) 2011-08-02
JP2003510963A (en) 2003-03-18
JP4482259B2 (en) 2010-06-16
GB0207003D0 (en) 2002-05-08

Similar Documents

Publication Publication Date Title
US6775281B1 (en) Method and apparatus for a four-way hash table
US8855121B2 (en) Congestion management in a network
US6606681B1 (en) Optimized content addressable memory (CAM)
EP2314027B1 (en) Switching table in an ethernet bridge
CA2274962C (en) High speed variable length best match look-up in a switching device
US5909440A (en) High speed variable length best match look-up in a switching device
US5920886A (en) Accelerated hierarchical address filtering and translation using binary and ternary CAMs
US6665297B1 (en) Network routing table
US6457058B1 (en) Network switch with hash table look up
US7827182B1 (en) Searching for a path to identify where to move entries among hash tables with storage for multiple entries per bucket during insert operations
US6956858B2 (en) Network routing table and packet routing method
US6230231B1 (en) Hash equation for MAC addresses that supports cache entry tagging and virtual address tables
US8086571B2 (en) Table lookup mechanism for address resolution
US8397025B2 (en) Apparatus and method for determining a cache line in an N-way set associative cache using hash functions
CN111937360B (en) Longest prefix matching
US6804230B1 (en) Communication device with forwarding database having a trie search facility
US7403526B1 (en) Partitioning and filtering a search space of particular use for determining a longest prefix match thereon
US6201755B1 (en) Method and system for storing and retrieving information in a communications node
US7299317B1 (en) Assigning prefixes to associative memory classes based on a value of a last bit of each prefix and their use including but not limited to locating a prefix and for maintaining a Patricia tree data structure
US20040210588A1 (en) Methods and apparatus for address lookup
CN114911728A (en) Data searching method and device and integrated circuit

Legal Events

Date Code Title Description
AS Assignment

Owner name: MOSAID TECHNOLOGIES, INC., CANADA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:BROWN, DAVID A.;REEL/FRAME:010320/0448

Effective date: 19990930

STCF Information on status: patent grant

Free format text: PATENTED CASE

FEPP Fee payment procedure

Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Free format text: PAYER NUMBER DE-ASSIGNED (ORIGINAL EVENT CODE: RMPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

FPAY Fee payment

Year of fee payment: 4

AS Assignment

Owner name: SATECH GROUP A.B. LIMITED LIABILITY COMPANY, DELAW

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MOSAID TECHNOLOGIES INCORPORATED;REEL/FRAME:021040/0648

Effective date: 20080430

Owner name: SATECH GROUP A.B. LIMITED LIABILITY COMPANY,DELAWA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:MOSAID TECHNOLOGIES INCORPORATED;REEL/FRAME:021040/0648

Effective date: 20080430

FEPP Fee payment procedure

Free format text: PAYER NUMBER DE-ASSIGNED (ORIGINAL EVENT CODE: RMPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

FPAY Fee payment

Year of fee payment: 8

FPAY Fee payment

Year of fee payment: 12

AS Assignment

Owner name: CHARTOLEAUX KG LIMITED LIABILITY COMPANY, DELAWARE

Free format text: MERGER;ASSIGNOR:SATECH GROUP A.B. LIMITED LIABILITY COMPANY;REEL/FRAME:037613/0632

Effective date: 20150812