GNUnet 0.28.0-dev.3-7-g31e20e2e6
 
Loading...
Searching...
No Matches
gnunet-service-scalarproduct_bob.c File Reference

scalarproduct service implementation More...

#include "platform.h"
#include <limits.h>
#include <gcrypt.h>
#include "gnunet_util_lib.h"
#include "gnunet_cadet_service.h"
#include "gnunet_protocols.h"
#include "gnunet_scalarproduct_service.h"
#include "gnunet_seti_service.h"
#include "scalarproduct.h"
#include "gnunet-service-scalarproduct.h"
#include "gnunet_constants.h"
Include dependency graph for gnunet-service-scalarproduct_bob.c:

Go to the source code of this file.

Data Structures

struct  MpiElement
 An encrypted element key-value pair. More...
 
struct  BobServiceSession
 A scalarproduct session which tracks an offer for a multiplication service by a local client. More...
 

Macros

#define LOG(kind, ...)   GNUNET_log_from (kind, "scalarproduct-bob", __VA_ARGS__)
 
#define ELEMENT_CAPACITY
 Maximum count of elements we can put into a multipart message.
 

Functions

static int free_element_cb (void *cls, const struct GNUNET_HashCode *key, void *value)
 Callback used to free the elements in the map.
 
static void destroy_service_session (struct BobServiceSession *s)
 Destroy session state, we are done with it.
 
static void prepare_client_end_notification (struct BobServiceSession *session)
 Notify the client that the session has succeeded or failed.
 
static void cb_channel_destruction (void *cls, const struct GNUNET_CADET_Channel *channel)
 Function called whenever a channel is destroyed.
 
static void bob_cadet_done_cb (void *cls)
 MQ finished giving our last message to CADET, now notify the client that we are finished.
 
static void transmit_bobs_cryptodata_message_multipart (struct BobServiceSession *s)
 Send a multipart chunk of a service response from Bob to Alice.
 
static void transmit_bobs_cryptodata_message (struct BobServiceSession *s)
 Bob generates the response message to be sent to Alice after computing the values (1), (2), S and S'.
 
static gcry_mpi_t compute_square_sum (const gcry_mpi_t *vector, uint32_t length)
 Computes the square sum over a vector of a given length.
 
static int compute_service_response (struct BobServiceSession *session)
 Compute the values (1)[]: $E_A(a_{pi(i)}) otimes E_A(- r_{pi(i)} - b_{pi(i)}) &= E_A(a_{pi(i)} - r_{pi(i)} - b_{pi(i)})$ (2)[]: $E_A(a_{pi'(i)}) otimes E_A(- r_{pi'(i)}) &= E_A(a_{pi'(i)} - r_{pi'(i)})$ S: $S := E_A(sum (r_i + b_i)^2)$ S': $S' := E_A(sum r_i^2)$.
 
static int copy_element_cb (void *cls, const struct GNUNET_HashCode *key, void *value)
 Iterator to copy over messages from the hash map into an array for sorting.
 
static int element_cmp (const void *a, const void *b)
 Compare two struct MpiValues by key for sorting.
 
static void transmit_cryptographic_reply (struct BobServiceSession *s)
 Intersection operation and receiving data via CADET from Alice are both done, compute and transmit our reply via CADET.
 
static int check_alices_cryptodata_message (void *cls, const struct AliceCryptodataMessage *msg)
 Check a multipart-chunk of a request from another service to calculate a scalarproduct with us.
 
static void handle_alices_cryptodata_message (void *cls, const struct AliceCryptodataMessage *msg)
 Handle a multipart-chunk of a request from another service to calculate a scalarproduct with us.
 
static void cb_intersection_element_removed (void *cls, const struct GNUNET_SETI_Element *element, uint64_t current_size, enum GNUNET_SETI_Status status)
 Callback for set operation results.
 
static void start_intersection (struct BobServiceSession *s)
 We've paired up a client session with an incoming CADET request.
 
static void handle_alices_computation_request (void *cls, const struct ServiceRequestMessage *msg)
 Handle a request from Alice to calculate a scalarproduct with us (Bob).
 
static void * cb_channel_incoming (void *cls, struct GNUNET_CADET_Channel *channel, const struct GNUNET_PeerIdentity *initiator)
 Function called for inbound channels on Bob's end.
 
static int check_bob_client_message_multipart (void *cls, const struct ComputationBobCryptodataMultipartMessage *msg)
 We're receiving additional set data.
 
static void handle_bob_client_message_multipart (void *cls, const struct ComputationBobCryptodataMultipartMessage *msg)
 We're receiving additional set data.
 
static int check_bob_client_message (void *cls, const struct BobComputationMessage *msg)
 Handler for Bob's a client request message.
 
static void handle_bob_client_message (void *cls, const struct BobComputationMessage *msg)
 Handler for Bob's a client request message.
 
static void shutdown_task (void *cls)
 Task run during shutdown.
 
static void * client_connect_cb (void *cls, struct GNUNET_SERVICE_Client *client, struct GNUNET_MQ_Handle *mq)
 A client connected.
 
static void client_disconnect_cb (void *cls, struct GNUNET_SERVICE_Client *client, void *app_cls)
 A client disconnected.
 
static void run (void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service)
 Initialization of the program and message handlers.
 
 GNUNET_SERVICE_MAIN (GNUNET_OS_project_data_gnunet(), "scalarproduct-bob", GNUNET_SERVICE_OPTION_NONE, &run, &client_connect_cb, &client_disconnect_cb, NULL, GNUNET_MQ_hd_var_size(bob_client_message, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_CLIENT_TO_BOB, struct BobComputationMessage, NULL), GNUNET_MQ_hd_var_size(bob_client_message_multipart, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_CLIENT_MULTIPART_BOB, struct ComputationBobCryptodataMultipartMessage, NULL), GNUNET_MQ_handler_end())
 Define "main" method using service macro.
 

Variables

static const struct GNUNET_CONFIGURATION_Handlecfg
 GNUnet configuration handle.
 
static struct GNUNET_CRYPTO_PaillierPublicKey my_pubkey
 Service's own public key.
 
static struct GNUNET_CRYPTO_PaillierPrivateKey my_privkey
 Service's own private key.
 
static gcry_mpi_t my_offset
 Service's offset for values that could possibly be negative but are plaintext for encryption.
 
static struct GNUNET_CADET_Handlemy_cadet
 Handle to the CADET service.
 

Detailed Description

scalarproduct service implementation

Author
Christian M. Fuchs
Christian Grothoff

Definition in file gnunet-service-scalarproduct_bob.c.

Macro Definition Documentation

◆ LOG

#define LOG (   kind,
  ... 
)    GNUNET_log_from (kind, "scalarproduct-bob", __VA_ARGS__)

Definition at line 38 of file gnunet-service-scalarproduct_bob.c.

◆ ELEMENT_CAPACITY

