summaryrefslogtreecommitdiffstats
path: root/contrib/netbsd-tests/fs/common/h_fsmacros.h
blob: b47a70802bba983d55401722773d3d3c46c6e07d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
/*	$NetBSD: h_fsmacros.h,v 1.38 2013/06/26 19:29:24 reinoud Exp $	*/

/*-
 * Copyright (c) 2010 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by Nicolas Joly.
 *
 * 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_

#include <sys/mount.h>

#include <atf-c.h>
#include <puffsdump.h>
#include <string.h>

#include <rump/rump.h>

#include "../../h_macros.h"

#define FSPROTOS(_fs_)							\
int _fs_##_fstest_newfs(const atf_tc_t *, void **, const char *,	\
			off_t, void *);					\
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(ffslog);
FSPROTOS(lfs);
FSPROTOS(msdosfs);
FSPROTOS(nfs);
FSPROTOS(nfsro);
FSPROTOS(p2k_ffs);
FSPROTOS(puffs);
FSPROTOS(rumpfs);
FSPROTOS(sysvbfs);
FSPROTOS(tmpfs);
FSPROTOS(udf);
FSPROTOS(v7fs);
FSPROTOS(zfs);

#ifndef FSTEST_IMGNAME
#define FSTEST_IMGNAME "image.fs"
#endif
#ifndef FSTEST_IMGSIZE
#define FSTEST_IMGSIZE (10000 * 512)
#endif
#ifndef FSTEST_MNTNAME
#define FSTEST_MNTNAME "/mnt"
#endif

#define FSTEST_CONSTRUCTOR(_tc_, _fs_, _args_)				\
do {									\
	if (_fs_##_fstest_newfs(_tc_, &_args_,				\
	    FSTEST_IMGNAME, FSTEST_IMGSIZE, NULL) != 0)			\
		atf_tc_fail_errno("newfs failed");			\
	if (_fs_##_fstest_mount(_tc_, _args_, FSTEST_MNTNAME, 0) != 0)	\
		atf_tc_fail_errno("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)		\
		atf_tc_fail_errno("newfs failed");			\
	if (_fs_##_fstest_mount(_tc_, _args_, FSTEST_MNTNAME, 0) != 0)	\
		atf_tc_fail_errno("mount failed");			\
} while (/*CONSTCOND*/0);

