aboutsummaryrefslogtreecommitdiff
path: root/src/scalarproduct/test_scalarproduct_api_4peers.c
blob: c0e045e28291e75994f18efa5a106fce4ced1697 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
/*
     This file is part of GNUnet.
     (C) 2013 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
 */

/**
 * AIM OF THIS TEST
 * 
 * The aim for the extended test is to verify the queuing functionality in the 
 * service and the API. The API queues requests received from the clients. The 
 * service queues requests that are received from other services.
 * 
 * To test this, we create 4 peers. peer1 and peer2 are designated responders, 
 * and peer3 and peer4 are designated as requesters. Each peer calls API for the
 * scalarproduct service accordingly.
 * 
 * * peer1 tells the service to prepare response for requests with keys 
 *   input_key_p1_p3(shared key b/w peer1 and peer3) and input_key_p1_p4. 
 *   Similarly peer2 tells service to prepare response for requests with keys 
 *   input_key_p2_p3, and input_key_p2_p4.
 * * Simultaneously, peer3 tells its service to send a request to peer1 with key
 *   input_key_p1_p3, and a request to peer2 with key input_key_p2_p3. Similarly, 
 *   peer 4 sends requests with appropriate keys.
 * 
 * Each peer sends 2 requests to its service, which tests the queuing in API. 
 * Each service receives 2 requests from other service, which tests the queuing 
 * functionality in the service.
 */


/**
 * @file scalarproduct/test_scalarproduct_api_4peers.c
 * @brief Vectorproduct API testing between 4 peers using testing API
 * @author Gaurav Kukreja
 * @author Christian Fuchs
 */

#include <string.h>

#include <inttypes.h>
#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_testbed_service.h"
#include "gnunet_common.h"
#include "gnunet_scalarproduct_service.h"
#include "gnunet_protocols.h"

#define LOG(kind,...) GNUNET_log_from (kind, "test-scalarproduct-api-4peers",__VA_ARGS__)

#define NUM_PEERS 4

/**
 * Structure for holding peer's sockets and IO Handles
 */
struct PeerData
{
  /**
   * Handle to testbed peer
   */
  struct GNUNET_TESTBED_Peer *peer;

  /**
   * The service connect operation to stream
   */
  struct GNUNET_TESTBED_Operation *op;

  /**
   * Our Peer id
   */
  struct GNUNET_PeerIdentity our_id;

  /**
   * Pointer to Vector Product Handle
   */
  struct GNUNET_SCALARPRODUCT_Handle *vh;

  /**
   * Input elements for peer
   */
  char * input_elements;

  /**
   * Input Mask for peer
   */
  char * input_mask;

  /**
   * 2 Input keys for peer for 2 sessions of each peer
   */
  char * input_keys[2];

  /**
   * Number of requests(or prepare_response) sent by the peer
   */
  int request_num;

  /**
   * Number of callbacks received by the peer
   */
  int callback_num;

  /**
   * PeerData of the peers, this peer will talk to 
   */
  struct PeerData * peers[2];


};

/**
 * Different states in test setup
 */
enum SetupState
{
  /**
   * Get the identity of peer 1
   */
  PEER1_GET_IDENTITY,

  /**
   * Get the identity of peer 2
   */
  PEER2_GET_IDENTITY,

  /**
   * Get the identity of peer 3
   */
  PEER3_GET_IDENTITY,

  /**
   * Get the identity of peer 4
   */
  PEER4_GET_IDENTITY,

  /**
   * Connect to stream service of peer 1
   */
  PEER1_SCALARPRODUCT_CONNECT,

  /**
   * Connect to stream service of peer 2
   */
  PEER2_SCALARPRODUCT_CONNECT,

  /**
   * Connect to stream service of peer 3
   */
  PEER3_SCALARPRODUCT_CONNECT,

  /**
   * Connect to stream service of peer 4
   */
  PEER4_SCALARPRODUCT_CONNECT

};