#define ELEMENT_CAPACITY
Value:
- sizeof(struct BobCryptodataMultipartMessage)) \
/ sizeof(struct \
#define GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE
Maximum message size that can be sent on CADET.
Multipart Message type passed between to supply additional elements for the peer.

Maximum count of elements we can put into a multipart message.

Definition at line 398 of file gnunet-service-scalarproduct_bob.c.

411{
414 struct GNUNET_MQ_Envelope *e;
415 unsigned int i;
416 unsigned int j;
417 uint32_t todo_count;
418
419 while (s->cadet_transmitted_element_count != s->used_element_count)
420 {
421 todo_count = s->used_element_count - s->cadet_transmitted_element_count;
422 if (todo_count > ELEMENT_CAPACITY / 2)
423 todo_count = ELEMENT_CAPACITY / 2;
424
426 "Sending %u additional crypto values to Alice\n",
427 (unsigned int) todo_count);
429 todo_count * sizeof(struct
431 * 2,
433 msg->contained_element_count = htonl (todo_count);
435 for (i = s->cadet_transmitted_element_count, j = 0; i <
436 s->cadet_transmitted_element_count + todo_count; i++)
437 {
438 // r[i][p] and r[i][q]
439 GNUNET_memcpy (&payload[j++],
440 &s->r[i],
441 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
442 GNUNET_memcpy (&payload[j++],
443 &s->r_prime[i],
444 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
445 }
446 s->cadet_transmitted_element_count += todo_count;
447 if (s->cadet_transmitted_element_count == s->used_element_count)
450 s);
451 GNUNET_MQ_send (s->cadet_mq,
452 e);
453 }
455 "All values queued for Alice, Bob is done\n");
456}
457
458
470static void
472{
474 struct GNUNET_MQ_Envelope *e;
476 unsigned int i;
477
479 = ((GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE - 1 - sizeof(struct
481 / sizeof(struct GNUNET_CRYPTO_PaillierCiphertext) / 2) - 1;
484
487 * sizeof(struct GNUNET_CRYPTO_PaillierCiphertext),
489 msg->contained_element_count = htonl (s->cadet_transmitted_element_count);
490
492 "Sending %u/%u crypto values to Alice\n",
493 (unsigned int) s->cadet_transmitted_element_count,
494 (unsigned int) s->used_element_count);
495
498 &s->s,
499 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
501 &s->s_prime,
502 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
503
504 payload = &payload[2];
505 // convert k[][]
506 for (i = 0; i < s->cadet_transmitted_element_count; i++)
507 {
508 // k[i][p] and k[i][q]
509 GNUNET_memcpy (&payload[i * 2],
510 &s->r[i],
511 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
512 GNUNET_memcpy (&payload[i * 2 + 1],
513 &s->r_prime[i],
514 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
515 }
519 s);
521 e);
523}
524
525
526#undef ELEMENT_CAPACITY
527
528
537static gcry_mpi_t
538compute_square_sum (const gcry_mpi_t *vector,
539 uint32_t length)
540{
541 gcry_mpi_t elem;
542 gcry_mpi_t sum;
543 uint32_t i;
544
545 GNUNET_assert (NULL != (sum = gcry_mpi_new (0)));
546 GNUNET_assert (NULL != (elem = gcry_mpi_new (0)));
547 for (i = 0; i < length; i++)
548 {
549 gcry_mpi_mul (elem, vector[i], vector[i]);
550 gcry_mpi_add (sum, sum, elem);
551 }
552 gcry_mpi_release (elem);
553 return sum;
554}
555
556
567static int
569{
570 uint32_t i;
571 unsigned int *p;
572 unsigned int *q;
573 uint32_t count;
574 gcry_mpi_t *rand;
575 gcry_mpi_t tmp;
576 const struct MpiElement *b;
579 struct GNUNET_CRYPTO_PaillierCiphertext *r_prime;
580
581 count = session->used_element_count;
582 a = session->e_a;
583 b = session->sorted_elements;
586 rand = GNUNET_malloc (sizeof(gcry_mpi_t) * count);
587 for (i = 0; i < count; i++)
588 GNUNET_assert (NULL != (rand[i] = gcry_mpi_new (0)));
589 r = GNUNET_malloc (sizeof(struct GNUNET_CRYPTO_PaillierCiphertext) * count);
590 r_prime = GNUNET_malloc (sizeof(struct GNUNET_CRYPTO_PaillierCiphertext)
591 * count);
592
593 for (i = 0; i < count; i++)
594 {
595 int32_t svalue;
596
597 svalue = (int32_t) GNUNET_CRYPTO_random_u32 (UINT32_MAX);
598 // long to gcry_mpi_t
599 if (svalue < 0)
600 gcry_mpi_sub_ui (rand[i],
601 rand[i],
602 -svalue);
603 else
604 rand[i] = gcry_mpi_set_ui (rand[i], svalue);
605 }
606
607 tmp = gcry_mpi_new (0);
608 // encrypt the element
609 // for the sake of readability I decided to have dedicated permutation
610 // vectors, which get rid of all the lookups in p/q.
611 // however, ap/aq are not absolutely necessary but are just abstraction
612 // Calculate Kp = E(S + a_pi) (+) E(S - r_pi - b_pi)
613 for (i = 0; i < count; i++)
614 {
615 // E(S - r_pi - b_pi)
616 gcry_mpi_sub (tmp, my_offset, rand[p[i]]);
617 gcry_mpi_sub (tmp, tmp, b[p[i]].value);
618 GNUNET_assert (2 ==
620 tmp,
621 2,
622 &r[i]));
623
624 // E(S - r_pi - b_pi) * E(S + a_pi) == E(2*S + a - r - b)
625 if (GNUNET_OK !=
627 &r[i],
628 &a[p[i]],
629 &r[i]))
630 {
631 GNUNET_break_op (0);
632 goto error_cleanup;
633 }
634 }
635
636 // Calculate Kq = E(S + a_qi) (+) E(S - r_qi)
637 for (i = 0; i < count; i++)
638 {
639 // E(S - r_qi)
640 gcry_mpi_sub (tmp, my_offset, rand[q[i]]);
641 GNUNET_assert (2 ==
643 tmp,
644 2,
645 &r_prime[i]));
646
647 // E(S - r_qi) * E(S + a_qi) == E(2*S + a_qi - r_qi)
648 if (GNUNET_OK !=
650 &r_prime[i],
651 &a[q[i]],
652 &r_prime[i]))
653 {
654 GNUNET_break_op (0);
655 goto error_cleanup;
656 }
657 }
658 gcry_mpi_release (tmp);
659
660 // Calculate S' = E(SUM( r_i^2 ))
661 tmp = compute_square_sum (rand, count);
662 GNUNET_assert (1 ==
664 tmp,
665 1,
666 &session->s_prime));
667 gcry_mpi_release (tmp);
668
669 // Calculate S = E(SUM( (r_i + b_i)^2 ))
670 for (i = 0; i < count; i++)
671 gcry_mpi_add (rand[i], rand[i], b[i].value);
672 tmp = compute_square_sum (rand, count);
673 GNUNET_assert (1 ==
675 tmp,
676 1,
677 &session->s));
678 gcry_mpi_release (tmp);
679
680 session->r = r;
681 session->r_prime = r_prime;
682
683 for (i = 0; i < count; i++)
684 gcry_mpi_release (rand[i]);
685 GNUNET_free (session->e_a);
686 session->e_a = NULL;
687 GNUNET_free (p);
688 GNUNET_free (q);
689 GNUNET_free (rand);
690 return GNUNET_OK;
691
692error_cleanup:
693 GNUNET_free (r);
694 GNUNET_free (r_prime);
695 gcry_mpi_release (tmp);
696 GNUNET_free (p);
697 GNUNET_free (q);
698 for (i = 0; i < count; i++)
699 gcry_mpi_release (rand[i]);
700 GNUNET_free (rand);
701 return GNUNET_SYSERR;
702}
703
704
714static int
715copy_element_cb (void *cls,
716 const struct GNUNET_HashCode *key,
717 void *value)
718{
719 struct BobServiceSession *s = cls;
721 gcry_mpi_t mval;
722 int64_t val;
723
724 mval = gcry_mpi_new (0);
725 val = (int64_t) GNUNET_ntohll (e->value);
726 if (0 > val)
727 gcry_mpi_sub_ui (mval, mval, -val);
728 else
729 gcry_mpi_add_ui (mval, mval, val);
733 return GNUNET_OK;
734}
735
736
745static int
746element_cmp (const void *a,
747 const void *b)
748{
749 const struct MpiElement *ma = a;
750 const struct MpiElement *mb = b;
751
752 return GNUNET_CRYPTO_hash_cmp (ma->key,
753 mb->key);
754}
755
756
764static void
766{
767 struct GNUNET_CADET_Channel *channel;
768
769 /* TODO: code duplication with Alice! */
771 "Received everything, building reply for Alice\n");
775 * sizeof(struct MpiElement));
776 s->used_element_count = 0;
779 s);
780 qsort (s->sorted_elements,
782 sizeof(struct MpiElement),
783 &element_cmp);
784 if (GNUNET_OK !=
786 {
787 channel = s->channel;
788 s->channel = NULL;
790 return;
791 }
793}
794
795
805static int
807 const struct AliceCryptodataMessage *msg)
808{
809 struct BobServiceSession *s = cls;
810 uint32_t contained_elements;
811 size_t msg_length;
812 uint16_t msize;
813 unsigned int max;
814
815 msize = ntohs (msg->header.size);
816 contained_elements = ntohl (msg->contained_element_count);
817 /* Our intersection may still be ongoing, but this is nevertheless
818 an upper bound on the required array size */
819 max = GNUNET_CONTAINER_multihashmap_size (s->intersected_elements);
820 msg_length = sizeof(struct AliceCryptodataMessage)
821 + contained_elements * sizeof(struct
823 if ((msize != msg_length) ||
824 (0 == contained_elements) ||
825 (contained_elements > UINT16_MAX) ||
826 (max < contained_elements + s->cadet_received_element_count))
827 {
828 GNUNET_break_op (0);
829 return GNUNET_SYSERR;
830 }
831 return GNUNET_OK;
832}
833
834
842static void
844 const struct AliceCryptodataMessage *msg)
845{
846 struct BobServiceSession *s = cls;
848 uint32_t contained_elements;
849 unsigned int max;
850
851 contained_elements = ntohl (msg->contained_element_count);
852 /* Our intersection may still be ongoing, but this is nevertheless
853 an upper bound on the required array size */
856 "Received %u crypto values from Alice\n",
857 (unsigned int) contained_elements);
858
859 payload = (const struct GNUNET_CRYPTO_PaillierCiphertext *) &msg[1];
860 if (NULL == s->e_a)
864 payload,
866 * contained_elements);
867 s->cadet_received_element_count += contained_elements;
868
869 if ((s->cadet_received_element_count == max) &&
870 (NULL == s->intersection_op))
871 {
872 /* intersection has finished also on our side, and
873 we got the full set, so we can proceed with the
874 CADET response(s) */
876 }
878}
879
880
890static void
892 const struct GNUNET_SETI_Element *element,
893 uint64_t current_size,
895{
896 struct BobServiceSession *s = cls;
898
899 switch (status)
900 {
902 /* this element has been removed from the set */
904 element->data);
905 GNUNET_assert (NULL != se);
907 "Removed element with key %s and value %lld\n",
908 GNUNET_h2s (&se->key),
909 (long long) GNUNET_ntohll (se->value));
913 element->data,
914 se));
915 GNUNET_free (se);
916 return;
918 s->intersection_op = NULL;
919 GNUNET_break (NULL == s->intersection_set);
922 "Finished intersection, %d items remain\n",
926 {
927 /* CADET transmission from Alice is also already done,
928 start with our own reply */
930 }
931 return;
933 /* unhandled status code */
935 "Set intersection failed!\n");
936 s->intersection_op = NULL;
937 if (NULL != s->intersection_set)
938 {
940 s->intersection_set = NULL;
941 }
944 return;
945 default:
946 GNUNET_break (0);
947 return;
948 }
949}
950
951
958static void
960{
962 "Got session with key %s and %u elements, starting intersection.\n",
964 (unsigned int) s->total);
965
968 &s->session_id,
969 NULL,
970 (struct GNUNET_SETI_Option[]) { { 0 } },
972 s);
973 if (GNUNET_OK !=
976 {
977 GNUNET_break (0);
980 return;
981 }
983 s->intersection_set = NULL;
984}
985
986
993static void
995 const struct ServiceRequestMessage *msg)
996{
997 struct BobServiceSession *s = cls;
998
999 s->session_id = msg->session_id; // ??
1000 s->remote_pubkey = msg->public_key;
1001 if (s->client_received_element_count == s->total)
1003}
1004
1005
1016static void *
1017cb_channel_incoming (void *cls,
1019 const struct GNUNET_PeerIdentity *initiator)
1020{
1021 struct BobServiceSession *s = cls;
1022
1024 "New incoming channel from peer %s.\n",
1025 GNUNET_i2s (initiator));
1026 GNUNET_CADET_close_port (s->port);
1027 s->port = NULL;
1028 s->channel = channel;
1029 s->peer = *initiator;
1030 s->cadet_mq = GNUNET_CADET_get_mq (s->channel);
1031 return s;
1032}
1033
1034
1042static int
1044 const struct
1046 msg)
1047{
1048 struct BobServiceSession *s = cls;
1049 uint32_t contained_count;
1050 uint16_t msize;
1051
1052 msize = ntohs (msg->header.size);
1053 contained_count = ntohl (msg->element_count_contained);
1054 if ((msize != (sizeof(struct ComputationBobCryptodataMultipartMessage)
1055 + contained_count * sizeof(struct
1057 (0 == contained_count) ||
1058 (UINT16_MAX < contained_count) ||
1059 (s->total == s->client_received_element_count) ||
1060 (s->total < s->client_received_element_count + contained_count))
1061 {
1062 GNUNET_break (0);
1063 return GNUNET_SYSERR;
1064 }
1065 return GNUNET_OK;
1066}
1067
1068
1076static void
1078 const struct
1080 msg)
1081{
1082 struct BobServiceSession *s = cls;
1083 uint32_t contained_count;
1084 const struct GNUNET_SCALARPRODUCT_Element *elements;
1085 struct GNUNET_SETI_Element set_elem;
1086 struct GNUNET_SCALARPRODUCT_Element *elem;
1087
1088 contained_count = ntohl (msg->element_count_contained);
1089 elements = (const struct GNUNET_SCALARPRODUCT_Element *) &msg[1];
1090 for (uint32_t i = 0; i < contained_count; i++)
1091 {
1093 GNUNET_memcpy (elem,
1094 &elements[i],
1095 sizeof(struct GNUNET_SCALARPRODUCT_Element));
1096 if (GNUNET_SYSERR ==
1098 &elem->key,
1099 elem,
1101 {
1102 GNUNET_break (0);
1103 GNUNET_free (elem);
1104 continue;
1105 }
1106 set_elem.data = &elem->key;
1107 set_elem.size = sizeof(elem->key);
1108 set_elem.element_type = 0;
1110 &set_elem,
1111 NULL, NULL);
1112 }
1113 s->client_received_element_count += contained_count;
1116 {
1117 /* more to come */
1118 return;
1119 }
1120 if (NULL == s->channel)
1121 {
1122 /* no Alice waiting for this request, wait for Alice */
1123 return;
1124 }
1126}
1127
1128
1137static int
1138check_bob_client_message (void *cls,
1139 const struct BobComputationMessage *msg)
1140{
1141 struct BobServiceSession *s = cls;
1142 uint32_t contained_count;
1143 uint32_t total_count;
1144 uint16_t msize;
1145
1146 if (GNUNET_SCALARPRODUCT_STATUS_INIT != s->status)
1147 {
1148 GNUNET_break (0);
1149 return GNUNET_SYSERR;
1150 }
1151 msize = ntohs (msg->header.size);
1152 total_count = ntohl (msg->element_count_total);
1153 contained_count = ntohl (msg->element_count_contained);
1154 if ((0 == total_count) ||
1155 (0 == contained_count) ||
1156 (UINT16_MAX < contained_count) ||
1157 (msize != (sizeof(struct BobComputationMessage)
1158 + contained_count * sizeof(struct
1160 {
1161 GNUNET_break_op (0);
1162 return GNUNET_SYSERR;
1163 }
1164 return GNUNET_OK;
1165}
1166
1167
1176static void
1177handle_bob_client_message (void *cls,
1178 const struct BobComputationMessage *msg)
1179{
1180 struct BobServiceSession *s = cls;
1181 struct GNUNET_MQ_MessageHandler cadet_handlers[] = {
1182 GNUNET_MQ_hd_fixed_size (alices_computation_request,
1184 struct ServiceRequestMessage,
1185 NULL),
1186 GNUNET_MQ_hd_var_size (alices_cryptodata_message,
1189 NULL),
1191 };
1192 uint32_t contained_count;
1193 uint32_t total_count;
1194 const struct GNUNET_SCALARPRODUCT_Element *elements;
1195 struct GNUNET_SETI_Element set_elem;
1196 struct GNUNET_SCALARPRODUCT_Element *elem;
1197
1198 total_count = ntohl (msg->element_count_total);
1199 contained_count = ntohl (msg->element_count_contained);
1200
1202 s->total = total_count;
1203 s->client_received_element_count = contained_count;
1204 s->session_id = msg->session_key;
1205 elements = (const struct GNUNET_SCALARPRODUCT_Element *) &msg[1];
1208 GNUNET_YES);
1210 for (uint32_t i = 0; i < contained_count; i++)
1211 {
1212 if (0 == GNUNET_ntohll (elements[i].value))
1213 continue;
1215 GNUNET_memcpy (elem,
1216 &elements[i],
1217 sizeof(struct GNUNET_SCALARPRODUCT_Element));
1218 if (GNUNET_SYSERR ==
1220 &elem->key,
1221 elem,
1223 {
1224 GNUNET_break (0);
1225 GNUNET_free (elem);
1226 continue;
1227 }
1228 set_elem.data = &elem->key;
1229 set_elem.size = sizeof(elem->key);
1230 set_elem.element_type = 0;
1232 &set_elem,
1233 NULL, NULL);
1234 s->used_element_count++;
1235 }
1237 /* We're ready, open the port */
1239 &msg->session_key,
1241 s,
1242 NULL,
1244 cadet_handlers);
1245 if (NULL == s->port)
1246 {
1247 GNUNET_break (0);
1249 return;
1250 }
1251}
1252
1253
1259static void
1260shutdown_task (void *cls)
1261{
1263 "Shutting down, initiating cleanup.\n");
1264 // FIXME: we have to cut our connections to CADET first!
1265 if (NULL != my_cadet)
1266 {
1268 my_cadet = NULL;
1269 }
1270}
1271
1272
1283static void *
1284client_connect_cb (void *cls,
1285 struct GNUNET_SERVICE_Client *client,
1286 struct GNUNET_MQ_Handle *mq)
1287{
1288 struct BobServiceSession *s;
1289
1290 s = GNUNET_new (struct BobServiceSession);
1291 s->client = client;
1292 s->client_mq = mq;
1293 return s;
1294}
1295
1296
1307static void
1308client_disconnect_cb (void *cls,
1310 void *app_cls)
1311{
1312 struct BobServiceSession *s = app_cls;
1313
1315 "Client disconnected from us.\n");
1316 s->client = NULL;
1318}
1319
1320
1328static void
1329run (void *cls,
1330 const struct GNUNET_CONFIGURATION_Handle *c,
1332{
1333 cfg = c;
1334 /*
1335 offset has to be sufficiently small to allow computation of:
1336 m1+m2 mod n == (S + a) + (S + b) mod n,
1337 if we have more complex operations, this factor needs to be lowered */
1338 my_offset = gcry_mpi_new (GNUNET_CRYPTO_PAILLIER_BITS / 3);
1339 gcry_mpi_set_bit (my_offset,
1341
1343 &my_privkey);
1346 NULL);
1347 if (NULL == my_cadet)
1348 {
1350 _ ("Connect to CADET failed\n"));
1352 return;
1353 }
1354}
1355
1356
1362 "scalarproduct-bob",
1364 &run,
1367 NULL,
1368 GNUNET_MQ_hd_var_size (bob_client_message,
1370 struct BobComputationMessage,
1371 NULL),
1372 GNUNET_MQ_hd_var_size (bob_client_message_multipart,
1375 NULL),
1377
1378
1379/* end of gnunet-service-scalarproduct_bob.c */
struct GNUNET_MessageHeader * msg
Definition 005.c:2
struct GNUNET_HashCode key
The key used in the DHT.
struct GNUNET_SCHEDULER_Task * shutdown_task
static char * value
Value of the record to add/remove.
static int status
The program status; 0 for success.
Definition gnunet-nse.c:39
static struct GNUNET_REVOCATION_Query * q
Handle for revocation query.
static struct GNUNET_SERVICE_Handle * service
Handle to our service instance.
static unsigned long long payload
How much data are we currently storing in the database?
static void handle_bob_client_message_multipart(void *cls, const struct ComputationBobCryptodataMultipartMessage *msg)
We're receiving additional set data.
static void start_intersection(struct BobServiceSession *s)
We've paired up a client session with an incoming CADET request.
static void * cb_channel_incoming(void *cls, struct GNUNET_CADET_Channel *channel, const struct GNUNET_PeerIdentity *initiator)
Function called for inbound channels on Bob's end.
static struct GNUNET_CRYPTO_PaillierPrivateKey my_privkey
Service's own private key.
static void handle_alices_cryptodata_message(void *cls, const struct AliceCryptodataMessage *msg)
Handle a multipart-chunk of a request from another service to calculate a scalarproduct with us.
static struct GNUNET_CADET_Handle * my_cadet
Handle to the CADET service.
static const struct GNUNET_CONFIGURATION_Handle * cfg
GNUnet configuration handle.
static int check_bob_client_message_multipart(void *cls, const struct ComputationBobCryptodataMultipartMessage *msg)
We're receiving additional set data.
static void prepare_client_end_notification(struct BobServiceSession *session)
Notify the client that the session has succeeded or failed.
static void transmit_bobs_cryptodata_message(struct BobServiceSession *s)
Bob generates the response message to be sent to Alice after computing the values (1),...
static void client_disconnect_cb(void *cls, struct GNUNET_SERVICE_Client *client, void *app_cls)
A client disconnected.
#define ELEMENT_CAPACITY
Maximum count of elements we can put into a multipart message.
static int check_alices_cryptodata_message(void *cls, const struct AliceCryptodataMessage *msg)
Check a multipart-chunk of a request from another service to calculate a scalarproduct with us.
static void bob_cadet_done_cb(void *cls)
MQ finished giving our last message to CADET, now notify the client that we are finished.
static void * client_connect_cb(void *cls, struct GNUNET_SERVICE_Client *client, struct GNUNET_MQ_Handle *mq)
A client connected.
static void handle_alices_computation_request(void *cls, const struct ServiceRequestMessage *msg)
Handle a request from Alice to calculate a scalarproduct with us (Bob).
static void destroy_service_session(struct BobServiceSession *s)
Destroy session state, we are done with it.
static void handle_bob_client_message(void *cls, const struct BobComputationMessage *msg)
Handler for Bob's a client request message.
static void run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service)
Initialization of the program and message handlers.
static int compute_service_response(struct BobServiceSession *session)
Compute the values (1)[]: $E_A(a_{pi(i)}) otimes E_A(- r_{pi(i)} - b_{pi(i)}) &= E_A(a_{pi(i)} - r_{p...
static int check_bob_client_message(void *cls, const struct BobComputationMessage *msg)
Handler for Bob's a client request message.
static void cb_channel_destruction(void *cls, const struct GNUNET_CADET_Channel *channel)
Function called whenever a channel is destroyed.
static int element_cmp(const void *a, const void *b)
Compare two struct MpiValues by key for sorting.
static gcry_mpi_t compute_square_sum(const gcry_mpi_t *vector, uint32_t length)
Computes the square sum over a vector of a given length.
#define LOG(kind,...)
static void transmit_cryptographic_reply(struct BobServiceSession *s)
Intersection operation and receiving data via CADET from Alice are both done, compute and transmit ou...
static int copy_element_cb(void *cls, const struct GNUNET_HashCode *key, void *value)
Iterator to copy over messages from the hash map into an array for sorting.
static void cb_intersection_element_removed(void *cls, const struct GNUNET_SETI_Element *element, uint64_t current_size, enum GNUNET_SETI_Status status)
Callback for set operation results.
static struct GNUNET_CRYPTO_PaillierPublicKey my_pubkey
Service's own public key.
static gcry_mpi_t my_offset
Service's offset for values that could possibly be negative but are plaintext for encryption.
static void transmit_bobs_cryptodata_message_multipart(struct BobServiceSession *s)
Send a multipart chunk of a service response from Bob to Alice.
static struct GNUNET_Process * p
Helper process we started.
Definition gnunet-uri.c:38
struct GNUNET_CADET_Handle * GNUNET_CADET_connect(const struct GNUNET_CONFIGURATION_Handle *cfg)
Connect to the MQ-based cadet service.
Definition cadet_api.c:897
void GNUNET_CADET_receive_done(struct GNUNET_CADET_Channel *channel)
Indicate readiness to receive the next message on a channel.
Definition cadet_api.c:875
void GNUNET_CADET_channel_destroy(struct GNUNET_CADET_Channel *channel)
Destroy an existing channel.
Definition cadet_api.c:833
struct GNUNET_MQ_Handle * GNUNET_CADET_get_mq(const struct GNUNET_CADET_Channel *channel)
Obtain the message queue for a connected channel.
Definition cadet_api.c:1081
struct GNUNET_CADET_Port * GNUNET_CADET_open_port(struct GNUNET_CADET_Handle *h, const struct GNUNET_HashCode *port, GNUNET_CADET_ConnectEventHandler connects, void *connects_cls, GNUNET_CADET_WindowSizeEventHandler window_changes, GNUNET_CADET_DisconnectEventHandler disconnects, const struct GNUNET_MQ_MessageHandler *handlers)
Open a port to receive incoming MQ-based channels.
Definition cadet_api.c:966
void GNUNET_CADET_disconnect(struct GNUNET_CADET_Handle *handle)
Disconnect from the cadet service.
Definition cadet_api.c:777
void GNUNET_CADET_close_port(struct GNUNET_CADET_Port *p)
Close a port opened with GNUNET_CADET_open_port.
Definition cadet_api.c:804
unsigned int * GNUNET_CRYPTO_random_permute(unsigned int n)
Get an array with a random permutation of the numbers 0...n-1.
uint32_t GNUNET_CRYPTO_random_u32(uint32_t i)
Produce a random value.
int GNUNET_CRYPTO_hash_cmp(const struct GNUNET_HashCode *h1, const struct GNUNET_HashCode *h2)
Compare function for HashCodes, producing a total ordering of all hashcodes.
int GNUNET_CONTAINER_multihashmap_iterate(struct GNUNET_CONTAINER_MultiHashMap *map, GNUNET_CONTAINER_MultiHashMapIteratorCallback it, void *it_cls)
Iterate over all entries in the map.
void * GNUNET_CONTAINER_multihashmap_get(const struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key)
Given a key find a value in the map matching the key.
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap_remove(struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key, const void *value)
Remove the given key-value pair from the map.
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap_put(struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key, void *value, enum GNUNET_CONTAINER_MultiHashMapOption opt)
Store a key-value pair in the map.
unsigned int GNUNET_CONTAINER_multihashmap_size(const struct GNUNET_CONTAINER_MultiHashMap *map)
Get the number of key-value pairs in the map.
struct GNUNET_CONTAINER_MultiHashMap * GNUNET_CONTAINER_multihashmap_create(unsigned int len, int do_not_copy_keys)
Create a multi hash map.
@ GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY
There must only be one value per key; storing a value should fail if a value under the same key alrea...
#define GNUNET_log(kind,...)
#define GNUNET_CRYPTO_PAILLIER_BITS
Size of paillier plain texts and public keys.
uint64_t GNUNET_ntohll(uint64_t n)
Convert unsigned 64-bit integer to host byte order.
int GNUNET_CRYPTO_paillier_encrypt(const struct GNUNET_CRYPTO_PaillierPublicKey *public_key, const gcry_mpi_t m, int desired_ops, struct GNUNET_CRYPTO_PaillierCiphertext *ciphertext)
Encrypt a plaintext with a paillier public key.
void GNUNET_CRYPTO_paillier_create(struct GNUNET_CRYPTO_PaillierPublicKey *public_key, struct GNUNET_CRYPTO_PaillierPrivateKey *private_key)
Create a freshly generated paillier public key.
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
int GNUNET_CRYPTO_paillier_hom_add(const struct GNUNET_CRYPTO_PaillierPublicKey *public_key, const struct GNUNET_CRYPTO_PaillierCiphertext *c1, const struct GNUNET_CRYPTO_PaillierCiphertext *c2, struct GNUNET_CRYPTO_PaillierCiphertext *result)
Compute a ciphertext that represents the sum of the plaintext in c1 and c2.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_SYSERR
#define GNUNET_break_op(cond)
Use this for assertion violations caused by other peers (i.e.
const char * GNUNET_i2s(const struct GNUNET_PeerIdentity *pid)
Convert a peer identity to a string (for printing debug messages).
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
const char * GNUNET_h2s(const struct GNUNET_HashCode *hc)
Convert a hash value to a string (for printing debug messages).
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_DEBUG
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_new_array(n, type)
Allocate a size n array with structs or unions of the given type.
#define GNUNET_free(ptr)
Wrapper around free.
void GNUNET_MQ_send(struct GNUNET_MQ_Handle *mq, struct GNUNET_MQ_Envelope *ev)
Send a message with the given message queue.
Definition mq.c:305
#define GNUNET_MQ_handler_end()
End-marker for the handlers array.
#define GNUNET_MQ_msg_extra(mvar, esize, type)
Allocate an envelope, with extra space allocated after the space needed by the message struct.
#define GNUNET_MQ_hd_var_size(name, code, str, ctx)
void GNUNET_MQ_notify_sent(struct GNUNET_MQ_Envelope *ev, GNUNET_SCHEDULER_TaskCallback cb, void *cb_cls)
Call a callback once the envelope has been sent, that is, sending it can not be canceled anymore.
Definition mq.c:655
#define GNUNET_MQ_hd_fixed_size(name, code, str, ctx)
const struct GNUNET_OS_ProjectData * GNUNET_OS_project_data_gnunet(void)
Return default project data used by 'libgnunetutil' for GNUnet.
#define GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ALICE_CRYPTODATA
Alice -> Bob SP crypto-data (after intersection)
#define GNUNET_MESSAGE_TYPE_SCALARPRODUCT_BOB_CRYPTODATA
Bob -> Alice SP crypto-data.
#define GNUNET_MESSAGE_TYPE_SCALARPRODUCT_CLIENT_TO_BOB
Client -> Bob.
#define GNUNET_MESSAGE_TYPE_SCALARPRODUCT_CLIENT_MULTIPART_BOB
Client -> Bob multipart.
#define GNUNET_MESSAGE_TYPE_SCALARPRODUCT_SESSION_INITIALIZATION
Alice -> Bob session initialization.
#define GNUNET_MESSAGE_TYPE_SCALARPRODUCT_BOB_CRYPTODATA_MULTIPART
Bob -> Alice SP crypto-data multipart.
@ GNUNET_SCALARPRODUCT_STATUS_INIT
Operation is still active (never returned, used internally).
@ GNUNET_SCALARPRODUCT_STATUS_ACTIVE
Operation is still active (never returned, used internally).
@ GNUNET_SCALARPRODUCT_STATUS_FAILURE
We encountered some error.
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition scheduler.c:572
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_shutdown(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run on shutdown, that is when a CTRL-C signal is received,...
Definition scheduler.c:1345
#define GNUNET_SERVICE_MAIN(pd, service_name, service_options, init_cb, connect_cb, disconnect_cb, cls,...)
Creates the "main" function for a GNUnet service.
void GNUNET_SERVICE_client_drop(struct GNUNET_SERVICE_Client *c)
Ask the server to disconnect from the given client.
Definition service.c:2463
void GNUNET_SERVICE_client_continue(struct GNUNET_SERVICE_Client *c)
Continue receiving further messages from the given client.
Definition service.c:2434
@ GNUNET_SERVICE_OPTION_NONE
Use defaults.
GNUNET_SETI_Status
Status for the result callback.
void GNUNET_SETI_destroy(struct GNUNET_SETI_Handle *set)
Destroy the set handle, and free all associated resources.
Definition seti_api.c:488
int GNUNET_SETI_add_element(struct GNUNET_SETI_Handle *set, const struct GNUNET_SETI_Element *element, GNUNET_SCHEDULER_TaskCallback cb, void *cb_cls)
Add an element to the given set.
Definition seti_api.c:447
int GNUNET_SETI_commit(struct GNUNET_SETI_OperationHandle *oh, struct GNUNET_SETI_Handle *set)
Commit a set to be used with a set operation.
Definition seti_api.c:810
struct GNUNET_SETI_OperationHandle * GNUNET_SETI_prepare(const struct GNUNET_PeerIdentity *other_peer, const struct GNUNET_HashCode *app_id, const struct GNUNET_MessageHeader *context_msg, const struct GNUNET_SETI_Option options[], GNUNET_SETI_ResultIterator result_cb, void *result_cls)
Prepare a set operation to be evaluated with another peer.
Definition seti_api.c:513
struct GNUNET_SETI_Handle * GNUNET_SETI_create(const struct GNUNET_CONFIGURATION_Handle *cfg)
Create an empty set, supporting the specified operation.
Definition seti_api.c:399
@ GNUNET_SETI_STATUS_DONE
Success, all elements have been sent (and received).
@ GNUNET_SETI_STATUS_FAILURE
The other peer refused to do the operation with us, or something went wrong.
@ GNUNET_SETI_STATUS_DEL_LOCAL
Element should be delete from the result set of the local peer, i.e.
#define max(x, y)
#define _(String)
GNU gettext support macro.
Definition platform.h:179
static struct GNUNET_MQ_Handle * mq
Our connection to the resolver service, created on-demand, but then persists until error or shutdown.
Vector of Pallier-encrypted values sent by Alice to Bob (after set intersection).
Message type passed from client to service to initiate a request or responder role.
Message type passed from responding service Bob to responding service Alice to complete a request and...
A scalarproduct session which tracks an offer for a multiplication service by a local client.
struct GNUNET_HashCode session_id
(hopefully) unique transaction ID
struct MpiElement * sorted_elements
b(Bob)
struct GNUNET_CADET_Port * port
Our open port.
struct GNUNET_CADET_Channel * channel
The CADET channel.
struct GNUNET_CRYPTO_PaillierCiphertext * r_prime
Bob's permutation q of R.
struct GNUNET_CRYPTO_PaillierCiphertext s_prime
Bob's "s'".
uint32_t total
How many elements will be supplied in total from the client.
struct GNUNET_SETI_OperationHandle * intersection_op
Set of elements for which will conduction an intersection.
uint32_t cadet_received_element_count
Counts the number of values received from Alice by us.
struct GNUNET_CONTAINER_MultiHashMap * intersected_elements
All non-0-value'd elements transmitted to us.
uint32_t cadet_transmitted_element_count
Counts the number of values transmitted from us to Alice.
struct GNUNET_MQ_Handle * cadet_mq
The message queue for this channel.
struct GNUNET_SERVICE_Client * client
The client this request is related to.
uint32_t used_element_count
How many elements actually are used for the scalar product.
struct GNUNET_CRYPTO_PaillierCiphertext * e_a
E(ai)(Bob) after applying the mask.
struct GNUNET_CRYPTO_PaillierCiphertext s
Bob's "s".
struct GNUNET_CRYPTO_PaillierCiphertext * r
Bob's permutation p of R.
struct GNUNET_SETI_Handle * intersection_set
Set of elements for which we will be conducting an intersection.
struct GNUNET_CRYPTO_PaillierPublicKey remote_pubkey
Public key of the remote service.
enum GNUNET_SCALARPRODUCT_ResponseStatus status
State of this session.
struct GNUNET_PeerIdentity peer
Originator's peer identity.
uint32_t client_received_element_count
Already transferred elements (received) for multipart messages from client.
multipart messages following struct ComputationMessage
Opaque handle to a channel.
Definition cadet.h:116
A 512-bit hashcode.
Handle to a message queue.
Definition mq.c:87
Message handler for a specific message type.
The identity of the host (wraps the signing key of the peer).
An element key-value pair for scalarproduct.
struct GNUNET_HashCode key
Key used to identify matching pairs of values to multiply.
int64_t value
Value to multiply in scalar product, in NBO.
Handle to a client that is connected to a service.
Definition service.c:249
Handle to a service.
Definition service.c:116
Element stored in a set.
const void * data
Actual data of the element.
Option for set operations.
An encrypted element key-value pair.
const struct GNUNET_HashCode * key
Key used to identify matching pairs of values to multiply.
int64_t value
a_i value, not disclosed to Bob.
Message type passed from requesting service Alice to responding service Bob to initiate a request and...

Function Documentation

◆ free_element_cb()

static int free_element_cb ( void *  cls,
const struct GNUNET_HashCode key,
void *  value 
)
static

Callback used to free the elements in the map.

Parameters
clsNULL
keykey of the element
valuethe value to free

Definition at line 238 of file gnunet-service-scalarproduct_bob.c.

241{
242 struct GNUNET_SCALARPRODUCT_Element *element = value;
243
244 GNUNET_free (element);
245 return GNUNET_OK;
246}

References GNUNET_free, GNUNET_OK, and value.

Referenced by destroy_service_session().

Here is the caller graph for this function:

◆ destroy_service_session()

static void destroy_service_session ( struct BobServiceSession s)
static

Destroy session state, we are done with it.

Parameters
sessionthe session to free elements from

Definition at line 255 of file gnunet-service-scalarproduct_bob.c.

256{
257 unsigned int i;
258
259 if (GNUNET_YES == s->in_destroy)
260 return;
262 if (NULL != s->client)
263 {
264 struct GNUNET_SERVICE_Client *c = s->client;
265
266 s->client = NULL;
268 }
269 if (NULL != s->intersected_elements)
270 {
273 NULL);
275 s->intersected_elements = NULL;
276 }
277 if (NULL != s->intersection_op)
278 {
280 s->intersection_op = NULL;
281 }
282 if (NULL != s->intersection_set)
283 {
285 s->intersection_set = NULL;
286 }
287 if (NULL != s->e_a)
288 {
289 GNUNET_free (s->e_a);
290 s->e_a = NULL;
291 }
292 if (NULL != s->sorted_elements)
293 {
294 for (i = 0; i < s->used_element_count; i++)
295 gcry_mpi_release (s->sorted_elements[i].value);
297 s->sorted_elements = NULL;
298 }
299 if (NULL != s->r)
300 {
301 GNUNET_free (s->r);
302 s->r = NULL;
303 }
304 if (NULL != s->r_prime)
305 {
306 GNUNET_free (s->r_prime);
307 s->r_prime = NULL;
308 }
309 if (NULL != s->port)
310 {
312 s->port = NULL;
313 }
314 if (NULL != s->channel)
315 {
317 s->channel = NULL;
318 }
319 GNUNET_free (s);
320}
static int free_element_cb(void *cls, const struct GNUNET_HashCode *key, void *value)
Callback used to free the elements in the map.
void GNUNET_CONTAINER_multihashmap_destroy(struct GNUNET_CONTAINER_MultiHashMap *map)
Destroy a hash map.
void GNUNET_SETI_operation_cancel(struct GNUNET_SETI_OperationHandle *oh)
Cancel the given set operation.
Definition seti_api.c:335
int in_destroy
Are we already in destroy_service_session()?

References BobServiceSession::channel, BobServiceSession::client, BobServiceSession::e_a, free_element_cb(), GNUNET_CADET_channel_destroy(), GNUNET_CADET_close_port(), GNUNET_CONTAINER_multihashmap_destroy(), GNUNET_CONTAINER_multihashmap_iterate(), GNUNET_free, GNUNET_SERVICE_client_drop(), GNUNET_SETI_destroy(), GNUNET_SETI_operation_cancel(), GNUNET_YES, BobServiceSession::in_destroy, BobServiceSession::intersected_elements, BobServiceSession::intersection_op, BobServiceSession::intersection_set, BobServiceSession::port, BobServiceSession::r, BobServiceSession::r_prime, BobServiceSession::sorted_elements, BobServiceSession::used_element_count, and MpiElement::value.

Referenced by cb_channel_destruction(), and client_disconnect_cb().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ prepare_client_end_notification()

static void prepare_client_end_notification ( struct BobServiceSession session)
static

Notify the client that the session has succeeded or failed.

This message gets sent to Bob's client if the operation completed or Alice disconnected.

Parameters
sessionthe associated client session to fail or succeed

Definition at line 331 of file gnunet-service-scalarproduct_bob.c.

332{
334 struct GNUNET_MQ_Envelope *e;
335
336 if (NULL == session->client_mq)
337 return; /* no client left to be notified */
339 "Sending session-end notification with status %d to client for session %s\n",
340 session->status,
341 GNUNET_h2s (&session->session_id));
342 e = GNUNET_MQ_msg (msg,
344 msg->range = 0;
345 msg->product_length = htonl (0);
346 msg->status = htonl (session->status);
347 GNUNET_MQ_send (session->client_mq,
348 e);
349}
#define GNUNET_MQ_msg(mvar, type)
Allocate a GNUNET_MQ_Envelope.
#define GNUNET_MESSAGE_TYPE_SCALARPRODUCT_RESULT
Alice/Bob -> Client Result.
struct GNUNET_MQ_Handle * client_mq
Client message queue.
Message type passed from service client to finalize a session as requester or responder.

References BobServiceSession::client_mq, GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_log, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_RESULT, GNUNET_MQ_msg, GNUNET_MQ_send(), msg, BobServiceSession::session_id, and BobServiceSession::status.

Referenced by bob_cadet_done_cb(), cb_channel_destruction(), and cb_intersection_element_removed().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ cb_channel_destruction()

static void cb_channel_destruction ( void *  cls,
const struct GNUNET_CADET_Channel channel 
)
static

Function called whenever a channel is destroyed.

Should clean up any associated state.

It must NOT call GNUNET_CADET_channel_destroy() on the channel.

Parameters
clsthe struct BobServiceSession
channelconnection to the other end (henceforth invalid)

Definition at line 362 of file gnunet-service-scalarproduct_bob.c.

364{
365 struct BobServiceSession *s = cls;
366
368 "Peer disconnected, terminating session %s with peer %s\n",
369 GNUNET_h2s (&s->session_id),
370 GNUNET_i2s (&s->peer));
372 {
375 }
376 s->channel = NULL;
378}

References destroy_service_session(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_i2s(), GNUNET_log, GNUNET_SCALARPRODUCT_STATUS_ACTIVE, GNUNET_SCALARPRODUCT_STATUS_FAILURE, prepare_client_end_notification(), and BobServiceSession::s.

Referenced by handle_bob_client_message().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ bob_cadet_done_cb()

static void bob_cadet_done_cb ( void *  cls)
static

MQ finished giving our last message to CADET, now notify the client that we are finished.

Definition at line 386 of file gnunet-service-scalarproduct_bob.c.

387{
388 struct BobServiceSession *session = cls;
389
392}
@ GNUNET_SCALARPRODUCT_STATUS_SUCCESS
The computation was successful.

References GNUNET_SCALARPRODUCT_STATUS_SUCCESS, prepare_client_end_notification(), and BobServiceSession::status.

Referenced by transmit_bobs_cryptodata_message(), and transmit_bobs_cryptodata_message_multipart().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ transmit_bobs_cryptodata_message_multipart()

static void transmit_bobs_cryptodata_message_multipart ( struct BobServiceSession s)
static

Send a multipart chunk of a service response from Bob to Alice.

This element only contains the two permutations of R, R'.

Parameters
sthe associated service session

Definition at line 411 of file gnunet-service-scalarproduct_bob.c.

412{
415 struct GNUNET_MQ_Envelope *e;
416 unsigned int i;
417 unsigned int j;
418 uint32_t todo_count;
419
421 {
423 if (todo_count > ELEMENT_CAPACITY / 2)
424 todo_count = ELEMENT_CAPACITY / 2;
425
427 "Sending %u additional crypto values to Alice\n",
428 (unsigned int) todo_count);
430 todo_count * sizeof(struct
432 * 2,
434 msg->contained_element_count = htonl (todo_count);
436 for (i = s->cadet_transmitted_element_count, j = 0; i <
437 s->cadet_transmitted_element_count + todo_count; i++)
438 {
439 // r[i][p] and r[i][q]
440 GNUNET_memcpy (&payload[j++],
441 &s->r[i],
442 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
443 GNUNET_memcpy (&payload[j++],
444 &s->r_prime[i],
445 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
446 }
447 s->cadet_transmitted_element_count += todo_count;
451 s);
453 e);
454 }
456 "All values queued for Alice, Bob is done\n");
457}

References bob_cadet_done_cb(), BobServiceSession::cadet_mq, BobServiceSession::cadet_transmitted_element_count, ELEMENT_CAPACITY, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_BOB_CRYPTODATA_MULTIPART, GNUNET_MQ_msg_extra, GNUNET_MQ_notify_sent(), GNUNET_MQ_send(), msg, payload, BobServiceSession::r, BobServiceSession::r_prime, and BobServiceSession::used_element_count.

Referenced by transmit_bobs_cryptodata_message().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ transmit_bobs_cryptodata_message()

static void transmit_bobs_cryptodata_message ( struct BobServiceSession s)
static

Bob generates the response message to be sent to Alice after computing the values (1), (2), S and S'.

(1)[]: $E_A(a_{pi(i)}) times E_A(- r_{pi(i)} - b_{pi(i)}) &= E_A(a_{pi(i)} - r_{pi(i)} - b_{pi(i)})$ (2)[]: $E_A(a_{pi'(i)}) times E_A(- r_{pi'(i)}) &= E_A(a_{pi'(i)} - r_{pi'(i)})$ S: $S := E_A(sum (r_i + b_i)^2)$ S': $S' := E_A(sum r_i^2)$

Parameters
sthe associated requesting session with Alice

Definition at line 472 of file gnunet-service-scalarproduct_bob.c.

473{
475 struct GNUNET_MQ_Envelope *e;
477 unsigned int i;
478
480 = ((GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE - 1 - sizeof(struct
482 / sizeof(struct GNUNET_CRYPTO_PaillierCiphertext) / 2) - 1;
485
488 * sizeof(struct GNUNET_CRYPTO_PaillierCiphertext),
490 msg->contained_element_count = htonl (s->cadet_transmitted_element_count);
491
493 "Sending %u/%u crypto values to Alice\n",
494 (unsigned int) s->cadet_transmitted_element_count,
495 (unsigned int) s->used_element_count);
496
499 &s->s,
500 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
502 &s->s_prime,
503 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
504
505 payload = &payload[2];
506 // convert k[][]
507 for (i = 0; i < s->cadet_transmitted_element_count; i++)
508 {
509 // k[i][p] and k[i][q]
510 GNUNET_memcpy (&payload[i * 2],
511 &s->r[i],
512 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
513 GNUNET_memcpy (&payload[i * 2 + 1],
514 &s->r_prime[i],
515 sizeof(struct GNUNET_CRYPTO_PaillierCiphertext));
516 }
520 s);
522 e);
524}

References bob_cadet_done_cb(), BobServiceSession::cadet_mq, BobServiceSession::cadet_transmitted_element_count, GNUNET_CONSTANTS_MAX_CADET_MESSAGE_SIZE, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_BOB_CRYPTODATA, GNUNET_MQ_msg_extra, GNUNET_MQ_notify_sent(), GNUNET_MQ_send(), msg, payload, BobServiceSession::r, BobServiceSession::r_prime, BobServiceSession::s, BobServiceSession::s_prime, transmit_bobs_cryptodata_message_multipart(), and BobServiceSession::used_element_count.

Referenced by transmit_cryptographic_reply().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ compute_square_sum()

static gcry_mpi_t compute_square_sum ( const gcry_mpi_t *  vector,
uint32_t  length 
)
static

Computes the square sum over a vector of a given length.

Parameters
vectorthe vector to compute over
lengththe length of the vector
Returns
an MPI value containing the calculated sum, never NULL TODO: code duplication with Alice!

Definition at line 539 of file gnunet-service-scalarproduct_bob.c.

541{
542 gcry_mpi_t elem;
543 gcry_mpi_t sum;
544 uint32_t i;
545
546 GNUNET_assert (NULL != (sum = gcry_mpi_new (0)));
547 GNUNET_assert (NULL != (elem = gcry_mpi_new (0)));
548 for (i = 0; i < length; i++)
549 {
550 gcry_mpi_mul (elem, vector[i], vector[i]);
551 gcry_mpi_add (sum, sum, elem);
552 }
553 gcry_mpi_release (elem);
554 return sum;
555}

References GNUNET_assert.

Referenced by compute_service_response().

Here is the caller graph for this function:

◆ compute_service_response()

static int compute_service_response ( struct BobServiceSession session)
static

Compute the values (1)[]: $E_A(a_{pi(i)}) otimes E_A(- r_{pi(i)} - b_{pi(i)}) &= E_A(a_{pi(i)} - r_{pi(i)} - b_{pi(i)})$ (2)[]: $E_A(a_{pi'(i)}) otimes E_A(- r_{pi'(i)}) &= E_A(a_{pi'(i)} - r_{pi'(i)})$ S: $S := E_A(sum (r_i + b_i)^2)$ S': $S' := E_A(sum r_i^2)$.

Parameters
sessionthe requesting session + bob's requesting peer
Returns
GNUNET_OK on success

Definition at line 569 of file gnunet-service-scalarproduct_bob.c.

570{
571 uint32_t i;
572 unsigned int *p;
573 unsigned int *q;
574 uint32_t count;
575 gcry_mpi_t *rand;
576 gcry_mpi_t tmp;
577 const struct MpiElement *b;
580 struct GNUNET_CRYPTO_PaillierCiphertext *r_prime;
581
582 count = session->used_element_count;
583 a = session->e_a;
584 b = session->sorted_elements;
587 rand = GNUNET_malloc (sizeof(gcry_mpi_t) * count);
588 for (i = 0; i < count; i++)
589 GNUNET_assert (NULL != (rand[i] = gcry_mpi_new (0)));
590 r = GNUNET_malloc (sizeof(struct GNUNET_CRYPTO_PaillierCiphertext) * count);
591 r_prime = GNUNET_malloc (sizeof(struct GNUNET_CRYPTO_PaillierCiphertext)
592 * count);
593
594 for (i = 0; i < count; i++)
595 {
596 int32_t svalue;
597
598 svalue = (int32_t) GNUNET_CRYPTO_random_u32 (UINT32_MAX);
599 // long to gcry_mpi_t
600 if (svalue < 0)
601 gcry_mpi_sub_ui (rand[i],
602 rand[i],
603 -svalue);
604 else
605 rand[i] = gcry_mpi_set_ui (rand[i], svalue);
606 }
607
608 tmp = gcry_mpi_new (0);
609 // encrypt the element
610 // for the sake of readability I decided to have dedicated permutation
611 // vectors, which get rid of all the lookups in p/q.
612 // however, ap/aq are not absolutely necessary but are just abstraction
613 // Calculate Kp = E(S + a_pi) (+) E(S - r_pi - b_pi)
614 for (i = 0; i < count; i++)
615 {
616 // E(S - r_pi - b_pi)
617 gcry_mpi_sub (tmp, my_offset, rand[p[i]]);
618 gcry_mpi_sub (tmp, tmp, b[p[i]].value);
619 GNUNET_assert (2 ==
621 tmp,
622 2,
623 &r[i]));
624
625 // E(S - r_pi - b_pi) * E(S + a_pi) == E(2*S + a - r - b)
626 if (GNUNET_OK !=
628 &r[i],
629 &a[p[i]],
630 &r[i]))
631 {
632 GNUNET_break_op (0);
633 goto error_cleanup;
634 }
635 }
636
637 // Calculate Kq = E(S + a_qi) (+) E(S - r_qi)
638 for (i = 0; i < count; i++)
639 {
640 // E(S - r_qi)
641 gcry_mpi_sub (tmp, my_offset, rand[q[i]]);
642 GNUNET_assert (2 ==
644 tmp,
645 2,
646 &r_prime[i]));
647
648 // E(S - r_qi) * E(S + a_qi) == E(2*S + a_qi - r_qi)
649 if (GNUNET_OK !=
651 &r_prime[i],
652 &a[q[i]],
653 &r_prime[i]))
654 {
655 GNUNET_break_op (0);
656 goto error_cleanup;
657 }
658 }
659 gcry_mpi_release (tmp);
660
661 // Calculate S' = E(SUM( r_i^2 ))
662 tmp = compute_square_sum (rand, count);
663 GNUNET_assert (1 ==
665 tmp,
666 1,
667 &session->s_prime));
668 gcry_mpi_release (tmp);
669
670 // Calculate S = E(SUM( (r_i + b_i)^2 ))
671 for (i = 0; i < count; i++)
672 gcry_mpi_add (rand[i], rand[i], b[i].value);
673 tmp = compute_square_sum (rand, count);
674 GNUNET_assert (1 ==
676 tmp,
677 1,
678 &session->s));
679 gcry_mpi_release (tmp);
680
681 session->r = r;
682 session->r_prime = r_prime;
683
684 for (i = 0; i < count; i++)
685 gcry_mpi_release (rand[i]);
686 GNUNET_free (session->e_a);
687 session->e_a = NULL;
688 GNUNET_free (p);
689 GNUNET_free (q);
690 GNUNET_free (rand);
691 return GNUNET_OK;
692
693error_cleanup:
694 GNUNET_free (r);
695 GNUNET_free (r_prime);
696 gcry_mpi_release (tmp);
697 GNUNET_free (p);
698 GNUNET_free (q);
699 for (i = 0; i < count; i++)
700 gcry_mpi_release (rand[i]);
701 GNUNET_free (rand);
702 return GNUNET_SYSERR;
703}