#define FSTEST_DESTRUCTOR(_tc_, _fs_, _args_)				\
do {									\
	if (_fs_##_fstest_unmount(_tc_, FSTEST_MNTNAME, 0) != 0) {	\
		rump_pub_vfs_mount_print(FSTEST_MNTNAME, 1);		\
		atf_tc_fail_errno("unmount failed");			\
	}								\
	if (_fs_##_fstest_delfs(_tc_, _args_) != 0)			\
		atf_tc_fail_errno("delfs failed");			\
} while (/*CONSTCOND*/0);

#define ATF_TC_FSADD(fs,type,func,desc)					\
	ATF_TC(fs##_##func);						\
	ATF_TC_HEAD(fs##_##func,tc)					\
	{								\
		atf_tc_set_md_var(tc, "descr", type " test for " desc);	\
		atf_tc_set_md_var(tc, "X-fs.type", #fs);		\
		atf_tc_set_md_var(tc, "X-fs.mntname", type);		\
		if (strcmp(#fs, "zfs") == 0) {				\
			/* This should not be necessary. */		\
			atf_tc_set_md_var(tc, "require.user", "root");	\
		}							\
	}								\
	void *fs##func##tmp;						\
									\
	ATF_TC_BODY(fs##_##func,tc)					\
	{								\
		if (!atf_check_fstype(tc, #fs))				\
			atf_tc_skip("filesystem not selected");		\
		FSTEST_CONSTRUCTOR(tc,fs,fs##func##tmp);		\
		func(tc,FSTEST_MNTNAME);				\
		if (fs##_fstest_unmount(tc, FSTEST_MNTNAME, 0) != 0) {	\
			rump_pub_vfs_mount_print(FSTEST_MNTNAME, 1);	\
			atf_tc_fail_errno("unmount failed");		\
		}							\
	}

#define ATF_TC_FSADD_RO(_fs_,_type_,_func_,_desc_,_gen_)		\
	ATF_TC(_fs_##_##_func_);					\
	ATF_TC_HEAD(_fs_##_##_func_,tc)					\
	{								\
		atf_tc_set_md_var(tc, "descr",_type_" test for "_desc_);\
		atf_tc_set_md_var(tc, "X-fs.type", #_fs_);		\
		atf_tc_set_md_var(tc, "X-fs.mntname", _type_);		\
		if (strcmp(#_fs_, "zfs") == 0) {			\
			/* This should not be necessary. */		\
			atf_tc_set_md_var(tc, "require.user", "root");	\
		}							\
	}								\
	void *_fs_##_func_##tmp;					\
									\
	ATF_TC_BODY(_fs_##_##_func_,tc)					\
	{								\
		if (!atf_check_fstype(tc, #_fs_))			\
			atf_tc_skip("filesystem not selected");		\
		FSTEST_CONSTRUCTOR(tc,_fs_,_fs_##_func_##tmp);		\
		_gen_(tc,FSTEST_MNTNAME);				\
		if (_fs_##_fstest_unmount(tc, FSTEST_MNTNAME, 0) != 0)	\
			atf_tc_fail_errno("unmount r/w failed");	\
		if (_fs_##_fstest_mount(tc, _fs_##_func_##tmp,		\
		    FSTEST_MNTNAME, MNT_RDONLY) != 0)			\
		atf_tc_fail_errno("mount ro failed");			\
		_func_(tc,FSTEST_MNTNAME);				\
		if (_fs_##_fstest_unmount(tc, FSTEST_MNTNAME, 0) != 0) {\
			rump_pub_vfs_mount_print(FSTEST_MNTNAME, 1);	\
			atf_tc_fail_errno("unmount failed");		\
		}							\
	}

#define ATF_TP_FSADD(fs,func)						\
  ATF_TP_ADD_TC(tp,fs##_##func)

#define ATF_TC_FSAPPLY_NOZFS(func,desc)					\
  ATF_TC_FSADD(ext2fs,MOUNT_EXT2FS,func,desc)				\
  ATF_TC_FSADD(ffs,MOUNT_FFS,func,desc)					\
  ATF_TC_FSADD(ffslog,MOUNT_FFS,func,desc)				\
  ATF_TC_FSADD(lfs,MOUNT_LFS,func,desc)					\
  ATF_TC_FSADD(msdosfs,MOUNT_MSDOS,func,desc)				\
  ATF_TC_FSADD(nfs,MOUNT_NFS,func,desc)					\
  ATF_TC_FSADD(puffs,MOUNT_PUFFS,func,desc)				\
  ATF_TC_FSADD(p2k_ffs,MOUNT_PUFFS,func,desc)				\
  ATF_TC_FSADD(rumpfs,MOUNT_RUMPFS,func,desc)				\
  ATF_TC_FSADD(sysvbfs,MOUNT_SYSVBFS,func,desc)				\
  ATF_TC_FSADD(tmpfs,MOUNT_TMPFS,func,desc)				\
  ATF_TC_FSADD(udf,MOUNT_UDF,func,desc)				\
  ATF_TC_FSADD(v7fs,MOUNT_V7FS,func,desc)

#define ATF_TP_FSAPPLY_NOZFS(func)					\
  ATF_TP_FSADD(ext2fs,func);						\
  ATF_TP_FSADD(ffs,func);						\
  ATF_TP_FSADD(ffslog,func);						\
  ATF_TP_FSADD(lfs,func);						\
  ATF_TP_FSADD(msdosfs,func);						\
  ATF_TP_FSADD(nfs,func);						\
  ATF_TP_FSADD(puffs,func);						\
  ATF_TP_FSADD(p2k_ffs,func);						\
  ATF_TP_FSADD(rumpfs,func);						\
  ATF_TP_FSADD(sysvbfs,func);						\
  ATF_TP_FSADD(tmpfs,func);						\
  ATF_TP_FSADD(udf,func);						\
  ATF_TP_FSADD(v7fs,func);

/* XXX: this will not scale */
#ifdef WANT_ZFS_TESTS
#define ATF_TC_FSAPPLY(func,desc)					\
  ATF_TC_FSAPPLY_NOZFS(func,desc)					\
  ATF_TC_FSADD(zfs,MOUNT_ZFS,func,desc)
#define ATF_TP_FSAPPLY(func)						\
  ATF_TP_FSAPPLY_NOZFS(func)						\
  ATF_TP_FSADD(zfs,func);

#else /* !WANT_ZFS_TESTS */

#define ATF_TC_FSAPPLY(func,desc)					\
  ATF_TC_FSAPPLY_NOZFS(func,desc)
#define ATF_TP_FSAPPLY(func)						\
  ATF_TP_FSAPPLY_NOZFS(func)

#endif /* WANT_ZFS_TESTS */

/*
 * Same as above, but generate a file system image first and perform
 * tests for a r/o mount.
 *
 * Missing the following file systems:
 *   + lfs (fstest_lfs routines cannot handle remount.  FIXME!)
 *   + tmpfs (memory backend)
 *   + rumpfs (memory backend)
 *   + puffs (memory backend, but could be run in theory)
 */

#define ATF_TC_FSAPPLY_RO(func,desc,gen)				\
  ATF_TC_FSADD_RO(ext2fs,MOUNT_EXT2FS,func,desc,gen)			\
  ATF_TC_FSADD_RO(ffs,MOUNT_FFS,func,desc,gen)				\
  ATF_TC_FSADD_RO(ffslog,MOUNT_FFS,func,desc,gen)			\
  ATF_TC_FSADD_RO(msdosfs,MOUNT_MSDOS,func,desc,gen)			\
  ATF_TC_FSADD_RO(nfs,MOUNT_NFS,func,desc,gen)				\
  ATF_TC_FSADD_RO(nfsro,MOUNT_NFS,func,desc,gen)			\
  ATF_TC_FSADD_RO(sysvbfs,MOUNT_SYSVBFS,func,desc,gen)			\
  ATF_TC_FSADD_RO(udf,MOUNT_UDF,func,desc,gen)			\
  ATF_TC_FSADD_RO(v7fs,MOUNT_V7FS,func,desc,gen)

#define ATF_TP_FSAPPLY_RO(func)						\
  ATF_TP_FSADD(ext2fs,func);						\
  ATF_TP_FSADD(ffs,func);						\
  ATF_TP_FSADD(ffslog,func);						\
  ATF_TP_FSADD(msdosfs,func);						\
  ATF_TP_FSADD(nfs,func);						\
  ATF_TP_FSADD(nfsro,func);						\
  ATF_TP_FSADD(sysvbfs,func);						\
  ATF_TP_FSADD(udf,func);						\
  ATF_TP_FSADD(v7fs,func);

#define ATF_FSAPPLY(func,desc)						\
	ATF_TC_FSAPPLY(func,desc);					\
	ATF_TP_ADD_TCS(tp)						\
	{								\
		ATF_TP_FSAPPLY(func);					\
		return atf_no_error();					\
	}

static __inline bool
atf_check_fstype(const atf_tc_t *tc, const char *fs)
{
	const char *fstype;

	if (!atf_tc_has_config_var(tc, "fstype"))
		return true;

	fstype = atf_tc_get_config_var(tc, "fstype");
	if (strcmp(fstype, fs) == 0)
		return true;
	return false;
}

#define FSTYPE_EXT2FS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "ext2fs") == 0)
#define FSTYPE_FFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "ffs") == 0)
#define FSTYPE_FFSLOG(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "ffslog") == 0)
#define FSTYPE_LFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "lfs") == 0)
#define FSTYPE_MSDOS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "msdosfs") == 0)
#define FSTYPE_NFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "nfs") == 0)
#define FSTYPE_NFSRO(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "nfsro") == 0)
#define FSTYPE_P2K_FFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "p2k_ffs") == 0)
#define FSTYPE_PUFFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "puffs") == 0)
#define FSTYPE_RUMPFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "rumpfs") == 0)
#define FSTYPE_SYSVBFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "sysvbfs") == 0)
#define FSTYPE_TMPFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "tmpfs") == 0)
#define FSTYPE_UDF(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "udf") == 0)
#define FSTYPE_V7FS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "v7fs") == 0)
#define FSTYPE_ZFS(tc)\
    (strcmp(atf_tc_get_md_var(tc, "X-fs.type"), "zfs") == 0)

#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
 */

struct nfstestargs {
	pid_t ta_childpid;
	char ta_ethername[MAXPATHLEN];
};

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];
};

#endif /* __H_FSMACROS_H_ */
OpenPOWER on IntegriCloud