165fdc121150538f546d10d950618d9151b5656e
[oweals/gnunet.git] / src / vpn / gnunet-service-dns.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file vpn/gnunet-service-dns.c
23  * @author Philipp Toelke
24  */
25 #include "platform.h"
26 #include "gnunet_getopt_lib.h"
27 #include "gnunet_service_lib.h"
28 #include "gnunet_network_lib.h"
29 #include "gnunet_os_lib.h"
30 #include "gnunet-service-dns-p.h"
31 #include "gnunet_protocols.h"
32 #include "gnunet-vpn-packet.h"
33 #include "gnunet-vpn-pretty-print.h"
34 #include "gnunet_container_lib.h"
35 #include "gnunet-dns-parser.h"
36 #include "gnunet_dht_service.h"
37 #include "gnunet_block_lib.h"
38 #include "gnunet_block_dns.h"
39
40 struct dns_cls {
41         struct GNUNET_SCHEDULER_Handle *sched;
42
43         struct GNUNET_NETWORK_Handle *dnsout;
44
45         struct GNUNET_DHT_Handle *dht;
46
47         unsigned short dnsoutport;
48
49         struct answer_packet_list *head;
50         struct answer_packet_list *tail;
51 };
52 static struct dns_cls mycls;
53
54 struct dns_query_id_state {
55         unsigned valid:1;
56         struct GNUNET_SERVER_Client* client;
57         unsigned local_ip:32;
58         unsigned local_port:16;
59 };
60 static struct dns_query_id_state query_states[65536]; /* This is < 1MiB */
61
62 void hijack(unsigned short port) {
63         char port_s[6];
64
65         GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Hijacking, port is %d\n", port);
66         snprintf(port_s, 6, "%d", port);
67         GNUNET_OS_start_process(NULL, NULL, "gnunet-helper-hijack-dns", "gnunet-hijack-dns", port_s, NULL);
68 }
69
70 void unhijack(unsigned short port) {
71         char port_s[6];
72
73         GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "unHijacking, port is %d\n", port);
74         snprintf(port_s, 6, "%d", port);
75         GNUNET_OS_start_process(NULL, NULL, "gnunet-helper-hijack-dns", "gnunet-hijack-dns", "-d", port_s, NULL);
76 }
77
78 void receive_dht(void *cls,
79                  struct GNUNET_TIME_Absolute exp,
80                  const GNUNET_HashCode *key,
81                  const struct GNUNET_PeerIdentity *const *get_path,
82                  const struct GNUNET_PeerIdentity *const *put_path,
83                  enum GNUNET_BLOCK_Type type,
84                  size_t size,
85                  const void *data)
86 {
87   GNUNET_assert(type == GNUNET_BLOCK_TYPE_DNS);
88   const struct GNUNET_DNS_Record* rec = data;
89   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Got block of size %s, peer: %08x, desc: %08x\n", size, *((unsigned int*)&rec->peer), *((unsigned int*)&rec->service_descriptor));
90 }
91
92 /**
93  * This receives the dns-payload from the daemon-vpn and sends it on over the udp-socket
94  */
95 void receive_query(void *cls, struct GNUNET_SERVER_Client *client, const struct GNUNET_MessageHeader *message)
96 {
97         struct query_packet* pkt = (struct query_packet*)message;
98         struct dns_pkt* dns = (struct dns_pkt*)pkt->data;
99         struct dns_pkt_parsed* pdns = parse_dns_packet(dns);
100
101         if (pdns->queries[0]->namelen > 9 &&
102             0 == strncmp(pdns->queries[0]->name+(pdns->queries[0]->namelen - 9), ".gnunet.", 9)) {
103             GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Query for .gnunet!\n");
104             GNUNET_HashCode key;
105             GNUNET_CRYPTO_hash(pdns->queries[0]->name, pdns->queries[0]->namelen, &key);
106             GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Getting with key %08x, len is %d\n", *((unsigned int*)&key), pdns->queries[0]->namelen);
107             GNUNET_DHT_get_start(mycls.dht,
108                                  GNUNET_TIME_UNIT_MINUTES,
109                                  GNUNET_BLOCK_TYPE_DNS,
110                                  &key,
111                                  GNUNET_DHT_RO_NONE,
112                                  NULL,
113                                  0,
114                                  NULL,
115                                  0,
116                                  receive_dht,
117                                  NULL);
118             goto out;
119         }
120
121         GNUNET_free(pdns);
122
123         struct sockaddr_in dest;
124         memset(&dest, 0, sizeof dest);
125         dest.sin_port = htons(53);
126         dest.sin_addr.s_addr = pkt->orig_to;
127
128         query_states[dns->s.id].valid = 1;
129         query_states[dns->s.id].client = client;
130         query_states[dns->s.id].local_ip = pkt->orig_from;
131         query_states[dns->s.id].local_port = pkt->src_port;
132
133         /* int r = */ GNUNET_NETWORK_socket_sendto(mycls.dnsout, dns, ntohs(pkt->hdr.size) - sizeof(struct query_packet) + 1, (struct sockaddr*) &dest, sizeof dest);
134
135 out:
136         GNUNET_SERVER_receive_done(client, GNUNET_OK);
137 }
138
139 size_t send_answer(void* cls, size_t size, void* buf) {
140         struct answer_packet_list* query = mycls.head;
141         size_t len = ntohs(query->pkt.hdr.size);
142
143         GNUNET_assert(len <= size);
144
145         memcpy(buf, &query->pkt.hdr, len);
146
147         GNUNET_CONTAINER_DLL_remove (mycls.head, mycls.tail, query);
148
149         GNUNET_free(query);
150
151         if (mycls.head != NULL) {
152                 GNUNET_SERVER_notify_transmit_ready(cls, ntohs(mycls.head->pkt.hdr.size), GNUNET_TIME_UNIT_FOREVER_REL, &send_answer, cls);
153         }
154
155         return len;
156 }
157
158 static void read_response (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) {
159         unsigned char buf[65536];
160         struct dns_pkt* dns = (struct dns_pkt*)buf;
161
162         if (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN)
163                 return;
164
165         struct sockaddr_in addr;
166         memset(&addr, 0, sizeof addr);
167         unsigned int addrlen = sizeof addr;
168
169         int r;
170         r = GNUNET_NETWORK_socket_recvfrom(mycls.dnsout, buf, 65536, (struct sockaddr*)&addr, &addrlen);
171
172         /* if (r < 0) TODO */
173
174         if (query_states[dns->s.id].valid == 1) {
175                 query_states[dns->s.id].valid = 0;
176
177                 size_t len = sizeof(struct answer_packet) + r - 1; /* 1 for the unsigned char data[1]; */
178                 struct answer_packet_list* answer = GNUNET_malloc(len + 2*sizeof(struct answer_packet_list*));
179                 answer->pkt.hdr.type = htons(GNUNET_MESSAGE_TYPE_LOCAL_RESPONSE_DNS);
180                 answer->pkt.hdr.size = htons(len);
181                 answer->pkt.from = addr.sin_addr.s_addr;
182                 answer->pkt.to = query_states[dns->s.id].local_ip;
183                 answer->pkt.dst_port = query_states[dns->s.id].local_port;
184                 memcpy(answer->pkt.data, buf, r);
185
186                 GNUNET_CONTAINER_DLL_insert_after(mycls.head, mycls.tail, mycls.tail, answer);
187
188                 /* struct GNUNET_CONNECTION_TransmitHandle* th = */ GNUNET_SERVER_notify_transmit_ready(query_states[dns->s.id].client, len, GNUNET_TIME_UNIT_FOREVER_REL, &send_answer, query_states[dns->s.id].client);
189         }
190
191         GNUNET_SCHEDULER_add_read_net(mycls.sched, GNUNET_TIME_UNIT_FOREVER_REL, mycls.dnsout, &read_response, NULL);
192 }
193
194
195 /**
196  * Task run during shutdown.
197  *
198  * @param cls unused
199  * @param tc unused
200  */
201 static void
202 cleanup_task (void *cls,
203               const struct GNUNET_SCHEDULER_TaskContext *tc)
204 {
205         unhijack(mycls.dnsoutport);
206         GNUNET_DHT_disconnect(mycls.dht);
207 }
208
209 static void
210 publish_name (void *cls,
211              const struct GNUNET_SCHEDULER_TaskContext *tc)
212 {
213   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
214     return;
215
216   char* name = "philipptoelke.gnunet.";
217   size_t size = sizeof(struct GNUNET_DNS_Record) + strlen(name);
218   struct GNUNET_DNS_Record *data = alloca(size);
219   memset(data, 0, size);
220   memcpy(data->name, name, strlen(name) + 1);
221   data->namelen = strlen(name) + 1;
222   *((unsigned int*)&data->service_descriptor) = 0x11223344;
223   *((unsigned int*)&data->peer) = 0x55667788;
224
225   GNUNET_HashCode key;
226   GNUNET_CRYPTO_hash(name, strlen(name)+1, &key);
227   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Putting with key %08x, len is %d\n", *((unsigned int*)&key), strlen(name));
228
229   GNUNET_DHT_put(mycls.dht,
230                       &key,
231                       GNUNET_DHT_RO_NONE,
232                       GNUNET_BLOCK_TYPE_DNS,
233                       size,
234                       (char*)data,
235                       GNUNET_TIME_relative_to_absolute(GNUNET_TIME_UNIT_HOURS),
236                       GNUNET_TIME_UNIT_MINUTES,
237                       NULL,
238                       NULL);
239
240   GNUNET_SCHEDULER_add_delayed (mycls.sched, GNUNET_TIME_UNIT_HOURS, publish_name, NULL);
241 }
242
243 /**
244  * @param cls closure
245  * @param sched scheduler to use
246  * @param server the initialized server
247  * @param cfg configuration to use
248  */
249 static void
250 run (void *cls,
251      struct GNUNET_SCHEDULER_Handle *sched,
252      struct GNUNET_SERVER_Handle *server,
253      const struct GNUNET_CONFIGURATION_Handle *cfg)
254 {
255   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
256           /* callback, cls, type, size */
257     {&receive_query, NULL, GNUNET_MESSAGE_TYPE_LOCAL_QUERY_DNS, 0},
258     {NULL, NULL, 0, 0}
259   };
260
261   {
262   int i;
263   for (i = 0; i < 65536; i++) {
264     query_states[i].valid = 0;
265   }
266   }
267
268   mycls.dht = GNUNET_DHT_connect(sched, cfg, 1024);
269
270   struct sockaddr_in addr;
271
272   mycls.sched = sched;
273   mycls.dnsout = GNUNET_NETWORK_socket_create (AF_INET, SOCK_DGRAM, 0);
274   if (mycls.dnsout == NULL) 
275     return;
276   memset(&addr, 0, sizeof(struct sockaddr_in));
277
278   int err = GNUNET_NETWORK_socket_bind (mycls.dnsout,
279                                         (struct sockaddr*)&addr, 
280                                         sizeof(struct sockaddr_in));
281
282   if (err != GNUNET_YES) {
283         GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Could not bind a port, exiting\n");
284         return;
285   }
286   socklen_t addrlen = sizeof(struct sockaddr_in);
287   err = getsockname(GNUNET_NETWORK_get_fd(mycls.dnsout),
288                     (struct sockaddr*) &addr, 
289                     &addrlen);
290
291   mycls.dnsoutport = htons(addr.sin_port);
292
293   hijack(htons(addr.sin_port));
294
295   GNUNET_SCHEDULER_add_now (mycls.sched, publish_name, NULL);
296
297         GNUNET_SCHEDULER_add_read_net(sched, GNUNET_TIME_UNIT_FOREVER_REL, mycls.dnsout, &read_response, NULL);
298
299   GNUNET_SERVER_add_handlers (server, handlers);
300   GNUNET_SCHEDULER_add_delayed (sched,
301                   GNUNET_TIME_UNIT_FOREVER_REL,
302                   &cleanup_task,
303                   cls);
304 }
305
306 /**
307  * The main function for the dns service.
308  *
309  * @param argc number of arguments from the command line
310  * @param argv command line arguments
311  * @return 0 ok, 1 on error
312  */
313 int
314 main (int argc, char *const *argv)
315 {
316   return (GNUNET_OK ==
317           GNUNET_SERVICE_run (argc,
318                               argv,
319                               "dns",
320                               GNUNET_SERVICE_OPTION_NONE,
321                               &run, NULL)) ? 0 : 1;
322 }