- commit after up, ty!
[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 /*TODO*/
138 static void
139 handle_client_record_add(void *cls,
140                          struct GNUNET_SERVER_Client *client,
141                          const struct GNUNET_MessageHeader *message)
142 {
143 }
144
145 /**
146  * Process GNS requests.
147  *
148  * @param cls closure
149  * @param server the initialized server
150  * @param c configuration to use
151  */
152 static void
153 run (void *cls, struct GNUNET_SERVER_Handle *server,
154      const struct GNUNET_CONFIGURATION_Handle *c)
155 {
156   /* The IPC message types */
157   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
158     /* callback, cls, type, size */
159     {&handle_client_record_lookup, NULL, GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP,
160       0},
161     /*{&handle_client_record_add, NULL, GNUNET_MESSAGE_TYPE_GNS_CLIENT_ADD,
162       0},*/
163     {NULL, NULL, 0, 0}
164   };
165   
166   nc = GNUNET_SERVER_notification_context_create (server, 1);
167
168   /* TODO do some config parsing */
169
170   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
171                                 NULL);
172   /**
173    * Do gnunet dns init here
174    * */
175   dns_handle = GNUNET_DNS_connect(c,
176                                   GNUNET_DNS_FLAG_PRE_RESOLUTION,
177                                   &handle_dns_request, /* rh */
178                                   NULL); /* Closure */
179   GNUNET_SERVER_add_handlers (server, handlers);
180   /**
181    * Esp the lookup would require to keep track of the clients' context
182    * See dht.
183    * GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
184    **/
185 }
186
187
188 /**
189  * The main function for the GNS service.
190  *
191  * @param argc number of arguments from the command line
192  * @param argv command line arguments
193  * @return 0 ok, 1 on error
194  */
195 int
196 main (int argc, char *const *argv)
197 {
198   int ret;
199
200   ret =
201       (GNUNET_OK ==
202        GNUNET_SERVICE_run (argc, argv, "gns", GNUNET_SERVICE_OPTION_NONE, &run,
203                            NULL)) ? 0 : 1;
204   return ret;
205 }
206
207 /* end of gnunet-service-gns.c */