/******************************************************************************
 *** Global Variables                            *****************************
 ******************************************************************************/

/**
 * Maximum allowed message-ids we can check in one go (with one GNUNET_message)
 */
static unsigned int max_mids;

/**
 * Session Key used by both the test peers
 */
char input_key_p1_p3[103] = "111111111111111111111111111111111111111111111111113333333333333333333333333333333333333333333333333333";

/**
 * Session Key used by both the test peers
 */
char input_key_p1_p4[103] = "111111111111111111111111111111111111111111111111114444444444444444444444444444444444444444444444444444";

/**
 * Session Key used by both the test peers
 */
char input_key_p2_p3[103] = "222222222222222222222222222222222222222222222222223333333333333333333333333333333333333333333333333333";

/**
 * Session Key used by both the test peers
 */
char input_key_p2_p4[103] = "222222222222222222222222222222222222222222222222224444444444444444444444444444444444444444444444444444";

/**
 * Input elements for peer1
 */
//char input_elements_peer1[] = "11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11";
char input_elements_peer1[] = "11,11,11";

/**
 * Input Mask for peer 1
 */
//char input_mask_peer1[] = "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
char input_mask_peer1[] = "1,1,1";

/**
 * Input elements for peer2
 */
//char input_elements_peer2[] = "11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11";
char input_elements_peer2[] = "11,11,11";
/**
 * Input Mask for peer 2
 */
//char input_mask_peer2[] = "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
char input_mask_peer2[] = "1,1,1";

/**
 * Input elements for peer3
 */
//char input_elements_peer3[] = "11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11";
char input_elements_peer3[] = "11,11,11";

/**
 * Input Mask for peer 3
 */
//char input_mask_peer3[] = "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
char input_mask_peer3[] = "1,1,1";

/**
 * Input elements for peer4
 */
//char input_elements_peer4[] = "11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11";
char input_elements_peer4[] = "11,11,11";
/**
 * Input Mask for peer 4
 */
//char input_mask_peer4[] = "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1";
char input_mask_peer4[] = "1,1,1";


/**
 * Data context for peer 1
 */
static struct PeerData peer1;

/**
 * Data context for peer 2
 */
static struct PeerData peer2;

/**
 * Data context for peer 3
 */
static struct PeerData peer3;

/**
 * Data context for peer 4
 */
static struct PeerData peer4;

/**
 * Various states during test setup
 */
static enum SetupState setup_state;

/**
 * Testbed operation handle
 */
static struct GNUNET_TESTBED_Operation *op;

/**
 * Return value for the test
 */
static int ok;

/**
 * Abort Task for timeout
 */
static GNUNET_SCHEDULER_TaskIdentifier abort_task;
/******************************************************************************
 *** Static Functions                             *****************************
 ******************************************************************************/

static void
do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);


/**
 * Close sockets and stop testing deamons nicely
 */
static void
do_close (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  if (peer1.op != NULL)
    GNUNET_SCHEDULER_add_now (&do_shutdown, &peer1);

  if (peer2.op != NULL)
    GNUNET_SCHEDULER_add_now (&do_shutdown, &peer2);

  if (peer3.op != NULL)
    GNUNET_SCHEDULER_add_now (&do_shutdown, &peer3);

  if (peer4.op != NULL)
    GNUNET_SCHEDULER_add_now (&do_shutdown, &peer4);

  if (GNUNET_SCHEDULER_NO_TASK != abort_task)
    GNUNET_SCHEDULER_cancel (abort_task);

  GNUNET_SCHEDULER_shutdown (); /* For shutting down testbed */
}


