1 /* Return true if the process can perform a chroot operation.
2 Copyright (C) 2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
21 #include <support/check.h>
22 #include <support/namespace.h>
23 #include <support/support.h>
29 callback (void *closure
)
31 int *result
= closure
;
33 xstat ("/dev", &before
);
34 if (chroot ("/dev") != 0)
41 TEST_VERIFY (before
.st_dev
== after
.st_dev
);
42 TEST_VERIFY (before
.st_ino
== after
.st_ino
);
47 support_can_chroot (void)
49 int *result
= support_shared_allocate (sizeof (*result
));
51 support_isolate_in_subprocess (callback
, result
);
52 bool ok
= *result
== 0;
55 static bool already_warned
;
58 already_warned
= true;
60 printf ("warning: this process does not support chroot: %m\n");
63 support_shared_free (result
);