Method and system for syndrome generation and data recovery

Information

  • Patent Grant
  • 7343546
  • Patent Number
    7,343,546
  • Date Filed
    Thursday, December 23, 2004
    19 years ago
  • Date Issued
    Tuesday, March 11, 2008
    16 years ago
Abstract
A method and system for syndrome generation and data recovery is described. The system includes a recovery device coupled to one or more storage devices to recover data in the storage devices. The recovery device includes a first comparator to generate a first parity factor based on data in one or more of the storage devices, a multiplier to multiply data from one or more of the storage devices with a multiplication factor to generate a product, and a second comparator coupled to the multiplier to generate a second parity factor based at least in part on the product.
Description
TECHNICAL FIELD

Embodiments of the invention relate to syndrome generation and data recovery, and more specifically to RAID syndrome generation and data recovery.


BACKGROUND

With the increase in use of large-scale storage systems, such as with Fiber Channel and Gigabit Ethernet systems, there is an increase in the susceptibility of these systems to multiple disk failures. The rapid growth of disk capacity also prolongs the disk recovery time in the event of disk failures. This prolonged recovery time increases the probability of subsequent disk failures during the reconstruction of user data and parity information stored in a faulty disk. In addition, latent sector failures caused by data that was left unread for a long period of time may prevent data recovery after a disk failure that results in loss of data. The use of less expensive disks, such as ATA (Advanced Technology Attachment) disks, in arrays where high data integrity is required also increases the probability of such disk failures.


RAID (Redundant Array of Independent Disks) architectures have been developed to allow recovery from disk failures. Typically, the XOR (Exclusive-OR) of data from a number of disks is maintained on a redundant disk. In the event of a disk failure, the data on the failed disk is reconstructed by XORing the data on the surviving disks. The reconstructed data is written to a spare disk. However, data will be lost if the second disk fails before the reconstruction is complete. Traditional disk arrays that protect the loss of no more than one disk are inadequate for data recovery, especially for large-scale storage systems.





BRIEF DESCRIPTION OF THE DRAWINGS

The invention is illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings in which like reference numerals refer to similar elements.



FIG. 1 is a block diagram illustrating a system that allows for recovery from multiple disk failures.



FIG. 2 is a table of example values for a Galois field.



FIG. 3 is a block diagram illustrating a system according to an embodiment of the invention.



FIG. 4 is a flow diagram illustrating a method according to an embodiment of the invention.





DETAILED DESCRIPTION

Embodiments of a system and method for syndrome generation and data recovery are described. In the following description, numerous specific details are set forth. However, it is understood that embodiments of the invention may be practiced without these specific details. In other instances, well-known circuits, structures and techniques have not been shown in detail in order not to obscure the understanding of this description.


Reference throughout this specification to “one embodiment” or “an embodiment” means that a particular feature, structure, or characteristic described in connection with the embodiment is included in at least one embodiment of the invention. Thus, the appearances of the phrases “in one embodiment” or “in an embodiment” in various places throughout this specification are not necessarily all referring to the same embodiment. Furthermore, the particular features, structures, or characteristics may be combined in any suitable manner in one or more embodiments.


Referring to FIG. 1, a block diagram illustrates a system 100 that allows for recovery from multiple disk failures. The system 100 includes one or more storage blocks for storing data, such as 102-124, and two or more storage blocks for storing parity or syndrome information, such as 130-144. In one embodiment, the system 100 is a RAID (Redundant Array of Independent Disks) system. In one embodiment, two syndromes are generated and stored: P syndrome and Q syndrome. The P syndrome is generated by computing parity across a stripe. The Q syndrome is generated by using Galois Field multiplication. The regeneration scheme for data recovery uses both Galois Field multiplication and division.


The following are the equations for generating P and Q for a storage array with n data disks and two check disks:

P=D0⊕D1⊕D2 . . . ⊕Dn−1  (Equation 1)
Q=g0*D0⊕g1*D1⊕g2*D2 . . . gn−1*Dn−1  (Equation 2)


P is the simple parity of data (D) computed across a stripe using ⊕ (XOR) operations. Q requires multiplication (*) using a Galois Field multiplier (g).


