crc.txt
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:87k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. +++Date last modified: 05-Jul-1997
  2. =============================================================================
  3. A PAINLESS GUIDE TO CRC ERROR DETECTION ALGORITHMS
  4. ==================================================
  5. "Everything you wanted to know about CRC algorithms, but were afraid
  6. to ask for fear that errors in your understanding might be detected."
  7. Version : 3.
  8. Date    : 19 August 1993.
  9. Author  : Ross N. Williams.
  10. Net     : ross@guest.adelaide.edu.au.
  11. FTP     : ftp.adelaide.edu.au/pub/rocksoft/crc_v3.txt
  12. Company : Rocksoft^tm Pty Ltd.
  13. Snail   : 16 Lerwick Avenue, Hazelwood Park 5066, Australia.
  14. Fax     : +61 8 373-4911 (c/- Internode Systems Pty Ltd).
  15. Phone   : +61 8 379-9217 (10am to 10pm Adelaide Australia time).
  16. Note    : "Rocksoft" is a trademark of Rocksoft Pty Ltd, Australia.
  17. Status  : Copyright (C) Ross Williams, 1993. However, permission is
  18.           granted to make and distribute verbatim copies of this
  19.           document provided that this information block and copyright
  20.           notice is included. Also, the C code modules included
  21.           in this document are fully public domain.
  22. Thanks  : Thanks to Jean-loup Gailly (jloup@chorus.fr) and Mark Adler
  23.           (me@quest.jpl.nasa.gov) who both proof read this document
  24.           and picked out lots of nits as well as some big fat bugs.
  25. Table of Contents
  26. -----------------
  27.     Abstract
  28.  1. Introduction: Error Detection
  29.  2. The Need For Complexity
  30.  3. The Basic Idea Behind CRC Algorithms
  31.  4. Polynomial Arithmetic
  32.  5. Binary Arithmetic with No Carries
  33.  6. A Fully Worked Example
  34.  7. Choosing A Poly
  35.  8. A Straightforward CRC Implementation
  36.  9. A Table-Driven Implementation
  37. 10. A Slightly Mangled Table-Driven Implementation
  38. 11. "Reflected" Table-Driven Implementations
  39. 12. "Reversed" Polys
  40. 13. Initial and Final Values
  41. 14. Defining Algorithms Absolutely
  42. 15. A Parameterized Model For CRC Algorithms
  43. 16. A Catalog of Parameter Sets for Standards
  44. 17. An Implementation of the Model Algorithm
  45. 18. Roll Your Own Table-Driven Implementation
  46. 19. Generating A Lookup Table
  47. 20. Summary
  48. 21. Corrections
  49.  A. Glossary
  50.  B. References
  51.  C. References I Have Detected But Haven't Yet Sighted
  52. Abstract
  53. --------
  54. This document explains CRCs (Cyclic Redundancy Codes) and their
  55. table-driven implementations in full, precise detail. Much of the
  56. literature on CRCs, and in particular on their table-driven
  57. implementations, is a little obscure (or at least seems so to me).
  58. This document is an attempt to provide a clear and simple no-nonsense
  59. explanation of CRCs and to absolutely nail down every detail of the
  60. operation of their high-speed implementations. In addition to this,
  61. this document presents a parameterized model CRC algorithm called the
  62. "Rocksoft^tm Model CRC Algorithm". The model algorithm can be
  63. parameterized to behave like most of the CRC implementations around,
  64. and so acts as a good reference for describing particular algorithms.
  65. A low-speed implementation of the model CRC algorithm is provided in
  66. the C programming language. Lastly there is a section giving two forms
  67. of high-speed table driven implementations, and providing a program
  68. that generates CRC lookup tables.
  69. 1. Introduction: Error Detection
  70. --------------------------------
  71. The aim of an error detection technique is to enable the receiver of a
  72. message transmitted through a noisy (error-introducing) channel to
  73. determine whether the message has been corrupted. To do this, the
  74. transmitter constructs a value (called a checksum) that is a function
  75. of the message, and appends it to the message. The receiver can then
  76. use the same function to calculate the checksum of the received
  77. message and compare it with the appended checksum to see if the
  78. message was correctly received. For example, if we chose a checksum
  79. function which was simply the sum of the bytes in the message mod 256
  80. (i.e. modulo 256), then it might go something as follows. All numbers
  81. are in decimal.
  82.    Message                    :  6 23  4
  83.    Message with checksum      :  6 23  4 33
  84.    Message after transmission :  6 27  4 33
  85. In the above, the second byte of the message was corrupted from 23 to
  86. 27 by the communications channel. However, the receiver can detect
  87. this by comparing the transmitted checksum (33) with the computer
  88. checksum of 37 (6 + 27 + 4). If the checksum itself is corrupted, a
  89. correctly transmitted message might be incorrectly identified as a
  90. corrupted one. However, this is a safe-side failure. A dangerous-side
  91. failure occurs where the message and/or checksum is corrupted in a
  92. manner that results in a transmission that is internally consistent.
  93. Unfortunately, this possibility is completely unavoidable and the best
  94. that can be done is to minimize its probability by increasing the
  95. amount of information in the checksum (e.g. widening the checksum from
  96. one byte to two bytes).
  97. Other error detection techniques exist that involve performing complex
  98. transformations on the message to inject it with redundant
  99. information. However, this document addresses only CRC algorithms,
  100. which fall into the class of error detection algorithms that leave the
  101. data intact and append a checksum on the end. i.e.:
  102.       <original intact message> <checksum>
  103. 2. The Need For Complexity
  104. --------------------------
  105. In the checksum example in the previous section, we saw how a
  106. corrupted message was detected using a checksum algorithm that simply
  107. sums the bytes in the message mod 256:
  108.    Message                    :  6 23  4
  109.    Message with checksum      :  6 23  4 33
  110.    Message after transmission :  6 27  4 33
  111. A problem with this algorithm is that it is too simple. If a number of
  112. random corruptions occur, there is a 1 in 256 chance that they will
  113. not be detected. For example:
  114.    Message                    :  6 23  4
  115.    Message with checksum      :  6 23  4 33
  116.    Message after transmission :  8 20  5 33
  117. To strengthen the checksum, we could change from an 8-bit register to
  118. a 16-bit register (i.e. sum the bytes mod 65536 instead of mod 256) so
  119. as to apparently reduce the probability of failure from 1/256 to
  120. 1/65536. While basically a good idea, it fails in this case because
  121. the formula used is not sufficiently "random"; with a simple summing
  122. formula, each incoming byte affects roughly only one byte of the
  123. summing register no matter how wide it is. For example, in the second
  124. example above, the summing register could be a Megabyte wide, and the
  125. error would still go undetected. This problem can only be solved by
  126. replacing the simple summing formula with a more sophisticated formula
  127. that causes each incoming byte to have an effect on the entire
  128. checksum register.
  129. Thus, we see that at least two aspects are required to form a strong
  130. checksum function:
  131.    WIDTH: A register width wide enough to provide a low a-priori
  132.           probability of failure (e.g. 32-bits gives a 1/2^32 chance
  133.           of failure).
  134.    CHAOS: A formula that gives each input byte the potential to change
  135.           any number of bits in the register.
  136. Note: The term "checksum" was presumably used to describe early
  137. summing formulas, but has now taken on a more general meaning
  138. encompassing more sophisticated algorithms such as the CRC ones. The
  139. CRC algorithms to be described satisfy the second condition very well,
  140. and can be configured to operate with a variety of checksum widths.
  141. 3. The Basic Idea Behind CRC Algorithms
  142. ---------------------------------------
  143. Where might we go in our search for a more complex function than
  144. summing? All sorts of schemes spring to mind. We could construct
  145. tables using the digits of pi, or hash each incoming byte with all the
  146. bytes in the register. We could even keep a large telephone book
  147. on-line, and use each incoming byte combined with the register bytes
  148. to index a new phone number which would be the next register value.
  149. The possibilities are limitless.
  150. However, we do not need to go so far; the next arithmetic step
  151. suffices. While addition is clearly not strong enough to form an
  152. effective checksum, it turns out that division is, so long as the
  153. divisor is about as wide as the checksum register.
  154. The basic idea of CRC algorithms is simply to treat the message as an
  155. enormous binary number, to divide it by another fixed binary number,
  156. and to make the remainder from this division the checksum. Upon
  157. receipt of the message, the receiver can perform the same division and
  158. compare the remainder with the "checksum" (transmitted remainder).
  159. Example: Suppose the message consisted of the two bytes (6,23) as
  160. in the previous example. These can be considered to be the hexadecimal
  161. number 0617 which can be considered to be the binary number
  162. 0000-0110-0001-0111. Suppose that we use a checksum register one-byte
  163. wide and use a constant divisor of 1001, then the checksum is the
  164. remainder after 0000-0110-0001-0111 is divided by 1001. While in this
  165. case, this calculation could obviously be performed using common
  166. garden variety 32-bit registers, in the general case this is messy. So
  167. instead, we'll do the division using good-'ol long division which you
  168. learnt in school (remember?). Except this time, it's in binary:
  169.           ...0000010101101 = 00AD =  173 = QUOTIENT
  170.          ____-___-___-___-
  171. 9= 1001 ) 0000011000010111 = 0617 = 1559 = DIVIDEND
  172. DIVISOR   0000.,,....,.,,,
  173.           ----.,,....,.,,,
  174.            0000,,....,.,,,
  175.            0000,,....,.,,,
  176.            ----,,....,.,,,
  177.             0001,....,.,,,
  178.             0000,....,.,,,
  179.             ----,....,.,,,
  180.              0011....,.,,,
  181.              0000....,.,,,
  182.              ----....,.,,,
  183.               0110...,.,,,
  184.               0000...,.,,,
  185.               ----...,.,,,
  186.                1100..,.,,,
  187.                1001..,.,,,
  188.                ====..,.,,,
  189.                 0110.,.,,,
  190.                 0000.,.,,,
  191.                 ----.,.,,,
  192.                  1100,.,,,
  193.                  1001,.,,,
  194.                  ====,.,,,
  195.                   0111.,,,
  196.                   0000.,,,
  197.                   ----.,,,
  198.                    1110,,,
  199.                    1001,,,
  200.                    ====,,,
  201.                     1011,,
  202.                     1001,,
  203.                     ====,,
  204.                      0101,
  205.                      0000,
  206.                      ----
  207.                       1011
  208.                       1001
  209.                       ====
  210.                       0010 = 02 = 2 = REMAINDER
  211. In decimal this is "1559 divided by 9 is 173 with a remainder of 2".
  212. Although the effect of each bit of the input message on the quotient
  213. is not all that significant, the 4-bit remainder gets kicked about
  214. quite a lot during the calculation, and if more bytes were added to
  215. the message (dividend) it's value could change radically again very
  216. quickly. This is why division works where addition doesn't.
  217. In case you're wondering, using this 4-bit checksum the transmitted
  218. message would look like this (in hexadecimal): 06172 (where the 0617
  219. is the message and the 2 is the checksum). The receiver would divide
  220. 0617 by 9 and see whether the remainder was 2.
  221. 4. Polynomial Arithmetic
  222. -------------------------
  223. While the division scheme described in the previous section is very
  224. very similar to the checksumming schemes called CRC schemes, the CRC
  225. schemes are in fact a bit weirder, and we need to delve into some
  226. strange number systems to understand them.
  227. The word you will hear all the time when dealing with CRC algorithms
  228. is the word "polynomial". A given CRC algorithm will be said to be
  229. using a particular polynomial, and CRC algorithms in general are said
  230. to be operating using polynomial arithmetic. What does this mean?
  231. Instead of the divisor, dividend (message), quotient, and remainder
  232. (as described in the previous section) being viewed as positive
  233. integers, they are viewed as polynomials with binary coefficients.
  234. This is done by treating each number as a bit-string whose bits are
  235. the coefficients of a polynomial. For example, the ordinary number 23
  236. (decimal) is 17 (hex) and 10111 binary and so it corresponds to the
  237. polynomial:
  238.    1*x^4 + 0*x^3 + 1*x^2 + 1*x^1 + 1*x^0
  239. or, more simply:
  240.    x^4 + x^2 + x^1 + x^0
  241. Using this technique, the message, and the divisor can be represented
  242. as polynomials and we can do all our arithmetic just as before, except
  243. that now it's all cluttered up with Xs. For example, suppose we wanted
  244. to multiply 1101 by 1011. We can do this simply by multiplying the
  245. polynomials:
  246. (x^3 + x^2 + x^0)(x^3 + x^1 + x^0)
  247. = (x^6 + x^4 + x^3
  248.  + x^5 + x^3 + x^2
  249.  + x^3 + x^1 + x^0) = x^6 + x^5 + x^4 + 3*x^3 + x^2 + x^1 + x^0
  250. At this point, to get the right answer, we have to pretend that x is 2
  251. and propagate binary carries from the 3*x^3 yielding
  252.    x^7 + x^3 + x^2 + x^1 + x^0
  253. It's just like ordinary arithmetic except that the base is abstracted
  254. and brought into all the calculations explicitly instead of being
  255. there implicitly. So what's the point?
  256. The point is that IF we pretend that we DON'T know what x is, we CAN'T
  257. perform the carries. We don't know that 3*x^3 is the same as x^4 + x^3
  258. because we don't know that x is 2. In this true polynomial arithmetic
  259. the relationship between all the coefficients is unknown and so the
  260. coefficients of each power effectively become strongly typed;
  261. coefficients of x^2 are effectively of a different type to
  262. coefficients of x^3.
  263. With the coefficients of each power nicely isolated, mathematicians
  264. came up with all sorts of different kinds of polynomial arithmetics
  265. simply by changing the rules about how coefficients work. Of these
  266. schemes, one in particular is relevant here, and that is a polynomial
  267. arithmetic where the coefficients are calculated MOD 2 and there is no
  268. carry; all coefficients must be either 0 or 1 and no carries are
  269. calculated. This is called "polynomial arithmetic mod 2". Thus,
  270. returning to the earlier example:
  271. (x^3 + x^2 + x^0)(x^3 + x^1 + x^0)
  272. = (x^6 + x^4 + x^3
  273.  + x^5 + x^3 + x^2
  274.  + x^3 + x^1 + x^0)
  275. = x^6 + x^5 + x^4 + 3*x^3 + x^2 + x^1 + x^0
  276. Under the other arithmetic, the 3*x^3 term was propagated using the
  277. carry mechanism using the knowledge that x=2. Under "polynomial
  278. arithmetic mod 2", we don't know what x is, there are no carries, and
  279. all coefficients have to be calculated mod 2. Thus, the result
  280. becomes:
  281. = x^6 + x^5 + x^4 + x^3 + x^2 + x^1 + x^0
  282. As Knuth [Knuth81] says (p.400):
  283.    "The reader should note the similarity between polynomial
  284.    arithmetic and multiple-precision arithmetic (Section 4.3.1), where
  285.    the radix b is substituted for x. The chief difference is that the
  286.    coefficient u_k of x^k in polynomial arithmetic bears little or no
  287.    relation to its neighboring coefficients x^{k-1} [and x^{k+1}], so
  288.    the idea of "carrying" from one place to another is absent. In fact
  289.    polynomial arithmetic modulo b is essentially identical to multiple
  290.    precision arithmetic with radix b, except that all carries are
  291.    suppressed."
  292. Thus polynomial arithmetic mod 2 is just binary arithmetic mod 2 with
  293. no carries. While polynomials provide useful mathematical machinery in
  294. more analytical approaches to CRC and error-correction algorithms, for
  295. the purposes of exposition they provide no extra insight and some
  296. encumbrance and have been discarded in the remainder of this document
  297. in favour of direct manipulation of the arithmetical system with which
  298. they are isomorphic: binary arithmetic with no carry.
  299. 5. Binary Arithmetic with No Carries
  300. ------------------------------------
  301. Having dispensed with polynomials, we can focus on the real arithmetic
  302. issue, which is that all the arithmetic performed during CRC
  303. calculations is performed in binary with no carries. Often this is
  304. called polynomial arithmetic, but as I have declared the rest of this
  305. document a polynomial free zone, we'll have to call it CRC arithmetic
  306. instead. As this arithmetic is a key part of CRC calculations, we'd
  307. better get used to it. Here we go:
  308. Adding two numbers in CRC arithmetic is the same as adding numbers in
  309. ordinary binary arithmetic except there is no carry. This means that
  310. each pair of corresponding bits determine the corresponding output bit
  311. without reference to any other bit positions. For example:
  312.         10011011
  313.        +11001010
  314.         --------
  315.         01010001
  316.         --------
  317. There are only four cases for each bit position:
  318.    0+0=0
  319.    0+1=1
  320.    1+0=1
  321.    1+1=0  (no carry)
  322. Subtraction is identical:
  323.         10011011
  324.        -11001010
  325.         --------
  326.         01010001
  327.         --------
  328. with
  329.    0-0=0
  330.    0-1=1  (wraparound)
  331.    1-0=1
  332.    1-1=0
  333. In fact, both addition and subtraction in CRC arithmetic is equivalent
  334. to the XOR operation, and the XOR operation is its own inverse. This
  335. effectively reduces the operations of the first level of power
  336. (addition, subtraction) to a single operation that is its own inverse.
  337. This is a very convenient property of the arithmetic.
  338. By collapsing of addition and subtraction, the arithmetic discards any
  339. notion of magnitude beyond the power of its highest one bit. While it
  340. seems clear that 1010 is greater than 10, it is no longer the case
  341. that 1010 can be considered to be greater than 1001. To see this, note
  342. that you can get from 1010 to 1001 by both adding and subtracting the
  343. same quantity:
  344.    1010 = 1010 + 0011
  345.    1010 = 1010 - 0011
  346. This makes nonsense of any notion of order.
  347. Having defined addition, we can move to multiplication and division.
  348. Multiplication is absolutely straightforward, being the sum of the
  349. first number, shifted in accordance with the second number.
  350.         1101
  351.       x 1011
  352.         ----
  353.         1101
  354.        1101.
  355.       0000..
  356.      1101...
  357.      -------
  358.      1111111  Note: The sum uses CRC addition
  359.      -------
  360. Division is a little messier as we need to know when "a number goes
  361. into another number". To do this, we invoke the weak definition of
  362. magnitude defined earlier: that X is greater than or equal to Y iff
  363. the position of the highest 1 bit of X is the same or greater than the
  364. position of the highest 1 bit of Y. Here's a fully worked division
  365. (nicked from [Tanenbaum81]).
  366.             1100001010
  367.        _______________
  368. 10011 ) 11010110110000
  369.         10011,,.,,....
  370.         -----,,.,,....
  371.          10011,.,,....
  372.          10011,.,,....
  373.          -----,.,,....
  374.           00001.,,....
  375.           00000.,,....
  376.           -----.,,....
  377.            00010,,....
  378.            00000,,....
  379.            -----,,....
  380.             00101,....
  381.             00000,....
  382.             -----,....
  383.              01011....
  384.              00000....
  385.              -----....
  386.               10110...
  387.               10011...
  388.               -----...
  389.                01010..
  390.                00000..
  391.                -----..
  392.                 10100.
  393.                 10011.
  394.                 -----.
  395.                  01110
  396.                  00000
  397.                  -----
  398.                   1110 = Remainder
  399. That's really it. Before proceeding further, however, it's worth our
  400. while playing with this arithmetic a bit to get used to it.
  401. We've already played with addition and subtraction, noticing that they
  402. are the same thing. Here, though, we should note that in this
  403. arithmetic A+0=A and A-0=A. This obvious property is very useful
  404. later.
  405. In dealing with CRC multiplication and division, it's worth getting a
  406. feel for the concepts of MULTIPLE and DIVISIBLE.
  407. If a number A is a multiple of B then what this means in CRC
  408. arithmetic is that it is possible to construct A from zero by XORing
  409. in various shifts of B. For example, if A was 0111010110 and B was 11,
  410. we could construct A from B as follows:
  411.                   0111010110
  412.                 = .......11.
  413.                 + ....11....
  414.                 + ...11.....
  415.                   .11.......
  416. However, if A is 0111010111, it is not possible to construct it out of
  417. various shifts of B (can you see why? - see later) so it is said to be
  418. not divisible by B in CRC arithmetic.
  419. Thus we see that CRC arithmetic is primarily about XORing particular
  420. values at various shifting offsets.
  421. 6. A Fully Worked Example
  422. -------------------------
  423. Having defined CRC arithmetic, we can now frame a CRC calculation as
  424. simply a division, because that's all it is! This section fills in the
  425. details and gives an example.
  426. To perform a CRC calculation, we need to choose a divisor. In maths
  427. marketing speak the divisor is called the "generator polynomial" or
  428. simply the "polynomial", and is a key parameter of any CRC algorithm.
  429. It would probably be more friendly to call the divisor something else,
  430. but the poly talk is so deeply ingrained in the field that it would
  431. now be confusing to avoid it. As a compromise, we will refer to the
  432. CRC polynomial as the "poly". Just think of this number as a sort of
  433. parrot. "Hello poly!"
  434. You can choose any poly and come up with a CRC algorithm. However,
  435. some polys are better than others, and so it is wise to stick with the
  436. tried an tested ones. A later section addresses this issue.
  437. The width (position of the highest 1 bit) of the poly is very
  438. important as it dominates the whole calculation. Typically, widths of
  439. 16 or 32 are chosen so as to simplify implementation on modern
  440. computers. The width of a poly is the actual bit position of the
  441. highest bit. For example, the width of 10011 is 4, not 5. For the
  442. purposes of example, we will chose a poly of 10011 (of width W of 4).
  443. Having chosen a poly, we can proceed with the calculation. This is
  444. simply a division (in CRC arithmetic) of the message by the poly. The
  445. only trick is that W zero bits are appended to the message before the
  446. CRC is calculated. Thus we have:
  447.    Original message                : 1101011011
  448.    Poly                            :      10011
  449.    Message after appending W zeros : 11010110110000
  450. Now we simply divide the augmented message by the poly using CRC
  451. arithmetic. This is the same division as before:
  452.             1100001010 = Quotient (nobody cares about the quotient)
  453.        _______________
  454. 10011 ) 11010110110000 = Augmented message (1101011011 + 0000)
  455. =Poly  10011,,.,,....
  456.         -----,,.,,....
  457.          10011,.,,....
  458.          10011,.,,....
  459.          -----,.,,....
  460.           00001.,,....
  461.           00000.,,....
  462.           -----.,,....
  463.            00010,,....
  464.            00000,,....
  465.            -----,,....
  466.             00101,....
  467.             00000,....
  468.             -----,....
  469.              01011....
  470.              00000....
  471.              -----....
  472.               10110...
  473.               10011...
  474.               -----...
  475.                01010..
  476.                00000..
  477.                -----..
  478.                 10100.
  479.                 10011.
  480.                 -----.
  481.                  01110
  482.                  00000
  483.                  -----
  484.                   1110 = Remainder = THE CHECKSUM!!!!
  485. The division yields a quotient, which we throw away, and a remainder,
  486. which is the calculated checksum. This ends the calculation.
  487. Usually, the checksum is then appended to the message and the result
  488. transmitted. In this case the transmission would be: 11010110111110.
  489. At the other end, the receiver can do one of two things:
  490.    a. Separate the message and checksum. Calculate the checksum for
  491.       the message (after appending W zeros) and compare the two
  492.       checksums.
  493.    b. Checksum the whole lot (without appending zeros) and see if it
  494.       comes out as zero!
  495. These two options are equivalent. However, in the next section, we
  496. will be assuming option b because it is marginally mathematically
  497. cleaner.
  498. A summary of the operation of the class of CRC algorithms:
  499.    1. Choose a width W, and a poly G (of width W).
  500.    2. Append W zero bits to the message. Call this M'.
  501.    3. Divide M' by G using CRC arithmetic. The remainder is the checksum.
  502. That's all there is to it.
  503. 7. Choosing A Poly
  504. ------------------
  505. Choosing a poly is somewhat of a black art and the reader is referred
  506. to [Tanenbaum81] (p.130-132) which has a very clear discussion of this
  507. issue. This section merely aims to put the fear of death into anyone
  508. who so much as toys with the idea of making up their own poly. If you
  509. don't care about why one poly might be better than another and just
  510. want to find out about high-speed implementations, choose one of the
  511. arithmetically sound polys listed at the end of this section and skip
  512. to the next section.
  513. First note that the transmitted message T is a multiple of the poly.
  514. To see this, note that 1) the last W bits of T is the remainder after
  515. dividing the augmented (by zeros remember) message by the poly, and 2)
  516. addition is the same as subtraction so adding the remainder pushes the
  517. value up to the next multiple. Now note that if the transmitted
  518. message is corrupted in transmission that we will receive T+E where E
  519. is an error vector (and + is CRC addition (i.e. XOR)). Upon receipt of
  520. this message, the receiver divides T+E by G. As T mod G is 0, (T+E)
  521. mod G = E mod G. Thus, the capacity of the poly we choose to catch
  522. particular kinds of errors will be determined by the set of multiples
  523. of G, for any corruption E that is a multiple of G will be undetected.
  524. Our task then is to find classes of G whose multiples look as little
  525. like the kind of line noise (that will be creating the corruptions) as
  526. possible. So let's examine the kinds of line noise we can expect.
  527. SINGLE BIT ERRORS: A single bit error means E=1000...0000. We can
  528. ensure that this class of error is always detected by making sure that
  529. G has at least two bits set to 1. Any multiple of G will be
  530. constructed using shifting and adding and it is impossible to
  531. construct a value with a single bit by shifting an adding a single
  532. value with more than one bit set, as the two end bits will always
  533. persist.
  534. TWO-BIT ERRORS: To detect all errors of the form 100...000100...000
  535. (i.e. E contains two 1 bits) choose a G that does not have multiples
  536. that are 11, 101, 1001, 10001, 100001, etc. It is not clear to me how
  537. one goes about doing this (I don't have the pure maths background),
  538. but Tanenbaum assures us that such G do exist, and cites G with 1 bits
  539. (15,14,1) turned on as an example of one G that won't divide anything
  540. less than 1...1 where ... is 32767 zeros.
  541. ERRORS WITH AN ODD NUMBER OF BITS: We can catch all corruptions where
  542. E has an odd number of bits by choosing a G that has an even number of
  543. bits. To see this, note that 1) CRC multiplication is simply XORing a
  544. constant value into a register at various offsets, 2) XORing is simply
  545. a bit-flip operation, and 3) if you XOR a value with an even number of
  546. bits into a register, the oddness of the number of 1 bits in the
  547. register remains invariant. Example: Starting with E=111, attempt to
  548. flip all three bits to zero by the repeated application of XORing in
  549. 11 at one of the two offsets (i.e. "E=E XOR 011" and "E=E XOR 110")
  550. This is nearly isomorphic to the "glass tumblers" party puzzle where
  551. you challenge someone to flip three tumblers by the repeated
  552. application of the operation of flipping any two. Most of the popular
  553. CRC polys contain an even number of 1 bits. (Note: Tanenbaum states
  554. more specifically that all errors with an odd number of bits can be
  555. caught by making G a multiple of 11).
  556. BURST ERRORS: A burst error looks like E=000...000111...11110000...00.
  557. That is, E consists of all zeros except for a run of 1s somewhere
  558. inside. This can be recast as E=(10000...00)(1111111...111) where
  559. there are z zeros in the LEFT part and n ones in the RIGHT part. To
  560. catch errors of this kind, we simply set the lowest bit of G to 1.
  561. Doing this ensures that LEFT cannot be a factor of G. Then, so long as
  562. G is wider than RIGHT, the error will be detected. See Tanenbaum for a
  563. clearer explanation of this; I'm a little fuzzy on this one. Note:
  564. Tanenbaum asserts that the probability of a burst of length greater
  565. than W getting through is (0.5)^W.
  566. That concludes the section on the fine art of selecting polys.
  567. Some popular polys are:
  568. 16 bits: (16,12,5,0)                                [X25 standard]
  569.          (16,15,2,0)                                ["CRC-16"]
  570. 32 bits: (32,26,23,22,16,12,11,10,8,7,5,4,2,1,0)    [Ethernet]
  571. 8. A Straightforward CRC Implementation
  572. ---------------------------------------
  573. That's the end of the theory; now we turn to implementations. To start
  574. with, we examine an absolutely straight-down-the-middle boring
  575. straightforward low-speed implementation that doesn't use any speed
  576. tricks at all. We'll then transform that program progressively until we
  577. end up with the compact table-driven code we all know and love and
  578. which some of us would like to understand.
  579. To implement a CRC algorithm all we have to do is implement CRC
  580. division. There are two reasons why we cannot simply use the divide
  581. instruction of whatever machine we are on. The first is that we have
  582. to do the divide in CRC arithmetic. The second is that the dividend
  583. might be ten megabytes long, and today's processors do not have
  584. registers that big.
  585. So to implement CRC division, we have to feed the message through a
  586. division register. At this point, we have to be absolutely precise
  587. about the message data. In all the following examples the message will
  588. be considered to be a stream of bytes (each of 8 bits) with bit 7 of
  589. each byte being considered to be the most significant bit (MSB). The
  590. bit stream formed from these bytes will be the bit stream with the MSB
  591. (bit 7) of the first byte first, going down to bit 0 of the first
  592. byte, and then the MSB of the second byte and so on.
  593. With this in mind, we can sketch an implementation of the CRC
  594. division. For the purposes of example, consider a poly with W=4 and
  595. the poly=10111. Then, to perform the division, we need to use a 4-bit
  596. register:
  597.                   3   2   1   0   Bits
  598.                 +---+---+---+---+
  599.        Pop! <-- |   |   |   |   | <----- Augmented message
  600.                 +---+---+---+---+
  601.              1    0   1   1   1   = The Poly
  602. (Reminder: The augmented message is the message followed by W zero bits.)
  603. To perform the division perform the following:
  604.    Load the register with zero bits.
  605.    Augment the message by appending W zero bits to the end of it.
  606.    While (more message bits)
  607.       Begin
  608.       Shift the register left by one bit, reading the next bit of the
  609.          augmented message into register bit position 0.
  610.       If (a 1 bit popped out of the register during step 3)
  611.          Register = Register XOR Poly.
  612.       End
  613.    The register now contains the remainder.
  614. (Note: In practice, the IF condition can be tested by testing the top
  615.  bit of R before performing the shift.)
  616. We will call this algorithm "SIMPLE".
  617. This might look a bit messy, but all we are really doing is
  618. "subtracting" various powers (i.e. shiftings) of the poly from the
  619. message until there is nothing left but the remainder. Study the
  620. manual examples of long division if you don't understand this.
  621. It should be clear that the above algorithm will work for any width W.
  622. 9. A Table-Driven Implementation
  623. --------------------------------
  624. The SIMPLE algorithm above is a good starting point because it
  625. corresponds directly to the theory presented so far, and because it is
  626. so SIMPLE. However, because it operates at the bit level, it is rather
  627. awkward to code (even in C), and inefficient to execute (it has to
  628. loop once for each bit). To speed it up, we need to find a way to
  629. enable the algorithm to process the message in units larger than one
  630. bit. Candidate quantities are nibbles (4 bits), bytes (8 bits), words
  631. (16 bits) and longwords (32 bits) and higher if we can achieve it. Of
  632. these, 4 bits is best avoided because it does not correspond to a byte
  633. boundary. At the very least, any speedup should allow us to operate at
  634. byte boundaries, and in fact most of the table driven algorithms
  635. operate a byte at a time.
  636. For the purposes of discussion, let us switch from a 4-bit poly to a
  637. 32-bit one. Our register looks much the same, except the boxes
  638. represent bytes instead of bits, and the Poly is 33 bits (one implicit
  639. 1 bit at the top and 32 "active" bits) (W=32).
  640.                    3    2    1    0   Bytes
  641.                 +----+----+----+----+
  642.        Pop! <-- |    |    |    |    | <----- Augmented message
  643.                 +----+----+----+----+
  644.                1<------32 bits------>
  645. The SIMPLE algorithm is still applicable. Let us examine what it does.
  646. Imagine that the SIMPLE algorithm is in full swing and consider the
  647. top 8 bits of the 32-bit register (byte 3) to have the values:
  648.    t7 t6 t5 t4 t3 t2 t1 t0
  649. In the next iteration of SIMPLE, t7 will determine whether the Poly
  650. will be XORed into the entire register. If t7=1, this will happen,
  651. otherwise it will not. Suppose that the top 8 bits of the poly are g7
  652. g6.. g0, then after the next iteration, the top byte will be:
  653.         t6 t5 t4 t3 t2 t1 t0 ??
  654. + t7 * (g7 g6 g5 g4 g3 g2 g1 g0)    [Reminder: + is XOR]
  655. The NEW top bit (that will control what happens in the next iteration)
  656. now has the value t6 + t7*g7. The important thing to notice here is
  657. that from an informational point of view, all the information required
  658. to calculate the NEW top bit was present in the top TWO bits of the
  659. original top byte. Similarly, the NEXT top bit can be calculated in
  660. advance SOLELY from the top THREE bits t7, t6, and t5. In fact, in
  661. general, the value of the top bit in the register in k iterations can
  662. be calculated from the top k bits of the register. Let us take this
  663. for granted for a moment.
  664. Consider for a moment that we use the top 8 bits of the register to
  665. calculate the value of the top bit of the register during the next 8
  666. iterations. Suppose that we drive the next 8 iterations using the
  667. calculated values (which we could perhaps store in a single byte
  668. register and shift out to pick off each bit). Then we note three
  669. things:
  670.    * The top byte of the register now doesn't matter. No matter how
  671.      many times and at what offset the poly is XORed to the top 8
  672.      bits, they will all be shifted out the right hand side during the
  673.      next 8 iterations anyway.
  674.    * The remaining bits will be shifted left one position and the
  675.      rightmost byte of the register will be shifted in the next byte
  676.    AND
  677.    * While all this is going on, the register will be subjected to a
  678.      series of XOR's in accordance with the bits of the pre-calculated
  679.      control byte.
  680. Now consider the effect of XORing in a constant value at various
  681. offsets to a register. For example:
  682.        0100010  Register
  683.        ...0110  XOR this
  684.        ..0110.  XOR this
  685.        0110...  XOR this
  686.        -------
  687.        0011000
  688.        -------
  689. The point of this is that you can XOR constant values into a register
  690. to your heart's delight, and in the end, there will exist a value
  691. which when XORed in with the original register will have the same
  692. effect as all the other XORs.
  693. Perhaps you can see the solution now. Putting all the pieces together
  694. we have an algorithm that goes like this:
  695.    While (augmented message is not exhausted)
  696.       Begin
  697.       Examine the top byte of the register
  698.       Calculate the control byte from the top byte of the register
  699.       Sum all the Polys at various offsets that are to be XORed into
  700.          the register in accordance with the control byte
  701.       Shift the register left by one byte, reading a new message byte
  702.          into the rightmost byte of the register
  703.       XOR the summed polys to the register
  704.       End
  705. As it stands this is not much better than the SIMPLE algorithm.
  706. However, it turns out that most of the calculation can be precomputed
  707. and assembled into a table. As a result, the above algorithm can be
  708. reduced to:
  709.    While (augmented message is not exhausted)
  710.       Begin
  711.       Top = top_byte(Register);
  712.       Register = (Register << 24) | next_augmessage_byte;
  713.       Register = Register XOR precomputed_table[Top];
  714.       End
  715. There! If you understand this, you've grasped the main idea of
  716. table-driven CRC algorithms. The above is a very efficient algorithm
  717. requiring just a shift, and OR, an XOR, and a table lookup per byte.
  718. Graphically, it looks like this:
  719.                    3    2    1    0   Bytes
  720.                 +----+----+----+----+
  721.          +-----<|    |    |    |    | <----- Augmented message
  722.          |      +----+----+----+----+
  723.          |                ^
  724.          |                |
  725.          |               XOR
  726.          |                |
  727.          |     0+----+----+----+----+       Algorithm
  728.          v      +----+----+----+----+       ---------
  729.          |      +----+----+----+----+       1. Shift the register left by
  730.          |      +----+----+----+----+          one byte, reading in a new
  731.          |      +----+----+----+----+          message byte.
  732.          |      +----+----+----+----+       2. Use the top byte just rotated
  733.          |      +----+----+----+----+          out of the register to index
  734.          +----->+----+----+----+----+          the table of 256 32-bit values.
  735.                 +----+----+----+----+       3. XOR the table value into the
  736.                 +----+----+----+----+          register.
  737.                 +----+----+----+----+       4. Goto 1 iff more augmented
  738.                 +----+----+----+----+          message bytes.
  739.              255+----+----+----+----+
  740. In C, the algorithm main loop looks like this:
  741.    r=0;
  742.    while (len--)
  743.      {
  744.       byte t = (r >> 24) & 0xFF;
  745.       r = (r << 8) | *p++;
  746.       r^=table[t];
  747.      }
  748. where len is the length of the augmented message in bytes, p points to
  749. the augmented message, r is the register, t is a temporary, and table
  750. is the computed table. This code can be made even more unreadable as
  751. follows:
  752.    r=0; while (len--) r = ((r << 8) | *p++) ^ t[(r >> 24) & 0xFF];
  753. This is a very clean, efficient loop, although not a very obvious one
  754. to the casual observer not versed in CRC theory. We will call this the
  755. TABLE algorithm.
  756. 10. A Slightly Mangled Table-Driven Implementation
  757. --------------------------------------------------
  758. Despite the terse beauty of the line
  759.    r=0; while (len--) r = ((r << 8) | *p++) ^ t[(r >> 24) & 0xFF];
  760. those optimizing hackers couldn't leave it alone. The trouble, you
  761. see, is that this loop operates upon the AUGMENTED message and in
  762. order to use this code, you have to append W/8 zero bytes to the end
  763. of the message before pointing p at it. Depending on the run-time
  764. environment, this may or may not be a problem; if the block of data
  765. was handed to us by some other code, it could be a BIG problem. One
  766. alternative is simply to append the following line after the above
  767. loop, once for each zero byte:
  768.       for (i=0; i<W/4; i++) r = (r << 8) ^ t[(r >> 24) & 0xFF];
  769. This looks like a sane enough solution to me. However, at the further
  770. expense of clarity (which, you must admit, is already a pretty scare
  771. commodity in this code) we can reorganize this small loop further so
  772. as to avoid the need to either augment the message with zero bytes, or
  773. to explicitly process zero bytes at the end as above. To explain the
  774. optimization, we return to the processing diagram given earlier.
  775.                    3    2    1    0   Bytes
  776.                 +----+----+----+----+
  777.          +-----<|    |    |    |    | <----- Augmented message
  778.          |      +----+----+----+----+
  779.          |                ^
  780.          |                |
  781.          |               XOR
  782.          |                |
  783.          |     0+----+----+----+----+       Algorithm
  784.          v      +----+----+----+----+       ---------
  785.          |      +----+----+----+----+       1. Shift the register left by
  786.          |      +----+----+----+----+          one byte, reading in a new
  787.          |      +----+----+----+----+          message byte.
  788.          |      +----+----+----+----+       2. Use the top byte just rotated
  789.          |      +----+----+----+----+          out of the register to index
  790.          +----->+----+----+----+----+          the table of 256 32-bit values.
  791.                 +----+----+----+----+       3. XOR the table value into the
  792.                 +----+----+----+----+          register.
  793.                 +----+----+----+----+       4. Goto 1 iff more augmented
  794.                 +----+----+----+----+          message bytes.
  795.              255+----+----+----+----+
  796. Now, note the following facts:
  797. TAIL: The W/4 augmented zero bytes that appear at the end of the
  798.       message will be pushed into the register from the right as all
  799.       the other bytes are, but their values (0) will have no effect
  800.       whatsoever on the register because 1) XORing with zero does not
  801.       change the target byte, and 2) the four bytes are never
  802.       propagated out the left side of the register where their
  803.       zeroness might have some sort of influence. Thus, the sole
  804.       function of the W/4 augmented zero bytes is to drive the
  805.       calculation for another W/4 byte cycles so that the end of the
  806.       REAL data passes all the way through the register.
  807. HEAD: If the initial value of the register is zero, the first four
  808.       iterations of the loop will have the sole effect of shifting in
  809.       the first four bytes of the message from the right. This is
  810.       because the first 32 control bits are all zero and so nothing is
  811.       XORed into the register. Even if the initial value is not zero,
  812.       the first 4 byte iterations of the algorithm will have the sole
  813.       effect of shifting the first 4 bytes of the message into the
  814.       register and then XORing them with some constant value (that is
  815.       a function of the initial value of the register).
  816. These facts, combined with the XOR property
  817.    (A xor B) xor C = A xor (B xor C)
  818. mean that message bytes need not actually travel through the W/4 bytes
  819. of the register. Instead, they can be XORed into the top byte just
  820. before it is used to index the lookup table. This leads to the
  821. following modified version of the algorithm.
  822.          +-----<Message (non augmented)
  823.          |
  824.          v         3    2    1    0   Bytes
  825.          |      +----+----+----+----+
  826.         XOR----<|    |    |    |    |
  827.          |      +----+----+----+----+
  828.          |                ^
  829.          |                |
  830.          |               XOR
  831.          |                |
  832.          |     0+----+----+----+----+       Algorithm
  833.          v      +----+----+----+----+       ---------
  834.          |      +----+----+----+----+       1. Shift the register left by
  835.          |      +----+----+----+----+          one byte, reading in a new
  836.          |      +----+----+----+----+          message byte.
  837.          |      +----+----+----+----+       2. XOR the top byte just rotated
  838.          |      +----+----+----+----+          out of the register with the
  839.          +----->+----+----+----+----+          next message byte to yield an
  840.                 +----+----+----+----+          index into the table ([0,255]).
  841.                 +----+----+----+----+       3. XOR the table value into the
  842.                 +----+----+----+----+          register.
  843.                 +----+----+----+----+       4. Goto 1 iff more augmented
  844.              255+----+----+----+----+          message bytes.
  845. Note: The initial register value for this algorithm must be the
  846. initial value of the register for the previous algorithm fed through
  847. the table four times. Note: The table is such that if the previous
  848. algorithm used 0, the new algorithm will too.
  849. This is an IDENTICAL algorithm and will yield IDENTICAL results. The C
  850. code looks something like this:
  851.    r=0; while (len--) r = (r<<8) ^ t[(r >> 24) ^ *p++];
  852. and THIS is the code that you are likely to find inside current
  853. table-driven CRC implementations. Some FF masks might have to be ANDed
  854. in here and there for portability's sake, but basically, the above
  855. loop is IT. We will call this the DIRECT TABLE ALGORITHM.
  856. During the process of trying to understand all this stuff, I managed
  857. to derive the SIMPLE algorithm and the table-driven version derived
  858. from that. However, when I compared my code with the code found in
  859. real-implementations, I was totally bamboozled as to why the bytes
  860. were being XORed in at the wrong end of the register! It took quite a
  861. while before I figured out that theirs and my algorithms were actually
  862. the same. Part of why I am writing this document is that, while the
  863. link between division and my earlier table-driven code is vaguely
  864. apparent, any such link is fairly well erased when you start pumping
  865. bytes in at the "wrong end" of the register. It looks all wrong!
  866. If you've got this far, you not only understand the theory, the
  867. practice, the optimized practice, but you also understand the real
  868. code you are likely to run into. Could get any more complicated? Yes
  869. it can.
  870. 11. "Reflected" Table-Driven Implementations
  871. --------------------------------------------
  872. Despite the fact that the above code is probably optimized about as
  873. much as it could be, this did not stop some enterprising individuals
  874. from making things even more complicated. To understand how this
  875. happened, we have to enter the world of hardware.
  876. DEFINITION: A value/register is reflected if it's bits are swapped
  877. around its centre. For example: 0101 is the 4-bit reflection of 1010.
  878. 0011 is the reflection of 1100.
  879. 0111-0101-1010-1111-0010-0101-1011-1100 is the reflection of
  880. 0011-1101-1010-0100-1111-0101-1010-1110.
  881. Turns out that UARTs (those handy little chips that perform serial IO)
  882. are in the habit of transmitting each byte with the least significant
  883. bit (bit 0) first and the most significant bit (bit 7) last (i.e.
  884. reflected). An effect of this convention is that hardware engineers
  885. constructing hardware CRC calculators that operate at the bit level
  886. took to calculating CRCs of bytes streams with each of the bytes
  887. reflected within itself. The bytes are processed in the same order,
  888. but the bits in each byte are swapped; bit 0 is now bit 7, bit 1 is
  889. now bit 6, and so on. Now this wouldn't matter much if this convention
  890. was restricted to hardware land. However it seems that at some stage
  891. some of these CRC values were presented at the software level and
  892. someone had to write some code that would interoperate with the
  893. hardware CRC calculation.
  894. In this situation, a normal sane software engineer would simply
  895. reflect each byte before processing it. However, it would seem that
  896. normal sane software engineers were thin on the ground when this early
  897. ground was being broken, because instead of reflecting the bytes,
  898. whoever was responsible held down the byte and reflected the world,
  899. leading to the following "reflected" algorithm which is identical to
  900. the previous one except that everything is reflected except the input
  901. bytes.
  902.              Message (non augmented) >-----+
  903.                                            |
  904.            Bytes   0    1    2    3        v
  905.                 +----+----+----+----+      |
  906.                 |    |    |    |    |>----XOR
  907.                 +----+----+----+----+      |
  908.                           ^                |
  909.                           |                |
  910.                          XOR               |
  911.                           |                |
  912.                 +----+----+----+----+0     |
  913.                 +----+----+----+----+      v
  914.                 +----+----+----+----+      |
  915.                 +----+----+----+----+      |
  916.                 +----+----+----+----+      |
  917.                 +----+----+----+----+      |
  918.                 +----+----+----+----+      |
  919.                 +----+----+----+----+<-----+
  920.                 +----+----+----+----+
  921.                 +----+----+----+----+
  922.                 +----+----+----+----+
  923.                 +----+----+----+----+
  924.                 +----+----+----+----+255
  925. Notes:
  926.    * The table is identical to the one in the previous algorithm
  927.    except that each entry has been reflected.
  928.    * The initial value of the register is the same as in the previous
  929.    algorithm except that it has been reflected.
  930.    * The bytes of the message are processed in the same order as
  931.    before (i.e. the message itself is not reflected).
  932.    * The message bytes themselves don't need to be explicitly
  933.    reflected, because everything else has been!
  934. At the end of execution, the register contains the reflection of the
  935. final CRC value (remainder). Actually, I'm being rather hard on
  936. whoever cooked this up because it seems that hardware implementations
  937. of the CRC algorithm used the reflected checksum value and so
  938. producing a reflected CRC was just right. In fact reflecting the world
  939. was probably a good engineering solution - if a confusing one.
  940. We will call this the REFLECTED algorithm.
  941. Whether or not it made sense at the time, the effect of having
  942. reflected algorithms kicking around the world's FTP sites is that
  943. about half the CRC implementations one runs into are reflected and the
  944. other half not. It's really terribly confusing. In particular, it
  945. would seem to me that the casual reader who runs into a reflected,
  946. table-driven implementation with the bytes "fed in the wrong end"
  947. would have Buckley's chance of ever connecting the code to the concept
  948. of binary mod 2 division.
  949. It couldn't get any more confusing could it? Yes it could.
  950. 12. "Reversed" Polys
  951. --------------------
  952. As if reflected implementations weren't enough, there is another
  953. concept kicking around which makes the situation bizarrely confusing.
  954. The concept is reversed Polys.
  955. It turns out that the reflection of good polys tend to be good polys
  956. too! That is, if G=11101 is a good poly value, then 10111 will be as
  957. well. As a consequence, it seems that every time an organization (such
  958. as CCITT) standardizes on a particularly good poly ("polynomial"),
  959. those in the real world can't leave the poly's reflection alone
  960. either. They just HAVE to use it. As a result, the set of "standard"
  961. poly's has a corresponding set of reflections, which are also in use.
  962. To avoid confusion, we will call these the "reversed" polys.
  963.    X25   standard: 1-0001-0000-0010-0001
  964.    X25   reversed: 1-0000-1000-0001-0001
  965.    CRC16 standard: 1-1000-0000-0000-0101
  966.    CRC16 reversed: 1-0100-0000-0000-0011
  967. Note that here it is the entire poly that is being reflected/reversed,
  968. not just the bottom W bits. This is an important distinction. In the
  969. reflected algorithm described in the previous section, the poly used
  970. in the reflected algorithm was actually identical to that used in the
  971. non-reflected algorithm; all that had happened is that the bytes had
  972. effectively been reflected. As such, all the 16-bit/32-bit numbers in
  973. the algorithm had to be reflected. In contrast, the ENTIRE poly
  974. includes the implicit one bit at the top, and so reversing a poly is
  975. not the same as reflecting its bottom 16 or 32 bits.
  976. The upshot of all this is that a reflected algorithm is not equivalent
  977. to the original algorithm with the poly reflected. Actually, this is
  978. probably less confusing than if they were duals.
  979. If all this seems a bit unclear, don't worry, because we're going to
  980. sort it all out "real soon now". Just one more section to go before
  981. that.
  982. 13. Initial and Final Values
  983. ----------------------------
  984. In addition to the complexity already seen, CRC algorithms differ from
  985. each other in two other regards:
  986.    * The initial value of the register.
  987.    * The value to be XORed with the final register value.
  988. For example, the "CRC32" algorithm initializes its register to
  989. FFFFFFFF and XORs the final register value with FFFFFFFF.
  990. Most CRC algorithms initialize their register to zero. However, some
  991. initialize it to a non-zero value. In theory (i.e. with no assumptions
  992. about the message), the initial value has no affect on the strength of
  993. the CRC algorithm, the initial value merely providing a fixed starting
  994. point from which the register value can progress. However, in
  995. practice, some messages are more likely than others, and it is wise to
  996. initialize the CRC algorithm register to a value that does not have
  997. "blind spots" that are likely to occur in practice. By "blind spot" is
  998. meant a sequence of message bytes that do not result in the register
  999. changing its value. In particular, any CRC algorithm that initializes
  1000. its register to zero will have a blind spot of zero when it starts up
  1001. and will be unable to "count" a leading run of zero bytes. As a
  1002. leading run of zero bytes is quite common in real messages, it is wise
  1003. to initialize the algorithm register to a non-zero value.
  1004. 14. Defining Algorithms Absolutely
  1005. ----------------------------------
  1006. At this point we have covered all the different aspects of
  1007. table-driven CRC algorithms. As there are so many variations on these
  1008. algorithms, it is worth trying to establish a nomenclature for them.
  1009. This section attempts to do that.
  1010. We have seen that CRC algorithms vary in:
  1011.    * Width of the poly (polynomial).
  1012.    * Value of the poly.
  1013.    * Initial value for the register.
  1014.    * Whether the bits of each byte are reflected before being processed.
  1015.    * Whether the algorithm feeds input bytes through the register or
  1016.      xors them with a byte from one end and then straight into the table.
  1017.    * Whether the final register value should be reversed (as in reflected
  1018.      versions).
  1019.    * Value to XOR with the final register value.
  1020. In order to be able to talk about particular CRC algorithms, we need
  1021. to be able to define them more precisely than this. For this reason, the
  1022. next section attempts to provide a well-defined parameterized model
  1023. for CRC algorithms. To refer to a particular algorithm, we need then
  1024. simply specify the algorithm in terms of parameters to the model.
  1025. 15. A Parameterized Model For CRC Algorithms
  1026. --------------------------------------------
  1027. In this section we define a precise parameterized model CRC algorithm
  1028. which, for want of a better name, we will call the "Rocksoft^tm Model
  1029. CRC Algorithm" (and why not? Rocksoft^tm could do with some free
  1030. advertising :-).
  1031. The most important aspect of the model algorithm is that it focusses
  1032. exclusively on functionality, ignoring all implementation details. The
  1033. aim of the exercise is to construct a way of referring precisely to
  1034. particular CRC algorithms, regardless of how confusingly they are
  1035. implemented. To this end, the model must be as simple and precise as
  1036. possible, with as little confusion as possible.
  1037. The Rocksoft^tm Model CRC Algorithm is based essentially on the DIRECT
  1038. TABLE ALGORITHM specified earlier. However, the algorithm has to be
  1039. further parameterized to enable it to behave in the same way as some
  1040. of the messier algorithms out in the real world.
  1041. To enable the algorithm to behave like reflected algorithms, we
  1042. provide a boolean option to reflect the input bytes, and a boolean
  1043. option to specify whether to reflect the output checksum value. By
  1044. framing reflection as an input/output transformation, we avoid the
  1045. confusion of having to mentally map the parameters of reflected and
  1046. non-reflected algorithms.
  1047. An extra parameter allows the algorithm's register to be initialized
  1048. to a particular value. A further parameter is XORed with the final
  1049. value before it is returned.
  1050. By putting all these pieces together we end up with the parameters of
  1051. the algorithm:
  1052.    NAME: This is a name given to the algorithm. A string value.
  1053.    WIDTH: This is the width of the algorithm expressed in bits. This
  1054.    is one less than the width of the Poly.
  1055.    POLY: This parameter is the poly. This is a binary value that
  1056.    should be specified as a hexadecimal number. The top bit of the
  1057.    poly should be omitted. For example, if the poly is 10110, you
  1058.    should specify 06. An important aspect of this parameter is that it
  1059.    represents the unreflected poly; the bottom bit of this parameter
  1060.    is always the LSB of the divisor during the division regardless of
  1061.    whether the algorithm being modelled is reflected.
  1062.    INIT: This parameter specifies the initial value of the register
  1063.    when the algorithm starts. This is the value that is to be assigned
  1064.    to the register in the direct table algorithm. In the table
  1065.    algorithm, we may think of the register always commencing with the
  1066.    value zero, and this value being XORed into the register after the
  1067.    N'th bit iteration. This parameter should be specified as a
  1068.    hexadecimal number.
  1069.    REFIN: This is a boolean parameter. If it is FALSE, input bytes are
  1070.    processed with bit 7 being treated as the most significant bit
  1071.    (MSB) and bit 0 being treated as the least significant bit. If this
  1072.    parameter is FALSE, each byte is reflected before being processed.
  1073.    REFOUT: This is a boolean parameter. If it is set to FALSE, the
  1074.    final value in the register is fed into the XOROUT stage directly,
  1075.    otherwise, if this parameter is TRUE, the final register value is
  1076.    reflected first.
  1077.    XOROUT: This is an W-bit value that should be specified as a
  1078.    hexadecimal number. It is XORed to the final register value (after
  1079.    the REFOUT) stage before the value is returned as the official
  1080.    checksum.
  1081.    CHECK: This field is not strictly part of the definition, and, in
  1082.    the event of an inconsistency between this field and the other
  1083.    field, the other fields take precedence. This field is a check
  1084.    value that can be used as a weak validator of implementations of
  1085.    the algorithm. The field contains the checksum obtained when the
  1086.    ASCII string "123456789" is fed through the specified algorithm
  1087.    (i.e. 313233... (hexadecimal)).
  1088. With these parameters defined, the model can now be used to specify a
  1089. particular CRC algorithm exactly. Here is an example specification for
  1090. a popular form of the CRC-16 algorithm.
  1091.    Name   : "CRC-16"
  1092.    Width  : 16
  1093.    Poly   : 8005
  1094.    Init   : 0000
  1095.    RefIn  : True
  1096.    RefOut : True
  1097.    XorOut : 0000
  1098.    Check  : BB3D
  1099. 16. A Catalog of Parameter Sets for Standards
  1100. ---------------------------------------------
  1101. At this point, I would like to give a list of the specifications for
  1102. commonly used CRC algorithms. However, most of the algorithms that I
  1103. have come into contact with so far are specified in such a vague way
  1104. that this has not been possible. What I can provide is a list of polys
  1105. for various CRC standards I have heard of:
  1106.    X25   standard : 1021       [CRC-CCITT, ADCCP, SDLC/HDLC]
  1107.    X25   reversed : 0811
  1108.    CRC16 standard : 8005
  1109.    CRC16 reversed : 4003       [LHA]
  1110.    CRC32          : 04C11DB7   [PKZIP, AUTODIN II, Ethernet, FDDI]
  1111. I would be interested in hearing from anyone out there who can tie
  1112. down the complete set of model parameters for any of these standards.
  1113. However, a program that was kicking around seemed to imply the
  1114. following specifications. Can anyone confirm or deny them (or provide
  1115. the check values (which I couldn't be bothered coding up and
  1116. calculating)).
  1117.    Name   : "CRC-16/CITT"
  1118.    Width  : 16
  1119.    Poly   : 1021
  1120.    Init   : FFFF
  1121.    RefIn  : False
  1122.    RefOut : False
  1123.    XorOut : 0000
  1124.    Check  : ?
  1125.    Name   : "XMODEM"
  1126.    Width  : 16
  1127.    Poly   : 8408
  1128.    Init   : 0000
  1129.    RefIn  : True
  1130.    RefOut : True
  1131.    XorOut : 0000
  1132.    Check  : ?
  1133.    Name   : "ARC"
  1134.    Width  : 16
  1135.    Poly   : 8005
  1136.    Init   : 0000
  1137.    RefIn  : True
  1138.    RefOut : True
  1139.    XorOut : 0000
  1140.    Check  : ?
  1141. Here is the specification for the CRC-32 algorithm which is reportedly
  1142. used in PKZip, AUTODIN II, Ethernet, and FDDI.
  1143.    Name   : "CRC-32"
  1144.    Width  : 32
  1145.    Poly   : 04C11DB7
  1146.    Init   : FFFFFFFF
  1147.    RefIn  : True
  1148.    RefOut : True
  1149.    XorOut : FFFFFFFF
  1150.    Check  : CBF43926
  1151. 17. An Implementation of the Model Algorithm
  1152. --------------------------------------------
  1153. Here is an implementation of the model algorithm in the C programming
  1154. language. The implementation consists of a header file (.h) and an
  1155. implementation file (.c). If you're reading this document in a
  1156. sequential scroller, you can skip this code by searching for the
  1157. string "Roll Your Own".
  1158. To ensure that the following code is working, configure it for the
  1159. CRC-16 and CRC-32 algorithms given above and ensure that they produce
  1160. the specified "check" checksum when fed the test string "123456789"
  1161. (see earlier).
  1162. /****************************************************************************/
  1163. /*                             Start of crcmodel.h                          */
  1164. /****************************************************************************/
  1165. /*                                                                          */
  1166. /* Author : Ross Williams (ross@guest.adelaide.edu.au.).                    */
  1167. /* Date   : 3 June 1993.                                                    */
  1168. /* Status : Public domain.                                                  */
  1169. /*                                                                          */
  1170. /* Description : This is the header (.h) file for the reference             */
  1171. /* implementation of the Rocksoft^tm Model CRC Algorithm. For more          */
  1172. /* information on the Rocksoft^tm Model CRC Algorithm, see the document     */
  1173. /* titled "A Painless Guide to CRC Error Detection Algorithms" by Ross      */
  1174. /* Williams (ross@guest.adelaide.edu.au.). This document is likely to be in */
  1175. /* "ftp.adelaide.edu.au/pub/rocksoft".                                      */
  1176. /*                                                                          */
  1177. /* Note: Rocksoft is a trademark of Rocksoft Pty Ltd, Adelaide, Australia.  */
  1178. /*                                                                          */
  1179. /****************************************************************************/
  1180. /*                                                                          */
  1181. /* How to Use This Package                                                  */
  1182. /* -----------------------                                                  */
  1183. /* Step 1: Declare a variable of type cm_t. Declare another variable        */
  1184. /*         (p_cm say) of type p_cm_t and initialize it to point to the first*/
  1185. /*         variable (e.g. p_cm_t p_cm = &cm_t).                             */
  1186. /*                                                                          */
  1187. /* Step 2: Assign values to the parameter fields of the structure.          */
  1188. /*         If you don't know what to assign, see the document cited earlier.*/
  1189. /*         For example:                                                     */
  1190. /*            p_cm->cm_width = 16;                                          */
  1191. /*            p_cm->cm_poly  = 0x8005L;                                     */
  1192. /*            p_cm->cm_init  = 0L;                                          */
  1193. /*            p_cm->cm_refin = TRUE;                                        */
  1194. /*            p_cm->cm_refot = TRUE;                                        */
  1195. /*            p_cm->cm_xorot = 0L;                                          */
  1196. /*         Note: Poly is specified without its top bit (18005 becomes 8005).*/
  1197. /*         Note: Width is one bit less than the raw poly width.             */
  1198. /*                                                                          */
  1199. /* Step 3: Initialize the instance with a call cm_ini(p_cm);                */
  1200. /*                                                                          */
  1201. /* Step 4: Process zero or more message bytes by placing zero or more       */
  1202. /*         successive calls to cm_nxt. Example: cm_nxt(p_cm,ch);            */
  1203. /*                                                                          */
  1204. /* Step 5: Extract the CRC value at any time by calling crc = cm_crc(p_cm); */
  1205. /*         If the CRC is a 16-bit value, it will be in the bottom 16 bits.  */
  1206. /*                                                                          */
  1207. /****************************************************************************/
  1208. /*                                                                          */
  1209. /* Design Notes                                                             */
  1210. /* ------------                                                             */
  1211. /* PORTABILITY: This package has been coded very conservatively so that     */
  1212. /* it will run on as many machines as possible. For example, all external   */
  1213. /* identifiers have been restricted to 6 characters and all internal ones to*/
  1214. /* 8 characters. The prefix cm (for Crc Model) is used as an attempt to     */
  1215. /* avoid namespace collisions. This package is endian independent.          */
  1216. /*                                                                          */
  1217. /* EFFICIENCY: This package (and its interface) is not designed for         */
  1218. /* speed. The purpose of this package is to act as a well-defined reference */
  1219. /* model for the specification of CRC algorithms. If you want speed, cook up*/
  1220. /* a specific table-driven implementation as described in the document cited*/
  1221. /* above. This package is designed for validation only; if you have found or*/
  1222. /* implemented a CRC algorithm and wish to describe it as a set of para-    */
  1223. /* meters to the Rocksoft^tm Model CRC Algorithm, your CRC algorithm imple- */
  1224. /* mentation should behave identically to this package under those para-    */
  1225. /* meters.                                                                  */
  1226. /*                                                                          */
  1227. /****************************************************************************/
  1228. /* The following #ifndef encloses this entire */
  1229. /* header file, rendering it idempotent.     */
  1230. #ifndef CM_DONE
  1231. #define CM_DONE
  1232. /****************************************************************************/
  1233. /* The following definitions are extracted from my style header file which  */
  1234. /* would be cumbersome to distribute with this package. The DONE_STYLE is   */
  1235. /* the idempotence symbol used in my style header file.                     */
  1236. #ifndef DONE_STYLE
  1237. typedef unsigned long   ulong;
  1238. typedef unsigned        bool;
  1239. typedef unsigned char * p_ubyte_;
  1240. #ifndef TRUE
  1241. #define FALSE 0
  1242. #define TRUE  1
  1243. #endif
  1244. /* Change to the second definition if you don't have prototypes. */
  1245. #define P_(A) A
  1246. /* #define P_(A) () */
  1247. /* Uncomment this definition if you don't have void. */
  1248. /* typedef int void; */
  1249. #endif
  1250. /****************************************************************************/
  1251. /* CRC Model Abstract Type                                                  */
  1252. /* -----------------------                                                  */
  1253. /* The following type stores the context of an executing instance of the    */
  1254. /* model algorithm. Most of the fields are model parameters which must be   */
  1255. /* set before the first initializing call to cm_ini.                        */
  1256. typedef struct
  1257.   {
  1258.    int   cm_width;   /* Parameter: Width in bits [8,32].       */
  1259.    ulong cm_poly;    /* Parameter: The algorithm's polynomial. */
  1260.    ulong cm_init;    /* Parameter: Initial register value.     */
  1261.    bool  cm_refin;   /* Parameter: Reflect input bytes?        */
  1262.    bool  cm_refot;   /* Parameter: Reflect output CRC?         */
  1263.    ulong cm_xorot;   /* Parameter: XOR this to output CRC.     */
  1264.    ulong cm_reg;     /* Context: Context during execution.     */
  1265.   } cm_t;
  1266. typedef cm_t *p_cm_t;
  1267. /****************************************************************************/
  1268. /* Functions That Implement The Model                                       */
  1269. /* ----------------------------------                                       */
  1270. /* The following functions animate the cm_t abstraction.                    */
  1271. void cm_ini P_((p_cm_t p_cm));
  1272. /* Initializes the argument CRC model instance.          */
  1273. /* All parameter fields must be set before calling this. */
  1274. void cm_nxt P_((p_cm_t p_cm,int ch));
  1275. /* Processes a single message byte [0,255]. */
  1276. void cm_blk P_((p_cm_t p_cm,p_ubyte_ blk_adr,ulong blk_len));
  1277. /* Processes a block of message bytes. */
  1278. ulong cm_crc P_((p_cm_t p_cm));
  1279. /* Returns the CRC value for the message bytes processed so far. */
  1280. /****************************************************************************/
  1281. /* Functions For Table Calculation                                          */
  1282. /* -------------------------------                                          */
  1283. /* The following function can be used to calculate a CRC lookup table.      */
  1284. /* It can also be used at run-time to create or check static tables.        */
  1285. ulong cm_tab P_((p_cm_t p_cm,int index));
  1286. /* Returns the i'th entry for the lookup table for the specified algorithm. */
  1287. /* The function examines the fields cm_width, cm_poly, cm_refin, and the    */
  1288. /* argument table index in the range [0,255] and returns the table entry in */
  1289. /* the bottom cm_width bytes of the return value. */
  1290. /****************************************************************************/
  1291. /* End of the header file idempotence #ifndef                               */
  1292. #endif
  1293. /****************************************************************************/
  1294. /*                             End of crcmodel.h                            */
  1295. /****************************************************************************/
  1296. /****************************************************************************/
  1297. /*                             Start of crcmodel.c                          */
  1298. /****************************************************************************/
  1299. /*                                                                          */
  1300. /* Author : Ross Williams (ross@guest.adelaide.edu.au.).                    */
  1301. /* Date   : 3 June 1993.                                                    */
  1302. /* Status : Public domain.                                                  */
  1303. /*                                                                          */
  1304. /* Description : This is the implementation (.c) file for the reference     */
  1305. /* implementation of the Rocksoft^tm Model CRC Algorithm. For more          */
  1306. /* information on the Rocksoft^tm Model CRC Algorithm, see the document     */
  1307. /* titled "A Painless Guide to CRC Error Detection Algorithms" by Ross      */
  1308. /* Williams (ross@guest.adelaide.edu.au.). This document is likely to be in */
  1309. /* "ftp.adelaide.edu.au/pub/rocksoft".                                      */
  1310. /*                                                                          */
  1311. /* Note: Rocksoft is a trademark of Rocksoft Pty Ltd, Adelaide, Australia.  */
  1312. /*                                                                          */
  1313. /****************************************************************************/
  1314. /*                                                                          */
  1315. /* Implementation Notes                                                     */
  1316. /* --------------------                                                     */
  1317. /* To avoid inconsistencies, the specification of each function is not      */
  1318. /* echoed here. See the header file for a description of these functions.   */
  1319. /* This package is light on checking because I want to keep it short and    */
  1320. /* simple and portable (i.e. it would be too messy to distribute my entire  */
  1321. /* C culture (e.g. assertions package) with this package.                   */
  1322. /*                                                                          */
  1323. /****************************************************************************/
  1324. #include "crcmodel.h"
  1325. /****************************************************************************/
  1326. /* The following definitions make the code more readable.                   */
  1327. #define BITMASK(X) (1L << (X))
  1328. #define MASK32 0xFFFFFFFFL
  1329. #define LOCAL static
  1330. /****************************************************************************/
  1331. LOCAL ulong reflect P_((ulong v,int b));
  1332. LOCAL ulong reflect (v,b)
  1333. /* Returns the value v with the bottom b [0,32] bits reflected. */
  1334. /* Example: reflect(0x3e23L,3) == 0x3e26                        */
  1335. ulong v;
  1336. int   b;
  1337. {
  1338.  int   i;
  1339.  ulong t = v;
  1340.  for (i=0; i<b; i++)
  1341.    {
  1342.     if (t & 1L)
  1343.        v|=  BITMASK((b-1)-i);
  1344.     else
  1345.        v&= ~BITMASK((b-1)-i);
  1346.     t>>=1;
  1347.    }
  1348.  return v;
  1349. }
  1350. /****************************************************************************/
  1351. LOCAL ulong widmask P_((p_cm_t));
  1352. LOCAL ulong widmask (p_cm)
  1353. /* Returns a longword whose value is (2^p_cm->cm_width)-1.     */
  1354. /* The trick is to do this portably (e.g. without doing <<32). */
  1355. p_cm_t p_cm;
  1356. {
  1357.  return (((1L<<(p_cm->cm_width-1))-1L)<<1)|1L;
  1358. }
  1359. /****************************************************************************/
  1360. void cm_ini (p_cm)
  1361. p_cm_t p_cm;
  1362. {
  1363.  p_cm->cm_reg = p_cm->cm_init;
  1364. }
  1365. /****************************************************************************/
  1366. void cm_nxt (p_cm,ch)
  1367. p_cm_t p_cm;
  1368. int    ch;
  1369. {
  1370.  int   i;
  1371.  ulong uch  = (ulong) ch;
  1372.  ulong topbit = BITMASK(p_cm->cm_width-1);
  1373.  if (p_cm->cm_refin) uch = reflect(uch,8);
  1374.  p_cm->cm_reg ^= (uch << (p_cm->cm_width-8));
  1375.  for (i=0; i<8; i++)
  1376.    {
  1377.     if (p_cm->cm_reg & topbit)
  1378.        p_cm->cm_reg = (p_cm->cm_reg << 1) ^ p_cm->cm_poly;
  1379.     else
  1380.        p_cm->cm_reg <<= 1;
  1381.     p_cm->cm_reg &= widmask(p_cm);
  1382.    }
  1383. }
  1384. /****************************************************************************/
  1385. void cm_blk (p_cm,blk_adr,blk_len)
  1386. p_cm_t   p_cm;
  1387. p_ubyte_ blk_adr;
  1388. ulong    blk_len;
  1389. {
  1390.  while (blk_len--) cm_nxt(p_cm,*blk_adr++);
  1391. }
  1392. /****************************************************************************/
  1393. ulong cm_crc (p_cm)
  1394. p_cm_t p_cm;
  1395. {
  1396.  if (p_cm->cm_refot)
  1397.     return p_cm->cm_xorot ^ reflect(p_cm->cm_reg,p_cm->cm_width);
  1398.  else
  1399.     return p_cm->cm_xorot ^ p_cm->cm_reg;
  1400. }
  1401. /****************************************************************************/
  1402. ulong cm_tab (p_cm,index)
  1403. p_cm_t p_cm;
  1404. int    index;
  1405. {
  1406.  int   i;
  1407.  ulong r;
  1408.  ulong topbit = BITMASK(p_cm->cm_width-1);
  1409.  ulong inbyte = (ulong) index;
  1410.  if (p_cm->cm_refin) inbyte = reflect(inbyte,8);
  1411.  r = inbyte << (p_cm->cm_width-8);
  1412.  for (i=0; i<8; i++)
  1413.     if (r & topbit)
  1414.        r = (r << 1) ^ p_cm->cm_poly;
  1415.     else
  1416.        r<<=1;
  1417.  if (p_cm->cm_refin) r = reflect(r,p_cm->cm_width);
  1418.  return r & widmask(p_cm);
  1419. }
  1420. /****************************************************************************/
  1421. /*                             End of crcmodel.c                            */
  1422. /****************************************************************************/
  1423. 18. Roll Your Own Table-Driven Implementation
  1424. ---------------------------------------------
  1425. Despite all the fuss I've made about understanding and defining CRC
  1426. algorithms, the mechanics of their high-speed implementation remains
  1427. trivial. There are really only two forms: normal and reflected. Normal
  1428. shifts to the left and covers the case of algorithms with Refin=FALSE
  1429. and Refot=FALSE. Reflected shifts to the right and covers algorithms
  1430. with both those parameters true. (If you want one parameter true and
  1431. the other false, you'll have to figure it out for yourself!) The
  1432. polynomial is embedded in the lookup table (to be discussed). The
  1433. other parameters, Init and XorOt can be coded as macros. Here is the
  1434. 32-bit normal form (the 16-bit form is similar).
  1435.    unsigned long crc_normal ();
  1436.    unsigned long crc_normal (blk_adr,blk_len)
  1437.    unsigned char *blk_adr;
  1438.    unsigned long  blk_len;
  1439.    {
  1440.     unsigned long crc = INIT;
  1441.     while (blk_len--)
  1442.        crc = crctable[((crc>>24) ^ *blk_adr++) & 0xFFL] ^ (crc << 8);
  1443.     return crc ^ XOROT;
  1444.    }
  1445. Here is the reflected form:
  1446.    unsigned long crc_reflected ();
  1447.    unsigned long crc_reflected (blk_adr,blk_len)
  1448.    unsigned char *blk_adr;
  1449.    unsigned long  blk_len;
  1450.    {
  1451.     unsigned long crc = INIT_REFLECTED;
  1452.     while (blk_len--)
  1453.        crc = crctable[(crc ^ *blk_adr++) & 0xFFL] ^ (crc >> 8));
  1454.     return crc ^ XOROT;
  1455.    }
  1456. Note: I have carefully checked the above two code fragments, but I
  1457. haven't actually compiled or tested them. This shouldn't matter to
  1458. you, as, no matter WHAT you code, you will always be able to tell if
  1459. you have got it right by running whatever you have created against the
  1460. reference model given earlier. The code fragments above are really
  1461. just a rough guide. The reference model is the definitive guide.
  1462. Note: If you don't care much about speed, just use the reference model
  1463. code!
  1464. 19. Generating A Lookup Table
  1465. -----------------------------
  1466. The only component missing from the normal and reversed code fragments
  1467. in the previous section is the lookup table. The lookup table can be
  1468. computed at run time using the cm_tab function of the model package
  1469. given earlier, or can be pre-computed and inserted into the C program.
  1470. In either case, it should be noted that the lookup table depends only
  1471. on the POLY and RefIn (and RefOt) parameters. Basically, the
  1472. polynomial determines the table, but you can generate a reflected
  1473. table too if you want to use the reflected form above.
  1474. The following program generates any desired 16-bit or 32-bit lookup
  1475. table. Skip to the word "Summary" if you want to skip over this code.
  1476. /****************************************************************************/
  1477. /*                             Start of crctable.c                          */
  1478. /****************************************************************************/
  1479. /*                                                                          */
  1480. /* Author  : Ross Williams (ross@guest.adelaide.edu.au.).                   */
  1481. /* Date    : 3 June 1993.                                                   */
  1482. /* Version : 1.0.                                                           */
  1483. /* Status  : Public domain.                                                 */
  1484. /*                                                                          */
  1485. /* Description : This program writes a CRC lookup table (suitable for       */
  1486. /* inclusion in a C program) to a designated output file. The program can be*/
  1487. /* statically configured to produce any table covered by the Rocksoft^tm    */
  1488. /* Model CRC Algorithm. For more information on the Rocksoft^tm Model CRC   */
  1489. /* Algorithm, see the document titled "A Painless Guide to CRC Error        */
  1490. /* Detection Algorithms" by Ross Williams (ross@guest.adelaide.edu.au.).    */
  1491. /* This document is likely to be in "ftp.adelaide.edu.au/pub/rocksoft".     */
  1492. /*                                                                          */
  1493. /* Note: Rocksoft is a trademark of Rocksoft Pty Ltd, Adelaide, Australia.  */
  1494. /*                                                                          */
  1495. /****************************************************************************/
  1496. #include <stdio.h>
  1497. #include <stdlib.h>
  1498. #include "crcmodel.h"
  1499. /****************************************************************************/
  1500. /* TABLE PARAMETERS                                                         */
  1501. /* ================                                                         */
  1502. /* The following parameters entirely determine the table to be generated.   */
  1503. /* You should need to modify only the definitions in this section before    */
  1504. /* running this program.                                                    */
  1505. /*                                                                          */
  1506. /*    TB_FILE  is the name of the output file.                              */
  1507. /*    TB_WIDTH is the table width in bytes (either 2 or 4).                 */
  1508. /*    TB_POLY  is the "polynomial", which must be TB_WIDTH bytes wide.      */
  1509. /*    TB_REVER indicates whether the table is to be reversed (reflected).   */
  1510. /*                                                                          */
  1511. /* Example:                                                                 */
  1512. /*                                                                          */
  1513. /*    #define TB_FILE   "crctable.out"                                      */
  1514. /*    #define TB_WIDTH  2                                                   */
  1515. /*    #define TB_POLY   0x8005L                                             */
  1516. /*    #define TB_REVER  TRUE                                                */
  1517. #define TB_FILE   "crctable.out"
  1518. #define TB_WIDTH  4
  1519. #define TB_POLY   0x04C11DB7L
  1520. #define TB_REVER  TRUE
  1521. /****************************************************************************/
  1522. /* Miscellaneous definitions.                                               */
  1523. #define LOCAL static
  1524. FILE *outfile;
  1525. #define WR(X) fprintf(outfile,(X))
  1526. #define WP(X,Y) fprintf(outfile,(X),(Y))
  1527. /****************************************************************************/
  1528. LOCAL void chk_err P_((char *));
  1529. LOCAL void chk_err (mess)
  1530. /* If mess is non-empty, write it out and abort. Otherwise, check the error */
  1531. /* status of outfile and abort if an error has occurred.                    */
  1532. char *mess;
  1533. {
  1534.  if (mess[0] != 0   ) {printf("%sn",mess); exit(EXIT_FAILURE);}
  1535.  if (ferror(outfile)) {perror("chk_err");   exit(EXIT_FAILURE);}
  1536. }
  1537. /****************************************************************************/
  1538. LOCAL void chkparam P_((void));
  1539. LOCAL void chkparam ()
  1540. {
  1541.  if ((TB_WIDTH != 2) && (TB_WIDTH != 4))
  1542.     chk_err("chkparam: Width parameter is illegal.");
  1543.  if ((TB_WIDTH == 2) && (TB_POLY & 0xFFFF0000L))
  1544.     chk_err("chkparam: Poly parameter is too wide.");
  1545.  if ((TB_REVER != FALSE) && (TB_REVER != TRUE))
  1546.     chk_err("chkparam: Reverse parameter is not boolean.");
  1547. }
  1548. /****************************************************************************/
  1549. LOCAL void gentable P_((void));
  1550. LOCAL void gentable ()
  1551. {
  1552.  WR("/*****************************************************************/n");
  1553.  WR("/*                                                               */n");
  1554.  WR("/* CRC LOOKUP TABLE                                              */n");
  1555.  WR("/* ================                                              */n");
  1556.  WR("/* The following CRC lookup table was generated automagically    */n");
  1557.  WR("/* by the Rocksoft^tm Model CRC Algorithm Table Generation       */n");
  1558.  WR("/* Program V1.0 using the following model parameters:            */n");
  1559.  WR("/*                                                               */n");
  1560.  WP("/*    Width   : %1lu bytes.                                         */n",
  1561.     (ulong) TB_WIDTH);
  1562.  if (TB_WIDTH == 2)
  1563.  WP("/*    Poly    : 0x%04lX                                           */n",
  1564.     (ulong) TB_POLY);
  1565.  else
  1566.  WP("/*    Poly    : 0x%08lXL                                      */n",
  1567.     (ulong) TB_POLY);
  1568.  if (TB_REVER)
  1569.  WR("/*    Reverse : TRUE.                                            */n");
  1570.  else
  1571.  WR("/*    Reverse : FALSE.                                           */n");
  1572.  WR("/*                                                               */n");
  1573.  WR("/* For more information on the Rocksoft^tm Model CRC Algorithm,  */n");
  1574.  WR("/* see the document titled "A Painless Guide to CRC Error        */n");
  1575.  WR("/* Detection Algorithms" by Ross Williams                        */n");
  1576.  WR("/* (ross@guest.adelaide.edu.au.). This document is likely to be  */n");
  1577.  WR("/* in the FTP archive "ftp.adelaide.edu.au/pub/rocksoft".        */n");
  1578.  WR("/*                                                               */n");
  1579.  WR("/*****************************************************************/n");
  1580.  WR("n");
  1581.  switch (TB_WIDTH)
  1582.    {
  1583.     case 2: WR("unsigned short crctable[256] =n{n"); break;
  1584.     case 4: WR("unsigned long  crctable[256] =n{n"); break;
  1585.     default: chk_err("gentable: TB_WIDTH is invalid.");
  1586.    }
  1587.  chk_err("");
  1588.  {
  1589.   int i;
  1590.   cm_t cm;
  1591.   char *form    = (TB_WIDTH==2) ? "0x%04lX" : "0x%08lXL";
  1592.   int   perline = (TB_WIDTH==2) ? 8 : 4;
  1593.   cm.cm_width = TB_WIDTH*8;
  1594.   cm.cm_poly  = TB_POLY;
  1595.   cm.cm_refin = TB_REVER;
  1596.   for (i=0; i<256; i++)
  1597.     {
  1598.      WR(" ");
  1599.      WP(form,(ulong) cm_tab(&cm,i));
  1600.      if (i != 255) WR(",");
  1601.      if (((i+1) % perline) == 0) WR("n");
  1602.      chk_err("");
  1603.     }
  1604.  WR("};n");
  1605.  WR("n");
  1606.  WR("/*****************************************************************/n");
  1607.  WR("/*                   End of CRC Lookup Table                     */n");
  1608.  WR("/*****************************************************************/n");
  1609.  WR("");
  1610.  chk_err("");
  1611. }
  1612. }
  1613. /****************************************************************************/
  1614. main ()
  1615. {
  1616.  printf("n");
  1617.  printf("Rocksoft^tm Model CRC Algorithm Table Generation Program V1.0n");
  1618.  printf("-------------------------------------------------------------n");
  1619.  printf("Output file is "%s".n",TB_FILE);
  1620.  chkparam();
  1621.  outfile = fopen(TB_FILE,"w"); chk_err("");
  1622.  gentable();
  1623.  if (fclose(outfile) != 0)
  1624.     chk_err("main: Couldn't close output file.");
  1625.  printf("nSUCCESS: The table has been successfully written.n");
  1626. }
  1627. /****************************************************************************/
  1628. /*                             End of crctable.c                            */
  1629. /****************************************************************************/
  1630. 20. Summary
  1631. -----------
  1632. This document has provided a detailed explanation of CRC algorithms
  1633. explaining their theory and stepping through increasingly
  1634. sophisticated implementations ranging from simple bit shifting through
  1635. to byte-at-a-time table-driven implementations. The various
  1636. implementations of different CRC algorithms that make them confusing
  1637. to deal with have been explained. A parameterized model algorithm has
  1638. been described that can be used to precisely define a particular CRC
  1639. algorithm, and a reference implementation provided. Finally, a program
  1640. to generate CRC tables has been provided.
  1641. 21. Corrections
  1642. ---------------
  1643. If you think that any part of this document is unclear or incorrect,
  1644. or have any other information, or suggestions on how this document
  1645. could be improved, please context the author. In particular, I would
  1646. like to hear from anyone who can provide Rocksoft^tm Model CRC
  1647. Algorithm parameters for standard algorithms out there.
  1648. A. Glossary
  1649. -----------
  1650. CHECKSUM - A number that has been calculated as a function of some
  1651. message. The literal interpretation of this word "Check-Sum" indicates
  1652. that the function should involve simply adding up the bytes in the
  1653. message. Perhaps this was what early checksums were. Today, however,
  1654. although more sophisticated formulae are used, the term "checksum" is
  1655. still used.
  1656. CRC - This stands for "Cyclic Redundancy Code". Whereas the term
  1657. "checksum" seems to be used to refer to any non-cryptographic checking
  1658. information unit, the term "CRC" seems to be reserved only for
  1659. algorithms that are based on the "polynomial" division idea.
  1660. G - This symbol is used in this document to represent the Poly.
  1661. MESSAGE - The input data being checksummed. This is usually structured
  1662. as a sequence of bytes. Whether the top bit or the bottom bit of each
  1663. byte is treated as the most significant or least significant is a
  1664. parameter of CRC algorithms.
  1665. POLY - This is my friendly term for the polynomial of a CRC.
  1666. POLYNOMIAL - The "polynomial" of a CRC algorithm is simply the divisor
  1667. in the division implementing the CRC algorithm.
  1668. REFLECT - A binary number is reflected by swapping all of its bits
  1669. around the central point. For example, 1101 is the reflection of 1011.
  1670. ROCKSOFT^TM MODEL CRC ALGORITHM - A parameterized algorithm whose
  1671. purpose is to act as a solid reference for describing CRC algorithms.
  1672. Typically CRC algorithms are specified by quoting a polynomial.
  1673. However, in order to construct a precise implementation, one also
  1674. needs to know initialization values and so on.
  1675. WIDTH - The width of a CRC algorithm is the width of its polynomial
  1676. minus one. For example, if the polynomial is 11010, the width would be
  1677. 4 bits. The width is usually set to be a multiple of 8 bits.
  1678. B. References
  1679. -------------
  1680. [Griffiths87] Griffiths, G., Carlyle Stones, G., "The Tea-Leaf Reader
  1681. Algorithm: An Efficient Implementation of CRC-16 and CRC-32",
  1682. Communications of the ACM, 30(7), pp.617-620. Comment: This paper
  1683. describes a high-speed table-driven implementation of CRC algorithms.
  1684. The technique seems to be a touch messy, and is superseded by the
  1685. Sarwate algorithm.
  1686. [Knuth81] Knuth, D.E., "The Art of Computer Programming", Volume 2:
  1687. Seminumerical Algorithms, Section 4.6.
  1688. [Nelson 91] Nelson, M., "The Data Compression Book", M&T Books, (501
  1689. Galveston Drive, Redwood City, CA 94063), 1991, ISBN: 1-55851-214-4.
  1690. Comment: If you want to see a real implementation of a real 32-bit
  1691. checksum algorithm, look on pages 440, and 446-448.
  1692. [Sarwate88] Sarwate, D.V., "Computation of Cyclic Redundancy Checks
  1693. via Table Look-Up", Communications of the ACM, 31(8), pp.1008-1013.
  1694. Comment: This paper describes a high-speed table-driven implementation
  1695. for CRC algorithms that is superior to the tea-leaf algorithm.
  1696. Although this paper describes the technique used by most modern CRC
  1697. implementations, I found the appendix of this paper (where all the
  1698. good stuff is) difficult to understand.
  1699. [Tanenbaum81] Tanenbaum, A.S., "Computer Networks", Prentice Hall,
  1700. 1981, ISBN: 0-13-164699-0. Comment: Section 3.5.3 on pages 128 to 132
  1701. provides a very clear description of CRC codes. However, it does not
  1702. describe table-driven implementation techniques.
  1703. C. References I Have Detected But Haven't Yet Sighted
  1704. -----------------------------------------------------
  1705. Boudreau, Steen, "Cyclic Redundancy Checking by Program," AFIPS
  1706. Proceedings, Vol. 39, 1971.
  1707. Davies, Barber, "Computer Networks and Their Protocols," J. Wiley &
  1708. Sons, 1979.
  1709. Higginson, Kirstein, "On the Computation of Cyclic Redundancy Checks
  1710. by Program," The Computer Journal (British), Vol. 16, No. 1, Feb 1973.
  1711. McNamara, J. E., "Technical Aspects of Data Communication," 2nd
  1712. Edition, Digital Press, Bedford, Massachusetts, 1982.
  1713. Marton and Frambs, "A Cyclic Redundancy Checking (CRC) Algorithm,"
  1714. Honeywell Computer Journal, Vol. 5, No. 3, 1971.
  1715. Nelson M., "File verification using CRC", Dr Dobbs Journal, May 1992,
  1716. pp.64-67.
  1717. Ramabadran T.V., Gaitonde S.S., "A tutorial on CRC computations", IEEE
  1718. Micro, Aug 1988.
  1719. Schwaderer W.D., "CRC Calculation", April 85 PC Tech Journal,
  1720. pp.118-133.
  1721. Ward R.K, Tabandeh M., "Error Correction and Detection, A Geometric
  1722. Approach" The Computer Journal, Vol. 27, No. 3, 1984, pp.246-253.
  1723. Wecker, S., "A Table-Lookup Algorithm for Software Computation of
  1724. Cyclic Redundancy Check (CRC)," Digital Equipment Corporation
  1725. memorandum, 1974.
  1726. ***** The END ******