-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathtest
More file actions
executable file
·481 lines (364 loc) · 16.1 KB
/
Copy pathtest
File metadata and controls
executable file
·481 lines (364 loc) · 16.1 KB
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
#!/usr/bin/perl
use Test::More;
BEGIN {
$basedir = $0;
$basedir =~ s|(.*)/[^/]*|$1|;
$test_count_ipv4 = 34;
$test_count_ipv6 = 4;
$test_ipsec = 0;
if ( system("ip xfrm policy help 2>&1 | grep -q ctx") eq 0 ) {
$test_count_ipv4 += 4;
$test_count_ipv6 += 4;
$test_ipsec = 1;
}
# Determine if CALIPSO supported by netlabelctl(8) and kernel.
$test_calipso_stream = 0;
$netlabelctl = `netlabelctl -V`;
$netlabelctl =~ s/\D//g;
$kvercur = `uname -r`;
chomp($kvercur);
$kverminstream = "4.8";
$rc = `$basedir/../kvercmp $kvercur $kverminstream`;
if ( $netlabelctl gt "021" and $rc > 0 ) {
$test_count_ipv6 += 3;
$test_calipso_stream = 1;
}
$test_count = $test_count_ipv4;
$test_ipv6 = 0;
if ( system("test -f /proc/net/if_inet6") eq 0 ) {
$test_count += $test_count_ipv6;
$test_ipv6 = 1;
}
plan tests => $test_count;
}
sub server_start {
my ( $runcon_args, $args ) = @_;
my $pid;
system("mkfifo $basedir/flag");
if ( ( $pid = fork() ) == 0 ) {
exec "runcon $runcon_args $basedir/server -f $basedir/flag $args";
}
# Wait for it to initialize.
system("read -t 5 <>$basedir/flag");
return $pid;
}
sub server_end {
my ($pid) = @_;
kill KILL, $pid;
waitpid $pid, 0;
system("rm -f $basedir/flag");
}
# Load NetLabel configuration for full CIPSO/IPv4 labeling over loopback.
system "/bin/sh $basedir/cipso-fl-load";
# Start the stream server.
$pid = server_start( "-t test_inet_server_t", "stream 65535" );
# Verify that authorized client can communicate with the server.
$result =
system "runcon -t test_inet_client_t $basedir/client stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the dgram server.
$pid = server_start( "-t test_inet_server_t", "dgram 65535" );
# Verify that authorized client can communicate with the server.
$result =
system "runcon -t test_inet_client_t $basedir/client dgram 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client dgram 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 9 );
# Kill the server.
server_end($pid);
# Flush NetLabel configuration.
system "/bin/sh $basedir/cipso-fl-flush";
# Load NetLabel configuration for CIPSO/IPv4 using TAG 1 over loopback.
system "/bin/sh $basedir/cipso-load-t1";
# Start the stream server with a defined level.
$pid = server_start( "-t test_inet_server_t -l s0:c20.c250", "stream 65535" );
# Verify that authorized client can communicate with the server using level within T1 range.
$result = system
"runcon -t test_inet_client_t -l s0:c61.c239 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c61.c239 stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client cannot communicate with the server using different level.
$result = system
"runcon -t test_inet_client_t -l s0:c19,c120 $basedir/client stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# TAG 1 allows categories 0 to 239 to be sent, if greater then ENOSPC (No space left on device)
$result = system
"runcon -t test_inet_client_t -l s0:c0.c240 $basedir/client stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the dgram server with a defined level.
$pid = server_start( "-t test_inet_server_t -l s0:c20.c50", "dgram 65535" );
# Verify that authorized client can communicate with the server using same levels.
$result = system
"runcon -t test_inet_client_t -l s0:c20.c50 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c20.c50 dgram 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client cannot communicate with the server using levels dominating the server.
$result = system
"runcon -t test_inet_client_t -l s0:c40.c51 $basedir/client dgram 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 9 );
# Kill the server.
server_end($pid);
# Flush NetLabel configuration.
system "/bin/sh $basedir/cipso-flush";
# Load NetLabel configuration for CIPSO/IPv4 using TAG 2 over loopback.
system "/bin/sh $basedir/cipso-load-t2";
# Start the stream server with a defined level.
$pid = server_start( "-t test_inet_server_t -l s0:c0.c100", "stream 65535" );
# Verify that authorized client can communicate with the server using level.
$result = system
"runcon -t test_inet_client_t -l s0:c90.c100 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c90.c100 stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client can communicate with the server using level.
$result = system
"runcon -t test_inet_client_t -l s0:c0.c14 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c0.c14 stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client cannot communicate with the server using different level.
$result = system
"runcon -t test_inet_client_t -l s0:c101 $basedir/client stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# TAG 2 allows a maximum of 15 categories in exchange, if greater then ENOSPC (No space left on device)
$result = system
"runcon -t test_inet_client_t -l s0:c0.c16 -- $basedir/client dgram 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the dgram server with a defined level.
$pid = server_start( "-t test_inet_server_t -l s0:c0.c14", "dgram 65535" );
# Verify that authorized client can communicate with the server using same levels.
$result = system
"runcon -t test_inet_client_t -l s0:c0.c14 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c0.c14 dgram 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client cannot communicate with the server using levels dominating the server.
$result = system
"runcon -t test_inet_client_t -l s0:c15 $basedir/client dgram 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 9 );
# Kill the server.
server_end($pid);
# Flush NetLabel configuration.
system "/bin/sh $basedir/cipso-flush";
# Load NetLabel configuration for CIPSO/IPv4 using TAG 5 over loopback.
# TAG 5 allows a maximum of 7 ranges in exchange, if greater then ENOSPC (No space left on device), however
# note from kernel net/ipv4/cipso_ipv4.c comments:
# * You may note that the IETF draft states that the maximum number
# * of category ranges is 7, but if the low end of the last category range is
# * zero then it is possible to fit 8 category ranges because the zero should
# * be omitted. */
system "/bin/sh $basedir/cipso-load-t5";
# Start the stream server with a defined level.
$pid = server_start( "-t test_inet_server_t -l s0:c0.c100", "stream 65535" );
# Verify that authorized client can communicate with the server using level.
$result = system
"runcon -t test_inet_client_t -l s0:c0.c100 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c0.c100 stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client can communicate with the server using level.
$result = system
"runcon -t test_inet_client_t -l s0:c8.c100 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c8.c100 stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client cannot communicate with the server using different level.
$result = system
"runcon -t test_inet_client_t -l s0:c8.c101 $basedir/client stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Verify ok with the 8 entries when cat c0:
$result = system
"runcon -t test_inet_client_t -l s0:c0.c3,c20.c25,c30.c36,c40.c45,c50.c55,c60.c66,c70.c78,c80.c88 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c0.c3,c20.c25,c30.c36,c40.c45,c50.c55,c60.c66,c70.c78,c80.c88 stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify fail with the 8 entries when cat !c0:
$result = system
"runcon -t test_inet_client_t -l s0:c20.c25,c30.c36,c40.c45,c50.c55,c60.c66,c70.c78,c80.c88,c90.c99 $basedir/client stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the dgram server with a defined level.
$pid = server_start( "-t test_inet_server_t -l s0:c0.c100", "dgram 65535" );
# Verify that authorized client can communicate with the server using same levels.
$result = system
"runcon -t test_inet_client_t -l s0:c0.c100 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c0.c100 dgram 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that authorized client cannot communicate with the server using levels dominating the server.
$result = system
"runcon -t test_inet_client_t -l s0:c40.c101 $basedir/client dgram 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 9 );
# Kill the server.
server_end($pid);
# Flush NetLabel configuration.
system "/bin/sh $basedir/cipso-flush";
# Verify that authorized domain can bind UDP sockets.
$result = system "runcon -t test_inet_bind_t -- $basedir/bind dgram 65535 2>&1";
ok( $result eq 0 );
# Verify that authorized domain can bind TCP sockets.
$result =
system "runcon -t test_inet_bind_t -- $basedir/bind stream 65535 2>&1";
ok( $result eq 0 );
# Verify that domain without name_bind cannot bind UDP sockets.
$result =
system "runcon -t test_inet_no_name_bind_t -- $basedir/bind dgram 65535 2>&1";
ok($result);
# Verify that domain without name_bind cannot bind TCP sockets.
$result = system
"runcon -t test_inet_no_name_bind_t -- $basedir/bind stream 65535 2>&1";
ok($result);
# Verify that domain without node_bind cannot bind UDP sockets.
$result =
system "runcon -t test_inet_no_node_bind_t -- $basedir/bind dgram 65535 2>&1";
ok($result);
# Verify that domain without node_bind cannot bind TCP sockets.
$result = system
"runcon -t test_inet_no_node_bind_t -- $basedir/bind stream 65535 2>&1";
ok($result);
# Verify that authorized domain can connect to TCP socket.
$result = system "runcon -t test_inet_connect_t -- $basedir/connect 65535 2>&1";
ok( $result eq 0 );
# Verify that domain without name_connect cannot connect to TCP socket.
$result =
system "runcon -t test_inet_no_name_connect_t -- $basedir/connect 65535 2>&1";
ok($result);
if ($test_ipsec) {
# Load IPSEC configuration.
system "/bin/sh $basedir/ipsec-load";
# Start the stream server.
$pid = server_start( "-t test_inet_server_t", "stream 65535" );
# Verify that authorized client can communicate with the server.
$result =
system
"runcon -t test_inet_client_t $basedir/client stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the dgram server.
$pid = server_start( "-t test_inet_server_t", "dgram 65535" );
# Verify that authorized client can communicate with the server.
$result =
system
"runcon -t test_inet_client_t $basedir/client dgram 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client dgram 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 8 );
# Kill the server.
server_end($pid);
if ($test_ipv6) {
# Start the IPv6 stream server.
$pid = server_start( "-t test_inet_server_t", "-6 stream 65535" );
# Verify that authorized client can communicate with the server.
$result = system
"runcon -t test_inet_client_t $basedir/client stream ::1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client stream ::1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the IPv6 dgram server.
$pid = server_start( "-t test_inet_server_t", "-6 dgram 65535" );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client dgram ::1 65535 2>&1";
ok( $result >> 8 eq 8 );
# Kill the server.
server_end($pid);
# Start the dgram server for IPSEC test using IPv6 but do not request
# peer context.
$pid = server_start( "-t test_inet_server_t", "-6n dgram 65535" );
# This test now passes.
$result = system
"runcon -t test_inet_client_t $basedir/client -e nopeer dgram ::1 65535";
ok( $result eq 0 );
# Kill the server.
server_end($pid);
}
# Flush IPSEC configuration.
system "/bin/sh $basedir/ipsec-flush";
}
# Load iptables (IPv4 & IPv6) configuration.
system "/bin/sh $basedir/iptables-load";
# Start the stream server.
$pid = server_start( "-t test_inet_server_t", "-n stream 65535" );
# Verify that authorized client can communicate with the server.
$result = system
"runcon -t test_inet_client_t -- $basedir/client -e nopeer stream 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client -e nopeer stream 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the dgram server.
$pid = server_start( "-t test_inet_server_t", "-n dgram 65535" );
# Verify that authorized client can communicate with the server.
$result = system
"runcon -t test_inet_client_t $basedir/client -e nopeer dgram 127.0.0.1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client -e nopeer dgram 127.0.0.1 65535 2>&1";
ok( $result >> 8 eq 8 );
# Kill the server.
server_end($pid);
if ($test_ipv6) {
# Start the IPv6 stream server.
$pid = server_start( "-t test_inet_server_t", "-6n stream 65535" );
# Verify that authorized client can communicate with the server.
$result = system
"runcon -t test_inet_client_t -- $basedir/client -e nopeer stream ::1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client -e nopeer stream ::1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the server.
server_end($pid);
# Start the IPv6 dgram server.
$pid = server_start( "-t test_inet_server_t", "-6n dgram 65535" );
# Verify that authorized client can communicate with the server.
$result = system
"runcon -t test_inet_client_t $basedir/client -e nopeer dgram ::1 65535";
ok( $result eq 0 );
# Verify that unauthorized client cannot communicate with the server.
$result = system
"runcon -t test_inet_bad_client_t -- $basedir/client -e nopeer dgram ::1 65535 2>&1";
ok( $result >> 8 eq 8 );
# Kill the server.
server_end($pid);
}
# Flush iptables configuration.
system "/bin/sh $basedir/iptables-flush";
if ( $test_ipv6 and $test_calipso_stream ) {
# Load NetLabel configuration for CALIPSO/IPv6 labeling over loopback.
system "/bin/sh $basedir/calipso-load";
# Start the stream server.
$pid =
server_start( "-t test_inet_server_t -l s0:c0.c10", "-6 stream 65535" );
# Verify that authorized client can communicate with the server.
$result = system
"runcon -t test_inet_client_t -l s0:c0.c10 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c0.c10 stream ::1 65535";
ok( $result eq 0 );
# Verify that authorized client can communicate with the server using
# different valid level.
$result = system
"runcon -t test_inet_client_t -l s0:c8.c10 $basedir/client -e system_u:object_r:netlabel_peer_t:s0:c8.c10 stream ::1 65535";
ok( $result eq 0 );
# Verify that authorized client cannot communicate with the server using
# invalid level.
$result = system
"runcon -t test_inet_client_t -l s0:c8.c12 -- $basedir/client stream ::1 65535 2>&1";
ok( $result >> 8 eq 5 );
# Kill the stream server.
server_end($pid);
system "/bin/sh $basedir/calipso-flush";
}
exit;