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
//! Module containing structs for tracker responses.
//!
//! At the moment, `lava_torrent` does not handle communication
//! with trackers. Users will have to send requests themselves and
//! pass the received responses to `lava_torrent` for parsing.

use crate::bencode::BencodeElem;
use crate::torrent::v1::{Dictionary, Integer};
use crate::LavaTorrentError;
use itertools::Itertools;
use std::borrow::Cow;
use std::collections::HashMap;
use std::convert::TryInto;
use std::fmt;
use std::net::{IpAddr, Ipv4Addr, SocketAddr};

/// Peer information returned in a tracker response.
///
/// Modeled after the specifications in
/// [BEP 3](http://bittorrent.org/beps/bep_0003.html) and
/// [BEP 23](http://www.bittorrent.org/beps/bep_0023.html).
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Peer {
    /// A string of length 20 which this peer uses as its id.
    /// This field will be `None` for compact peer info.
    pub id: Option<String>,
    /// The IP/port this peer is listening on.
    pub addr: SocketAddr,
    /// Fields not listed above.
    pub extra_fields: Option<Dictionary>,
}

/// Everything found in a tracker response.
///
/// Modeled after the specifications in
/// [BEP 3](http://bittorrent.org/beps/bep_0003.html) and
/// [theory.org](https://wiki.theory.org/index.php/BitTorrentSpecification#Tracker_Response).
/// Unknown/extension fields will be placed in `extra_fields`. If you
/// need any of those extra fields you would have to parse it yourself.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum TrackerResponse {
    Success {
        /// The number of seconds the downloader should wait between
        /// regular requests.
        interval: Integer,
        /// A list of dictionaries corresponding to `Peer`.
        peers: Vec<Peer>,
        /// Warning message.
        warning: Option<String>,
        /// Minimum announce interval. If present clients must not
        /// reannounce more frequently than this.
        min_interval: Option<Integer>,
        /// A string that the client should send back on its next
        /// announcements.
        tracker_id: Option<String>,
        /// Number of peers with the entire file, i.e. seeders.
        complete: Option<Integer>,
        /// Number of non-seeder peers, i.e. leechers.
        incomplete: Option<Integer>,
        /// Fields not listed above.
        extra_fields: Option<Dictionary>,
    },
    Failure {
        /// Error message.
        reason: String,
    },
}

/// Swarm metadata returned in a tracker scrape response.
///
/// Modeled after the specifications in
/// [BEP 48](http://www.bittorrent.org/beps/bep_0048.html).
/// Unknown/extension fields will be placed in `extra_fields`. If you
/// need any of those extra fields you would have to parse it yourself.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct SwarmMetadata {
    /// The number of active peers that have completed downloading.
    pub complete: Integer,
    /// The number of active peers that have not completed downloading.
    pub incomplete: Integer,
    /// The number of peers that have ever completed downloading.
    pub downloaded: Integer,
    /// Fields not listed above.
    pub extra_fields: Option<Dictionary>,
}

/// Everything found in a tracker scrape response.
///
/// Modeled after the specifications in
/// [BEP 48](http://www.bittorrent.org/beps/bep_0048.html) and
/// [theory.org](https://wiki.theory.org/index.php/BitTorrentSpecification#Tracker_.27scrape.27_Convention).
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct TrackerScrapeResponse {
    /// File info (info hash -> metadata).
    pub files: HashMap<Vec<u8>, SwarmMetadata>,
    /// Fields not listed above.
    pub extra_fields: Option<Dictionary>,
}

