Can this checksum algorithm be improved? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T06:03:14Z http://stackoverflow.com/feeds/question/1045183 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved 3 Can this checksum algorithm be improved? markdrayton 2009-06-25T17:23:52Z 2009-06-26T18:22:36Z <p>We have a very old, unsupported program which copies files across SMB shares. It has a checksum algorithm to determine if the file contents have changed before copying. The algorithm seems easily fooled -- we've just found an example where two files, identical except a single '1' changing to a '2', return the same checksum. Here's the algorithm:</p> <pre><code>unsigned long GetFileCheckSum(CString PathFilename) { FILE* File; unsigned long CheckSum = 0; unsigned long Data = 0; unsigned long Count = 0; if ((File = fopen(PathFilename, "rb")) != NULL) { while (fread(&amp;Data, 1, sizeof(unsigned long), File) != FALSE) { CheckSum ^= Data + ++Count; Data = 0; } fclose(File); } return CheckSum; } </code></pre> <p>I'm not much of a programmer (I am a sysadmin) but I know an XOR-based checksum is going to be pretty crude. What're the chances of this algorithm returning the same checksum for two files of the same size with different contents? (I'm not expecting an exact answer, "remote" or "quite likely" is fine.)</p> <p>How could it be improved without a huge performance hit?</p> <p>Lastly, what's going on with the <code>fread()</code>? I had a quick scan of the documentation but I couldn't figure it out. Is <code>Data</code> being set to each byte of the file in turn? <em>Edit</em>: okay, so it's reading the file into <code>unsigned long</code> (let's assume a 32-bit OS here) chunks. What does each chunk contain? If the contents of the file are <code>abcd</code>, what is the value of <code>Data</code> on the first pass? Is it (in Perl):</p> <pre><code>(ord('a') &lt;&lt; 24) &amp; (ord('b') &lt;&lt; 16) &amp; (ord('c') &lt;&lt; 8) &amp; ord('d') </code></pre> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1045243#1045243 2 Answer by schnaader for Can this checksum algorithm be improved? schnaader 2009-06-25T17:36:56Z 2009-06-25T17:55:45Z <p>You could easily improve the algorithm by using a formula like this one:</p> <pre><code>Checksum = (Checksum * a + Data * b) + c; </code></pre> <p>If a, b and c are large primes, this should return good results. After this, rotating (not shifting!) the bits of checksum will further improve it a bit.</p> <p>Using primes, this is a similar algorithm to that used for <a href="http://en.wikipedia.org/wiki/Linear%5Fcongruential%5Fgenerator" rel="nofollow">Linear congruential generators</a> - it guarantees long periods and good distribution.</p> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1045253#1045253 0 Answer by Jherico for Can this checksum algorithm be improved? Jherico 2009-06-25T17:39:23Z 2009-06-25T17:48:27Z <p>I seems like your algorithm makes no effort to deal with files that are not an exact multiple of 4 bytes in size. The return value of fread is not a boolean but the number of bytes actually read, which will differ from 4 in the case of an EOF or if an error occurred. You are checked for neither, but simply assuming that if it didn't return 0, you have 4 valid bytes in 'data' which which to calculate your hash.</p> <p>If you really want to use a hash, I'd recommend several things. First, use a simple cryptographic hash like MD5, not CRC32. CRC32 is decent for checking data validity, but for spanning a file system and ensuring no collisions, its not as great a tool because of the birthday paradox mentioned in the comments elsewhere. Second, don't write the function yourself. Find an existing implementation. Finally, consider simply using rsync to replicate files instead of rolling your own solution.</p> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1045262#1045262 0 Answer by BCS for Can this checksum algorithm be improved? BCS 2009-06-25T17:41:28Z 2009-06-25T17:41:28Z <p>The <code>fread</code> bit is reading in the file one chunk at a time. Each chunk is the size of a long (in c this is not a well defined size but you can assume 32 or 64 bits). Depending on how it gets buffered, this might not be to bad. OTOH, reading a larger chunk into an array and looping over it might be a lot faster.</p> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1045265#1045265 6 Answer by Robert Harvey for Can this checksum algorithm be improved? Robert Harvey 2009-06-25T17:43:31Z 2009-06-25T18:30:43Z <p><a href="http://en.wikipedia.org/wiki/MD5" rel="nofollow">MD5</a> is commonly used to verify the integrity of transfer files. Source code is readily available in c++. It is widely considered to be a fast and accurate algorithm.</p> <p>See also <a href="http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm">http://stackoverflow.com/questions/122982/robust-and-fast-checksum-algorithm</a></p> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1045268#1045268 0 Answer by sylvarking for Can this checksum algorithm be improved? sylvarking 2009-06-25T17:44:27Z 2009-06-25T17:44:27Z <p>Even "expensive" cryptographic hash functions usually require multiple iterations to take significant amounts of time. Although no longer recommended for cryptographic purposes, where users would deliberately try to create collisions, functions like SHA1 and MD5 are widely available and suitable for this purpose.</p> <p>If a smaller hash value is needed, CRC is alright, but not great. A <em>n</em>-bit CRC will fail to detect a small fraction of changes that are longer than <em>n</em> bits. For example, suppose just a single dollar amount in a file is changed, from $12,345 to $34,567. A 32-bit CRC might miss that change.</p> <p>Truncating the result of a longer cryptographic hash will detect changes more reliably than a CRC.</p> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1045287#1045287 0 Answer by Nick D for Can this checksum algorithm be improved? Nick D 2009-06-25T17:50:44Z 2009-06-25T17:50:44Z <pre><code>{ CheckSum ^= Data + ++Count; Data = 0; } </code></pre> <p>I don't think "++Count" do much work. The code is equivalent with</p> <pre><code>{ CheckSum ^= Data; } </code></pre> <p>XORing a sequence of bytes is not enough. Especially with text files.<br><br> I suggest to use a <a href="http://en.wikipedia.org/wiki/Hash%5Ffunction" rel="nofollow">hash function</a>.</p> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1045330#1045330 3 Answer by Hasturkun for Can this checksum algorithm be improved? Hasturkun 2009-06-25T17:58:49Z 2009-06-25T17:58:49Z <p>I'd suggest you take a look at <a href="http://en.wikipedia.org/w/index.php?title=Fletcher%27s%5Fchecksum" rel="nofollow">Fletcher's checksum</a>, specifically fletcher-32, which ought to be fairly fast, and detect various things the current XOR chain would not.</p> http://stackoverflow.com/questions/1045183/can-this-checksum-algorithm-be-improved/1046467#1046467 0 Answer by stuartreynolds for Can this checksum algorithm be improved? stuartreynolds 2009-06-25T22:00:20Z 2009-06-26T18:22:36Z <p>SHA-1 and (more recently SHA-2) provide excellent hashing functions and I believe as slowly supplanting MD5 due to better hashing properties. All of them (md2, sha, etc...) have efficient implementations and return a hash of a buffer that is several characters long (although always a fixed length). are provably more reliable than reducing a hash to an integer. If I had my druthers, I'd use SHA-2. Follow <a href="http://en.wikipedia.org/wiki/SHA%5Fhash%5Ffunctions" rel="nofollow">this link</a> for libraries that implement SHA checksums. </p> <p>If you don't want to compile in those libraries, linux (and probably cygwin) has the following executables: md5sum, sha1sum, sha224sum, sha256sum, sha384sum, sha512sum; to which you can provide your file and they will print out the checksum as a hex string. You can use popen to execute those programs -- with something like this:</p> <pre><code>const int maxBuf=1024; char buf[maxBuf]; FILE* f = popen( "sha224sum myfile", "w" ); int bytesRead = f.read( buf, maxBuf ); fclose( f ); </code></pre> <p>Obviously this will run quite a lot slower, but makes for a useful first pass. If speed is an issue, given that file hashing operations like this and I/O bound (memory and disk access will be you bottlenecks), I'd expect all of this algorithms to run about as fast a one that produces an unsigned int. Perl and Python also come with implementations of MD5 SHA1 and SHA2 and will probably run as fast as in C/C++.</p>