-gns service with dns/namestore api added
[oweals/gnunet.git] / src / gns / gnunet-service-gns.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 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 gns/gnunet-service-gns.c
23  * @brief GNUnet GNS service
24  * @author Martin Schanzenbach
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_transport_service.h"
29 #include "gnunet_dns_service.h"
30 #include "gnunet_dnsparser_lib.h"
31 #include "gnunet_namestore_service.h"
32 #include "gnunet_gns_service.h"
33 #include "gns.h"
34
35
36 /* TODO into gnunet_protocols */
37 #define GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP 23
38 #define GNUNET_MESSAGE_TYPE_GNS_CLIENT_RESULT 24
39
40 /**
41  * A result list for namestore queries
42  */
43 struct GNUNET_GNS_PendingQuery
44 {
45   /* the answer packet */
46   struct GNUNET_DNSPARSER_Packet *answer;
47
48   /* records to put into answer packet */
49   struct GNUNET_CONTAINER_SList *records;
50
51   int num_records;
52   int num_authority_records; //FIXME are all of our replies auth?
53   
54   /* the dns request id */
55   int id; // FIXME can handle->request_id also be used here?
56
57   /* the request handle to reply to */
58   struct GNUNET_DNS_RequestHandle *request_handle;
59 };
60
61
62 /**
63  * Our handle to the DNS handler library
64  */
65 struct GNUNET_DNS_Handle *dns_handle;
66
67 /**
68  * Our handle to the namestore service
69  */
70 struct GNUNET_NAMESTORE_Handle *namestore_handle;
71
72 /**
73  * The configuration the GNS service is running with
74  */
75 const struct GNUNET_CONFIGURATION_Handle *GNS_cfg;
76
77 /**
78  * Our notification context.
79  */
80 static struct GNUNET_SERVER_NotificationContext *nc;
81
82 /**
83  * Our zone hash
84  */
85 const GNUNET_HashCode *my_zone;
86
87 /**
88  * Task run during shutdown.
89  *
90  * @param cls unused
91  * @param tc unused
92  */
93 static void
94 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
95 {
96   GNUNET_DNS_disconnect(dns_handle);
97 }
98
99 static void
100 process_ns_result(void* cls, const GNUNET_HashCode *zone,
101                   const char *name, uint32_t record_type,
102                   struct GNUNET_TIME_Absolute expiration,
103                   enum GNUNET_NAMESTORE_RecordFlags flags,
104                   const struct GNUNET_NAMESTORE_SignatureLocation *sig_loc,
105                   size_t size, const void *data)
106 {
107   struct GNUNET_GNS_PendingQuery *answer;
108   struct GNUNET_DNSPARSER_Record *record;
109   struct GNUNET_DNSPARSER_Packet *packet;
110   struct GNUNET_DNSPARSER_Flags dnsflags;
111   char *reply_buffer;
112   
113   answer = (struct GNUNET_GNS_PendingQuery *) cls;
114
115
116   if (NULL == data)
117   {
118     /**
119      * Last result received (or none)
120      * FIXME extract to func
121      */
122     reply_buffer = GNUNET_malloc(6000); //FIXME magic number
123     packet = GNUNET_malloc(sizeof(struct GNUNET_DNSPARSER_Packet));
124     packet->answers =
125       GNUNET_malloc(sizeof(struct GNUNET_DNSPARSER_Record) * answer->num_records);
126     /* FIXME how to handle auth, additional etc */
127     packet->num_answers = answer->num_records;
128     packet->num_authority_records = answer->num_authority_records;
129     
130     dnsflags.authoritative_answer = 1;
131     dnsflags.return_code = GNUNET_DNSPARSER_RETURN_CODE_YXDOMAIN; //not sure
132     dnsflags.query_or_response = 1;
133     packet->flags = dnsflags;
134
135     packet->id = answer->id;
136     size_t bufsize = 6000;
137     int ret = GNUNET_DNSPARSER_pack (packet,
138                            600, /* FIXME max udp payload */
139                            &reply_buffer,
140                            &bufsize); // FIXME magic number bufsize
141     if (ret == GNUNET_OK)
142     {
143       GNUNET_DNS_request_answer(answer->request_handle,
144                                 6000, //FIXME what length here
145                                 reply_buffer);
146     }
147     else
148     {
149       //FIXME log
150     }
151   }
152   else
153   {
154     /**
155      * New result
156      */
157     record = GNUNET_malloc(sizeof(struct GNUNET_DNSPARSER_Record));
158     record->name = (char*)name;
159     /* FIXME for gns records this requires the dnsparser to be modified!*/
160     //record->data = data; FIXME!
161     record->expiration_time = expiration;
162     record->type = record_type;
163     record->class = GNUNET_DNSPARSER_CLASS_INTERNET; /* srsly? */
164     
165     if (flags == GNUNET_NAMESTORE_RF_AUTHORITY)
166     {
167       answer->num_authority_records++;
168     }
169     
170     answer->num_records++;
171     
172     //FIXME watch for leaks
173     GNUNET_CONTAINER_slist_add (answer->records,
174                                 GNUNET_CONTAINER_SLIST_DISPOSITION_DYNAMIC,
175                                 &record, sizeof(struct GNUNET_DNSPARSER_Record*));
176   }
177 }
178
179
180 /**
181  * The DNS request handler
182  * Is this supposed to happen here in the service (config option)
183  * or in an app that interfaces with the GNS API?
184  *
185  * @param cls closure
186  * @param rh request handle to user for reply
187  * @param request_length number of bytes in request
188  * @param request udp payload of the DNS request
189  */
190 void
191 handle_dns_request(void *cls,
192                    struct GNUNET_DNS_RequestHandle *rh,
193                    size_t request_length,
194                    const char *request)
195 {
196   /**
197    * parse request for tld
198    */
199   struct GNUNET_DNSPARSER_Packet *p;
200   struct GNUNET_GNS_PendingQuery *answer;
201   int namelen;
202   int i;
203   char *tail;
204   
205   p = GNUNET_DNSPARSER_parse (request, request_length);
206   if (NULL == p)
207   {
208     fprintf (stderr, "Received malformed DNS packet, leaving it untouched\n");
209     GNUNET_DNS_request_forward (rh);
210     return;
211   }
212   /**
213    * FIXME factor out
214    * Check tld and decide if we or
215    * legacy dns is responsible
216    */
217   for (i=0;i<p->num_queries;i++)
218   {
219     namelen = strlen(p->queries[i].name);
220     
221     if (namelen < 7) /* this can't be .gnunet */
222       continue;
223     /**
224      * FIXME off by 1?
225      * Move our tld/root to config file
226      * Generate fake DNS reply that replaces .gnunet with .org for testing?
227      */
228     tail = p->queries[i].name+(namelen-7);
229     if (0 == strcmp(tail, ".gnunet"))
230     {
231       /**
232        * Do db lookup here. Make dht lookup if necessary 
233        * FIXME for now only local lookups for our zone!
234        */
235       answer = GNUNET_malloc(sizeof (struct GNUNET_GNS_PendingQuery));
236       answer->records = GNUNET_CONTAINER_slist_create ();
237       answer->id = p->id;
238
239       GNUNET_NAMESTORE_lookup_name(namestore_handle,
240                                    my_zone,
241                                    p->queries[i].name,
242                                    p->queries[i].type,
243                                    &process_ns_result,
244                                    answer);
245       //GNUNET_DNS_request_answer(rh, 0 /*length*/, NULL/*reply*/);
246     }
247     else
248     {
249       GNUNET_DNS_request_forward (rh);
250     }
251   }
252 }
253
254 /*TODO*/
255 static void
256 handle_client_record_lookup(void *cls,
257                             struct GNUNET_SERVER_Client *client,
258                             const struct GNUNET_MessageHeader *message)
259 {
260 }
261
262 /**
263  * Process GNS requests.
264  *
265  * @param cls closure
266  * @param server the initialized server
267  * @param c configuration to use
268  */
269 static void
270 run (void *cls, struct GNUNET_SERVER_Handle *server,
271      const struct GNUNET_CONFIGURATION_Handle *c)
272 {
273   /* The IPC message types */
274   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
275     /* callback, cls, type, size */
276     {&handle_client_record_lookup, NULL, GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP,
277       0},
278     {NULL, NULL, 0, 0}
279   };
280   
281   nc = GNUNET_SERVER_notification_context_create (server, 1);
282
283   /* FIXME - do some config parsing 
284    *       - Maybe only hijack dns if option is set (HIJACK_DNS=1)
285    */
286
287   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
288                                 NULL);
289   /**
290    * Do gnunet dns init here
291    */
292   dns_handle = GNUNET_DNS_connect(c,
293                                   GNUNET_DNS_FLAG_PRE_RESOLUTION,
294                                   &handle_dns_request, /* rh */
295                                   NULL); /* Closure */
296
297   /**
298    * handle to our local namestore
299    */
300   namestore_handle = GNUNET_NAMESTORE_connect(c);
301
302   GNUNET_SERVER_add_handlers (server, handlers);
303   /**
304    * Esp the lookup would require to keep track of the clients' context
305    * See dht.
306    * GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
307    **/
308 }
309
310
311 /**
312  * The main function for the GNS service.
313  *
314  * @param argc number of arguments from the command line
315  * @param argv command line arguments
316  * @return 0 ok, 1 on error
317  */
318 int
319 main (int argc, char *const *argv)
320 {
321   int ret;
322
323   ret =
324       (GNUNET_OK ==
325        GNUNET_SERVICE_run (argc, argv, "gns", GNUNET_SERVICE_OPTION_NONE, &run,
326                            NULL)) ? 0 : 1;
327   return ret;
328 }
329
330 /* end of gnunet-service-gns.c */