summaryrefslogtreecommitdiff
path: root/userland/libc/netdb/getaddrinfo.c
blob: f19d11a388cae69017a46394f2081d2e62013763 (plain)
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#include <arpa/inet.h>
#include <assert.h>
#include <ctype.h>
#include <netdb.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <tb/sv.h>
#include <unistd.h>

#define PORT 53

u16 add_domain_label(u8 *buffer, struct sv label) {
  assert(label.length < 64);
  u16 size = 0;
  u8 ll = label.length;
  memcpy(buffer + size, &ll, sizeof(u8));
  size += sizeof(u8);
  memcpy(buffer + size, label.s, label.length);
  size += label.length;
  return size;
}

u16 send_domain_request(int sockfd, const char *domain, u16 *id) {
  *id = 0;
  u8 message[512];
  memset(message, 0, sizeof(message));

  u16 size = 0;
  size += 6 * sizeof(u16); // header

  u16 flags = htons(0x0100);
  u16 qdcount = htons(1);
  memcpy(message, id, sizeof(u16));
  memcpy(message + sizeof(u16), &flags, sizeof(u16));
  memcpy(message + sizeof(u16) * 2, &qdcount, sizeof(u16));

  struct sv labels = C_TO_SV(domain);
  for (; !sv_isempty(labels);) {
    struct sv label = sv_split_delim(labels, &labels, '.');
    size += add_domain_label(message + size, label);
  }

  size += add_domain_label(message + size, C_TO_SV(""));

  u16 query_type = htons(1); // A type
  memcpy(message + size, &query_type, sizeof(u16));
  size += sizeof(u16);

  u16 q_class = htons(1); // IN
  memcpy(message + size, &q_class, sizeof(u16));
  size += sizeof(u16);

  printf("sending: %d\n", size);

  write(sockfd, (char *)message, size);
  return size;
}

int connect_dns(void) {
  int sockfd;
  struct sockaddr_in servaddr;

  memset(&servaddr, 0, sizeof(servaddr));
  servaddr.sin_addr.a[0] = 8;
  servaddr.sin_addr.a[1] = 8;
  servaddr.sin_addr.a[2] = 8;
  servaddr.sin_addr.a[3] = 8;
  servaddr.sin_port = htons(PORT);
  servaddr.sin_family = AF_INET;

  sockfd = socket(AF_INET, SOCK_DGRAM, 0);

  if (connect(sockfd, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0) {
    return -1;
  }
  return sockfd;
}

/*
  hints.ai_family = AF_UNSPEC;
  hints.ai_socktype = type;
  hints.ai_flags = AI_PASSIVE;
  hints.ai_protocol = 0;
  hints.ai_canonname = NULL;
  hints.ai_addr = NULL;
  hints.ai_next = NULL;
*/

u16 service_to_port(const char *service) {
  int is_number = 0;
  for (int i = 0; service[i]; i++) {
    if (isdigit(service[i])) {
      is_number = 1;
    }
  }
  if (is_number) {
    return htons(atoi(service));
  }

#define SERVICE(_name, _port)                                                  \
  if (0 == strcmp(_name, service)) {                                           \
    return htons(_port);                                                       \
  }
  SERVICE("http", 80)
  SERVICE("https", 443)
#undef SERVICE
  return 0;
}

int getaddrinfo(const char *restrict node, const char *restrict service,
                const struct addrinfo *restrict hints,
                struct addrinfo **restrict res) {
  int sockfd = connect_dns();
  if (-1 == sockfd) {
    return EAI_AGAIN;
  }

  // TODO: Use the hints to make decisions about what data to request.
  (void)hints;

  u16 id;
  u16 size = send_domain_request(sockfd, node, &id);

  u8 buffer[512];
  memset(buffer, 0, sizeof(buffer));
  int rc = read(sockfd, buffer, sizeof(buffer));
  if (rc < size) {
    close(sockfd);
    return EAI_FAIL;
  }
  close(sockfd);

  if (0 != memcmp(buffer, &id, sizeof(u16))) {
    close(sockfd);
    return EAI_FAIL;
  }

  u16 flags;
  memcpy(&flags, buffer + sizeof(u16), sizeof(u16));
  flags = ntohs(flags);

  if (!(flags & (1 << 15))) { // QR
    close(sockfd);
    return EAI_FAIL;
  }
  if (0 != (flags & 0x1F)) { // Error field
    close(sockfd);
    return EAI_AGAIN;
  }

  u16 qcount = ntohs(*(u16 *)(buffer + sizeof(u16) * 2));
  if (1 != qcount) {
    close(sockfd);
    return EAI_FAIL;
  }

  u16 ancount = ntohs(*(u16 *)(buffer + sizeof(u16) * 3));
  if (0 == ancount) {
    close(sockfd);
    return EAI_NONAME; // TODO: Check if this is correct
  }

  u8 *answer = buffer + size;
  u16 answer_length = rc - size;
  if (0 == answer_length) {
    close(sockfd);
    return EAI_FAIL;
  }

  /*
  // get labels
  {
    u16 offset = ntohs(*(u16 *)answer);
    assert(3 == offset >> 14);
    offset &= ~(3 << 14);

    printf("offset: %d\n", offset);
    printf("name: ");
    u8 length = buffer[offset];
    for (int i = 0; i < length; i++) {
      printf("%c", buffer[offset + 1 + i]);
    }
    printf("\n");
  }
  */

  for (u16 i = 0; i < answer_length;) {
    // type
    u16 type = ntohs(*(u16 *)(answer + sizeof(u16)));
    u16 class = ntohs(*(u16 *)(answer + sizeof(u16) * 2));
    int ignore = 0;
    u16 inc = 0;
    if (1 != type) {
      ignore = 1;
    }
    if (1 != class) {
      ignore = 1;
    }
    inc += sizeof(u16) * 3;

    u16 rdlength = ntohs(*(u16 *)(answer + sizeof(u16) * 3 + sizeof(u32)));
    inc += sizeof(u16);
    inc += rdlength;
    inc += sizeof(u32);

    if (4 != rdlength) {
      ignore = 1;
    }
    if (!ignore) {
      u32 ip = *(u32 *)(answer + sizeof(u16) * 4 + sizeof(u32));

      if (res) {
        *res = calloc(1, sizeof(struct addrinfo));
        if (!(*res)) {
          close(sockfd);
          return EAI_MEMORY;
        }
        struct sockaddr_in *sa = calloc(1, sizeof(struct sockaddr_in));
        if (!sa) {
          free(*res);
          close(sockfd);
          return EAI_MEMORY;
        }
        (*res)->ai_addr = (struct sockaddr *)sa;
        sa->sin_addr.s_addr = ip;
        sa->sin_port = service_to_port(service);
        sa->sin_family = AF_INET;
      }
    }
    i += inc;
    answer += inc;
  }
  return 0;
}

void freeaddrinfo(struct addrinfo *res) {
  free(res->ai_addr);
  free(res);
}