-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMpcTask.java
395 lines (358 loc) · 9.38 KB
/
MpcTask.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/*
* Copyright (C) 2021 Stealth Software Technologies, Inc.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
package com.stealthsoftwareinc.bmc;
/* begin_imports */
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.LinkedBlockingQueue;
/* end_imports */
/**
* Performs an MPC calculation.
*/
public final class MpcTask
implements
Callable<String>
{
public interface Channel {
void send(
byte[] buf
) throws IOException;
default void recv(
byte[] buf
) throws IOException {
throw new IllegalStateException("isPush");
}
default boolean isPush(
) {
return true;
}
}
/**
* Converts a push channel into a pull channel.
*/
private static final class PushToPull
implements
Channel
{
private final Channel channel;
private final BlockingQueue<byte[]> queue;
// slop buffer for implementing recv()
private byte[] slop = new byte[1024]; // starting capacity
private int slopLen = 0; // how much can be consumed in total
private int slopIdx = 0; // how much has been consumed so far
public PushToPull(
final Channel channel,
final BlockingQueue<byte[]> queue
) {
if (channel == null) {
throw new IllegalArgumentException(
"channel == null"
);
}
if (queue == null) {
throw new IllegalArgumentException(
"queue == null"
);
}
this.channel = channel;
this.queue = queue;
}
@Override
public final void send(
final byte[] buf
) throws
IOException
{
if (buf == null) {
throw new IllegalArgumentException(
"buf == null"
);
}
channel.send(buf);
}
@Override
public final void recv(
final byte[] buf
) throws
IOException
{
if (buf == null) {
throw new IllegalArgumentException(
"buf == null"
);
}
int bufIdx = slopLen - slopIdx;
if (bufIdx >= buf.length) {
// slop is enough, no need to consume any messages
System.arraycopy(slop, slopIdx, buf, 0, buf.length);
slopIdx += buf.length;
return;
}
// otherwise, start by consuming all the slop
System.arraycopy(slop, slopIdx, buf, 0, bufIdx);
// then consume queue entries until we're done
while (bufIdx < buf.length) {
final int want = buf.length - bufIdx;
final byte[] r;
try {
r = queue.take();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new IOException(e);
}
if (r.length < want) {
// r isn't enough, another loop iteration will occur
System.arraycopy(r, 0, buf, bufIdx, r.length);
bufIdx += r.length;
} else {
// r is enough, this will be the last loop iteration
System.arraycopy(r, 0, buf, bufIdx, want);
bufIdx += want;
// put any remaining data into the slop buffer
slopLen = r.length - want;
slopIdx = 0;
if (slopLen > slop.length) {
slop = new byte[slopLen];
}
System.arraycopy(r, want, slop, 0, slopLen);
}
}
}
@Override
public final boolean isPush(
) {
return false;
}
}
private final Channel[] channels;
private final HashMap<Channel, BlockingQueue<byte[]>> channelQueues;
private final int partyCount;
private final int partyIndex;
private final int func;
private final String[] args;
private final String[] log;
public MpcTask(
final String circuitFile,
final String inputString,
final Iterable<Channel> channels,
final boolean logEnabled
) {
if (circuitFile == null) {
throw new IllegalArgumentException(
"circuitFile == null"
);
}
if (inputString == null) {
throw new IllegalArgumentException(
"inputString == null"
);
}
if (channels == null) {
throw new IllegalArgumentException(
"channels == null"
);
}
{
final ArrayList<Channel> xs = new ArrayList<>();
channelQueues = new HashMap<>();
int i = 0;
int j = -1;
for (final Channel channel : channels) {
if (channel == null) {
if (j != -1) {
throw new IllegalArgumentException(
"channels contains more than one null: " +
"channels[" + j + "] and channels[" + i + "]"
);
}
j = i;
xs.add(null);
} else if (channel.isPush()) {
final BlockingQueue<byte[]> q =
new LinkedBlockingQueue<byte[]>()
;
xs.add(new PushToPull(channel, q));
channelQueues.put(channel, q);
} else {
xs.add(channel);
}
++i;
}
partyCount = i;
partyIndex = j;
if (partyCount < 2) {
throw new IllegalArgumentException(
"partyCount < 2"
);
}
if (partyIndex == -1) {
throw new IllegalArgumentException(
"channels does not contain a null"
);
}
this.channels = xs.toArray(new Channel[0]);
}
{
final ArrayList<String> args = new ArrayList<>();
if (logEnabled) {
args.add("--debug2");
}
args.add("--circuit");
args.add(circuitFile);
args.add("--input");
args.add(inputString);
args.add("--nowrite_ot");
if (false && partyCount == 2) {
func = funcTwoPartyMpc;
if (partyIndex == 0) {
args.add("--as_server");
} else {
args.add("--as_client");
}
} else {
func = funcNPartyMpcByGate;
args.add("--num_parties");
args.add(String.valueOf(partyCount));
args.add("--self_index");
args.add(String.valueOf(partyIndex));
}
this.args = args.toArray(new String[0]);
}
log = ((logEnabled) ? new String[1] : null);
}
/**
* Performs a receive for a push channel.
*/
public final void recv(
final int channelIndex,
final byte[] buf
) throws
IOException
{
if (channelIndex < 0) {
throw new IllegalArgumentException(
"channelIndex < 0"
);
}
if (channelIndex >= channels.length) {
throw new IllegalArgumentException(
"channelIndex >= channels.length"
);
}
if (channelIndex == partyIndex) {
throw new IllegalArgumentException(
"channelIndex == partyIndex"
);
}
recv(channels[channelIndex], buf);
}
/**
* Performs a receive for a push channel.
*/
public final void recv(
final Channel channel,
final byte[] buf
) throws
IOException
{
if (channel == null) {
throw new IllegalArgumentException(
"channel == null"
);
}
if (buf == null) {
throw new IllegalArgumentException(
"buf == null"
);
}
final BlockingQueue<byte[]> queue = channelQueues.get(channel);
if (queue == null) {
throw new IllegalArgumentException(
"unknown channel"
);
}
try {
queue.put(Arrays.copyOf(buf, buf.length));
} catch (final InterruptedException e) {
Thread.currentThread().interrupt();
throw new IOException(e);
}
}
private String jniError;
private void jniSetError(
final String m
) {
jniError = m;
}
private void jniSend(
final Channel channel,
final byte[] buf
) throws
IOException
{
channel.send(buf);
}
private void jniRecv(
final Channel channel,
final byte[] buf
) throws
IOException
{
channel.recv(buf);
}
private static final int funcNPartyMpcByGate = 0;
private static final int funcTwoPartyMpc = 1;
private native int jniCall(
int func,
String[] args,
Channel[] channels,
String[] results,
String[] log
);
@Override
public final String call(
) throws
Exception
{
if (log != null) {
log[0] = null;
}
jniError = null;
final String[] results = new String[1];
final int s = jniCall(func, args, channels, results, log);
if (s != 0) {
throw new RuntimeException(jniError);
}
return results[0];
}
public final String getLog(
) {
return ((log != null) ? log[0] : null);
}
}