1. Field of the Invention
The present invention generally relates to a method of computing partial cyclic redundancy checks (CRCs) and, more particularly, a method for computing partial CRCs in real time for variable length data blocks and packets.
2. Background Description
Reliable transmission of data typically involves computation of error detecting checks, such as cyclic redundancy checks (CRCs), to support a wide range of protocols and transmission mediums. For example, the iSCSI (Internet Small Computer Systems Interface) standard provides a mechanism for exchanging SCSI commands and data over TCP/IP (Transmission Control Protocol/Internet Protocol). iSCSI defines a PDU (Protocol Data Unit) for the exchange between an iSCSI initiator and target. iSCSI PDUs may not be aligned to TCP segments or IP datagrams, because the TCP layer treats the data passed to and from an upper layer as a byte stream. Since TCP may break the byte stream at any arbitrary point, PDUs may not be aligned to TCP segments so that portions of PDUs may appear within a TCP segment. The iSCSI standard defines a CRC32 check to verify the integrity of PDU headers and data payloads.
One difficulty in computing CRC remainders is that portions of a PDU may arrive out of order from the network. The out of order delivery is a result of the underlying TCP/IP protocols used to transfer iSCSI PDUs. Traditional implementations of generating CRC remainders depend on the data being processed in order. The result of these behaviors of TCP/IP is that portions of an iSCSI PDU may be contained in different Ethernet packets which may arrive out of order. It is typically more difficult for hardware to compute the CRC when Ethernet frames (or similar frames) arrive out of order. The CRC algorithm itself creates part of the problem because the CRC result for a byte of data is dependent on all prior bytes over which the CRC is protecting. Thus, the CRC computation is not associative. The second factor is that the iSCSI PDUs are not aligned within any of the lower level portions of the protocol. Thus, a PDU boundary may occur anywhere within the data portion of a TCP segment and hence in the lower layers as well.
Another factor impacting the CRC generation is the increasing speed of networks. At higher speeds there is less time to process each packet. This has resulted in a number of approaches to offload the TCP/IP processing from the host onto specialized hardware and/or other processors. These approaches also minimize the number of times data is moved within a system. Ideally, the CRC generation should be accomplished as part of the other packet handling requirements.
Computing the CRC after all the parts of a PDU have been received consumes additional memory and bus bandwidth. Computing CRCs on the fly or in real time as PDUs arrive would be more efficient and flexible.
In an aspect of the invention, a method is provided for generating cyclic redundancy checks (CRCs) for a message with N data blocks that includes the steps of calculating a partial CRC for an out of order data block and storing the result, generating a CRC remainder multiplier associated with the out of order data block and storing the result, repeating the calculating and generating steps until all N data blocks for the message are received, and combining the results of the calculating step and the generating step.
In another aspect of the invention, an apparatus for generating cyclic redundancy checks (CRCs) for a message with N data blocks is provided. The apparatus comprising a component to calculate a partial CRC for an out of order data block and to store the result, a component to generate a CRC remainder multiplier associated with the out of order data block and to store the result, and a component to combine the results of the calculated partial CRC and the generate remainder multiplier.
In another aspect of the invention, a computer program product is provided comprising a computer usable medium having readable program code embodied in the medium and includes a first component to calculate a partial CRC for an out of order data block and storing the result, a second component to generate a remainder multiplier associated with the out of order data block and storing the result, and a third component to combine the results of the first component and the second component.
The foregoing and other objects, aspects and advantages will be better understood from the following detailed description of embodiments of the invention with reference to the drawings, in which:
This invention is directed to computing partial CRCs by computing remainders of the powers of two as data blocks are received, instead of, for example, pre-computing them and storing them in a table. Although not shown, assuming there are a finite number of possible sizes, it is anticipated that a pre-computed table could be included in this embodiment.
CRCs are prevalent in many transmission mediums and protocol topologies.
The term “data block” (also referred to as “block”) refers to the smallest units of data which is a continuous sequence of bits. Data blocks may arrive out of order because the underlying transport mechanism such as Ethernet packets, for example, may arrive out of order. The term “message” refers to a set of one or more data blocks which have a defined order. The mapping of messages to packets breaks a message into data blocks. The term “packet” typically refers to a unit of data which is transmitted intact over a network. A packet may contain portions of one or more messages. A packet may contain other information as defined by the appropriate network protocol. A packet may arrive out of order and hence a data block contained in the packet may arrive out of order. The term “packet data” is the message protected by a CRC. The term “PDU” (protocol data unit) is an iSCSI term and is a type of message transferred over an Ethernet network. The term “data segment” refers to an iSCSI term and is typically an optional portion of a PDU and may also be a type of message.
TCP processes data in a byte stream to and from an application such as iSCSI. Thus, the iSCSI PDUs are not aligned in any fashion within TCP/IP packets as they flow over a network. Parts of one or more iSCSI PDUs may be contained in a TCP/IP packet as well as an iSCSI PDU may spread over many TCP/IP packets, a situation that this invention handles more flexibly.
An aspect behind CRC checking is that a long bit string, a message, for example, may be characterized by the remainder calculated when that bit string is divided by a specific, shorter, divisor bit string. This divisor bit string is also referred to as the generating polynomial, and the remainder is the CRC value, or just CRC, of the original bit string. When a message is transmitted, this remainder is generated and transmitted as well. When the message is received, the remainder is recomputed and compared with the transmitted remainder. With a high probability that depends on the choice of generating polynomial, if the received and recomputed remainders match, then the message was transmitted and received without error.
There are two properties of remainders that are required by any partial CRC approach. First, the remainder of a sum of terms is equal to the sum of the remainders of those terms. Second, the remainder of a product of terms is equal to the product of the remainders of those terms. The division operation used to compute the remainders treats bit strings as binary polynomial coefficients, and along with all other operations on the remainders themselves, uses modulo-2 arithmetic (no carries), for computational efficiency. To insure that all operations on remainders are themselves remainders except for the divisor, a subtraction or division with the divisor is applied as needed.
The message over which the CRC is computed is represented in terms of data blocks as follows:
Message=B0×2S(P-1)+B1×2S(P-2)+ . . . +B(P-2)×2S+B(P-1)
That is, there are P data blocks each containing S bits, and the Bk are the bit patterns of each block. The CRC of the message can be computed by computing the CRC of the data blocks and combining. Traditionally, the Bk are fed through a hardware CRC engine as each packet is received, and these values are saved in an array, such as, for example:
crc—b[k]=CRC(Bk)
The CRCs for the powers of two are pre-computed and put in a table for exponents from 1 to L, where L is the number of data blocks in the largest possible packet:
crc—2[k]=CRC(2S(P-k))
When all data blocks of a message have been received, the CRC of the message is computed from the tabulated data as:
CRC(message)=crc_b[0]×crc—2[1]+crc_b[1]×crc—2[2] . . .
where these sums and products are defined except for the generating polynomial, as previously described.
The invention provides a method for computing the full CRC from partial CRC computations in which any number of data blocks may comprise a message, and data block lengths are variable. To allow any number of data blocks per message, the expression for the Message is modified to:
Message=( . . . ((B0×2S+B1)×2S+B2)×2S . . . +B(P-2))×2S+B(P-1) and then:
CRC(message)=( . . . (crc—b[0]×crc—2+crc_b[1])×crc—2+crc_b[2])×crc—2
For fixed length data blocks, only crc—2=CRC(2S) is needed to complete the calculation no matter how many data blocks comprise a message.
Further flexibility is provided by the invention to accommodate variable length data blocks, as follows, built on the basic form of Equation No. 1:
Message=( . . . ((B0×2S1+B1)×2S2+B2) . . . +B(P-2))×2S(P-1)+B(P-1) (1)
where Sk is the size in bits of cell Bk.
As each Bk is being received, it is fed through a CRC engine to compute partial CRCs as follows:
crc—b[k]=CRC(Bk) (2)
At the same time, a pattern of the same length (plus one bit) is fed through a second CRC engine (see
crc—2[k]=CRC(2Sk) (3)
Both the crc_b[k] and crc—2[k] values are saved until all of the data blocks have been received. At that time, the CRC over the entire message may be computed as shown in the following exemplary pseudo code (actual logic may assume variations as one of ordinary skill in the art will recognize):
Acc=crc_b[0]
For k=1 to P
Acc=(Acc×crc—2[k]+crc_b[k]) % poly
CRC(message)=Acc
Where poly is the generating polynomial and % is the remainder operator. An advantage to this approach is that there is no pre-computed table, and no restriction on the data block, message, or packet sizes.
A CRC32 hardware engine may be placed in the networking dataflow to minimize bus and memory bandwidth as illustrated by the inclusion of CRC Engine 1 (130). Ideally, the CRC32 computation is performed just as, or just before, data from an Ethernet frame is placed into memory after it has been processed by TCP/IP and iSCSI offload engines (i.e., 115, 120, 130, or 135, respectively). When packets for a TCP connection carrying iSCSI PDUs arrive in order, it is straightforward for hardware to detect the PDU boundaries and check the CRC digests.
Referring to
The expression Hcrc (x,y) represents the hardware computation of the partial CRC of block x, starting with a remainder of y. Once all blocks have been received, the final computation of the message CRC may be performed in software (alternatively may be performed in hardware) using the partial CRC values computed over the N blocks and corresponding powers of 2. As an optimization, blocks that are received in order may be processed by the hardware computation shown on the right hand side of the flowchart. In this case, the previously computed CRC is used as the initial remainder in the computation, which eliminates the corresponding iterations of the final computation.
The process continues at step 305 where the control variables i (next in order block number) and j (received number of blocks) are initialized to one and the packet CRC is initialized to zero, or other appropriate initialization value. At step 310, a check is made as to whether all blocks have been received and if not, at step 315, the next block Bk is received. At step 320, a check as to whether this block is received in order is made.
If not, at step 325, the partial CRC is computed for block Bk along with the corresponding power of 2 multiplier remainder. At step 328, the new block is counted. Processing continues with step 310.
If the block is in order at step 320, then at step 330, the in order CRC is computed using the previously computed CRC as the initial remainder. At step 332, the next anticipated block number and received number of blocks are incremented. Processing continues at step 310.
If at step 310, the number of received blocks reaches the total number of blocks in the message, at step 333, a check is made whether every data block's CRC is included in the final CRC. If not, at step 335, stored partial CRCs are included, in turn, in the final CRC. Once all partial CRCs (if any were actually produced) are included in the final CRC (i.e., when i=N, at step 333) then the process ends.
By way of further example, the optimization effect of the invention is illustrated by assuming that a message consists of six blocks, which are received in the order: B6, B1, B4, B2, B3, B5. Block B6 is processed on the left hand side of
For the final computation, B1 through B3 have been fully processed, so only the partial CRCs computed for B4, B5, and B6 need to be included in the final computation. A further extension of this optimization provides for all the partial sequences to be processed in this way, as blocks are received. Using the previous example, B5 would be processed using the result from B4, further reducing the amount of computation needed at the end. These optimizations reduce the amount of processing that software needs to perform in the final computation to the extent that blocks are received mostly in order.
In another embodiment, if the block prior to the current block has been received (not necessarily immediately prior to the immediate block) and resulted in a partial CRC calculation, then the results from the prior block may be used to initialize both CRC engines. By way of example, consider the block stream B1, B2, B4, B3, B5, and B6. In this case block B4 is received out of order. In this embodiment, B4 would be the first out of order block and would have a partial CRC computed, but in this embodiment, B3 would be considered in order and is a continuation of the in order processing of B1 and B2 since B3 is next in order to a previously received block, namely B2. The CRC remainder after processing B2 is used to initialize the CRC engine before processing B3. In like manner, B5 and B6 would be processed as an extension of the partial CRC for B4. This is accomplished by initializing the CRC engines with the CRC remainder and the multiplier remainder from the prior block, B4, before processing B5. In this embodiment, the number of terms to be combined is reduced to two (i.e., B1–B3, and B4–B6). This embodiment works with the flow of
Another embodiment may include precomputing the values which would be from the second CRC engine and place them in a table. This approach may be implemented in either hardware or software.
The invention may be utilized over a wide range of protocols and varying sizes of data blocks when the number of data blocks to be received is not known at the beginning of a packet or message transmission. The invention provides for substantial optimization and reduction of required processing and does not require the use of pre-computed powers of two. Initializing the CRC engines with data from a prior CRC computation result permits data blocks from different messages to be received correctly when intermixed by the network.
While the invention has been described in terms of embodiments, those skilled in the art will recognize that the invention can be practiced with modifications and in the spirit and scope of the appended claims.
Number | Name | Date | Kind |
---|---|---|---|
4450561 | Gotze et al. | May 1984 | A |
5121397 | Norrod | Jun 1992 | A |
5247524 | Callon | Sep 1993 | A |
5321704 | Erickson et al. | Jun 1994 | A |
5383204 | Gibbs et al. | Jan 1995 | A |
5410546 | Boyer et al. | Apr 1995 | A |
5691997 | Lackey, Jr. | Nov 1997 | A |
5754564 | Francis | May 1998 | A |
5951707 | Christensen et al. | Sep 1999 | A |
5991911 | Zook | Nov 1999 | A |
6038694 | Swallow | Mar 2000 | A |
6173431 | Rittle | Jan 2001 | B1 |
Number | Date | Country |
---|---|---|
0 987 918 | Mar 2000 | EP |
Number | Date | Country | |
---|---|---|---|
20050071131 A1 | Mar 2005 | US |