- opaque mq structs
[oweals/gnunet.git] / src / fs / fs_test_lib.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010, 2011, 2012 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 fs/fs_test_lib.c
23  * @brief library routines for testing FS publishing and downloading;
24  *        this code is limited to flat files
25  *        and no keywords (those functions can be tested with
26  *        single-peer setups; this is for testing routing).
27  * @author Christian Grothoff
28  */
29 #include "platform.h"
30 #include "fs_api.h"
31 #include "fs_test_lib.h"
32
33
34 #define CONTENT_LIFETIME GNUNET_TIME_UNIT_HOURS
35
36
37 /**
38  * Handle for a publishing operation started for testing FS.
39  */
40 struct TestPublishOperation
41 {
42
43   /**
44    * Handle for the operation to connect to the peer's 'fs' service.
45    */
46   struct GNUNET_TESTBED_Operation *fs_op;
47
48   /**
49    * Handle to the file sharing context using this daemon.
50    */
51   struct GNUNET_FS_Handle *fs;
52
53   /**
54    * Function to call when upload is done.
55    */
56   GNUNET_FS_TEST_UriContinuation publish_cont;
57
58   /**
59    * Closure for publish_cont.
60    */
61   void *publish_cont_cls;
62
63   /**
64    * Task to abort publishing (timeout).
65    */
66   GNUNET_SCHEDULER_TaskIdentifier publish_timeout_task;
67
68   /**
69    * Seed for file generation.
70    */
71   uint32_t publish_seed;
72
73   /**
74    * Context for current publishing operation.
75    */
76   struct GNUNET_FS_PublishContext *publish_context;
77
78   /**
79    * Result URI.
80    */
81   struct GNUNET_FS_Uri *publish_uri;
82
83   /**
84    * Name of the temporary file used, or NULL for none.
85    */
86   char *publish_tmp_file;
87
88   /**
89    * Size of the file.
90    */
91   uint64_t size;
92
93   /**
94    * Anonymity level used.
95    */
96   uint32_t anonymity;
97
98   /**
99    * Verbosity level of the current operation.
100    */
101   unsigned int verbose;
102
103   /**
104    * Are we testing indexing? (YES: index, NO: insert, SYSERR: simulate)
105    */
106   int do_index;
107 };
108
109
110 /**
111  * Handle for a download operation started for testing FS.
112  */
113 struct TestDownloadOperation
114 {
115
116   /**
117    * Handle for the operation to connect to the peer's 'fs' service.
118    */
119   struct GNUNET_TESTBED_Operation *fs_op;
120
121   /**
122    * Handle to the file sharing context using this daemon.
123    */
124   struct GNUNET_FS_Handle *fs;
125
126   /**
127    * Handle to the daemon via testing.
128    */
129   struct GNUNET_TESTING_Daemon *daemon;
130
131   /**
132    * Function to call when download is done.
133    */
134   GNUNET_SCHEDULER_Task download_cont;
135
136   /**
137    * Closure for download_cont.
138    */
139   void *download_cont_cls;
140
141   /**
142    * URI to download.
143    */
144   struct GNUNET_FS_Uri *uri;
145
146   /**
147    * Task to abort downloading (timeout).
148    */
149   GNUNET_SCHEDULER_TaskIdentifier download_timeout_task;
150
151   /**
152    * Context for current download operation.
153    */
154   struct GNUNET_FS_DownloadContext *download_context;
155
156   /**
157    * Size of the file.
158    */
159   uint64_t size;
160
161   /**
162    * Anonymity level used.
163    */
164   uint32_t anonymity;
165
166   /**
167    * Seed for download verification.
168    */
169   uint32_t download_seed;
170
171   /**
172    * Verbosity level of the current operation.
173    */
174   unsigned int verbose;
175
176 };
177
178
179 /**
180  * Task scheduled to report on the completion of our publish operation.
181  *
182  * @param cls the publish operation context
183  * @param tc scheduler context (unused)
184  */
185 static void
186 report_uri (void *cls, 
187             const struct GNUNET_SCHEDULER_TaskContext *tc)
188 {
189   struct TestPublishOperation *po = cls;
190
191   GNUNET_FS_publish_stop (po->publish_context);
192   GNUNET_TESTBED_operation_done (po->fs_op);
193   po->publish_cont (po->publish_cont_cls, 
194                     po->publish_uri,
195                     (GNUNET_YES == po->do_index) 
196                     ? po->publish_tmp_file
197                     : NULL);
198   GNUNET_FS_uri_destroy (po->publish_uri);
199   if (GNUNET_YES != po->do_index)
200     (void) GNUNET_DISK_directory_remove (po->publish_tmp_file);
201   GNUNET_free_non_null (po->publish_tmp_file);
202   GNUNET_free (po);
203 }
204
205
206 /**
207  * Task scheduled to run when publish operation times out.
208  *
209  * @param cls the publish operation context
210  * @param tc scheduler context (unused)
211  */
212 static void
213 publish_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
214 {
215   struct TestPublishOperation *po = cls;
216
217   po->publish_timeout_task = GNUNET_SCHEDULER_NO_TASK;
218   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
219               "Timeout while trying to publish data\n");
220   if (NULL == po->fs)
221     GNUNET_TESTBED_operation_done (po->fs_op);
222   else
223     GNUNET_TESTBED_operation_done (po->fs_op);
224   GNUNET_FS_publish_stop (po->publish_context);
225   po->publish_cont (po->publish_cont_cls, NULL, NULL);
226   (void) GNUNET_DISK_directory_remove (po->publish_tmp_file);
227   GNUNET_free_non_null (po->publish_tmp_file);
228   GNUNET_free (po);
229 }
230
231
232 /**
233  * Progress callback for file-sharing events while publishing.
234  *
235  * @param cls the publish operation context
236  * @param info information about the event
237  */
238 static void *
239 publish_progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info)
240 {
241   struct TestPublishOperation *po = cls;
242
243   switch (info->status)
244   {
245   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
246     GNUNET_SCHEDULER_cancel (po->publish_timeout_task);
247     po->publish_timeout_task = GNUNET_SCHEDULER_NO_TASK;
248     po->publish_uri =
249         GNUNET_FS_uri_dup (info->value.publish.specifics.completed.chk_uri);
250     GNUNET_SCHEDULER_add_continuation (&report_uri, po,
251                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
252     break;
253   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
254     if (po->verbose)
255       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Publishing at %llu/%llu bytes\n",
256                   (unsigned long long) info->value.publish.completed,
257                   (unsigned long long) info->value.publish.size);
258     break;
259   case GNUNET_FS_STATUS_DOWNLOAD_PROGRESS:
260     if (po->verbose)
261       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Download at %llu/%llu bytes\n",
262                   (unsigned long long) info->value.download.completed,
263                   (unsigned long long) info->value.download.size);
264     break;
265   default:
266     break;
267   }
268   return NULL;
269 }
270
271
272 /**
273  * Generate test data for publishing test.
274  *
275  * @param cls pointer to uint32_t with publishing seed
276  * @param offset offset to generate data for
277  * @param max maximum number of bytes to generate
278  * @param buf where to write generated data 
279  * @param emsg where to store error message (unused)
280  * @return number of bytes written to buf
281  */
282 static size_t
283 file_generator (void *cls, 
284                 uint64_t offset,
285                 size_t max, 
286                 void *buf, 
287                 char **emsg)
288 {
289   uint32_t *publish_seed = cls;
290   uint64_t pos;
291   uint8_t *cbuf = buf;
292   int mod;
293
294   if (emsg != NULL)
295     *emsg = NULL;
296   if (buf == NULL)
297     return 0;
298   for (pos = 0; pos < 8; pos++)
299     cbuf[pos] = (uint8_t) (offset >> pos * 8);
300   for (pos = 8; pos < max; pos++)
301   {
302     mod = (255 - (offset / 1024 / 32));
303     if (mod == 0)
304       mod = 1;
305     cbuf[pos] = (uint8_t) ((offset * (*publish_seed)) % mod);
306   }
307   return max;
308 }
309
310
311 /**
312  * Connect adapter for publishing operation.
313  * 
314  * @param cls the 'struct TestPublishOperation'
315  * @param cfg configuration of the peer to connect to; will be available until
316  *          GNUNET_TESTBED_operation_done() is called on the operation returned
317  *          from GNUNET_TESTBED_service_connect()
318  * @return service handle to return in 'op_result', NULL on error
319  */
320 static void *
321 publish_connect_adapter (void *cls,
322                          const struct GNUNET_CONFIGURATION_Handle *cfg)
323 {
324   struct TestPublishOperation *po = cls;
325  
326   return GNUNET_FS_start (cfg,
327                           "fs-test-publish",
328                           &publish_progress_cb, po,
329                           GNUNET_FS_FLAGS_NONE,
330                           GNUNET_FS_OPTIONS_END);
331 }
332
333
334 /**
335  * Adapter function called to destroy connection to file-sharing service.
336  * 
337  * @param cls the 'struct GNUNET_FS_Handle'
338  * @param op_result unused (different for publish/download!)
339  */
340 static void 
341 fs_disconnect_adapter (void *cls,
342                        void *op_result)
343 {
344   struct GNUNET_FS_Handle *fs = op_result;
345
346   GNUNET_FS_stop (fs);
347 }
348
349
350 /**
351  * Callback to be called when testbed has connected to the fs service
352  *
353  * @param cls the 'struct TestPublishOperation'
354  * @param op the operation that has been finished
355  * @param ca_result the 'struct GNUNET_FS_Handle ' (NULL on error)
356  * @param emsg error message in case the operation has failed; will be NULL if
357  *          operation has executed successfully.
358  */
359 static void
360 publish_fs_connect_complete_cb (void *cls,
361                                 struct GNUNET_TESTBED_Operation *op,
362                                 void *ca_result,
363                                 const char *emsg)
364 {
365   struct TestPublishOperation *po = cls;
366   struct GNUNET_FS_FileInformation *fi;
367   struct GNUNET_DISK_FileHandle *fh;
368   char *em;
369   uint64_t off;
370   char buf[DBLOCK_SIZE];
371   size_t bsize;
372   struct GNUNET_FS_BlockOptions bo;
373
374   if (NULL == ca_result)
375     {
376       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to connect to FS for publishing: %s\n", emsg);
377       po->publish_cont (po->publish_cont_cls,
378                         NULL, NULL);
379       GNUNET_TESTBED_operation_done (po->fs_op);
380       GNUNET_free (po);
381       return;
382     }
383   po->fs = ca_result;
384
385   bo.expiration_time = GNUNET_TIME_relative_to_absolute (CONTENT_LIFETIME);
386   bo.anonymity_level = po->anonymity;
387   bo.content_priority = 42;
388   bo.replication_level = 1;
389   if (GNUNET_YES == po->do_index)
390   {
391     po->publish_tmp_file = GNUNET_DISK_mktemp ("fs-test-publish-index");
392     GNUNET_assert (po->publish_tmp_file != NULL);
393     fh = GNUNET_DISK_file_open (po->publish_tmp_file,
394                                 GNUNET_DISK_OPEN_WRITE |
395                                 GNUNET_DISK_OPEN_CREATE,
396                                 GNUNET_DISK_PERM_USER_READ |
397                                 GNUNET_DISK_PERM_USER_WRITE);
398     GNUNET_assert (NULL != fh);
399     off = 0;
400     while (off < po->size)
401     {
402       bsize = GNUNET_MIN (sizeof (buf), po->size - off);
403       emsg = NULL;
404       GNUNET_assert (bsize == file_generator (&po->publish_seed, off, bsize, buf, &em));
405       GNUNET_assert (em == NULL);
406       GNUNET_assert (bsize == GNUNET_DISK_file_write (fh, buf, bsize));
407       off += bsize;
408     }
409     GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fh));
410     fi = GNUNET_FS_file_information_create_from_file (po->fs, po,
411                                                       po->publish_tmp_file,
412                                                       NULL, NULL, po->do_index,
413                                                       &bo);
414   }
415   else
416   {
417     fi = GNUNET_FS_file_information_create_from_reader (po->fs, po,
418                                                         po->size, 
419                                                         &file_generator, &po->publish_seed, 
420                                                         NULL, NULL,
421                                                         po->do_index, &bo);
422   }
423   po->publish_context =
424     GNUNET_FS_publish_start (po->fs, fi, NULL, NULL, NULL,
425                              GNUNET_FS_PUBLISH_OPTION_NONE);
426 }
427
428
429 /**
430  * Publish a file at the given peer.
431  *
432  * @param peer where to publish
433  * @param timeout if this operation cannot be completed within the
434  *                given period, call the continuation with an error code
435  * @param anonymity option for publication
436  * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
437  *                GNUNET_SYSERR for simulation
438  * @param size size of the file to publish
439  * @param seed seed to use for file generation
440  * @param verbose how verbose to be in reporting
441  * @param cont function to call when done
442  * @param cont_cls closure for cont
443  */
444 void
445 GNUNET_FS_TEST_publish (struct GNUNET_TESTBED_Peer *peer,
446                         struct GNUNET_TIME_Relative timeout, uint32_t anonymity,
447                         int do_index, uint64_t size, uint32_t seed,
448                         unsigned int verbose,
449                         GNUNET_FS_TEST_UriContinuation cont, void *cont_cls)
450 {
451   struct TestPublishOperation *po;
452
453   po = GNUNET_malloc (sizeof (struct TestPublishOperation));
454   po->publish_cont = cont;
455   po->publish_cont_cls = cont_cls;
456   po->publish_seed = seed;
457   po->anonymity = anonymity;
458   po->size = size;
459   po->verbose = verbose;
460   po->do_index = do_index;
461   po->fs_op = GNUNET_TESTBED_service_connect (po,
462                                               peer,
463                                               "fs",
464                                               &publish_fs_connect_complete_cb,
465                                               po,
466                                               &publish_connect_adapter,
467                                               &fs_disconnect_adapter,
468                                               po);
469   po->publish_timeout_task =
470       GNUNET_SCHEDULER_add_delayed (timeout, &publish_timeout, po);
471 }
472
473
474 /* ************************** download ************************ */
475
476
477 /**
478  * Task scheduled to run when download operation times out.
479  *
480  * @param cls the download operation context
481  * @param tc scheduler context (unused)
482  */
483 static void
484 download_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
485 {
486   struct TestDownloadOperation *dop = cls;
487
488   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
489               "Timeout while trying to download file\n");
490   dop->download_timeout_task = GNUNET_SCHEDULER_NO_TASK;
491   GNUNET_FS_download_stop (dop->download_context, GNUNET_YES);
492   GNUNET_SCHEDULER_add_continuation (dop->download_cont,
493                                      dop->download_cont_cls,
494                                      GNUNET_SCHEDULER_REASON_TIMEOUT);
495   if (NULL == dop->fs)
496     GNUNET_TESTBED_operation_done (dop->fs_op);
497   else
498     GNUNET_TESTBED_operation_done (dop->fs_op);
499   GNUNET_FS_uri_destroy (dop->uri);
500   GNUNET_free (dop);
501 }
502
503
504 /**
505  * Task scheduled to report on the completion of our download operation.
506  *
507  * @param cls the download operation context
508  * @param tc scheduler context (unused)
509  */
510 static void
511 report_success (void *cls,
512                 const struct GNUNET_SCHEDULER_TaskContext *tc)
513 {
514   struct TestDownloadOperation *dop = cls;
515
516   GNUNET_FS_download_stop (dop->download_context, GNUNET_YES);
517   GNUNET_SCHEDULER_add_continuation (dop->download_cont,
518                                      dop->download_cont_cls,
519                                      GNUNET_SCHEDULER_REASON_PREREQ_DONE);
520   GNUNET_TESTBED_operation_done (dop->fs_op);
521   GNUNET_FS_uri_destroy (dop->uri);
522   GNUNET_free (dop);
523 }
524
525
526 /**
527  * Progress callback for file-sharing events while downloading.
528  *
529  * @param cls the download operation context
530  * @param info information about the event
531  */
532 static void *
533 download_progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info)
534 {
535   struct TestDownloadOperation *dop = cls;
536
537   switch (info->status)
538   {
539   case GNUNET_FS_STATUS_DOWNLOAD_PROGRESS:
540     if (dop->verbose)
541       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Download at %llu/%llu bytes\n",
542                   (unsigned long long) info->value.download.completed,
543                   (unsigned long long) info->value.download.size);
544     break;
545   case GNUNET_FS_STATUS_DOWNLOAD_COMPLETED:
546     GNUNET_SCHEDULER_cancel (dop->download_timeout_task);
547     dop->download_timeout_task = GNUNET_SCHEDULER_NO_TASK;
548     GNUNET_SCHEDULER_add_continuation (&report_success, dop,
549                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
550     break;
551   case GNUNET_FS_STATUS_DOWNLOAD_ACTIVE:
552   case GNUNET_FS_STATUS_DOWNLOAD_INACTIVE:
553     break;
554     /* FIXME: monitor data correctness during download progress */
555     /* FIXME: do performance reports given sufficient verbosity */
556     /* FIXME: advance timeout task to "immediate" on error */
557   default:
558     break;
559   }
560   return NULL;
561 }
562
563
564 /**
565  * Connect adapter for download operation.
566  * 
567  * @param cls the 'struct TestDownloadOperation'
568  * @param cfg configuration of the peer to connect to; will be available until
569  *          GNUNET_TESTBED_operation_done() is called on the operation returned
570  *          from GNUNET_TESTBED_service_connect()
571  * @return service handle to return in 'op_result', NULL on error
572  */
573 static void *
574 download_connect_adapter (void *cls,
575                          const struct GNUNET_CONFIGURATION_Handle *cfg)
576 {
577   struct TestPublishOperation *po = cls;
578  
579   return GNUNET_FS_start (cfg,
580                           "fs-test-download",
581                           &download_progress_cb, po,
582                           GNUNET_FS_FLAGS_NONE,
583                           GNUNET_FS_OPTIONS_END);
584 }
585
586
587 /**
588  * Callback to be called when testbed has connected to the fs service
589  *
590  * @param cls the 'struct TestPublishOperation'
591  * @param op the operation that has been finished
592  * @param ca_result the 'struct GNUNET_FS_Handle ' (NULL on error)
593  * @param emsg error message in case the operation has failed; will be NULL if
594  *          operation has executed successfully.
595  */
596 static void
597 download_fs_connect_complete_cb (void *cls,
598                                  struct GNUNET_TESTBED_Operation *op,
599                                  void *ca_result,
600                                  const char *emsg)
601 {
602   struct TestDownloadOperation *dop = cls;
603
604   dop->fs = ca_result;
605   GNUNET_assert (NULL != dop->fs);
606   dop->download_context =
607     GNUNET_FS_download_start (dop->fs, dop->uri, NULL, NULL, NULL, 0, dop->size,
608                               dop->anonymity, GNUNET_FS_DOWNLOAD_OPTION_NONE,
609                               NULL, NULL);
610 }
611
612
613 /**
614  * Perform test download.
615  *
616  * @param peer which peer to download from
617  * @param timeout if this operation cannot be completed within the
618  *                given period, call the continuation with an error code
619  * @param anonymity option for download
620  * @param seed used for file validation
621  * @param uri URI of file to download (CHK/LOC only)
622  * @param verbose how verbose to be in reporting
623  * @param cont function to call when done
624  * @param cont_cls closure for cont
625  */
626 void
627 GNUNET_FS_TEST_download (struct GNUNET_TESTBED_Peer *peer,
628                          struct GNUNET_TIME_Relative timeout,
629                          uint32_t anonymity, uint32_t seed,
630                          const struct GNUNET_FS_Uri *uri, unsigned int verbose,
631                          GNUNET_SCHEDULER_Task cont, void *cont_cls)
632 {
633   struct TestDownloadOperation *dop;
634
635   dop = GNUNET_malloc (sizeof (struct TestDownloadOperation));
636   dop->uri = GNUNET_FS_uri_dup (uri);
637   dop->size = GNUNET_FS_uri_chk_get_file_size (uri);
638   dop->verbose = verbose;
639   dop->anonymity = anonymity;
640   dop->download_cont = cont;
641   dop->download_cont_cls = cont_cls;
642   dop->download_seed = seed;
643
644   dop->fs_op = GNUNET_TESTBED_service_connect (dop,
645                                                peer,
646                                                "fs",
647                                                &download_fs_connect_complete_cb,
648                                                dop,
649                                                &download_connect_adapter,
650                                                &fs_disconnect_adapter,
651                                                dop);
652   dop->download_timeout_task =
653       GNUNET_SCHEDULER_add_delayed (timeout, &download_timeout, dop);
654 }
655
656
657 /* end of fs_test_lib.c */