Initial private torrents support
This commit is contained in:
parent
bc5e23bf6d
commit
8efd77fce2
7 changed files with 50 additions and 16 deletions
|
|
@ -218,14 +218,26 @@ impl<'de> serde::de::Deserializer<'de> for &mut BencodeDeserializer<'de> {
|
|||
}
|
||||
}
|
||||
|
||||
fn deserialize_bool<V>(self, _visitor: V) -> Result<V::Value, Self::Error>
|
||||
fn deserialize_bool<V>(self, visitor: V) -> Result<V::Value, Self::Error>
|
||||
where
|
||||
V: serde::de::Visitor<'de>,
|
||||
{
|
||||
Err(
|
||||
Error::new_from_kind(ErrorKind::NotSupported("bencode doesn't support booleans"))
|
||||
.set_context(self),
|
||||
)
|
||||
if !self.buf.starts_with(b"i") {
|
||||
return Err(Error::custom_with_de(
|
||||
"expected bencode int to represent bool",
|
||||
self,
|
||||
));
|
||||
}
|
||||
let value = self.parse_integer()?;
|
||||
if value > 1 {
|
||||
return Err(Error::custom_with_de(
|
||||
format!("expected 0 or 1 for boolean, but got {value}"),
|
||||
self,
|
||||
));
|
||||
}
|
||||
visitor
|
||||
.visit_bool(value == 1)
|
||||
.map_err(|e: Self::Error| e.set_context(self))
|
||||
}
|
||||
|
||||
fn deserialize_i8<V>(self, visitor: V) -> Result<V::Value, Self::Error>
|
||||
|
|
|
|||
|
|
@ -218,11 +218,8 @@ impl<'ser, W: std::io::Write> Serializer for &'ser mut BencodeSerializer<W> {
|
|||
type SerializeStruct = SerializeStruct<'ser, W>;
|
||||
type SerializeStructVariant = Impossible<(), SerError>;
|
||||
|
||||
fn serialize_bool(self, _: bool) -> Result<Self::Ok, Self::Error> {
|
||||
Err(SerError::custom_with_ser(
|
||||
"bencode doesn't support booleans",
|
||||
self,
|
||||
))
|
||||
fn serialize_bool(self, value: bool) -> Result<Self::Ok, Self::Error> {
|
||||
self.write_number(if value { 1 } else { 0 })
|
||||
}
|
||||
|
||||
fn serialize_i8(self, v: i8) -> Result<Self::Ok, Self::Error> {
|
||||
|
|
|
|||
|
|
@ -163,6 +163,7 @@ async fn create_torrent_raw<'a>(
|
|||
attr: None,
|
||||
sha1: None,
|
||||
symlink_path: None,
|
||||
private: false,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1008,6 +1008,8 @@ impl Session {
|
|||
name,
|
||||
} = add_res;
|
||||
|
||||
let private = metadata.as_ref().map_or(false, |m| m.info.private);
|
||||
|
||||
let make_peer_rx = || {
|
||||
self.make_peer_rx(
|
||||
info_hash,
|
||||
|
|
@ -1015,6 +1017,7 @@ impl Session {
|
|||
!opts.paused && !opts.list_only,
|
||||
opts.force_tracker_interval,
|
||||
opts.initial_peers.clone().unwrap_or_default(),
|
||||
private,
|
||||
)
|
||||
.context("error creating peer stream")
|
||||
};
|
||||
|
|
@ -1284,12 +1287,14 @@ impl Session {
|
|||
t: &Arc<ManagedTorrent>,
|
||||
announce: bool,
|
||||
) -> anyhow::Result<PeerStream> {
|
||||
let is_private = t.with_metadata(|m| m.info.private).unwrap_or(false);
|
||||
self.make_peer_rx(
|
||||
t.info_hash(),
|
||||
t.shared().trackers.iter().cloned().collect(),
|
||||
announce,
|
||||
t.shared().options.force_tracker_interval,
|
||||
t.shared().options.initial_peers.clone(),
|
||||
is_private,
|
||||
)?
|
||||
.context("no peer source")
|
||||
}
|
||||
|
|
@ -1298,17 +1303,26 @@ impl Session {
|
|||
fn make_peer_rx(
|
||||
self: &Arc<Self>,
|
||||
info_hash: Id20,
|
||||
trackers: Vec<String>,
|
||||
mut trackers: Vec<String>,
|
||||
announce: bool,
|
||||
force_tracker_interval: Option<Duration>,
|
||||
initial_peers: Vec<SocketAddr>,
|
||||
is_private: bool,
|
||||
) -> anyhow::Result<Option<PeerStream>> {
|
||||
let announce_port = if announce { self.tcp_listen_port } else { None };
|
||||
let dht_rx = self
|
||||
.dht
|
||||
.as_ref()
|
||||
.map(|dht| dht.get_peers(info_hash, announce_port))
|
||||
.transpose()?;
|
||||
let dht_rx = if is_private {
|
||||
None
|
||||
} else {
|
||||
self.dht
|
||||
.as_ref()
|
||||
.map(|dht| dht.get_peers(info_hash, announce_port))
|
||||
.transpose()?
|
||||
};
|
||||
|
||||
if is_private && trackers.len() > 1 {
|
||||
warn!("private trackers are not fully implemented, so using only the first tracker");
|
||||
trackers.resize_with(1, Default::default);
|
||||
}
|
||||
|
||||
let tracker_rx_stats = PeerRxTorrentInfo {
|
||||
info_hash,
|
||||
|
|
|
|||
|
|
@ -134,6 +134,7 @@ async fn debug_server() -> anyhow::Result<()> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
#[allow(dead_code)]
|
||||
pub fn spawn_debug_server() -> tokio::task::JoinHandle<anyhow::Result<()>> {
|
||||
tokio::spawn(debug_server())
|
||||
}
|
||||
|
|
|
|||
|
|
@ -430,6 +430,7 @@ mod tests {
|
|||
attr: None,
|
||||
sha1: None,
|
||||
symlink_path: None,
|
||||
private: false,
|
||||
},
|
||||
comment: None,
|
||||
created_by: None,
|
||||
|
|
|
|||
|
|
@ -50,6 +50,10 @@ pub fn torrent_from_bytes<'de, BufType: Deserialize<'de> + From<&'de [u8]>>(
|
|||
torrent_from_bytes_ext(buf).map(|r| r.meta)
|
||||
}
|
||||
|
||||
fn is_false(b: &bool) -> bool {
|
||||
!*b
|
||||
}
|
||||
|
||||
/// A parsed .torrent file.
|
||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||
pub struct TorrentMetaV1<BufType> {
|
||||
|
|
@ -117,6 +121,9 @@ pub struct TorrentMetaV1Info<BufType> {
|
|||
// Multi-file mode
|
||||
#[serde(skip_serializing_if = "Option::is_none")]
|
||||
pub files: Option<Vec<TorrentMetaV1File<BufType>>>,
|
||||
|
||||
#[serde(skip_serializing_if = "is_false", default)]
|
||||
pub private: bool,
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
|
|
@ -377,6 +384,7 @@ where
|
|||
attr: self.attr.clone_to_owned(within_buffer),
|
||||
sha1: self.sha1.clone_to_owned(within_buffer),
|
||||
symlink_path: self.symlink_path.clone_to_owned(within_buffer),
|
||||
private: self.private,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue