1. Field of the Invention
The present invention relates to systems and methods for checking the validity of electronic data transmission, and particularly to a system and method for checking the validity of data transmission through a network according to a checksum mechanism.
2. Prior art of the invention
In any communication system, it is desirable to detect data transmission errors. Each packet transmitted across a communications network between nodes contain data and a header that describes the data. In a typical communications system utilizing Internet Protocol (IP), a sending computer or node transmits the header and the data to one or more receiving computers or nodes. The header contains a checksum and other components. The checksum generated by the sending node is for examining the data, and the receiving node uses it to determine whether any errors were introduced into the data during transmission. In order to generate the header, the sending node must read all the data. This usually requires the sending node to examine every byte of the data twice, once to generate the checksum and again to transmit the data.
Presently, a checksum mechanism is usually used to check whether the data have been interfered with during the data transmission. For example, the transmission communication protocol (TCP) uses a checksum to protect the data which is transmitted. This checksum is located in the TCP header of the Internet datagram packet. As described above, all of the data must be examined before the data can begin to be transmitted. This results in two adverse consequences. First, all of the bytes of data must be read twice, once to generate the checksum, and again to transmit the data. This cuts down the maximum throughput possible for this protocol. Second, the beginning of the data cannot be transmitted until the end of the data is known. This adds to the latency of transmission.
U.S. Pat. No. 5,815,516 issued on Sep. 29, 1998 and entitled “Method And Apparatus For Producing Transmission Control Protocol Checksums Using Internet Protocol Fragmentation” discloses a method and apparatus for producing transmission control protocol (TCP) checksums using IP fragmentation. The TCP uses a checksum to protect the data which is transmitted. This checksum is located in the TCP header of the Internet datagram packet. In the disclosed method, a TCP module receives a data packet to be transmitted, and prepares a first IP data fragment without a checksum for the received data packet. The first IP data fragment is transmitted. During the transmission of the first IP data fragment, a checksum is generated. Then an IP header fragment including the generated checksum is transmitted.
However, there is nothing known in the art which can check error data generated when data bits exchange places; that is, when data in two or more data bytes is out of order. This can occur when the data transmission through the network is interfered with in some way. The above-mentioned solutions cannot reliably check for such error data. A system and method for checking the validity of data transmission which can overcome the above-mentioned problem is desired.
Accordingly, a main objective of the present invention is to provide a system and method for checking the validity of data transmission, and particularly for checking whether data are out of order due to interference occurring during transmission of the data over a network.
To accomplish the above objective, a system for checking the validity of data transmission in accordance with a preferred embodiment of the present invention comprises a data transmitting computer, a data receiving computer, and a network.
The data transmitting computer is provided for generating a check-code of original data, and sending a data packet, which comprises the original data and the check-code, to the data receiving computer via the network. The data transmitting computer comprises a Central Processing Unit (CPU), a Peripheral Component Interface (PCI) bus, and a memory. The CPU comprises: a shift operation unit for performing a shift operation on data units of the original data; an addition operation unit for adding data in all data units after the shift operation to obtain a checksum1, according to an addition rule: adding each bit of one data unit to corresponding each bit of another data unit; a complement operation unit for calculating a 2's complement of the last 2m bytes of the checksum1 to obtain a check-code, wherein “m” represents the number “0” or any natural number; and a control unit for reading the original data from the memory via the PCI bus, and sending a data packet including the original data and the check-code to the data receiving computer. The memory stores the original data to be sent to the data transmitting computer.
The data receiving computer is provided for receiving the data packet from the data transmitting computer, and checking and determining whether the data packet is valid. The data receiving computer comprises a CPU. The CPU comprises: a shift operation unit for performing a shift operation on the data units of the original data unpacked from the received data packet; an addition operation unit for adding the data units after the shift operation to obtain a checksum2, and adding the last 2m bytes of the checksum2 to the check-code from the received data packet to obtain a checksum3; and a control unit for determining whether the data packet from the data transmitting computer is valid by checking whether the last 2m bytes of the checksum3 equal “0.”
Further, the present invention provides a method for checking the validity of data transmission using the above-described system, the method comprising the steps of: (a) reading original data; (b) performing a shift operation on data units of the original data according to a shift operation rule; (c) adding all data of the data units after the shift operation to obtain a checksum1; (d) regarding the last 2m bytes of the checksum1 as a checksum11, and calculating a 2's complement of the checksum11 to obtain a check-code; (e) packing the check-code with the original data into a data packet; (f) sending the data packet to the data receiving computer via the network; (g) receiving the data packet from the data transmitting sending computer; (h) unpacking the data packet to obtain the original data and the check-code; (i) performing a shift operation on data units of the unpacked original data according to the shift operation rule; (j) adding all data of the data units after the shift operation of the immediately preceding step to obtain a checksum2; (k) regarding the last 2m bytes of the checksum2 as a checksum22, and adding the checksum22 to the check-code from the data packet to obtain a checksum3; (1) regarding the last 2m bytes of the checksum3 as a checksum33; (m) determining whether the data packet from the data transmitting computer is valid by checking whether the checksum33 equals “0”; and (n) accepting the valid data packet if the checksum33 equals “0”; or sending a request for resending of the data packet to the data transmitting computer if the checksum33 does not equal “0.”
In summary, the system and method for checking the validity of data transmission can reliably check whether the data are valid. That is, whether of not interfering factors during transmission through the network have caused any data bits to exchange places.
Other objects, advantages and novel features of the present invention will be drawn from the following detailed description with reference to the attached drawings, in which:
The check-code contains 2m bytes, wherein “m” represents the number “0” or any natural number. That is, the check-code may be 1 byte, 2 bytes, 4 bytes, etc. In such case, the shift operation unit 111 shifts all the data units with a cycle of “2m” bytes, namely 8*2m bits. The shift operation may be either a left shift operation or a right shift operation. The left shift operation on the data unit(N-1) can be expressed as “2mByte(N-1)<<Mod (N−1, 8*2m),” in which the operator “<<” represents the left shift operation, and “Mod” is the abbreviation of “modulus.” Mod (N−1, 8*2m) represents a remainder produced by N−1 being divided by 8*2m, and means a digit by which the data unit(N-1) is left shifted. In comparison, the right shift operation on the data unit(N-1) can be expressed as “2m Byte(N-1)>>Mod(N−1, 8*2m),” in which the operator “>>” represents the right shift operation.
The data receiving computer 2 receives and checks the data packet from the data transmitting computer 1, in order to determine whether the data packet is valid. The data receiving computer 2 comprises a CPU 21. The CPU 21 comprises a shift operation unit 211, an addition operation unit 212, and a control unit 213. The shift operation unit 211 performs a shift operation on unpacked data units of the original data of the received data packet. The shift operation may be either a left shift operation or a right shift operation. The addition operation unit 212 adds the data units after the shift operation to obtain a checksum2, and further adds the last 2m bytes of the checksum2 to the check-code from the data packet to obtain a checksum3. The control unit 213 determines whether the data packet from the data transmitting computer 1 is valid by checking whether the last 2m bytes of the checksum3 equal “0.” If the last 2m bytes of the checksum3 equal “0,” the data receiving computer 2 accepts the data packet. In contrast, if the last 2m bytes of the checksum3 do not equal “0,” the data receiving computer 2 considers the data packet as being invalid, and sends a request for resending of the data packet to the data transmitting computer 1.
The following describes an example of implementing the system. A plurality of the following data bytes are ready to be sent: “45h,” “7Eh,” “33h,” “51h,” “BCh,” “20h,” “11h,” “08h,” “6Fh,” “4Ah,” “59h” and “09h” (h expresses a hexadecimal number). First, the shift operation unit 111 left shifts the data bytes. That is, 45h<<0, 7Eh<<1, 33h<<2, 51h<<3, BCh<<4, 20h<<5, 11h<<6, 08h<<7, 6Fh<<0, 4Ah<<1, 59h<<2, and 09h<<3. The addition operation unit 112 adds the data bytes to obtain a checksum1. That is, the checksum1=45h<<0+7Eh<<1+33h<<2+51h<<3+BCh<<4+20h<<5+11 h<<6+08h<<7+6Fh<<0+4Ah<<1+59h<<2+0 9h<<3=55Eh. The control unit 114 regards the last 8 bits of the checksum1 as a checksum11; that is, the checksum11=5Eh. The complement operation unit 113 calculates a 2's complement of the checksum11 to obtain a check-code. In this example, the check-code=A2h. Then, the control unit 114 packs the data bytes and the check-code “A2h” into a data packet, and sends the data packet to the data receiving computer 2 via the network 3. Now assume that the data bytes “33h” and “20h,” and the data bytes “7Eh” and “09h,” exchange places during the transmission. This can occur due to one or more factors such as interference on the network 3.
The data receiving computer 2 receives and unpacks the received data packet to obtain the data bytes and the check-code: “45h,” “09h,” “20h,” “51h,” “BCh,” “33h,” “11h,” “08h,” “6Fh,” “4Ah,” “59h,” “7Eh,” and “A2h.” The shift operation unit 211 left shifts the data bytes to obtain a checksum2. That is, the checksum2=45h<<0+09h<<1+20h<<2+51 h<<3+BCh<<4+33h<<5+11 h<<6+08h<<7+6Fh<<0+4Ah<<1+59h<<2+7Eh<<3=4 35h. The control unit 213 regards the last 8 bits of the checksum2 as a checksum22; that is, the checksum22=35h. The addition operation unit 212 adds the check-code and the checksum22 to obtain a checksum3; that is, the checksum3=check-code+checksum22=A2h+35h=D7h. Obviously, the last 8 bits of the checksum3 do not equal “0.” Therefore the control unit 213 regards the received data packet as being invalid. Then, the receiving computer 2 sends a request for resending of the data packet to the data transmitting computer 1.
Although the present invention has been specifically described on the basis of a preferred embodiment and preferred method, the invention is not to be construed as being limited thereto. Various changes or modifications may be made to the embodiment and method without departing from the scope and spirit of the invention.
Number | Date | Country | Kind |
---|---|---|---|
93109875 | Sep 2004 | TW | national |