References compute_square_sum(), BobServiceSession::e_a, GNUNET_assert, GNUNET_break_op, GNUNET_CRYPTO_paillier_encrypt(), GNUNET_CRYPTO_paillier_hom_add(), GNUNET_CRYPTO_random_permute(), GNUNET_CRYPTO_random_u32(), GNUNET_free, GNUNET_malloc, GNUNET_OK, GNUNET_SYSERR, my_offset, p, q, BobServiceSession::r, BobServiceSession::r_prime, BobServiceSession::remote_pubkey, BobServiceSession::s, BobServiceSession::s_prime, BobServiceSession::sorted_elements, BobServiceSession::used_element_count, and value.

Referenced by transmit_cryptographic_reply().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ copy_element_cb()

static int copy_element_cb ( void *  cls,
const struct GNUNET_HashCode key,
void *  value 
)
static

Iterator to copy over messages from the hash map into an array for sorting.

Parameters
clsthe struct BobServiceSession *
keythe key (unused)
valuethe struct GNUNET_SCALARPRODUCT_Element * TODO: code duplication with Alice!

Definition at line 716 of file gnunet-service-scalarproduct_bob.c.

719{
720 struct BobServiceSession *s = cls;
722 gcry_mpi_t mval;
723 int64_t val;
724
725 mval = gcry_mpi_new (0);
726 val = (int64_t) GNUNET_ntohll (e->value);
727 if (0 > val)
728 gcry_mpi_sub_ui (mval, mval, -val);
729 else
730 gcry_mpi_add_ui (mval, mval, val);
734 return GNUNET_OK;
735}