static void
do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  static int shutdown;
  shutdown++;
  struct PeerData* peer = (struct PeerData*) cls;

  if (peer == &peer1)
    LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down Peer 1!!! \n");
  else if (peer == &peer2)
    LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down Peer 2!!! \n");
  else if (peer == &peer3)
    LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down Peer 3!!! \n");
  else if (peer == &peer4)
    LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down Peer 4!!! \n");

  // peer->op contains handle to the TESTBED_connect_service operation
  // calling operation done, leads to call to scalarproduct_da
  GNUNET_TESTBED_operation_done (peer->op);
  peer->op = NULL;

  if (shutdown == 4)
    GNUNET_SCHEDULER_add_now (&do_close, NULL);
}


/**
 * Something went wrong and timed out. Kill everything and set error flag
 */
static void
do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "test: ABORT due to Timeout\n");
  ok = GNUNET_SYSERR;
  abort_task = 0;
  do_close (cls, tc);
}


/**
 * Controller event callback
 *
 * @param cls NULL
 * @param event the controller event
 */
static void
controller_event_cb (void *cls,
                     const struct GNUNET_TESTBED_EventInformation *event)
{
  switch (event->type)
    {
    case GNUNET_TESTBED_ET_OPERATION_FINISHED:
      switch (setup_state)
        {
        case PEER1_SCALARPRODUCT_CONNECT:
        case PEER2_SCALARPRODUCT_CONNECT:
          GNUNET_assert (NULL == event->details.operation_finished.emsg);
          break;
        default:
          GNUNET_assert (0);
        }
      break;
    default:
      GNUNET_assert (0);
    }
}


static void
responder_callback (void *cls,
                    const struct GNUNET_HashCode * key,
                    enum GNUNET_SCALARPRODUCT_ResponseStatus status)
{
  struct PeerData * peer = cls;

  peer->callback_num++;

  if (peer == &peer1)
    {
        LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer1 received callback!!!\n");
    }
  else if (peer == &peer2)
    {
        LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer2 received callback!!!\n");
    }
  else
    LOG (GNUNET_ERROR_TYPE_ERROR, "Requester callback received, but peer is neither peer1 nor peer2!!!\n");


  if (status == GNUNET_SCALARPRODUCT_Status_Failure)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Responder Client received status failure\n");
      ok = -1;
    }
  else if (status == GNUNET_SCALARPRODUCT_Status_InvalidResponse)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Responder Client received status invalid response\n");
      ok = -1;
    }
  else if (GNUNET_SCALARPRODUCT_Status_Timeout == status)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Responder Client received timeout occured\n");
      ok = -1;
    }
  else if (GNUNET_SCALARPRODUCT_Status_ServiceDisconnected == status)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Responder Client received service disconnected!!\n");
      ok = -1;
    }
  else if (GNUNET_SCALARPRODUCT_Status_Success == status)
    {
      LOG (GNUNET_ERROR_TYPE_DEBUG, "Responder Client expected response received!\n");
      ok = 1;
    }
  else
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Responder Client status = %d!\n", (int) status);
      ok = -1;
    }

  // TODO : Responder Session Complete. Shutdown Test Cleanly!!!
  if (peer->callback_num == 2)
    GNUNET_SCHEDULER_add_now (&do_shutdown, peer);
}


