Skip to content
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

s390x: fix x448, add x448 test vector, ctime for x25519 and x448 #10339

Closed
wants to merge 4 commits into from

Conversation

p-steuer
Copy link
Member

@p-steuer p-steuer commented Nov 2, 2019

The s390x x448 implementation does not correctly reduce non-canonical values, ie u-coordinates greater than or equal to p = 2^448 - 2^224 - 1. The first commit fixes this.

The bug went unnoticed because there is no test vector for that case. x25519 has such a test vector obtained from wycheproof but wycheproof does not have a corresponding x448 test vector. So the second commit adds a self-generated test vector for that case.

While we are at it, the third commit makes the processing of those non-canonical values constant time for x25519 and x448.

  • tests are added or updated

@levitte levitte changed the title Fix s390x x448 and add x448 test vector Fix s390x x25519 and add x448 test vector Nov 3, 2019
@levitte
Copy link
Member

levitte commented Nov 3, 2019

Nice description. It should end up in the commit messages, at least for the first and second commit

The s390x x448 implementation does not correctly reduce non-canonical
values i.e., u-coordinates >= p = 2^448 - 2^224 - 1.

Signed-off-by: Patrick Steuer <[email protected]>
x25519 has such a test vector obtained from wycheproof but wycheproof
does not have a corresponding x448 test vector.
So add a self-generated test vector for that case.

Signed-off-by: Patrick Steuer <[email protected]>
@p-steuer
Copy link
Member Author

p-steuer commented Nov 3, 2019

It should end up in the commit messages, at least for the first and second commit

Done.

I dont agree with you title change: Its actually x448 which has a bug (not x25519) and the x448 test vector is added to avoid regressions.
Only the constant-time changes also affect x25519.

@p-steuer p-steuer changed the title Fix s390x x25519 and add x448 test vector s390x: fix x448, add x448 test vector, ctime for x25519 and x448 Nov 3, 2019
@levitte
Copy link
Member

levitte commented Nov 3, 2019

I dont agree with you title change

Totally fine. I misread it as "... x448 and x448..." instead of "... x448 and add x448...", so took it for a typo

@p-steuer
Copy link
Member Author

p-steuer commented Nov 3, 2019

travis red corss not relevant

a[i] ^= tmp;
b[i] ^= tmp;
}
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems like this function belongs in constant_time.h. We already have uint32_t and uint64_t versions. This just adds another variant.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay, i will move it there.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

@@ -966,7 +981,7 @@ static int s390x_x448_mul(unsigned char u_dst[56],
memcpy(param.x448.d_src, d_src, 56);

s390x_flip_endian64(param.x448.u_src, param.x448.u_src);
s390x_x448_mod_p(param.x448.u_src);
s390x_x448_mod_p(param.x448.u_src + 8);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm struggling to understand what's going on in this change and the other related change in your first commit. Can you explain in a bit more detail what is happening here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The structure of the parameter block the pcc instruction works on is reflected by the param union. The 56 byte values x448 operates on are stored right-aligned in its 64 byte fields. The x448_mod_p reduction function works on 56 bytes, therefore it must start on an 8 bytes offset into the buffer. The bug was that without the offset, the leading 8 bytes were always zero, so reduction never kicked in.

Copy link
Member Author

@p-steuer p-steuer Nov 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The second bug in the reduction (which was obv. shadowed by the first bug) was that i should have checked one bit higher for overflow at the end of the reduction (check the least significant carry bit instead of most significant bit in most significant byte of u_red).

@mattcaswell mattcaswell added approval: done This pull request has the required number of approvals and removed approval: omc review pending labels Nov 4, 2019
@p-steuer p-steuer added approval: ready to merge The 24 hour grace period has passed, ready to merge and removed approval: done This pull request has the required number of approvals labels Nov 5, 2019
@p-steuer p-steuer self-assigned this Nov 5, 2019
openssl-machine pushed a commit that referenced this pull request Nov 5, 2019
The s390x x448 implementation does not correctly reduce non-canonical
values i.e., u-coordinates >= p = 2^448 - 2^224 - 1.

Signed-off-by: Patrick Steuer <[email protected]>

Reviewed-by: Matt Caswell <[email protected]>
(Merged from #10339)
openssl-machine pushed a commit that referenced this pull request Nov 5, 2019
x25519 has such a test vector obtained from wycheproof but wycheproof
does not have a corresponding x448 test vector.
So add a self-generated test vector for that case.

Signed-off-by: Patrick Steuer <[email protected]>

Reviewed-by: Matt Caswell <[email protected]>
(Merged from #10339)
openssl-machine pushed a commit that referenced this pull request Nov 5, 2019
...in constant time.

Signed-off-by: Patrick Steuer <[email protected]>

Reviewed-by: Matt Caswell <[email protected]>
(Merged from #10339)
@p-steuer
Copy link
Member Author

p-steuer commented Nov 5, 2019

merged.

master: 58738b1 6376c22 677c4a0

@p-steuer p-steuer closed this Nov 5, 2019
@p-steuer p-steuer deleted the ecc-fix branch November 5, 2019 13:07
p-steuer added a commit to p-steuer/openssl that referenced this pull request Nov 19, 2019
x25519 has such a test vector obtained from wycheproof but wycheproof
does not have a corresponding x448 test vector.
So add a self-generated test vector for that case.

Signed-off-by: Patrick Steuer <[email protected]>

Reviewed-by: Matt Caswell <[email protected]>
(Merged from openssl#10339)
xnox pushed a commit to xnox/openssl that referenced this pull request May 28, 2020
x25519 has such a test vector obtained from wycheproof but wycheproof
does not have a corresponding x448 test vector.
So add a self-generated test vector for that case.

Signed-off-by: Patrick Steuer <[email protected]>

Reviewed-by: Matt Caswell <[email protected]>
(Merged from openssl#10339)

(cherry picked from commit fd60f8da74c68ba56f828bcc59141856503ffa0a)
Signed-off-by: Dimitri John Ledkov <[email protected]>
xnox pushed a commit to xnox/openssl that referenced this pull request Jun 25, 2020
x25519 has such a test vector obtained from wycheproof but wycheproof
does not have a corresponding x448 test vector.
So add a self-generated test vector for that case.

Signed-off-by: Patrick Steuer <[email protected]>

Reviewed-by: Matt Caswell <[email protected]>
(Merged from openssl#10339)

(cherry picked from commit fd60f8da74c68ba56f828bcc59141856503ffa0a)
Signed-off-by: Dimitri John Ledkov <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approval: ready to merge The 24 hour grace period has passed, ready to merge branch: master Merge to master branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants