All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
net.luminis.quic.cid.DestinationConnectionIdRegistry Maven / Gradle / Ivy
/*
* Copyright © 2020, 2021, 2022, 2023, 2024 Peter Doornbosch
*
* This file is part of Kwik, an implementation of the QUIC protocol in Java.
*
* Kwik is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* Kwik is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package net.luminis.quic.cid;
import net.luminis.quic.log.Logger;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
public class DestinationConnectionIdRegistry extends ConnectionIdRegistry {
private volatile int notRetiredThreshold; // all sequence numbers below are retired
public DestinationConnectionIdRegistry(byte[] initialConnectionId, Logger log) {
super(log);
currentConnectionId = initialConnectionId;
connectionIds.put(0, new ConnectionIdInfo(0, initialConnectionId, ConnectionIdStatus.IN_USE));
}
public void replaceInitialConnectionId(byte[] connectionId) {
connectionIds.put(0, new ConnectionIdInfo(0, connectionId, ConnectionIdStatus.IN_USE));
currentConnectionId = connectionId;
}
/**
* @param sequenceNr
* @param connectionId
* @param statelessResetToken
* @return whether the connection id could be added as new; when its sequence number implies that it as retired already, false is returned.
*/
public boolean registerNewConnectionId(int sequenceNr, byte[] connectionId, byte[] statelessResetToken) {
if (sequenceNr >= notRetiredThreshold) {
connectionIds.put(sequenceNr, new ConnectionIdInfo(sequenceNr, connectionId, ConnectionIdStatus.NEW, statelessResetToken));
return true;
}
else {
connectionIds.put(sequenceNr, new ConnectionIdInfo(sequenceNr, connectionId, ConnectionIdStatus.RETIRED, statelessResetToken));
return false;
}
}
public byte[] useNext() {
int currentIndex = currentIndex();
if (connectionIds.containsKey(currentIndex + 1)) {
currentConnectionId = connectionIds.get(currentIndex + 1).getConnectionId();
connectionIds.get(currentIndex).setStatus(ConnectionIdStatus.USED);
connectionIds.get(currentIndex+1).setStatus(ConnectionIdStatus.IN_USE);
return currentConnectionId;
}
else {
return null;
}
}
public List retireAllBefore(int retirePriorTo) {
notRetiredThreshold = retirePriorTo;
int currentIndex = currentIndex();
List toRetire = connectionIds.entrySet().stream()
.filter(entry -> entry.getKey() < retirePriorTo)
.filter(entry -> !entry.getValue().getConnectionIdStatus().equals(ConnectionIdStatus.RETIRED))
.map(entry -> entry.getKey())
.collect(Collectors.toList());
toRetire.forEach(seqNr -> retireConnectionId(seqNr));
if (connectionIds.get(currentIndex).getConnectionIdStatus().equals(ConnectionIdStatus.RETIRED)) {
// Find one that is not retired
ConnectionIdInfo nextCid = connectionIds.values().stream()
.filter(cid -> !cid.getConnectionIdStatus().equals(ConnectionIdStatus.RETIRED))
.findFirst()
.orElseThrow(() -> new IllegalStateException("Can't find connection id that is not retired"));
nextCid.setStatus(ConnectionIdStatus.IN_USE);
currentConnectionId = nextCid.getConnectionId();
}
return toRetire;
}
public void setInitialStatelessResetToken(byte[] statelessResetToken) {
connectionIds.put(0, connectionIds.get(0).addStatelessResetToken(statelessResetToken));
}
/**
* https://www.rfc-editor.org/rfc/rfc9000.html#name-detecting-a-stateless-reset
* "... but excludes stateless reset tokens associated with connection IDs that are either unused or retired."
* @param tokenCandidate
* @return
*/
public boolean isStatelessResetToken(byte[] tokenCandidate) {
return connectionIds.values().stream()
.filter(cid -> cid.getConnectionIdStatus().notUnusedOrRetired())
.anyMatch(cid -> Arrays.equals(cid.getStatelessResetToken(), tokenCandidate));
}
}