#include "Processor/Data_Files.h" #include "Processor/Processor.h" #include "Processor/ReplicatedPrep.h" #include "Processor/MaliciousRepPrep.h" #include "GC/MaliciousRepSecret.h" #include "Math/MaliciousRep3Share.h" #include "Processor/MaliciousRepPrep.hpp" #include #include const char* DataPositions::field_names[] = { "gfp", "gf2n", "bit", "int64" }; template<> const bool Sub_Data_Files::implemented[N_DTYPE] = { true, true, true, true, false, false } ; template<> const bool Sub_Data_Files>::implemented[N_DTYPE] = { true, true, true, true, true, true } ; template<> const bool Sub_Data_Files>::implemented[N_DTYPE] = { false, false, true, false, false, false } ; template<> const bool Sub_Data_Files>::implemented[N_DTYPE] = { true, true, true, true, false, false } ; template<> const bool Sub_Data_Files>::implemented[N_DTYPE] = { true, true, true, true, false, false } ; template<> const bool Sub_Data_Files>::implemented[N_DTYPE] = { true, true, true, true, false, false } ; template<> const bool Sub_Data_Files>::implemented[N_DTYPE] = { true, true, true, true, false, false } ; template<> const bool Sub_Data_Files::implemented[N_DTYPE] = { true, false, true, false, false, false } ; const int DataPositions::tuple_size[N_DTYPE] = { 3, 2, 1, 2, 3, 3 }; template Lock Sub_Data_Files::tuple_lengths_lock; template map Sub_Data_Files::tuple_lengths; template<> template<> Preprocessing>* Preprocessing>::get_new( Machine, Rep3Share>& machine, DataPositions& usage) { if (machine.live_prep) return new ReplicatedPrep>; else return new Sub_Data_Files>(machine.get_N(), machine.prep_dir_prefix, usage); } template<> template<> Preprocessing>* Preprocessing>::get_new( Machine, Rep3Share>& machine, DataPositions& usage) { if (machine.live_prep) return new ReplicatedPrep>; else return new Sub_Data_Files>(machine.get_N(), machine.prep_dir_prefix, usage); } template<> template<> Preprocessing>* Preprocessing>::get_new( Machine, MaliciousRep3Share>& machine, DataPositions& usage) { if (machine.live_prep) return new MaliciousRepPrep; else return new Sub_Data_Files>(machine.get_N(), machine.prep_dir_prefix, usage); } template<> template<> Preprocessing>* Preprocessing>::get_new( Machine, MaliciousRep3Share>& machine, DataPositions& usage) { if (machine.live_prep) return new MaliciousRepPrep; else return new Sub_Data_Files>(machine.get_N(), machine.prep_dir_prefix, usage); } template template Preprocessing* Preprocessing::get_new(Machine& machine, DataPositions& usage) { return new Sub_Data_Files(machine.get_N(), machine.prep_dir_prefix, usage); } void DataPositions::set_num_players(int num_players) { files.resize(N_DATA_FIELD_TYPE, vector(N_DTYPE)); inputs.resize(num_players, vector(N_DATA_FIELD_TYPE)); } void DataPositions::increase(const DataPositions& delta) { if (inputs.size() != delta.inputs.size()) throw invalid_length(); for (unsigned int field_type = 0; field_type < N_DATA_FIELD_TYPE; field_type++) { for (unsigned int dtype = 0; dtype < N_DTYPE; dtype++) files[field_type][dtype] += delta.files[field_type][dtype]; for (unsigned int j = 0; j < inputs.size(); j++) inputs[j][field_type] += delta.inputs[j][field_type]; map::const_iterator it; const map& delta_ext = delta.extended[field_type]; for (it = delta_ext.begin(); it != delta_ext.end(); it++) extended[field_type][it->first] += it->second; } } void DataPositions::print_cost() const { ifstream file("cost"); double total_cost = 0; for (int i = 0; i < N_DATA_FIELD_TYPE; i++) { if (accumulate(files[i].begin(), files[i].end(), 0) > 0) cerr << " Type " << field_names[i] << endl; bool reading_field = true; for (int j = 0; j < N_DTYPE; j++) { double cost_per_item = 0; if (reading_field) file >> cost_per_item; if (cost_per_item < 0) { reading_field = false; cost_per_item = 0; } long long items_used = files[i][j]; double cost = items_used * cost_per_item; total_cost += cost; cerr.fill(' '); if (items_used) cerr << " " << setw(10) << cost << " = " << setw(10) << items_used << " " << setw(14) << dtype_names[j] << " @ " << setw(11) << cost_per_item << endl; } for (map::const_iterator it = extended[i].begin(); it != extended[i].end(); it++) { cerr.fill(' '); cerr << setw(27) << it->second << " " << setw(14) << it->first.get_string() << endl; } } if (total_cost > 0) cerr << "Total cost: " << total_cost << endl; } template int Sub_Data_Files::tuple_length(int dtype) { return DataPositions::tuple_size[dtype] * T::size(); } template string Sub_Data_Files::get_suffix(int thread_num) { #ifdef INSECURE (void) thread_num; return ""; #else if (thread_num >= 0) return "-T" + to_string(thread_num); else return ""; #endif } template Sub_Data_Files::Sub_Data_Files(int my_num, int num_players, const string& prep_data_dir, DataPositions& usage, int thread_num) : my_num(my_num), num_players(num_players), prep_data_dir(prep_data_dir), usage(usage) { cerr << "Setting up Data_Files in: " << prep_data_dir << endl; char filename[1024]; string suffix = get_suffix(thread_num); for (int dtype = 0; dtype < N_DTYPE; dtype++) { if (implemented[dtype]) { sprintf(filename,(prep_data_dir + "%s-%s-P%d%s").c_str(),DataPositions::dtype_names[dtype], (T::type_short()).c_str(),my_num,suffix.c_str()); buffers[dtype].setup(filename, tuple_length(dtype), DataPositions::dtype_names[dtype]); } } input_buffers.resize(num_players); for (int i=0; i Data_Files::Data_Files(Machine& machine) : usage(machine.get_N().num_players()), DataFp(*Preprocessing::get_new(machine, usage)), DataF2(*Preprocessing::get_new(machine, usage)) { } template Sub_Data_Files::~Sub_Data_Files() { for (int i = 0; i < N_DTYPE; i++) buffers[i].close(); for (int i = 0; i < num_players; i++) input_buffers[i].close(); my_input_buffers.close(); for (auto it = extended.begin(); it != extended.end(); it++) it->second.close(); } template void Sub_Data_Files::seekg(DataPositions& pos) { DataFieldType field_type = T::field_type(); for (int dtype = 0; dtype < N_DTYPE; dtype++) if (implemented[dtype]) buffers[dtype].seekg(pos.files[field_type][dtype]); for (int j = 0; j < num_players; j++) if (j == my_num) my_input_buffers.seekg(pos.inputs[j][field_type]); else input_buffers[j].seekg(pos.inputs[j][field_type]); for (map::const_iterator it = pos.extended[field_type].begin(); it != pos.extended[field_type].end(); it++) { setup_extended(it->first); extended[it->first].seekg(it->second); } } template void Data_Files::seekg(DataPositions& pos) { DataFp.seekg(pos); DataF2.seekg(pos); usage = pos; } template void Data_Files::skip(const DataPositions& pos) { DataPositions new_pos = usage; new_pos.increase(pos); seekg(new_pos); } template void Sub_Data_Files::prune() { for (auto& buffer : buffers) buffer.prune(); my_input_buffers.prune(); for (int j = 0; j < num_players; j++) input_buffers[j].prune(); for (auto it : extended) it.second.prune(); } template void Data_Files::prune() { DataFp.prune(); DataF2.prune(); } template void Sub_Data_Files::purge() { for (auto& buffer : buffers) buffer.purge(); my_input_buffers.purge(); for (int j = 0; j < num_players; j++) input_buffers[j].purge(); for (auto it : extended) it.second.purge(); } template void Data_Files::purge() { DataFp.purge(); DataF2.purge(); } template void Sub_Data_Files::setup_extended(const DataTag& tag, int tuple_size) { BufferBase& buffer = extended[tag]; tuple_lengths_lock.lock(); int tuple_length = tuple_lengths[tag]; int my_tuple_length = tuple_size * T::size(); if (tuple_length > 0) { if (tuple_size > 0 && my_tuple_length != tuple_length) { stringstream ss; ss << "Inconsistent size of " << T::type_string() << " " << tag.get_string() << ": " << my_tuple_length << " vs " << tuple_length; throw Processor_Error(ss.str()); } } else tuple_lengths[tag] = my_tuple_length; tuple_lengths_lock.unlock(); if (!buffer.is_up()) { stringstream ss; ss << prep_data_dir << tag.get_string() << "-" << T::type_short() << "-P" << my_num; extended[tag].setup(ss.str(), tuple_length); } } template void Sub_Data_Files::get(vector& S, DataTag tag, const vector& regs, int vector_size) { usage.extended[T::field_type()][tag] += vector_size; setup_extended(tag, regs.size()); for (int j = 0; j < vector_size; j++) for (unsigned int i = 0; i < regs.size(); i++) extended[tag].input(S[regs[i] + j]); } template class Sub_Data_Files>; template class Sub_Data_Files; template class Sub_Data_Files>; template class Sub_Data_Files>; template class Sub_Data_Files>; template class Sub_Data_Files; template class Sub_Data_Files>; template class Sub_Data_Files>; template class Data_Files>; template class Data_Files, Rep3Share>; template class Data_Files, Rep3Share>; template class Data_Files, MaliciousRep3Share>;