static void
requester_callback (void *cls,
                    const struct GNUNET_HashCode * key,
                    const struct GNUNET_PeerIdentity * peer,
                    enum GNUNET_SCALARPRODUCT_ResponseStatus status,
                    const struct GNUNET_SCALARPRODUCT_client_response *msg)
{
  struct PeerData * peer_ = cls;
  uint32_t product_len;

  peer_->callback_num++;
  
  if (peer_ == &peer3)
    {
      LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer3 received callback!!!\n");
    }
  else if (peer_ == &peer4)
    {
      LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer4 received callback!!!\n");
    }
  else
    LOG (GNUNET_ERROR_TYPE_ERROR, "Requester callback received, but peer is neither peer3 nor peer4!!!\n");


  if (status == GNUNET_SCALARPRODUCT_Status_Failure)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Requester Client received status failure\n");
      ok = -1;
    }
  else if (status == GNUNET_SCALARPRODUCT_Status_InvalidResponse)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Requester Client received status invalid response\n");
      ok = -1;
    }
  else if (GNUNET_SCALARPRODUCT_Status_Timeout == status)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Requester Client timeout occured\n");
      ok = -1;
    }
  else if (GNUNET_SCALARPRODUCT_Status_ServiceDisconnected == status)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Requester Client service disconnected!!\n");
      ok = -1;
    }
  else if (GNUNET_SCALARPRODUCT_Status_Success != status)
    {
      LOG (GNUNET_ERROR_TYPE_ERROR, "Requester Client Status = %d\n", (int) status);
      ok = -1;
    }
  else if (GNUNET_SCALARPRODUCT_Status_Success == status)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Requester client received status successful!\n");
      product_len = ntohl (msg->product_length);

      if (0 < product_len)
        {
          gcry_mpi_t result;
          gcry_error_t ret = 0;
          size_t read = 0;

          ret = gcry_mpi_scan (&result, GCRYMPI_FMT_USG, (void*) &(msg[1]), product_len, &read);

          if (0 != ret)
            {
              GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not convert to mpi to value!\n");
            }
          else
            {
              gcry_mpi_release (result);
            }
          ok = 1;
        }
      else
        { 
          //currently not used, but if we get more info due to MESH we will need this
          LOG (GNUNET_ERROR_TYPE_ERROR, "Error during computation of vector product, return code: %d\n", product_len);
          ok = -1;
        }
    }

  if (peer_->callback_num == 2)
    GNUNET_SCHEDULER_add_now (&do_shutdown, peer_);
}


static struct GNUNET_SCALARPRODUCT_QueueEntry *
requester_request (char * input_elements,
                   char * input_mask,
                   char * input_key,
                   struct PeerData * peer,
                   struct PeerData * to_peer)
{
  

  unsigned int i;
  uint16_t element_count = 0;
  int32_t * elements = NULL;
  uint16_t mask_length = 0;
  unsigned char * mask = NULL;
  int32_t element;
  struct GNUNET_SCALARPRODUCT_QueueEntry *qe;
  struct GNUNET_HashCode key;
  int exit_loop;
  char * begin = input_elements;
  char * end;
  
  GNUNET_assert (peer->vh != NULL);
  
  GNUNET_CRYPTO_hash_from_string (input_key, &key);
  
  exit_loop = 0;
  /* Read input_elements, and put in elements array */
  do
    {
      unsigned int mcount = element_count;
      //ignore empty rows of ,,,,,,
      while (*begin == ',')
        begin++;
      // get the length of the current element and replace , with null
      for (end = begin; *end && *end != ','; end++);

      if (*end == '\0')
        exit_loop = 1;


      if (1 != sscanf (begin, "%" SCNd32, &element))
        {
          FPRINTF (stderr, _ ("Could not convert `%s' to int32_t.\n"), begin);
          ok = -1;
          return NULL;
        }
      
      GNUNET_array_append (elements, mcount, element);
      element_count++;

      begin = ++end;
    }
  while (!exit_loop && element_count < max_mids);
  GNUNET_assert (elements != NULL);
  GNUNET_assert (element_count >= 1);
  
  /* Read input_mask and read in mask array */
  mask_length = element_count / 8 + (element_count % 8 ? 1 : 0);
  mask = GNUNET_malloc ((element_count / 8) + 2);
  GNUNET_assert (NULL != mask);
  if (NULL != input_mask)
    {
      begin = input_mask;
      unsigned short mask_count = 0;
      int exit_loop = 0;

      do
        {
          //ignore empty rows of ,,,,,,
          while (* begin == ',')
            begin++;
          // get the length of the current element and replace , with null
          // gnunet_ascii-armor uses base32, thus we can use , as separator!
          for (end = begin; *end && *end != ','; end++);

          if (*end == '\0')
            exit_loop = 1;


          if (1 != sscanf (begin, "%" SCNd32, &element))
            {
              FPRINTF (stderr, _ ("Could not convert `%s' to int32_t.\n"), begin);
              ok = -1;
              return NULL;
            }

          GNUNET_assert (mask_count <= element_count);

          if (element)
            mask[mask_count / 8] = mask[mask_count / 8] | 1 << (mask_count % 8);

          mask_count++;
          begin = ++end;
        }
      while (!exit_loop);
      // +1 to see if we would have more data, which would indicate malformed/superficial input
      GNUNET_assert (mask_count == element_count);
    }
  else
    {
      for (i = 0; i <= mask_length; i++)
        mask[i] = UCHAR_MAX; // all 1's
    }
  
  qe = GNUNET_SCALARPRODUCT_request (peer->vh,
                                     &key,
                                     &to_peer->our_id,
                                     element_count,
                                     mask_length,
                                     elements, mask,
                                     GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60),
                                     &requester_callback,
                                     peer);

  if (qe == NULL)
    {
      LOG(GNUNET_ERROR_TYPE_WARNING, "Could not send request to scalarproduct service! Exitting!");
      ok = -1;
      return NULL;
    }

  return qe;
}


/**
 * Function prepares the message to be sent by peer1 to its scalarproduct service
 * to prepare response, and wait for a request session to be initiated by peer1
 */
static struct GNUNET_SCALARPRODUCT_QueueEntry *
responder_prepare_response (char * input_elements,
                            char * input_mask,
                            char * input_key,
                            struct PeerData * peer)
{
  GNUNET_assert (peer->vh != NULL);

  unsigned int i;
  uint16_t element_count = 0;
  int32_t * elements = NULL;
  unsigned short mask_length = 0;
  unsigned char * mask = NULL;
  int32_t element;
  struct GNUNET_SCALARPRODUCT_QueueEntry *qe;
  struct GNUNET_HashCode key;
  int exit_loop;
  char * begin;
  char * end;
  
  GNUNET_CRYPTO_hash_from_string (input_key, &key);
  
  /* Read input_elements, and put in elements array */
  exit_loop = 0;
  begin = input_elements;
  do
    {
      unsigned int mcount = element_count;
      //ignore empty rows of ,,,,,,
      while (*begin == ',')
        begin++;
      // get the length of the current element and replace , with null
      for (end = begin; *end && *end != ','; end++);

      if (*end == '\0')
        exit_loop = 1;

      if (1 != sscanf (begin, "%" SCNd32, &element))
        {
          FPRINTF (stderr, _ ("Could not convert `%s' to int32_t.\n"), begin);
          ok = -1;
          return NULL;
        }

      GNUNET_array_append (elements, mcount, element);
      element_count++;

      begin = ++end;
    }
  while (!exit_loop && element_count < max_mids);
  GNUNET_assert (elements != NULL);
  GNUNET_assert (element_count >= 1);
  
  /* Read input_mask and read in mask array */
  mask_length = element_count / 8 + (element_count % 8 ? 1 : 0);
  mask = GNUNET_malloc ((element_count / 8) + 2);
  GNUNET_assert (NULL != mask);
  if (NULL != input_mask)
    {
      begin = input_mask;
      unsigned short mask_count = 0;
      int exit_loop = 0;

      do
        {
          //ignore empty rows of ,,,,,,
          while (* begin == ',')
            begin++;
          // get the length of the current element and replace , with null
          // gnunet_ascii-armor uses base32, thus we can use , as separator!
          for (end = begin; *end && *end != ','; end++);

          if (*end == '\0')
            exit_loop = 1;

          if (1 != sscanf (begin, "%" SCNd32, &element))
            {
              FPRINTF (stderr, _ ("Could not convert `%s' to int32_t.\n"), begin);
              ok = -1;
              return NULL;
            }

          GNUNET_assert (mask_count <= element_count);

          if (element)
            mask[mask_count / 8] = mask[mask_count / 8] | 1 << (mask_count % 8);

          mask_count++;
          begin = ++end;
        }
      while (!exit_loop);
      // +1 to see if we would have more data, which would indicate malformed/superficial input
      GNUNET_assert (mask_count == element_count);
    }
  else
    {
      for (i = 0; i <= mask_length; i++)
        mask[i] = UCHAR_MAX; // all 1's
    }

