Login| Sign Up| Help| Contact|

Patent Searching and Data


Title:
PARALLEL PROCESSING OF HASH FUNCTIONS
Document Type and Number:
WIPO Patent Application WO/2015/179942
Kind Code:
A1
Abstract:
Input data can be split into data components that can each have a length equal to a machine word size of a processor capable of parallel processing. Hash components can be selected to have a length equal to the length of the data components. A bitwise hashing function can be performed, in which each data component is hashed with a respective different one of the hash components. A representation of the hash components can be output as the hash. The bitwise hashing function can include an exclusive-or operation and a multiplication and can be a modified Fowler-Noll-Vo hashing function, such as a modified FNV-1a function.

Inventors:
TRUTA COSMIN (CA)
Application Number:
PCT/CA2014/000461
Publication Date:
December 03, 2015
Filing Date:
May 27, 2014
Export Citation:
Click for automatic bibliography generation   Help
Assignee:
TSX INC (CA)
International Classes:
G06F7/48; G06F7/00; G06F9/38
Foreign References:
US8627097B22014-01-07
US20100215280A12010-08-26
US7145911B22006-12-05
Attorney, Agent or Firm:
SMITH, Ryan T. et al. (1300 Yonge StreetSuite 50, Toronto Ontario M4T 1X3, CA)
Download PDF:
Claims:
What is claimed is:

1. A method of computing a hash, the method comprising:

initializing the hash to an initial value;

receiving input data;

splitting the input data into data components;

performing an exclusive-or operation on each data component and a respective hash component of the hash, and multiplying each respective hash component by a predefined constant; and

outputting a representation of the hash components as the hash.

2. The method of claim 1 further comprising:

splitting the input data into blocks; and

initializing a plurality of hashes, one hash for each block;

wherein splitting the input data into data components comprises splitting each block into data components, and wherein the exclusive-or operation and the multiplying are performed for each block using a different one of the hashes.

3. The method of claim 1 or 2, wherein the splitting comprises providing each of the data components with a length equal to a machine word size of an execution unit of a processor.

4. The method of any one of claims 1 to 3, comprising using a plurality of parallel execution units of a processor to perform the exclusive-or operation and the multiplying.

5. The method of any one of claims 1 to 4, wherein each data component is longer than one byte, each hash component is longer than one byte, and the exclusive-or operation and the multiplying are performed in a non-bytewise manner.

6. The method of any one of claims 1 to 5, further comprising folding together the hash components to obtain the hash.

7. A method of computing a hash, the method comprising: splitting input data into data components, each data component having a length equal to a machine word size of an execution unit of a processor, wherein the machine word size is greater than one byte;

providing hash components of length equal to the length of each data component;

parallel performing a bitwise hashing function, in which each data component is hashed with a respective different one of the hash components; and

outputting a representation of the hash components as the hash.

8. The method of claim 7 comprising performing the splitting, providing, parallel performing, and outputting for each block of an input data stream.

9. The method of claim 7 or 8, further comprising folding together the hash components to obtain the hash.

10. The method of any one of claims 7 to 9, wherein the bitwise hashing function comprises an exclusive-or operation and a multiplication.

11. A computer comprising:

memory configured to store input data;

a processor having a plurality of parallel execution units, each execution unit having a machine word size;

the processor configured to:

split the input data into data components, each data component having a length equal to the machine word size;

provide hash components of length equal to the length of each data

component;

perform a bitwise hashing function, in which each data component is hashed with a respective different one of the hash components; and

output a representation of the hash components as the hash.

12. The computer of claim 11, wherein the processor is configure to split, provide, perform, and output for each block of an input data stream.

13. The computer of claim 11 or 12, wherein the processor is further configured to fold together the hash components to obtain the hash.

14. The computer of any one of claims 11 to 13, wherein the bitwise hashing function comprises an exclusive-or operation and a multiplication.

Description:
Parallel Processing of Hash Functions

Field

[0001] The present invention relates to computers, more specifically, to computers and methods for performing hash computations.

Background

