-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathdns.c
More file actions
225 lines (190 loc) · 6.63 KB
/
dns.c
File metadata and controls
225 lines (190 loc) · 6.63 KB
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
#include <assert.h>
#include <regex.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include "dns.h"
#include "http.h"
#include "tools.h"
typedef struct {
uint16_t xid; /* Randomly chosen identifier */
uint16_t flags; /* Bit-mask to indicate request/response */
uint16_t qdcount; /* Number of questions */
uint16_t ancount; /* Number of answers */
uint16_t nscount; /* Number of authority records */
uint16_t arcount; /* Number of additional records */
} __attribute__((packed)) dns_header_t;
typedef struct {
uint16_t dnstype; /* The QTYPE (1 = A) */
uint16_t dnsclass; /* The QCLASS (1 = IN) */
} __attribute__((packed)) dns_question_t;
#define TYPE_A_RECORD 1
#define TYPE_CNAME_RECORD 5
/* Structure of the bytes for an IPv4 answer */
typedef struct {
uint16_t compression;
uint16_t type;
uint16_t class;
uint32_t ttl;
uint16_t length;
uint32_t addr;
} __attribute__((packed)) dns_record_a_t;
bool parse_resolv_conf(nservers_t *ns) {
FILE *f = fopen("/etc/resolv.conf", "r");
if (!f)
return false;
char *line = NULL;
size_t len = 0, i = ns->len;
ssize_t read;
uint8_t *d = (uint8_t *)&ns->ipv4_addr[i];
while ((read = getline(&line, &len, f)) != -1) {
if (sscanf(line, "nameserver %hhd.%hhd.%hhd.%hhd", &d[0], &d[1], &d[2],
&d[3]) == 4) {
// skip "nameserver 0.0.0.0"
if (*(uint32_t *)d == 0)
break;
if (i == MAX_NSERVERS)
break;
d = (uint8_t *)&ns->ipv4_addr[++i];
}
}
if (line)
free(line);
exit:
fclose(f);
ns->len = i;
return true;
}
static void fill_dns_req(uint8_t *packet, size_t packetlen,
const char *hostname) {
/* Set up the DNS header */
dns_header_t *header = (dns_header_t *)packet;
memset(header, 0, sizeof(dns_header_t));
header->xid = htons(0x1234); /* Randomly chosen ID */
header->flags = htons(0x0100); /* Q=0, RD=1 */
header->qdcount = htons(1); /* Sending 1 question */
/* Set up the DNS question */
dns_question_t *question =
(dns_question_t *)(packet + packetlen - sizeof(dns_question_t));
question->dnstype = htons(1); /* QTYPE 1=A */
question->dnsclass = htons(1); /* QCLASS 1=IN */
char *question_name = (char *)packet + sizeof(dns_header_t);
/* Leave the first byte blank for the first field length */
strcpy(question_name + 1, hostname);
uint8_t *prev = (uint8_t *)question_name;
uint8_t count = 0; /* Used to count the bytes in a field */
/* Traverse through the name, looking for the . locations */
for (size_t i = 0; i < strlen(hostname); i++) {
/* A . indicates the end of a field */
if (hostname[i] == '.') {
/* Copy the length to the byte before this field, then
update prev to the location of the . */
*prev = count;
prev = (uint8_t *)question_name + i + 1;
count = 0;
} else
count++;
}
*prev = count;
}
static bool parse_dns_resp(uint8_t *response, ssize_t rlen, a_records_t *srv) {
dns_header_t *response_header = (dns_header_t *)response;
if ((ntohs(response_header->flags) & 0xf) != 0) {
return false;
}
/* Get a pointer to the start of the question name, and
reconstruct it from the fields */
uint8_t *start_of_name = (uint8_t *)(response + sizeof(dns_header_t));
uint8_t total = 0;
uint8_t *field_length = start_of_name;
while (*field_length != 0) {
/* Restore the dot in the name and advance to next length */
total += *field_length + 1;
*field_length = '.';
field_length = start_of_name + total;
}
*field_length = '\0'; /* Null terminate the name */
srv->len = 0;
dns_record_a_t *rec = (dns_record_a_t *)(field_length + 5);
while ((uint8_t *)rec < response + rlen) {
if (srv->len == MAX_ARECORDS)
break;
if (ntohs(rec->type) == TYPE_A_RECORD) {
srv->ipv4_addr[srv->len++] = rec->addr;
}
rec = (dns_record_a_t *)((uint8_t *)rec + ntohs(rec->length) + 12);
}
return true;
}
#define MAX_DNS_PACKET 512
#define DNS_TIMEOUT 5 // seconds
bool resolv_name(nservers_t *ns, const char *hostname, a_records_t *srv) {
int socketfd = socket(AF_INET, SOCK_DGRAM, 0);
struct timeval tv = {.tv_sec = DNS_TIMEOUT, .tv_usec = 0};
setsockopt(socketfd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv));
/* Copy all fields into a single, concatenated packet */
size_t packetlen =
sizeof(dns_header_t) + strlen(hostname) + 2 + sizeof(dns_question_t);
uint8_t *packet = alloca(packetlen);
fill_dns_req(packet, packetlen, hostname);
struct sockaddr_in address;
address.sin_family = AF_INET;
/* DNS runs on port 53 */
address.sin_port = htons(53);
uint8_t response[MAX_DNS_PACKET];
memset(&response, 0, MAX_DNS_PACKET);
ssize_t rlen = 0;
for (size_t i = 0; i < ns->len; i++) {
address.sin_addr.s_addr = ns->ipv4_addr[i];
/* Send the packet to DNS server, then request the response */
sendto(socketfd, packet, packetlen, 0, (struct sockaddr *)&address,
(socklen_t)sizeof(address));
socklen_t length = 0;
/* Receive the response from DNS server into a local buffer */
rlen = recvfrom(socketfd, response, MAX_DNS_PACKET, 0,
(struct sockaddr *)&address, &length);
if (rlen > 0)
break;
#if 1
fprintf(stderr, "Timeout for %x\n", address.sin_addr.s_addr);
#endif
}
if (!parse_dns_resp(response, rlen, srv))
return false;
return true;
}
void add_predefined_ns(nservers_t *ns, ...) {
va_list ap;
int argno = 0;
uint32_t ipv4_addr;
va_start(ap, ns);
while ((ipv4_addr = va_arg(ap, uint32_t)) && ns->len < MAX_NSERVERS) {
ns->ipv4_addr[ns->len++] = htonl(ipv4_addr);
}
va_end(ap);
}
void print_nservers(nservers_t *ns) {
for (size_t i = 0; i < ns->len; i++) {
char buf[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &ns->ipv4_addr[i], buf, sizeof(buf));
printf("nameserver %s\n", buf);
}
}
static void print_a_records(a_records_t *srv) {
for (size_t i = 0; i < srv->len; i++) {
char buf[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &srv->ipv4_addr[i], buf, sizeof(buf));
printf("IP: %s\n", buf);
}
}