  qe = GNUNET_SCALARPRODUCT_prepare_response (peer->vh,
                                              &key,
                                              element_count,
                                              elements,
                                              GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60),
                                              &responder_callback,
                                              peer);

  if (qe == NULL)
    {
      LOG(GNUNET_ERROR_TYPE_ERROR, "Could not send request to scalarproduct service! Exitting!");
      ok = -1;
      return NULL;
    }

  return qe;
}


static void
request_task (void *cls,
              const struct GNUNET_SCHEDULER_TaskContext
              * tc)
{
  struct PeerData * peer = cls;

  requester_request (peer->input_elements, peer->input_mask, peer->input_keys[peer->request_num], peer, peer->peers[peer->request_num]);
  peer->request_num++;
  return;
}


static void
prepare_response_task (void *cls,
                       const struct GNUNET_SCHEDULER_TaskContext
                       * tc)
{
  struct PeerData * peer = cls;

  responder_prepare_response (peer->input_elements, peer->input_mask, peer->input_keys[peer->request_num], peer);
  peer->request_num++;
  return;
}


/**
 * Adapter function called to destroy a connection to
 * a service. This function is called when GNUNET_TESTBED_operation_done is
 * called for peer->op, which holds the handle for GNUNET_TESTBED_service_connect
 * operation.
 * 
 * @param cls closure
 * @param op_result service handle returned from the connect adapter
 */
static void
scalarproduct_da (void *cls, void *op_result)
{
  struct PeerData* peer = (struct PeerData*) cls;

  GNUNET_SCALARPRODUCT_cancel (peer->vh);
  return;

  GNUNET_assert (0);
}


/**
 * Adapter function called to establish a connection to
 * a service. This function is called to by GNUNET_TESTBED_service_connect.
 * 
 * @param cls closure
 * @param cfg configuration of the peer to connect to; will be available until
 *          GNUNET_TESTBED_operation_done() is called on the operation returned
 *          from GNUNET_TESTBED_service_connect()
 * @return service handle to return in 'op_result', NULL on error
 */
static void *
scalarproduct_ca (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  struct PeerData *p = cls;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", (&peer1 == p) ? 1 : 2,
              GNUNET_i2s (&p->our_id));

  switch (setup_state)
    {
    case PEER1_SCALARPRODUCT_CONNECT:
      /* Connect peer 2 to scalarproduct service */
      {
        peer2.op = GNUNET_TESTBED_service_connect (&peer2, peer2.peer, "scalarproduct",
                                                   NULL, NULL, scalarproduct_ca,
                                                   scalarproduct_da, &peer2);
        setup_state = PEER2_SCALARPRODUCT_CONNECT;
      }

      peer1.vh = GNUNET_SCALARPRODUCT_connect (cfg);
      return peer1.vh;

    case PEER2_SCALARPRODUCT_CONNECT:
      /* Connect peer 3 to scalarproduct service */
      {
        peer3.op = GNUNET_TESTBED_service_connect (&peer3, peer3.peer, "scalarproduct",
                                                   NULL, NULL, scalarproduct_ca,
                                                   scalarproduct_da, &peer3);
        setup_state = PEER3_SCALARPRODUCT_CONNECT;
      }

      peer2.vh = GNUNET_SCALARPRODUCT_connect (cfg);
      return peer2.vh;

    case PEER3_SCALARPRODUCT_CONNECT:
      /* Connect peer 4 to scalarproduct service */
      {
        peer4.op = GNUNET_TESTBED_service_connect (&peer4, peer4.peer, "scalarproduct",
                                                   NULL, NULL, scalarproduct_ca,
                                                   scalarproduct_da, &peer4);
        setup_state = PEER4_SCALARPRODUCT_CONNECT;
      }

      peer3.vh = GNUNET_SCALARPRODUCT_connect (cfg);
      return peer3.vh;

    case PEER4_SCALARPRODUCT_CONNECT:
      peer4.vh = GNUNET_SCALARPRODUCT_connect (cfg);

      /* Schedule the tasks to issue prepare_response calls from peer1 and peer2
       * for peer3 and peer4.
       */
      GNUNET_SCHEDULER_add_now (&prepare_response_task, &peer1);
      GNUNET_SCHEDULER_add_now (&prepare_response_task, &peer1);
      GNUNET_SCHEDULER_add_now (&prepare_response_task, &peer2);
      GNUNET_SCHEDULER_add_now (&prepare_response_task, &peer2);

      /* 
       * Schedule the tasks to issue requests calls from peer3 and peer4
       * to peer1 and peer2
       */
      GNUNET_SCHEDULER_add_now (&request_task, &peer3);
      GNUNET_SCHEDULER_add_now (&request_task, &peer3);
      GNUNET_SCHEDULER_add_now (&request_task, &peer4);
      GNUNET_SCHEDULER_add_now (&request_task, &peer4);

      return peer2.vh;
    default:
      GNUNET_assert (0);
    }
}