[0002] Hash functions of a wide variety of types find numerous uses in the computer arts. Hash functions are often used to ensure data integrity during storage, transmission, or retrieval operations. However, such uses tend to be for overhead or insurance purposes and accordingly can reduce overall processing efficiency. Work has been done to reduce the processing cost of hash calculations, yet known techniques continue to fall short, particularly in low-latency applications with high volumes of data.

Summary

[0003] According to one aspect of the present invention, a method of computing a hash includes initializing the hash to an initial value, receiving input data, splitting the input data into data components, performing an exclusive-or operation on each data component and a respective hash component of the hash, and multiplying each respective hash component by a pre-defined constant. The method further includes outputting a representation of the hash components as the hash.

[0004] According to another aspect of the present invention, a method of computing a hash includes splitting input data into data components, each data component having a length equal to a machine word size of an execution unit of a processor, where the machine word size is greater than one byte. The method further includes providing hash components of length equal to the length of each data component and parallel performing a bitwise hashing function, in which each data component is hashed with a respective different one of the hash

components. The method further includes outputting a representation of the hash components as the hash. [0005] According to another aspect of the present invention, a computer includes memory configured to store input data and a processor having a plurality of parallel execution units, each execution unit having a machine word size. The processor is configured to split the input data into data components, each data component having a length equal to the machine word size. The processor is further configured to provide hash components of length equal to the length of each data component and to perform a bitwise hashing function, in which each data component is hashed with a respective different one of the hash components. The processor is further configured to output a representation of the hash components as the hash.

Brief Description of the Drawings

[0006] The drawings illustrate, by way of example only, embodiments of the present invention.

[0007] FIG. 1 is a schematic diagram of a processor and method for computing a hash.

[0008] FIG. 2 is a flowchart of a method of computing the hash.

[0009] FIG. 3 is a schematic diagram showing use of the hash in a low-latency data replication application.

[0010] FIG. 4 is a schematic diagram of another processor for computing the hash. [0011] FIG. 5 is a table of test results. Detailed Description

[0012] The present invention is directed to providing computers and methods for performing hash computations, which may be found to be suitable for low-latency applications such systems designed for data replication via remote peer-to-peer communication, among other uses. Computational parallelism is used to split a hash computation into several parallel computations, which has in the past been found to be difficult or not always possible due to the iterative and byte-wise nature of many known hashing algorithms. Hence, the hashing techniques discussed herein may be found to be fast-executing while providing suitably high collision avoidance for many applications.

[0013] The present invention uses a modified Fowler-Noll-Vo (FNV) hashing function, such as a modified FNV-la hashing function, as an example. Other hashing functions may also be adapted to be used with the presently disclosed techniques, and FNV is not to be taken as limiting. As will be seen from the below description, the present invention can retain collision avoidance characteristics comparable to FNV-la, but with increased speeds of execution.

[0014] With reference to FIG. 1, a computer for performing a hash computation includes a processor 10 and memory 12.

[0015] The memory 12 includes random-access memory (RAM), or other suitable type of memory, capable of storing instructions and data for execution and manipulation by the processor 10. The memory 12 is illustrated as off-chip, however it is contemplated that suitable memory 12 can be provided on the same piece of silicon as the processor 10.

[0016] The processor 10 includes a plurality of parallel execution units 14. Each execution unit (EU) 14 is capable of performing operations independent from the other execution units 14. The execution units 14 may be referred to as cores and the processor 14 may be referred to as a multi-core processor. Each execution unit 14 may have dedicated cache (e.g., level 1 and/or level 2 caches) for storing frequently used instructions and data. In the example illustrated, the processor 14 has four execution units 14 for sake of explanation, and more or fewer execution units are contemplated for other examples.

[0017] The processor 10 may further include shared cache 16 (e.g., level 3 cache) accessible to all execution units 14 for storing frequently used instructions and data, a memory controller 18 for interfacing with the memory 12, and other components that are not shown for sake of clarity. It should be noted that random-access memory 12, shared cache 16, and dedicated caches internal to the execution units 14 are all examples of memory capable of storing instructions and data. [0018] The multi-core processor 10 is but one example of parallel processing architecture and should not be taken as limiting. Other architectures for parallel processing, such as superscalar processors, single instruction multiple data (SIMD) machines, multiprocessing systems, and distributed systems, are contemplated as being suitable for the hashing techniques discussed herein.

