openmls/group/mls_group/commit_builder.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
//! This module contains the commit builder types, which can be used to build regular (i.e.
//! non-external) commits. See the documentation of [`CommitBuilder`] for more information.
use openmls_traits::{
crypto::OpenMlsCrypto, random::OpenMlsRand, signatures::Signer, storage::StorageProvider as _,
};
use tls_codec::Serialize as _;
use crate::{
binary_tree::LeafNodeIndex,
ciphersuite::{signable::Signable as _, Secret},
group::{
create_commit::CommitType, diff::compute_path::PathComputationResult,
CommitBuilderStageError, CreateCommitError, Extension, Extensions, ExternalPubExtension,
ProposalQueue, ProposalQueueError, QueuedProposal, RatchetTreeExtension, StagedCommit,
},
key_packages::KeyPackage,
messages::{
group_info::{GroupInfo, GroupInfoTBS},
Commit, Welcome,
},
prelude::{LeafNodeParameters, LibraryError},
schedule::{
psk::{load_psks, PskSecret},
JoinerSecret, KeySchedule, PreSharedKeyId,
},
storage::{OpenMlsProvider, StorageProvider},
versions::ProtocolVersion,
};
use super::{
mls_auth_content::AuthenticatedContent,
staged_commit::{MemberStagedCommitState, StagedCommitState},
AddProposal, CreateCommitResult, GroupContextExtensionProposal, MlsGroup, MlsGroupState,
MlsMessageOut, PendingCommitState, Proposal, RemoveProposal, Sender,
};
/// This stage is for populating the builder.
pub struct Initial {
own_proposals: Vec<Proposal>,
force_self_update: bool,
leaf_node_parameters: LeafNodeParameters,
/// Whether or not to clear the proposal queue of the group when staging the commit. Needs to
/// be done when we include the commits that have already been queued.
consume_proposal_store: bool,
}
/// This stage is after the PSKs were loaded, ready for validation
pub struct LoadedPsks {
own_proposals: Vec<Proposal>,
force_self_update: bool,
leaf_node_parameters: LeafNodeParameters,
/// Whether or not to clear the proposal queue of the group when staging the commit. Needs to
/// be done when we include the commits that have already been queued.
consume_proposal_store: bool,
psks: Vec<(PreSharedKeyId, Secret)>,
}
/// This stage is after we validated the data, ready for staging and exporting the messages
pub struct Complete {
result: CreateCommitResult,
}
/// The [`CommitBuilder`] is used to easily and dynamically build commit messages.
/// It operates in a series of stages:
///
/// The [`Initial`] stage is used to populate the builder with proposals and other data using
/// method calls on the builder that let the builder stay in the same stage.
///
/// The next stage is [`LoadedPsks`], and it signifies the stage after the builder loaded the the
/// pre-shared keys for the PreSharedKey proposals in this commit.
///
/// Then comes the [`Complete`] stage, which denotes that all data has been validated. From this
/// stage, the commit can be staged in the group, and the outgoing messages returned.
///
/// For example, to create a commit to a new Add proposal with a KeyPackage `key_package_to_add`
/// that does not commit to the proposals in the proposal store, one could build the commit as
/// follows:
///
/// ```rust,ignore
/// let message_bundle: CommitMessageBundle = mls_group
/// .commit_builder()
/// .consume_proposal_store(false)
/// .add_proposal(key_package_to_add)
/// .load_psks(provider.storage())?
/// .build(provider.rand(), provider.crypto(), signer, app_policy_proposals)?
/// .stage_commit(provider)?;
///
/// let commit = message_bundle.commit();
/// let welcome = message_bundle.welcome().expect("expected a welcome since there was an add");
/// let group_info = message_bundle.welcome().expect("expected a group info since there was an add");
/// ```
///
/// In this example `signer` is a reference to a [`Signer`] and `app_policy_proposals` is the
/// application-defined policy for which proposals to accept, implemented by an
/// `FnMut(&QueuedProposal) -> bool`.
///
/// See the [book] for another example.
///
/// [book]: https://book.openmls.tech/user_manual/add_members.html
#[derive(Debug)]
pub struct CommitBuilder<'a, T> {
/// A mutable reference to the MlsGroup. This means that we hold an exclusive lock on the group
/// for the lifetime of this builder.
group: &'a mut MlsGroup,
/// The current stage
stage: T,
}
impl<'a, T> CommitBuilder<'a, T> {
fn replace_stage<NextStage>(self, next_stage: NextStage) -> (T, CommitBuilder<'a, NextStage>) {
self.map_stage(|prev_stage| (prev_stage, next_stage))
}
fn into_stage<NextStage>(self, next_stage: NextStage) -> CommitBuilder<'a, NextStage> {
self.replace_stage(next_stage).1
}
fn take_stage(self) -> (T, CommitBuilder<'a, ()>) {
self.replace_stage(())
}
fn map_stage<NextStage, Aux, F: FnOnce(T) -> (Aux, NextStage)>(
self,
f: F,
) -> (Aux, CommitBuilder<'a, NextStage>) {
let Self { group, stage } = self;
let (aux, stage) = f(stage);
(aux, CommitBuilder { group, stage })
}
}
impl MlsGroup {
/// Returns a builder for commits.
pub fn commit_builder(&mut self) -> CommitBuilder<Initial> {
CommitBuilder::new(self)
}
}
impl<'a> CommitBuilder<'a, Initial> {
/// returns a new [`CommitBuilder`] for the given [`MlsGroup`].
pub fn new(group: &'a mut MlsGroup) -> Self {
Self {
group,
stage: Initial {
consume_proposal_store: true,
force_self_update: false,
leaf_node_parameters: LeafNodeParameters::default(),
own_proposals: vec![],
},
}
}
/// Sets whether or not the proposals in the proposal store of the group should be included in
/// the commit. Defaults to `true`.
pub fn consume_proposal_store(mut self, consume_proposal_store: bool) -> Self {
self.stage.consume_proposal_store = consume_proposal_store;
self
}
/// Sets whether or not the commit should force a self-update. Defaults to `false`.
pub fn force_self_update(mut self, force_self_update: bool) -> Self {
self.stage.force_self_update = force_self_update;
self
}
/// Adds a proposal to the proposals to be committed.
pub fn add_proposal(mut self, proposal: Proposal) -> Self {
self.stage.own_proposals.push(proposal);
self
}
/// Adds the proposals in the iterator to the proposals to be committed.
pub fn add_proposals(mut self, proposals: impl IntoIterator<Item = Proposal>) -> Self {
self.stage.own_proposals.extend(proposals);
self
}
/// Sets the leaf node parameters for the new leaf node in a self-update. Implies that a
/// self-update takes place.
pub fn leaf_node_parameters(mut self, leaf_node_parameters: LeafNodeParameters) -> Self {
self.stage.leaf_node_parameters = leaf_node_parameters;
self
}
/// Adds an Add proposal to the provided [`KeyPackage`] to the list of proposals to be
/// committed.
pub fn propose_adds(mut self, key_packages: impl IntoIterator<Item = KeyPackage>) -> Self {
self.stage.own_proposals.extend(
key_packages
.into_iter()
.map(|key_package| Proposal::Add(AddProposal { key_package })),
);
self
}
pub fn propose_removals(mut self, removed: impl IntoIterator<Item = LeafNodeIndex>) -> Self {
self.stage.own_proposals.extend(
removed
.into_iter()
.map(|removed| Proposal::Remove(RemoveProposal { removed })),
);
self
}
pub fn propose_group_context_extensions(mut self, extensions: Extensions) -> Self {
self.stage
.own_proposals
.push(Proposal::GroupContextExtensions(
GroupContextExtensionProposal::new(extensions),
));
self
}
/// Loads the PSKs for the PskProposals marked for inclusion and moves on to the next phase.
pub fn load_psks<Storage: StorageProvider>(
self,
storage: &'a Storage,
) -> Result<CommitBuilder<'a, LoadedPsks>, CreateCommitError> {
let psk_ids: Vec<_> = self
.stage
.own_proposals
.iter()
.chain(
self.group
.proposal_store()
.proposals()
.map(|queued_proposal| queued_proposal.proposal()),
)
.filter_map(|proposal| match proposal {
Proposal::PreSharedKey(psk_proposal) => Some(psk_proposal.clone().into_psk_id()),
_ => None,
})
.collect();
// Load the PSKs and make the PskIds owned.
let psks = load_psks(storage, &self.group.resumption_psk_store, &psk_ids)?
.into_iter()
.map(|(psk_id_ref, key)| (psk_id_ref.clone(), key))
.collect();
Ok(self
.map_stage(|stage| {
(
(),
LoadedPsks {
own_proposals: stage.own_proposals,
psks,
force_self_update: stage.force_self_update,
leaf_node_parameters: stage.leaf_node_parameters,
consume_proposal_store: stage.consume_proposal_store,
},
)
})
.1)
}
}
impl<'a> CommitBuilder<'a, LoadedPsks> {
/// Validates the inputs and builds the commit. The last argument `f` is a function that lets
/// the caller filter the proposals that are considered for inclusion. This provides a way for
/// the application to enforce custom policies in the creation of commits.
pub fn build(
self,
rand: &impl OpenMlsRand,
crypto: &impl OpenMlsCrypto,
signer: &impl Signer,
f: impl FnMut(&QueuedProposal) -> bool,
) -> Result<CommitBuilder<'a, Complete>, CreateCommitError> {
let ciphersuite = self.group.ciphersuite();
let sender = Sender::build_member(self.group.own_leaf_index());
let (cur_stage, builder) = self.take_stage();
let psks = cur_stage.psks;
// put the pending and uniform proposals into a uniform shape,
// i.e. produce queued proposals from the own proposals
let own_proposals: Vec<_> = cur_stage
.own_proposals
.into_iter()
.map(|proposal| {
QueuedProposal::from_proposal_and_sender(ciphersuite, crypto, proposal, &sender)
})
.collect::<Result<_, _>>()?;
// prepare an iterator for the proposals in the group's proposal store, but only if the
// flag is set.
let group_proposal_store_queue = builder
.group
.pending_proposals()
.filter(|_| cur_stage.consume_proposal_store)
.cloned();
// prepare the iterator for the proposal validation and seletion function. That function
// assumes that "earlier in the list" means "older", so since our own proposals are
// newest, we have to put them last.
let proposal_queue = group_proposal_store_queue.chain(own_proposals).filter(f);
let (proposal_queue, contains_own_updates) =
ProposalQueue::filter_proposals_without_inline(
proposal_queue,
builder.group.own_leaf_index,
)
.map_err(|e| match e {
ProposalQueueError::LibraryError(e) => e.into(),
ProposalQueueError::ProposalNotFound => CreateCommitError::MissingProposal,
ProposalQueueError::UpdateFromExternalSender
| ProposalQueueError::SelfRemoveFromNonMember => {
CreateCommitError::WrongProposalSenderType
}
})?;
// Validate the proposals by doing the following checks:
// ValSem113: All Proposals: The proposal type must be supported by all
// members of the group
builder
.group
.public_group
.validate_proposal_type_support(&proposal_queue)?;
// ValSem101
// ValSem102
// ValSem103
// ValSem104
builder
.group
.public_group
.validate_key_uniqueness(&proposal_queue, None)?;
// ValSem105
builder
.group
.public_group
.validate_add_proposals(&proposal_queue)?;
// ValSem106
// ValSem109
builder
.group
.public_group
.validate_capabilities(&proposal_queue)?;
// ValSem107
// ValSem108
builder
.group
.public_group
.validate_remove_proposals(&proposal_queue)?;
builder
.group
.public_group
.validate_pre_shared_key_proposals(&proposal_queue)?;
// Validate update proposals for member commits
// ValSem110
// ValSem111
// ValSem112
builder
.group
.public_group
.validate_update_proposals(&proposal_queue, builder.group.own_leaf_index())?;
// ValSem208
// ValSem209
builder
.group
.public_group
.validate_group_context_extensions_proposal(&proposal_queue)?;
let ciphersuite = builder.group.ciphersuite();
let sender = Sender::build_member(builder.group.own_leaf_index());
let proposal_reference_list = proposal_queue.commit_list();
// Make a copy of the public group to apply proposals safely
let mut diff = builder.group.public_group.empty_diff();
// Apply proposals to tree
let apply_proposals_values =
diff.apply_proposals(&proposal_queue, builder.group.own_leaf_index())?;
if apply_proposals_values.self_removed {
return Err(CreateCommitError::CannotRemoveSelf);
}
let path_computation_result =
// If path is needed, compute path values
if apply_proposals_values.path_required
|| contains_own_updates
|| cur_stage.force_self_update
|| !cur_stage.leaf_node_parameters.is_empty()
{
// Process the path. This includes updating the provisional
// group context by updating the epoch and computing the new
// tree hash.
diff.compute_path(
rand,
crypto,
builder.group.own_leaf_index(),
apply_proposals_values.exclusion_list(),
&CommitType::Member,
&cur_stage.leaf_node_parameters,
signer,
apply_proposals_values.extensions.clone()
)?
} else {
// If path is not needed, update the group context and return
// empty path processing results
diff.update_group_context(crypto, apply_proposals_values.extensions.clone())?;
PathComputationResult::default()
};
let update_path_leaf_node = path_computation_result
.encrypted_path
.as_ref()
.map(|path| path.leaf_node().clone());
// Create commit message
let commit = Commit {
proposals: proposal_reference_list,
path: path_computation_result.encrypted_path,
};
// Build AuthenticatedContent
let mut authenticated_content = AuthenticatedContent::commit(
builder.group.framing_parameters(),
sender,
commit,
builder.group.public_group.group_context(),
signer,
)?;
// Update the confirmed transcript hash using the commit we just created.
diff.update_confirmed_transcript_hash(crypto, &authenticated_content)?;
let serialized_provisional_group_context = diff
.group_context()
.tls_serialize_detached()
.map_err(LibraryError::missing_bound_check)?;
let joiner_secret = JoinerSecret::new(
crypto,
ciphersuite,
path_computation_result.commit_secret,
builder.group.group_epoch_secrets().init_secret(),
&serialized_provisional_group_context,
)
.map_err(LibraryError::unexpected_crypto_error)?;
// Prepare the PskSecret
let psk_secret = { PskSecret::new(crypto, ciphersuite, psks)? };
// Create key schedule
let mut key_schedule = KeySchedule::init(ciphersuite, crypto, &joiner_secret, psk_secret)?;
let serialized_provisional_group_context = diff
.group_context()
.tls_serialize_detached()
.map_err(LibraryError::missing_bound_check)?;
let welcome_secret = key_schedule
.welcome(crypto, builder.group.ciphersuite())
.map_err(|_| LibraryError::custom("Using the key schedule in the wrong state"))?;
key_schedule
.add_context(crypto, &serialized_provisional_group_context)
.map_err(|_| LibraryError::custom("Using the key schedule in the wrong state"))?;
let provisional_epoch_secrets = key_schedule
.epoch_secrets(crypto, builder.group.ciphersuite())
.map_err(|_| LibraryError::custom("Using the key schedule in the wrong state"))?;
// Calculate the confirmation tag
let confirmation_tag = provisional_epoch_secrets
.confirmation_key()
.tag(
crypto,
builder.group.ciphersuite(),
diff.group_context().confirmed_transcript_hash(),
)
.map_err(LibraryError::unexpected_crypto_error)?;
// Set the confirmation tag
authenticated_content.set_confirmation_tag(confirmation_tag.clone());
diff.update_interim_transcript_hash(ciphersuite, crypto, confirmation_tag.clone())?;
// If there are invitations, we need to build a welcome
let needs_welcome = !apply_proposals_values.invitation_list.is_empty();
// We need a GroupInfo if we need to build a Welcome. If the ratchet tree extension
// should be used, always build a GroupInfo.
let needs_group_info =
needs_welcome || builder.group.configuration().use_ratchet_tree_extension;
let group_info = if !needs_group_info {
None
} else {
// Build ExternalPub extension
let external_pub = provisional_epoch_secrets
.external_secret()
.derive_external_keypair(crypto, ciphersuite)
.map_err(LibraryError::unexpected_crypto_error)?
.public;
let external_pub_extension =
Extension::ExternalPub(ExternalPubExtension::new(external_pub.into()));
// Create the ratchet tree extension if necessary
let extensions: Extensions = if builder.group.configuration().use_ratchet_tree_extension
{
Extensions::from_vec(vec![
Extension::RatchetTree(RatchetTreeExtension::new(diff.export_ratchet_tree())),
external_pub_extension,
])?
} else {
Extensions::single(external_pub_extension)
};
// Create to-be-signed group info.
let group_info_tbs = {
GroupInfoTBS::new(
diff.group_context().clone(),
extensions,
confirmation_tag,
builder.group.own_leaf_index(),
)
};
// Sign to-be-signed group info.
Some(group_info_tbs.sign(signer)?)
};
let welcome_option = if !needs_welcome {
None
} else {
// Encrypt GroupInfo object
let (welcome_key, welcome_nonce) = welcome_secret
.derive_welcome_key_nonce(crypto, builder.group.ciphersuite())
.map_err(LibraryError::unexpected_crypto_error)?;
let encrypted_group_info = welcome_key
.aead_seal(
crypto,
group_info
.as_ref()
.ok_or_else(|| LibraryError::custom("GroupInfo was not computed"))?
.tls_serialize_detached()
.map_err(LibraryError::missing_bound_check)?
.as_slice(),
&[],
&welcome_nonce,
)
.map_err(LibraryError::unexpected_crypto_error)?;
// Create group secrets for later use, so we can afterwards consume the
// `joiner_secret`.
let encrypted_secrets = diff.encrypt_group_secrets(
&joiner_secret,
apply_proposals_values.invitation_list,
path_computation_result.plain_path.as_deref(),
&apply_proposals_values.presharedkeys,
&encrypted_group_info,
crypto,
builder.group.own_leaf_index(),
)?;
// Create welcome message
let welcome = Welcome::new(ciphersuite, encrypted_secrets, encrypted_group_info);
Some(welcome)
};
let (provisional_group_epoch_secrets, provisional_message_secrets) =
provisional_epoch_secrets.split_secrets(
serialized_provisional_group_context,
diff.tree_size(),
builder.group.own_leaf_index(),
);
let staged_commit_state = MemberStagedCommitState::new(
provisional_group_epoch_secrets,
provisional_message_secrets,
diff.into_staged_diff(crypto, ciphersuite)?,
path_computation_result.new_keypairs,
// The committer is not allowed to include their own update
// proposal, so there is no extra keypair to store here.
None,
update_path_leaf_node,
);
let staged_commit = StagedCommit::new(
proposal_queue,
StagedCommitState::GroupMember(Box::new(staged_commit_state)),
);
let use_ratchet_tree_extension = builder.group.configuration().use_ratchet_tree_extension;
Ok(builder.into_stage(Complete {
result: CreateCommitResult {
commit: authenticated_content,
welcome_option,
staged_commit,
group_info: group_info.filter(|_| use_ratchet_tree_extension),
},
}))
}
}
impl CommitBuilder<'_, Complete> {
#[cfg(test)]
pub(crate) fn commit_result(self) -> CreateCommitResult {
self.stage.result
}
/// Stages the commit and returns the protocol messages.
pub fn stage_commit<Provider: OpenMlsProvider>(
self,
provider: &Provider,
) -> Result<CommitMessageBundle, CommitBuilderStageError<Provider::StorageError>> {
let Self {
group,
stage: Complete {
result: create_commit_result,
},
..
} = self;
// Set the current group state to [`MlsGroupState::PendingCommit`],
// storing the current [`StagedCommit`] from the commit results
group.group_state = MlsGroupState::PendingCommit(Box::new(PendingCommitState::Member(
create_commit_result.staged_commit,
)));
provider
.storage()
.write_group_state(group.group_id(), &group.group_state)
.map_err(CommitBuilderStageError::KeyStoreError)?;
group.reset_aad();
// Convert PublicMessage messages to MLSMessage and encrypt them if required by the
// configuration.
//
// Note that this performs writes to the storage, so we should do that here, rather than
// when working with the result.
let mls_message = group.content_to_mls_message(create_commit_result.commit, provider)?;
Ok(CommitMessageBundle {
version: group.version(),
commit: mls_message,
welcome: create_commit_result.welcome_option,
group_info: create_commit_result.group_info,
})
}
}
/// Contains the messages that are produced by committing. The messages can be accessed individually
/// using getters or through the [`IntoIterator`] interface.
#[derive(Debug, Clone)]
pub struct CommitMessageBundle {
version: ProtocolVersion,
commit: MlsMessageOut,
welcome: Option<Welcome>,
group_info: Option<GroupInfo>,
}
#[cfg(test)]
impl CommitMessageBundle {
pub fn new(
version: ProtocolVersion,
commit: MlsMessageOut,
welcome: Option<Welcome>,
group_info: Option<GroupInfo>,
) -> Self {
Self {
version,
commit,
welcome,
group_info,
}
}
}
impl CommitMessageBundle {
// borrowed getters
/// Gets a the Commit messsage. For owned version, see [`Self::into_commit`].
pub fn commit(&self) -> &MlsMessageOut {
&self.commit
}
/// Gets a the Welcome messsage. Only [`Some`] if new clients have been added in the commit.
/// For owned version, see [`Self::into_welcome`].
pub fn welcome(&self) -> Option<&Welcome> {
self.welcome.as_ref()
}
/// Gets a the Welcome messsage. Only [`Some`] if new clients have been added in the commit.
/// Performs a copy of the Welcome. For owned version, see [`Self::into_welcome_msg`].
pub fn to_welcome_msg(&self) -> Option<MlsMessageOut> {
self.welcome
.as_ref()
.map(|welcome| MlsMessageOut::from_welcome(welcome.clone(), self.version))
}
/// Gets a the GroupInfo message. Only [`Some`] if new clients have been added or the group
/// configuration has `use_ratchet_tree_extension` set.
/// For owned version, see [`Self::into_group_info`].
pub fn group_info(&self) -> Option<&GroupInfo> {
self.group_info.as_ref()
}
/// Gets all three messages, some of which optional. For owned version, see
/// [`Self::into_contents`].
pub fn contents(&self) -> (&MlsMessageOut, Option<&Welcome>, Option<&GroupInfo>) {
(
&self.commit,
self.welcome.as_ref(),
self.group_info.as_ref(),
)
}
// owned getters
/// Gets a the Commit messsage. This method consumes the [`CommitMessageBundle`]. For a borrowed
/// version see [`Self::commit`].
pub fn into_commit(self) -> MlsMessageOut {
self.commit
}
/// Gets a the Welcome messsage. Only [`Some`] if new clients have been added in the commit.
/// This method consumes the [`CommitMessageBundle`]. For a borrowed version see
/// [`Self::welcome`].
pub fn into_welcome(self) -> Option<Welcome> {
self.welcome
}
/// Gets a the Welcome messsage. Only [`Some`] if new clients have been added in the commit.
/// For a borrowed version, see [`Self::to_welcome_msg`].
pub fn into_welcome_msg(self) -> Option<MlsMessageOut> {
self.welcome
.map(|welcome| MlsMessageOut::from_welcome(welcome, self.version))
}
/// Gets a the GroupInfo message. Only [`Some`] if new clients have been added or the group
/// configuration has `use_ratchet_tree_extension` set.
/// This method consumes the [`CommitMessageBundle`]. For a borrowed version see
/// [`Self::group_info`].
pub fn into_group_info(self) -> Option<GroupInfo> {
self.group_info
}
/// Gets a the GroupInfo messsage. Only [`Some`] if new clients have been added in the commit.
pub fn into_group_info_msg(self) -> Option<MlsMessageOut> {
self.group_info.map(|group_info| group_info.into())
}
/// Gets all three messages, some of which optional. This method consumes the
/// [`CommitMessageBundle`]. For a borrowed version see [`Self::contents`].
pub fn into_contents(self) -> (MlsMessageOut, Option<Welcome>, Option<GroupInfo>) {
(self.commit, self.welcome, self.group_info)
}
/// Gets all three messages, some of which optional, as [`MlsMessageOut`].
/// This method consumes the [`CommitMessageBundle`].
pub fn into_messages(self) -> (MlsMessageOut, Option<MlsMessageOut>, Option<MlsMessageOut>) {
(
self.commit,
self.welcome
.map(|welcome| MlsMessageOut::from_welcome(welcome, self.version)),
self.group_info.map(|group_info| group_info.into()),
)
}
}
impl IntoIterator for CommitMessageBundle {
type Item = MlsMessageOut;
type IntoIter = core::iter::Chain<
core::iter::Chain<
core::option::IntoIter<MlsMessageOut>,
core::option::IntoIter<MlsMessageOut>,
>,
core::option::IntoIter<MlsMessageOut>,
>;
fn into_iter(self) -> Self::IntoIter {
let welcome = self.to_welcome_msg();
let group_info = self.group_info.map(|group_info| group_info.into());
Some(self.commit)
.into_iter()
.chain(welcome)
.chain(group_info)
}
}