/**
 * Callback to be called when the requested peer information is available
 *
 * @param cb_cls the closure from GNUNET_TETSBED_peer_get_information()
 * @param op the operation this callback corresponds to
 * @param pinfo the result; will be NULL if the operation has failed
 * @param emsg error message if the operation has failed; will be NULL if the
 *          operation is successfull
 */
static void
peerinfo_cb (void *cb_cls, struct GNUNET_TESTBED_Operation *op_,
             const struct GNUNET_TESTBED_PeerInformation *pinfo,
             const char *emsg)
{
  GNUNET_assert (NULL == emsg);
  GNUNET_assert (op == op_);
  switch (setup_state)
    {
    case PEER1_GET_IDENTITY:
      {
        memcpy (&peer1.our_id, pinfo->result.id,
                sizeof (struct GNUNET_PeerIdentity));
        GNUNET_TESTBED_operation_done (op);

        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer 1 id: %s\n", GNUNET_i2s_full
                    (&peer1.our_id));

        /* Request for peer id of peer 2*/
        op = GNUNET_TESTBED_peer_get_information (peer2.peer,
                                                  GNUNET_TESTBED_PIT_IDENTITY,
                                                  &peerinfo_cb, NULL);
        setup_state = PEER2_GET_IDENTITY;
      }
      break;
    case PEER2_GET_IDENTITY:
      {
        memcpy (&peer2.our_id, pinfo->result.id,
                sizeof (struct GNUNET_PeerIdentity));
        GNUNET_TESTBED_operation_done (op);

        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer 2 id: %s\n", GNUNET_i2s_full
                    (&peer2.our_id));

        /* Request for peer id of peer 3*/
        op = GNUNET_TESTBED_peer_get_information (peer3.peer,
                                                  GNUNET_TESTBED_PIT_IDENTITY,
                                                  &peerinfo_cb, NULL);
        setup_state = PEER3_GET_IDENTITY;
      }
      break;
    case PEER3_GET_IDENTITY:
      {
        memcpy (&peer3.our_id, pinfo->result.id,
                sizeof (struct GNUNET_PeerIdentity));
        GNUNET_TESTBED_operation_done (op);

        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer 3 id: %s\n", GNUNET_i2s_full
                    (&peer3.our_id));

        /* Request for peer id of peer 4*/
        op = GNUNET_TESTBED_peer_get_information (peer4.peer,
                                                  GNUNET_TESTBED_PIT_IDENTITY,
                                                  &peerinfo_cb, NULL);
        setup_state = PEER4_GET_IDENTITY;
      }
      break;
    case PEER4_GET_IDENTITY:
      {
        memcpy (&peer4.our_id, pinfo->result.id,
                sizeof (struct GNUNET_PeerIdentity));
        GNUNET_TESTBED_operation_done (op);

        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer 2 id: %s\n", GNUNET_i2s_full
                    (&peer2.our_id));

        /* Connect peer 1 to scalarproduct service */
        peer1.op = GNUNET_TESTBED_service_connect (&peer1, peer1.peer, "scalarproduct",
                                                   NULL, NULL, scalarproduct_ca,
                                                   scalarproduct_da, &peer1);
        setup_state = PEER1_SCALARPRODUCT_CONNECT;
      }
      break;
    default:
      GNUNET_assert (0);
    }
}


