criu/test/zdtm/static/mntns_shared_bind03.c
Dmitry Safonov 3bdaf5a9d8 zdtm: rely on -D_GNU_SOURCE passed from Makefiles
After the commit
  02c763939c10 ("test/zdtm: unify common code")

CFLAGS with -D_GNU_SOURCE defined in the top Makefile
are being passed to tests Makefiles.
As _GNU_SOURCE is also defined by tests, that resulted in
zdtm tests build failures:

  make[2]: Entering directory `/home/criu/test/zdtm/lib'
   CC        test.o
  test.c:1:0: error: "_GNU_SOURCE" redefined [-Werror]
   #define _GNU_SOURCE
   ^
  <command-line>:0:0: note: this is the location of the previous definition
  cc1: all warnings being treated as errors
  make[2]: *** [test.o] Error 1

However, we didn't catch this in time by Travis-CI, as zdtm.py doesn't
do `make zdtm`, rather it does `make -C test/zdtm/{lib,static,transition}`.
By calling middle makefile this way, it doesn't have _GNU_SOURCE in
CFLAGS from top-Makefile.

I think the right thing to do here - is following CRIU's way:
rely on definition of _GNU_SOURCE by Makefiles.

This patch is almost fully generated with
  find test/zdtm/ -name '*.c' -type f					\
     -exec sed -i '/define _GNU_SOURCE/{n;/^$/d;}' '{}' \;		\
     -exec sed -i '/define _GNU_SOURCE/d' '{}' \;

With an exception for adding -D_GNU_SOURCE in tests Makefile.inc for
keeping the same behaviour for zdtm.py.
Also changed utsname.c to use utsname::domainname, rather private
utsname::__domainname, as now it's uncovered (from sys/utsname.h):
> struct utsname
>  {
...
> # ifdef __USE_GNU
>     char domainname[_UTSNAME_DOMAIN_LENGTH];
> # else
>     char __domainname[_UTSNAME_DOMAIN_LENGTH];
> # endif

Reported-by: Adrian Reber <areber@redhat.com>
Cc: Kir Kolyshkin <kir@openvz.org>
Signed-off-by: Dmitry Safonov <dsafonov@virtuozzo.com>
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
2017-04-11 09:01:08 +03:00

123 lines
2.1 KiB
C

#include <stdbool.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sched.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <limits.h>
#include "zdtmtst.h"
#ifndef CLONE_NEWNS
#define CLONE_NEWNS 0x00020000
#endif
const char *test_doc = "Check shared non-root bind-mounts with different shared groups";
const char *test_author = "Andrew Vagin <avagin@gmail.com>";
char *dirname;
TEST_OPTION(dirname, string, "directory name", 1);
int main(int argc, char **argv)
{
test_init(argc, argv);
if (mkdir(dirname, 0700)) {
pr_perror("mkdir");
return 1;
}
if (chdir(dirname))
return 1;
if (mkdir("1", 0700) || mkdir("2", 0700) || mkdir("3", 0700)) {
pr_perror("mkdir");
return 1;
}
if (mkdir("A", 0700)) {
pr_perror("mkdir");
return 1;
}
if (mkdir("B", 0700)) {
pr_perror("mkdir");
return 1;
}
if (mount("1", "1", NULL, MS_BIND, NULL) ||
mount(NULL, "1", NULL, MS_PRIVATE, NULL) ||
mount(NULL, "1", NULL, MS_SHARED, NULL)) {
pr_perror("mount");
return 1;
}
if (mount("1", "A", NULL, MS_BIND, NULL) ||
mount(NULL, "A", NULL, MS_PRIVATE, NULL) ||
mount(NULL, "A", NULL, MS_SHARED, NULL)) {
pr_perror("mount");
return 1;
}
if (mount("1", "B", NULL, MS_BIND, NULL) ||
mount(NULL, "B", NULL, MS_SLAVE, NULL)) {
pr_perror("mount");
return 1;
}
if (mkdir("1/D", 0700)) {
pr_perror("mkdir");
return 1;
}
if (mount("1/D", "2", NULL, MS_BIND, NULL)) {
pr_perror("mount");
return 1;
}
if (mount("1", "3", NULL, MS_BIND, NULL)) {
pr_perror("mount");
return 1;
}
test_daemon();
test_waitsig();
if (mkdir("1/D/test", 0700)) {
pr_perror("mkdir");
return 1;
}
if (mount("zdtm_shared", "1/D/test", "tmpfs", 0, NULL)) {
pr_perror("mount");
return 1;
}
if (mount(NULL, "3", NULL, MS_PRIVATE, NULL)) {
pr_perror("mount");
return 1;
}
if (umount("B/D/test")) {
pr_perror("umount");
return 1;
}
if (umount("2/test")) {
pr_perror("umount");
return 1;
}
if (umount("3/D/test")) {
pr_perror("umount");
return 1;
}
pass();
return 0;
}