[0019] The processor 10 operates on a particular machine word size M. In this example, each execution unit 14 uses the same machine word size M. Examples of machine word sizes M include 32 bits and 64 bits.

[0020] A hash is configured to have a length in bits that is equal to the machine word size M multiplied by a number N of integer operations that can be executed in parallel without significant performance degradation. In the example multi-core processor 10, for sake of explanation, the number N is taken as the number of execution units 14, namely, four. The number N need not be the same as the number of execution units in a multi-core processor. In another example, the number N is selected to be smaller than the number of execution units available, and may be selected to be equal to the number of execution units expected to process hash calculations. The number N may alternatively be pre-defined by pinning one or more hash computing threads or processes to the same number of execution units 14. In an example SIMD machine, the number N is taken to be the length of the SIMD register divided by the machine word size M. Regardless of specific parallel processing architecture, the number N is taken to be greater than 1.

[0021] The hash H is thus represented as a tuple of N machine words of length M: [0022] H = ( Ho , Hi , . . . , H N _ X )

[0023] In the example illustrated in FIG. 1, the hash H is represented by hash components Ho, Hi, H 2 , and H 3 . When four execution units 14 are available [i.e., N = 4) and each has a 64-bit machine word size (i.e., M = 64), the hash size can be taken as 256 bits (i.e., 4 * 64). [0024] The processor 10 is configured to initialize 20 the hash to an initial value. Each component of the hash can be initialized with a different pseudo-arbitrary salt value. This can advantageously reduce the effectiveness of attacks that swap machine words in an input stream. Initializing the hash can be performed in an iterative manner, in which the first component of the hash is set to a first value and each subsequent component is set to a value based on the immediately previous component. Other initialization/salting schemes can be used as well. The following pseudo-code is illustrative:

[0025] Ho : = Ci

for each k = 1 . . . N- l :

H k : = H k _ i * C 2

end for

[0026] The multiplication of the hash component H k -i and constant C 2 can be performed modulo 2 n , where n is the bit length of the hash component, and higher-order bits of the products can be discarded to keep the hash components to the machine word size M. When FNV-la is used, the value of Ci can be selected to be the FNV parameter offset_basis and the value of C 2 can be selected to be the FNV parameter FNV_prime, both of which parameters are widely known. Values of FNV parameters can be obtained at

http://www.isthe.com/chongo/tech/comp/fnv/index.html, among other resources.

[0027] The processor 10 is configured to receive a stream of input data 22 to undergo hashing, and is further configured to split the input data stream 22 into data blocks B. Each block B is selected to have the same length as the hash (e.g., 256 bits). When a data block B is not completely filled, it can be padded with zeroes or other dummy data. The processor 10 further splits 24 each block into the same number and size of components as done with the hash. Thus, a block B is represented as a tuple of N machine words of length M:

[0028] B - ( B 0 , Bi , . . . , B N- 1 ) [0029] In the example illustrated in FIG. 1, the block B is represented by data components Bo, Bi, B 2 , and B 3 . Keeping with the numerical example above, each of the four data

components can be 64 bits in length providing for 256 bits of total data block size.

[0030] The processor 10 is configured to then update each hash component using the respective data component of a block. In the case of FNV-la, the processor 10 performs, at 26, a bitwise exclusive-or operation on each data component (B 0 , Bi, B N -i) and the respective like-indexed hash component (H 0 , Hi, ..., Η Ν .χ) and multiplies the result by a pre-defined constant C 2 . The following pseudo-code is illustrative:

[0031] for each input data block B :

for each k = 0 . . . N- l :

H k : = H k xor B k

H k : = H k * C 2

end for

end for

[0032] The multiplication of the hash component H k and constant C 2 can be performed modulo 2 n , where n is the bit length of the hash component, and higher-order bits of the products can be discarded to keep the hash components to the machine word size M. Further, as mentioned, when FNV-la is used, the value of C 2 can be selected to be the FNV parameter FNV_prime.

[0033] As can be seen from the above, calculating the hash is performed in units of machine word size M, rather than in the byte-by-byte or bytewise manner that is specified in FNV-la. Further, it is contemplated that the machine word size M is greater than one byte, and thus each data component can be longer than one byte and each hash component can be longer than one byte. Hence, the exclusive-or operation and the multiplying can be performed in a non-bytewise manner, that is, on components that are larger than one byte. [0034] Performing the computation of the hash components in this manner uses parallel computing capabilities of the processor 10 to increase the speed of computation of the hash. For each data block, updates to the hash components are performed in parallel by the independent execution units 14.

[0035] The computed hash components can be folded together, at 28, to arrive at a final hash value. This can be performed if it is required to have a hash that is narrower than the combined size of the hash components. An exclusive-or operation can be used to fold at least two hash components together. The following pseudo-code is illustrative:

[0036] Hash : = H 0 xor Hi xor . . . xor H N- i

[0037] A representation of the hash components is output at 30. Such a representation can include two or more of the hash components themselves, two or more of the hash components strung together into a single hash, two or more of the hash components folded together, or similar.

[0038] To perform the above for a plurality of blocks B of the input data stream 22, a plurality of different hashes can be initialized, at 20, one hash H for each block B. Then, splitting the input data into data components involves splitting 24 each block B of data into data components, and the exclusive-or operation and the multiplying, at 26, are performed for each block B using a different one of the initialized hashes. It is contemplated that each data block B is processed serially for a serial stream of input data, however, additional parallelism can be used to parallel process blocks B.

[0039] FIG. 2 is a flowchart describing a method of computing a hash. Like reference numerals indicate like elements, and reference can be made to the above description for further detail. For sake of explanation, the method of FIG. 2 will be described in terms of the processor 10 of FIG. 1, but it should be understood that the method is not limited by specific processors or hardware. [0040] An input stream 22 of data is split 40 into blocks. This can be performed as a continuous or near continuous stream of data arrives. Alternatively, if the data is more static in nature, splitting 40 can be performed for substantially all the data in one operation or as needed. Should a block not be filled completely with data, it can be padded with dummy data, such as a string of zeroes.

[0041] For a particular block of data, a hash made up of hash components is initialized at 20. Constants Ci and C 2 can be used and can be selected to have FNV parameter values, such as offset_basis and FNV_prime, respectively.

[0042] The block of input data is split 24 into data components, one for each hash component. Each data component has a length equal to a machine word size M, which is contemplated to be greater than one byte. The components of the block of data and the hash components can be specified to have the same length.

[0043] An exclusive-or operation 42 is performed on each data component and the respective hash component, and the result is multiplied 44 by a pre-defined constant C 2 , such as FNV prime. The exclusive-or operation and multiplication can be performed in any order, however, it is contemplated that performing the exclusive-or operation first will preserve benefits similar to those that FN V-la has over FNV-1. The components are iterated through, at 46, until all data components and the respective hash components have been processed. It is advantageous that the exclusive-or operation 42 and multiplication 44 are performed in isolation for each data/hash component, as this can make the method amenable to parallel processing. As such, several of the exclusive-or operations 42 and multiplications 44 may be performed at about the same time, with the check at 46 representing a check of whether all parallel operations have been completed. Hence, steps 42 - 46 represent parallel performing of a bitwise hashing function, in which each data component is hashed with a respective different one of the hash components.

Results of the hashing function may be folded together, at 28, before being output [0045] Additional blocks of input data undergo the same process until all data has been hashed, at 48. It is recognized that the method may loop indefinitely, if not halted externally, when applied to a continuous or near continuous stream of input data.

[0046] With reference to FIG. 3, the hash computation techniques described herein may be used as a checksum in a computer system 60 configured for RDMA data replication. Such a computer system 60 may be applied to financial order/transaction failover, in which a primary server 62 replicates instructions and data to a secondary server 64 that becomes active during failure of the primary server 62. The primary and secondary servers 62, 64 may be

