Commit 5cb1ce94 authored by Andrei Vagin's avatar Andrei Vagin Committed by Pavel Emelyanov

zdtm: check read-only tmpfs in userns

travis-ci: success for Fix a few issues to dump/restore Docker containers with userns
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent 771e3321
......@@ -221,6 +221,7 @@ TST_DIR = \
tempfs_overmounted \
tempfs_overmounted01 \
tempfs_ro \
tempfs_ro02 \
tempfs_subns \
mnt_ro_bind \
mount_paths \
......
#include <stdbool.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <linux/limits.h>
#include "zdtmtst.h"
const char *test_doc = "Check read-only tmpfs mount";
const char *test_author = "Andrew Vagin <avagin@openvz.org>";
char *dirname;
TEST_OPTION(dirname, string, "directory name", 1);
#define TEST_WORD "testtest"
int main(int argc, char **argv)
{
int fd, ret = 1;
char buf[1024], fname[PATH_MAX];
test_init(argc, argv);
mkdir(dirname, 0700);
if (mount("none", dirname, "tmpfs", MS_RDONLY, "") < 0) {
fail("Can't mount tmpfs");
return 1;
}
snprintf(fname, sizeof(buf), "%s/test.file", dirname);
test_daemon();
test_waitsig();
fd = open(fname, O_RDWR | O_CREAT, 0777);
if (fd >= 0 || errno != EROFS) {
pr_perror("open failed -> %d", fd);
goto err;
}
pass();
ret = 0;
err:
umount2(dirname, MNT_DETACH);
rmdir(dirname);
return ret;
}
{'flavor': 'ns uns', 'flags': 'suid'}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment