=head1 NAME nbdkit - toolkit for creating NBD servers =head1 SYNOPSIS __SYNOPSIS__ =head1 DESCRIPTION Network Block Device (NBD) is a network protocol for accessing block devices over the network. Block devices are hard disks and things that behave like hard disks such as disk images and virtual machines. nbdkit is both a toolkit for creating NBD servers from “unconventional” sources, and the name of an NBD server. nbdkit ships with many plugins for performing common tasks like serving local files. =head2 Plugins and filters nbdkit is different from other NBD servers because you can easily create new Network Block Device sources by writing a few glue functions, possibly in C, or perhaps in a high level language like Perl or Python. The liberal licensing of nbdkit is meant to allow you to link nbdkit with proprietary libraries or to include nbdkit in proprietary code. If you want to write your own nbdkit plugin you should read L. nbdkit also has a concept of filters which can be layered on top of plugins. Several filters are provided with nbdkit and if you want to write your own you should read L. =head1 EXAMPLES =head2 Basic file serving =over 4 =item * Serve file F on port 10809 using L, and connect to it using L: nbdkit file disk.img guestfish --rw --format=raw -a nbd://localhost =item * Serve file F on port 10809, requiring clients to use encrypted (TLS) connections: nbdkit --tls=require file disk.img =back =head2 Other nbdkit plugins =over 4 =item * Create a small disk containing test patterns using L: nbdkit data ' ( 0x55 0xAA )*2048 ' =item * Forward an NBD connection to a remote server over HTTPS or SSH using L or L: nbdkit -r curl https://example.com/disk.img =for paragraph nbdkit ssh host=example.com /var/tmp/disk.img =item * Create a sparse 1 terabyte RAM disk using L and use it as a loop device (L): nbdkit memory 1T nbd-client localhost /dev/nbd0 =item * Create a floppy disk image containing files from a local directory using L: nbdkit floppy dir/ =back =head2 Combining plugins and filters =over 4 =item * Serve only the first partition from compressed disk image F, combining L, L and L. nbdkit --filter=partition --filter=xz file disk.img.xz partition=1 To understand this command line: plugin name and plugin parameter │ ┌───────┴──────┐ │ │ nbdkit --filter=partition --filter=xz file disk.img.xz partition=1 │ │ │ └──────────────┴────┬─────────────────────┘ │ filters and filter parameter =item * Create a scratch, empty nbdkit device and inject errors and delays, for testing clients, using L, L and L: nbdkit --filter=error --filter=delay memory 100M \ error-rate=10% rdelay=1 wdelay=1 =back =head2 Writing plugins in shell script =over 4 =item * Write a simple, custom plugin in shell script using L: nbdkit sh - <<'EOF' case "$1" in get_size) echo 1M ;; pread) dd if=/dev/zero count=$3 iflag=count_bytes ;; *) exit 2 ;; esac EOF =item * The same example as above can be written entirely on the command line using L: nbdkit eval get_size='echo 1M' \ pread='dd if=/dev/zero count=$3 iflag=count_bytes' =back =head2 Display information Display information about nbdkit or a specific plugin: nbdkit --help nbdkit --version nbdkit --dump-config nbdkit example1 --help nbdkit example1 --dump-plugin =head1 GLOBAL OPTIONS =over 4 =item B<--help> Display brief command line usage information and exit. =item B<-4> =item B<--ipv4-only> =item B<-6> =item B<--ipv6-only> When a non-numeric argument is passed to the I<-i> option (such as a Fully Qualified Domain Name, or a host name from C), restrict the name resolution to IPv4 or IPv6 addresses. When the I<-i> option is omitted, listen on only the IPv4 or IPv6 address of all interfaces (C<0.0.0.0> or C<::>, respectively). When both I<-4> and I<-6> options are present on the command line, the last one takes effect. =item B<-D> PLUGIN.FLAG=N =item B<-D> FILTER.FLAG=N =item B<--debug> PLUGIN.FLAG=N =item B<--debug> FILTER.FLAG=N Set the plugin or filter Debug Flag called C to the integer value C. See L. =item B<-D> nbdkit.FLAG=N =item B<--debug> nbdkit.FLAG=N (nbdkit E 1.18) Set the nbdkit server Debug Flag called C to the integer value C. See L below. =item B<--dump-config> Dump out the compile-time configuration values and exit. See L. =item B<--dump-plugin> Dump out information about the plugin and exit. See L. =item B<--exit-with-parent> If the parent process exits, we exit. This can be used to avoid complicated cleanup or orphaned nbdkit processes. There are some important caveats with this, see L. An alternative to this is L. This option implies I<--foreground>. =item B<-e> EXPORTNAME =item B<--export=>EXPORTNAME =item B<--export-name=>EXPORTNAME =item B<--exportname=>EXPORTNAME Set a preferred exportname to expose in the shell environment created during I<--run>. The use of this option without I<--run> has no effect. This option does I change what nbdkit advertises as a server, but can aid in writing a captive client that wants to access particular content from a plugin that differentiates content based on the client's choice of export name. If not set, the I<--run> environment is set to access the default exportname C<""> (empty string). =item B<--filter=>FILTER Add a filter before the plugin. This option may be given one or more times to stack filters in front of the plugin. They are processed in the order they appear on the command line. See L and L. =item B<-f> =item B<--foreground> =item B<--no-fork> I fork into the background. =item B<-g> GROUP =item B<--group=>GROUP Change group to C after starting up. A group name or numeric group ID can be used. The server needs sufficient permissions to be able to do this. Normally this would mean starting the server up as root. See also I<-u>. =item B<-i> IPADDR =item B<--ip-addr=>IPADDR =item B<--ipaddr=>IPADDR Listen on the specified interface. The default is to listen on all interfaces. See also I<-4>, I<-6>, and I<-p>. =item B<--log=stderr> =item B<--log=syslog> =item B<--log=null> Send error messages to standard error (I<--log=stderr>), or to the system log (I<--log=syslog>), or discard them completely (I<--log=null>, not recommended for normal use). The default is to send error messages to stderr, unless nbdkit forks into the background in which case they are sent to syslog. For more details see L. =item B<--mask-handshake=>MASK This option can be used to mask off particular global features which are advertised during new-style handshake (defaulting to all supported bits set). See L. =item B<-n> =item B<--new-style> =item B<--newstyle> Use the newstyle NBD protocol. This is the default in nbdkit E 1.3. In earlier versions the default was oldstyle. See L. =item B<--no-sr> Do not advertise structured replies. A client must request structured replies to take advantage of block status and potential sparse reads; however, as structured reads are not a mandatory part of the newstyle NBD protocol, this option can be used to debug client fallbacks for dealing with older servers. See L. =item B<-o> =item B<--old-style> =item B<--oldstyle> Use the oldstyle NBD protocol. This I the default in nbdkit E 1.2, but now the default is newstyle. Note this is incompatible with newer features such as export names and TLS. See L. =item B<-P> PIDFILE =item B<--pid-file=>PIDFILE =item B<--pidfile=>PIDFILE Write C (containing the process ID of the server) after nbdkit becomes ready to accept connections. If the file already exists, it is overwritten. nbdkit I delete the file when it exits. =item B<-p> PORT =item B<--port=>PORT Change the TCP/IP port number on which nbdkit serves requests. The default is C<10809>. See also I<-i>. =item B<-r> =item B<--read-only> =item B<--readonly> The export will be read-only. If a client writes, then it will get an error. Note that some plugins inherently don't support writes. With those plugins the I<-r> option is added implicitly. L can be placed over read-only plugins to provide copy-on-write (or "snapshot") functionality. If you are using qemu as a client then it also supports snapshots. =item B<--run> 'COMMAND ARGS ...' Run nbdkit as a captive subprocess of the command. When the command exits, nbdkit is killed. See L. Note that the command is executed by F. On some platforms like Debian this might not be a full-featured shell. This option implies I<--foreground>. =item B<--selinux-label=>SOCKET-LABEL Apply the SELinux label C to the nbdkit listening socket. The common — perhaps only — use of this option is to allow libvirt guests which are using SELinux and sVirt confinement to access nbdkit Unix domain sockets. The example below shows how to do this. Note that the socket and filesystem labels are different. nbdkit -U /tmp/sock --selinux-label=system_u:object_r:svirt_socket_t:s0 ... chcon system_u:object_r:svirt_image_t:s0 /tmp/sock =item B<-s> =item B<--single> =item B<--stdin> Don't fork. Handle a single NBD connection on stdin/stdout. After stdin closes, the server exits. You can use this option to run nbdkit from inetd or similar superservers; or just for testing; or if you want to run nbdkit in a non-conventional way. Note that if you want to run nbdkit from systemd, then it may be better to use L instead of this option. This option implies I<--foreground>. =item B<--swap> (nbdkit E 1.18) Specifies that the NBD device will be used as swap space loop mounted on the same machine which is running nbdkit. To avoid deadlocks this locks the whole nbdkit process into memory using L. This may require additional permissions, such as starting the server as root or raising the C (L I<-l>) limit on the process. =item B<-t> THREADS =item B<--threads=>THREADS Set the number of threads to be used per connection, which in turn controls the number of outstanding requests that can be processed at once. Only matters for plugins with thread_model=parallel (where it defaults to 16). To force serialized behavior (useful if the client is not prepared for out-of-order responses), set this to 1. =item B<--tls=off> =item B<--tls=on> =item B<--tls=require> Disable, enable or require TLS (authentication and encryption support). See L. =item B<--tls-certificates=>/path/to/certificates Set the path to the TLS certificates directory. If not specified, some built-in paths are checked. See L for more details. =item B<--tls-psk=>/path/to/pskfile Set the path to the pre-shared keys (PSK) file. If used, this overrides certificate authentication. There is no built-in path. See L for more details. =item B<--tls-verify-peer> Enables TLS client certificate verification. The default is I to check the client's certificate. =item B<-U> SOCKET =item B<--unix=>SOCKET =item B<-U -> =item B<--unix -> Accept connections on the Unix domain socket C (which is a path). nbdkit creates this socket, but it will probably have incorrect permissions (too permissive). If it is a problem that some unauthorized user could connect to this socket between the time that nbdkit starts up and the authorized user connects, then put the socket into a directory that has restrictive permissions. nbdkit does B delete the socket file when it exits. The caller should delete the socket file after use (else if you try to start nbdkit up again you will get an C
error). If the socket name is I<-> then nbdkit generates a randomly named private socket. This is useful with L. =item B<-u> USER =item B<--user=>USER Change user to C after starting up. A user name or numeric user ID can be used. The server needs sufficient permissions to be able to do this. Normally this would mean starting the server up as root. See also I<-g>. =item B<-v> =item B<--verbose> Enable verbose messages. It's a good idea to use I<-f> as well so the process does not fork into the background (but not required). =item B<-V> =item B<--version> Print the version number of nbdkit and exit. The I<--dump-config> option provides separate major and minor numbers and may be easier to parse from shell scripts. =item B<--vsock> (nbdkit E 1.16) Use the AF_VSOCK protocol (instead of TCP/IP). You must use this in conjunction with I<-p>/I<--port>. See L. =back =head1 PLUGIN NAME You can give the full path to the plugin, like this: nbdkit $libdir/nbdkit/plugins/nbdkit-file-plugin.so [...] but it is usually more convenient to use this equivalent syntax: nbdkit file [...] C<$libdir> is set at compile time. To print it out, do: nbdkit --dump-config =head1 PLUGIN CONFIGURATION After specifying the plugin name you can (optionally, it depends on the plugin) give plugin configuration on the command line in the form of C. For example: nbdkit file file=disk.img To list all the options supported by a plugin, do: nbdkit --help file To dump information about a plugin, do: nbdkit file --dump-plugin =head2 Magic parameters Some plugins declare a special "magic config key". This is a key which is assumed if no C part is present. For example: nbdkit file disk.img is assumed to be C because the file plugin declares C as its magic config key. There can be ambiguity in the parsing of magic config keys if the value might look like a C. If there could be ambiguity then modify the value, eg. by prefixing it with C<./> There is also a special exception for plugins which do not declare a magic config key, but where the first plugin argument does not contain an C<'='> character: it is assumed to be C. This is used by scripting language plugins: nbdkit perl foo.pl [args...] has the same meaning as: nbdkit perl script=foo.pl [args...] =head2 Shebang scripts You can use C<#!> to run nbdkit plugins written in most scripting languages. The file should be executable. For example: #!/usr/sbin/nbdkit perl sub open { # etc } (see L for a full example). =head1 SERVER DEBUG FLAGS As well as enabling or disabling debugging in the server using I<--verbose> you can control extra debugging in the server using the S> flags listed in this section. Note these flags are an internal implementation detail of the server and may be changed or removed at any time in the future. =over 4 =item B<-D nbdkit.backend.controlpath=0> =item B<-D nbdkit.backend.controlpath=1> =item B<-D nbdkit.backend.datapath=0> =item B<-D nbdkit.backend.datapath=1> These flags control the verbosity of nbdkit backend debugging messages (the ones which show every request processed by the server). The default for both settings is C<1> (normal debugging) but you can set them to C<0> to suppress these messages. S> is the more useful setting which lets you suppress messages about pread, pwrite, zero, trim, etc. commands. When transferring large amounts of data these messages are numerous and not usually very interesting. S> suppresses the non-datapath commands (config, open, close, can_write, etc.) =item B<-D nbdkit.tls.log=>N Enable TLS logging. C can be in the range 0 (no logging) to 99. See L. =item B<-D nbdkit.tls.session=1> Print additional information about the TLS session, such as the type of authentication and encryption, and client certificate information. =back =head1 SIGNALS nbdkit responds to the following signals: =over 4 =item C =item C =item C The server exits cleanly. =item C This signal is ignored. =back =head1 ENVIRONMENT VARIABLES =over 4 =item C =item C If present in the environment when nbdkit starts up, these trigger L. =back =head1 SEE ALSO =head2 Other topics L — Run nbdkit under another process and have it reliably cleaned up. L — How to mount NBD filesystems on a client machine. L — Use nbdkit with the Linux kernel client to create loop devices and loop mounts. L — How to probe for nbdkit configuration and plugins. L — Which parts of the NBD protocol nbdkit supports. L — Lists past security issues in nbdkit. L — Running nbdkit as a service, and systemd socket activation. L — Authentication and encryption of NBD connections (sometimes incorrectly called "SSL"). =head2 Plugins __PLUGIN_LINKS__. =head2 Filters __FILTER_LINKS__. =head2 For developers L, L. =head2 Writing plugins in other programming languages __LANG_PLUGIN_LINKS__. =head2 Release notes for previous releases of nbdkit L, L, L, L, L, L, L, L, L, L, L, L, L, L, L. =head2 NBD clients L, L, L, L, L, L, L, L. =head2 nbdkit links L — Source code. =head2 Other NBD servers L, L, L. =head2 Documentation for the NBD protocol L, L. =head2 Similar protocols L, L, L. =head2 Other manual pages of interest L, L, L, L. =head1 AUTHORS Eric Blake Laszlo Ersek Richard W.M. Jones Yann E. MORIN Nikolaus Rath François Revol Nir Soffer Alan Somers Pino Toscano =head1 COPYRIGHT Copyright Red Hat