2010-07-30 20:15:05 +04:00
|
|
|
/* $NetBSD: h_fsmacros.h,v 1.17 2010/07/30 16:15:05 pooka Exp $ */
|
2010-07-01 00:39:39 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2010 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2010-07-05 18:53:03 +04:00
|
|
|
* by Nicolas Joly.
|
2010-07-01 00:39:39 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __H_FSMACROS_H_
|
|
|
|
#define __H_FSMACROS_H_
|
|
|
|
|
2010-07-09 18:30:53 +04:00
|
|
|
#include <sys/mount.h>
|
|
|
|
|
2010-07-01 00:39:39 +04:00
|
|
|
#include <atf-c.h>
|
2010-07-30 20:15:05 +04:00
|
|
|
#include <puffsdump.h>
|
2010-07-01 00:39:39 +04:00
|
|
|
#include <string.h>
|
|
|
|
|
2010-07-19 20:09:07 +04:00
|
|
|
#define FSPROTOS(_fs_) \
|
2010-07-30 20:15:05 +04:00
|
|
|
int _fs_##_fstest_newfs(const atf_tc_t *, void **, const char *, \
|
|
|
|
off_t, void *); \
|
2010-07-19 20:09:07 +04:00
|
|
|
int _fs_##_fstest_delfs(const atf_tc_t *, void *); \
|
|
|
|
int _fs_##_fstest_mount(const atf_tc_t *, void *, const char *, int); \
|
|
|
|
int _fs_##_fstest_unmount(const atf_tc_t *, const char *, int);
|
|
|
|
|
|
|
|
FSPROTOS(ext2fs);
|
|
|
|
FSPROTOS(ffs);
|
|
|
|
FSPROTOS(lfs);
|
|
|
|
FSPROTOS(msdosfs);
|
2010-07-26 20:15:49 +04:00
|
|
|
FSPROTOS(nfs);
|
2010-07-19 20:09:07 +04:00
|
|
|
FSPROTOS(puffs);
|
|
|
|
FSPROTOS(sysvbfs);
|
|
|
|
FSPROTOS(tmpfs);
|
2010-07-01 00:39:39 +04:00
|
|
|
|
2010-07-19 20:21:22 +04:00
|
|
|
#define FSTEST_IMGNAME "image.fs"
|
|
|
|
#define FSTEST_IMGSIZE (10000 * 512)
|
|
|
|
#define FSTEST_MNTNAME "/mnt"
|
2010-07-01 00:39:39 +04:00
|
|
|
|
2010-07-28 18:23:02 +04:00
|
|
|
#define FSTEST_CONSTRUCTOR(_tc_, _fs_, _args_) \
|
|
|
|
do { \
|
|
|
|
if (_fs_##_fstest_newfs(_tc_, &_args_, \
|
2010-07-30 20:15:05 +04:00
|
|
|
FSTEST_IMGNAME, FSTEST_IMGSIZE, NULL) != 0) \
|
|
|
|
atf_tc_fail("newfs failed"); \
|
|
|
|
if (_fs_##_fstest_mount(_tc_, _args_, FSTEST_MNTNAME, 0) != 0) \
|
|
|
|
atf_tc_fail("mount failed"); \
|
|
|
|
} while (/*CONSTCOND*/0);
|
|
|
|
|
|
|
|
#define FSTEST_CONSTRUCTOR_FSPRIV(_tc_, _fs_, _args_, _privargs_) \
|
|
|
|
do { \
|
|
|
|
if (_fs_##_fstest_newfs(_tc_, &_args_, \
|
|
|
|
FSTEST_IMGNAME, FSTEST_IMGSIZE, _privargs_) != 0) \
|
2010-07-28 18:23:02 +04:00
|
|
|
atf_tc_fail("newfs failed"); \
|
|
|
|
if (_fs_##_fstest_mount(_tc_, _args_, FSTEST_MNTNAME, 0) != 0) \
|
|
|
|
atf_tc_fail("mount failed"); \
|
|
|
|
} while (/*CONSTCOND*/0);
|
|
|
|
|
|
|
|
#define FSTEST_DESTRUCTOR(_tc_, _fs_, _args_) \
|
|
|
|
do { \
|
|
|
|
if (_fs_##_fstest_unmount(_tc_, FSTEST_MNTNAME, 0) != 0) \
|
|
|
|
atf_tc_fail("unmount failed"); \
|
|
|
|
if (_fs_##_fstest_delfs(_tc_, _args_) != 0) \
|
|
|
|
atf_tc_fail("delfs failed"); \
|
|
|
|
} while (/*CONSTCOND*/0);
|
|
|
|
|
2010-07-01 00:39:39 +04:00
|
|
|
#define ATF_TC_FSADD(fs,type,func,desc) \
|
2010-07-20 21:44:01 +04:00
|
|
|
ATF_TC_WITH_CLEANUP(fs##_##func); \
|
2010-07-01 00:39:39 +04:00
|
|
|
ATF_TC_HEAD(fs##_##func,tc) \
|
|
|
|
{ \
|
|
|
|
atf_tc_set_md_var(tc, "descr", type " test for " desc); \
|
|
|
|
atf_tc_set_md_var(tc, "use.fs", "true"); \
|
2010-07-13 01:05:19 +04:00
|
|
|
atf_tc_set_md_var(tc, "X-fs.type", type); \
|
2010-07-01 00:39:39 +04:00
|
|
|
} \
|
2010-07-20 21:44:01 +04:00
|
|
|
void *fs##func##tmp; \
|
2010-07-01 00:39:39 +04:00
|
|
|
ATF_TC_BODY(fs##_##func,tc) \
|
|
|
|
{ \
|
2010-07-20 21:44:01 +04:00
|
|
|
if (!atf_check_fstype(tc, type)) \
|
|
|
|
atf_tc_skip("filesystem not selected"); \
|
2010-07-28 18:23:02 +04:00
|
|
|
FSTEST_CONSTRUCTOR(tc,fs,fs##func##tmp); \
|
2010-07-19 20:21:22 +04:00
|
|
|
func(tc,FSTEST_MNTNAME); \
|
|
|
|
if (fs##_fstest_unmount(tc, FSTEST_MNTNAME, 0) != 0) \
|
2010-07-01 00:39:39 +04:00
|
|
|
atf_tc_fail("unmount failed"); \
|
2010-07-20 21:44:01 +04:00
|
|
|
} \
|
|
|
|
ATF_TC_CLEANUP(fs##_##func,tc) \
|
|
|
|
{ \
|
|
|
|
if (!atf_check_fstype(tc, type)) \
|
|
|
|
return; \
|
|
|
|
if (fs##_fstest_delfs(tc, fs##func##tmp) != 0) \
|
2010-07-01 00:39:39 +04:00
|
|
|
atf_tc_fail("delfs failed"); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ATF_TP_FSADD(fs,func) \
|
|
|
|
ATF_TP_ADD_TC(tp,fs##_##func)
|
|
|
|
|
|
|
|
#define ATF_TC_FSAPPLY(func,desc) \
|
2010-07-09 18:30:53 +04:00
|
|
|
ATF_TC_FSADD(ext2fs,MOUNT_EXT2FS,func,desc) \
|
|
|
|
ATF_TC_FSADD(ffs,MOUNT_FFS,func,desc) \
|
|
|
|
ATF_TC_FSADD(lfs,MOUNT_LFS,func,desc) \
|
|
|
|
ATF_TC_FSADD(msdosfs,MOUNT_MSDOS,func,desc) \
|
2010-07-26 20:15:49 +04:00
|
|
|
ATF_TC_FSADD(nfs,MOUNT_NFS,func,desc) \
|
2010-07-13 20:48:15 +04:00
|
|
|
ATF_TC_FSADD(puffs,MOUNT_PUFFS,func,desc) \
|
2010-07-09 18:30:53 +04:00
|
|
|
ATF_TC_FSADD(sysvbfs,MOUNT_SYSVBFS,func,desc) \
|
|
|
|
ATF_TC_FSADD(tmpfs,MOUNT_TMPFS,func,desc)
|
2010-07-01 00:39:39 +04:00
|
|
|
|
|
|
|
#define ATF_TP_FSAPPLY(func) \
|
|
|
|
ATF_TP_FSADD(ext2fs,func); \
|
|
|
|
ATF_TP_FSADD(ffs,func); \
|
2010-07-08 17:21:02 +04:00
|
|
|
ATF_TP_FSADD(lfs,func); \
|
2010-07-01 00:39:39 +04:00
|
|
|
ATF_TP_FSADD(msdosfs,func); \
|
2010-07-26 20:15:49 +04:00
|
|
|
ATF_TP_FSADD(nfs,func); \
|
2010-07-13 20:48:15 +04:00
|
|
|
ATF_TP_FSADD(puffs,func); \
|
2010-07-01 00:39:39 +04:00
|
|
|
ATF_TP_FSADD(sysvbfs,func); \
|
|
|
|
ATF_TP_FSADD(tmpfs,func);
|
|
|
|
|
|
|
|
#define ATF_FSAPPLY(func,desc) \
|
|
|
|
ATF_TC_FSAPPLY(func,desc); \
|
|
|
|
ATF_TP_ADD_TCS(tp) \
|
|
|
|
{ \
|
|
|
|
ATF_TP_FSAPPLY(func); \
|
|
|
|
return atf_no_error(); \
|
|
|
|
}
|
|
|
|
|
2010-07-20 21:44:01 +04:00
|
|
|
static __inline bool
|
2010-07-01 00:39:39 +04:00
|
|
|
atf_check_fstype(const atf_tc_t *tc, const char *fs)
|
|
|
|
{
|
|
|
|
const char *fstype;
|
|
|
|
|
|
|
|
if (!atf_tc_has_config_var(tc, "fstype"))
|
2010-07-20 21:44:01 +04:00
|
|
|
return true;
|
2010-07-01 00:39:39 +04:00
|
|
|
fstype = atf_tc_get_config_var(tc, "fstype");
|
|
|
|
if (strcmp(fstype, fs) == 0)
|
2010-07-20 21:44:01 +04:00
|
|
|
return true;
|
|
|
|
return false;
|
2010-07-01 00:39:39 +04:00
|
|
|
}
|
|
|
|
|
2010-07-13 15:12:19 +04:00
|
|
|
#define FSTYPE_EXT2FS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_EXT2FS) == 0)
|
|
|
|
#define FSTYPE_FFS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_FFS) == 0)
|
|
|
|
#define FSTYPE_LFS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_LFS) == 0)
|
|
|
|
#define FSTYPE_MSDOS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_MSDOS) == 0)
|
2010-07-26 20:15:49 +04:00
|
|
|
#define FSTYPE_NFS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_NFS) == 0)
|
2010-07-13 15:12:19 +04:00
|
|
|
#define FSTYPE_PUFFS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_PUFFS) == 0)
|
|
|
|
#define FSTYPE_SYSVBFS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_SYSVBFS) == 0)
|
|
|
|
#define FSTYPE_TMPFS(tc)\
|
|
|
|
(strcmp(atf_tc_get_md_var(tc, "X-fs.type"), MOUNT_TMPFS) == 0)
|
2010-07-09 18:30:53 +04:00
|
|
|
|
2010-07-30 20:15:05 +04:00
|
|
|
#define FSTEST_ENTER() \
|
|
|
|
if (rump_sys_chdir(FSTEST_MNTNAME) == -1) \
|
|
|
|
atf_tc_fail_errno("failed to cd into test mount")
|
|
|
|
#define FSTEST_EXIT() \
|
|
|
|
if (rump_sys_chdir("/") == -1) \
|
|
|
|
atf_tc_fail_errno("failed to cd out of test mount")
|
|
|
|
|
|
|
|
/*
|
|
|
|
* file system args structures
|
|
|
|
*/
|
2010-07-28 19:16:50 +04:00
|
|
|
|
|
|
|
struct nfstestargs {
|
|
|
|
pid_t ta_childpid;
|
|
|
|
char ta_ethername[MAXPATHLEN];
|
|
|
|
};
|
|
|
|
|
2010-07-30 20:15:05 +04:00
|
|
|
struct puffstestargs {
|
|
|
|
uint8_t *pta_pargs;
|
|
|
|
size_t pta_pargslen;
|
|
|
|
|
|
|
|
int pta_pflags;
|
|
|
|
pid_t pta_childpid;
|
|
|
|
|
|
|
|
int pta_rumpfd;
|
|
|
|
int pta_servfd;
|
|
|
|
|
|
|
|
char pta_dev[MAXPATHLEN];
|
|
|
|
char pta_dir[MAXPATHLEN];
|
|
|
|
|
|
|
|
int pta_mntflags;
|
|
|
|
|
|
|
|
int pta_vfs_toserv_ops[PUFFS_VFS_MAX];
|
|
|
|
int pta_vn_toserv_ops[PUFFS_VN_MAX];
|
|
|
|
};
|
|
|
|
|
2010-07-01 00:39:39 +04:00
|
|
|
#endif /* __H_FSMACROS_H_ */
|