The following equations show the generation of P and Q when updating a data block Da:

P(new)=P(old)⊕Da(old)⊕Da(new)
Q(new)=Q(old)⊕ga*Da(old)⊕ga*Da(new).


There are four cases of multiple disk failure that require recovery. In case one, P and Q fail. In this case, P and Q may be regenerated using Equations 1 and 2 shown above.


In case two, Q and a data disk (Da) fail. In this case, Da may be regenerated using P and the remaining data disks via Equation 1. Q may then be regenerated using Equation 2.


In case three, P and a data disk (Da) fail. In this case, Da may be regenerated using Q, the remaining data disks, and the following equation:

Da=(Q⊕Qa)*g−a=(Q⊕Qa)*g255−a, where
Qa=g0D0⊕g1D1⊕ . . . ⊕ga−1Da−1⊕ga+aDa+1 . . . ⊕gn−1Dn−1.

After Da is regenerated, P may be regenerated using Equation 1.


In case four, two data disks (Da and Db) fail. In this case, Da and Db may be regenerated using P and Q, the remaining data disks, and the following equations:

Da=(g−a*(Q⊕Qab)⊕gb−a*(P⊕Pab))/(gb−a⊕0000 0001)
Db=Da⊕(P⊕Pab), where
Pab=D0⊕D1⊕ . . . ⊕Da−1⊕Da+1 . . . ⊕Db−1⊕Db+1 . . . ⊕Dn−1
Qab=g0D0⊕g1D1⊕ . . . ⊕ga−1Da−1⊕ga+1Da+1 . . . ⊕gb−1Db−1⊕gb−1Db+1 . . . ⊕gn−1Dn−1.


The following are examples of recovery from disk failures in the cases described above. In the following examples, the datapath is assumed to be one byte or 8 bits wide. Therefore, a Galois Field, GF (28) is used. The invention may be implemented for datapaths that are more or less than one byte wide, and larger or smaller Galois fields may be used.


The following equations may be used for multiplying two 8-bit elements (b and c) to yield an 8-bit product (a).

b=[b7b6b5b4b3b2b1b0] and c=[c7c6c5c4c3c2c1c0].

    • a0=b0.c0⊕b7.c1⊕b6.c2⊕b5.c3⊕b4.c4⊕b3.c5⊕b7.c5⊕b2.c6⊕b7.c6⊕b6.c6⊕b1.c7⊕b7.c7⊕b6.c7⊕b5.c7
    • a1=b1.c0⊕b0.c1⊕b7.c2⊕b6.c3⊕b5.c4⊕b4.c5⊕b3.c6⊕b7.c6 E) b2.c7⊕b7.c7⊕b6.c7
    • a2=b2.c0⊕b1.c1⊕b7.c1⊕b0.c2⊕b6.c2⊕b7.c3⊕b5.c3⊕b6.c4⊕b4.c4⊕b5.c5⊕b3.c5⊕b7.c5⊕b2.c6⊕b7.c6⊕b6.c6⊕b4.c6⊕b1.c7⊕b3.c7⊕b6.c7⊕b5.c7
    • a3=b3.c0⊕b2.c1⊕b7.c1⊕b1.c2⊕b7.c2⊕b6.c2⊕b0.c3⊕b6.c3⊕b5.c3⊕b7.c4⊕b5.c4⊕b4.c4⊕b6.c5⊕b4.c5⊕b3.c5⊕b7.c5⊕b2.c6⊕b6.c6⊕b5.c6⊕b3.c6⊕b2.c7⊕b4.c7⊕b1.c7⊕b5.c7
    • a4=b4.c0⊕b3.c1⊕b7.c1⊕b2.c2⊕b7.c2⊕b6.c2⊕b1.c3⊕b7.c3⊕b6.c3⊕b5.c3⊕b0.c4⊕b6.c4⊕b5.c4⊕b4.c4⊕b5.c5⊕b4.c5⊕b3.c5⊕b2.c6⊕b4.c6⊕b3.c6⊕b1.c7⊕b7.c7⊕b2.c7⊕b3.c7
    • a5=b5.c0⊕b4.c1⊕b3.c2⊕b7.c2⊕b2.c3⊕b7.c3⊕b6.c3⊕b1.c4⊕b7.c4⊕b6.c4⊕b5.c4⊕b0.c5⊕b6.c5⊕b5.c5⊕b4.c5⊕b5.c6⊕b4.c6⊕b3.c6⊕b2.c7⊕b4.c7⊕b3.c7
    • a6=b6.c0⊕b5.c1⊕b4.c2⊕b3.c3⊕b7.c3⊕b2.c4⊕b7.c4⊕b6.c4⊕b1.c5⊕b7.c5⊕b6.c5⊕b5.c5⊕b0.c6⊕b6.c6⊕b5.c6⊕b4.c6⊕b5.c7⊕b4.c7⊕b3.c7
    • a7=b7.c0⊕b6.c1⊕b5.c2⊕b4.c3⊕b3.c4⊕b7.c4⊕b2.c5⊕b7.c5⊕b6.c5⊕b1.c6⊕b7.c6⊕b6.c6⊕b5.c6⊕b0.c7⊕b6.c7⊕b5.c7⊕b4.c7



