1 .\" Copyright (c) 1983, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
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 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)rmt.8 8.3 (Berkeley) 6/1/94
33 .\" $FreeBSD: src/usr.sbin/rmt/rmt.8,v 1.5.2.5 2003/03/11 22:31:32 trhodes Exp $
34 .\" $DragonFly: src/usr.sbin/rmt/rmt.8,v 1.4 2006/04/17 18:01:38 swildner Exp $
41 .Nd remote magtape protocol module
47 utility is used by the remote dump and restore programs
48 in manipulating a magnetic tape drive through an interprocess
49 communication connection. It is normally started up with an
57 utility accepts requests specific to the manipulation of
58 magnetic tapes, performs the commands, then responds with
59 a status indication. All responses are in
63 Successful commands have responses of:
64 .Bd -ragged -offset indent
66 .Sy A Ar number No \en
73 representation of a decimal number.
74 Unsuccessful commands are responded to with:
75 .Bd -ragged -offset indent
77 .Xo Sy E Ar error-number
78 .No \en Ar error-message
85 is one of the possible error
90 is the corresponding error string as printed
93 The protocol is comprised of the
94 following commands, which are sent as indicated - no spaces are supplied
95 between the command and its arguments, or between its arguments, and
97 indicates that a newline should be supplied:
100 .It Xo Sy \&O Ar device
101 .No \en Ar mode No \en
109 is a full pathname and
113 representation of a decimal
114 number suitable for passing to
116 If a device had already been opened, it is
117 closed before a new open is performed.
119 .It Xo Sy C Ar device No \en
122 Close the currently open device. The
124 specified is ignored.
133 operation using the specified parameters.
134 The response value is that returned from the
138 .It Sy W Ar count No \en
140 Write data onto the open device.
145 bytes from the connection, aborting if
146 a premature end-of-file is encountered.
147 The response value is that returned from
152 .It Sy R Ar count No \en
156 bytes of data from the open device.
159 exceeds the size of the data buffer (10 kilobytes), it is
160 truncated to the data buffer size.
163 utility then performs the requested
167 .Sy A Ar count-read No \en
170 successful; otherwise an error in the
171 standard format is returned. If the read
172 was successful, the data read is then sent.
174 .It Xo Sy I Ar operation
175 .No \en Ar count No \en
181 command using the specified parameters.
182 The parameters are interpreted as the
184 representations of the decimal values
189 fields of the structure used in the
191 call. The return value is the
193 parameter when the operation is successful.
195 Return the status of the open device, as
199 call. If the operation was successful,
200 an ``ack'' is sent with the size of the
201 status buffer, then the status buffer is
205 Any other command causes
209 All responses are of the form described above.
222 People should be discouraged from using this for a remote
223 file access protocol.