xref: /freebsd/lib/geom/shsec/gshsec.8 (revision 780fb4a2)
1.\" Copyright (c) 2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\"
13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23.\" SUCH DAMAGE.
24.\"
25.\" $FreeBSD$
26.\"
27.Dd October 1, 2013
28.Dt GSHSEC 8
29.Os
30.Sh NAME
31.Nm gshsec
32.Nd "control utility for shared secret devices"
33.Sh SYNOPSIS
34.Nm
35.Cm label
36.Op Fl hv
37.Ar name
38.Ar prov prov ...
39.Nm
40.Cm stop
41.Op Fl fv
42.Ar name ...
43.Nm
44.Cm clear
45.Op Fl v
46.Ar prov ...
47.Nm
48.Cm dump
49.Ar prov ...
50.Nm
51.Cm list
52.Nm
53.Cm status
54.Nm
55.Cm load
56.Nm
57.Cm unload
58.Sh DESCRIPTION
59The
60.Nm
61utility is used for setting up a device which contains a shared secret.
62The secret is shared between the given providers.
63To collect the secret, all providers are needed.
64If one of the components is missing, there is no way to get any useful data from
65the rest of them.
66The first argument to
67.Nm
68indicates an action to be performed:
69.Bl -tag -width ".Cm destroy"
70.It Cm label
71Set up a shared secret device from the given components with the specified
72.Ar name .
73Metadata are stored in the last sector of every component.
74.It Cm stop
75Turn off an existing shared secret device by its
76.Ar name .
77This command does not touch on-disk metadata!
78.It Cm clear
79Clear metadata on the given providers.
80.It Cm dump
81Dump metadata stored on the given providers.
82.It Cm list
83See
84.Xr geom 8 .
85.It Cm status
86See
87.Xr geom 8 .
88.It Cm load
89See
90.Xr geom 8 .
91.It Cm unload
92See
93.Xr geom 8 .
94.El
95.Pp
96Additional options:
97.Bl -tag -width ".Fl f"
98.It Fl f
99Force the removal of the specified shared secret device.
100.It Fl h
101Hardcode providers' names in metadata.
102.It Fl v
103Be more verbose.
104.El
105.Sh EXIT STATUS
106Exit status is 0 on success, and 1 if the command fails.
107.Sh EXAMPLES
108The following example shows how to create a shared secret device.
109The secret will be split between a slice on a local disk and a USB Pen drive.
110.Bd -literal -offset indent
111gshsec label -v secret /dev/ada0s1 /dev/da0
112newfs /dev/shsec/secret
113.Ed
114.Pp
115From now on, when the USB Pen drive is inserted, it will be automatically
116detected and connected, making the secret available via the
117.Pa /dev/shsec/secret
118device.
119.Sh SEE ALSO
120.Xr geom 4 ,
121.Xr gbde 8 ,
122.Xr geom 8 ,
123.Xr newfs 8
124.Sh HISTORY
125The
126.Nm
127utility appeared in
128.Fx 5.4 .
129.Sh AUTHORS
130.An Pawel Jakub Dawidek Aq Mt pjd@FreeBSD.org
131