FIG. 2 shows a table 200 providing example values of the Galois field multiplier ga for g=0000 0010. The negative power of a generator for GF(28) can be computed using the following equation:

g−a=g255−a.


The following example shows how to generate P and Q parity for a disk array with four data disks and two parity disks. Assume that each data block contains one data byte. Let Di be the data contain in disk I (i=0, 1, 2, 3). Consider the following data stripe: D0=1011 0100, D1=0010 1100, D2=1100 0110 and D3=101 0101. Then, P may be generated using Equation 1 as follows:









P
=


D
0



D
1



D
2



D
3








=


1011





0100



0010





1100



1100





0110



1101





0101








=

1000





1011.









Q may be generated using Equation 2 as follows:

Q=g0D0⊕g1D1⊕g2D2⊕g3D3.

From the table in FIG. 2, g0=0000 0001, g1=0000 0010, g2=0000 0100, and g3=0000 1000.


Therefore,









Q
=




0000





0001
*
1011





0100



0000





0010
*
0010





1100













0000





0100
*
1100





0110



0000





1000
*
1101





0101








=




1011





0100



0101





1000



0011





1111



1110





0110








=



0011





0101.








The following example shows how to recover from two disk failures using the array generated above. In the first case, P and Q fail. In this case, P and Q are regenerated using Equations 1 and 2 as shown above. In the second case, Q and a data disk (Da) fail. In this case, Da may be regenerated using P and the remaining data disks via Equation 1. Q may then be regenerated using Equation 2. In the third case, P and a data disk (Da) fail. In this case, Da may be regenerated using Q, the remaining data disks, and the following equation:

Da=(Q⊕Qa)*g−a=(Q⊕Qa)*g255−a, where
Qa=g0D0⊕g1D1⊕ . . . ⊕ga−1Da−1⊕ga+1Da+1 . . . ⊕gn−1Dn−1.

For example, suppose disk 2 fails. Then,










D
2

=




(

Q


Q
2


)

·

g
253








=




(

Q



g
0



D
0





g
1



D
1





g
3



D
3



)

·

g
253








=



(


0011





0101



0000





0001
*
1011





0100



0000





0010
*














0010





1100



0000





1000


)

*

g
253









Using the table in FIG. 2, g253=0100 0111. Therefore,










D
2

=




(


0011





0101



1011





0100



0101





1000



1110





0110


)

*










0100





0111







=



0011





1111
*
0100





0111







=



1100





0110.









P may then be regenerated using Equation 1, since all data blocks are now available.


In the fourth case, two data disks (Da and Db) fail. In this case, Da and Db may be regenerated using P and Q, the remaining data disks, and the following equations:

Da=(g−a*(Q⊕Qab)⊕gb−a*(P⊕Pab))/(gb−a⊕0000 0001)
Db=Da⊕(P⊕Pab), where
Pab=D0⊕ . . . ⊕Da−1⊕Da+1 . . . ⊕Db−1⊕Db+1 . . . ⊕Dn−1
Qab=g0D0⊕g1D1⊕ . . . ⊕ga−1Da−1⊕ga+1Da+1 . . . ⊕gb−1Db−1⊕gb+1Db+1 . . . ⊕gn−1Dn−1.

