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

Add Oscore and Edhoc options #333

Merged
merged 6 commits into from
Mar 28, 2025

Conversation

zalenskivolt
Copy link
Contributor

@zalenskivolt zalenskivolt commented Mar 22, 2025

see IANA CoAP Option Numbers

# Option RFC
9 OSCORE [RFC8613 OSCORE (using COSE)]
21 EDHOC [RFC9668 Ephemeral Diffie-Hellman Over COSE]

@twyatt

This comment was marked as outdated.

@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch 2 times, most recently from b07a855 to 98024ef Compare March 23, 2025 09:30
@twyatt

This comment was marked as outdated.

@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch from 98024ef to 72d4d11 Compare March 24, 2025 21:16
@twyatt twyatt added the minor Changes that should bump the MINOR version number label Mar 24, 2025
@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch 3 times, most recently from 15491f8 to 803ddbc Compare March 24, 2025 22:03
Copy link

codecov bot commented Mar 24, 2025

Codecov Report

Attention: Patch coverage is 55.55556% with 8 lines in your changes missing coverage. Please review.

Project coverage is 64.81%. Comparing base (3e15cd8) to head (292722d).
Report is 1 commits behind head on main.

Files with missing lines Patch % Lines
koap-core/src/commonMain/kotlin/Message.kt 42.85% 6 Missing and 2 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #333      +/-   ##
==========================================
+ Coverage   63.95%   64.81%   +0.85%     
==========================================
  Files           9        9              
  Lines         774      790      +16     
  Branches      172      176       +4     
==========================================
+ Hits          495      512      +17     
+ Misses        220      218       -2     
- Partials       59       60       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@zalenski
Copy link

when you have a chance, can you rebase/fix conflicts? TY!

@twyatt rebased & fixed

Copy link
Member

@twyatt twyatt left a comment

Choose a reason for hiding this comment

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

Amazing job on this! 💯

I've added a unit test for "Test Vector 8", it'd be great to replicate the test for the remaining test vectors. Feel free to take that on, or I'll get to it next weekend.

@@ -384,6 +385,29 @@ sealed class Message {
}
}

/** RFC 8613 2. OSCORE */
data class Oscore(
val coseObject: ByteArray,
Copy link
Member

Choose a reason for hiding this comment

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

Reading through the spec, I can't decide if value or coseObject is more appropriate here.

Screenshot 2025-03-25 at 12 13 50 AM

What was your thinking for settling on coseObject naming?

Choose a reason for hiding this comment

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

What was your thinking for settling on coseObject naming?

Hm. I thought in section 2 it stated that the option "contains a compressed COSE object", and I just wanted a descriptive name if I could find one.

But I realize now I have probably misinterpreted this. The option just "indicates that the CoAP message is an OSCORE message", and that the message contains a COSE object.

2. The OSCORE Option

The OSCORE option defined in this section (see Figure 3, which
extends "Table 4: Options" of [RFC7252]) indicates that the CoAP
message is an OSCORE message and that it contains a compressed COSE
object
(see Sections 5 and 6). The OSCORE option is critical, safe
to forward, part of the cache key, and not repeatable.

What is actually in the option value described in section 6.1:

6.1. Encoding of the OSCORE Option Value

The value of the OSCORE option SHALL contain the OSCORE flag bits,
the 'Partial IV' parameter, the 'kid context' parameter (length and
value), and the 'kid' parameter as follows:

So I think it should be renamed, maybe just to value.

For the block options I did some handling of the uint value to expand it to the block number, more flag, and block size. I guess a semantically aware OSCORE option implementation should also extract all those flags, 'Partial IV' parameter and 'kid context' parameter things. But maybe that could be left out for now, with just an opaque value?

Choose a reason for hiding this comment

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

I did a take on actually handling partialIv, kidContext and kid in
zalenskivolt#3
learning a lot about Kotlin nullables (since both kidContext and kid can have the flag set but be empty) :)

There's reserved values for partialIv length 6 and 7, and three flags reserved for future use, so there's some potential for future updates to the standard rendering the option unparseable, and such flags/values should be handled in specific ways as outlined in 8.2. Verifying the Request …

It could have a malformed flag in it, or maybe a nullable partialIv and use null there to indicate the option didn't parse? I guess these complex options are a bit trickier than the simple uint/string ones in basic CoAP.

Choose a reason for hiding this comment

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

For upgradability/backwards compatibility, kotlin just says "Avoid using data classes in your API"
https://kotlinlang.org/docs/api-guidelines-backward-compatibility.html#avoid-using-data-classes-in-your-api
and here's one suggestion for mitigation: No data:
https://jakewharton.com/public-api-challenges-in-kotlin/#mitigation-no-data

but I'll leave these considerations for the library maintainers 😉

Copy link
Member

Choose a reason for hiding this comment

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

zalenskivolt#3 looks great, but let's leave that for review after we get this PR in. So ya, I appreciate you keeping it as a separate PR for now. 👍

Choose a reason for hiding this comment

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

ok, np.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

zalenskivolt#3 looks great, but let's leave that for review after we get this PR in. So ya, I appreciate you keeping it as a separate PR for now. 👍

-> #343

@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch from a92af01 to b2555ac Compare March 25, 2025 11:33
@twyatt

This comment was marked as outdated.

@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch from b2555ac to 71903c3 Compare March 25, 2025 19:50
@zalenski
Copy link

Amazing job on this! 💯

I've added a unit test for "Test Vector 8", it'd be great to replicate the test for the remaining test vectors. Feel free to take that on, or I'll get to it next weekend.

Added test vectors 4-7. (test vector 1-3 is just key derivation, no OSCORE options)

Copy link
Member

@twyatt twyatt left a comment

Choose a reason for hiding this comment

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

💯 🚀

I'll merge after we get another approval.

@zalenski
Copy link

Added test vectors 4-7.

…and found a bug in zalenskivolt#3 because of them! :)

@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch from 1d235d9 to f788b0e Compare March 25, 2025 20:48
@zalenski
Copy link

💯 🚀

I'll merge after we get another approval.

might be good to merge the block-wise ones first, if they are getting ready now. they all conflict a lot, in all the imports, and in tests if they are added in the same location… I think this one is easier to rebase! 😄

@twyatt
Copy link
Member

twyatt commented Mar 26, 2025

might be good to merge the block-wise ones first

Good thinking. I'll wait to merge this PR until after #335 is merged. 👍

@twyatt
Copy link
Member

twyatt commented Mar 27, 2025

@zalenskivolt please rebase/fix conflicts, when you have a chance. TY!

@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch from f788b0e to 707f681 Compare March 27, 2025 22:08
@zalenski
Copy link

@zalenskivolt please rebase/fix conflicts, when you have a chance. TY!

rebased & fixed

@zalenskivolt zalenskivolt force-pushed the oscore-and-edhoc-options branch from 707f681 to 292722d Compare March 27, 2025 22:16
Copy link
Contributor

@QuantumRand QuantumRand left a comment

Choose a reason for hiding this comment

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

Awesome to see expanded support for more of the CoAP spec! Thanks @zalenskivolt!

@twyatt twyatt merged commit 60aabf2 into JuulLabs:main Mar 28, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
minor Changes that should bump the MINOR version number
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants