A method and apparatus for deep packet processing
8 claims: 4 independent, 4 dependent
- 1A method for parsing an input word chain in a data packet and/or for searching the value of an input word chain pattern from a data packet, the parsing operation being defined by a programmable state machine implemented with a state table in which each entry contains a current state and the next state, said method comprising, - reducing the number of entries of the state table by including in each entry a test vector for testing next state and ordering said entries in a resulting transition rule table;- indexing the transition rule table using a hash index extracted from state and input chain word according to the BaRT compression scheme (compressed index), the indexed transition rule table (compressed table) being split into blocks in which each entry has the same hash index;- arbitrarily splitting the indexed transition rule table into at least one table (600, 610) formed of the indexed transition rule table entries corresponding to at least one state;- extending each entry in the at least one split indexed transition rule table with an index mask used to compute next state hash index value and a base pointer field which may contain the address (SP1, SP2) of an indexed transition rule table;said parsing and/or searching method further comprising, - initializing (1100) the current state, the current index mask and the current base pointer with values that correspond to the first indexed transition rule table involved in the parse and/or search operation;- selecting (1110) the first input word as the current input word to be analyzed;- computing (1120) the hash index value to select the entry-block in the indexed transition rule table pointed to by the current base pointer;- searching a matching entry (1130) within the selected entry-block, by comparing the test vector in each entry against the current state and current input word and testing if a matching entry found;- if (1140) a match is not found the method ends;- if (1140) a match is found testing if (1150) the entry read is final and - if the entry read is final and if the method is for parsing, a end-state (S3, S5) of the state machine has been found as the result of parsing and the method ends;- if the entry read is final and if the method is for searching, a value ( R ) has been found and the method ends;- if (1150) the entry read is not final (1150), - initializing current index mask and the current base pointer from the matching entry and selecting next word as the current input word to be analyzed, - repeating extracting searching and testing steps until a final entry is found and the method ends, a end-state and/or a value being found if a match has been found.
Independent claims4
79 paragraphs, as filed
<u>Field of the Invention</u>
0001The present invention generally relates to telecommunication packet processing and particularly relates to a method for flexible parsing and searching of information in the packet including the packet payload.
<u>Background of the Invention</u>
0002Packet classification is a function implemented in networking equipment such as routers and switches, that extracts information from an incoming packet (this is called parsing) and uses this to search a data base with rules. If a matching rule is found, then the processing of that packet will be based on data associated with that rule. The parsed information, the rules, and the way the rules are searched are dependent on the application.
0003For example, with an IP forwarding application, the packet classification consists of parsing the IP destination address from the IP header, which is then used to search a routing table according to a longest-matching prefix search. The routing table entry that results from this search provides the address of the next hop to which the packet will be forwarded. Another example is a firewall application, in which several fields (e.g., IP source and destination addresses, TCP port numbers, PROT byte) are parsed from the packet header, and are then used to search the highest-priority matching rule from a set of firewall rules. Data associated with this firewall rule will then indicate whether the packet will be permitted or denied access through the firewall.
0004Conventional applications, such as the two described examples, have in common that the information is parsed from well-known fields at fixed locations within the packet headers (up to layer 4), which have fixed and relatively small sizes (typically up to 32 bits). Furthermore, the classification can be performed in two distinct phases: First the information is parsed from the packet header. Next, the parsed information is used to search a data base.
0005Web-server load balancing, intrusion detection and virus scanning are examples of important emerging applications that require more advanced packet classification capabilities, than as required by "conventional" applications as described above. These more advanced capabilities relate specifically to the following aspects: <ol id="ol0001" ol-style=""><li>1) Besides information from the packet header, also information from the packet payload needs to be inspected.</li><li>2) The location and the amount of information that has to be inspected within the payload is not always known in advance and can for several applications only be determined during the classification operation. Some applications require the use of pattern-matching and regular-expression-based searches for locating information within the payload.</li><li>3) The amount of information involved in the packet classification can consist of up to multiple hundreds of bytes.</li></ol>
0006Examples of information that has to be inspected within the payload for a web-server load balancer application, are URLs, cookies, and SSL identifiers. Another example is a set of known character strings related to viruses that are checked for by a virus=scan application.
0007From the above it can be understood that the packet classification now becomes more complex in the following two respects: <ol id="ol0002" compact="compact" ol-style=""><li>1) The parsing operation becomes more difficult for applications in which the location and amount of information that needs to be parsed is not known in advance, and for applications for which a large amount of information needs to be parsed.</li><li>2) For certain applications the two distinct phases of parsing and searching cannot be used, but instead it is necessary to repeat parsing and searching in alternating steps or combine the two steps (e.g., pattern-matches).</li></ol>
0008In addition to the functional requirements outlined above, packet classification must be performed on the fly on incoming packets (this is called wire-speed packet classification) for typical link speeds between 1Gb/sec and 10Gb/sec today. A second requirement is that the data structures used for the packet classification should be organized such that a minimum amount of memory is needed for storing them, in order to minize the costs. A third requirement is the support for fast updates of the rule set, as required by the dynamic nature of several new applications (e.g., web-server load balancing).
0009The standard solution for realizing a flexible parse function suitable for advanced packet classification as described above, is a programmable state machine. The concept and disadvantages of a prior-art implementation of a programmable state machine will now be illustrated using <figref idref="f0001">Fig. 1</figref> and <figref idref="f0002">Fig. 2</figref>
0010<figref idref="f0001">Fig.1</figref> shows a state diagram for parsing two patterns "121h" (h means hexadecimal) and "ABh" from an input stream of 4-bit characters. There are 6 possible states (S0, S1, S2, S3, S4, S5) represented by circles, the arrows represent the state transitions. Nodes S3 and S5 are end states.
0011<figref idref="f0002">Fig. 2</figref> shows a prior-art implementation of a programmable state machine for the state diagram of <figref idref="f0001">Fig. 1</figref>, which requires one memory access per state transition. In this example the states are assigned the following 3-bit state vectors: <tables id="tabl0001" num="0001"><table frame="none"><tgroup cols="3" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="18mm" /><colspec colnum="2" colname="col2" colwidth="18mm" /><colspec colnum="3" colname="col3" colwidth="18mm" /><tbody><row><entry>S0 - 000b</entry><entry>S2 - 010b</entry><entry>S4 - 100b</entry></row><row><entry>S1 - 001b</entry><entry>S3 - 011b</entry><entry>S5 - 101b</entry></row></tbody></tgroup></table></tables>
0012In <figref idref="f0002">Fig. 2</figref> the current state (3 bits) concatenated with the 4-bit input value is used as an offset (address) into a table containing the next state for each possible combination of a current state and input value, resulting in a total of 2<sup>(3+4)</sup> = 2<sup>7</sup> = 128 table entries. Disadvantages of this approach are (1) the inefficient use of storage (e.g., there are 128 table entries in <figref idref="f0002">Fig. 2</figref> of which many contain the same next state) and (2) the large number of table entries that have to be written while "programming" the table for the given state diagram, resulting in a long construction (update) time.
0013In the US patent of Solidum, <patcit id="pcit0001" dnum="US06167047A"><text>US06167047</text></patcit>, a programmable state machine is disclosed for packet classification. The Solidum patent approach requires at most one memory access per state transition, but requires less memory than the implementation concept shown in <figref idref="f0002">Fig. 2</figref>. A disadvantage of the Solidum approach is that it requires significantly more complex hardware: at least one processor, one program memory and one separate stack memory. This results in increased chip-area costs and increased power-consumption.
0014A prior-art solution for realizing a flexible search function suitable for advanced packet classification as described above, is a tree structure. One example is a Patricia tree as described in <nplcit id="ncit0001" npl-type="s"><text>D. R. Morrison original paper "Patricia - Practical Algorithm to Retrieve Information Coded in Alphanumeric", Journal of the ACM, Vol. 15, 1968</text></nplcit>.
0015A disadvantage of the prior-art is that no solutions exist that can support both efficient parsing and efficient searching. A programmable state machine cannot efficiently implement a search since the state space is typically too large, resulting in significant memory requirements and/or complex logic to determine the next state. On the other hand, a tree structure cannot implement parsing as efficiently as a programmable state machine, especially because the latter can more efficiently handle typical state transitions that are more complex than the branch functions which occur in a typical tree search. Therefore, implementing parsing using a tree structure, would require many nodes and therefore results in significant memory requirements.
0016Consequently, a disadvantage of the prior-art is that different hardware has to be used to implement the parsing and searching. A second disadvantage is that this makes it more difficult to realize a more advanced packet classification function, that supports the alternating use of parsing and searching or the combination of parsing and searching as described above.
<u>Summary of the Invention</u>
0017It is therefore an object of the present invention to provide a deep packet processing method and apparatus which could sustain high speed while performing parsing and searching operations.
0018It is another object of the invention to reduce storage requirements and hardware-implementation complexity.
0019These objects are reached by the use of the method for deep packet processing using the data structure of a programmable state machine according to claims 1 to 3. The data structure comprises state-transition rules of a programmable state machine for parsing. Storage requirements are reduced by use of an algorithm known as BaRT and by distributing states over multiple state space implemented using separate state-transition rule tables. The deep packet processing method of claim 1 to 3 takes advantage of the data structure and can be performed at wire-speed.
0020The same hardware, according to claim 4 and 5, can be used for parsing and searching operations of the deep packet processing method. Because of the reduced memory requirements, examples of hardware solutions embodying the invention can be implemented in on-chip memory according to claim 5. A computer program can advantageously implement examples of the present invention according to claim 6.
0021With the use of a compression technique already disclosed for a lookup scheme implementation, a preferred embodiment of the invention provides a powerful data structure allowing a combination of an efficient programmable state machine for parsing and an efficient tree based searching mechanism.
0022The same hardware can be used for parsing and searching when performing the deep packet processing method of the preferred embodiment.
<u>Brief Description of the Drawings</u>
0023Preferred embodiments of the present invention will now be described, by way of example only, with reference to the accompanying discussions, in which: <ul id="ul0001" list-style="none"><li><figref idref="f0001">FIG. 1</figref> illustrates a state diagram for parsing patterns from an input stream of 4-bit characters;</li><li><figref idref="f0002">FIG. 2</figref> shows a prior art programmable state machine implementation for the state diagram of <figref idref="f0001">Fig. 1</figref>;</li><li><figref idref="f0003">Fig. 3</figref> illustrates 6 transition rule entries according to a first preferred embodiment, which implement the state diagram of <figref idref="f0001">Fig. 1</figref>, and are stored in one register or one memory location;</li><li><figref idref="f0004">Fig. 4</figref> illustrates a BaRT-compressed state-transition rule table according to the first preferred embodiment, which implements the state diagram of <figref idref="f0001">Fig. 1</figref>, and is organized such that a maximum of N=4 transition rule entries are stored in each memory location;</li><li><figref idref="f0005">Fig. 5</figref> illustrates the fields within a transition rule entry according to a second preferred embodiment;</li><li><figref idref="f0006">Fig. 6</figref> illustrates two BaRT-compressed state-transition rule tables according to the second preferred embodiment, which implement the state diagram of <figref idref="f0001">Fig. 1</figref>, and are organized such that a maximum of N=4 transition rule entries are stored in each memory location;</li><li><figref idref="f0007">Fig. 7</figref> is the flow chart describing the creation of the data structure according to the second preferred embodiment;</li><li><figref idref="f0008">Fig. 8</figref> is the flow chart describing the creation of the compressed state-transition rule table which is one step of the creation of the data structure as described in <figref idref="f0007">Fig. 7</figref>;</li><li><figref idref="f0009">Fig. 9</figref> is the flow chart describing the calculation of an index mask for distributing transition rule entries over a minimum number of entry-blocks, which is one step of the creation of the compressed state-transition rule table as described in <figref idref="f0008">Fig. 8</figref>;</li><li><figref idref="f0010">Fig. 10</figref> illustrates a data structure consisting of three BaRT-compressed tables according to the second preferred embodiment, which implement a prefix-match search on three input characters, and are organized such that a maximum of N=2 entries are stored in each memory location.</li><li><figref idref="f0011">Fig. 11</figref> illustrates a flow chart for the process of searching and parsing according to the second preferred embodiment;</li><li><figref idref="f0012">Fig. 12</figref> illustrates a flow chart for deriving a prioritized list of state-transition rules according to the first and second preferred embodiment, each involving a ternary match condition on the current state and input value, for a given state diagram.</li></ul>
<u>Detailed Description of the preferred embodiment</u>
Programmable state machine:
0024In a preferred embodiment of the present invention, there is provided a method to perform deep packet processing. The method comprises the creation of a data structure which improves the programmable state machine of the prior art. In the data structure, state transitions are represented as a list of so called state-transition rules, each containing a ternary match condition for the combination of the current state and input value, and a next state. With ternary match conditions, the matching patterns comprise bits having three possible states 0, 1 or X, X being a wild-card symbol for the "don't care" condition.
0025If a state-transition rule contains a ternary match condition that matches a given current state and input, then this state-transition rule is said to be matching. If multiple state-transition rules can all match the same current state and input, then these state-transition rules are assigned different priorities.
0026For a given current state and input value, the next state is now determined by the highest-priority state-transition rule, matching the current state and input value.
0027An example of a list of state-transition rules for the state machine in <figref idref="f0001">Fig. 1</figref> is (with decreasing priorities): <tables id="tabl0002" num="0002"><table frame="bottom"><tgroup cols="7" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="19mm" /><colspec colnum="2" colname="col2" colwidth="13mm" /><colspec colnum="3" colname="col3" colwidth="13mm" /><colspec colnum="4" colname="col4" colwidth="23mm" /><colspec colnum="5" colname="col5" colwidth="9mm" /><colspec colnum="6" colname="col6" colwidth="12mm" /><colspec colnum="7" colname="col7" colwidth="16mm" /><thead><row><entry align="center" valign="top">transition</entry><entry valign="top">state</entry><entry valign="top">input</entry><entry valign="top">[ state input ]</entry><entry valign="top" /><entry valign="top">next</entry><entry valign="top">state</entry></row></thead><tbody><row><entry align="center">1</entry><entry>S2</entry><entry>1h</entry><entry>[ 010 0001b ]</entry><entry>-></entry><entry>S3</entry><entry>[ 011b ]</entry></row><row><entry align="center">2</entry><entry>*</entry><entry>1h</entry><entry>[ xxx 0001b ]</entry><entry>-></entry><entry>S1</entry><entry>[ 001b ]</entry></row><row><entry align="center">3</entry><entry>S1</entry><entry>2h</entry><entry>[ 001 0010b ]</entry><entry>-></entry><entry>S2</entry><entry>[ 010b ]</entry></row><row><entry align="center">4</entry><entry>S4</entry><entry>Bh</entry><entry>[ 100 1011b ]</entry><entry>-></entry><entry>S5</entry><entry>[ 101b ]</entry></row><row><entry align="center">5</entry><entry>*</entry><entry>Ah</entry><entry>[ xxx 1010b ]</entry><entry>-></entry><entry>S4</entry><entry>[ 100b ]</entry></row><row><entry align="center">6</entry><entry>*</entry><entry>*</entry><entry>[ xxx xxxxb ]</entry><entry>-></entry><entry>S0</entry><entry>[ 000b ]</entry></row></tbody></tgroup><tgroup cols="7" rowsep="0"><colspec colnum="1" colname="col1" colwidth="19mm" /><colspec colnum="2" colname="col2" colwidth="13mm" /><colspec colnum="3" colname="col3" colwidth="13mm" /><colspec colnum="4" colname="col4" colwidth="23mm" /><colspec colnum="5" colname="col5" colwidth="9mm" /><colspec colnum="6" colname="col6" colwidth="12mm" /><colspec colnum="7" colname="col7" colwidth="16mm" /><tbody><row><entry namest="col1" nameend="col7" align="justify">('*' and 'x' are wild-card symbols meaning "don't care", '*' being used as a wild-card for the entire state or the entire input value, while 'x' being used as a wild-card for a single bit position).</entry></row></tbody></tgroup></table></tables>
0028Note that one possible algorithm for generating those rules is described later in the document in reference to <figref idref="f0012">Fig. 12</figref>.
0029The next state is now determined by searching the highest-priority state-transition rule that matches the current state S and input I. For example, if the current state is S2 and the input equals 1 then state-transition rule 1 will match, indicating that the next state will be S3. For any other current state in combination with an input equal to 1, state-transition rule 2 will match, resulting in a transition to state S1. All state transitions in <figref idref="f0001">Fig. 1</figref> are described with only 6 state-transition rules.
0030If there are only a small number of state-transition rules, then in the preferred embodiment, these are stored as so called state-transition rule entries, abbreviated to transition rule entries, in a register or in one memory location. This is shown in <figref idref="f0003">Fig. 3</figref> for the above 6 state-transition rules. The ternary match condition of each transition rule entry is stored as a combination of a (binary) test value and a (binary) test mask. The ternary match condition will match if the bits of the current state and input value equal the bits at the bit positions corresponding to the set bits in the test mask. The remaining bit positions are don't care. For example, the ternary match condition "xxx0001" of state-transition rule 2 is stored as a test value 0000001b and a test mask 0001111b in the corresponding transition rule entry.
0031In a preferred embodiment of the present invention, the next state is determined by performing a parallel comparison of the current state and input character, against the ternary match conditions, stored as test values and test masks, in the corresponding transition rule entries. In case of multiple matches, the matching transition rule entry with the highest priority will be selected (in <figref idref="f0003">Fig. 3</figref> the entries are stored in order of decreasing priority from left to right). This operation is performed for each new 4-bit input character until one of the two end states (S3 or S5) is reached.
BaRT Compression:
0032For state machines that have too many states, implementation issues (e.g., memory width, timing) can make it impossible to store all transition rule entries in one memory location or to test all entries in parallel. In this case, the preferred embodiment uses the BaRT compression scheme to distribute the transition rule entries over multiple memory locations. The BaRT compression scheme has been disclosed in a conference paper by<nplcit id="ncit0002" npl-type="s"><text> Jan Van Lunteren, published in the proceedings of IEEE Globecom, volume 3, pages 1615-1619, November 2001</text></nplcit>, under the title 'Searching Very Large Routing Tables in Wide Embedded Memory'.
0033The BaRT compression scheme is based on a special hash function for exact-, prefix- and ternary-match searches. The hash index (which is called compressed index) comprises a selected subset of the input bits (in this case the current state and input character). These bits are chosen such that the number of collisions for each compressed index value is bounded by a value N. In other words, for any given value of the compressed index, at most N entries can possibly match the input. These entries are then stored at the location within the hash table (which is called compressed state-transition rule table in the preferred embodiment) corresponding to that compressed index value. This concept will now be explained by applying it upon the example of <figref idref="f0003">Fig. 3</figref> for a collision bound N=4.
0034In <figref idref="f0004">Fig. 4</figref>, the compressed index consists of the second bit of the state register 430 and the most significant bit of the 4-bit input 440. A method to determine the bits that form the compressed index will be discussed later. Because the compressed index consists of 2 bits, the compressed state-transition rule table will contain 4 (2<sup>2</sup>) blocks, each containing at most N=4 transition rule entries. A block is illustrated as a row in <figref idref="f0004">Fig. 4</figref>. Each block is stored in one memory location and can be read in one memory access. The base address for the table is stored in a pointer 410. The compressed index can be specified by a so called index mask 420 which has set bits at the bit locations that correspond to the bits that are extracted as compressed index.
0035In <figref idref="f0004">Fig. 4</figref>, the test value and the test mask fields of the transition rule entries are combined into one ternary test vector field, in order to make the figure more compact and understandable. The ternary vectors consisting of `0', `1', and `x' are stored in the state-transition rule table 400 wherein, for instance, a ternary "xxx 0001" corresponds to a test value/test mask combination "000 0001/000 1111".
0036Now for each value of the compressed index, at most N=4 transition rule entries can match the current state and input character. For example, if the second bit of the current state and the most significant bit of the input character would both equal zero, then only the three transition rule entries that are contained within the block corresponding to a compressed index value 00b can possibly match the current state and input character. All state-transition rule entries, the same ones as shown in <figref idref="f0003">Fig. 3</figref>, are distributed in this way over the various compressed index values (note that certain transition rule entries can be matching for multiple compressed index values and are therefore stored in more than one block). The bits of the ternary vectors, that are part of the compressed index, are underlined within the transition rule entries in <figref idref="f0004">Fig. 4</figref> for illustrative purposes.
0037For a given current state and input character, the next state can now be determined in the following way. First, the compressed index bits are extracted from the current state and input character, based on the index mask 420. Next, this compressed index is then used to select a block within the compressed state-transition rule table that is referred to by the pointer 410. The entire block is then read using one memory access. All transition rule entries in one block are then compared in parallel as described before. Also in this case, the entries are ordered within a block according to decreasing priorities: the next state is taken from the first matching transition rule entry (from left to right). The state register is then loaded with the next state from the selected matching entry.
0038The process of extracting the compressed index, finding the highest priority matching entry, and updating the state register, is performed for each new input character until one of the two end states (S3 or S5) has been reached.
Index-mask calculation for BaRT compression:
0039In a preferred embodiment of the present invention, the bits that comprise the compressed index are selected in the following way. This will also be called index-mask calculation because the index mask uniquely defines the bits that are part of the compressed index.
0040If the current state and input character consist together of a total of m bits, then there exist a total of 2<sup>m</sup> different possible index masks, that each cover all possible ways of extracting 0, 1, 2, .., and m bits from the current state and input character. In a first step, all these index masks are determined and ordered by an increasing number of set bits. For example, in <figref idref="f0004">Fig. 4</figref> the current state and input character contain a total of m=7 bits. The 2<sup>7</sup> = 128 possible index masks, ordered by increasing number of set bits are: <ul id="ul0002" list-style="none" compact="compact"><li>0000000,</li><li>1000000, 0100000, 0010000, ..., 0000001,</li><li>1100000, 1010000, 1001000, ..., 0000011,</li><li>1110000, 1101000, 1100100, ..., 0000111,</li><li>1111110, 1111101, 1111011, ..., 0111111,</li><li>...</li><li>1111111</li></ul>
0041Next, these index masks are processed in the given order. For each index mask the maximum number of collisions is determined that occurs for all possible compressed index values corresponding to that index mask, for a given set of transition rule entries. The first index mask for which the maximum number of collisions does not exceed the given collision bound N, is the index mask that will be the result of the index-mask calculation.
0042If an index mask contains k set bits, then the corresponding compressed index will consist of a total of k bits, and the corresponding compressed state-transition rule table will contain 2<sup>k</sup> blocks of (at most) N entries. By testing the index masks ordered by increasing number of set bits, the first index mask found will have a minimum number of set bits, resulting in the smallest compressed state-transition rule table (i.e., in the highest compression).
0043The above index mask calculation is a brute-force approach that tests all possible index masks. The index mask calculation can be made faster and simpler by only testing a selected subset of index masks. This subset can be selected based on the number of transition rule entries in combination with the collision bound N. For example, for a collision bound N=4 and 32 transition rule entries, the compressed state-transition rule table needs to contain at least 8 blocks of N=4 entries (8*4=32) to be able to store all transition rule entries. In order to index 8 blocks, the compressed index needs to consist of at least 3 bits (2<sup>3</sup> = 8). Consequently, only index masks need to be tested that contain at least 3 set bits.
0044For those skilled in the art, parallelism available in hardware implementations can be used to realize an index-mask calculation that can determine an optimum index mask in a time that is linear with the number of transition rule entries.
Improved Programmable State Machine:
0045In a second embodiment of the invention, the deep packet processing can be improved. Each transition rule entry as illustrated in <figref idref="f0004">Fig. 4</figref> is extended with an index mask and pointer field. Such an entry is shown in <figref idref="f0005">Fig. 5</figref>. This table entry can be used to implement a programmable state machine for parsing as well as to implement a tree-like structure for searching.
0046In the aforementioned first preferred embodiment, there is a state register comprising of at least log(s) bits to implement a programmable state machine with s states. The extended transition rule entry allows to support programmable state machines using a smaller state register that has a fixed number of bits independent of the number of states. This allows a more efficient support of state machines with large numbers of states. This will now be illustrated using the example of the state machine in <figref idref="f0001">Fig. 1</figref> in order to obtain the data structure shown in <figref idref="f0006">Fig. 6</figref>. The various steps are described by the flow chart illustrated in <figref idref="f0007">Fig. 7</figref>.
0047As a first step 700 in the second preferred embodiment, all states are distributed over smaller state spaces and assigned state vectors that are unique within each state space. In this example, the 6 states in <figref idref="f0001">Fig. 1</figref> are distributed over 2 state spaces in the following way with the following state-vector assignment: <tables id="tabl0003" num="0003"><table frame="bottom"><tgroup cols="2" colsep="0"><colspec colnum="1" colname="col1" colwidth="60mm" /><colspec colnum="2" colname="col2" colwidth="60mm" /><thead><row><entry valign="top">State space 1:</entry><entry valign="top">State space 2:</entry></row></thead><tbody><row rowsep="0"><entry>S0 - 00</entry><entry>S2 - 00</entry></row><row rowsep="0"><entry>S1 - 01</entry><entry>S3 - 01</entry></row><row rowsep="0"><entry>S5 - 10</entry><entry>S4 - 10</entry></row></tbody></tgroup><tgroup cols="2" rowsep="0"><colspec colnum="1" colname="col1" colwidth="61mm" /><colspec colnum="2" colname="col2" colwidth="61mm" /><tbody><row><entry namest="col1" nameend="col2" align="justify">Note that this distribution can be done in any arbitrary way. However, a typical objective of the distribution results from the size of the state register. If, for example, implementation issues or other reasons, result in a state register consisting of k bits, then the states should be distributed over multiple state spaces such that each state space contains at most <i>2<sup>k</sup></i>. In this situation, unique state-vectors of at most <i>k</i> bits can be assigned to each state within a state space, which will fit in the state register.</entry></row></tbody></tgroup></table></tables>
0048After applying the above distribution of the states over two state spaces, the original state-transition rules can now be written as follows 710: <tables id="tabl0004" num="0004"><table frame="none"><tgroup cols="6" colsep="0"><colspec colnum="1" colname="col1" colwidth="19mm" /><colspec colnum="2" colname="col2" colwidth="13mm" /><colspec colnum="3" colname="col3" colwidth="13mm" /><colspec colnum="4" colname="col4" colwidth="23mm" /><colspec colnum="5" colname="col5" colwidth="10mm" /><colspec colnum="6" colname="col6" colwidth="34mm" /><thead><row><entry namest="col1" nameend="col6" align="left" valign="top">State space 1:</entry></row><row rowsep="0"><entry valign="top">transition</entry><entry valign="top">state</entry><entry valign="top">input</entry><entry valign="top">[ state input ]</entry><entry namest="col5" nameend="col6" align="left" valign="top">next state</entry></row></thead><tbody><row rowsep="0"><entry align="center">1</entry><entry>*</entry><entry>1</entry><entry>[ xx 0001 ] -></entry><entry>S1</entry><entry>[ 01b - state space 1 ]</entry></row><row rowsep="0"><entry align="center">2</entry><entry>S1</entry><entry>2</entry><entry>[ 01 0010 ] -></entry><entry>S2</entry><entry>[ 00b - state space 2 ]</entry></row><row rowsep="0"><entry align="center">3</entry><entry>*</entry><entry>A</entry><entry>[ xx 1010 ] -></entry><entry>S4</entry><entry>[ 10b - state space 2 ]</entry></row><row rowsep="0"><entry align="center">4</entry><entry>*</entry><entry>*</entry><entry>[ xx xxxx ] -></entry><entry>S0</entry><entry>[ 00b - state space 1 ]</entry></row></tbody></tgroup></table></tables><tables id="tabl0005" num="0005"><table frame="none"><tgroup cols="6" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="19mm" /><colspec colnum="2" colname="col2" colwidth="13mm" /><colspec colnum="3" colname="col3" colwidth="13mm" /><colspec colnum="4" colname="col4" colwidth="23mm" /><colspec colnum="5" colname="col5" colwidth="10mm" /><colspec colnum="6" colname="col6" colwidth="34mm" /><thead><row><entry namest="col1" nameend="col6" rowsep="1" align="left" valign="top">State space 2:</entry></row><row><entry valign="top">transition</entry><entry valign="top">state</entry><entry valign="top">input</entry><entry valign="top">[state input]</entry><entry namest="col5" nameend="col6" align="left" valign="top">next state</entry></row></thead><tbody><row><entry align="center">1</entry><entry>S2</entry><entry>1</entry><entry>[ 00 0001 ] -></entry><entry>S3</entry><entry>[ 01b - state space 2 ]</entry></row><row><entry align="center">2</entry><entry>*</entry><entry>1</entry><entry>[ xx 0001 ] -></entry><entry>S1</entry><entry>[ 01b - state space 1 ]</entry></row><row><entry align="center">3</entry><entry>S4</entry><entry>B</entry><entry>[ 10 1011 ] -></entry><entry>S5</entry><entry>[ 10b - state space 1 ]</entry></row><row><entry align="center">4</entry><entry>*</entry><entry>A</entry><entry>[ xx 1010 ] -></entry><entry>S4</entry><entry>[ 10b - state space 2 ]</entry></row><row><entry align="center">5</entry><entry>*</entry><entry>*</entry><entry>[ xx xxxx ] -></entry><entry>S0</entry><entry>[ 00b - state space 1 ]</entry></row></tbody></tgroup></table></tables>
0049In the next step 720, each state space is implemented using a compressed state-transition rule table in the same way as with the first preferred embodiment. The difference with the first preferred embodiment, is that now the index mask and pointer "associated" with the state space of which the next state is part of, are stored together with the next state in the extended transition rule entries.
0050<figref idref="f0006">Fig. 6</figref> shows the resulting structure for an implementation in which the memory width allows to store 4 transition rule entries in one location and compare those in parallel. The compressed state-transition rule table 610, corresponding to state space 1, consists of one block of four entries. The compressed state-transition rule table 600, corresponding to state space 2, consists of two entry-blocks, which are selected using a one-bit compressed index 620 which is extracted from the current state register 630 and 4-bit input character 640. The two base pointers 650 and 660 corresponding to the two compressed tables are denoted as SP1 and SP2, respectively.
0051<figref idref="f0008">Fig. 8</figref> and <figref idref="f0009">Fig. 9</figref> show the flow charts describing the creation of a compressed state-transition rule table for each state space 720. This will now be explained for the second state space, which involves 5 entries with the following test vectors: <tables id="tabl0006" num="0006"><table frame="none"><tgroup cols="2" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="15mm" /><colspec colnum="2" colname="col2" colwidth="16mm" /><tbody><row><entry>entry 1</entry><entry>00 0001</entry></row><row><entry>entry 2</entry><entry>xx 0001</entry></row><row><entry>entry 3</entry><entry>10 1011</entry></row><row><entry>entry 4</entry><entry>xx 1010</entry></row><row><entry>entry 5</entry><entry>xx xxxx</entry></row></tbody></tgroup></table></tables>
0052The maximum number of entries per entry-block equals N=4 800, 900. The number of transition rules equals 5, which is larger than the maximum number of entries per entry-block (answer Yes to test 810), therefore the compressed table will contain multiple entry-blocks, that have to be indexed by a compressed index. For this purpose, an index mask must be calculated 830 in the following way. First all possible index masks are determined and ordered by an increasing number of set bits 910. Fewer set bits correspond to a smaller compressed index, fewer entry blocks and therefore a better compression. There exist a total of 63 (2<sup>6</sup>-1) possible non-zero values of a 6-bit vector (2 bits state + 4 bits input), which are, ordered according to an increasing number of set bits: <ul id="ul0003" list-style="none" compact="compact"><li>100000b</li><li>010000b</li><li>001000b</li><li>000100b</li><li>000010b</li><li>000001b</li><li>110000b</li><li>101000b</li><li>100100b</li><li>...</li><li>111111b</li></ul>
0053The first index mask is 100000b 920. To this index mask correspond two possible compressed index values, namely 0b and 1b 930. For this index mask the entries will be mapped on the two compressed index values in the following way 940: <ul id="ul0004" list-style="none" compact="compact"><li>0b: entries 1, 2, 4, 5</li><li>1b: entries 2, 3, 4, 5</li></ul> (this mapping is obtained by taking the left-most bit of the test vector: in case of a 0b, the entry is mapped on index 0b, in case of a 1b, the entry is mapped on index 1b, in case of a xb, the entry is mapped on both index 0b and index 1b).
0054The maximum number of entries mapped on one compressed index value equals M=4 950. Because M <= N (smaller or equal), this index mask is selected (answer Yes to test 960). If M > N (answer No to test 960), the next index mask is selected (970).
0055The number of set bits in index mask 100000b equals k=1 840. Consequently, the table consists of 2<sup>k</sup> = 2 block entries (corresponding to both compressed index values) each containing N=4 entries. Therefore the table contains a total of 2*4 = 8 entries. After sufficient memory has been allocated 850, the entries can be written within each of the two blocks (as shown above: entries 1,2,4,5 on compressed index value 0b, and entries 2,3,4,5 on compressed index value 1b) ordered by decreasing priority 860. The same procedure is used to construct a compressed table for state space 1. In this case, the number of transition rules is not larger than the number of entries in one entry block (N=4) ; answer No to test 810. Consequently, the index mask equals 000000b 820 and the compressed table consists of only one entry block 840, 850, 860. After both tables have been constructed, the index mask/pointer combination for each table can be written in the corresponding fields within the entries involving next states in the corresponding state spaces 870, 730.
0056In practical implementations, the number of entries is typically much greater than with the state diagram used to illustrate those various embodiments of the present invention presented herein.
Searching:
0057<figref idref="f0010">Fig. 10</figref> illustrates an example of a data structure according to the aforementioned second preferred embodiment, that can be used for searching. The state register and the next state fields in the transition rule entries within the compressed tables are not used in this search, and the two left-most bits within the test vectors that correspond to the state register equal xxb (don't care).
0058The data structure implements a prefix search on a 12-bit vector consisting of a first 1000, second 1010, and third 1020 4-bit input value as shown in <figref idref="f0010">Fig. 10</figref>. The prefixes and corresponding search results are: <tables id="tabl0007" num="0007"><table frame="none"><tgroup cols="3" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="50mm" /><colspec colnum="2" colname="col2" colwidth="23mm" /><colspec colnum="3" colname="col3" colwidth="24mm" /><thead><row><entry align="center" valign="top">prefix</entry><entry valign="top">prefix length</entry><entry valign="top">search result</entry></row></thead><tbody><row><entry>prefix 1: 0001 0010 0011b (123h)</entry><entry>12</entry><entry>P</entry></row><row><entry>prefix 2: 0101b (5h)</entry><entry>4</entry><entry>Q</entry></row><row><entry>prefix 3: 1010b (Ah)</entry><entry>4</entry><entry>R</entry></row></tbody></tgroup></table></tables>
0059The data structure for this example consists of three compressed tables, that are each "indexed" by one of the input values. The compressed table that is indexed by the first input value, is used to determine whether the above prefixes might match the input, based on the first 4 bits of those prefixes, which are 0001b (prefix 1), 0101b (prefix 2), and 1010b (prefix 3). The test vectors corresponding to those prefixes are: <ul id="ul0005" list-style="none" compact="compact"><li>xx 0001b (prefix 1)</li><li>xx 0101b (prefix 2)</li><li>xx 1010b (prefix 3)</li></ul> (the bit positions related to the state register (1030) contain xxb as mentioned above).
0060In this example, the number of entries per entry-block is chosen to be equal to N=2. For this value of N and the above test vectors, the compressed index computed according to the BaRT algorithm consists of one bit 1070, and the entries related to pref ix 1 and prefix 2 are mapped on a compressed index value of 0b, and the entry related to prefix 3 is mapped on a compressed index value 1b.
0061Both prefix 2 and prefix 3 have a length equal to 4. Consequently, if the test vector stored in the entry corresponding to each of those prefixes, would match the first 4-bit input value, then this means that the corresponding prefix matches the input character. In that case the search result can be retrieved from the pointer field of the matching entry. If the first input value equals '5'h, then the result will be Q. If the first input value equals 'A'h, then the result will be R.
0062Prefix 1 has a length equal to 12. This implies that all three input values 1000, 1010, 1020 have to be tested in order to determine whether this prefix is matching. This is implemented in the following way in the data structure in <figref idref="f0010">Fig. 10</figref>. The first input value 1000 is tested by the compressed table 1040. If the first input value would match the test vector xx 0001b that is stored in the entry related to prefix 1, the left-most entry in the entry-block corresponding to a compressed index value 0b, then the index mask and pointer fields of this entry are retrieved and used to access a second compressed table 1050, which tests the second input value 1010. The only valid entry in this table contains a test vector starting with xxb (for the state register) followed by the second group of four bits of prefix 1, resulting in xx 0010b. If this test vector matches the second input value 1010, then the index mask and pointer fields of this entry are retrieved and used to access a third compressed table 1060, which tests the third input value 1020. The only valid entry in this table contains a test vector starting with xxb (for the state register) followed by the third group of four bits of prefix 1, resulting in xx 0011b. If this test vector matches the third input value 1020, this means that prefix 1 is matching the given set of three input values. In that case, the search result can be retrieved from the pointer field of the matching entry. If the three 4-bit input characters equal '123'h, then the result will be P.
Parse and Search operation:
0063The flow chart of <figref idref="f0011">Fig. 11</figref> illustrates an example of a method for parsing and searching according to the second preferred embodiment. The first step 1100 is to initialize the state register, the current index mask and the current base pointer with values that correspond to the first compressed table involved in the parse or search operation. Next step 1110 is to select the first input character to be analyzed. The next step 1120 is to extract the compressed index value from the input data and state register, based on the current index mask, and to use this to select an entry-block within the compressed table that is referred to by the current base pointer. In the next step 1130 a matching entry is searched within the selected entry-block, by comparing the test vector in each entry against the state register and input character. The first matching entry found is selected. The operation ends if no match is found: answer No to test 1140. If a match is found; answer Yes to test 1140, there is a first case where the entry read is final: answer Yes to test 1150. For parsing, this means that the end-state of the state machine has been reached; S3 and S5 in the example of <figref idref="f0001">Fig. 1</figref>. For searching, this means that a result has been found (as an example, R for the input value of 'A'h in the example of <figref idref="f0010">Fig. 10</figref>). A final entry can be identified in many ways, for example, using a flag bit or a special value for the pointer. In this case, if a final entry is found then the operation ends. If the matching entry is not a final entry; answer No to test 1150, then new values for the current state register, current index mask and current based pointer are extracted from the matching entry and become the current values 1160 and a new 4-bit character value is selected 1170. Based on the new values, the loop starting with 1120 is entered again. This loop is executed until no matching entry is found, answer No to test 1140, or a final entry is found to be matching answer Yes to test 1150.
Algorithm for deriving prioritized state-transition rules
0064<figref idref="f0012">Fig. 12</figref> shows a flow chart describing an example of a method for deriving a prioritized list with state-transition rules, which each involve a ternary match condition on the current state and input value. This method may be used for building the data structure supporting the programmable state machine of the embodiments of the invention. This algorithm will be explained using the example of the state diagram shown in <figref idref="f0001">Figure 1</figref>. The state transitions for this state diagram are: <tables id="tabl0008" num="0008"><table frame="none"><tgroup cols="4" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="13mm" /><colspec colnum="2" colname="col2" colwidth="21mm" /><colspec colnum="3" colname="col3" colwidth="9mm" /><colspec colnum="4" colname="col4" colwidth="20mm" /><thead><row><entry valign="top">state</entry><entry valign="top">input</entry><entry valign="top" /><entry valign="top">next state</entry></row></thead><tbody><row><entry>S0</entry><entry>0, 2..9, B..F</entry><entry>-></entry><entry>S0</entry></row><row><entry>S1</entry><entry>0, 3..9, B..F</entry><entry>-></entry><entry>S0</entry></row><row><entry>S2</entry><entry>0, 2..9, B..F</entry><entry>-></entry><entry>S0</entry></row><row><entry>S4</entry><entry>0, 2..9, C..F</entry><entry>-></entry><entry>S0</entry></row><row><entry /><entry /><entry /><entry /></row><row><entry>S0</entry><entry>1</entry><entry>-></entry><entry>S1</entry></row><row><entry>S1</entry><entry>1</entry><entry>-></entry><entry>S1</entry></row><row><entry>S4</entry><entry>1</entry><entry>-></entry><entry>S1</entry></row><row><entry /><entry /><entry /><entry /></row><row><entry>S1</entry><entry>2</entry><entry>-></entry><entry>S2</entry></row><row><entry /><entry /><entry /><entry /></row><row><entry>S2</entry><entry>1</entry><entry>-></entry><entry>S3</entry></row><row><entry /><entry /><entry /><entry /></row><row><entry>S0</entry><entry>A</entry><entry>-></entry><entry>S4</entry></row><row><entry>S1</entry><entry>A</entry><entry>-></entry><entry>S4</entry></row><row><entry>S2</entry><entry>A</entry><entry>-></entry><entry>S4</entry></row><row><entry>S4</entry><entry>A</entry><entry>-></entry><entry>S4</entry></row><row><entry /><entry /><entry /><entry /></row><row><entry>S4</entry><entry>B</entry><entry>-></entry><entry>S5</entry></row></tbody></tgroup></table></tables>
0065An input value <i>i</i> that has not been processed is selected 1200. Next, for this input value <i>i</i>, the most frequently occurring next state <i>s</i> is determined 1210, and all transitions with input value <i>i</i> to that next state <i>s</i> are replaced 1220 by one transition rule " * <i>i</i> -> <i>s</i> " with a priority 1. All transitions that involve the same input i but a different next state than s, are assigned a priority 2, 1230. These steps are repeated, answer No to test 1240, until all the input values are processed: answer yes to test 1240.
0066The loop execution results in: <tables id="tabl0009" num="0009"><table frame="none"><tgroup cols="5" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="13mm" /><colspec colnum="2" colname="col2" colwidth="13mm" /><colspec colnum="3" colname="col3" colwidth="9mm" /><colspec colnum="4" colname="col4" colwidth="20mm" /><colspec colnum="5" colname="col5" colwidth="15mm" /><thead><row><entry valign="top">state</entry><entry valign="top">input</entry><entry valign="top" /><entry valign="top">next state</entry><entry valign="top">priority</entry></row></thead><tbody><row><entry>*</entry><entry>0</entry><entry>-></entry><entry>S0</entry><entry>1</entry></row><row><entry>*</entry><entry>1</entry><entry>-></entry><entry>S1</entry><entry>1</entry></row><row><entry>*</entry><entry>2</entry><entry>-></entry><entry>S0</entry><entry>1</entry></row><row><entry>*</entry><entry>3</entry><entry>-></entry><entry>S0</entry><entry>1</entry></row><row><entry>*</entry><entry>4</entry><entry>-></entry><entry>S0</entry><entry>1</entry></row><row><entry /><entry /><entry /><entry /><entry /></row><row><entry>...</entry><entry>...</entry><entry>...</entry><entry>...</entry><entry>...</entry></row><row><entry>*</entry><entry>9</entry><entry>-></entry><entry>S0</entry><entry>1</entry></row><row><entry>*</entry><entry>A</entry><entry>-></entry><entry>S4</entry><entry>1</entry></row><row><entry>*</entry><entry>B</entry><entry>-></entry><entry>S0</entry><entry>1</entry></row><row><entry>...</entry><entry>...</entry><entry>-></entry><entry>...</entry><entry>...</entry></row><row><entry>*</entry><entry>F</entry><entry>-></entry><entry>S0</entry><entry>1</entry></row><row><entry /><entry /><entry /><entry /><entry /></row><row><entry>S1</entry><entry>2</entry><entry>-></entry><entry>S2</entry><entry>2</entry></row><row><entry>S2</entry><entry>1</entry><entry>-></entry><entry>S3</entry><entry>2</entry></row><row><entry>S4</entry><entry>B</entry><entry>-></entry><entry>S5</entry><entry>2</entry></row></tbody></tgroup></table></tables>
0067The next step 1250 is now to determine the most frequently occurring next state s within transition rules with priority 1, that does not occur in any transition rule with priority 2. If such a state does not exist the transition rule list is completed: answer No to test 1260, the method ends. Such a state exists in the example, namely S0: answer Yes to test 1260. All transition rules with priority 1 involving a next state S0 are now replaced by a default transition rule * * -> S0 with priority 0, 1270. This results in: <tables id="tabl0010" num="0010"><table frame="none"><tgroup cols="5" colsep="0" rowsep="0"><colspec colnum="1" colname="col1" colwidth="13mm" /><colspec colnum="2" colname="col2" colwidth="13mm" /><colspec colnum="3" colname="col3" colwidth="9mm" /><colspec colnum="4" colname="col4" colwidth="20mm" /><colspec colnum="5" colname="col5" colwidth="15mm" /><thead><row><entry valign="top">state</entry><entry valign="top">input</entry><entry valign="top" /><entry valign="top">next state</entry><entry valign="top">priority</entry></row></thead><tbody><row><entry>*</entry><entry>*</entry><entry>-></entry><entry>S0</entry><entry>0</entry></row><row><entry>*</entry><entry>1</entry><entry>-></entry><entry>S1</entry><entry>1</entry></row><row><entry>*</entry><entry>A</entry><entry>-></entry><entry>S4</entry><entry>1</entry></row><row><entry>S1</entry><entry>2</entry><entry>-></entry><entry>S2</entry><entry>2</entry></row><row><entry>S2</entry><entry>1</entry><entry>-></entry><entry>S3</entry><entry>2</entry></row><row><entry>S4</entry><entry>B</entry><entry>-></entry><entry>S5</entry><entry>2</entry></row></tbody></tgroup></table></tables>
12 sheets
Sheet 1 Sheet 2 Sheet 3 Sheet 4 Sheet 5 Sheet 6 Sheet 7 Sheet 8 Sheet 9 Sheet 10 Sheet 11 Sheet 12
Every citation, both ways
| Document | Relation | Office |
|---|---|---|
| WO0186433A | Cites | World Intellectual Property Organization (WIPO) |
| ICHIRIU M: "HIGH PERFORMANCE LAYER 3 FORWARDING. THE NEED FOR DEDICATED HARDWARE SOLUTIONS" INTERNET CITATION, 2000, XP002155851 Retrieved from the Internet: <URL:http://www.netlogicmicro.com/pdf/CIDR _white_paper.pdf> [retrieved on 2000-12-19] | Non-patent | – |
| DEVADAS S ET AL: "Decomposition and factorization of sequential finite state machines" COMPUTER-AIDED DESIGN, 1988. ICCAD-88. DIGEST OF TECHNICAL PAPERS., IEEE INTERNATIONAL CONFERENCE ON SANTA CLARA, CA, USA 7-10 NOV. 1988, WASHINGTON, DC, USA,IEEE COMPUT. SOC. PR, US, 7 November 1988 (1988-11-07), pages 148-151, XP010013339 ISBN: 0-8186-0869-2 | Non-patent | – |
| VAN LUNTEREN J ET AL: "Multi-field packet classification using ternary CAM" ELECTRONICS LETTERS, 3 JAN. 2002, IEE, UK, vol. 38, no. 1, pages 21-23, XP002261672 ISSN: 0013-5194 | Non-patent | – |
12 members in 6 offices
Priority claims9
| Document | Office | Kind | Date |
|---|---|---|---|
| 02368098 | European Patent Office (EPO) | A | |
| 02368098 | European Patent Office (EPO) | – | |
| 03794840 | European Patent Office (EPO) | A | |
| 0308210 | European Patent Office (EPO) | W | |
| EP20030794840 | – | – | – |
| WO2003EP08210 | – | – | – |
| EP20020368098 | – | – | – |
| 02368098 | – | – | – |
| 2003008210 | – | – | – |
Members12
| Document | Office | Kind | |
|---|---|---|---|
| WO2004025920A1 | World Intellectual Property Organization (WIPO) | A1 | |
| AU2003255288A1 | Australia | A1 | |
| TW200415878A | Taiwan Province of China | A | |
| EP1547342A1 | European Patent Office (EPO) | A1 | |
| JP2005538624A | Japan | A | |
| US2006095588A1 | United States of America | A1 | |
| TWI283974B | Taiwan Province of China | B | |
| US2008228798A1 | United States of America | A1 | |
| US7519070B2 | United States of America | B2 | |
| JP4452183B2 | Japan | B2 | |
| US7787474B2 | United States of America | B2 | |
| EP1547342B1This record | European Patent Office (EPO) | B1 |
69 legal events, as 8 offices reported them to INPADOC
Over the term
Point at a mark for the eventEvents
| Event | Code | Office | |
|---|---|---|---|
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Gb: european patent ceased through non-payment of renewal feeCeasedGBPC | GBPC | EP | |
| Application deemed withdrawn, or ip right lapsed, due to non-payment of renewal feeWithdrawnR119 | R119 | DE | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Notification of lapseLapsedST | ST | FR | |
| Patent lapsedLapsedMM4A | MM4A | IE | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Patent ceasedCeasedPL | PL | CH | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| No opposition filedOpposition26N | 26N | EP | |
| No opposition filed within time limitOppositionORIGINAL CODE: 0009261PLBE | PLBE | EP | |
| Information on the status of an ep patent application or granted ep patentGrantedSTATUS: NO OPPOSITION FILED WITHIN TIME LIMITSTAA | STAA | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| No opposition filed against granted patent, or epo opposition proceedings concluded without decisionGrantedR097 | R097 | DE | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Discontinued in the netherlands as no translation has been filedVDEP | VDEP | NL | |
| Deletion acc. to par. 5 (withdrawal of the translation of the ep patent)MK05 | MK05 | AT | |
| Register noted 'licences of right' (sect. 46/1977)746 | 746 | GB | |
| Declaration of willingness to licenceR084 | R084 | DE | |
| Dpma publication of mentioned ep patent grantGrantedR096 | R096 | DE | |
| Reference to at number (ep patent enters austrian national phase)REF | REF | AT | |
| European patents granted designating irelandGrantedFG4D | FG4D | IE | |
| Declaration of willingness to licenceR084 | R084 | DE | |
| European patent takes effect as a national patent in ch/liEP | EP | CH | |
| New agentNV | NV | CH | |
| Designated contracting statesAK | AK | EP | |
| European patent grantedGrantedFG4D | FG4D | GB | |
| (expected) grantORIGINAL CODE: 0009210GRAA | GRAA | EP | |
| Grant fee paidORIGINAL CODE: EPIDOSNIGR3GRAS | GRAS | EP | |
| Intention to grant announcedINTG | INTG | EP | |
| Intention to grant announcedINTG | INTG | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Information provided on ipc code assigned before grantRIC1 | RIC1 | EP | |
| Despatch of communication of intention to grant a patentORIGINAL CODE: EPIDOSNIGR1GRAP | GRAP | EP | |
| Party data changed (applicant data changed or rights of an application transferred)RAP1 | RAP1 | EP | |
| First examination report despatched17Q | 17Q | EP | |
| Information on inventor provided before grant (corrected)RIN1 | RIN1 | EP | |
| Party data changed (applicant data changed or rights of an application transferred)RAP1 | RAP1 | EP | |
| Party data changed (applicant data changed or rights of an application transferred)RAP1 | RAP1 | EP | |
| Party data changed (applicant data changed or rights of an application transferred)RAP1 | RAP1 | EP | |
| Party data changed (applicant data changed or rights of an application transferred)RAP1 | RAP1 | EP | |
| Request for extension of the european patent (deleted)DAX | DAX | EP | |
| Request for examination filed17P | 17P | EP | |
| Designated contracting statesAK | AK | EP | |
| Request for extension of the european patentAX | AX | EP | |
| Public reference made under article 153(3) epc to a published international application that has entered the european phaseORIGINAL CODE: 0009012PUAI | PUAI | EP |
Numbers
- Publication
- 1547342
- Publication, DOCDB
- 1547342
- Publication, EPODOC
- EP1547342
- Application
- 3794840
- Application, DOCDB
- 03794840
- Application, EPODOC
- EP20030794840
Titles3
- German
- VERFAHREN UND VORRICHTUNG ZUR TIEFPAKETVERARBEITUNG
- English
- A METHOD AND APPARATUS FOR DEEP PACKET PROCESSING
- French
- PROCEDE ET APPAREIL POUR LE TRAITEMENT DE PAQUETS EN PROFONDEUR
Classification
- CPC, 4
- H04L63/02
- H04L45/7457
- H04L69/12
- H04L69/22
- IPC, 3
- H04L29 06
- H04L12 66
- H04L12 743
Designated states27
- Contracting states, 27
- Austria
- Belgium
- Bulgaria
- Switzerland
- Cyprus
- Czechia
- Germany
- Denmark
- Estonia
- Spain
- Finland
- France
- United Kingdom
- Greece
- Hungary
- Ireland
- Italy
- Liechtenstein
- Luxembourg
- Monaco
- Netherlands (Kingdom of the)
- Portugal
- Romania
- Sweden
and 3 moreShow fewer
- Slovenia
- Slovakia
- Türkiye
