1e0326328314d4a1ef018edd0af5f64f279946e1
[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.gnunet"
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 static void
93 on_lookup_result(void *cls, uint32_t rd_count,
94                  const struct GNUNET_NAMESTORE_RecordData *rd)
95 {
96
97   struct in_addr a;
98   int i;
99   char* addr;
100
101   if (GNUNET_SCHEDULER_NO_TASK != die_task)
102   {
103       GNUNET_SCHEDULER_cancel (die_task);
104       die_task = GNUNET_SCHEDULER_NO_TASK;
105   }
106
107   GNUNET_NAMESTORE_disconnect (namestore_handle);
108   if (rd_count == 0)
109   {
110     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
111                 "Lookup failed, rp_filtering?\n");
112     ok = 2;
113   }
114   else
115   {
116     ok = 1;
117     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
118     for (i=0; i<rd_count; i++)
119     {
120       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
121       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
122       {
123         memcpy(&a, rd[i].data, sizeof(a));
124         addr = inet_ntoa(a);
125         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
126         if (0 == strcmp(addr, TEST_IP))
127         {
128           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
129                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
130           ok = 0;
131         }
132       }
133       else
134       {
135         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
136       }
137     }
138   }
139
140   GNUNET_GNS_disconnect(gns_handle);
141   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer!\n");
142   GNUNET_SCHEDULER_shutdown ();
143
144 }
145
146
147 /**
148  * Function scheduled to be run on the successful start of services
149  * tries to look up the dns record for TEST_DOMAIN
150  */
151 static void
152 commence_testing (void *cls, int32_t success, const char *emsg)
153 {
154   gns_handle = GNUNET_GNS_connect(cfg);
155   if (NULL == gns_handle)
156   {
157     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
158                 "Failed to connect to GNS!\n");
159     end_badly_now();
160     return;
161   }
162
163   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_A,
164                     GNUNET_YES,
165                     NULL,
166                     &on_lookup_result, TEST_DOMAIN);
167 }
168
169 static void
170 do_check (void *cls,
171           const struct GNUNET_CONFIGURATION_Handle *ccfg,
172           struct GNUNET_TESTING_Peer *peer)
173 {
174   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
175   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
176   struct GNUNET_NAMESTORE_RecordData rd;
177   char* alice_keyfile;
178   char* ip = TEST_IP;
179   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
180
181   cfg = ccfg;
182   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
183
184   /* put records into namestore */
185   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
186   if (NULL == namestore_handle)
187   {
188     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
189     GNUNET_free (web);
190     end_badly_now () ;
191     return;
192   }
193
194   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
195                                                           "ZONEKEY",
196                                                           &alice_keyfile))
197   {
198     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
199     GNUNET_free (web);
200     end_badly_now () ;
201     return;
202   }
203
204   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
205   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
206   GNUNET_free(alice_keyfile);
207
208
209   rd.expiration_time = UINT64_MAX;
210   GNUNET_assert (1 == inet_pton (AF_INET, ip, web));
211   rd.data_size = sizeof(struct in_addr);
212   rd.data = web;
213   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
214   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
215
216   GNUNET_NAMESTORE_record_create (namestore_handle,
217                                   alice_key,
218                                   TEST_RECORD_NAME,
219                                   &rd,
220                                   &commence_testing,
221                                   NULL);
222
223   GNUNET_CRYPTO_rsa_key_free(alice_key);
224   GNUNET_free(web);
225 }
226
227 int
228 main (int argc, char *argv[])
229 {
230   ok = 1;
231
232   GNUNET_log_setup ("test-gns-simple-lookup",
233 #if VERBOSE
234                     "DEBUG",
235 #else
236                     "WARNING",
237 #endif
238                     NULL);
239
240   GNUNET_TESTING_peer_run ("test-gns-simple-lookup", "test_gns_simple_lookup.conf", &do_check, NULL);
241
242   return ok;
243 }
244
245 /* end of test_gns_simple_lookup.c */