References GNUNET_ntohll(), GNUNET_OK, MpiElement::key, GNUNET_SCALARPRODUCT_Element::key, BobServiceSession::s, BobServiceSession::sorted_elements, BobServiceSession::used_element_count, value, MpiElement::value, and GNUNET_SCALARPRODUCT_Element::value.

Referenced by transmit_cryptographic_reply().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ element_cmp()

static int element_cmp ( const void *  a,
const void *  b 
)
static

Compare two struct MpiValues by key for sorting.

Parameters
apointer to first struct MpiValue *
bpointer to first struct MpiValue *
Returns
-1 for a < b, 0 for a=b, 1 for a > b. TODO: code duplication with Alice!

Definition at line 747 of file gnunet-service-scalarproduct_bob.c.

749{
750 const struct MpiElement *ma = a;
751 const struct MpiElement *mb = b;
752
753 return GNUNET_CRYPTO_hash_cmp (ma->key,
754 mb->key);
755}

References GNUNET_CRYPTO_hash_cmp(), and MpiElement::key.

Referenced by transmit_cryptographic_reply().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ transmit_cryptographic_reply()

static void transmit_cryptographic_reply ( struct BobServiceSession s)
static

Intersection operation and receiving data via CADET from Alice are both done, compute and transmit our reply via CADET.

