-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: FIP-0061: Add new PoSt proof types #1727
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -108,6 +108,11 @@ pub enum RegisteredPoStProof { | |||||||||||||||||||||
StackedDRGWindow512MiBV1, | ||||||||||||||||||||||
StackedDRGWindow32GiBV1, | ||||||||||||||||||||||
StackedDRGWindow64GiBV1, | ||||||||||||||||||||||
StackedDRGWindow2KiBV1P1, | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit but... can't we just call these V2? |
||||||||||||||||||||||
StackedDRGWindow8MiBV1P1, | ||||||||||||||||||||||
StackedDRGWindow512MiBV1P1, | ||||||||||||||||||||||
StackedDRGWindow32GiBV1P1, | ||||||||||||||||||||||
StackedDRGWindow64GiBV1P1, | ||||||||||||||||||||||
Invalid(i64), | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
|
@@ -116,11 +121,21 @@ impl RegisteredPoStProof { | |||||||||||||||||||||
pub fn sector_size(self) -> Result<SectorSize, String> { | ||||||||||||||||||||||
use RegisteredPoStProof::*; | ||||||||||||||||||||||
match self { | ||||||||||||||||||||||
StackedDRGWindow2KiBV1 | StackedDRGWinning2KiBV1 => Ok(SectorSize::_2KiB), | ||||||||||||||||||||||
StackedDRGWindow8MiBV1 | StackedDRGWinning8MiBV1 => Ok(SectorSize::_8MiB), | ||||||||||||||||||||||
StackedDRGWindow512MiBV1 | StackedDRGWinning512MiBV1 => Ok(SectorSize::_512MiB), | ||||||||||||||||||||||
StackedDRGWindow32GiBV1 | StackedDRGWinning32GiBV1 => Ok(SectorSize::_32GiB), | ||||||||||||||||||||||
StackedDRGWindow64GiBV1 | StackedDRGWinning64GiBV1 => Ok(SectorSize::_64GiB), | ||||||||||||||||||||||
StackedDRGWindow2KiBV1P1 | StackedDRGWindow2KiBV1 | StackedDRGWinning2KiBV1 => { | ||||||||||||||||||||||
Ok(SectorSize::_2KiB) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
StackedDRGWindow8MiBV1P1 | StackedDRGWindow8MiBV1 | StackedDRGWinning8MiBV1 => { | ||||||||||||||||||||||
Ok(SectorSize::_8MiB) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
StackedDRGWindow512MiBV1P1 | StackedDRGWindow512MiBV1 | StackedDRGWinning512MiBV1 => { | ||||||||||||||||||||||
Ok(SectorSize::_512MiB) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
StackedDRGWindow32GiBV1P1 | StackedDRGWindow32GiBV1 | StackedDRGWinning32GiBV1 => { | ||||||||||||||||||||||
Ok(SectorSize::_32GiB) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
StackedDRGWindow64GiBV1P1 | StackedDRGWindow64GiBV1 | StackedDRGWinning64GiBV1 => { | ||||||||||||||||||||||
Ok(SectorSize::_64GiB) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Invalid(i) => Err(format!("unsupported proof type: {}", i)), | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
@@ -138,7 +153,12 @@ impl RegisteredPoStProof { | |||||||||||||||||||||
| StackedDRGWindow8MiBV1 | ||||||||||||||||||||||
| StackedDRGWindow512MiBV1 | ||||||||||||||||||||||
| StackedDRGWindow32GiBV1 | ||||||||||||||||||||||
| StackedDRGWindow64GiBV1 => Ok(192), | ||||||||||||||||||||||
| StackedDRGWindow64GiBV1 | ||||||||||||||||||||||
| StackedDRGWindow2KiBV1P1 | ||||||||||||||||||||||
| StackedDRGWindow8MiBV1P1 | ||||||||||||||||||||||
| StackedDRGWindow512MiBV1P1 | ||||||||||||||||||||||
| StackedDRGWindow32GiBV1P1 | ||||||||||||||||||||||
| StackedDRGWindow64GiBV1P1 => Ok(192), | ||||||||||||||||||||||
Invalid(i) => Err(format!("unsupported proof type: {}", i)), | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
@@ -148,11 +168,17 @@ impl RegisteredPoStProof { | |||||||||||||||||||||
// Resolve to post proof and then compute size from that. | ||||||||||||||||||||||
use RegisteredPoStProof::*; | ||||||||||||||||||||||
match self { | ||||||||||||||||||||||
StackedDRGWinning64GiBV1 | StackedDRGWindow64GiBV1 => Ok(2300), | ||||||||||||||||||||||
StackedDRGWinning32GiBV1 | StackedDRGWindow32GiBV1 => Ok(2349), | ||||||||||||||||||||||
StackedDRGWinning2KiBV1 | StackedDRGWindow2KiBV1 => Ok(2), | ||||||||||||||||||||||
StackedDRGWinning8MiBV1 | StackedDRGWindow8MiBV1 => Ok(2), | ||||||||||||||||||||||
StackedDRGWinning512MiBV1 | StackedDRGWindow512MiBV1 => Ok(2), | ||||||||||||||||||||||
StackedDRGWinning64GiBV1 | StackedDRGWindow64GiBV1 | StackedDRGWindow64GiBV1P1 => { | ||||||||||||||||||||||
Ok(2300) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
StackedDRGWinning32GiBV1 | StackedDRGWindow32GiBV1 | StackedDRGWindow32GiBV1P1 => { | ||||||||||||||||||||||
Ok(2349) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
StackedDRGWinning2KiBV1 | StackedDRGWindow2KiBV1 | StackedDRGWindow2KiBV1P1 => Ok(2), | ||||||||||||||||||||||
StackedDRGWinning8MiBV1 | StackedDRGWindow8MiBV1 | StackedDRGWindow8MiBV1P1 => Ok(2), | ||||||||||||||||||||||
StackedDRGWinning512MiBV1 | StackedDRGWindow512MiBV1 | StackedDRGWindow512MiBV1P1 => { | ||||||||||||||||||||||
Ok(2) | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Invalid(i) => Err(format!("unsupported proof type: {}", i)), | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
@@ -209,11 +235,11 @@ impl RegisteredSealProof { | |||||||||||||||||||||
pub fn registered_window_post_proof(self) -> Result<RegisteredPoStProof, String> { | ||||||||||||||||||||||
use RegisteredPoStProof::*; | ||||||||||||||||||||||
match self { | ||||||||||||||||||||||
Self::StackedDRG64GiBV1 | Self::StackedDRG64GiBV1P1 => Ok(StackedDRGWindow64GiBV1), | ||||||||||||||||||||||
Self::StackedDRG32GiBV1 | Self::StackedDRG32GiBV1P1 => Ok(StackedDRGWindow32GiBV1), | ||||||||||||||||||||||
Self::StackedDRG2KiBV1 | Self::StackedDRG2KiBV1P1 => Ok(StackedDRGWindow2KiBV1), | ||||||||||||||||||||||
Self::StackedDRG8MiBV1 | Self::StackedDRG8MiBV1P1 => Ok(StackedDRGWindow8MiBV1), | ||||||||||||||||||||||
Self::StackedDRG512MiBV1 | Self::StackedDRG512MiBV1P1 => Ok(StackedDRGWindow512MiBV1), | ||||||||||||||||||||||
Self::StackedDRG64GiBV1 | Self::StackedDRG64GiBV1P1 => Ok(StackedDRGWindow64GiBV1P1), | ||||||||||||||||||||||
Self::StackedDRG32GiBV1 | Self::StackedDRG32GiBV1P1 => Ok(StackedDRGWindow32GiBV1P1), | ||||||||||||||||||||||
Self::StackedDRG2KiBV1 | Self::StackedDRG2KiBV1P1 => Ok(StackedDRGWindow2KiBV1P1), | ||||||||||||||||||||||
Self::StackedDRG8MiBV1 | Self::StackedDRG8MiBV1P1 => Ok(StackedDRGWindow8MiBV1P1), | ||||||||||||||||||||||
Self::StackedDRG512MiBV1 | Self::StackedDRG512MiBV1P1 => Ok(StackedDRGWindow512MiBV1P1), | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ✅ |
||||||||||||||||||||||
Self::Invalid(_) => Err(format!( | ||||||||||||||||||||||
"Unsupported mapping from {:?} to PoSt-window RegisteredProof", | ||||||||||||||||||||||
self | ||||||||||||||||||||||
|
@@ -290,6 +316,11 @@ i64_conversion! { | |||||||||||||||||||||
StackedDRGWindow512MiBV1 => 7, | ||||||||||||||||||||||
StackedDRGWindow32GiBV1 => 8, | ||||||||||||||||||||||
StackedDRGWindow64GiBV1 => 9, | ||||||||||||||||||||||
StackedDRGWindow2KiBV1P1 => 10, | ||||||||||||||||||||||
StackedDRGWindow8MiBV1P1 => 11, | ||||||||||||||||||||||
StackedDRGWindow512MiBV1P1 => 12, | ||||||||||||||||||||||
StackedDRGWindow32GiBV1P1 => 13, | ||||||||||||||||||||||
StackedDRGWindow64GiBV1P1 => 14, | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
i64_conversion! { | ||||||||||||||||||||||
|
@@ -371,6 +402,11 @@ impl TryFrom<RegisteredPoStProof> for filecoin_proofs_api::RegisteredPoStProof { | |||||||||||||||||||||
StackedDRGWindow512MiBV1 => Ok(Self::StackedDrgWindow512MiBV1), | ||||||||||||||||||||||
StackedDRGWindow32GiBV1 => Ok(Self::StackedDrgWindow32GiBV1), | ||||||||||||||||||||||
StackedDRGWindow64GiBV1 => Ok(Self::StackedDrgWindow64GiBV1), | ||||||||||||||||||||||
StackedDRGWindow2KiBV1P1 => Ok(Self::StackedDrgWindow2KiBV1), | ||||||||||||||||||||||
StackedDRGWindow8MiBV1P1 => Ok(Self::StackedDrgWindow8MiBV1), | ||||||||||||||||||||||
StackedDRGWindow512MiBV1P1 => Ok(Self::StackedDrgWindow512MiBV1), | ||||||||||||||||||||||
StackedDRGWindow32GiBV1P1 => Ok(Self::StackedDrgWindow32GiBV1), | ||||||||||||||||||||||
StackedDRGWindow64GiBV1P1 => Ok(Self::StackedDrgWindow64GiBV1), | ||||||||||||||||||||||
Comment on lines
+405
to
+409
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
typo? |
||||||||||||||||||||||
Invalid(i) => Err(format!("unsupported proof type: {}", i)), | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this network breaking? I.e., will updating to version 14 cause a hard-fork?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The answer should be no, but I will let @cryptonemo confirm.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The answer is yes, this is
nv19
scope and beyond.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To clarify, it's yes once the new PoSt Proof types are used/accepted. If you continue using the old PoSt proof types in the new version of proofs, it's compatible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, that's all we care about. Adding support for new types is backwards compatible.