communicatively connected via a high-speed serial link 66, such as a Peripheral Component Interconnect Express (PCIe) bus.

[0047] The primary server 62 can be configured to receive one or more streams of input data 22, containing data and instructions for processing such data, and to split input data into blocks B. The primary server 62 is further configured to perform a hash computation on blocks B, as discussed elsewhere herein, to obtain hashes H. The primary server 62 stores blocks along with the computed hashes in memory 70. The primary server 62 is further configured to replicate blocks B to the secondary server 64 via the link 66. The primary server 62 may also be configured to execute instructions on data contained in the blocks B, such as resting orders, matching orders, executing trades, among other financial data operations.

[0048] The secondary server 64 is configured to receive blocks B and store such in memory 72. The secondary server 64 is further configured to compute hashes H for blocks B, as discussed elsewhere herein, and to respond to each block B sent by the primary server 62 with a respective hash H as a transmission checksum. Thus, by comparing stored hashes H to received hashes H, the primary server 62 can check whether blocks B were properly

transmitted to the secondary server 64, and trigger retransmission any block B that fails the checksum.

[0049] The primary server 62 may either delete or maintain the stored hashes H after successful confirmation of transmission has been determined. The secondary server 64 may store computed hashes H in memory 72. Further, the primary server 62 and secondary server 64 may be made functionally identical, so that during failover all instruction execution, replication operations, and checksum operations persist.

[0050] Because the hashing techniques described herein can be calculated at high speed, the effect on the system 60 is an overall reduction in potential latency by way of a reduced chance that checksum operations will result in a bottleneck and by a reduced processing load in calculating checksums. Further, high collision avoidance is maintained, which helps ensure data integrity during replication for failover purposes.

[0051] FIG. 4 shows a diagram of another processor 80 suitable for the hashing

computations discussed herein. The processor 80 may be particularly suitable for use in the servers 62, 64 of the system 60 (FIG. 3). The processor 80 includes 12 execution units 82 and may be referred to as a 12-core processor. The processor 80 can further include shared cache 84, such as level 3 cache, as well as memory controllers 86 and point-to-point processor interconnect (PI) 88. Further, the processor 80 may also include a PCIe bus 90 for

communication with peripherals and communication, such as RDMA, between processors 80 of different servers 62, 64. The processor 80 may be of the type sold by Intel Corporation under the name Xeon.

[0052] It is contemplated that the hash computations discussed herein can be

implemented via a process or thread which may be pinned (locked) to an execution unit (core) of a suitable processor 10, 80, provided that the processor and operating system support such feature. For example, a process or thread that performs hash computations can be pinned to a selected number of execution units, and this number can be taken as the value of N discussed above.

[0053] FIG. 5 shows results of a performance test of the hash computation discussed above. The implementation tested used a 256-bit block size with a machine word size of 64 bits. The tests were conducted on a 3 GHz Intel Xeon processor and the process was pinned to execute on a single core. Tests were performed on large buffers and small buffers. The large buffer occupied 256 kibibytes and the small buffer occupied 16 bytes. The SMHasher test suite (See http://code.google.eom/p/smhasher/) was used to compare the hash computation with existing methods. As shown at 100, the 256-bit implementation of the present hash

computation is the fastest of the techniques tested on both aligned and unaligned large buffers, and comparably fast on the small buffer.

[0054] In view of the above, it should be apparent that the present hashing techniques allow for fast hash calculation with high collision avoidance. The known manner of byte-wise iteration can be dropped in favor of the disclose techniques that advantageously exploit parallel processing capabilities of modern processors by aligning hash computations to machine word size. Parallel operating execution units can be used to process components of a hash

independently. Such hash computations can provide a checksum suitable to meet the demands of low-latency RDMA replication of data.

[0055] While the foregoing provides certain non-limiting example embodiments, it should be understood that combinations, subsets, and variations of the foregoing are contemplated. The monopoly sought is defined by the claims.