impl Peer {
    /// Go through `dict` and return the extracted `Peer`.
    ///
    /// If `dict` is missing any required field (e.g. `ip`),
    /// then `Err(error)` will be returned.
    fn from_dict(mut dict: HashMap<String, BencodeElem>) -> Result<Peer, LavaTorrentError> {
        let id = match dict.remove("peer id") {
            Some(BencodeElem::String(string)) => Some(string),
            Some(BencodeElem::Bytes(bytes)) => Some(
                bytes
                    .iter()
                    .map(|b| format!("{:x}", b))
                    .format("")
                    .to_string(),
            ),
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""peer id" maps to neither a utf8 string nor a string of bytes."#,
                )));
            }
            None => None,
        };
        let ip = match dict.remove("ip") {
            Some(BencodeElem::String(ip)) => ip,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""ip" does not map to a string (or maps to invalid UTF8)."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""ip" does not exist."#,
                )));
            }
        };
        let port = match dict.remove("port") {
            Some(BencodeElem::Integer(port)) => port,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""port" does not map to an integer."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""port" does not exist."#,
                )));
            }
        };
        let extra_fields = if dict.is_empty() { None } else { Some(dict) };

        let ip = match ip.parse::<IpAddr>() {
            Ok(ip) => ip,
            Err(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""ip" is invalid."#,
                )));
            }
        };

        Ok(Peer {
            id,
            addr: SocketAddr::from((ip, port as u16)),
            extra_fields,
        })
    }

    /// Parse `bytes` and return the extracted `Peer`.
    ///
    /// `bytes` must contain exactly 6 bytes.
    fn from_bytes<B>(bytes: B) -> Peer
    where
        B: AsRef<[u8]>,
    {
        let bytes = bytes.as_ref();
        if bytes.len() != 6 {
            panic!(
                "Peer::from_bytes() expects 6 bytes, {} received.",
                bytes.len()
            )
        }

        let ip = Ipv4Addr::from(u32::from_be_bytes(bytes[..4].try_into().unwrap()));
        let port = u16::from_be_bytes(bytes[4..].try_into().unwrap());

        Peer {
            id: None,
            addr: SocketAddr::from((ip, port)),
            extra_fields: None,
        }
    }
}

impl TrackerResponse {
    /// Parse `bytes` and return the extracted `TrackerResponse`.
    ///
    /// If `bytes` is missing any required field (e.g. `interval`), or if any other
    /// error is encountered (e.g. `IOError`), then `Err(error)` will be returned.
    pub fn from_bytes<B>(bytes: B) -> Result<TrackerResponse, LavaTorrentError>
    where
        B: AsRef<[u8]>,
    {
        let mut parsed = BencodeElem::from_bytes(bytes)?;
        if parsed.len() != 1 {
            return Err(LavaTorrentError::MalformedTorrent(Cow::Owned(format!(
                "Tracker response should contain 1 and only 1 top-level element, {} found.",
                parsed.len()
            ))));
        }
        let mut parsed = match parsed.remove(0) {
            BencodeElem::Dictionary(dict) => dict,
            _ => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    "Tracker response doesn't contain a dictionary.",
                )));
            }
        };

        match parsed.remove("failure reason") {
            Some(BencodeElem::String(reason)) => return Ok(TrackerResponse::Failure { reason }),
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""failure reason" does not map to a string (or maps to invalid UTF8)."#,
                )));
            }
            None => (),
        }

        let interval = match parsed.remove("interval") {
            Some(BencodeElem::Integer(interval)) => interval,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""interval" does not map to an integer."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""interval" does not exist."#,
                )));
            }
        };
        let peers = match parsed.remove("peers") {
            Some(BencodeElem::List(list)) => Self::extract_peers_from_list(list)?,
            Some(BencodeElem::Bytes(bytes)) => Self::extract_peers_from_bytes(bytes)?,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""peers" does not map to a dict or a string of bytes."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""peers" does not exist."#,
                )));
            }
        };
        let warning = match parsed.remove("warning") {
            Some(BencodeElem::String(warning)) => Some(warning),
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""warning" does not map to a string (or maps to invalid UTF8)."#,
                )));
            }
            None => None,
        };
        let min_interval = match parsed.remove("min interval") {
            Some(BencodeElem::Integer(min_interval)) => Some(min_interval),
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""min interval" does not map to an integer."#,
                )));
            }
            None => None,
        };
        let tracker_id = match parsed.remove("tracker id") {
            Some(BencodeElem::String(tracker_id)) => Some(tracker_id),
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""tracker id" does not map to a string (or maps to invalid UTF8)."#,
                )));
            }
            None => None,
        };
        let complete = match parsed.remove("complete") {
            Some(BencodeElem::Integer(complete)) => Some(complete),
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""complete" does not map to an integer."#,
                )));
            }
            None => None,
        };
        let incomplete = match parsed.remove("incomplete") {
            Some(BencodeElem::Integer(incomplete)) => Some(incomplete),
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""incomplete" does not map to an integer."#,
                )));
            }
            None => None,
        };
        let extra_fields = if parsed.is_empty() {
            None
        } else {
            Some(parsed)
        };

        Ok(TrackerResponse::Success {
            interval,
            peers,
            warning,
            min_interval,
            tracker_id,
            complete,
            incomplete,
            extra_fields,
        })
    }

    fn extract_peers_from_list(list: Vec<BencodeElem>) -> Result<Vec<Peer>, LavaTorrentError> {
        list.into_iter()
            .map(|elem| match elem {
                BencodeElem::Dictionary(dict) => Ok(Peer::from_dict(dict)?),
                _ => Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""peers" contains a non-dictionary element."#,
                ))),
            })
            .collect()
    }

    fn extract_peers_from_bytes(bytes: Vec<u8>) -> Result<Vec<Peer>, LavaTorrentError> {
        if (bytes.len() % 6) != 0 {
            return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                r#"Compact "peers" contains incorrect number of bytes"#,
            )));
        }

        let n_peers = bytes.len() / 6;
        let mut peers = Vec::with_capacity(n_peers);
        for i in 0..(n_peers) {
            peers.push(Peer::from_bytes(bytes[(i * 6)..((i + 1) * 6)].as_ref()));
        }
        Ok(peers)
    }
}

