2006-09-08 09:21:21 +00:00
|
|
|
.\" Copyright (c) 2004-2006 Pawel Jakub Dawidek <pjd@FreeBSD.org>
|
2004-05-21 22:12:24 +00:00
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" 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 AUTHORS 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 AUTHORS 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.
|
|
|
|
.\"
|
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
2015-10-10 09:03:31 +00:00
|
|
|
.Dd October 10, 2015
|
2004-05-21 22:12:24 +00:00
|
|
|
.Dt GNOP 8
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm gnop
|
|
|
|
.Nd "control utility for NOP GEOM class"
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
|
|
|
.Cm create
|
|
|
|
.Op Fl v
|
2006-09-08 09:21:21 +00:00
|
|
|
.Op Fl e Ar error
|
2004-07-19 07:52:56 +00:00
|
|
|
.Op Fl o Ar offset
|
2015-09-15 18:01:59 +00:00
|
|
|
.Op Fl p Ar stripesize
|
|
|
|
.Op Fl P Ar stripeoffset
|
2006-09-08 09:21:21 +00:00
|
|
|
.Op Fl r Ar rfailprob
|
2004-07-19 07:52:56 +00:00
|
|
|
.Op Fl s Ar size
|
2004-07-30 08:19:22 +00:00
|
|
|
.Op Fl S Ar secsize
|
2006-09-08 09:21:21 +00:00
|
|
|
.Op Fl w Ar wfailprob
|
2005-01-15 13:02:50 +00:00
|
|
|
.Ar dev ...
|
2004-05-21 22:12:24 +00:00
|
|
|
.Nm
|
|
|
|
.Cm configure
|
|
|
|
.Op Fl v
|
2006-09-08 09:21:21 +00:00
|
|
|
.Op Fl e Ar error
|
|
|
|
.Op Fl r Ar rfailprob
|
|
|
|
.Op Fl w Ar wfailprob
|
2005-01-15 13:02:50 +00:00
|
|
|
.Ar prov ...
|
2004-05-21 22:12:24 +00:00
|
|
|
.Nm
|
|
|
|
.Cm destroy
|
|
|
|
.Op Fl fv
|
2005-01-15 13:02:50 +00:00
|
|
|
.Ar prov ...
|
2004-05-21 22:12:24 +00:00
|
|
|
.Nm
|
2005-12-08 23:00:31 +00:00
|
|
|
.Cm reset
|
|
|
|
.Op Fl v
|
|
|
|
.Ar prov ...
|
|
|
|
.Nm
|
2004-05-21 22:12:24 +00:00
|
|
|
.Cm list
|
|
|
|
.Nm
|
2005-03-13 19:38:12 +00:00
|
|
|
.Cm status
|
|
|
|
.Nm
|
2004-05-21 22:12:24 +00:00
|
|
|
.Cm load
|
|
|
|
.Nm
|
|
|
|
.Cm unload
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility is used for setting up transparent providers on existing ones.
|
2004-11-04 19:12:43 +00:00
|
|
|
Its main purpose is testing other GEOM classes, as it allows forced provider
|
|
|
|
removal and I/O error simulation with a given probability.
|
2015-10-10 09:03:31 +00:00
|
|
|
It also gathers statistics on the number of read, write, delete,
|
|
|
|
getattr, flush, and other requests, and the number of bytes read and written.
|
|
|
|
.Nm
|
|
|
|
can also be used as a good starting point for implementing new GEOM
|
2007-11-24 09:32:45 +00:00
|
|
|
classes.
|
2004-05-21 22:12:24 +00:00
|
|
|
.Pp
|
|
|
|
The first argument to
|
|
|
|
.Nm
|
|
|
|
indicates an action to be performed:
|
|
|
|
.Bl -tag -width ".Cm configure"
|
|
|
|
.It Cm create
|
2004-07-07 21:00:57 +00:00
|
|
|
Set up a transparent provider on the given devices.
|
2004-11-04 19:12:43 +00:00
|
|
|
If the operation succeeds, the new provider should appear with name
|
2004-07-07 21:00:57 +00:00
|
|
|
.Pa /dev/ Ns Ao Ar dev Ac Ns Pa .nop .
|
2004-05-21 22:12:24 +00:00
|
|
|
The kernel module
|
|
|
|
.Pa geom_nop.ko
|
|
|
|
will be loaded if it is not loaded already.
|
|
|
|
.It Cm configure
|
2004-07-07 21:00:57 +00:00
|
|
|
Configure existing transparent provider.
|
2005-12-08 23:00:31 +00:00
|
|
|
At the moment it is only used for changing failure probability.
|
2004-05-21 22:12:24 +00:00
|
|
|
.It Cm destroy
|
2004-05-22 10:53:06 +00:00
|
|
|
Turn off the given transparent providers.
|
2005-12-08 23:00:31 +00:00
|
|
|
.It Cm reset
|
|
|
|
Reset statistics for the given transparent providers.
|
2004-05-21 22:12:24 +00:00
|
|
|
.It Cm list
|
2005-03-14 13:14:04 +00:00
|
|
|
See
|
|
|
|
.Xr geom 8 .
|
2005-03-13 19:38:12 +00:00
|
|
|
.It Cm status
|
2005-03-14 13:14:04 +00:00
|
|
|
See
|
|
|
|
.Xr geom 8 .
|
2004-05-21 22:12:24 +00:00
|
|
|
.It Cm load
|
2005-03-14 13:14:04 +00:00
|
|
|
See
|
|
|
|
.Xr geom 8 .
|
2004-05-21 22:12:24 +00:00
|
|
|
.It Cm unload
|
2005-03-14 13:14:04 +00:00
|
|
|
See
|
|
|
|
.Xr geom 8 .
|
2004-05-21 22:12:24 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
Additional options:
|
2006-09-18 11:55:10 +00:00
|
|
|
.Bl -tag -width ".Fl r Ar rfailprob"
|
2006-09-08 09:21:21 +00:00
|
|
|
.It Fl e Ar error
|
|
|
|
Specifies the error number to return on failure.
|
2004-05-21 22:12:24 +00:00
|
|
|
.It Fl f
|
2004-07-06 18:18:20 +00:00
|
|
|
Force the removal of the specified provider.
|
2004-07-19 07:52:56 +00:00
|
|
|
.It Fl o Ar offset
|
|
|
|
Where to begin on the original provider.
|
2015-09-15 18:01:59 +00:00
|
|
|
.It Fl p Ar stripesize
|
|
|
|
Value of the stripesize property of the transparent provider.
|
|
|
|
.It Fl P Ar stripeoffset
|
|
|
|
Value of the stripeoffset property of the transparent provider.
|
2006-09-08 09:21:21 +00:00
|
|
|
.It Fl r Ar rfailprob
|
|
|
|
Specifies read failure probability in percent.
|
2004-07-30 08:03:46 +00:00
|
|
|
.It Fl s Ar size
|
2004-07-19 07:52:56 +00:00
|
|
|
Size of the transparent provider.
|
2004-07-30 08:19:22 +00:00
|
|
|
.It Fl S Ar secsize
|
|
|
|
Sector size of the transparent provider.
|
2006-09-08 09:21:21 +00:00
|
|
|
.It Fl w Ar wfailprob
|
|
|
|
Specifies write failure probability in percent.
|
2004-05-21 22:12:24 +00:00
|
|
|
.It Fl v
|
|
|
|
Be more verbose.
|
|
|
|
.El
|
2004-07-13 12:32:20 +00:00
|
|
|
.Sh SYSCTL VARIABLES
|
|
|
|
The following
|
|
|
|
.Xr sysctl 8
|
|
|
|
variables can be used to control the behavior of the
|
|
|
|
.Nm NOP
|
|
|
|
GEOM class.
|
|
|
|
The default value is shown next to each variable.
|
|
|
|
.Bl -tag -width indent
|
|
|
|
.It Va kern.geom.nop.debug : No 0
|
|
|
|
Debug level of the
|
|
|
|
.Nm NOP
|
|
|
|
GEOM class.
|
2004-11-04 19:12:43 +00:00
|
|
|
This can be set to a number between 0 and 2 inclusive.
|
2013-04-14 16:20:25 +00:00
|
|
|
If set to 0, minimal debug information is printed.
|
|
|
|
If set to 1, basic debug information is logged along with the I/O requests
|
|
|
|
that were returned as errors.
|
|
|
|
If set to 2, the maximum amount of debug information is printed including
|
|
|
|
all I/O requests.
|
2004-07-13 12:32:20 +00:00
|
|
|
.El
|
2005-01-18 10:09:38 +00:00
|
|
|
.Sh EXIT STATUS
|
|
|
|
Exit status is 0 on success, and 1 if the command fails.
|
2004-05-21 22:12:24 +00:00
|
|
|
.Sh EXAMPLES
|
2004-05-24 23:05:21 +00:00
|
|
|
The following example shows how to create a transparent provider for disk
|
2004-05-21 22:12:24 +00:00
|
|
|
.Pa /dev/da0
|
2009-09-17 13:04:46 +00:00
|
|
|
with 50% write failure probability, and how to destroy it.
|
2004-05-21 22:12:24 +00:00
|
|
|
.Bd -literal -offset indent
|
2009-09-17 13:04:46 +00:00
|
|
|
gnop create -v -w 50 da0
|
2004-05-22 10:53:06 +00:00
|
|
|
gnop destroy -v da0.nop
|
2004-05-21 22:12:24 +00:00
|
|
|
.Ed
|
2005-12-08 23:00:31 +00:00
|
|
|
.Pp
|
2006-09-18 11:55:10 +00:00
|
|
|
The traffic statistics for the given transparent providers can be obtained
|
|
|
|
with the
|
2005-12-08 23:00:31 +00:00
|
|
|
.Cm list
|
|
|
|
command.
|
2007-11-24 09:32:45 +00:00
|
|
|
The example below shows the number of bytes written with
|
2005-12-08 23:00:31 +00:00
|
|
|
.Xr newfs 8 :
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
gnop create da0
|
|
|
|
newfs /dev/da0.nop
|
|
|
|
gnop list
|
|
|
|
.Ed
|
2004-05-21 22:12:24 +00:00
|
|
|
.Sh SEE ALSO
|
2004-05-24 23:05:21 +00:00
|
|
|
.Xr geom 4 ,
|
|
|
|
.Xr geom 8
|
2004-05-21 22:12:24 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility appeared in
|
|
|
|
.Fx 5.3 .
|
|
|
|
.Sh AUTHORS
|
2014-06-20 09:40:43 +00:00
|
|
|
.An Pawel Jakub Dawidek Aq Mt pjd@FreeBSD.org
|