share-conversion.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. //template<size_t N>
  2. int64_t binary_to_decimal(int64_t* inp, size_t logn)
  3. {
  4. int64_t output = 0;
  5. for(size_t j = 0; j < logn; ++j)
  6. {
  7. output += (1ULL << j) * inp[j];
  8. }
  9. return output;
  10. }
  11. struct shareconversion
  12. {
  13. int64_t PM, PM_recv, rb, FCWshare_reconstruction;
  14. };
  15. struct shareconversion_Pb
  16. {
  17. int64_t PM, FCW;
  18. };
  19. /**
  20. * @brief This function is used to convert the XOR-ed shared flag bits into additive shares of the same
  21. *
  22. * @param sockets0
  23. * @param sockets1
  24. * @param socket_no
  25. */
  26. void convert_sharesP2 ( size_t db_nitems, __m128i** output0, int8_t ** flags0, __m128i** output1, int8_t ** flags1,
  27. int64_t ** leaves0, int64_t ** leafbits0, int64_t ** leaves1, int64_t ** leafbits1,
  28. std::vector<socket_t>& sockets0, std::vector<socket_t>& sockets1, size_t i, size_t socket_no = 0)
  29. {
  30. du_attalah_P2(sockets0, sockets1, socket_no);
  31. shareconversion shareconversionP0, shareconversionP1;
  32. boost::asio::read(sockets0[i], boost::asio::buffer(&shareconversionP0, sizeof(shareconversion)));
  33. boost::asio::read(sockets1[i], boost::asio::buffer(&shareconversionP1, sizeof(shareconversion)));
  34. for(size_t j = 0; j < db_nitems; ++j)
  35. {
  36. output1[i][j] = -output1[i][j];
  37. flags1[i][j] = -flags1[i][j];
  38. }
  39. int64_t * flags0_ = (int64_t *)std::aligned_alloc(sizeof(node_t), db_nitems * sizeof(int64_t));
  40. int64_t * flags1_ = (int64_t *)std::aligned_alloc(sizeof(node_t), db_nitems * sizeof(int64_t));
  41. for(size_t j = 0; j < db_nitems; ++j)
  42. {
  43. leaves0[i][j] = output0[i][j][0];
  44. leaves1[i][j] = output1[i][j][0];
  45. flags0_[j] = (flags0[i][j] * shareconversionP0.PM) + (flags0[i][j] * shareconversionP0.PM_recv) + (flags0[i][j] * shareconversionP0.rb);
  46. flags0_[j] += output0[i][j][1];
  47. flags1_[j] = (flags1[i][j] * shareconversionP1.PM) + (flags1[i][j] * shareconversionP1.PM_recv) + (flags1[i][j] * shareconversionP1.rb);
  48. flags1_[j] += output1[i][j][1];
  49. flags0_[j] -= (flags0[i][j] * shareconversionP0.FCWshare_reconstruction);
  50. flags1_[j] -= (flags1[i][j] * shareconversionP1.FCWshare_reconstruction);
  51. flags0[i][j] = flags0_[j];
  52. flags1[i][j] = flags1_[j];
  53. if(flags0[i][j] == 128 || flags0[i][j] == -128) flags0[i][j] = 0;
  54. leafbits0[i][j] = flags0[i][j];
  55. if(flags1[i][j] == 128 || flags1[i][j] == -128) flags1[i][j] = 0;
  56. leafbits1[i][j] = flags1[i][j];
  57. }
  58. #ifdef VERBOSE
  59. for(size_t j = 0; j < db_nitems; ++j)
  60. {
  61. int64_t leafbit_reconstruction = leafbits0[i][j] + leafbits1[i][j];
  62. if(leafbit_reconstruction != 0) std::cout << std::dec << j << ":-> " << leafbit_reconstruction << std::endl;
  63. }
  64. #endif
  65. }
  66. void P2_xor_to_additive(tcp::socket& s0, tcp::socket& s1, size_t socket_no)
  67. {
  68. uint64_t x0, x1, y0, y1, gamma0, gamma1, alpha;
  69. arc4random_buf(&x0, sizeof(uint64_t));
  70. arc4random_buf(&x1, sizeof(uint64_t));
  71. arc4random_buf(&y0, sizeof(uint64_t));
  72. arc4random_buf(&y1, sizeof(uint64_t));
  73. arc4random_buf(&alpha, sizeof(uint64_t));
  74. gamma0 = (x0 * y1) - alpha;
  75. gamma1 = alpha;
  76. #ifdef VERBOSE
  77. std::cout << "x0 = " << x0 << std::endl;
  78. std::cout << "x1 = " << x1 << std::endl;
  79. std::cout << "gamma0 = " << gamma0 << std::endl;
  80. #endif
  81. boost::asio::write(s0, boost::asio::buffer(&x0, sizeof(x0)));
  82. boost::asio::write(s0, boost::asio::buffer(&gamma0, sizeof(gamma0)));
  83. boost::asio::write(s1, boost::asio::buffer(&y1, sizeof(y1)));
  84. boost::asio::write(s1, boost::asio::buffer(&gamma1, sizeof(gamma1)));
  85. }
  86. void xor_to_additive(bool party, uint8_t * target_share_read, tcp::socket& sb, tcp::socket& s2, const size_t height, int64_t& R_share)
  87. {
  88. const size_t logn = height;
  89. //std::array<uint64_t, logn> b, b_blinded, b_recv;
  90. int64_t b[64], b_blinded[64], b_recv[64];
  91. for(size_t j = 0; j < logn; ++j)
  92. {
  93. b[j] = target_share_read[logn-j - 1];
  94. #ifdef DEBUG
  95. uint8_t target_bit_rec;
  96. boost::asio::write(sb, boost::asio::buffer(&target_share_read[j], sizeof(uint8_t)));
  97. boost::asio::read(sb, boost::asio::buffer(&target_bit_rec, sizeof(uint8_t)));
  98. if(target_bit_rec != target_share_read[j]) std::cout << "non-zero XOR index = " << j << std::endl;
  99. #endif
  100. }
  101. #ifdef DEBUG
  102. uint64_t b_ = binary_to_decimal(b, logn);;
  103. std::cout << "b_ = " << b_ << std::endl;
  104. #endif
  105. // std::array<uint64_t, logn> c_mul;
  106. // std::array<uint64_t, logn> d;
  107. //uint64_t c_mul[logn], d[logn];
  108. int64_t * c_mul = (int64_t*) malloc(logn * sizeof(int64_t));
  109. int64_t * d = (int64_t*) malloc(logn * sizeof(int64_t));
  110. int64_t BLIND, Gamma;
  111. boost::asio::read(s2, boost::asio::buffer(&BLIND, sizeof(int64_t)));
  112. boost::asio::read(s2, boost::asio::buffer(&Gamma, sizeof(int64_t)));
  113. for(size_t j = 0; j < logn; ++j)
  114. {
  115. b_blinded[j] = b[j] + BLIND;
  116. }
  117. boost::asio::write(sb, boost::asio::buffer(&b_blinded, logn * sizeof(b_blinded[0])));
  118. boost::asio::read (sb, boost::asio::buffer(&b_recv, logn * sizeof(b_recv[0])));
  119. #ifdef DEBUG
  120. std::cout << "BLIND = " << BLIND << std::endl;
  121. std::cout << "Gamma = " << Gamma << std::endl;
  122. #endif
  123. // uint64_t R_share = 0;
  124. if(!party)
  125. {
  126. for(size_t j = 0; j < logn; ++j)
  127. {
  128. c_mul[j] = (b[j] * b_recv[j]) + Gamma;
  129. d[j] = (b[j] - 2 * c_mul[j]);
  130. R_share += (1ULL << j) * d[j];
  131. }
  132. }
  133. if(party)
  134. {
  135. for(size_t j = 0; j < logn; ++j)
  136. {
  137. c_mul[j] = -(BLIND * b_recv[j]) + Gamma;
  138. d[j] = (b[j] - 2 * c_mul[j]);
  139. R_share += (1ULL << j) * d[j];
  140. }
  141. }
  142. #ifdef DEBUG
  143. for(size_t j = 0; j < 1; ++j)
  144. {
  145. std::cout << "b = " << b[j] << std::endl;
  146. int64_t mul_Rec = 0;
  147. boost::asio::write(sb, boost::asio::buffer(&c_mul[j], sizeof(c_mul[j])));
  148. boost::asio::read(sb, boost::asio::buffer(&mul_Rec, sizeof(mul_Rec)));
  149. std::cout << "c_mul = " << c_mul[j] << std::endl;
  150. mul_Rec = mul_Rec + c_mul[j];
  151. std::cout << "mul_Rec = " << mul_Rec << std::endl;
  152. }
  153. //std::array<uint64_t, logn> b_reconstruction_;
  154. //std::array<uint64_t, logn> d_reconstruction_;
  155. // uint64_t b_reconstruction_[logn], d_reconstruction_[logn], d_recv[logn];
  156. int64_t * b_reconstruction_ = (int64_t*) malloc(logn * sizeof(int64_t));
  157. int64_t * d_reconstruction_ = (int64_t*) malloc(logn * sizeof(int64_t));
  158. int64_t * d_recv = (int64_t*) malloc(logn * sizeof(int64_t));
  159. //std::array<uint64_t, logn> d_recv;
  160. for(size_t j = 0; j < logn; ++j)
  161. {
  162. boost::asio::write(sb, boost::asio::buffer(&d[j], sizeof(d[j])));
  163. boost::asio::read(sb, boost::asio::buffer(&d_recv[j], sizeof(d_recv[j])));
  164. }
  165. boost::asio::write(sb, boost::asio::buffer(&b, logn * sizeof(b[0])));
  166. boost::asio::read (sb, boost::asio::buffer(&b_recv, logn * sizeof(b_recv[0])));
  167. for(size_t j = 0; j < logn; ++j)
  168. {
  169. int64_t d_reconstruction = d[j] + d_recv[j];
  170. d_reconstruction_[j] = d_reconstruction;
  171. int64_t b_reconstruction = b[j] ^ b_recv[j];
  172. b_reconstruction_[j] = b_reconstruction;
  173. assert(d_reconstruction == b_reconstruction);
  174. }
  175. int64_t b_value = binary_to_decimal(b_reconstruction_, logn);
  176. std::cout << "b_value = " << b_value << std::endl;
  177. std::cout << "logn = " << logn << std::endl;
  178. std::cout << "R_share = " << R_share << std::endl;
  179. #endif
  180. R_share = binary_to_decimal(d, logn);
  181. #ifdef DEBUG
  182. std::cout << "R_share = " << R_share << std::endl;
  183. int64_t R_share_reconstruction;
  184. boost::asio::write(sb, boost::asio::buffer(&R_share, sizeof(R_share)));
  185. boost::asio::read(sb, boost::asio::buffer(&R_share_reconstruction, sizeof(R_share_reconstruction)));
  186. R_share_reconstruction = R_share_reconstruction + R_share;
  187. std::cout << "R_share_reconstruction = " << R_share_reconstruction << std::endl;
  188. std::cout << "b_value = " << b_value << std::endl;
  189. std::cout << "d_recons = " << binary_to_decimal(d_reconstruction_, logn) << std::endl;
  190. #endif
  191. // return R_share;
  192. }
  193. void convert_shares(size_t i, __m128i ** output, int8_t ** flags, size_t n_threads, size_t db_nitems, __m128i * final_correction_word,
  194. int64_t ** leaves, int64_t ** leafbits, std::vector<socket_t>& socketsb, std::vector<socket_t>& sockets2, bool party)
  195. {
  196. #ifdef DEBUG
  197. std::cout << "share conversion " << i << "-th, thread started runing" << std::endl << std::endl;
  198. #endif
  199. for(size_t j = 0; j < db_nitems; ++j)
  200. {
  201. if(party)
  202. {
  203. output[i][j] = -output[i][j];
  204. flags[i][j] = -flags[i][j];
  205. }
  206. }
  207. int64_t pm = 0;
  208. int64_t rb;
  209. arc4random_buf(&rb, sizeof(rb));
  210. for(size_t j = 0; j < db_nitems; ++j)
  211. {
  212. if(party)
  213. {
  214. if(flags[i][j] != 0) pm -= 1;
  215. }
  216. if(!party)
  217. {
  218. if(flags[i][j] != 0) pm += 1;
  219. }
  220. }
  221. int64_t FCWshare = du_attalah_Pb(final_correction_word[i][1], pm, sockets2[i], socketsb[i]);
  222. //FCWshare+=rb;
  223. //int64_t FCWshare_reconstruction;
  224. shareconversion_Pb share_b, share_b_recv;
  225. // boost::asio::write(socketsb[i], boost::asio::buffer(&FCWshare, sizeof(FCWshare)));
  226. // boost::asio::read(socketsb[i], boost::asio::buffer(&FCWshare_reconstruction, sizeof(FCWshare_reconstruction)));
  227. // FCWshare_reconstruction = FCWshare_reconstruction + FCWshare;
  228. // int64_t PM = pm + rb;
  229. share_b.PM = pm + rb;// PM;
  230. share_b.FCW = FCWshare+=rb;
  231. boost::asio::write(socketsb[i], boost::asio::buffer(&share_b, sizeof(share_b)));
  232. boost::asio::read(socketsb[i], boost::asio::buffer(&share_b_recv, sizeof(share_b_recv)));
  233. share_b_recv.FCW = share_b_recv.FCW + share_b.FCW;
  234. // int64_t PM_recv;
  235. // boost::asio::write(socketsb[i], boost::asio::buffer(&PM, sizeof(PM))); //Sending the blinded shares of +/- 1
  236. // boost::asio::read(socketsb[i], boost::asio::buffer(&PM_recv, sizeof(PM_recv))); //Receiving the blinded shares of +/- 1
  237. int64_t * flags_ = (int64_t *)std::aligned_alloc(sizeof(node_t), db_nitems * sizeof(int64_t));
  238. shareconversion P2_shareconversion;
  239. P2_shareconversion.PM = pm;
  240. P2_shareconversion.PM_recv = share_b_recv.PM;// PM_recv;
  241. P2_shareconversion.rb = rb;
  242. P2_shareconversion.FCWshare_reconstruction = share_b_recv.FCW; //FCWshare_reconstruction;
  243. boost::asio::write(sockets2[i], boost::asio::buffer(&P2_shareconversion, sizeof(shareconversion)));
  244. for(size_t j = 0; j < db_nitems; ++j)
  245. {
  246. leaves[i][j] = output[i][j][0];
  247. flags_[j] = (flags[i][j] * pm) + (flags[i][j] * share_b_recv.PM) + (flags[i][j] * rb);
  248. flags_[j] += output[i][j][1];
  249. flags_[j] -= (flags[i][j] * P2_shareconversion.FCWshare_reconstruction);
  250. #ifdef DEBUG
  251. int64_t flags_rec;
  252. boost::asio::write(socketsb[i], boost::asio::buffer(&flags_[j], sizeof(flags_[j])));
  253. boost::asio::read(socketsb[i], boost::asio::buffer(&flags_rec, sizeof(flags_rec)));
  254. flags_rec = flags_rec + flags_[j];
  255. if(flags_rec != 0)
  256. {
  257. std::cout << j << " ---> Flag Reconstruction = " << flags_rec << std::endl;
  258. }
  259. #endif
  260. flags[i][j] = flags_[j];
  261. if(flags[i][j] == 128 || flags[i][j] == -128) flags[i][j] = 0;
  262. leafbits[i][j] = flags[i][j];
  263. #ifdef DEBUG
  264. int8_t flags_rec2;
  265. boost::asio::write(socketsb[i], boost::asio::buffer(&flags[i][j], sizeof(flags[i][j])));
  266. boost::asio::read(socketsb[i], boost::asio::buffer(&flags_rec2, sizeof(flags_rec2)));
  267. flags_rec2 = flags_rec2 + flags[i][j];
  268. int64_t flags_rec3;
  269. boost::asio::write(socketsb[i], boost::asio::buffer(&flags_[j], sizeof(flags_[j])));
  270. boost::asio::read(socketsb[i], boost::asio::buffer(&flags_rec3, sizeof(flags_rec3)));
  271. flags_rec3 = flags_rec3 + flags_[j];
  272. if(flags_rec2 != 0)
  273. {
  274. std::cout << j << " ---> Flag Reconstruction = " << (int) flags_rec2 << "----->>>>> " << flags_rec3 << std::endl;
  275. if(flags_rec2 != 1) std::cout << (int) flags[i][j] << "-> " << flags_[j] << std::endl;
  276. }
  277. #endif
  278. }
  279. // write_evalfull_outs_into_a_file(party, i, db_nitems, flags[i], leaves[i], final_correction_word[i]);
  280. }