impl SwarmMetadata {
    /// Go through `dict` and return the extracted `SwarmMetadata`.
    ///
    /// If `dict` is missing any required field (e.g. `complete`), then
    /// `Err(error)` will be returned.
    fn from_dict(
        mut dict: HashMap<String, BencodeElem>,
    ) -> Result<SwarmMetadata, LavaTorrentError> {
        let complete = match dict.remove("complete") {
            Some(BencodeElem::Integer(complete)) => complete,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""complete" does not map to an integer."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""complete" does not exist."#,
                )));
            }
        };
        let incomplete = match dict.remove("incomplete") {
            Some(BencodeElem::Integer(incomplete)) => incomplete,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""incomplete" does not map to an integer."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""incomplete" does not exist."#,
                )));
            }
        };
        let downloaded = match dict.remove("downloaded") {
            Some(BencodeElem::Integer(downloaded)) => downloaded,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""downloaded" does not map to an integer."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""downloaded" does not exist."#,
                )));
            }
        };
        let extra_fields = if dict.is_empty() { None } else { Some(dict) };

        Ok(SwarmMetadata {
            complete,
            incomplete,
            downloaded,
            extra_fields,
        })
    }
}

impl TrackerScrapeResponse {
    /// Parse `bytes` and return the extracted `TrackerScrapeResponse`.
    ///
    /// If `bytes` is missing any required field (e.g. `files`), or if any other
    /// error is encountered (e.g. `IOError`), then `Err(error)` will be returned.
    pub fn from_bytes<B>(bytes: B) -> Result<TrackerScrapeResponse, LavaTorrentError>
    where
        B: AsRef<[u8]>,
    {
        let mut parsed = BencodeElem::from_bytes(bytes)?;
        if parsed.len() != 1 {
            return Err(LavaTorrentError::MalformedTorrent(Cow::Owned(format!(
                "Tracker scrape response should contain 1 and only 1 top-level element, {} found.",
                parsed.len()
            ))));
        }
        let mut parsed = match parsed.remove(0) {
            BencodeElem::Dictionary(dict) => dict,
            _ => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    "Tracker scrape response doesn't contain a dictionary.",
                )));
            }
        };

        let files = match parsed.remove("files") {
            Some(BencodeElem::RawDictionary(dict)) => dict,
            Some(_) => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""files" does not map to a raw dict."#,
                )));
            }
            None => {
                return Err(LavaTorrentError::MalformedResponse(Cow::Borrowed(
                    r#""files" does not exist."#,
                )));
            }
        };
        let extra_fields = if parsed.is_empty() {
            None
        } else {
            Some(parsed)
        };

        let files = files
            .into_iter()
            .map(|(k, v)| match v {
                BencodeElem::Dictionary(dict) => Ok((k, SwarmMetadata::from_dict(dict)?)),
                _ => Err(LavaTorrentError::MalformedResponse(Cow::Owned(format!(
                    r#"swarm metadata for {} is not a dictionary."#,
                    k.iter().map(|b| format!("{:x}", b)).format("")
                )))),
            })
            .collect::<Result<HashMap<Vec<u8>, SwarmMetadata>, LavaTorrentError>>()?;

        Ok(TrackerScrapeResponse {
            files,
            extra_fields,
        })
    }
}