For example, assume that disks 1 and 3 failed. Then,










D
1

=




(



g

-
1


·

(

Q


Q
13


)





g

3
-
1


*

(

P


P
13


)



)

/

(


g

3
-
1




0000





0001


)










=





g
254

*

(

Q


Q
13


)





g
2

*

(

P


P
13


)




)

/

(


g
2



0000





0001


)














Q


Q
13


=




0011





0101



0000





0001
*
1011





0100












0000





0100
*
1100





0110







=




0011





0101



1011





0100



0011





1111








=



1011





1110











P


P
13


=



1000





1011



1011





0100



1100





0110


=

1111





1001







From the table in FIG. 2, g254=1000 1110 and g2=0000 0100. Therefore,










D
1

=




(


(

1000





1110
*
1011





1110

)



(

0000





0100
*
1111





1001

)


)

/










(


0000





0100



0000





0001









=




(


0101





1111



1100





0011


)

/

(

0000





0101

)








=




(

1011





1100

)

/

(

0000





0101

)








=



0010





1100.














D
3

=


D
1



(

P


P
13


)








=


0010





1100



1111





1001








=

1101





0101.









FIG. 3 is a block diagram of a system 300 according to an embodiment of the invention. System 300 includes a multiplier 302 and one or more comparators, such as 304 and 306. In one embodiment, one or more of the comparators are XOR (Exclusive-OR) gates. System 300 may also include one or more buffers, such as 308 and 310. The buffer 308 stores the output from the comparator 306. The comparator 306 compares the data 320 read from the storage blocks shown in FIG. 1 with the output of buffer 308. In this way, the comparator 306 may be used to compute the P syndrome described above, which is the parity across a stripe.


The multiplier 302 multiplies the multiplicand 330 with the data 320 read from the storage blocks shown in FIG. 1. In one embodiment, the multiplicand 330 is a Galois field, such as shown in Table 200 of FIG. 2. The output of the multiplier 302 is compared to the output of the buffer 310 by comparator 304. In this way, a Galois field multiplication may be performed and the Q syndrome may be computed. The multiplier 302 may also be used to perform the various multiplication operations for the equations described above with respect to the four cases in which multiple disks fail. Data may be allowed to pass through the multiplier by setting the multiplicand 330 equal to one. A selector 312 may be used to select between the output of the multiplier 302 and the output of the comparator 304. In one embodiment, the selector 312 is a multiplexer (MUX).


System 300 may also include a divider 314 to be used to perform the division operations for the equations described above with respect to the four cases in which multiple disks fail. For example, in case four, the computation for regeneration of Da has a division operation, which may be performed by divider 314. Data may be allowed to pass through the divider 314 by setting the divisor 340 equal to one. This may be desired when no division operation is required to be performed.


As shown in FIG. 3, the system 300 performs the generation of the P and Q syndromes in parallel. Other multiplication and division operations that are required may also be performed by system 300. A selector 316 may be used to select the desired output of the system. In one embodiment, the selector 316 is a multiplexer (MUX).



FIG. 4 illustrates a method for generating parity and recovering data in one or more storage blocks according to one embodiment of the invention. At 400, a first parity factor is computed based on comparing data from one or more of the storage blocks. At 402, a second parity factor is computed in parallel based at least in part on a product of a multiplication factor and data from one or more of the storage blocks. In one embodiment, the first parity factor is a P syndrome and the second parity factor is a Q syndrome as described above. In one embodiment, the second parity factor is further divided by a divisor. In one embodiment, the first parity factor and the second parity factor are buffered. In one embodiment, a selector selects between the first parity factor and the second parity factor.


While the invention has been described in terms of several embodiments, those of ordinary skill in the art will recognize that the invention is not limited to the embodiments described, but can be practiced with modification and alteration within the spirit and scope of the appended claims. The description is thus to be regarded as illustrative instead of limiting.

Claims
  • 1. An apparatus for recovering data in one or more storage blocks comprising: a first comparator to generate a first parity factor based on data from one or more of the storage blocks;a multiplier to multiply the data from one or more of the storage blocks with a multiplication factor to generate a product;a second comparator coupled to the multiplier to generate a second parity factor based at least in part on the product; anda selector coupled to the first comparator and the second comparator to choose between the first parity factor and the second parity factor.
  • 2. The apparatus of claim 1, wherein the first comparator and the second comparator operate in parallel to generate the first parity factor and the second parity factor.
  • 3. The apparatus of claim 1, further comprising a divider coupled to the second comparator to perform division operations on the second parity factor.
  • 4. The apparatus of claim 1, further comprising a first buffer coupled to the first comparator to store the first parity factor.
  • 5. The apparatus of claim 1, further comprising a second buffer coupled to the second comparator to store the second parity factor.
  • 6. The apparatus of claim 1, wherein the first comparator is an XOR (Exclusive OR) gate.
  • 7. The apparatus of claim 1, wherein the second comparator is an XOR (Exclusive OR) gate.
  • 8. The apparatus of claim 1, wherein the multiplier performs Galois Field multiplication.
  • 9. The apparatus of claim 1, wherein the first comparator generates a RAID (Redundant Array of Independent Disks) syndrome based on data from one or more of the storage blocks.
  • 10. The apparatus of claim 1, wherein the second comparator generates a RAID (Redundant Array of Independent Disks) syndrome based at least in part on the product.
  • 11. A method for recovery of data in one or more storage blocks comprising: computing a first parity factor with a first comparator based on comparing data from one or more of the storage blocks;generating a product by multiplying the data from one or more of the storage blocks with a multiplication factor:computing in parallel with the computing of the first parity factor a second parity factor based at least in part on the product, wherein the second parity factor is computed with a second comparator coupled to received the product; andselectively outputting either the first parity factor or the second parity factor with a selector coupled to receive the first and second parity factors.
  • 12. The method of claim 11, wherein computing a first parity factor comprises computing a RAID (Redundant Array of Independent Disks) P-Syndrome based on data from one or more of the storage blocks.
  • 13. The method of claim 11, wherein computing a second parity factor comprises computing a RAID (Redundant Array of Independent Disks) Q-Syndrome based at least in part on product.
  • 14. The method of claim 13, wherein computing a RAID Q-Syndrome based at least in part on the product comprises computing a RAID Q-Syndrome based at least in part on a product of a Galois field multiplicand and data from one or more of the storage blocks.
  • 15. The method of claim 11, further comprising dividing the second parity factor by a divisor.
  • 16. The method of claim 11, further comprising storing the first parity factor.
  • 17. The method of claim 11, further comprising storing the second parity factor.
  • 18. A system comprising: one or more storage devices to store data; anda recovery device coupled to the one or more storage devices to recover the data, the recovery device including: a first comparator to generate a first parity factor based on data on one or more of the storage devices;a multiplier to multiply data from one or more of the storage devices with a multiplication factor to generate a product; anda second comparator coupled to the multiplier to generate a second parity factor based at least in part on the product.
  • 19. The system of claim 18, wherein the recovery device further includes a divider coupled to the second comparator.
  • 20. The system of claim 18, wherein the recovery device further includes a selector coupled to the first comparator and the second comparator to choose between the first parity factor and the second parity factor.
  • 21. The system of claim 18, wherein the multiplier performs Galois Field multiplication.
  • 22. The system of claim 18, wherein the first comparator generates a RAID (Redundant Array of Independent Disks) syndrome based on data from one or more of the storage devices.
  • 23. The system of claim 18, wherein the second comparator generates a RAID (Redundant Array of Independent Disks) syndrome based at least in part on the product.
US Referenced Citations (9)
Number Name Date Kind
5099484 Smelser Mar 1992 A
5271012 Blaum et al. Dec 1993 A
5499253 Lary Mar 1996 A
5579475 Blaum et al. Nov 1996 A
6247157 Edirisooriya Jun 2001 B1
6567891 Oldfield et al. May 2003 B2
20050050384 Horn Mar 2005 A1
20050108613 Kobayashi May 2005 A1
20060123268 Forhan et al. Jun 2006 A1
Foreign Referenced Citations (1)
Number Date Country
PCTUS2005046996 Oct 2006 WO
Related Publications (1)
Number Date Country
20060156211 A1 Jul 2006 US