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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
|
// SPDX-License-Identifier: GPL-2.0
/*
* Test for OPEN_TREE_NAMESPACE flag.
*
* Test that open_tree() with OPEN_TREE_NAMESPACE creates a new mount
* namespace containing the specified mount tree.
*/
#define _GNU_SOURCE
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <linux/nsfs.h>
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
#include "../wrappers.h"
#include "../statmount/statmount.h"
#include "../utils.h"
#include "../../kselftest_harness.h"
#ifndef OPEN_TREE_NAMESPACE
#define OPEN_TREE_NAMESPACE (1 << 1)
#endif
static int get_mnt_ns_id(int fd, uint64_t *mnt_ns_id)
{
if (ioctl(fd, NS_GET_MNTNS_ID, mnt_ns_id) < 0)
return -errno;
return 0;
}
static int get_mnt_ns_id_from_path(const char *path, uint64_t *mnt_ns_id)
{
int fd, ret;
fd = open(path, O_RDONLY);
if (fd < 0)
return -errno;
ret = get_mnt_ns_id(fd, mnt_ns_id);
close(fd);
return ret;
}
#define STATMOUNT_BUFSIZE (1 << 15)
static struct statmount *statmount_alloc(uint64_t mnt_id, uint64_t mnt_ns_id, uint64_t mask)
{
struct statmount *buf;
size_t bufsize = STATMOUNT_BUFSIZE;
int ret;
for (;;) {
buf = malloc(bufsize);
if (!buf)
return NULL;
ret = statmount(mnt_id, mnt_ns_id, mask, buf, bufsize, 0);
if (ret == 0)
return buf;
free(buf);
if (errno != EOVERFLOW)
return NULL;
bufsize <<= 1;
}
}
static void log_mount(struct __test_metadata *_metadata, struct statmount *sm)
{
const char *fs_type = "";
const char *mnt_root = "";
const char *mnt_point = "";
if (sm->mask & STATMOUNT_FS_TYPE)
fs_type = sm->str + sm->fs_type;
if (sm->mask & STATMOUNT_MNT_ROOT)
mnt_root = sm->str + sm->mnt_root;
if (sm->mask & STATMOUNT_MNT_POINT)
mnt_point = sm->str + sm->mnt_point;
TH_LOG(" mnt_id: %llu, parent_id: %llu, fs_type: %s, root: %s, point: %s",
(unsigned long long)sm->mnt_id,
(unsigned long long)sm->mnt_parent_id,
fs_type, mnt_root, mnt_point);
}
static void dump_mounts(struct __test_metadata *_metadata, uint64_t mnt_ns_id)
{
uint64_t list[256];
ssize_t nr_mounts;
nr_mounts = listmount(LSMT_ROOT, mnt_ns_id, 0, list, 256, 0);
if (nr_mounts < 0) {
TH_LOG("listmount failed: %s", strerror(errno));
return;
}
TH_LOG("Mount namespace %llu contains %zd mount(s):",
(unsigned long long)mnt_ns_id, nr_mounts);
for (ssize_t i = 0; i < nr_mounts; i++) {
struct statmount *sm;
sm = statmount_alloc(list[i], mnt_ns_id,
STATMOUNT_MNT_BASIC |
STATMOUNT_FS_TYPE |
STATMOUNT_MNT_ROOT |
STATMOUNT_MNT_POINT);
if (!sm) {
TH_LOG(" [%zd] mnt_id %llu: statmount failed: %s",
i, (unsigned long long)list[i], strerror(errno));
continue;
}
log_mount(_metadata, sm);
free(sm);
}
}
FIXTURE(open_tree_ns)
{
int fd;
uint64_t current_ns_id;
};
FIXTURE_VARIANT(open_tree_ns)
{
const char *path;
unsigned int flags;
bool expect_success;
bool expect_different_ns;
int min_mounts;
};
FIXTURE_VARIANT_ADD(open_tree_ns, basic_root)
{
.path = "/",
.flags = OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC,
.expect_success = true,
.expect_different_ns = true,
/*
* The empty rootfs is hidden from listmount()/mountinfo,
* so we only see the bind mount on top of it.
*/
.min_mounts = 1,
};
FIXTURE_VARIANT_ADD(open_tree_ns, recursive_root)
{
.path = "/",
.flags = OPEN_TREE_NAMESPACE | AT_RECURSIVE | OPEN_TREE_CLOEXEC,
.expect_success = true,
.expect_different_ns = true,
.min_mounts = 1,
};
FIXTURE_VARIANT_ADD(open_tree_ns, subdir_tmp)
{
.path = "/tmp",
.flags = OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC,
.expect_success = true,
.expect_different_ns = true,
.min_mounts = 1,
};
FIXTURE_VARIANT_ADD(open_tree_ns, subdir_proc)
{
.path = "/proc",
.flags = OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC,
.expect_success = true,
.expect_different_ns = true,
.min_mounts = 1,
};
FIXTURE_VARIANT_ADD(open_tree_ns, recursive_tmp)
{
.path = "/tmp",
.flags = OPEN_TREE_NAMESPACE | AT_RECURSIVE | OPEN_TREE_CLOEXEC,
.expect_success = true,
.expect_different_ns = true,
.min_mounts = 1,
};
FIXTURE_VARIANT_ADD(open_tree_ns, recursive_run)
{
.path = "/run",
.flags = OPEN_TREE_NAMESPACE | AT_RECURSIVE | OPEN_TREE_CLOEXEC,
.expect_success = true,
.expect_different_ns = true,
.min_mounts = 1,
};
FIXTURE_VARIANT_ADD(open_tree_ns, invalid_recursive_alone)
{
.path = "/",
.flags = AT_RECURSIVE | OPEN_TREE_CLOEXEC,
.expect_success = false,
.expect_different_ns = false,
.min_mounts = 0,
};
FIXTURE_SETUP(open_tree_ns)
{
int ret;
self->fd = -1;
/* Check if open_tree syscall is supported */
ret = sys_open_tree(-1, NULL, 0);
if (ret == -1 && errno == ENOSYS)
SKIP(return, "open_tree() syscall not supported");
/* Check if statmount/listmount are supported */
ret = statmount(0, 0, 0, NULL, 0, 0);
if (ret == -1 && errno == ENOSYS)
SKIP(return, "statmount() syscall not supported");
/* Get current mount namespace ID for comparison */
ret = get_mnt_ns_id_from_path("/proc/self/ns/mnt", &self->current_ns_id);
if (ret < 0)
SKIP(return, "Failed to get current mount namespace ID");
}
FIXTURE_TEARDOWN(open_tree_ns)
{
if (self->fd >= 0)
close(self->fd);
}
TEST_F(open_tree_ns, create_namespace)
{
uint64_t new_ns_id;
uint64_t list[256];
ssize_t nr_mounts;
int ret;
self->fd = sys_open_tree(AT_FDCWD, variant->path, variant->flags);
if (!variant->expect_success) {
ASSERT_LT(self->fd, 0);
ASSERT_EQ(errno, EINVAL);
return;
}
if (self->fd < 0 && errno == EINVAL)
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
ASSERT_GE(self->fd, 0);
/* Verify we can get the namespace ID */
ret = get_mnt_ns_id(self->fd, &new_ns_id);
ASSERT_EQ(ret, 0);
/* Verify it's a different namespace */
if (variant->expect_different_ns)
ASSERT_NE(new_ns_id, self->current_ns_id);
/* List mounts in the new namespace */
nr_mounts = listmount(LSMT_ROOT, new_ns_id, 0, list, 256, 0);
ASSERT_GE(nr_mounts, 0) {
TH_LOG("%m - listmount failed");
}
/* Verify minimum expected mounts */
ASSERT_GE(nr_mounts, variant->min_mounts);
TH_LOG("Namespace contains %zd mounts", nr_mounts);
}
TEST_F(open_tree_ns, setns_into_namespace)
{
uint64_t new_ns_id;
pid_t pid;
int status;
int ret;
/* Only test with basic flags */
if (!(variant->flags & OPEN_TREE_NAMESPACE))
SKIP(return, "setns test only for basic / case");
self->fd = sys_open_tree(AT_FDCWD, variant->path, variant->flags);
if (self->fd < 0 && errno == EINVAL)
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
ASSERT_GE(self->fd, 0);
/* Get namespace ID and dump all mounts */
ret = get_mnt_ns_id(self->fd, &new_ns_id);
ASSERT_EQ(ret, 0);
dump_mounts(_metadata, new_ns_id);
pid = fork();
ASSERT_GE(pid, 0);
if (pid == 0) {
/* Child: try to enter the namespace */
if (setns(self->fd, CLONE_NEWNS) < 0)
_exit(1);
_exit(0);
}
ASSERT_EQ(waitpid(pid, &status, 0), pid);
ASSERT_TRUE(WIFEXITED(status));
ASSERT_EQ(WEXITSTATUS(status), 0);
}
TEST_F(open_tree_ns, verify_mount_properties)
{
struct statmount sm;
uint64_t new_ns_id;
uint64_t list[256];
ssize_t nr_mounts;
int ret;
/* Only test with basic flags on root */
if (variant->flags != (OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC) ||
strcmp(variant->path, "/") != 0)
SKIP(return, "mount properties test only for basic / case");
self->fd = sys_open_tree(AT_FDCWD, "/", OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC);
if (self->fd < 0 && errno == EINVAL)
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
ASSERT_GE(self->fd, 0);
ret = get_mnt_ns_id(self->fd, &new_ns_id);
ASSERT_EQ(ret, 0);
nr_mounts = listmount(LSMT_ROOT, new_ns_id, 0, list, 256, 0);
ASSERT_GE(nr_mounts, 1);
/* Get info about the root mount (the bind mount, rootfs is hidden) */
ret = statmount(list[0], new_ns_id, STATMOUNT_MNT_BASIC, &sm, sizeof(sm), 0);
ASSERT_EQ(ret, 0);
ASSERT_NE(sm.mnt_id, sm.mnt_parent_id);
TH_LOG("Root mount id: %llu, parent: %llu",
(unsigned long long)sm.mnt_id,
(unsigned long long)sm.mnt_parent_id);
}
FIXTURE(open_tree_ns_caps)
{
bool has_caps;
};
FIXTURE_SETUP(open_tree_ns_caps)
{
int ret;
/* Check if open_tree syscall is supported */
ret = sys_open_tree(-1, NULL, 0);
if (ret == -1 && errno == ENOSYS)
SKIP(return, "open_tree() syscall not supported");
self->has_caps = (geteuid() == 0);
}
FIXTURE_TEARDOWN(open_tree_ns_caps)
{
}
TEST_F(open_tree_ns_caps, requires_cap_sys_admin)
{
pid_t pid;
int status;
pid = fork();
ASSERT_GE(pid, 0);
if (pid == 0) {
int fd;
/* Child: drop privileges using utils.h helper */
if (enter_userns() != 0)
_exit(2);
/* Drop all caps using utils.h helper */
if (caps_down() == 0)
_exit(3);
fd = sys_open_tree(AT_FDCWD, "/",
OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC);
if (fd >= 0) {
close(fd);
/* Should have failed without caps */
_exit(1);
}
if (errno == EPERM)
_exit(0);
/* EINVAL means OPEN_TREE_NAMESPACE not supported */
if (errno == EINVAL)
_exit(4);
/* Unexpected error */
_exit(5);
}
ASSERT_EQ(waitpid(pid, &status, 0), pid);
ASSERT_TRUE(WIFEXITED(status));
switch (WEXITSTATUS(status)) {
case 0:
/* Expected: EPERM without caps */
break;
case 1:
ASSERT_FALSE(true) TH_LOG("OPEN_TREE_NAMESPACE succeeded without caps");
break;
case 2:
SKIP(return, "setup_userns failed");
break;
case 3:
SKIP(return, "caps_down failed");
break;
case 4:
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
break;
default:
ASSERT_FALSE(true) TH_LOG("Unexpected error in child (exit %d)",
WEXITSTATUS(status));
break;
}
}
FIXTURE(open_tree_ns_userns)
{
int fd;
};
FIXTURE_SETUP(open_tree_ns_userns)
{
int ret;
self->fd = -1;
/* Check if open_tree syscall is supported */
ret = sys_open_tree(-1, NULL, 0);
if (ret == -1 && errno == ENOSYS)
SKIP(return, "open_tree() syscall not supported");
/* Check if statmount/listmount are supported */
ret = statmount(0, 0, 0, NULL, 0, 0);
if (ret == -1 && errno == ENOSYS)
SKIP(return, "statmount() syscall not supported");
}
FIXTURE_TEARDOWN(open_tree_ns_userns)
{
if (self->fd >= 0)
close(self->fd);
}
TEST_F(open_tree_ns_userns, create_in_userns)
{
pid_t pid;
int status;
pid = fork();
ASSERT_GE(pid, 0);
if (pid == 0) {
uint64_t new_ns_id;
uint64_t list[256];
ssize_t nr_mounts;
int fd;
/* Create new user namespace (also creates mount namespace) */
if (enter_userns() != 0)
_exit(2);
/* Now we have CAP_SYS_ADMIN in the user namespace */
fd = sys_open_tree(AT_FDCWD, "/",
OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC);
if (fd < 0) {
if (errno == EINVAL)
_exit(4); /* OPEN_TREE_NAMESPACE not supported */
_exit(1);
}
/* Verify we can get the namespace ID */
if (get_mnt_ns_id(fd, &new_ns_id) != 0)
_exit(5);
/* Verify we can list mounts in the new namespace */
nr_mounts = listmount(LSMT_ROOT, new_ns_id, 0, list, 256, 0);
if (nr_mounts < 0)
_exit(6);
/* Should have at least 1 mount */
if (nr_mounts < 1)
_exit(7);
close(fd);
_exit(0);
}
ASSERT_EQ(waitpid(pid, &status, 0), pid);
ASSERT_TRUE(WIFEXITED(status));
switch (WEXITSTATUS(status)) {
case 0:
/* Success */
break;
case 1:
ASSERT_FALSE(true) TH_LOG("open_tree(OPEN_TREE_NAMESPACE) failed in userns");
break;
case 2:
SKIP(return, "setup_userns failed");
break;
case 4:
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
break;
case 5:
ASSERT_FALSE(true) TH_LOG("Failed to get mount namespace ID");
break;
case 6:
ASSERT_FALSE(true) TH_LOG("listmount failed in new namespace");
break;
case 7:
ASSERT_FALSE(true) TH_LOG("New namespace has no mounts");
break;
default:
ASSERT_FALSE(true) TH_LOG("Unexpected error in child (exit %d)",
WEXITSTATUS(status));
break;
}
}
TEST_F(open_tree_ns_userns, setns_in_userns)
{
pid_t pid;
int status;
pid = fork();
ASSERT_GE(pid, 0);
if (pid == 0) {
uint64_t new_ns_id;
int fd;
pid_t inner_pid;
int inner_status;
/* Create new user namespace */
if (enter_userns() != 0)
_exit(2);
fd = sys_open_tree(AT_FDCWD, "/",
OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC);
if (fd < 0) {
if (errno == EINVAL)
_exit(4);
_exit(1);
}
if (get_mnt_ns_id(fd, &new_ns_id) != 0)
_exit(5);
/* Fork again to test setns into the new namespace */
inner_pid = fork();
if (inner_pid < 0)
_exit(8);
if (inner_pid == 0) {
/* Inner child: enter the new namespace */
if (setns(fd, CLONE_NEWNS) < 0)
_exit(1);
_exit(0);
}
if (waitpid(inner_pid, &inner_status, 0) != inner_pid)
_exit(9);
if (!WIFEXITED(inner_status) || WEXITSTATUS(inner_status) != 0)
_exit(10);
close(fd);
_exit(0);
}
ASSERT_EQ(waitpid(pid, &status, 0), pid);
ASSERT_TRUE(WIFEXITED(status));
switch (WEXITSTATUS(status)) {
case 0:
/* Success */
break;
case 1:
ASSERT_FALSE(true) TH_LOG("open_tree or setns failed in userns");
break;
case 2:
SKIP(return, "setup_userns failed");
break;
case 4:
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
break;
case 5:
ASSERT_FALSE(true) TH_LOG("Failed to get mount namespace ID");
break;
case 8:
ASSERT_FALSE(true) TH_LOG("Inner fork failed");
break;
case 9:
ASSERT_FALSE(true) TH_LOG("Inner waitpid failed");
break;
case 10:
ASSERT_FALSE(true) TH_LOG("setns into new namespace failed");
break;
default:
ASSERT_FALSE(true) TH_LOG("Unexpected error in child (exit %d)",
WEXITSTATUS(status));
break;
}
}
TEST_F(open_tree_ns_userns, recursive_in_userns)
{
pid_t pid;
int status;
pid = fork();
ASSERT_GE(pid, 0);
if (pid == 0) {
uint64_t new_ns_id;
uint64_t list[256];
ssize_t nr_mounts;
int fd;
/* Create new user namespace */
if (enter_userns() != 0)
_exit(2);
/* Test recursive flag in userns */
fd = sys_open_tree(AT_FDCWD, "/",
OPEN_TREE_NAMESPACE | AT_RECURSIVE | OPEN_TREE_CLOEXEC);
if (fd < 0) {
if (errno == EINVAL)
_exit(4);
_exit(1);
}
if (get_mnt_ns_id(fd, &new_ns_id) != 0)
_exit(5);
nr_mounts = listmount(LSMT_ROOT, new_ns_id, 0, list, 256, 0);
if (nr_mounts < 0)
_exit(6);
/* Recursive should copy submounts too */
if (nr_mounts < 1)
_exit(7);
close(fd);
_exit(0);
}
ASSERT_EQ(waitpid(pid, &status, 0), pid);
ASSERT_TRUE(WIFEXITED(status));
switch (WEXITSTATUS(status)) {
case 0:
/* Success */
break;
case 1:
ASSERT_FALSE(true) TH_LOG("open_tree(OPEN_TREE_NAMESPACE|AT_RECURSIVE) failed in userns");
break;
case 2:
SKIP(return, "setup_userns failed");
break;
case 4:
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
break;
case 5:
ASSERT_FALSE(true) TH_LOG("Failed to get mount namespace ID");
break;
case 6:
ASSERT_FALSE(true) TH_LOG("listmount failed in new namespace");
break;
case 7:
ASSERT_FALSE(true) TH_LOG("New namespace has no mounts");
break;
default:
ASSERT_FALSE(true) TH_LOG("Unexpected error in child (exit %d)",
WEXITSTATUS(status));
break;
}
}
TEST_F(open_tree_ns_userns, umount_fails_einval)
{
pid_t pid;
int status;
pid = fork();
ASSERT_GE(pid, 0);
if (pid == 0) {
uint64_t new_ns_id;
uint64_t list[256];
ssize_t nr_mounts;
int fd;
ssize_t i;
/* Create new user namespace */
if (enter_userns() != 0)
_exit(2);
fd = sys_open_tree(AT_FDCWD, "/",
OPEN_TREE_NAMESPACE | AT_RECURSIVE | OPEN_TREE_CLOEXEC);
if (fd < 0) {
if (errno == EINVAL)
_exit(4);
_exit(1);
}
if (get_mnt_ns_id(fd, &new_ns_id) != 0)
_exit(5);
/* Get all mounts in the new namespace */
nr_mounts = listmount(LSMT_ROOT, new_ns_id, 0, list, 256, LISTMOUNT_REVERSE);
if (nr_mounts < 0)
_exit(9);
if (nr_mounts < 1)
_exit(10);
/* Enter the new namespace */
if (setns(fd, CLONE_NEWNS) < 0)
_exit(6);
for (i = 0; i < nr_mounts; i++) {
struct statmount *sm;
const char *mnt_point;
sm = statmount_alloc(list[i], new_ns_id,
STATMOUNT_MNT_POINT);
if (!sm)
_exit(11);
mnt_point = sm->str + sm->mnt_point;
TH_LOG("Trying to umount %s", mnt_point);
if (umount2(mnt_point, MNT_DETACH) == 0) {
free(sm);
_exit(7);
}
if (errno != EINVAL) {
/* Wrong error */
free(sm);
_exit(8);
}
free(sm);
}
close(fd);
_exit(0);
}
ASSERT_EQ(waitpid(pid, &status, 0), pid);
ASSERT_TRUE(WIFEXITED(status));
switch (WEXITSTATUS(status)) {
case 0:
break;
case 1:
ASSERT_FALSE(true) TH_LOG("open_tree(OPEN_TREE_NAMESPACE) failed");
break;
case 2:
SKIP(return, "setup_userns failed");
break;
case 4:
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
break;
case 5:
ASSERT_FALSE(true) TH_LOG("Failed to get mount namespace ID");
break;
case 6:
ASSERT_FALSE(true) TH_LOG("setns into new namespace failed");
break;
case 7:
ASSERT_FALSE(true) TH_LOG("umount succeeded but should have failed with EINVAL");
break;
case 8:
ASSERT_FALSE(true) TH_LOG("umount failed with wrong error (expected EINVAL)");
break;
case 9:
ASSERT_FALSE(true) TH_LOG("listmount failed");
break;
case 10:
ASSERT_FALSE(true) TH_LOG("No mounts in new namespace");
break;
case 11:
ASSERT_FALSE(true) TH_LOG("statmount_alloc failed");
break;
default:
ASSERT_FALSE(true) TH_LOG("Unexpected error in child (exit %d)",
WEXITSTATUS(status));
break;
}
}
TEST_F(open_tree_ns_userns, umount_succeeds)
{
pid_t pid;
int status;
pid = fork();
ASSERT_GE(pid, 0);
if (pid == 0) {
uint64_t new_ns_id;
uint64_t list[256];
ssize_t nr_mounts;
int fd;
ssize_t i;
if (unshare(CLONE_NEWNS))
_exit(1);
if (sys_mount(NULL, "/", NULL, MS_SLAVE | MS_REC, NULL) != 0)
_exit(1);
fd = sys_open_tree(AT_FDCWD, "/",
OPEN_TREE_NAMESPACE | AT_RECURSIVE | OPEN_TREE_CLOEXEC);
if (fd < 0) {
if (errno == EINVAL)
_exit(4);
_exit(1);
}
if (get_mnt_ns_id(fd, &new_ns_id) != 0)
_exit(5);
/* Get all mounts in the new namespace */
nr_mounts = listmount(LSMT_ROOT, new_ns_id, 0, list, 256, LISTMOUNT_REVERSE);
if (nr_mounts < 0)
_exit(9);
if (nr_mounts < 1)
_exit(10);
/* Enter the new namespace */
if (setns(fd, CLONE_NEWNS) < 0)
_exit(6);
for (i = 0; i < nr_mounts; i++) {
struct statmount *sm;
const char *mnt_point;
sm = statmount_alloc(list[i], new_ns_id,
STATMOUNT_MNT_POINT);
if (!sm)
_exit(11);
mnt_point = sm->str + sm->mnt_point;
TH_LOG("Trying to umount %s", mnt_point);
if (umount2(mnt_point, MNT_DETACH) != 0) {
free(sm);
_exit(7);
}
free(sm);
}
close(fd);
_exit(0);
}
ASSERT_EQ(waitpid(pid, &status, 0), pid);
ASSERT_TRUE(WIFEXITED(status));
switch (WEXITSTATUS(status)) {
case 0:
break;
case 1:
ASSERT_FALSE(true) TH_LOG("open_tree(OPEN_TREE_NAMESPACE) failed");
break;
case 2:
SKIP(return, "setup_userns failed");
break;
case 4:
SKIP(return, "OPEN_TREE_NAMESPACE not supported");
break;
case 5:
ASSERT_FALSE(true) TH_LOG("Failed to get mount namespace ID");
break;
case 6:
ASSERT_FALSE(true) TH_LOG("setns into new namespace failed");
break;
case 7:
ASSERT_FALSE(true) TH_LOG("umount succeeded but should have failed with EINVAL");
break;
case 9:
ASSERT_FALSE(true) TH_LOG("listmount failed");
break;
case 10:
ASSERT_FALSE(true) TH_LOG("No mounts in new namespace");
break;
case 11:
ASSERT_FALSE(true) TH_LOG("statmount_alloc failed");
break;
default:
ASSERT_FALSE(true) TH_LOG("Unexpected error in child (exit %d)",
WEXITSTATUS(status));
break;
}
}
FIXTURE(open_tree_ns_unbindable)
{
char tmpdir[PATH_MAX];
bool mounted;
};
FIXTURE_SETUP(open_tree_ns_unbindable)
{
int ret;
self->mounted = false;
/* Check if open_tree syscall is supported */
ret = sys_open_tree(-1, NULL, 0);
if (ret == -1 && errno == ENOSYS)
SKIP(return, "open_tree() syscall not supported");
/* Create a temporary directory for the test mount */
snprintf(self->tmpdir, sizeof(self->tmpdir),
"/tmp/open_tree_ns_test.XXXXXX");
ASSERT_NE(mkdtemp(self->tmpdir), NULL);
/* Mount tmpfs there */
ret = mount("tmpfs", self->tmpdir, "tmpfs", 0, NULL);
if (ret < 0) {
rmdir(self->tmpdir);
SKIP(return, "Failed to mount tmpfs");
}
self->mounted = true;
ret = mount(NULL, self->tmpdir, NULL, MS_UNBINDABLE, NULL);
if (ret < 0) {
rmdir(self->tmpdir);
SKIP(return, "Failed to make tmpfs unbindable");
}
}
FIXTURE_TEARDOWN(open_tree_ns_unbindable)
{
if (self->mounted)
umount2(self->tmpdir, MNT_DETACH);
rmdir(self->tmpdir);
}
TEST_F(open_tree_ns_unbindable, fails_on_unbindable)
{
int fd;
fd = sys_open_tree(AT_FDCWD, self->tmpdir,
OPEN_TREE_NAMESPACE | OPEN_TREE_CLOEXEC);
ASSERT_LT(fd, 0);
}
TEST_F(open_tree_ns_unbindable, recursive_skips_on_unbindable)
{
uint64_t new_ns_id;
uint64_t list[256];
ssize_t nr_mounts;
int fd;
ssize_t i;
bool found_unbindable = false;
fd = sys_open_tree(AT_FDCWD, "/",
OPEN_TREE_NAMESPACE | AT_RECURSIVE | OPEN_TREE_CLOEXEC);
ASSERT_GT(fd, 0);
ASSERT_EQ(get_mnt_ns_id(fd, &new_ns_id), 0);
nr_mounts = listmount(LSMT_ROOT, new_ns_id, 0, list, 256, 0);
ASSERT_GE(nr_mounts, 0) {
TH_LOG("listmount failed: %m");
}
/*
* Iterate through all mounts in the new namespace and verify
* the unbindable tmpfs mount was silently dropped.
*/
for (i = 0; i < nr_mounts; i++) {
struct statmount *sm;
const char *mnt_point;
sm = statmount_alloc(list[i], new_ns_id, STATMOUNT_MNT_POINT);
ASSERT_NE(sm, NULL) {
TH_LOG("statmount_alloc failed for mnt_id %llu",
(unsigned long long)list[i]);
}
mnt_point = sm->str + sm->mnt_point;
if (strcmp(mnt_point, self->tmpdir) == 0) {
TH_LOG("Found unbindable mount at %s (should have been dropped)",
mnt_point);
found_unbindable = true;
}
free(sm);
}
ASSERT_FALSE(found_unbindable) {
TH_LOG("Unbindable mount at %s was not dropped", self->tmpdir);
}
close(fd);
}
TEST_HARNESS_MAIN
|