types.rs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. //! DNS packets are traditionally implemented with both the request and
  2. //! response packets at the same type. After all, both follow the same format,
  3. //! with the request packet having zero answer fields, and the response packet
  4. //! having at least one record in its answer fields.
  5. use crate::record::{Record, RecordType, OPT};
  6. use crate::strings::Labels;
  7. /// A request that gets sent out over a transport.
  8. #[derive(PartialEq, Debug)]
  9. pub struct Request {
  10. /// The transaction ID of this request. This is used to make sure
  11. /// different DNS packets don’t answer each other’s questions.
  12. pub transaction_id: u16,
  13. /// The flags that accompany every DNS packet.
  14. pub flags: Flags,
  15. /// The query that this request is making. Only one query is allowed per
  16. /// request, as traditionally, DNS servers only respond to the first query
  17. /// in a packet.
  18. pub query: Query,
  19. /// An additional record that may be sent as part of the query.
  20. pub additional: Option<OPT>,
  21. }
  22. /// A response obtained from a DNS server.
  23. #[derive(PartialEq, Debug)]
  24. pub struct Response {
  25. /// The transaction ID, which should match the ID of the request.
  26. pub transaction_id: u16,
  27. /// The flags that accompany every DNS packet.
  28. pub flags: Flags,
  29. /// The queries section.
  30. pub queries: Vec<Query>,
  31. /// The answers section.
  32. pub answers: Vec<Answer>,
  33. /// The authoritative nameservers section.
  34. pub authorities: Vec<Answer>,
  35. /// The additional records section.
  36. pub additionals: Vec<Answer>,
  37. }
  38. /// A DNS query section.
  39. #[derive(PartialEq, Debug)]
  40. pub struct Query {
  41. /// The domain name being queried, in human-readable dotted notation.
  42. pub qname: Labels,
  43. /// The class number.
  44. pub qclass: QClass,
  45. /// The type number.
  46. pub qtype: RecordType,
  47. }
  48. /// A DNS answer section.
  49. #[derive(PartialEq, Debug)]
  50. pub enum Answer {
  51. /// This is a standard answer with every field.
  52. Standard {
  53. /// The domain name being answered for.
  54. qname: Labels,
  55. /// This answer’s class.
  56. qclass: QClass,
  57. /// The time-to-live duration, in seconds.
  58. ttl: u32,
  59. /// The record contained in this answer.
  60. record: Record,
  61. },
  62. /// This is a pseudo-record answer, so some of the fields (class and TTL)
  63. /// have different meaning.
  64. Pseudo {
  65. /// The domain name being answered for.
  66. qname: Labels,
  67. /// The OPT record contained in this answer.
  68. opt: OPT,
  69. },
  70. }
  71. /// A DNS record class. Of these, the only one that’s in regular use anymore
  72. /// is the Internet class.
  73. #[derive(PartialEq, Debug, Copy, Clone)]
  74. pub enum QClass {
  75. /// The **Internet** class.
  76. IN,
  77. /// The **Chaosnet** class.
  78. CH,
  79. /// The **Hesiod** class.
  80. HS,
  81. /// A class number that does not map to any known class.
  82. Other(u16),
  83. }
  84. /// The flags that accompany every DNS packet.
  85. #[derive(PartialEq, Debug, Copy, Clone)]
  86. pub struct Flags {
  87. /// Whether this packet is a response packet.
  88. pub response: bool,
  89. /// The operation being performed.
  90. pub opcode: Opcode,
  91. /// In a response, whether the server is providing authoritative DNS responses.
  92. pub authoritative: bool,
  93. /// In a response, whether this message has been truncated by the transport.
  94. pub truncated: bool,
  95. /// In a query, whether the server may query other nameservers recursively.
  96. /// It is up to the server whether it will actually do this.
  97. pub recursion_desired: bool,
  98. /// In a response, whether the server allows recursive query support.
  99. pub recursion_available: bool,
  100. /// In a response, whether the server is marking this data as authentic.
  101. pub authentic_data: bool,
  102. /// In a request, whether the server should disable its authenticity
  103. /// checking for the request’s queries.
  104. pub checking_disabled: bool,
  105. /// In a response, a code indicating an error if one occurred.
  106. pub error_code: Option<ErrorCode>,
  107. }
  108. /// A number representing the operation being performed.
  109. #[derive(PartialEq, Debug, Copy, Clone)]
  110. pub enum Opcode {
  111. /// This request is a standard query, or this response is answering a
  112. /// standard query.
  113. Query,
  114. /// Any other opcode. This can be from 1 to 15, as the opcode field is
  115. /// four bits wide, and 0 is taken.
  116. Other(u8),
  117. }
  118. /// A code indicating an error.
  119. ///
  120. /// # References
  121. ///
  122. /// - [RFC 6895 §2.3](https://tools.ietf.org/html/rfc6895#section-2.3) — Domain
  123. /// Name System (DNS) IANA Considerations (April 2013)
  124. #[derive(PartialEq, Debug, Copy, Clone)]
  125. pub enum ErrorCode {
  126. /// `FormErr` — The server was unable to interpret the query.
  127. FormatError,
  128. /// `ServFail` — There was a problem with the server.
  129. ServerFailure,
  130. /// `NXDomain` — The domain name referenced in the query does not exist.
  131. NXDomain,
  132. /// `NotImp` — The server does not support one of the requested features.
  133. NotImplemented,
  134. /// `Refused` — The server was able to interpret the query, but refused to
  135. /// fulfil it.
  136. QueryRefused,
  137. /// `BADVERS` and `BADSIG` — The server did not accept the EDNS version,
  138. /// or failed to verify a signature. The same code is used for both.
  139. BadVersion,
  140. /// An error code with no currently-defined meaning.
  141. Other(u16),
  142. /// An error code within the ‘Reserved for Private Use’ range.
  143. Private(u16)
  144. }
  145. impl Answer {
  146. /// Whether this Answer holds a standard record, not a pseudo record.
  147. pub fn is_standard(&self) -> bool {
  148. matches!(self, Self::Standard { .. })
  149. }
  150. }