/**
 * Signature of a main function for a testcase.
 *
 * @param cls closure
 * @param num_peers number of peers in 'peers'
 * @param peers handle to peers run in the testbed
 */
static void
test_master (void *cls, unsigned int num_peers,
             struct GNUNET_TESTBED_Peer **peers)
{
  GNUNET_assert (NULL != peers);
  GNUNET_assert (NULL != peers[0]);
  GNUNET_assert (NULL != peers[1]);
  GNUNET_assert (NULL != peers[2]);
  GNUNET_assert (NULL != peers[3]);
  peer1.peer = peers[0];
  peer1.input_elements = input_elements_peer1;
  peer1.input_mask = input_mask_peer1;
  peer1.request_num = 0;
  peer1.callback_num = 0;
  peer1.input_keys[0] = input_key_p1_p3;
  peer1.input_keys[1] = input_key_p1_p4;

  peer2.peer = peers[1];
  peer2.input_elements = input_elements_peer2;
  peer2.input_mask = input_mask_peer2;
  peer2.request_num = 0;
  peer2.callback_num = 0;
  peer2.input_keys[0] = input_key_p2_p3;
  peer2.input_keys[1] = input_key_p2_p4;

  peer3.peer = peers[2];
  peer3.input_elements = input_elements_peer3;
  peer3.input_mask = input_mask_peer3;
  peer3.request_num = 0;
  peer3.callback_num = 0;
  peer3.input_keys[0] = input_key_p1_p3;
  peer3.input_keys[1] = input_key_p2_p3;
  peer3.peers[0] = &peer1;
  peer3.peers[1] = &peer2;


  peer4.peer = peers[3];
  peer4.input_elements = input_elements_peer4;
  peer4.input_mask = input_mask_peer4;
  peer4.request_num = 0;
  peer4.callback_num = 0;
  peer4.input_keys[0] = input_key_p1_p4;
  peer4.input_keys[1] = input_key_p2_p4;
  peer4.peers[0] = &peer1;
  peer4.peers[1] = &peer2;
  
  /* Get the peer identity and configuration of peer 1 */
  op = GNUNET_TESTBED_peer_get_information (peer1.peer,
                                            GNUNET_TESTBED_PIT_IDENTITY,
                                            &peerinfo_cb, NULL);
  setup_state = PEER1_GET_IDENTITY;
  abort_task =
          GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
                                        (GNUNET_TIME_UNIT_SECONDS, 120), &do_abort,
                                        NULL);
}


/**
 * Main function
 */
int
main (int argc, char **argv)
{
  uint64_t event_mask;

  ok = GNUNET_NO;
  event_mask = 0;
  event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
  max_mids = (GNUNET_SERVER_MAX_MESSAGE_SIZE - sizeof (struct GNUNET_MessageHeader))
          / sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1;
  (void) GNUNET_TESTBED_test_run ("test_scalarproduct_api_4peers",
                                  "test_scalarproduct_api_data.conf",
                                  NUM_PEERS, event_mask, &controller_event_cb,
                                  NULL,
                                  &test_master, NULL);
  if (GNUNET_SYSERR == ok)
    return 1;
  return 0;
}