-licenses, dce, etc
[oweals/gnunet.git] / src / gns / test_gns_simple_lookup.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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  * @file gns/test_gns_simple_lookup.c
22  * @brief base testcase for testing a local GNS record lookup
23  *
24  */
25 #include "platform.h"
26 #include "gnunet_testing_lib-new.h"
27 #include "gnunet_core_service.h"
28 #include "block_dns.h"
29 #include "gnunet_signatures.h"
30 #include "gnunet_namestore_service.h"
31 #include "gnunet_dnsparser_lib.h"
32 #include "gnunet_gns_service.h"
33
34 /* DEFINES */
35 #define VERBOSE GNUNET_YES
36
37 /* Timeout for entire testcase */
38 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 20)
39
40 /* If number of peers not in config file, use this number */
41 #define DEFAULT_NUM_PEERS 2
42
43 /* test records to resolve */
44 #define TEST_DOMAIN "www.gads"
45 #define TEST_IP "127.0.0.1"
46 #define TEST_RECORD_NAME "www"
47
48 /* Globals */
49
50 /* Task handle to use to schedule test failure */
51 GNUNET_SCHEDULER_TaskIdentifier die_task;
52
53 /* Global return value (0 for success, anything else for failure) */
54 static int ok;
55
56 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
57
58 static struct GNUNET_GNS_Handle *gns_handle;
59
60 const struct GNUNET_CONFIGURATION_Handle *cfg;
61
62 /**
63  * Check if the get_handle is being used, if so stop the request.  Either
64  * way, schedule the end_badly_cont function which actually shuts down the
65  * test.
66  */
67 static void
68 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
69 {
70   if (NULL != gns_handle)
71   {
72     GNUNET_GNS_disconnect(gns_handle);
73     gns_handle = NULL;
74   }
75
76   if (NULL != namestore_handle)
77   {
78     GNUNET_NAMESTORE_disconnect (namestore_handle);
79     namestore_handle = NULL;
80   }
81   GNUNET_break (0);
82   GNUNET_SCHEDULER_shutdown ();
83   ok = 1;
84 }
85
86 void end_badly_now ()
87 {
88   GNUNET_SCHEDULER_cancel (die_task);
89   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
90 }
91
92
93 static void shutdown_task (void *cls,
94                            const struct GNUNET_SCHEDULER_TaskContext *tc)
95 {
96   GNUNET_GNS_disconnect(gns_handle);
97   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer!\n");
98   GNUNET_SCHEDULER_shutdown ();
99 }
100
101
102 static void
103 on_lookup_result(void *cls, uint32_t rd_count,
104                  const struct GNUNET_NAMESTORE_RecordData *rd)
105 {
106
107   struct in_addr a;
108   int i;
109   char* addr;
110
111   if (GNUNET_SCHEDULER_NO_TASK != die_task)
112   {
113       GNUNET_SCHEDULER_cancel (die_task);
114       die_task = GNUNET_SCHEDULER_NO_TASK;
115   }
116
117   GNUNET_NAMESTORE_disconnect (namestore_handle);
118   if (rd_count == 0)
119   {
120     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
121                 "Lookup failed, rp_filtering?\n");
122     ok = 2;
123   }
124   else
125   {
126     ok = 1;
127     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
128     for (i=0; i<rd_count; i++)
129     {
130       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
131       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
132       {
133         memcpy(&a, rd[i].data, sizeof(a));
134         addr = inet_ntoa(a);
135         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
136         if (0 == strcmp(addr, TEST_IP))
137         {
138           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
139                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
140           ok = 0;
141         }
142       }
143       else
144       {
145         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
146       }
147     }
148   }
149
150   GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
151 }
152
153
154 /**
155  * Function scheduled to be run on the successful start of services
156  * tries to look up the dns record for TEST_DOMAIN
157  */
158 static void
159 commence_testing (void *cls, int32_t success, const char *emsg)
160 {
161   gns_handle = GNUNET_GNS_connect(cfg);
162   if (NULL == gns_handle)
163   {
164     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
165                 "Failed to connect to GNS!\n");
166     end_badly_now();
167     return;
168   }
169
170   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_A,
171                     GNUNET_YES,
172                     NULL,
173                     &on_lookup_result, TEST_DOMAIN);
174 }
175
176 static void
177 do_check (void *cls,
178           const struct GNUNET_CONFIGURATION_Handle *ccfg,
179           struct GNUNET_TESTING_Peer *peer)
180 {
181   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
182   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
183   struct GNUNET_NAMESTORE_RecordData rd;
184   char* alice_keyfile;
185   char* ip = TEST_IP;
186   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
187
188   cfg = ccfg;
189   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
190
191   /* put records into namestore */
192   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
193   if (NULL == namestore_handle)
194   {
195     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
196     GNUNET_free (web);
197     end_badly_now () ;
198     return;
199   }
200
201   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
202                                                           "ZONEKEY",
203                                                           &alice_keyfile))
204   {
205     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
206     GNUNET_free (web);
207     end_badly_now () ;
208     return;
209   }
210
211   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
212   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
213   GNUNET_free(alice_keyfile);
214
215
216   rd.expiration_time = UINT64_MAX;
217   GNUNET_assert (1 == inet_pton (AF_INET, ip, web));
218   rd.data_size = sizeof(struct in_addr);
219   rd.data = web;
220   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
221   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
222
223   GNUNET_NAMESTORE_record_create (namestore_handle,
224                                   alice_key,
225                                   TEST_RECORD_NAME,
226                                   &rd,
227                                   &commence_testing,
228                                   NULL);
229
230   GNUNET_CRYPTO_rsa_key_free(alice_key);
231   GNUNET_free(web);
232 }
233
234 int
235 main (int argc, char *argv[])
236 {
237   ok = 1;
238
239   GNUNET_log_setup ("test-gns-simple-lookup",
240 #if VERBOSE
241                     "DEBUG",
242 #else
243                     "WARNING",
244 #endif
245                     NULL);
246
247   GNUNET_TESTING_peer_run ("test-gns-simple-lookup", "test_gns_simple_lookup.conf", &do_check, NULL);
248
249   return ok;
250 }
251
252 /* end of test_gns_simple_lookup.c */