-fixed record flags in tests. proper expiration from NS missing
[oweals/gnunet.git] / src / gns / test_gns_pseu_shorten.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_pseu_shorten.c
22  * @brief base testcase for testing on the fly pseu import and shorten
23  *
24  */
25 #include "platform.h"
26 #include "gnunet_testing_lib.h"
27 #include "gnunet_core_service.h"
28 #include "block_gns.h"
29 #include "gnunet_signatures.h"
30 #include "gnunet_namestore_service.h"
31 #include "../namestore/namestore.h"
32 #include "gnunet_dnsparser_lib.h"
33 #include "gnunet_dht_service.h"
34 #include "gnunet_gns_service.h"
35
36 /* DEFINES */
37 #define VERBOSE GNUNET_YES
38
39 /* Timeout for entire testcase */
40 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 5)
41
42 /* If number of peers not in config file, use this number */
43 #define DEFAULT_NUM_PEERS 2
44
45 /* test records to resolve */
46 #define TEST_DOMAIN "www.alicewonderland.bobbuilder.gnunet"
47 #define TEST_IP "127.0.0.1"
48 #define TEST_RECORD_NAME "www"
49
50 #define TEST_PRIVATE_ZONE "private"
51 #define TEST_SHORTEN_ZONE "short"
52 #define TEST_AUTHORITY_BOB "bobbuilder"
53 #define TEST_AUTHORITY_ALICE "alicewonderland"
54 #define TEST_PSEU_ALICE "carol"
55 #define TEST_EXPECTED_RESULT "www.carol.short.private.gnunet"
56
57 #define DHT_OPERATION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
58
59 #define KEYFILE_SHORTEN = "zonefiles/188JSUMKEF25GVU8TTV0PBNNN8JVCPUEDFV1UHJJU884JD25V0T0.zkey"
60 #define KEYFILE_PRIVATE = "zonefiles/OEFL7A4VEF1B40QLEMTG5D8G1CN6EN16QUSG5R2DT71GRJN34LSG.zkey"
61 #define KEYFILE_BOB "../namestore/zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey"
62 #define KEYFILE_ALICE "../namestore/zonefiles/N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey"
63
64 /* Globals */
65
66 /**
67  * Directory to store temp data in, defined in config file
68  */
69 static char *test_directory;
70
71 static struct GNUNET_TESTING_PeerGroup *pg;
72
73 /* Task handle to use to schedule test failure */
74 static GNUNET_SCHEDULER_TaskIdentifier die_task;
75
76 static GNUNET_SCHEDULER_TaskIdentifier disco_task;
77
78 /* Global return value (0 for success, anything else for failure) */
79 static int ok;
80
81 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
82
83 static struct GNUNET_GNS_Handle *gns_handle;
84
85 static struct GNUNET_DHT_Handle *dht_handle;
86
87 const struct GNUNET_CONFIGURATION_Handle *cfg;
88
89 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
90 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
91 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded our_pkey;
92 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded priv_pkey;
93 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded short_pkey;
94 struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
95 struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
96 struct GNUNET_CRYPTO_RsaPrivateKey *our_key;
97 struct GNUNET_CRYPTO_RsaPrivateKey *priv_key;
98 struct GNUNET_CRYPTO_RsaPrivateKey *short_key;
99 struct GNUNET_CRYPTO_ShortHashCode alice_hash;
100 struct GNUNET_CRYPTO_ShortHashCode bob_hash;
101 struct GNUNET_CRYPTO_ShortHashCode our_zone;
102 struct GNUNET_CRYPTO_ShortHashCode priv_zone;
103 struct GNUNET_CRYPTO_ShortHashCode short_zone;
104
105 /**
106  * Check whether peers successfully shut down.
107  */
108 void
109 shutdown_callback (void *cls, const char *emsg)
110 {
111   if (disco_task != GNUNET_SCHEDULER_NO_TASK)
112   {
113     disco_task = GNUNET_SCHEDULER_NO_TASK;
114     GNUNET_SCHEDULER_cancel(disco_task);
115     GNUNET_DHT_disconnect(dht_handle);
116     dht_handle = NULL;
117   }
118
119   if (emsg != NULL)
120   {
121     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
122     if (ok == 0)
123       ok = 2;
124   }
125
126   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
127 }
128
129 static void
130 disco_dht(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
131 {
132   disco_task = GNUNET_SCHEDULER_NO_TASK;
133   GNUNET_DHT_disconnect(dht_handle);
134   dht_handle = NULL;
135 }
136
137 /**
138  * Called when gns shorten finishes
139  */
140 static void
141 process_shorten_result(void* cls, const char* sname)
142 {
143   GNUNET_GNS_disconnect(gns_handle);
144   //GNUNET_SCHEDULER_add_now(disco_dht, NULL);
145   ok = 0;
146
147   if (sname == NULL)
148   {
149     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
150                 "shorten test failed!\n");
151     ok = 1;
152   }
153   else
154   {
155     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
156                 "%s shortened to %s\n", (char*)cls, sname);
157     if (0 != strcmp(sname, TEST_EXPECTED_RESULT))
158     {
159       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
160                   "shorten test failed! (wanted: %s got: %s\n",
161                   (char*)cls, sname);
162       ok = 1;
163     }
164
165     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shorten test succeeded!\n");
166   }
167
168   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
169   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
170 }
171
172 static void
173 do_shorten(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
174 {
175   GNUNET_GNS_shorten_zone (gns_handle, TEST_DOMAIN,
176                      &our_zone,
177                      &process_shorten_result,
178                      TEST_DOMAIN);
179 }
180
181 static void
182 on_lookup_result(void *cls, uint32_t rd_count,
183                  const struct GNUNET_NAMESTORE_RecordData *rd)
184 {
185   struct in_addr a;
186   int i;
187   char* addr;
188   
189   if (rd_count == 0)
190   {
191     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
192                 "Lookup failed, rp_filtering?\n");
193     ok = 2;
194   }
195   else
196   {
197     ok = 1;
198     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
199     for (i=0; i<rd_count; i++)
200     {
201       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
202       if (rd[i].record_type == GNUNET_GNS_RECORD_TYPE_A)
203       {
204         memcpy(&a, rd[i].data, sizeof(a));
205         addr = inet_ntoa(a);
206         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
207         if (0 == strcmp(addr, TEST_IP))
208         {
209           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
210                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
211           ok = 0;
212         }
213       }
214       else
215       {
216         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
217       }
218     }
219   }
220   
221   GNUNET_SCHEDULER_add_delayed (TIMEOUT, &do_shorten, NULL);
222 }
223
224
225 /**
226  * Function scheduled to be run on the successful start of services
227  * tries to look up the dns record for TEST_DOMAIN
228  */
229 static void
230 commence_testing (void *cls, int success)
231 {
232   GNUNET_SCHEDULER_add_now(disco_dht, NULL);
233   //GNUNET_DHT_disconnect(dht_handle);
234
235   GNUNET_CRYPTO_rsa_key_free(our_key);
236   GNUNET_CRYPTO_rsa_key_free(bob_key);
237   GNUNET_CRYPTO_rsa_key_free(alice_key);
238
239   gns_handle = GNUNET_GNS_connect(cfg);
240
241   if (NULL == gns_handle)
242   {
243     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
244                 "Failed to connect to GNS!\n");
245   }
246
247   GNUNET_GNS_lookup_zone (gns_handle, TEST_DOMAIN,
248                           &our_zone,
249                           GNUNET_GNS_RECORD_TYPE_A,
250                           GNUNET_NO,
251                           short_key,
252                           &on_lookup_result, TEST_DOMAIN);
253 }
254
255 /**
256  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
257  * down the peers without freeing memory associated with GET request.
258  */
259 static void
260 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
261 {
262   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
263               (char *) cls);
264   ok = 1;
265   
266   if (disco_task != GNUNET_SCHEDULER_NO_TASK)
267   {
268     disco_task = GNUNET_SCHEDULER_NO_TASK;
269     GNUNET_SCHEDULER_cancel(disco_task);
270     GNUNET_DHT_disconnect(dht_handle);
271     dht_handle = NULL;
272   }
273   if (pg != NULL)
274     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
275   GNUNET_SCHEDULER_cancel (die_task);
276 }
277
278 static void
279 put_pseu_dht(void *cls, int success)
280 {
281   struct GNSNameRecordBlock *nrb;
282   struct GNUNET_CRYPTO_ShortHashCode name_hash;
283   struct GNUNET_CRYPTO_ShortHashCode zone_hash;
284   struct GNUNET_HashCode xor_hash;
285   struct GNUNET_HashCode name_hash_double;
286   struct GNUNET_HashCode zone_hash_double;
287   uint32_t rd_payload_length;
288   char* nrb_data = NULL;
289   struct GNUNET_CRYPTO_RsaSignature *sig;
290   struct GNUNET_NAMESTORE_RecordData rd;
291   
292   rd.expiration_time = UINT64_MAX;
293   rd.data_size = strlen(TEST_PSEU_ALICE)+1;
294   rd.data = TEST_PSEU_ALICE;
295   rd.record_type = GNUNET_GNS_RECORD_PSEU;
296   rd.flags = 0;
297
298   sig = GNUNET_NAMESTORE_create_signature(alice_key,
299                                           GNUNET_TIME_UNIT_FOREVER_ABS,
300                                           "+",
301                                           &rd, 1);
302   rd_payload_length = GNUNET_NAMESTORE_records_get_size (1, &rd);
303   nrb = GNUNET_malloc(rd_payload_length + strlen("+") + 1
304                       + sizeof(struct GNSNameRecordBlock));
305   nrb->signature = *sig;
306   nrb->public_key = alice_pkey;
307   nrb->rd_count = htonl(1);
308   memset(&nrb[1], 0, strlen("+") + 1);
309   strcpy((char*)&nrb[1], "+");
310   nrb_data = (char*)&nrb[1];
311   nrb_data += strlen("+") + 1;
312
313   if (-1 == GNUNET_NAMESTORE_records_serialize (1,
314                                                 &rd,
315                                                 rd_payload_length,
316                                                 nrb_data))
317   {
318     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
319     ok = 3;
320     GNUNET_DHT_disconnect(dht_handle);
321     
322     
323     GNUNET_CRYPTO_rsa_key_free(our_key);
324     GNUNET_CRYPTO_rsa_key_free(bob_key);
325     GNUNET_CRYPTO_rsa_key_free(alice_key);
326     GNUNET_free(sig);
327     GNUNET_free (nrb);
328     return;
329   }
330   GNUNET_CRYPTO_short_hash("+", strlen("+"), &name_hash);
331   GNUNET_CRYPTO_short_hash(&alice_pkey,
332                      sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
333                      &zone_hash);
334
335   GNUNET_CRYPTO_short_hash_double(&name_hash, &name_hash_double);
336   GNUNET_CRYPTO_short_hash_double(&zone_hash, &zone_hash_double);
337   GNUNET_CRYPTO_hash_xor(&zone_hash_double, &name_hash_double, &xor_hash);
338
339   rd_payload_length += sizeof(struct GNSNameRecordBlock) +
340     strlen("+") + 1;
341
342   GNUNET_DHT_put (dht_handle, &xor_hash,
343                   0,
344                   GNUNET_DHT_RO_NONE,
345                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
346                   rd_payload_length,
347                   (char*)nrb,
348                   GNUNET_TIME_UNIT_FOREVER_ABS,
349                   DHT_OPERATION_TIMEOUT,
350                   &commence_testing,
351                   NULL);
352   
353   GNUNET_free(sig);
354   GNUNET_free (nrb);
355 }
356
357 static void
358 put_www_dht(void *cls, int success)
359 {
360   struct GNSNameRecordBlock *nrb;
361   struct GNUNET_CRYPTO_ShortHashCode name_hash;
362   struct GNUNET_CRYPTO_ShortHashCode zone_hash;
363   struct GNUNET_HashCode xor_hash;
364   struct GNUNET_HashCode name_hash_double;
365   struct GNUNET_HashCode zone_hash_double;
366   uint32_t rd_payload_length;
367   char* nrb_data = NULL;
368   struct GNUNET_CRYPTO_RsaSignature *sig;
369   struct GNUNET_NAMESTORE_RecordData rd;
370   char* ip = TEST_IP;
371   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
372   
373   rd.expiration_time = UINT64_MAX;
374   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
375   rd.data_size = sizeof(struct in_addr);
376   rd.data = web;
377   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
378   rd.flags = 0;
379   
380   sig = GNUNET_NAMESTORE_create_signature(alice_key,
381                                           GNUNET_TIME_UNIT_FOREVER_ABS,
382                                           TEST_RECORD_NAME,
383                                           &rd, 1);
384   rd_payload_length = GNUNET_NAMESTORE_records_get_size (1, &rd);
385   nrb = GNUNET_malloc(rd_payload_length + strlen(TEST_RECORD_NAME) + 1
386                       + sizeof(struct GNSNameRecordBlock));
387   nrb->signature = *sig;
388   nrb->public_key = alice_pkey;
389   nrb->rd_count = htonl(1);
390   memset(&nrb[1], 0, strlen(TEST_RECORD_NAME) + 1);
391   strcpy((char*)&nrb[1], TEST_RECORD_NAME);
392   nrb_data = (char*)&nrb[1];
393   nrb_data += strlen(TEST_RECORD_NAME) + 1;
394
395   if (-1 == GNUNET_NAMESTORE_records_serialize (1,
396                                                 &rd,
397                                                 rd_payload_length,
398                                                 nrb_data))
399   {
400     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
401     ok = 3;
402     GNUNET_DHT_disconnect(dht_handle);
403     
404     GNUNET_CRYPTO_rsa_key_free(our_key);
405     GNUNET_CRYPTO_rsa_key_free(bob_key);
406     GNUNET_CRYPTO_rsa_key_free(alice_key);
407     GNUNET_free(web);
408     GNUNET_free (nrb);
409     return;
410   }
411   GNUNET_CRYPTO_short_hash(TEST_RECORD_NAME, strlen(TEST_RECORD_NAME), &name_hash);
412   GNUNET_CRYPTO_short_hash(&alice_pkey,
413                      sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
414                      &zone_hash);
415   GNUNET_CRYPTO_short_hash_double(&zone_hash, &zone_hash_double);
416   GNUNET_CRYPTO_short_hash_double(&name_hash, &name_hash_double);
417   GNUNET_CRYPTO_hash_xor(&zone_hash_double, &name_hash_double, &xor_hash);
418
419   rd_payload_length += sizeof(struct GNSNameRecordBlock) +
420     strlen(TEST_RECORD_NAME) + 1;
421
422   GNUNET_DHT_put (dht_handle, &xor_hash,
423                   0,
424                   GNUNET_DHT_RO_NONE,
425                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
426                   rd_payload_length,
427                   (char*)nrb,
428                   GNUNET_TIME_UNIT_FOREVER_ABS,
429                   DHT_OPERATION_TIMEOUT,
430                   &put_pseu_dht,
431                   NULL);
432
433   GNUNET_free(web);
434   GNUNET_free (nrb);
435 }
436
437
438 static void
439 put_pkey_dht(void *cls, int32_t success, const char *emsg)
440 {
441   struct GNSNameRecordBlock *nrb;
442   struct GNUNET_CRYPTO_ShortHashCode name_hash;
443   struct GNUNET_CRYPTO_ShortHashCode zone_hash;
444   struct GNUNET_HashCode xor_hash;
445   struct GNUNET_HashCode name_hash_double;
446   struct GNUNET_HashCode zone_hash_double;
447   uint32_t rd_payload_length;
448   char* nrb_data = NULL;
449   struct GNUNET_CRYPTO_RsaSignature *sig;
450   struct GNUNET_NAMESTORE_RecordData rd;
451   
452   rd.expiration_time = UINT64_MAX;
453   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
454   rd.data = &alice_hash;
455   rd.record_type = GNUNET_GNS_RECORD_PKEY;
456   rd.flags = 0;
457   
458   sig = GNUNET_NAMESTORE_create_signature(bob_key,
459                                           GNUNET_TIME_UNIT_FOREVER_ABS,
460                                           TEST_AUTHORITY_ALICE,
461                                           &rd,
462                                           1);
463
464   rd_payload_length = GNUNET_NAMESTORE_records_get_size (1, &rd);
465   nrb = GNUNET_malloc(rd_payload_length + strlen(TEST_AUTHORITY_ALICE) + 1
466                       + sizeof(struct GNSNameRecordBlock));
467   nrb->signature = *sig;
468   nrb->public_key = bob_pkey;
469   nrb->rd_count = htonl(1);
470   memset(&nrb[1], 0, strlen(TEST_AUTHORITY_ALICE) + 1);
471   strcpy((char*)&nrb[1], TEST_AUTHORITY_ALICE);
472   nrb_data = (char*)&nrb[1];
473   nrb_data += strlen(TEST_AUTHORITY_ALICE) + 1;
474
475   if (-1 == GNUNET_NAMESTORE_records_serialize (1,
476                                                 &rd,
477                                                 rd_payload_length,
478                                                 nrb_data))
479   {
480     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
481     ok = 3;
482     
483     GNUNET_CRYPTO_rsa_key_free(our_key);
484     GNUNET_CRYPTO_rsa_key_free(bob_key);
485     GNUNET_CRYPTO_rsa_key_free(alice_key);
486     GNUNET_free(sig);
487     GNUNET_free (nrb);
488     return;
489   }
490
491
492   GNUNET_CRYPTO_short_hash(TEST_AUTHORITY_ALICE,
493                      strlen(TEST_AUTHORITY_ALICE), &name_hash);
494   GNUNET_CRYPTO_short_hash(&bob_pkey,
495                      sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
496                      &zone_hash);
497   GNUNET_CRYPTO_short_hash_double(&zone_hash, &zone_hash_double);
498   GNUNET_CRYPTO_short_hash_double(&name_hash, &name_hash_double);
499   GNUNET_CRYPTO_hash_xor(&zone_hash_double, &name_hash_double, &xor_hash); 
500
501   rd_payload_length += sizeof(struct GNSNameRecordBlock) +
502     strlen(TEST_AUTHORITY_ALICE) + 1;
503   GNUNET_DHT_put (dht_handle, &xor_hash,
504                   0,
505                   GNUNET_DHT_RO_NONE,
506                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
507                   rd_payload_length,
508                   (char*)nrb,
509                   GNUNET_TIME_UNIT_FOREVER_ABS,
510                   DHT_OPERATION_TIMEOUT,
511                   &put_www_dht,
512                   NULL);
513   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_NO);
514   GNUNET_free (nrb);
515 }
516
517 static void
518 fin_init_zone (void *cls, int32_t success, const char *emsg)
519 {
520   struct GNUNET_NAMESTORE_RecordData rd;
521   rd.expiration_time = UINT64_MAX;
522   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
523   rd.data = &bob_hash;
524   rd.record_type = GNUNET_GNS_RECORD_PKEY;
525   rd.flags = 0;
526   
527   GNUNET_NAMESTORE_record_create (namestore_handle,
528                                   our_key,
529                                   TEST_AUTHORITY_BOB,
530                                   &rd,
531                                   &put_pkey_dht,
532                                   NULL);
533
534 }
535
536 static void
537 cont_init_zone (void *cls, int32_t success, const char *emsg)
538 {
539
540   struct GNUNET_NAMESTORE_RecordData rd;
541   rd.expiration_time = UINT64_MAX;
542   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
543   rd.data = &short_zone;
544   rd.record_type = GNUNET_GNS_RECORD_PKEY;
545   rd.flags = 0;
546
547   GNUNET_NAMESTORE_record_create (namestore_handle,
548                                   priv_key,
549                                   TEST_SHORTEN_ZONE,
550                                   &rd,
551                                   &fin_init_zone,
552                                   NULL);
553 }
554
555 static void
556 do_lookup (void *cls, const struct GNUNET_PeerIdentity *id,
557            const struct GNUNET_CONFIGURATION_Handle *_cfg,
558            struct GNUNET_TESTING_Daemon *d, const char *emsg)
559 {
560   
561   char* private_keyfile;
562   char* shorten_keyfile;
563   char* our_keyfile;
564   
565   cfg = _cfg;
566
567   GNUNET_SCHEDULER_cancel (die_task);
568
569   /* put records into namestore */
570   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
571   if (NULL == namestore_handle)
572   {
573     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
574     ok = -1;
575     return;
576   }
577   
578   /* dht */
579   dht_handle = GNUNET_DHT_connect(cfg, 1);
580   if (NULL == dht_handle)
581   {
582     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to dht\n");
583     ok = -1;
584     return;
585   }
586
587   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
588                                                           "ZONEKEY",
589                                                           &our_keyfile))
590   {
591     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
592     ok = -1;
593     return;
594   }
595   
596   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
597                                                           "SHORTEN_ZONEKEY",
598                                                           &shorten_keyfile))
599   {
600     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
601                "Failed to get shorten zone key from cfg\n");
602     ok = -1;
603     return;
604   }
605   
606   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
607                                                           "PRIVATE_ZONEKEY",
608                                                           &private_keyfile))
609   {
610     GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
611                "Failed to get private zone key from cfg\n");
612     ok = -1;
613     return;
614   }
615   our_key = GNUNET_CRYPTO_rsa_key_create_from_file (our_keyfile);
616   priv_key = GNUNET_CRYPTO_rsa_key_create_from_file (private_keyfile);
617   short_key = GNUNET_CRYPTO_rsa_key_create_from_file (shorten_keyfile);
618   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
619   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_ALICE);
620   
621   GNUNET_free(our_keyfile);
622   GNUNET_free(shorten_keyfile);
623   GNUNET_free(private_keyfile);
624
625   GNUNET_CRYPTO_rsa_key_get_public (our_key, &our_pkey);
626   GNUNET_CRYPTO_rsa_key_get_public (priv_key, &priv_pkey);
627   GNUNET_CRYPTO_rsa_key_get_public (short_key, &short_pkey);
628   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
629   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
630   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
631   GNUNET_CRYPTO_short_hash(&alice_pkey, sizeof(alice_pkey), &alice_hash);
632   GNUNET_CRYPTO_short_hash(&our_pkey, sizeof(our_pkey), &our_zone);
633   GNUNET_CRYPTO_short_hash(&priv_pkey, sizeof(priv_pkey), &priv_zone);
634   GNUNET_CRYPTO_short_hash(&short_pkey, sizeof(short_pkey), &short_zone);
635   
636   struct GNUNET_NAMESTORE_RecordData rd;
637   rd.expiration_time = UINT64_MAX;
638   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
639   rd.data = &priv_zone;
640   rd.record_type = GNUNET_GNS_RECORD_PKEY;
641   rd.flags = 0;
642
643   GNUNET_NAMESTORE_record_create (namestore_handle,
644                                   our_key,
645                                   TEST_PRIVATE_ZONE,
646                                   &rd,
647                                   &cont_init_zone,
648                                   NULL);
649
650
651
652
653 }
654
655 static void
656 run (void *cls, char *const *args, const char *cfgfile,
657      const struct GNUNET_CONFIGURATION_Handle *c)
658 {
659   cfg = c;
660    /* Get path from configuration file */
661   if (GNUNET_YES !=
662       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
663                                              &test_directory))
664   {
665     ok = 404;
666     return;
667   }
668
669     
670   /* Set up a task to end testing if peer start fails */
671   die_task =
672       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
673                                     "didn't start all daemons in reasonable amount of time!!!");
674   
675   /* Start alice */
676   //d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
677   //                                 NULL, NULL, NULL, &do_lookup, NULL);
678   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
679                                     NULL, NULL, &do_lookup, NULL,
680                                     NULL, NULL, NULL);
681 }
682
683 static int
684 check ()
685 {
686   int ret;
687
688   /* Arguments for GNUNET_PROGRAM_run */
689   char *const argv[] = { "test-gns-pseu-shorten", /* Name to give running binary */
690     "-c",
691     "test_gns_simple_lookup.conf",       /* Config file to use */
692 #if VERBOSE
693     "-L", "DEBUG",
694 #endif
695     NULL
696   };
697   struct GNUNET_GETOPT_CommandLineOption options[] = {
698     GNUNET_GETOPT_OPTION_END
699   };
700   /* Run the run function as a new program */
701   ret =
702       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
703                           "test-gns-pseu-shorten", "nohelp", options, &run,
704                           &ok);
705   if (ret != GNUNET_OK)
706   {
707     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
708                 "`test-gns-pseu-shorten': Failed with error code %d\n", ret);
709   }
710   return ok;
711 }
712
713 int
714 main (int argc, char *argv[])
715 {
716   int ret;
717
718   GNUNET_log_setup ("test-gns-pseu-shorten",
719 #if VERBOSE
720                     "DEBUG",
721 #else
722                     "WARNING",
723 #endif
724                     NULL);
725   ret = check ();
726   /**
727    * Need to remove base directory, subdirectories taken care
728    * of by the testing framework.
729    */
730   return ret;
731 }
732
733 /* end of test_gns_twopeer.c */