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

kad: Providers part 8: unit, e2e, and libp2p conformance tests #258

Merged
merged 60 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 59 commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
1048320
Introduce `ADD_PROVIDER` query
dmitry-markin Aug 22, 2024
2ab84ae
Merge remote-tracking branch 'origin/master' into dm-provider-queries
dmitry-markin Aug 23, 2024
778078b
Execute `ADD_PROVIDER` query
dmitry-markin Aug 23, 2024
323a26f
Introduce local providers in `MemoryStore`
dmitry-markin Aug 27, 2024
8946809
Add provider refresh interval to Kademlia config
dmitry-markin Aug 28, 2024
474a58a
Merge remote-tracking branch 'origin/master' into dm-republish-providers
dmitry-markin Aug 28, 2024
d02acee
Move `FuturesStream` to a separate file
dmitry-markin Aug 28, 2024
5432c9b
Refresh providers: dry-run without network queries
dmitry-markin Aug 28, 2024
feb493d
Remove `try_get_record()` and other `try_...()` non-async methods
dmitry-markin Aug 29, 2024
982c73d
Move query ID generation from `KademliaHandle` to `Kademlia`
dmitry-markin Aug 29, 2024
68c7a87
Republish providers
dmitry-markin Aug 29, 2024
f9ed3e7
Merge remote-tracking branch 'origin/master' into dm-republish-providers
dmitry-markin Aug 30, 2024
764a3f2
Merge remote-tracking branch 'origin/master' into dm-add-providers
dmitry-markin Aug 30, 2024
5e97484
Use getter `TransportService::local_peer_id()` instead of accessing d…
dmitry-markin Aug 30, 2024
7caf290
Use getter `TransportService::local_peer_id()` instead of accessing d…
dmitry-markin Aug 30, 2024
60b8fb6
Introduce `GET_PROVIDERS` query
dmitry-markin Aug 27, 2024
d340c35
Update `get_providers()` to receive query ID via oneshot channel
dmitry-markin Aug 30, 2024
10b96db
Make lines fit into 100 characters
dmitry-markin Aug 30, 2024
6146540
Introduce `GetProvidersContext` & `GetProvidersConfig`
dmitry-markin Sep 2, 2024
e167419
Implement `GET_PROVIDERS` query
dmitry-markin Sep 2, 2024
eb6eee8
Merge returned provider addresses and deduplicate records
dmitry-markin Sep 3, 2024
8314d95
Merge branch 'dm-add-providers' into dm-republish-providers
dmitry-markin Sep 3, 2024
974eac5
minor: fix log target
dmitry-markin Sep 3, 2024
e895a44
Revert "Remove `try_get_record()` and other `try_...()` non-async met…
dmitry-markin Sep 4, 2024
ce18594
Revert "Move query ID generation from `KademliaHandle` to `Kademlia`"
dmitry-markin Sep 4, 2024
0fcd621
Use `AtomicUsize` to generate `QueryId` in both `KademliaHandle` and …
dmitry-markin Sep 4, 2024
5f26161
Merge branch 'dm-republish-providers' into dm-get-providers
dmitry-markin Sep 4, 2024
57f17ce
Use `open_substream_or_dial()` to add provider records to peers
dmitry-markin Sep 5, 2024
8594103
Merge remote-tracking branch 'origin/master' into dm-add-providers
dmitry-markin Sep 5, 2024
a65ff10
Test local provider refresh scheduled in `MemoryStore`
dmitry-markin Sep 6, 2024
4861959
Fix refresh when we are the only provider
dmitry-markin Sep 9, 2024
c85dd3b
Merge branch 'dm-republish-providers' into dm-get-providers
dmitry-markin Sep 10, 2024
2fcd2c6
Merge branch 'dm-get-providers' into dm-test-providers
dmitry-markin Sep 10, 2024
03846c7
Address review suggestions
dmitry-markin Sep 12, 2024
0092329
Merge branch 'dm-get-providers' into dm-test-providers
dmitry-markin Sep 12, 2024
75a7972
Test local provider refresh when there are other providers for the key
dmitry-markin Sep 13, 2024
7492895
Stop providing
dmitry-markin Sep 13, 2024
c90861f
Use `HashMap::entry()` API to remove local providers
dmitry-markin Sep 13, 2024
8c49211
Merge branch 'dm-stop-providing' into dm-test-providers
dmitry-markin Sep 16, 2024
dc11ff1
Extend local providers tests in `MemoryStore`
dmitry-markin Sep 16, 2024
6ebb51b
Test `GetProvidersContext`
dmitry-markin Sep 17, 2024
17fd943
Introduce `ContentProvider` type
dmitry-markin Sep 18, 2024
e853d3b
Merge branch 'dm-add-providers' into dm-republish-providers
dmitry-markin Sep 18, 2024
aeb59cf
Merge branch 'dm-republish-providers' into dm-get-providers
dmitry-markin Sep 18, 2024
674c54e
Merge branch 'dm-get-providers' into dm-stop-providing
dmitry-markin Sep 18, 2024
98523e7
Merge branch 'dm-stop-providing' into dm-improve-providers-api
dmitry-markin Sep 18, 2024
d32bd56
Use `PublicAddresses` API
dmitry-markin Sep 18, 2024
54e8bf5
Use locally known providers when performing `KademliaHandle::get_prov…
dmitry-markin Sep 18, 2024
6b9b24a
Emit `IncomingProvider` event
dmitry-markin Sep 18, 2024
7671f9d
Add e2e test: retrieving provider
dmitry-markin Sep 17, 2024
7a5de31
Merge branch 'dm-improve-providers-api' into dm-test-providers
dmitry-markin Sep 18, 2024
b2e7e33
Update `GetProvidersContext` tests for `ContentProvider` API
dmitry-markin Sep 18, 2024
4861342
Update `MemoryStore` tests for `ContentProvider` API
dmitry-markin Sep 18, 2024
3bb7898
Update Kademlia e2e tests for `ContentProvider` API
dmitry-markin Sep 18, 2024
06a2c4d
Add e2e test for `ADD_PROVIDER`
dmitry-markin Sep 18, 2024
dda8be2
Test `ADD_PROVIDER` litep2p -> libp2p
dmitry-markin Sep 26, 2024
a2027b7
Test `ADD_PROVIDER` libp2p -> litep2p
dmitry-markin Sep 27, 2024
ecee1fd
Test `GET_PROVIDERS` libp2p -> litep2p
dmitry-markin Sep 27, 2024
e7f7b08
Test `GET_PROVIDERS` litep2p -> libp2p
dmitry-markin Sep 27, 2024
86ab9a7
Merge remote-tracking branch 'origin/master' into dm-test-providers
dmitry-markin Sep 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 36 additions & 5 deletions src/protocol/libp2p/kademlia/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,20 @@ use crate::{
use multiaddr::Multiaddr;
use tokio::sync::mpsc::{channel, Receiver, Sender};

use std::{collections::HashMap, time::Duration};
use std::{
collections::HashMap,
sync::{atomic::AtomicUsize, Arc},
time::Duration,
};

/// Default TTL for the records.
const DEFAULT_TTL: Duration = Duration::from_secs(36 * 60 * 60);

/// Default provider record TTL.
const DEFAULT_PROVIDER_TTL: Duration = Duration::from_secs(48 * 60 * 60);
pub(super) const DEFAULT_PROVIDER_TTL: Duration = Duration::from_secs(48 * 60 * 60);

/// Default provider republish interval.
pub(super) const DEFAULT_PROVIDER_REFRESH_INTERVAL: Duration = Duration::from_secs(22 * 60 * 60);

/// Protocol name.
const PROTOCOL_NAME: &str = "/ipfs/kad/1.0.0";
Expand Down Expand Up @@ -74,11 +81,17 @@ pub struct Config {
/// Provider record TTL.
pub(super) provider_ttl: Duration,

/// Provider republish interval.
pub(super) provider_refresh_interval: Duration,

/// TX channel for sending events to `KademliaHandle`.
pub(super) event_tx: Sender<KademliaEvent>,

/// RX channel for receiving commands from `KademliaHandle`.
pub(super) cmd_rx: Receiver<KademliaCommand>,

/// Next query ID counter shared with the handle.
pub(super) next_query_id: Arc<AtomicUsize>,
}

impl Config {
Expand All @@ -90,9 +103,11 @@ impl Config {
validation_mode: IncomingRecordValidationMode,
record_ttl: Duration,
provider_ttl: Duration,
provider_refresh_interval: Duration,
) -> (Self, KademliaHandle) {
let (cmd_tx, cmd_rx) = channel(DEFAULT_CHANNEL_SIZE);
let (event_tx, event_rx) = channel(DEFAULT_CHANNEL_SIZE);
let next_query_id = Arc::new(AtomicUsize::new(0usize));

// if no protocol names were provided, use the default protocol
if protocol_names.is_empty() {
Expand All @@ -106,13 +121,15 @@ impl Config {
validation_mode,
record_ttl,
provider_ttl,
provider_refresh_interval,
codec: ProtocolCodec::UnsignedVarint(None),
replication_factor,
known_peers,
cmd_rx,
event_tx,
next_query_id: next_query_id.clone(),
},
KademliaHandle::new(cmd_tx, event_rx),
KademliaHandle::new(cmd_tx, event_rx, next_query_id),
)
}

Expand All @@ -126,6 +143,7 @@ impl Config {
IncomingRecordValidationMode::Automatic,
DEFAULT_TTL,
DEFAULT_PROVIDER_TTL,
DEFAULT_PROVIDER_REFRESH_INTERVAL,
)
}
}
Expand All @@ -151,8 +169,11 @@ pub struct ConfigBuilder {
/// Default TTL for the records.
pub(super) record_ttl: Duration,

/// Default TTL for the provider records.
/// TTL for the provider records.
pub(super) provider_ttl: Duration,

/// Republish interval for the provider records.
pub(super) provider_refresh_interval: Duration,
}

impl Default for ConfigBuilder {
Expand All @@ -172,6 +193,7 @@ impl ConfigBuilder {
validation_mode: IncomingRecordValidationMode::Automatic,
record_ttl: DEFAULT_TTL,
provider_ttl: DEFAULT_PROVIDER_TTL,
provider_refresh_interval: DEFAULT_PROVIDER_REFRESH_INTERVAL,
}
}

Expand Down Expand Up @@ -224,14 +246,22 @@ impl ConfigBuilder {
self
}

/// Set default TTL for the provider records. Recommended value is 2 * (refresh interval) + 20%.
/// Set TTL for the provider records. Recommended value is 2 * (refresh interval) + 10%.
///
/// If unspecified, the default TTL is 48 hours.
pub fn with_provider_record_ttl(mut self, provider_record_ttl: Duration) -> Self {
self.provider_ttl = provider_record_ttl;
self
}

/// Set the refresh (republish) interval for provider records.
///
/// If unspecified, the default interval is 22 hours.
pub fn with_provider_refresh_interval(mut self, provider_refresh_interval: Duration) -> Self {
self.provider_refresh_interval = provider_refresh_interval;
self
}

/// Build Kademlia [`Config`].
pub fn build(self) -> (Config, KademliaHandle) {
Config::new(
Expand All @@ -242,6 +272,7 @@ impl ConfigBuilder {
self.validation_mode,
self.record_ttl,
self.provider_ttl,
self.provider_refresh_interval,
)
}
}
58 changes: 7 additions & 51 deletions src/protocol/libp2p/kademlia/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

use crate::{protocol::libp2p::kademlia::query::QueryId, substream::Substream, PeerId};
use crate::{
protocol::libp2p::kademlia::{futures_stream::FuturesStream, query::QueryId},
substream::Substream,
PeerId,
};

use bytes::{Bytes, BytesMut};
use futures::{future::BoxFuture, stream::FuturesUnordered, Stream, StreamExt};
use futures::{future::BoxFuture, Stream, StreamExt};

use std::{
future::Future,
pin::Pin,
task::{Context, Poll, Waker},
task::{Context, Poll},
time::Duration,
};

Expand Down Expand Up @@ -71,53 +74,6 @@ pub struct QueryContext {
pub result: QueryResult,
}

/// Wrapper around [`FuturesUnordered`] that wakes a task up automatically.
#[derive(Default)]
pub struct FuturesStream<F> {
futures: FuturesUnordered<F>,
waker: Option<Waker>,
}

impl<F> FuturesStream<F> {
/// Create new [`FuturesStream`].
pub fn new() -> Self {
Self {
futures: FuturesUnordered::new(),
waker: None,
}
}

/// Push a future for processing.
pub fn push(&mut self, future: F) {
self.futures.push(future);

if let Some(waker) = self.waker.take() {
waker.wake();
}
}
}

impl<F: Future> Stream for FuturesStream<F> {
type Item = <F as Future>::Output;

fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let Poll::Ready(Some(result)) = self.futures.poll_next_unpin(cx) else {
// We must save the current waker to wake up the task when new futures are inserted.
//
// Otherwise, simply returning `Poll::Pending` here would cause the task to never be
// woken up again.
//
// We were previously relying on some other task from the `loop tokio::select!` to
// finish.
self.waker = Some(cx.waker().clone());

return Poll::Pending;
};

Poll::Ready(Some(result))
}
}

/// Query executor.
pub struct QueryExecutor {
/// Pending futures.
Expand Down
82 changes: 82 additions & 0 deletions src/protocol/libp2p/kademlia/futures_stream.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
// Copyright 2024 litep2p developers
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

use futures::{stream::FuturesUnordered, Stream, StreamExt};

use std::{
future::Future,
pin::Pin,
task::{Context, Poll, Waker},
};

/// Wrapper around [`FuturesUnordered`] that wakes a task up automatically.
/// The [`Stream`] implemented by [`FuturesStream`] never terminates and can be
/// polled when contains no futures.
#[derive(Default)]
pub struct FuturesStream<F> {
futures: FuturesUnordered<F>,
waker: Option<Waker>,
}

impl<F> FuturesStream<F> {
/// Create new [`FuturesStream`].
pub fn new() -> Self {
Self {
futures: FuturesUnordered::new(),
waker: None,
}
}

/// Number of futeres in the stream.
#[cfg(test)]
pub fn len(&self) -> usize {
self.futures.len()
}

/// Push a future for processing.
pub fn push(&mut self, future: F) {
self.futures.push(future);

if let Some(waker) = self.waker.take() {
waker.wake();
}
}
}

impl<F: Future> Stream for FuturesStream<F> {
type Item = <F as Future>::Output;

fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let Poll::Ready(Some(result)) = self.futures.poll_next_unpin(cx) else {
// We must save the current waker to wake up the task when new futures are inserted.
//
// Otherwise, simply returning `Poll::Pending` here would cause the task to never be
// woken up again.
//
// We were previously relying on some other task from the `loop tokio::select!` to
// finish.
self.waker = Some(cx.waker().clone());

return Poll::Pending;
};

Poll::Ready(Some(result))
}
}
Loading