r290: Reword a troublesome sentence, and document the sdp support
[nbd.git] / nbd-server.5.sgml
1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
2
3 <!-- Process this file with docbook-to-man to generate an nroff manual
4      page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
5      the manual page with: `docbook-to-man manpage.sgml | nroff -man |
6      less'.  A typical entry in a Makefile or Makefile.am is:
7
8 manpage.1: manpage.sgml
9         docbook-to-man $< > $@
10   -->
11
12   <!-- Fill in your name for FIRSTNAME and SURNAME. -->
13   <!ENTITY dhfirstname "<firstname>Wouter</firstname>">
14   <!ENTITY dhsurname   "<surname>Verhelst</surname>">
15   <!-- Please adjust the date whenever revising the manpage. -->
16   <!ENTITY dhdate      "<date>$Date: 2006-10-18 15:01:57 +0200 (wo, 18 okt 2006) $</date>">
17   <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
18        allowed: see man(7), man(1). -->
19   <!ENTITY dhsection   "<manvolnum>5</manvolnum>">
20   <!ENTITY dhemail     "<email>wouter@debian.org</email>">
21   <!ENTITY dhusername  "Wouter Verhelst">
22   <!ENTITY dhucpackage "<refentrytitle>NBD-SERVER</refentrytitle>">
23   <!ENTITY dhpackage   "/etc/nbd-server/config">
24
25   <!ENTITY debian      "<productname>Debian GNU/Linux</productname>">
26   <!ENTITY gnu         "<acronym>GNU</acronym>">
27 ]>
28
29 <refentry>
30   <refentryinfo>
31     <address>
32       &dhemail;
33     </address>
34     <author>
35       &dhfirstname;
36       &dhsurname;
37     </author>
38     <copyright>
39       <year>2006</year>
40       <holder>&dhusername;</holder>
41     </copyright>
42     &dhdate;
43   </refentryinfo>
44   <refmeta>
45     &dhucpackage;
46
47     &dhsection;
48   </refmeta>
49   <refnamediv>
50     <refname>&dhpackage;</refname>
51
52     <refpurpose>configuration file for nbd-server</refpurpose>
53   </refnamediv>
54   <refsynopsisdiv>
55     <cmdsynopsis>
56       <command>&dhpackage; </command>
57
58     </cmdsynopsis>
59   </refsynopsisdiv>
60   <refsect1>
61     <title>DESCRIPTION</title>
62
63     <para><command>&dhpackage;</command> allows to configure the
64     nbd-server.</para>
65
66     <para>While
67       <filename>@sysconfdir@/nbd-server/config</filename> is the default
68       configuration file, this can be varied with the <option>-C</option>
69       option to <command>nbd-server</command>(1).
70     </para>
71     <para>
72       The configuration file consists of section header lines, comment
73       lines, and option lines.
74     </para>
75     <para>
76       A section header is a unique name that
77       is enclosed in square brackets ("[" and "]"). A section header
78       denotes the beginning of a section; a section continues until
79       the next section or the end of the file, whichever is first. The
80       first section in the configuration file must be called
81       <option>generic</option>, and is used for global options that
82       apply to more than one export. This section must always be
83       present, even if it holds no options. Every other section
84       defines one export; the names of these sections are not
85       important, except that you should take care to make sure that
86       each section name is unique (future versions of
87       <command>nbd-server</command> may use the section name to refer
88       to an export)
89     </para>
90     <para>
91       A comment line is a line that starts with optional whitespace,
92       followed by a pound sign ("#"), and continues until the end of
93       the line. Comments may <emphasis>not</emphasis> be used on
94       option lines or section header lines.
95     </para>
96     <para>
97       An option line is a line that starts with an option name,
98       followed by an equals sign ("="), followed by the option
99       value. An option can be of type string, of type integer, or of
100       type boolean. The value of a boolean option can be denoted with
101       either true or false (so not yes, no, on, off, 1, or 0); all
102       booleans default to false unless specified otherwise; no value
103       may be quoted (always enter it directly); for a string option,
104       leading whitespace is stripped (but trailing whitespace is not).
105     </para>
106
107   </refsect1>
108   <refsect1>
109     <title>OPTIONS FOR SECTION [generic]</title>
110
111     <!-- These are in alphabetical order, please keep it that way -->    
112     <variablelist>
113       <varlistentry>
114         <term><option>group</option></term>
115         <listitem>
116           <para>
117             Optional; string.
118           </para>
119           <para>
120             The name of the group this server must run as. If this
121             parameter is not specified, then nbd-server will not
122             attempt to change its GID (so the GID it runs as will be
123             the primary group of the user who starts nbd-server). If
124             it is specified, then nbd-server will change its GID after
125             opening ports, but before accepting connections or opening
126             files.
127           </para>
128         </listitem>
129       </varlistentry>
130       <varlistentry>
131         <term><option>user</option></term>
132         <listitem>
133           <para>
134             Optional; string.
135           </para>
136           <para>
137             The name of the user this server must run as. If this
138             parameter is not specified, then nbd-server will not
139             attempt to change its UID (so the UID it runs as will be
140             the user who starts nbd-server). If it is specified, then
141             nbd-server will change its UID after opening ports, but
142             before accepting connections or opening files.
143           </para>
144         </listitem>
145       </varlistentry>
146     </variablelist>
147   <refsect1>
148     <title>OPTIONS FOR EXPORT SECTIONS</title>
149
150     <!-- These are in alphabetical order, please keep it that way -->
151     <variablelist>
152       <varlistentry>
153         <term><option>authfile</option></term>
154         <listitem>
155           <para>
156             Optional; string; default
157             <filename>@sysconfdir@/nbd-server/allow</filename>.
158           </para>
159           <para>
160             The name of the authorization file for this export. This
161             file should contain one line per IP-address, or per
162             network (which must be specified in CIDR-style
163             <option><replaceable>network</replaceable>/<replaceable>masklen</replaceable></option>)
164             and must not contain empty lines. If the file
165             does not exist, everyone is allowed to connect. If the
166             file exists but is empty, nobody is allowed to
167             connect. Otherwise, <command>nbd-server</command> will
168             only allow clients to connect whose IP-adres is listed in
169             this file.
170           </para>
171           <para>Corresponds to the <option>-l</option> option on the
172           command line</para>
173         </listitem>
174       </varlistentry>
175       <varlistentry>
176         <term><option>autoreadonly</option></term>
177         <listitem>
178           <para>Optional; boolean.</para>
179           <para>
180             If this option is set to true, then
181             <command>nbd-server</command> will automatically switch to
182             readonly if it cannot write to the file.
183           </para>
184           <para>Does not have a corresponding command-line
185             argument</para>
186           <para>TODO: verify whether this option actually works as
187             documented. I have a feeling I've been terribly
188             stupid.
189           </para>
190         </listitem>
191       </varlistentry>
192       <varlistentry>
193         <term><option>copyonwrite</option></term>
194         <listitem>
195           <para>
196             Optional; boolean.
197           </para>
198           <para>
199             Whether this is a copy-on-write export. If it is, then any
200             writes to this export will not be written to the master
201             file, but to a separate file which will be removed upon
202             disconnect. The result of using this option is that
203             nbd-server will be slower, and that any writes will be
204             lost upon disconnect.
205           </para>
206           <para>Corresponds to the <option>-c</option> option on the
207             command line</para>
208         </listitem>
209       </varlistentry>
210       <varlistentry>
211         <term><option>exportname</option></term>
212         <listitem>
213           <para>Required; string.</para>
214           <para>
215             The name of the file that will be exported. This must be a
216             fully-qualified path and filename; relative paths are not
217             allowed.
218           </para>
219           <para>
220             Note that <command>nbd-server</command> will only try to
221             find and open the exported file when a client actually
222             connects; as a result, <command>nbd-server</command> must
223             be able to open and read this file
224             <emphasis>after</emphasis> changing to the user and group
225             that have been specified by use of the
226             <option>user</option> and <option>group</option> options;
227             also, <command>nbd-server</command> will only detect
228             errors in this option upon connection of a client.
229           </para>
230           <para>When specified on the command line, this should be the
231             second argument.
232           </para>
233         </listitem>
234       </varlistentry>
235       <varlistentry>
236         <term><option>filesize</option></term>
237         <listitem>
238           <para>Optional; integer; default autodetected.</para>
239           <para>
240             Disable autodetection of file or block device size, and
241             forcibly specify a size. Sizes must be specified in
242             bytes. If the <option>multifile</option> option is in
243             effect, this option specifies the size of the
244             <emphasis>entire</emphasis> export, not of individual
245             files.
246           </para>
247           <para>When specified on the command line, this should be the
248             third argument.
249           </para>
250         </listitem>
251       </varlistentry>
252       <varlistentry>
253         <term><option>multifile</option></term>
254         <listitem>
255           <para>Optional; boolean.</para>
256           <para>
257             If this option is set to true, then
258             <command>nbd-server</command> will search for files of the
259             form
260             <replaceable>exportname</replaceable>.<replaceable>integer</replaceable>,
261             with <replaceable>exportname</replaceable> being the
262             filename that would otherwise have been used (after
263             name transformation for virtualization, if any, has been
264             performed) and <replaceable>integer</replaceable> an
265             integer number, starting with 0 and ending when no more
266             files can be found.
267           </para>
268           <para>
269             The size of the individual files will be autodetected,
270             <emphasis>even</emphasis> if the <option>filesize</option>
271             option has been specified. See the documentation for the
272             <option>multifile</option> for details.
273           </para>
274           <para>
275             Corresponds to the <option>-m</option> option on the
276             command line.
277           </para>
278         </listitem>
279       </varlistentry>
280       <varlistentry>
281         <term><option>port</option></term>
282         <listitem>
283           <para>Required; integer.</para>
284           <para>
285             The port on which this export is to be served. Currently
286             it is not possible to export multiple block devices on the
287             same port unless virtualization is used; future versions
288             of <command>nbd-server</command> may add this
289             functionality.
290           </para>
291           <para>
292             When specified on the command line, this should be the
293             first argument.
294           </para>
295         </listitem>
296       </varlistentry>
297       <varlistentry>
298         <term><option>readonly</option></term>
299         <listitem>
300           <para>Optional; boolean.</para>
301           <para>
302             Disallow writes to the device. If this option is
303             specified, <command>nbd-server</command> will issue an
304             error to any client that tries to write to the device.
305           </para>
306           <para>
307             Use of this option in conjunction with
308             <option>copyonwrite</option> is possible, but silly.
309           </para>
310           <para>Corresponds to the <option>-r</option> option on the
311           command line.</para>
312         </listitem>
313       </varlistentry>
314       <varlistentry>
315         <term><option>sdp</option></term>
316         <lisitem>
317           <para>Optional; boolean.</para>
318           <para>
319             When this option is enabled, <command>nbd-server</command>
320             will use the Socket Direct Protocol (SDP) to serve the
321             export, rather than just IP. This is faster, but requires
322             special hardware (usually something like InfiniBand) and
323             support in the kernel.
324           </para>
325           <para>
326             Additionally, support for this option must be enabled at
327             compile time, using the <option>--enable-sdp</option> option
328             to the <command>configure</command> script. If this option
329             is found in a configuration file and
330             <command>nbd-server</command> does not have support for SDP,
331             then <command>nbd-server</command> will exit with an error
332             message.
333           </para>
334         </listitem
335       <varlistentry>
336         <term><option>sparse_cow</option></term>
337         <listitem>
338           <para>Optional; boolean.</para>
339           <para>
340             When this option is enabled, <command>nbd-server</command>
341             will use sparse files to implement the copy-on-write
342             option; such files take up less space then they appear to,
343             which allows <command>nbd-server</command> to handle the
344             file as if it was just as large as the block device it's
345             for.
346           </para>
347           <para>
348             If this option is disabled, <command>nbd-server</command>
349             will map every newly written block to the end of the
350             copy-on-write file, which means that
351             <command>nbd-server</command> will have to lseek(2) to the
352             right position after every 4096-byte block.
353           </para>
354           <para>
355             Using this option may be faster when much is being written
356             during a connection.
357           </para>
358         </listitem>
359       </varlistentry>
360       <varlistentry>
361         <term><option>timeout</option></term>
362         <listitem>
363           <para>Optional; integer; default 0</para>
364           <para>
365             How many seconds a connection may be idle for this
366             export. When a connection is idle for a longer time,
367             <command>nbd-server</command> will forcibly disconnect the
368             connection. If you specify 0 (the default), then a
369             connection may be idle forever.
370           </para>
371           <para>
372             Corresponds to the <option>-a</option> option on the
373             command line
374           </para>
375         </listitem>
376       </varlistentry>
377       <varlistentry>
378         <term><option>virtstyle</option></term>
379         <listitem>
380           <para>Optional; string; default "ipliteral"</para>
381           <para>
382             Defines the style of virtualization. Virtualization allows
383             one to create one export that will serve a different file
384             depending on the IP address that is connecting. When
385             virtualization is There are three types of virtualization
386             that <command>nbd-server</command> supports:
387           </para>
388           <variablelist>
389             <varlistentry>
390               <term><option>none</option></term>
391               <listitem>
392                 <para>
393                   No virtualization. Will attempt to open the filename
394                   as it was written, even if it contains '%s' in the
395                   name.
396                 </para>
397               </listitem>
398             </varlistentry>
399             <varlistentry>
400               <term><option>ipliteral</option></term>
401               <listitem>
402                 <para>
403                   <command>nbd-server</command> will look for the
404                   literal string '%s' in the
405                   <option>exportname</option>, and replace it by the
406                   IP address of the connecting host in dotted-quad
407                   notation. The string that results from this
408                   transformation will be used as an absolute pathname
409                   that <command>nbd-server</command> will attempt to
410                   open. As an example, if a client connects from
411                   192.168.1.100 and <option>exportname</option> is
412                   specified as <filename>/export/%s</filename>, then
413                   nbd-server will attempt to serve
414                   <filename>/export/192.168.1.100</filename>
415                 </para>
416               </listitem>
417             </varlistentry>
418             <varlistentry>
419               <term><option>iphash</option></term>
420               <listitem>
421                 <para>
422                   Same as above, except that
423                   <command>nbd-server</command> will replace the dots
424                   in the IP address by forward slashes ('/'); in the
425                   same example, <command>nbd-server</command> would
426                   open <filename>/export/192/168/1/100</filename>
427                   instead.
428                 </para>
429               </listitem>
430             </varlistentry>
431             <varlistentry>
432               <term><option>cidrhash</option></term>
433               <listitem>
434                 <para>
435                   This option requires one to add a space and a number
436                   after it. <command>nbd-server</command> will use the
437                   number as a network mask in CIDR style, and use that
438                   as a hash cutoff point. In the above example, if
439                   <option>virtstyle</option> has been specified as
440                   <constant>cidrhash 16</constant>, then
441                   <command>nbd-server</command> will try to open
442                   <filename>/export/192.168.0.0/192.168.1.100</filename>;
443                   if <option>virtstyle</option> were specified as
444                   <constant>cidrhash 26</constant>, then
445                   <command>nbd-server</command> will try to open
446                   <filename>/export/192.168.1.64/192.168.1.100</filename>.
447                 </para>
448               </listitem>
449             </varlistentry>
450           </variablelist>
451         </listitem>
452       </varlistentry>
453       <varlistentry>
454         <term><option>prerun</option></term>
455         <listitem>
456           <para>Optional; string</para>
457           <para>
458             If specified, then this command will be ran after a
459             client has connected to the server (and has been
460             accepted), but before the server starts serving. If
461             the command contains the literal string '%s', then
462             this string will be replaced by the filename of the
463             file which nbd-server wants to export.
464           </para>
465           <para>
466             This is useful to create export files on the fly, or
467             to verify that a file can be used for export, to
468             write something to a log file, or similar.
469           </para>
470           <para>
471             If the command runs with a non-zero exit status,
472             then nbd-server will assume the export will fail,
473             and refuse to serve it.
474           </para>
475         </listitem>
476       </varlistentry>
477       <varlistentry>
478         <term><option>postrun</option></term>
479         <listitem>
480           <para>Optional; string</para>
481           <para>
482             If specified, then it is assumed to be a command
483             that will be ran when a client has
484             disconnected. This can be useful to clean up
485             whatever <option>prerun</option> has set up, to log
486             something, or similar.
487           </para>
488           <para>
489             If the literal string '%s' is present in the
490             command, it will be replaced by the file name that
491             has just been closed.
492           </para>
493           <para>
494             In contrast to the <option>prerun</option> option,
495             the exit state of <option>postrun</option> is
496             <emphasis>ignored</emphasis>.
497           </para>
498         </listitem>
499       </varlistentry>
500     </variablelist>
501     
502   </refsect1>
503   <refsect1>
504     <title>SEE ALSO</title>
505
506     <para>nbd-server (1), nbd-client (8),
507       http://nbd.sourceforge.net/roadmap.html</para>
508
509   </refsect1>
510   <refsect1>
511     <title>AUTHOR</title>
512     <para>The NBD kernel module and the NBD tools were originally
513       written by Pavel Machek (pavel@ucw.cz)</para>
514
515     <para>The Linux kernel module is now maintained by Paul Clements
516       (Paul.Clements@steeleye.com), while the userland tools are
517       maintained by &dhusername; (&dhemail;)</para>
518
519     <para>On The Hurd there is a regular translator available to perform the
520       client side of the protocol, and the use of
521       <command>nbd-client</command> is not required. Please see the
522       relevant documentation for more information.</para>
523
524     <para>This manual page was written by &dhusername; (&dhemail;) for
525       the &debian; system (but may be used by others).  Permission is
526       granted to copy, distribute and/or modify this document under
527       the terms of the <acronym>GNU</acronym> General Public License,
528       version 2, as published by the Free Software Foundation.</para>
529
530   </refsect1>
531   <refsect1>
532     <title>EXAMPLES</title>
533     <para>A simple <command>nbd-server</command> configuration file
534       would look like this:</para>
535     <programlisting>
536       [generic]
537       [export]
538           exportname = /export/blkdev
539           port = 12345
540     </programlisting>
541     <para>For increased security, one might want to create an
542       authorization file, and set the UID and GID to run as:</para>
543     <programlisting>
544       [generic]
545           user = nbd
546           group = nbd
547       [export]
548           exportname = /export/blkdev
549           port = 12345
550           authfile = /etc/nbd-server/allow
551     </programlisting>
552     <para>With /etc/nbd-server/allow containing the following:</para>
553     <programlisting>
554       127.0.0.1
555       192.168.0.0/8
556       192.168.1.1
557     </programlisting>
558   </refsect1>
559 </refentry>
560
561 <!-- Keep this comment at the end of the file
562 Local variables:
563 mode: sgml
564 sgml-omittag:t
565 sgml-shorttag:t
566 sgml-minimize-attributes:nil
567 sgml-always-quote-attributes:t
568 sgml-indent-step:2
569 sgml-indent-data:t
570 sgml-parent-document:nil
571 sgml-default-dtd-file:nil
572 sgml-exposed-tags:nil
573 sgml-local-catalogs:nil
574 sgml-local-ecat-files:nil
575 End:
576 -->