impl fmt::Display for Peer {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if let Some(ref id) = self.id {
            writeln!(f, "\t-id: {}", id)?;
        }
        writeln!(f, "\t-addr: {}", self.addr)?;

        if let Some(ref fields) = self.extra_fields {
            write!(
                f,
                "{}",
                fields
                    .iter()
                    .sorted_by_key(|&(key, _)| key.as_bytes())
                    .format_with("", |(k, v), f| f(&format_args!("-{}: {}\n", k, v)))
            )?;
        }

        writeln!(f, "\t========================================")
    }
}

impl fmt::Display for TrackerResponse {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            TrackerResponse::Success {
                interval,
                peers,
                warning,
                min_interval,
                tracker_id,
                complete,
                incomplete,
                extra_fields,
            } => {
                writeln!(f, "-interval: {}", interval)?;
                if let Some(ref min_interval) = min_interval {
                    writeln!(f, "-min_interval: {}", min_interval)?;
                }
                if let Some(ref warning) = warning {
                    writeln!(f, "-warning: {}", warning)?;
                }
                if let Some(ref tracker_id) = tracker_id {
                    writeln!(f, "-tracker_id: {}", tracker_id)?;
                }
                if let Some(ref complete) = complete {
                    writeln!(f, "-complete: {}", complete)?;
                }
                if let Some(ref incomplete) = incomplete {
                    writeln!(f, "-incomplete: {}", incomplete)?;
                }

                if let Some(ref fields) = extra_fields {
                    write!(
                        f,
                        "{}",
                        fields
                            .iter()
                            .sorted_by_key(|&(key, _)| key.as_bytes())
                            .format_with("", |(k, v), f| f(&format_args!("-{}: {}\n", k, v)))
                    )?;
                }

                writeln!(f, "-peers ({}):\n{}", peers.len(), peers.iter().format(""))
            }
            TrackerResponse::Failure { reason } => writeln!(f, "failure: {}", reason),
        }
    }
}

impl fmt::Display for SwarmMetadata {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        writeln!(f, "-complete: {}", self.complete)?;
        writeln!(f, "-incomplete: {}", self.incomplete)?;
        writeln!(f, "-downloaded: {}", self.downloaded)?;

        if let Some(ref fields) = self.extra_fields {
            write!(
                f,
                "{}",
                fields
                    .iter()
                    .sorted_by_key(|&(key, _)| key.as_bytes())
                    .format_with("", |(k, v), f| f(&format_args!("-{}: {}\n", k, v)))
            )?;
        }

        writeln!(f, "========================================")
    }
}

impl fmt::Display for TrackerScrapeResponse {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(
            f,
            "files:\n{}",
            self.files
                .iter()
                .format_with("", |(k, v), f| f(&format_args!(
                    "{}\n{}",
                    k.iter().map(|b| format!("{:x}", b)).format(""),
                    v
                )))
        )?;

        if let Some(ref fields) = self.extra_fields {
            write!(
                f,
                "{}",
                fields
                    .iter()
                    .sorted_by_key(|&(key, _)| key.as_bytes())
                    .format_with("", |(k, v), f| f(&format_args!("-{}: {}\n", k, v)))
            )?;
        }

        Ok(())
    }
}

// @todo: add unit tests