Parameters
ssession to transmit reply for.

Definition at line 766 of file gnunet-service-scalarproduct_bob.c.

767{
768 struct GNUNET_CADET_Channel *channel;
769
770 /* TODO: code duplication with Alice! */
772 "Received everything, building reply for Alice\n");
776 * sizeof(struct MpiElement));
777 s->used_element_count = 0;
780 s);
781 qsort (s->sorted_elements,
783 sizeof(struct MpiElement),
784 &element_cmp);
785 if (GNUNET_OK !=
787 {
788 channel = s->channel;
789 s->channel = NULL;
791 return;
792 }
794}

References BobServiceSession::channel, compute_service_response(), copy_element_cb(), element_cmp(), GNUNET_CADET_channel_destroy(), GNUNET_CONTAINER_multihashmap_iterate(), GNUNET_CONTAINER_multihashmap_size(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_malloc, GNUNET_OK, BobServiceSession::intersected_elements, LOG, BobServiceSession::sorted_elements, transmit_bobs_cryptodata_message(), and BobServiceSession::used_element_count.

Referenced by cb_intersection_element_removed(), and handle_alices_cryptodata_message().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ check_alices_cryptodata_message()

static int check_alices_cryptodata_message ( void *  cls,
const struct AliceCryptodataMessage msg 
)
static

Check a multipart-chunk of a request from another service to calculate a scalarproduct with us.

Parameters
clsthe struct BobServiceSession *
msgthe actual message
Returns
GNUNET_OK to keep the connection open, GNUNET_SYSERR to close it (signal serious error)

Definition at line 807 of file gnunet-service-scalarproduct_bob.c.

809{
810 struct BobServiceSession *s = cls;
811 uint32_t contained_elements;
812 size_t msg_length;
813 uint16_t msize;
814 unsigned int max;
815
816 msize = ntohs (msg->header.size);
817 contained_elements = ntohl (msg->contained_element_count);
818 /* Our intersection may still be ongoing, but this is nevertheless
819 an upper bound on the required array size */
820 max = GNUNET_CONTAINER_multihashmap_size (s->intersected_elements);
821 msg_length = sizeof(struct AliceCryptodataMessage)
822 + contained_elements * sizeof(struct
824 if ((msize != msg_length) ||
825 (0 == contained_elements) ||
826 (contained_elements > UINT16_MAX) ||
827 (max < contained_elements + s->cadet_received_element_count))
828 {
829 GNUNET_break_op (0);
830 return GNUNET_SYSERR;
831 }
832 return GNUNET_OK;
833}

References BobServiceSession::cadet_received_element_count, GNUNET_break_op, GNUNET_CONTAINER_multihashmap_size(), GNUNET_OK, GNUNET_SYSERR, max, msg, BobServiceSession::s, and GNUNET_MessageHeader::size.

Here is the call graph for this function:

◆ handle_alices_cryptodata_message()

static void handle_alices_cryptodata_message ( void *  cls,
const struct AliceCryptodataMessage msg 
)
static

Handle a multipart-chunk of a request from another service to calculate a scalarproduct with us.

Parameters
clsthe struct BobServiceSession *
msgthe actual message

Definition at line 844 of file gnunet-service-scalarproduct_bob.c.

846{
847 struct BobServiceSession *s = cls;
849 uint32_t contained_elements;
850 unsigned int max;
851
852 contained_elements = ntohl (msg->contained_element_count);
853 /* Our intersection may still be ongoing, but this is nevertheless
854 an upper bound on the required array size */
857 "Received %u crypto values from Alice\n",
858 (unsigned int) contained_elements);
859
860 payload = (const struct GNUNET_CRYPTO_PaillierCiphertext *) &msg[1];
861 if (NULL == s->e_a)
865 payload,
867 * contained_elements);
868 s->cadet_received_element_count += contained_elements;
869
870 if ((s->cadet_received_element_count == max) &&
871 (NULL == s->intersection_op))
872 {
873 /* intersection has finished also on our side, and
874 we got the full set, so we can proceed with the
875 CADET response(s) */
877 }
879}

