main.rs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. //! dog, the command-line DNS client.
  2. #![warn(deprecated_in_future)]
  3. #![warn(future_incompatible)]
  4. #![warn(missing_copy_implementations)]
  5. #![warn(missing_docs)]
  6. #![warn(nonstandard_style)]
  7. #![warn(rust_2018_compatibility)]
  8. #![warn(rust_2018_idioms)]
  9. #![warn(single_use_lifetimes)]
  10. #![warn(trivial_casts, trivial_numeric_casts)]
  11. #![warn(unused)]
  12. #![warn(clippy::all, clippy::pedantic)]
  13. #![allow(clippy::enum_glob_use)]
  14. #![allow(clippy::module_name_repetitions)]
  15. #![allow(clippy::option_if_let_else)]
  16. #![allow(clippy::too_many_lines)]
  17. #![allow(clippy::unit_arg)]
  18. #![allow(clippy::unused_self)]
  19. #![allow(clippy::useless_let_if_seq)]
  20. #![allow(clippy::wildcard_imports)]
  21. #![deny(unsafe_code)]
  22. use log::*;
  23. mod colours;
  24. mod connect;
  25. mod logger;
  26. mod output;
  27. mod requests;
  28. mod resolve;
  29. mod table;
  30. mod txid;
  31. mod options;
  32. use self::options::*;
  33. /// Configures logging, parses the command-line options, and handles any
  34. /// errors before passing control over to the Dog type.
  35. fn main() {
  36. use std::env;
  37. use std::process::exit;
  38. logger::configure(env::var_os("DOG_DEBUG"));
  39. #[cfg(windows)]
  40. if let Err(e) = ansi_term::enable_ansi_support() {
  41. warn!("Failed to enable ANSI support: {}", e);
  42. }
  43. match Options::getopts(env::args_os().skip(1)) {
  44. OptionsResult::Ok(options) => {
  45. info!("Running with options -> {:#?}", options);
  46. exit(run(options));
  47. }
  48. OptionsResult::Help(help_reason, use_colours) => {
  49. if use_colours.should_use_colours() {
  50. print!("{}", include_str!(concat!(env!("OUT_DIR"), "/usage.pretty.txt")));
  51. }
  52. else {
  53. print!("{}", include_str!(concat!(env!("OUT_DIR"), "/usage.bland.txt")));
  54. }
  55. if help_reason == HelpReason::NoDomains {
  56. exit(exits::OPTIONS_ERROR);
  57. }
  58. else {
  59. exit(exits::SUCCESS);
  60. }
  61. }
  62. OptionsResult::Version(use_colours) => {
  63. if use_colours.should_use_colours() {
  64. print!("{}", include_str!(concat!(env!("OUT_DIR"), "/version.pretty.txt")));
  65. }
  66. else {
  67. print!("{}", include_str!(concat!(env!("OUT_DIR"), "/version.bland.txt")));
  68. }
  69. exit(exits::SUCCESS);
  70. }
  71. OptionsResult::InvalidOptionsFormat(oe) => {
  72. eprintln!("Invalid options: {}", oe);
  73. exit(exits::OPTIONS_ERROR);
  74. }
  75. OptionsResult::InvalidOptions(why) => {
  76. eprintln!("Invalid options: {}", why);
  77. exit(exits::OPTIONS_ERROR);
  78. }
  79. }
  80. }
  81. /// Runs dog with some options, returning the status to exit with.
  82. fn run(Options { requests, format, measure_time }: Options) -> i32 {
  83. use std::time::Instant;
  84. let should_show_opt = requests.edns.should_show();
  85. let mut responses = Vec::new();
  86. let timer = if measure_time { Some(Instant::now()) } else { None };
  87. let mut errored = false;
  88. for (request, transport) in requests.generate() {
  89. let result = transport.send(&request);
  90. match result {
  91. Ok(mut response) => {
  92. if ! should_show_opt {
  93. response.answers.retain(dns::Answer::is_standard);
  94. response.authorities.retain(dns::Answer::is_standard);
  95. response.additionals.retain(dns::Answer::is_standard);
  96. }
  97. responses.push(response);
  98. }
  99. Err(e) => {
  100. format.print_error(e);
  101. errored = true;
  102. }
  103. }
  104. }
  105. let duration = timer.map(|t| t.elapsed());
  106. if format.print(responses, duration) {
  107. if errored {
  108. exits::NETWORK_ERROR
  109. }
  110. else {
  111. exits::SUCCESS
  112. }
  113. }
  114. else {
  115. exits::NO_SHORT_RESULTS
  116. }
  117. }
  118. /// The possible status numbers dog can exit with.
  119. mod exits {
  120. /// Exit code for when everything turns out OK.
  121. pub const SUCCESS: i32 = 0;
  122. /// Exit code for when there was at least one network error during execution.
  123. pub const NETWORK_ERROR: i32 = 1;
  124. /// Exit code for when there is no result from the server when running in
  125. /// short mode. This can be any received server error, not just `NXDOMAIN`.
  126. pub const NO_SHORT_RESULTS: i32 = 2;
  127. /// Exit code for when the command-line options are invalid.
  128. pub const OPTIONS_ERROR: i32 = 3;
  129. }