Changes to use load_admin_key (#964)

pull/1710/head
SessionHero01 1 month ago committed by GitHub
parent b412bf16ca
commit 0831c6621c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -18,7 +18,6 @@ import org.session.libsession.avatars.AvatarHelper
import org.session.libsession.database.MessageDataProvider
import org.session.libsession.database.StorageProtocol
import org.session.libsession.messaging.BlindedIdMapping
import org.session.libsession.messaging.MessagingModuleConfiguration
import org.session.libsession.messaging.calls.CallMessageType
import org.session.libsession.messaging.contacts.Contact
import org.session.libsession.messaging.jobs.AttachmentUploadJob

@ -256,14 +256,7 @@ class ConfigFactory @Inject constructor(
private fun <T> doWithMutableGroupConfigs(
groupId: AccountId,
recreateConfigInstances: Boolean,
cb: (GroupConfigsImpl) -> Pair<T, Boolean>): T {
if (recreateConfigInstances) {
synchronized(groupConfigs) {
groupConfigs.remove(groupId)
}?.second?.dumpIfNeeded(clock)
}
val (lock, configs) = ensureGroupConfigsInitialized(groupId)
val (result, changed) = lock.write {
cb(configs)
@ -285,7 +278,7 @@ class ConfigFactory @Inject constructor(
recreateConfigInstances: Boolean,
cb: (MutableGroupConfigs) -> T
): T {
return doWithMutableGroupConfigs(recreateConfigInstances = recreateConfigInstances, groupId = groupId) {
return doWithMutableGroupConfigs(groupId = groupId) {
cb(it) to it.dumpIfNeeded(clock)
}
}
@ -328,7 +321,7 @@ class ConfigFactory @Inject constructor(
info: List<ConfigMessage>,
members: List<ConfigMessage>
) {
val changed = doWithMutableGroupConfigs(groupId, false) { configs ->
val changed = doWithMutableGroupConfigs(groupId) { configs ->
// Keys must be loaded first as they are used to decrypt the other config messages
val keysLoaded = keys.fold(false) { acc, msg ->
configs.groupKeys.loadKey(msg.data, msg.hash, msg.timestamp, configs.groupInfo.pointer, configs.groupMembers.pointer) || acc
@ -398,7 +391,7 @@ class ConfigFactory @Inject constructor(
return
}
doWithMutableGroupConfigs(groupId, false) { configs ->
doWithMutableGroupConfigs(groupId) { configs ->
members?.let { (push, result) -> configs.groupMembers.confirmPushed(push.seqNo, result.hash) }
info?.let { (push, result) -> configs.groupInfo.confirmPushed(push.seqNo, result.hash) }
keysPush?.let { (hash, timestamp) ->

@ -684,7 +684,8 @@ class GroupManagerV2Impl @Inject constructor(
.first()
}
if (group.adminKey == null) {
val adminKey = group.adminKey
if (adminKey == null) {
// Send an invite response to the group if we are invited as a regular member
val inviteResponse = GroupUpdateInviteResponseMessage.newBuilder()
.setIsApproved(true)
@ -700,6 +701,8 @@ class GroupManagerV2Impl @Inject constructor(
} else {
// If we are invited as admin, we can just update the group info ourselves
configFactory.withMutableGroupConfigs(group.groupAccountId) { configs ->
configs.groupKeys.loadAdminKey(adminKey)
configs.groupMembers.get(key)?.let { member ->
configs.groupMembers.set(member.apply {
setPromotionAccepted()
@ -778,9 +781,10 @@ class GroupManagerV2Impl @Inject constructor(
// Update our promote state
configFactory.withMutableGroupConfigs(
recreateConfigInstances = true,
groupId = groupId
) { configs ->
configs.groupKeys.loadAdminKey(adminKey)
configs.groupMembers.get(userAuth.accountId.hexString)?.let { member ->
member.setPromotionAccepted()
configs.groupMembers.set(member)

@ -313,4 +313,21 @@ Java_network_loki_messenger_libsession_1util_GroupKeysConfig_size(JNIEnv *env, j
std::lock_guard lock{util::util_mutex_};
auto ptr = ptrToKeys(env, thiz);
return ptr->size();
}
}
extern "C"
JNIEXPORT void JNICALL
Java_network_loki_messenger_libsession_1util_GroupKeysConfig_loadAdminKey(JNIEnv *env, jobject thiz,
jbyteArray admin_key,
jlong info_ptr,
jlong members_ptr) {
std::lock_guard lock{util::util_mutex_};
auto ptr = ptrToKeys(env, thiz);
auto admin_key_ustring = util::ustring_from_bytes(env, admin_key);
auto info = reinterpret_cast<session::config::groups::Info*>(info_ptr);
auto members = reinterpret_cast<session::config::groups::Members*>(members_ptr);
jni_utils::run_catching_cxx_exception_or_throws<void>(env, [&] {
ptr->load_admin_key(admin_key_ustring, *info, *members);
});
}

@ -464,6 +464,7 @@ interface ReadableGroupKeysConfig {
interface MutableGroupKeysConfig : ReadableGroupKeysConfig {
fun makeSubAccount(sessionId: AccountId, canWrite: Boolean = true, canDelete: Boolean = false): ByteArray
fun loadKey(message: ByteArray, hash: String, timestampMs: Long): Boolean
fun loadAdminKey(adminKey: ByteArray)
}
class GroupKeysConfig private constructor(
@ -517,6 +518,12 @@ class GroupKeysConfig private constructor(
return loadKey(message, hash, timestampMs, info.pointer, members.pointer)
}
override fun loadAdminKey(adminKey: ByteArray) {
loadAdminKey(adminKey, info.pointer, members.pointer)
}
private external fun loadAdminKey(adminKey: ByteArray, infoPtr: Long, membersPtr: Long)
external override fun needsRekey(): Boolean
external override fun pendingKey(): ByteArray?
private external fun supplementFor(userSessionIds: Array<String>): ByteArray

@ -54,7 +54,7 @@ interface ConfigFactoryProtocol {
/**
* @param recreateConfigInstances If true, the group configs will be recreated before calling the callback. This is useful when you have received an admin key or otherwise.
*/
fun <T> withMutableGroupConfigs(groupId: AccountId, recreateConfigInstances: Boolean = false, cb: (MutableGroupConfigs) -> T): T
fun <T> withMutableGroupConfigs(groupId: AccountId, cb: (MutableGroupConfigs) -> T): T
fun conversationInConfig(publicKey: String?, groupPublicKey: String?, openGroupId: String?, visibleOnly: Boolean): Boolean
fun canPerformChange(variant: String, publicKey: String, changeTimestampMs: Long): Boolean

Loading…
Cancel
Save