aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/c-ares/test/ares-test-parse.cc
blob: 95744c3eb56e872deaf3fa667b60776cfc0aaeea (plain) (blame)
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
#include "ares-test.h" 
#include "dns-proto.h" 
 
#include <sstream> 
#include <vector> 
 
namespace ares { 
namespace test { 
 
TEST_F(LibraryTest, ParseRootName) { 
  DNSPacket pkt; 
  pkt.set_qid(0x1234).set_response().set_aa() 
    .add_question(new DNSQuestion(".", ns_t_a)) 
    .add_answer(new DNSARR(".", 100, {0x02, 0x03, 0x04, 0x05})); 
  std::vector<byte> data = pkt.data(); 
 
  struct hostent *host = nullptr; 
  struct ares_addrttl info[2]; 
  int count = 2; 
  EXPECT_EQ(ARES_SUCCESS, ares_parse_a_reply(data.data(), data.size(), 
                                             &host, info, &count)); 
  EXPECT_EQ(1, count); 
  std::stringstream ss; 
  ss << HostEnt(host); 
  EXPECT_EQ("{'' aliases=[] addrs=[2.3.4.5]}", ss.str()); 
  ares_free_hostent(host); 
} 
 
TEST_F(LibraryTest, ParseIndirectRootName) { 
  std::vector<byte> data = { 
    0x12, 0x34,  // qid 
    0x84, // response + query + AA + not-TC + not-RD 
    0x00, // not-RA + not-Z + not-AD + not-CD + rc=NoError 
    0x00, 0x01,  // num questions 
    0x00, 0x01,  // num answer RRs 
    0x00, 0x00,  // num authority RRs 
    0x00, 0x00,  // num additional RRs 
    // Question 
    0xC0, 0x04,  // weird: pointer to a random zero earlier in the message 
    0x00, 0x01,  // type A 
    0x00, 0x01,  // class IN 
    // Answer 1 
    0xC0, 0x04, 
    0x00, 0x01,  // RR type 
    0x00, 0x01,  // class IN 
    0x01, 0x02, 0x03, 0x04, // TTL 
    0x00, 0x04,  // rdata length 
    0x02, 0x03, 0x04, 0x05, 
  }; 
 
  struct hostent *host = nullptr; 
  struct ares_addrttl info[2]; 
  int count = 2; 
  EXPECT_EQ(ARES_SUCCESS, ares_parse_a_reply(data.data(), data.size(), 
                                             &host, info, &count)); 
  EXPECT_EQ(1, count); 
  std::stringstream ss; 
  ss << HostEnt(host); 
  EXPECT_EQ("{'' aliases=[] addrs=[2.3.4.5]}", ss.str()); 
  ares_free_hostent(host); 
} 
 
TEST_F(LibraryTest, ParseEscapedName) { 
  std::vector<byte> data = { 
    0x12, 0x34,  // qid 
    0x84, // response + query + AA + not-TC + not-RD 
    0x00, // not-RA + not-Z + not-AD + not-CD + rc=NoError 
    0x00, 0x01,  // num questions 
    0x00, 0x01,  // num answer RRs 
    0x00, 0x00,  // num authority RRs 
    0x00, 0x00,  // num additional RRs 
    // Question 
    0x05, 'a', '\\', 'b', '.', 'c', 
    0x03, 'c', 'o', 'm', 
    0x00, 
    0x00, 0x01,  // type A 
    0x00, 0x01,  // class IN 
    // Answer 1 
    0x05, 'a', '\\', 'b', '.', 'c', 
    0x03, 'c', 'o', 'm', 
    0x00, 
    0x00, 0x01,  // RR type 
    0x00, 0x01,  // class IN 
    0x01, 0x02, 0x03, 0x04, // TTL 
    0x00, 0x04,  // rdata length 
    0x02, 0x03, 0x04, 0x05, 
  }; 
  struct hostent *host = nullptr; 
  struct ares_addrttl info[2]; 
  int count = 2; 
  EXPECT_EQ(ARES_SUCCESS, ares_parse_a_reply(data.data(), data.size(), 
                                             &host, info, &count)); 
  EXPECT_EQ(1, count); 
  HostEnt hent(host); 
  std::stringstream ss; 
  ss << hent; 
  // The printable name is expanded with escapes. 
  EXPECT_EQ(11, hent.name_.size()); 
  EXPECT_EQ('a', hent.name_[0]); 
  EXPECT_EQ('\\', hent.name_[1]); 
  EXPECT_EQ('\\', hent.name_[2]); 
  EXPECT_EQ('b', hent.name_[3]); 
  EXPECT_EQ('\\', hent.name_[4]); 
  EXPECT_EQ('.', hent.name_[5]); 
  EXPECT_EQ('c', hent.name_[6]); 
  ares_free_hostent(host); 
} 
 
TEST_F(LibraryTest, ParsePartialCompressedName) { 
  std::vector<byte> data = { 
    0x12, 0x34,  // qid 
    0x84, // response + query + AA + not-TC + not-RD 
    0x00, // not-RA + not-Z + not-AD + not-CD + rc=NoError 
    0x00, 0x01,  // num questions 
    0x00, 0x01,  // num answer RRs 
    0x00, 0x00,  // num authority RRs 
    0x00, 0x00,  // num additional RRs 
    // Question 
    0x03, 'w', 'w', 'w', 
    0x07, 'e', 'x', 'a', 'm', 'p', 'l', 'e', 
    0x03, 'c', 'o', 'm', 
    0x00, 
    0x00, 0x01,  // type A 
    0x00, 0x01,  // class IN 
    // Answer 1 
    0x03, 'w', 'w', 'w', 
    0xc0, 0x10,  // offset 16 
    0x00, 0x01,  // RR type 
    0x00, 0x01,  // class IN 
    0x01, 0x02, 0x03, 0x04, // TTL 
    0x00, 0x04,  // rdata length 
    0x02, 0x03, 0x04, 0x05, 
  }; 
  struct hostent *host = nullptr; 
  struct ares_addrttl info[2]; 
  int count = 2; 
  EXPECT_EQ(ARES_SUCCESS, ares_parse_a_reply(data.data(), data.size(), 
                                             &host, info, &count)); 
  ASSERT_NE(nullptr, host); 
  std::stringstream ss; 
  ss << HostEnt(host); 
  EXPECT_EQ("{'www.example.com' aliases=[] addrs=[2.3.4.5]}", ss.str()); 
  ares_free_hostent(host); 
} 
 
TEST_F(LibraryTest, ParseFullyCompressedName) { 
  std::vector<byte> data = { 
    0x12, 0x34,  // qid 
    0x84, // response + query + AA + not-TC + not-RD 
    0x00, // not-RA + not-Z + not-AD + not-CD + rc=NoError 
    0x00, 0x01,  // num questions 
    0x00, 0x01,  // num answer RRs 
    0x00, 0x00,  // num authority RRs 
    0x00, 0x00,  // num additional RRs 
    // Question 
    0x03, 'w', 'w', 'w', 
    0x07, 'e', 'x', 'a', 'm', 'p', 'l', 'e', 
    0x03, 'c', 'o', 'm', 
    0x00, 
    0x00, 0x01,  // type A 
    0x00, 0x01,  // class IN 
    // Answer 1 
    0xc0, 0x0c,  // offset 12 
    0x00, 0x01,  // RR type 
    0x00, 0x01,  // class IN 
    0x01, 0x02, 0x03, 0x04, // TTL 
    0x00, 0x04,  // rdata length 
    0x02, 0x03, 0x04, 0x05, 
  }; 
  struct hostent *host = nullptr; 
  struct ares_addrttl info[2]; 
  int count = 2; 
  EXPECT_EQ(ARES_SUCCESS, ares_parse_a_reply(data.data(), data.size(), 
                                             &host, info, &count)); 
  ASSERT_NE(nullptr, host); 
  std::stringstream ss; 
  ss << HostEnt(host); 
  EXPECT_EQ("{'www.example.com' aliases=[] addrs=[2.3.4.5]}", ss.str()); 
  ares_free_hostent(host); 
} 
 
TEST_F(LibraryTest, ParseFullyCompressedName2) { 
  std::vector<byte> data = { 
    0x12, 0x34,  // qid 
    0x84, // response + query + AA + not-TC + not-RD 
    0x00, // not-RA + not-Z + not-AD + not-CD + rc=NoError 
    0x00, 0x01,  // num questions 
    0x00, 0x01,  // num answer RRs 
    0x00, 0x00,  // num authority RRs 
    0x00, 0x00,  // num additional RRs 
    // Question 
    0xC0, 0x12,  // pointer to later in message 
    0x00, 0x01,  // type A 
    0x00, 0x01,  // class IN 
    // Answer 1 
    0x03, 'w', 'w', 'w', 
    0x07, 'e', 'x', 'a', 'm', 'p', 'l', 'e', 
    0x03, 'c', 'o', 'm', 
    0x00, 
    0x00, 0x01,  // RR type 
    0x00, 0x01,  // class IN 
    0x01, 0x02, 0x03, 0x04, // TTL 
    0x00, 0x04,  // rdata length 
    0x02, 0x03, 0x04, 0x05, 
  }; 
  struct hostent *host = nullptr; 
  struct ares_addrttl info[2]; 
  int count = 2; 
  EXPECT_EQ(ARES_SUCCESS, ares_parse_a_reply(data.data(), data.size(), 
                                             &host, info, &count)); 
  ASSERT_NE(nullptr, host); 
  std::stringstream ss; 
  ss << HostEnt(host); 
  EXPECT_EQ("{'www.example.com' aliases=[] addrs=[2.3.4.5]}", ss.str()); 
  ares_free_hostent(host); 
} 
 
}  // namespace test 
}  // namespace ares