2010-07-03 17:37:22 +04:00
|
|
|
/* $NetBSD: t_pr.c,v 1.7 2010/07/03 13:37:22 pooka Exp $ */
|
2010-06-29 19:25:28 +04:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
|
|
|
|
#include <atf-c.h>
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <rump/rump.h>
|
|
|
|
#include <rump/rump_syscalls.h>
|
|
|
|
|
|
|
|
#include <miscfs/union/union.h>
|
|
|
|
|
|
|
|
#include "../../h_macros.h"
|
|
|
|
|
|
|
|
ATF_TC(multilayer);
|
|
|
|
ATF_TC_HEAD(multilayer, tc)
|
|
|
|
{
|
|
|
|
atf_tc_set_md_var(tc, "descr", "mount_union -b twice");
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC_BODY(multilayer, tc)
|
|
|
|
{
|
|
|
|
struct union_args unionargs;
|
|
|
|
|
|
|
|
rump_init();
|
|
|
|
|
|
|
|
if (rump_sys_mkdir("/Tunion", 0777) == -1)
|
|
|
|
atf_tc_fail_errno("mkdir mp1");
|
|
|
|
if (rump_sys_mkdir("/Tunion2", 0777) == -1)
|
|
|
|
atf_tc_fail_errno("mkdir mp2");
|
|
|
|
if (rump_sys_mkdir("/Tunion2/A", 0777) == -1)
|
|
|
|
atf_tc_fail_errno("mkdir A");
|
|
|
|
if (rump_sys_mkdir("/Tunion2/B", 0777) == -1)
|
|
|
|
atf_tc_fail_errno("mkdir B");
|
|
|
|
|
|
|
|
unionargs.target = __UNCONST("/Tunion2/A");
|
|
|
|
unionargs.mntflags = UNMNT_BELOW;
|
|
|
|
|
|
|
|
if (rump_sys_mount(MOUNT_UNION, "/Tunion", 0,
|
|
|
|
&unionargs, sizeof(unionargs)) == -1)
|
|
|
|
atf_tc_fail_errno("union mount");
|
|
|
|
|
|
|
|
unionargs.target = __UNCONST("/Tunion2/B");
|
|
|
|
unionargs.mntflags = UNMNT_BELOW;
|
|
|
|
|
2010-07-03 12:18:30 +04:00
|
|
|
/* atf_tc_expect_signal(-1, "PR kern/23986"); */
|
2010-06-29 19:25:28 +04:00
|
|
|
rump_sys_mount(MOUNT_UNION, "/Tunion", 0,&unionargs,sizeof(unionargs));
|
|
|
|
}
|
|
|
|
|
2010-07-03 16:08:37 +04:00
|
|
|
ATF_TC(devnull1);
|
|
|
|
ATF_TC_HEAD(devnull1, tc)
|
|
|
|
{
|
|
|
|
atf_tc_set_md_var(tc, "descr", "mount_union -b and "
|
|
|
|
"'echo x > /un/null'");
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC_BODY(devnull1, tc)
|
|
|
|
{
|
|
|
|
struct union_args unionargs;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
rump_init();
|
|
|
|
|
|
|
|
if (rump_sys_mkdir("/mp", 0777) == -1)
|
|
|
|
atf_tc_fail_errno("mkdir mp");
|
|
|
|
|
|
|
|
unionargs.target = __UNCONST("/dev");
|
|
|
|
unionargs.mntflags = UNMNT_BELOW;
|
|
|
|
|
|
|
|
if (rump_sys_mount(MOUNT_UNION, "/mp", 0,
|
|
|
|
&unionargs, sizeof(unionargs)) == -1)
|
|
|
|
atf_tc_fail_errno("union mount");
|
|
|
|
|
|
|
|
fd = rump_sys_open("/mp/null", O_WRONLY | O_CREAT | O_TRUNC);
|
|
|
|
|
|
|
|
atf_tc_expect_fail("PR kern/43560");
|
2010-07-03 17:37:22 +04:00
|
|
|
if (fd == -1 && errno == EROFS) {
|
2010-07-03 16:23:04 +04:00
|
|
|
atf_tc_fail("open returned EROFS");
|
2010-07-03 17:37:22 +04:00
|
|
|
} else if (fd == -1) {
|
|
|
|
atf_tc_expect_pass();
|
2010-07-03 16:23:04 +04:00
|
|
|
atf_tc_fail_errno("open fail");
|
2010-07-03 17:37:22 +04:00
|
|
|
}
|
2010-07-03 16:23:04 +04:00
|
|
|
|
2010-07-03 16:08:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC(devnull2);
|
|
|
|
ATF_TC_HEAD(devnull2, tc)
|
|
|
|
{
|
|
|
|
atf_tc_set_md_var(tc, "descr", "mount_union -b and "
|
|
|
|
"'echo x >> /un/null'");
|
|
|
|
}
|
|
|
|
|
|
|
|
ATF_TC_BODY(devnull2, tc)
|
|
|
|
{
|
|
|
|
struct union_args unionargs;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
rump_init();
|
|
|
|
|
|
|
|
if (rump_sys_mkdir("/mp", 0777) == -1)
|
|
|
|
atf_tc_fail_errno("mkdir mp");
|
|
|
|
|
|
|
|
unionargs.target = __UNCONST("/dev");
|
|
|
|
unionargs.mntflags = UNMNT_BELOW;
|
|
|
|
|
|
|
|
if (rump_sys_mount(MOUNT_UNION, "/mp", 0,
|
|
|
|
&unionargs, sizeof(unionargs)) == -1)
|
|
|
|
atf_tc_fail_errno("union mount");
|
|
|
|
|
|
|
|
fd = rump_sys_open("/mp/null", O_WRONLY | O_CREAT | O_APPEND);
|
|
|
|
if (fd == -1)
|
|
|
|
atf_tc_fail_errno("open");
|
|
|
|
|
|
|
|
atf_tc_expect_signal(-1, "PR kern/43560");
|
|
|
|
rump_sys_write(fd, &fd, sizeof(fd));
|
|
|
|
}
|
|
|
|
|
2010-06-29 19:25:28 +04:00
|
|
|
ATF_TP_ADD_TCS(tp)
|
|
|
|
{
|
|
|
|
ATF_TP_ADD_TC(tp, multilayer);
|
2010-07-03 16:08:37 +04:00
|
|
|
ATF_TP_ADD_TC(tp, devnull1);
|
|
|
|
ATF_TP_ADD_TC(tp, devnull2);
|
2010-06-29 19:25:28 +04:00
|
|
|
|
|
|
|
return atf_no_error();
|
|
|
|
}
|