References BobServiceSession::cadet_received_element_count, BobServiceSession::channel, BobServiceSession::e_a, GNUNET_CADET_receive_done(), GNUNET_CONTAINER_multihashmap_size(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_memcpy, GNUNET_new_array, BobServiceSession::intersected_elements, BobServiceSession::intersection_op, max, msg, payload, BobServiceSession::s, and transmit_cryptographic_reply().

Here is the call graph for this function:

◆ cb_intersection_element_removed()

static void cb_intersection_element_removed ( void *  cls,
const struct GNUNET_SETI_Element element,
uint64_t  current_size,
enum GNUNET_SETI_Status  status 
)
static

Callback for set operation results.

Called for each element that needs to be removed from the result set.

Parameters
clsclosure with the struct BobServiceSession
elementa result element, only valid if status is #GNUNET_SETI_STATUS_OK
current_sizecurrent set size
statuswhat has happened with the set intersection?

Definition at line 892 of file gnunet-service-scalarproduct_bob.c.

896{
897 struct BobServiceSession *s = cls;
899
900 switch (status)
901 {
903 /* this element has been removed from the set */
905 element->data);
906 GNUNET_assert (NULL != se);
908 "Removed element with key %s and value %lld\n",
909 GNUNET_h2s (&se->key),
910 (long long) GNUNET_ntohll (se->value));
914 element->data,
915 se));
916 GNUNET_free (se);
917 return;
919 s->intersection_op = NULL;
920 GNUNET_break (NULL == s->intersection_set);
923 "Finished intersection, %d items remain\n",
927 {
928 /* CADET transmission from Alice is also already done,
929 start with our own reply */
931 }
932 return;
934 /* unhandled status code */
936 "Set intersection failed!\n");
937 s->intersection_op = NULL;
938 if (NULL != s->intersection_set)
939 {
941 s->intersection_set = NULL;
942 }
945 return;
946 default:
947 GNUNET_break (0);
948 return;
949 }
950}

References BobServiceSession::channel, BobServiceSession::client_received_element_count, GNUNET_SETI_Element::data, GNUNET_assert, GNUNET_break, GNUNET_CADET_receive_done(), GNUNET_CONTAINER_multihashmap_get(), GNUNET_CONTAINER_multihashmap_remove(), GNUNET_CONTAINER_multihashmap_size(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_h2s(), GNUNET_ntohll(), GNUNET_SCALARPRODUCT_STATUS_FAILURE, GNUNET_SETI_destroy(), GNUNET_SETI_STATUS_DEL_LOCAL, GNUNET_SETI_STATUS_DONE, GNUNET_SETI_STATUS_FAILURE, GNUNET_YES, BobServiceSession::intersected_elements, BobServiceSession::intersection_op, BobServiceSession::intersection_set, GNUNET_SCALARPRODUCT_Element::key, LOG, prepare_client_end_notification(), BobServiceSession::s, status, BobServiceSession::status, transmit_cryptographic_reply(), and GNUNET_SCALARPRODUCT_Element::value.

Here is the call graph for this function:

◆ start_intersection()

static void start_intersection ( struct BobServiceSession s)
static

We've paired up a client session with an incoming CADET request.

Initiate set intersection work.

Parameters
sclient session to start intersection for

Definition at line 960 of file gnunet-service-scalarproduct_bob.c.

961{
963 "Got session with key %s and %u elements, starting intersection.\n",
965 (unsigned int) s->total);
966
969 &s->session_id,
970 NULL,
971 (struct GNUNET_SETI_Option[]) { { 0 } },
973 s);
974 if (GNUNET_OK !=
977 {
978 GNUNET_break (0);
981 return;
982 }
984 s->intersection_set = NULL;
985}

References GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_log, GNUNET_SETI_prepare(), BobServiceSession::intersection_op, BobServiceSession::peer, BobServiceSession::session_id, and BobServiceSession::total.

Referenced by handle_alices_computation_request(), and handle_bob_client_message_multipart().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ handle_alices_computation_request()

static void handle_alices_computation_request ( void *  cls,
const struct ServiceRequestMessage msg 
)
static

Handle a request from Alice to calculate a scalarproduct with us (Bob).

Parameters
clsthe struct BobServiceSession *
msgthe actual message

Definition at line 995 of file gnunet-service-scalarproduct_bob.c.

997{
998 struct BobServiceSession *s = cls;
999
1000 s->session_id = msg->session_id; // ??
1001 s->remote_pubkey = msg->public_key;
1002 if (s->client_received_element_count == s->total)
1004}

References msg, BobServiceSession::s, and start_intersection().

Here is the call graph for this function:

◆ cb_channel_incoming()

static void * cb_channel_incoming ( void *  cls,
struct GNUNET_CADET_Channel channel,
const struct GNUNET_PeerIdentity initiator 
)
static

Function called for inbound channels on Bob's end.

Does some preliminary initialization, more happens after we get Alice's first message.

Parameters
clsclosure with the struct BobServiceSession
channelnew handle to the channel
initiatorpeer that started the channel
Returns
session associated with the channel

Definition at line 1018 of file gnunet-service-scalarproduct_bob.c.

1021{
1022 struct BobServiceSession *s = cls;
1023
1025 "New incoming channel from peer %s.\n",
1026 GNUNET_i2s (initiator));
1027 GNUNET_CADET_close_port (s->port);
1028 s->port = NULL;
1029 s->channel = channel;
1030 s->peer = *initiator;
1031 s->cadet_mq = GNUNET_CADET_get_mq (s->channel);
1032 return s;
1033}

