-
Notifications
You must be signed in to change notification settings - Fork 1
/
sandbox.c
579 lines (516 loc) · 14.5 KB
/
sandbox.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
#include <stdio.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <sys/socket.h>
#include <unistd.h>
#include <strings.h>
#include <stdlib.h>
#include <errno.h>
#include "sandbox_rpc.h"
#include "sandbox.h"
void
sandbox_create(struct sandbox_cb *scb, void (*sandbox_mainfn)(void))
{
int pid, fd_sockpair[2];
/* Establish a socket pair for host-sandbox */
fd_sockpair[0] = fd_sockpair[1] = -1;
if (socketpair(PF_LOCAL, SOCK_STREAM, 0, fd_sockpair) < 0) {
perror("socketpair");
exit(1);
}
/* Update control block */
scb->fd_host_end = fd_sockpair[0];
scb->fd_sandbox_end = fd_sockpair[1];
/* Spawn sandbox */
pid = fork();
if (pid < 0) {
perror("fork");
exit(1);
}
/* Child-Sandbox */
if(!pid) {
sandbox_mainfn();
exit (0); /* Default action exit */
}
/* Update sandbox pid in control block */
scb->sandbox_pid = pid;
}
/* Simple I/O wrappers. */
// send message to sandbox
ssize_t
host_send(struct sandbox_cb *scb, const void *msg, size_t len, int flags)
{
return (_sandbox_rpc_send(scb->fd_host_end, msg, len, flags));
}
// send message+rights to sandbox
ssize_t
host_send_rights(struct sandbox_cb *scb, const void *msg, size_t len,
int flags, int *fdp, int fdcount)
{
return (_sandbox_rpc_send_rights(scb->fd_host_end, msg, len, flags, fdp,
fdcount));
}
// receive message from sandbox
ssize_t
host_recv(struct sandbox_cb *scb, void *buf, size_t len, int flags)
{
return (_sandbox_rpc_recv(scb->fd_host_end, buf, len, flags));
}
// receive message+rights from sandbox
ssize_t
host_recv_rights(struct sandbox_cb *scb, void *buf, size_t len, int flags,
int *fdp, int *fdcountp)
{
return (_sandbox_rpc_recv_rights(scb->fd_host_end, buf, len, flags, fdp,
fdcountp));
}
/*
* Host recv rpc internal routine. Arguments are variable size, so space is
* allocated by the RPC library rather than the caller, who is expected however
* to free it with free(3) if desired. We do not expect to receive any file
* descriptor handles from a sandbox process, so there is no provision for this.
*/
static int
host_recvrpc_internal(struct sandbox_cb *scb, u_int32_t *opnop, u_int32_t
*seqnop, u_char **bufferp, size_t *lenp)
{
struct sandboxrpc_reply_hdr rep_hdr;
size_t totlen;
ssize_t len;
u_char *buffer;
int error;
/*
* Receive our header and validate.
*/
len = _sandbox_rpc_recv(scb->fd_host_end, &rep_hdr, sizeof(rep_hdr),
MSG_WAITALL);
if (len < 0)
return (-1);
if (len != sizeof(rep_hdr)) {
errno = ECHILD;
return (-1);
}
/*if (rep_hdr.sandboxrpc_rephdr_magic != SANDBOX_RPC_REPLY_HDR_MAGIC ||*/
/*rep_hdr.sandboxrpc_rephdr_seqno != 0 ||*/
/*rep_hdr.sandboxrpc_rephdr_opno != opno ||*/
/*rep_hdr.sandboxrpc_rephdr_datalen > req_hdr.sandboxrpc_reqhdr_maxrepdatalen) {*/
if (rep_hdr.sandboxrpc_rephdr_magic != SANDBOX_RPC_REPLY_HDR_MAGIC) {
errno = EBADRPC;
return (-1);
}
/*
* Allocate the appropriate space to store the incoming message.
*/
buffer = malloc(rep_hdr.sandboxrpc_rephdr_datalen);
if (buffer == NULL) {
error = errno;
return (-1);
}
/*
* Receive the user data. Notice that we can partially overwrite the
* user buffer but still receive an error.
*/
totlen = 0;
while (totlen < rep_hdr.sandboxrpc_rephdr_datalen) {
len = _sandbox_rpc_recv(scb->fd_host_end, buffer + totlen,
rep_hdr.sandboxrpc_rephdr_datalen - totlen, MSG_WAITALL);
if (len < 0) {
error = errno;
free(buffer);
return (-1);
}
if (len == 0) {
errno = EPIPE;
free(buffer);
return (-1);
}
totlen += len;
}
*bufferp = buffer;
*lenp = totlen;
*opnop = rep_hdr.sandboxrpc_rephdr_opno;
*seqnop = rep_hdr.sandboxrpc_rephdr_seqno;
return (0);
}
static int
host_sendrpc_internal(struct sandbox_cb *scb, u_int32_t opno, u_int32_t seqno,
struct iovec *req, int reqcount, int *fdp, int fdcount)
{
struct sandboxrpc_request_hdr req_hdr;
ssize_t len;
int i;
bzero(&req_hdr, sizeof(req_hdr));
req_hdr.sandboxrpc_reqhdr_magic = SANDBOX_RPC_REQUEST_HDR_MAGIC;
req_hdr.sandboxrpc_reqhdr_seqno = seqno;
req_hdr.sandboxrpc_reqhdr_opno = opno;
req_hdr.sandboxrpc_reqhdr_datalen = 0;
for (i = 0; i < reqcount; i++)
req_hdr.sandboxrpc_reqhdr_datalen += req[i].iov_len;
/*
* Send our header.
*/
if (fdp != NULL)
len = _sandbox_rpc_send_rights(scb->fd_host_end, &req_hdr,
sizeof(req_hdr), 0, fdp, fdcount);
else
len = _sandbox_rpc_send(scb->fd_host_end, &req_hdr, sizeof(req_hdr), 0);
if (len < 0)
return (-1);
if (len != sizeof(req_hdr)) {
errno = EPIPE;
return (-1);
}
/*
* Send user data.
*/
for (i = 0; i < reqcount; i++) {
len = _sandbox_rpc_send(scb->fd_host_end, req[i].iov_base,
req[i].iov_len, 0);
if (len < 0)
return (-1);
if ((size_t)len != req[i].iov_len) {
errno = EPIPE;
return (-1);
}
}
return (0);
}
/*
* Simple libcapsicum RPC facility (sandboxrpc): send a request, get back a
* reply (up to the size bound of the buffers passed in). The caller is
* responsible for retransmitting if the sandbox fails.
*
* Right now sequence numbers are unimplemented -- that's fine because we
* don't need retransmission, and are synchronous. However, it might not be
* a bad idea to use them anyway.
*/
static int
host_rpc_internal(struct sandbox_cb *scb, u_int32_t opno, struct iovec *req,
int reqcount, int *req_fdp, int req_fdcount, struct iovec *rep,
int repcount, size_t *replenp, int *rep_fdp, int *rep_fdcountp)
{
struct sandboxrpc_request_hdr req_hdr;
struct sandboxrpc_reply_hdr rep_hdr;
size_t left, off, space, totlen, want;
ssize_t len;
int i;
bzero(&req_hdr, sizeof(req_hdr));
req_hdr.sandboxrpc_reqhdr_magic = SANDBOX_RPC_REQUEST_HDR_MAGIC;
req_hdr.sandboxrpc_reqhdr_seqno = 0;
req_hdr.sandboxrpc_reqhdr_opno = opno;
for (i = 0; i < reqcount; i++)
req_hdr.sandboxrpc_reqhdr_datalen += req[i].iov_len;
for (i = 0; i < repcount; i++)
req_hdr.sandboxrpc_reqhdr_maxrepdatalen += rep[i].iov_len;
/*
* Send our header.
*/
if (req_fdp != NULL)
len = _sandbox_rpc_send_rights(scb->fd_host_end, &req_hdr,
sizeof(req_hdr), 0, req_fdp, req_fdcount);
else
len = _sandbox_rpc_send(scb->fd_host_end, &req_hdr, sizeof(req_hdr),
0);
if (len < 0)
return (-1);
if (len != sizeof(req_hdr)) {
errno = ECHILD;
return (-1);
}
/*
* Send the user request.
*/
for (i = 0; i < reqcount; i++) {
len = _sandbox_rpc_send(scb->fd_host_end, req[i].iov_base,
req[i].iov_len, 0);
if (len < 0)
return (-1);
if ((size_t)len != req[i].iov_len) {
errno = ECHILD;
return (-1);
}
}
/*
* Receive our header and validate.
*/
if (rep_fdp == NULL && repcount == 0)
return 0;
if (rep_fdp != NULL)
len = _sandbox_rpc_recv_rights(scb->fd_host_end, &rep_hdr,
sizeof(rep_hdr), MSG_WAITALL, rep_fdp, rep_fdcountp);
else
len = _sandbox_rpc_recv(scb->fd_host_end, &rep_hdr, sizeof(rep_hdr),
MSG_WAITALL);
if (len < 0)
return (-1);
if (len != sizeof(rep_hdr)) {
if (rep_fdp != NULL)
_sandbox_dispose_rights(rep_fdp, *rep_fdcountp);
errno = ECHILD;
return (-1);
}
if (rep_hdr.sandboxrpc_rephdr_magic != SANDBOX_RPC_REPLY_HDR_MAGIC ||
rep_hdr.sandboxrpc_rephdr_seqno != 0 ||
rep_hdr.sandboxrpc_rephdr_opno != opno ||
rep_hdr.sandboxrpc_rephdr_datalen > req_hdr.sandboxrpc_reqhdr_maxrepdatalen) {
if (rep_fdp != NULL)
_sandbox_dispose_rights(rep_fdp, *rep_fdcountp);
errno = EBADRPC;
return (-1);
}
/*
* Receive the user data. Notice that we can partially overwrite the
* user buffer but still receive an error.
*/
totlen = 0;
for (i = 0; i < repcount; i++) {
off = 0;
while (totlen < rep_hdr.sandboxrpc_rephdr_datalen) {
space = rep[i].iov_len - off;
left = rep_hdr.sandboxrpc_rephdr_datalen - totlen;
want = (space > left) ? space : left;
len = _sandbox_rpc_recv(scb->fd_host_end,
(u_char *)((uintptr_t)rep[i].iov_base + off),
want, MSG_WAITALL);
if (len < 0)
return (-1);
if ((size_t)len != want) {
if (rep_fdp != NULL)
_sandbox_dispose_rights(rep_fdp,
*rep_fdcountp);
errno = ECHILD;
return (-1);
}
off += len;
totlen += len;
if (rep[i].iov_len == off)
break;
}
if (totlen == rep_hdr.sandboxrpc_rephdr_datalen)
break;
}
*replenp = totlen;
return (0);
}
// send rpc message to sandbox and receive reply
int
host_rpc(struct sandbox_cb *scb, u_int32_t opno, struct iovec *req,
int reqcount, struct iovec *rep, int repcount, size_t *replenp)
{
return (host_rpc_internal(scb, opno, req, reqcount, NULL, 0,
rep, repcount, replenp, NULL, NULL));
}
// send rpc message+rights to sandbox and receive reply
int
host_rpc_rights(struct sandbox_cb *scb, u_int32_t opno, struct iovec *req,
int reqcount, int *req_fdp, int req_fdcount, struct iovec *rep,
int repcount, size_t *replenp, int *rep_fdp, int *rep_fdcountp)
{
return (host_rpc_internal(scb, opno, req, reqcount, req_fdp,
req_fdcount, rep, repcount, replenp, rep_fdp, rep_fdcountp));
}
// receive rpc message from sandbox
int
host_recvrpc(struct sandbox_cb *scb, u_int32_t *opnop, u_int32_t *seqnop,
u_char **bufferp, size_t *lenp)
{
return (host_recvrpc_internal(scb, opnop, seqnop, bufferp, lenp));
}
// send rpc message to sandbox
int
host_sendrpc(struct sandbox_cb *scb, u_int32_t opno, u_int32_t seqno,
struct iovec *req, int reqcount, int *fdp, int fdcount)
{
return (host_sendrpc_internal(scb, opno, seqno, req, reqcount, fdp,
fdcount));
}
// receive message from host
ssize_t
sandbox_recv(struct sandbox_cb *scb, void *buf, size_t len, int flags)
{
return (_sandbox_rpc_recv(scb->fd_sandbox_end, buf, len, flags));
}
// receive message+rights from host
ssize_t
sandbox_recv_rights(struct sandbox_cb *scb, void *buf, size_t len, int flags,
int *fdp, int *fdcountp)
{
return (_sandbox_rpc_recv_rights(scb->fd_sandbox_end, buf, len, flags, fdp,
fdcountp));
}
// send message to host
ssize_t
sandbox_send(struct sandbox_cb *scb, const void *msg, size_t len, int flags)
{
return (_sandbox_rpc_send(scb->fd_sandbox_end, msg, len, flags));
}
// send message+rights to host
ssize_t
sandbox_send_rights(struct sandbox_cb *scb, const void *msg, size_t len,
int flags, int *fdp, int fdcount)
{
return (_sandbox_rpc_send_rights(scb->fd_sandbox_end, msg, len, flags, fdp,
fdcount));
}
/*
* RPC facility sandbox routines. Since arguments are variable size, space is
* allocated by the RPC code rather than the caller, who is expected to free it
* with free(3) if desired.
*/
static int
sandbox_recvrpc_internal(struct sandbox_cb *scb, u_int32_t *opnop,
u_int32_t *seqnop, u_char **bufferp, size_t *lenp, int *fdp,
int *fdcountp)
{
struct sandboxrpc_request_hdr req_hdr;
size_t totlen;
ssize_t len;
u_char *buffer;
int error;
if (fdp != NULL)
len = _sandbox_rpc_recv_rights(scb->fd_sandbox_end, &req_hdr,
sizeof(req_hdr), MSG_WAITALL, fdp, fdcountp);
else
len = _sandbox_rpc_recv(scb->fd_sandbox_end, &req_hdr, sizeof(req_hdr),
MSG_WAITALL);
if (len < 0)
return (-1);
if (len == 0) {
if (fdp != NULL)
_sandbox_dispose_rights(fdp, *fdcountp);
errno = EPIPE;
return (-1);
}
if (len != sizeof(req_hdr)) {
if (fdp != NULL)
_sandbox_dispose_rights(fdp, *fdcountp);
errno = EBADMSG;
return (-1);
}
if (req_hdr.sandboxrpc_reqhdr_magic != SANDBOX_RPC_REQUEST_HDR_MAGIC) {
if (fdp != NULL)
_sandbox_dispose_rights(fdp, *fdcountp);
errno = EBADMSG;
return (-1);
}
/*
* XXXRW: Should we check that the receive data fits in the address
* space of the sandbox?
*
* XXXRW: If malloc() fails, we should drain the right amount of data
* from the socket so that the next RPC will succeed. Possibly we
* should also reply with an error from this layer to the sender?
* What about if there are other socket errors, such as EINTR?
*/
buffer = malloc(req_hdr.sandboxrpc_reqhdr_datalen);
if (buffer == NULL) {
error = errno;
if (fdp != NULL)
_sandbox_dispose_rights(fdp, *fdcountp);
errno = error;
return (-1);
}
/*
* XXXRW: Likewise, how to handle failure at this stage?
*/
totlen = 0;
while (totlen < req_hdr.sandboxrpc_reqhdr_datalen) {
len = _sandbox_rpc_recv(scb->fd_sandbox_end, buffer + totlen,
req_hdr.sandboxrpc_reqhdr_datalen - totlen, MSG_WAITALL);
if (len < 0) {
error = errno;
if (fdp != NULL)
_sandbox_dispose_rights(fdp, *fdcountp);
free(buffer);
return (-1);
}
if (len == 0) {
errno = EPIPE;
if (fdp != NULL)
_sandbox_dispose_rights(fdp, *fdcountp);
free(buffer);
return (-1);
}
totlen += len;
}
*bufferp = buffer;
*lenp = totlen;
*opnop = req_hdr.sandboxrpc_reqhdr_opno;
*seqnop = req_hdr.sandboxrpc_reqhdr_seqno;
return (0);
}
// receive rpc message from host
int
sandbox_recvrpc(struct sandbox_cb *scb, u_int32_t *opnop, u_int32_t *seqnop,
u_char **bufferp, size_t *lenp)
{
return (sandbox_recvrpc_internal(scb, opnop, seqnop, bufferp, lenp,
NULL, NULL));
}
// receive rpc message+rights from host
int
sandbox_recvrpc_rights(struct sandbox_cb *scb, u_int32_t *opnop, u_int32_t *seqnop,
u_char **bufferp, size_t *lenp, int *fdp, int *fdcountp)
{
return (sandbox_recvrpc_internal(scb, opnop, seqnop, bufferp, lenp,
fdp, fdcountp));
}
static int
sandbox_sendrpc_internal(struct sandbox_cb *scb, u_int32_t opno, u_int32_t seqno,
struct iovec *rep, int repcount, int *fdp, int fdcount)
{
struct sandboxrpc_reply_hdr rep_hdr;
ssize_t len;
int i;
bzero(&rep_hdr, sizeof(rep_hdr));
rep_hdr.sandboxrpc_rephdr_magic = SANDBOX_RPC_REPLY_HDR_MAGIC;
rep_hdr.sandboxrpc_rephdr_seqno = seqno;
rep_hdr.sandboxrpc_rephdr_opno = opno;
rep_hdr.sandboxrpc_rephdr_datalen = 0;
for (i = 0; i < repcount; i++)
rep_hdr.sandboxrpc_rephdr_datalen += rep[i].iov_len;
/*
* Send our header.
*/
if (fdp != NULL)
len = _sandbox_rpc_send_rights(scb->fd_sandbox_end, &rep_hdr,
sizeof(rep_hdr), 0, fdp, fdcount);
else
len = _sandbox_rpc_send(scb->fd_sandbox_end, &rep_hdr, sizeof(rep_hdr), 0);
if (len < 0)
return (-1);
if (len != sizeof(rep_hdr)) {
errno = EPIPE;
return (-1);
}
/*
* Send user data.
*/
for (i = 0; i < repcount; i++) {
len = _sandbox_rpc_send(scb->fd_sandbox_end, rep[i].iov_base,
rep[i].iov_len, 0);
if (len < 0)
return (-1);
if ((size_t)len != rep[i].iov_len) {
errno = EPIPE;
return (-1);
}
}
return (0);
}
// send rpc message to host
int
sandbox_sendrpc(struct sandbox_cb *scb, u_int32_t opno, u_int32_t seqno,
struct iovec *rep, int repcount)
{
return (sandbox_sendrpc_internal(scb, opno, seqno, rep, repcount, NULL,
0));
}
// send rpc message+rights to host
int
sandbox_sendrpc_rights(struct sandbox_cb *scb, u_int32_t opno, u_int32_t seqno,
struct iovec *rep, int repcount, int *fdp, int fdcount)
{
return (sandbox_sendrpc_internal(scb, opno, seqno, rep, repcount, fdp,
fdcount));
}