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