- removed add, other feedback
[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_gns_service.h"
32 #include "gns.h"
33
34
35 /* TODO into gnunet_protocols */
36 #define GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP 23
37 #define GNUNET_MESSAGE_TYPE_GNS_CLIENT_RESULT 24
38
39 /**
40  * Our handle to the DNS handler library
41  */
42 struct GNUNET_DNS_Handle *dns_handle;
43
44 /**
45  * The configuration the GNS service is running with
46  */
47 const struct GNUNET_CONFIGURATION_Handle *GNS_cfg;
48
49 /**
50  * Our notification context.
51  */
52 static struct GNUNET_SERVER_NotificationContext *nc;
53
54 /**
55  * Task run during shutdown.
56  *
57  * @param cls unused
58  * @param tc unused
59  */
60 static void
61 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
62 {
63   GNUNET_DNS_disconnect(dns_handle);
64 }
65
66 /**
67  * The DNS request handler
68  *
69  * @param cls closure
70  * @param rh request handle to user for reply
71  * @param request_length number of bytes in request
72  * @param request udp payload of the DNS request
73  */
74 void
75 handle_dns_request(void *cls,
76                    struct GNUNET_DNS_RequestHandle *rh,
77                    size_t request_length,
78                    const char *request)
79 {
80   /**
81    * TODO: parse request for tld
82    * Queue rh and gns handle (or use cls)
83    * How should lookup behave:
84    *  - sync and return result or "NX"
85    *  - async like dht with iter
86    *  Maybe provide both, useful for cli app
87    **/
88   struct GNUNET_DNSPARSER_Packet *p;
89   int namelen;
90   int i;
91   char *tail;
92   
93   p = GNUNET_DNSPARSER_parse (request, request_length);
94   if (NULL == p)
95   {
96     fprintf (stderr, "Received malformed DNS packet, leaving it untouched\n");
97     GNUNET_DNS_request_forward (rh);
98     return;
99   }
100   /**
101    * TODO factor out
102    * Check tld and decide if we or
103    * legacy dns is responsible
104    **/
105   for (i=0;i<p->num_queries;i++)
106   {
107     namelen = strlen(p->queries[i].name);
108     if (namelen >= 7)
109     {
110       /**
111        * TODO off by 1?
112        * Move our tld/root to config file
113        * Generate fake DNS reply that replaces .gnunet with .org
114        **/
115       tail = p->queries[i].name+(namelen-7);
116       if (0 == strcmp(tail, ".gnunet"))
117       {
118         /* Do db lookup here. Make dht lookup if necessary */
119         GNUNET_DNS_request_answer(rh, 0 /*length*/, NULL/*reply*/);
120       }
121       else
122       {
123         GNUNET_DNS_request_forward (rh);
124       }
125     }
126   }
127 }
128
129 /*TODO*/
130 static void
131 handle_client_record_lookup(void *cls,
132                             struct GNUNET_SERVER_Client *client,
133                             const struct GNUNET_MessageHeader *message)
134 {
135 }
136
137 /**
138  * Process GNS requests.
139  *
140  * @param cls closure
141  * @param server the initialized server
142  * @param c configuration to use
143  */
144 static void
145 run (void *cls, struct GNUNET_SERVER_Handle *server,
146      const struct GNUNET_CONFIGURATION_Handle *c)
147 {
148   /* The IPC message types */
149   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
150     /* callback, cls, type, size */
151     {&handle_client_record_lookup, NULL, GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP,
152       0},
153     {NULL, NULL, 0, 0}
154   };
155   
156   nc = GNUNET_SERVER_notification_context_create (server, 1);
157
158   /* TODO do some config parsing */
159
160   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
161                                 NULL);
162   /**
163    * Do gnunet dns init here
164    * */
165   dns_handle = GNUNET_DNS_connect(c,
166                                   GNUNET_DNS_FLAG_PRE_RESOLUTION,
167                                   &handle_dns_request, /* rh */
168                                   NULL); /* Closure */
169   GNUNET_SERVER_add_handlers (server, handlers);
170   /**
171    * Esp the lookup would require to keep track of the clients' context
172    * See dht.
173    * GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
174    **/
175 }
176
177
178 /**
179  * The main function for the GNS service.
180  *
181  * @param argc number of arguments from the command line
182  * @param argv command line arguments
183  * @return 0 ok, 1 on error
184  */
185 int
186 main (int argc, char *const *argv)
187 {
188   int ret;
189
190   ret =
191       (GNUNET_OK ==
192        GNUNET_SERVICE_run (argc, argv, "gns", GNUNET_SERVICE_OPTION_NONE, &run,
193                            NULL)) ? 0 : 1;
194   return ret;
195 }
196
197 /* end of gnunet-service-gns.c */