References BobServiceSession::channel, GNUNET_CADET_close_port(), GNUNET_CADET_get_mq(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_i2s(), GNUNET_log, and BobServiceSession::s.

Referenced by handle_bob_client_message().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ check_bob_client_message_multipart()

static int check_bob_client_message_multipart ( void *  cls,
const struct ComputationBobCryptodataMultipartMessage msg 
)
static

We're receiving additional set data.

Check it is well-formed.

Parameters
clsidentification of the client
msgthe actual message
Returns
GNUNET_OK if msg is well-formed

Definition at line 1044 of file gnunet-service-scalarproduct_bob.c.

1048{
1049 struct BobServiceSession *s = cls;
1050 uint32_t contained_count;
1051 uint16_t msize;
1052
1053 msize = ntohs (msg->header.size);
1054 contained_count = ntohl (msg->element_count_contained);
1055 if ((msize != (sizeof(struct ComputationBobCryptodataMultipartMessage)
1056 + contained_count * sizeof(struct
1058 (0 == contained_count) ||
1059 (UINT16_MAX < contained_count) ||
1060 (s->total == s->client_received_element_count) ||
1061 (s->total < s->client_received_element_count + contained_count))
1062 {
1063 GNUNET_break (0);
1064 return GNUNET_SYSERR;
1065 }
1066 return GNUNET_OK;
1067}

References GNUNET_break, GNUNET_OK, GNUNET_SYSERR, msg, BobServiceSession::s, and GNUNET_MessageHeader::size.

◆ handle_bob_client_message_multipart()

static void handle_bob_client_message_multipart ( void *  cls,
const struct ComputationBobCryptodataMultipartMessage msg 
)
static

We're receiving additional set data.

Add it to our set and if we are done, initiate the transaction.

Parameters
clsidentification of the client
msgthe actual message

Definition at line 1078 of file gnunet-service-scalarproduct_bob.c.

1082{
1083 struct BobServiceSession *s = cls;
1084 uint32_t contained_count;
1085 const struct GNUNET_SCALARPRODUCT_Element *elements;
1086 struct GNUNET_SETI_Element set_elem;
1087 struct GNUNET_SCALARPRODUCT_Element *elem;
1088
1089 contained_count = ntohl (msg->element_count_contained);
1090 elements = (const struct GNUNET_SCALARPRODUCT_Element *) &msg[1];
1091 for (uint32_t i = 0; i < contained_count; i++)
1092 {
1094 GNUNET_memcpy (elem,
1095 &elements[i],
1096 sizeof(struct GNUNET_SCALARPRODUCT_Element));
1097 if (GNUNET_SYSERR ==
1099 &elem->key,
1100 elem,
1102 {
1103 GNUNET_break (0);
1104 GNUNET_free (elem);
1105 continue;
1106 }
1107 set_elem.data = &elem->key;
1108 set_elem.size = sizeof(elem->key);
1109 set_elem.element_type = 0;
1111 &set_elem,
1112 NULL, NULL);
1113 }
1114 s->client_received_element_count += contained_count;
1117 {
1118 /* more to come */
1119 return;
1120 }
1121 if (NULL == s->channel)
1122 {
1123 /* no Alice waiting for this request, wait for Alice */
1124 return;
1125 }
1127}

References BobServiceSession::channel, BobServiceSession::client, BobServiceSession::client_received_element_count, GNUNET_SETI_Element::data, GNUNET_SETI_Element::element_type, GNUNET_break, GNUNET_CONTAINER_multihashmap_put(), GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY, GNUNET_free, GNUNET_memcpy, GNUNET_new, GNUNET_SERVICE_client_continue(), GNUNET_SETI_add_element(), GNUNET_SYSERR, BobServiceSession::intersected_elements, BobServiceSession::intersection_set, GNUNET_SCALARPRODUCT_Element::key, msg, BobServiceSession::s, GNUNET_SETI_Element::size, start_intersection(), and BobServiceSession::total.

Here is the call graph for this function:

◆ check_bob_client_message()

static int check_bob_client_message ( void *  cls,
const struct BobComputationMessage msg 
)
static

Handler for Bob's a client request message.

Check msg is well-formed.

Parameters
clsidentification of the client
msgthe actual message
Returns
GNUNET_OK if msg is well-formed

Definition at line 1139 of file gnunet-service-scalarproduct_bob.c.

1141{
1142 struct BobServiceSession *s = cls;
1143 uint32_t contained_count;
1144 uint32_t total_count;
1145 uint16_t msize;
1146
1147 if (GNUNET_SCALARPRODUCT_STATUS_INIT != s->status)
1148 {
1149 GNUNET_break (0);
1150 return GNUNET_SYSERR;
1151 }
1152 msize = ntohs (msg->header.size);
1153 total_count = ntohl (msg->element_count_total);
1154 contained_count = ntohl (msg->element_count_contained);
1155 if ((0 == total_count) ||
1156 (0 == contained_count) ||
1157 (UINT16_MAX < contained_count) ||
1158 (msize != (sizeof(struct BobComputationMessage)
1159 + contained_count * sizeof(struct
1161 {
1162 GNUNET_break_op (0);
1163 return GNUNET_SYSERR;
1164 }
1165 return GNUNET_OK;
1166}

References GNUNET_break, GNUNET_break_op, GNUNET_OK, GNUNET_SCALARPRODUCT_STATUS_INIT, GNUNET_SYSERR, msg, BobServiceSession::s, and GNUNET_MessageHeader::size.

◆ handle_bob_client_message()

static void handle_bob_client_message ( void *  cls,
const struct BobComputationMessage msg 
)
static

Handler for Bob's a client request message.

Bob is in the response role, keep the values + session and waiting for a matching session or process a waiting request from Alice.

Parameters
clsidentification of the client
msgthe actual message

Definition at line 1178 of file gnunet-service-scalarproduct_bob.c.

1180{
1181 struct BobServiceSession *s = cls;
1182 struct GNUNET_MQ_MessageHandler cadet_handlers[] = {
1183 GNUNET_MQ_hd_fixed_size (alices_computation_request,
1185 struct ServiceRequestMessage,
1186 NULL),
1187 GNUNET_MQ_hd_var_size (alices_cryptodata_message,
1190 NULL),
1192 };
1193 uint32_t contained_count;
1194 uint32_t total_count;
1195 const struct GNUNET_SCALARPRODUCT_Element *elements;
1196 struct GNUNET_SETI_Element set_elem;
1197 struct GNUNET_SCALARPRODUCT_Element *elem;
1198
1199 total_count = ntohl (msg->element_count_total);
1200 contained_count = ntohl (msg->element_count_contained);
1201
1203 s->total = total_count;
1204 s->client_received_element_count = contained_count;
1205 s->session_id = msg->session_key;
1206 elements = (const struct GNUNET_SCALARPRODUCT_Element *) &msg[1];
1209 GNUNET_YES);
1211 for (uint32_t i = 0; i < contained_count; i++)
1212 {
1213 if (0 == GNUNET_ntohll (elements[i].value))
1214 continue;
1216 GNUNET_memcpy (elem,
1217 &elements[i],
1218 sizeof(struct GNUNET_SCALARPRODUCT_Element));
1219 if (GNUNET_SYSERR ==
1221 &elem->key,
1222 elem,
1224 {
1225 GNUNET_break (0);
1226 GNUNET_free (elem);
1227 continue;
1228 }
1229 set_elem.data = &elem->key;
1230 set_elem.size = sizeof(elem->key);
1231 set_elem.element_type = 0;
1233 &set_elem,
1234 NULL, NULL);
1235 s->used_element_count++;
1236 }
1238 /* We're ready, open the port */
1240 &msg->session_key,
1242 s,
1243 NULL,
1245 cadet_handlers);
1246 if (NULL == s->port)
1247 {
1248 GNUNET_break (0);
1250 return;
1251 }
1252}

References cb_channel_destruction(), cb_channel_incoming(), cfg, BobServiceSession::client, BobServiceSession::client_received_element_count, GNUNET_SETI_Element::data, GNUNET_SETI_Element::element_type, GNUNET_break, GNUNET_CADET_open_port(), GNUNET_CONTAINER_multihashmap_create(), GNUNET_CONTAINER_multihashmap_put(), GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY, GNUNET_free, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_ALICE_CRYPTODATA, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_SESSION_INITIALIZATION, GNUNET_MQ_handler_end, GNUNET_MQ_hd_fixed_size, GNUNET_MQ_hd_var_size, GNUNET_new, GNUNET_ntohll(), GNUNET_SCALARPRODUCT_STATUS_ACTIVE, GNUNET_SERVICE_client_continue(), GNUNET_SERVICE_client_drop(), GNUNET_SETI_add_element(), GNUNET_SETI_create(), GNUNET_SYSERR, GNUNET_YES, BobServiceSession::intersected_elements, BobServiceSession::intersection_set, GNUNET_SCALARPRODUCT_Element::key, msg, my_cadet, BobServiceSession::port, BobServiceSession::s, BobServiceSession::session_id, GNUNET_SETI_Element::size, BobServiceSession::status, BobServiceSession::total, BobServiceSession::used_element_count, and value.

Here is the call graph for this function:

◆ shutdown_task()

static void shutdown_task ( void *  cls)
static

Task run during shutdown.

Parameters
clsunused

Definition at line 1261 of file gnunet-service-scalarproduct_bob.c.

1262{
1264 "Shutting down, initiating cleanup.\n");
1265 // FIXME: we have to cut our connections to CADET first!
1266 if (NULL != my_cadet)
1267 {
1269 my_cadet = NULL;
1270 }
1271}

References GNUNET_CADET_disconnect(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, and my_cadet.

Here is the call graph for this function:

◆ client_connect_cb()

static void * client_connect_cb ( void *  cls,
struct GNUNET_SERVICE_Client client,
struct GNUNET_MQ_Handle mq 
)
static

A client connected.

Setup the associated data structure.

Parameters
clsclosure, NULL
clientidentification of the client
mqmessage queue to communicate with client
Returns
our struct BobServiceSession

Definition at line 1285 of file gnunet-service-scalarproduct_bob.c.

1288{
1289 struct BobServiceSession *s;
1290
1291 s = GNUNET_new (struct BobServiceSession);
1292 s->client = client;
1293 s->client_mq = mq;
1294 return s;
1295}

References BobServiceSession::client, GNUNET_new, mq, and BobServiceSession::s.

◆ client_disconnect_cb()

static void client_disconnect_cb ( void *  cls,
struct GNUNET_SERVICE_Client client,
void *  app_cls 
)
static

A client disconnected.

Remove the associated session(s), release data structures and cancel pending outgoing transmissions to the client.

Parameters
clsclosure, NULL
clientidentification of the client
app_clsour struct BobServiceSession

Definition at line 1309 of file gnunet-service-scalarproduct_bob.c.

1312{
1313 struct BobServiceSession *s = app_cls;
1314
1316 "Client disconnected from us.\n");
1317 s->client = NULL;
1319}

References destroy_service_session(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, and BobServiceSession::s.

Here is the call graph for this function:

◆ run()

static void run ( void *  cls,
const struct GNUNET_CONFIGURATION_Handle c,
struct GNUNET_SERVICE_Handle service 
)
static

Initialization of the program and message handlers.

Parameters
clsclosure
cconfiguration to use
servicethe initialized service

Definition at line 1330 of file gnunet-service-scalarproduct_bob.c.

1333{
1334 cfg = c;
1335 /*
1336 offset has to be sufficiently small to allow computation of:
1337 m1+m2 mod n == (S + a) + (S + b) mod n,
1338 if we have more complex operations, this factor needs to be lowered */
1339 my_offset = gcry_mpi_new (GNUNET_CRYPTO_PAILLIER_BITS / 3);
1340 gcry_mpi_set_bit (my_offset,
1342
1344 &my_privkey);
1347 NULL);
1348 if (NULL == my_cadet)
1349 {
1351 _ ("Connect to CADET failed\n"));
1353 return;
1354 }
1355}

References _, cfg, GNUNET_CADET_connect(), GNUNET_CRYPTO_PAILLIER_BITS, GNUNET_CRYPTO_paillier_create(), GNUNET_ERROR_TYPE_ERROR, GNUNET_log, GNUNET_SCHEDULER_add_shutdown(), GNUNET_SCHEDULER_shutdown(), my_cadet, my_offset, my_privkey, my_pubkey, and shutdown_task.

Here is the call graph for this function:

◆ GNUNET_SERVICE_MAIN()

GNUNET_SERVICE_MAIN ( GNUNET_OS_project_data_gnunet()  ,
"scalarproduct-bob"  ,
GNUNET_SERVICE_OPTION_NONE  ,
run,
client_connect_cb,
client_disconnect_cb,
NULL  ,
GNUNET_MQ_hd_var_size(bob_client_message, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_CLIENT_TO_BOB, struct BobComputationMessage, NULL)  ,
GNUNET_MQ_hd_var_size(bob_client_message_multipart, GNUNET_MESSAGE_TYPE_SCALARPRODUCT_CLIENT_MULTIPART_BOB, struct ComputationBobCryptodataMultipartMessage, NULL)  ,
GNUNET_MQ_handler_end()   
)

Define "main" method using service macro.

Variable Documentation

◆ cfg

const struct GNUNET_CONFIGURATION_Handle* cfg
static

GNUnet configuration handle.

Definition at line 207 of file gnunet-service-scalarproduct_bob.c.

Referenced by handle_bob_client_message(), and run().

◆ my_pubkey

struct GNUNET_CRYPTO_PaillierPublicKey my_pubkey
static

Service's own public key.

Definition at line 212 of file gnunet-service-scalarproduct_bob.c.

Referenced by run().

◆ my_privkey

struct GNUNET_CRYPTO_PaillierPrivateKey my_privkey
static

Service's own private key.

Definition at line 217 of file gnunet-service-scalarproduct_bob.c.

Referenced by run().

◆ my_offset

gcry_mpi_t my_offset
static

Service's offset for values that could possibly be negative but are plaintext for encryption.

Definition at line 222 of file gnunet-service-scalarproduct_bob.c.

Referenced by compute_service_response(), and run().

◆ my_cadet

struct GNUNET_CADET_Handle* my_cadet
static

Handle to the CADET service.

Definition at line 227 of file gnunet-service-scalarproduct_bob.c.

Referenced by handle_bob_client_message(), run(), and shutdown_task().