packet2pcap.rs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. extern crate smoltcp;
  2. extern crate getopts;
  3. use std::cell::RefCell;
  4. use std::io::{self, Read, Write};
  5. use std::path::Path;
  6. use std::fs::File;
  7. use std::env;
  8. use std::process::exit;
  9. use smoltcp::phy::{PcapLinkType, PcapSink};
  10. use smoltcp::time::Instant;
  11. use getopts::Options;
  12. fn convert(packet_filename: &Path, pcap_filename: &Path, link_type: PcapLinkType)
  13. -> io::Result<()> {
  14. let mut packet_file = File::open(packet_filename)?;
  15. let mut packet = Vec::new();
  16. packet_file.read_to_end(&mut packet)?;
  17. let pcap = RefCell::new(Vec::new());
  18. PcapSink::global_header(&pcap, link_type);
  19. PcapSink::packet(&pcap, Instant::from_millis(0), &packet[..]);
  20. let mut pcap_file = File::create(pcap_filename)?;
  21. pcap_file.write_all(&pcap.borrow()[..])?;
  22. Ok(())
  23. }
  24. fn print_usage(program: &str, opts: Options) {
  25. let brief = format!("Usage: {} [options] INPUT OUTPUT", program);
  26. print!("{}", opts.usage(&brief));
  27. }
  28. fn main() {
  29. let args: Vec<String> = env::args().collect();
  30. let program = args[0].clone();
  31. let mut opts = Options::new();
  32. opts.optflag("h", "help", "print this help menu");
  33. opts.optopt("t", "link-type", "set link type (one of: ethernet ip)", "TYPE");
  34. let matches = match opts.parse(&args[1..]) {
  35. Ok(m) => m,
  36. Err(e) => {
  37. eprintln!("{}", e);
  38. return
  39. }
  40. };
  41. let link_type =
  42. match matches.opt_str("t").as_ref().map(|s| &s[..]) {
  43. Some("ethernet") => Some(PcapLinkType::Ethernet),
  44. Some("ip") => Some(PcapLinkType::Ip),
  45. _ => None
  46. };
  47. if matches.opt_present("h") || matches.free.len() != 2 || link_type.is_none() {
  48. print_usage(&program, opts);
  49. return
  50. }
  51. match convert(Path::new(&matches.free[0]),
  52. Path::new(&matches.free[1]),
  53. link_type.unwrap()) {
  54. Ok(()) => (),
  55. Err(e) => {
  56. eprintln!("Cannot convert packet to pcap: {}", e);
  57. exit(1);
  58. }
  59. }
  60. }