namestore stub 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_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  * Is this supposed to happen here in the service (config option)
69  * or in an app that interfaces with the GNS API?
70  *
71  * @param cls closure
72  * @param rh request handle to user for reply
73  * @param request_length number of bytes in request
74  * @param request udp payload of the DNS request
75  */
76 void
77 handle_dns_request(void *cls,
78                    struct GNUNET_DNS_RequestHandle *rh,
79                    size_t request_length,
80                    const char *request)
81 {
82   /**
83    * parse request for tld
84    **/
85   struct GNUNET_DNSPARSER_Packet *p;
86   int namelen;
87   int i;
88   char *tail;
89   
90   p = GNUNET_DNSPARSER_parse (request, request_length);
91   if (NULL == p)
92   {
93     fprintf (stderr, "Received malformed DNS packet, leaving it untouched\n");
94     GNUNET_DNS_request_forward (rh);
95     return;
96   }
97   /**
98    * FIXME factor out
99    * Check tld and decide if we or
100    * legacy dns is responsible
101    **/
102   for (i=0;i<p->num_queries;i++)
103   {
104     namelen = strlen(p->queries[i].name);
105     if (namelen >= 7)
106     {
107       /**
108        * FIXME off by 1?
109        * Move our tld/root to config file
110        * Generate fake DNS reply that replaces .gnunet with .org
111        **/
112       tail = p->queries[i].name+(namelen-7);
113       if (0 == strcmp(tail, ".gnunet"))
114       {
115         /* Do db lookup here. Make dht lookup if necessary */
116         GNUNET_DNS_request_answer(rh, 0 /*length*/, NULL/*reply*/);
117       }
118       else
119       {
120         GNUNET_DNS_request_forward (rh);
121       }
122     }
123   }
124 }
125
126 /*TODO*/
127 static void
128 handle_client_record_lookup(void *cls,
129                             struct GNUNET_SERVER_Client *client,
130                             const struct GNUNET_MessageHeader *message)
131 {
132 }
133
134 /**
135  * Process GNS requests.
136  *
137  * @param cls closure
138  * @param server the initialized server
139  * @param c configuration to use
140  */
141 static void
142 run (void *cls, struct GNUNET_SERVER_Handle *server,
143      const struct GNUNET_CONFIGURATION_Handle *c)
144 {
145   /* The IPC message types */
146   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
147     /* callback, cls, type, size */
148     {&handle_client_record_lookup, NULL, GNUNET_MESSAGE_TYPE_GNS_CLIENT_LOOKUP,
149       0},
150     {NULL, NULL, 0, 0}
151   };
152   
153   nc = GNUNET_SERVER_notification_context_create (server, 1);
154
155   /* TODO do some config parsing */
156
157   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
158                                 NULL);
159   /**
160    * Do gnunet dns init here
161    * */
162   dns_handle = GNUNET_DNS_connect(c,
163                                   GNUNET_DNS_FLAG_PRE_RESOLUTION,
164                                   &handle_dns_request, /* rh */
165                                   NULL); /* Closure */
166   GNUNET_SERVER_add_handlers (server, handlers);
167   /**
168    * Esp the lookup would require to keep track of the clients' context
169    * See dht.
170    * GNUNET_SERVER_disconnect_notify (server, &client_disconnect, NULL);
171    **/
172 }
173
174
175 /**
176  * The main function for the GNS service.
177  *
178  * @param argc number of arguments from the command line
179  * @param argv command line arguments
180  * @return 0 ok, 1 on error
181  */
182 int
183 main (int argc, char *const *argv)
184 {
185   int ret;
186
187   ret =
188       (GNUNET_OK ==
189        GNUNET_SERVICE_run (argc, argv, "gns", GNUNET_SERVICE_OPTION_NONE, &run,
190                            NULL)) ? 0 : 1;
191   return ret;
192 }
193
194 /* end of gnunet-service-gns.c */