nbdkit - A toolkit for creating NBD servers
nbdkit [--dump-config] [-e EXPORTNAME] [-f] [-g GROUP] [-i IPADDR] [--newstyle] [--oldstyle] [-P PIDFILE] [-p PORT] [-r] [--run CMD] [-s] [-U SOCKET] [-u USER] [-v] [-V] PLUGIN [key=value [key=value [...]]]
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. To create a new Network Block Device source, all you need to do is write 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 an nbdkit plugin, you should read nbdkit-plugin(3). Several plugins may be found in "$libdir/nbdkit/plugins". 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 [...] $libdir is set at compile time. To print it out, do: nbdkit --dump-config
Serve file "disk.img" on port 10809: nbdkit file file=disk.img Run the example1 plugin and connect to it using guestfish(1): nbdkit example1 guestfish --ro -a nbd://localhost Run the example3 plugin and connect to it using guestfish(1): nbdkit example3 size=1G guestfish --ro -a nbd://localhost To display usage information about a specific plugin: nbdkit --help example1
--help Display brief command line usage information and exit. --dump-config Dump out the compile-time configuration values and exit. -e EXPORTNAME --export EXPORTNAME --export-name EXPORTNAME --exportname EXPORTNAME Set the exportname and use the newstyle protocol (implies -n). If not set, exportname "" (empty string) is used. Exportnames are not allowed with the oldstyle protocol. -f --foreground --no-fork Don't fork into the background. -g GROUP --group GROUP Change group to "GROUP" 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 -u. -i IPADDR --ip-addr IPADDR --ipaddr IPADDR Listen on the specified interface. The default is to listen on all interfaces. See also -p. -n --new-style --newstyle Use the newstyle NBD protocol instead of the default (oldstyle) protocol. See "NEW STYLE VS OLD STYLE PROTOCOL" below. -o --old-style --oldstyle Use the oldstyle NBD protocol. This is currently the default (unless you use -n or -e), so this flag does nothing, but it is possible we might change the default protocol in future. See "NEW STYLE VS OLD STYLE PROTOCOL" below. -P PIDFILE --pid-file PIDFILE --pidfile PIDFILE Write "PIDFILE" (containing the process ID of the server) after nbdkit becomes ready to accept connections. If the file already exists, it is overwritten. nbdkit does not delete the file when it exits. -p PORT --port PORT Change the TCP/IP port number on which nbdkit serves requests. The default is 10809. See also -i. -r --read-only --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 -r option is added implicitly. Copy-on-write (or "snapshot") functionality is not supported by this server. However if you are using qemu as a client (or indirectly via libguestfs) then it supports snapshots. --run CMD Run nbdkit as a captive subprocess of "CMD". When "CMD" exits, nbdkit is killed. See "CAPTIVE NBDKIT" below. This option implies --foreground. -s --single --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, systemd or similar superservers; or just for testing; or if you want to run nbdkit in a non-conventional way. This option implies --foreground. -U SOCKET --unix SOCKET -U - --unix - Accept connections on the Unix domain socket "SOCKET" (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 not 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 "Address already in use" error). If the socket name is - then nbdkit generates a randomly named private socket. This is useful with "CAPTIVE NBDKIT". -u USER --user USER Change user to "USER" 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 -g. -v --verbose Enable verbose messages. It's a good idea to use -f as well so the process does not fork into the background (but not required). -V --version Print the version number of nbdkit and exit.
After specifying the plugin name you can (optionally, it depends on the plugin) give plugin configuration on the command line in the form of "key=value". For example: nbdkit file file=disk.img To list all the options supported by a plugin, do: nbdkit --help file
You can run nbdkit as a "captive process", using the --run option. This means that nbdkit runs as long as (for example) qemu(1) or guestfish(1) is running. When those exit, nbdkit is killed. Some examples should make this clear. To run nbdkit captive under qemu: nbdkit file file=disk.img --run 'qemu -drive file=$nbd,if=virtio' On the qemu command line, $nbd is substituted automatically with the right NBD path so it can connect to nbdkit. When qemu exits, nbdkit is killed and cleaned up automatically. Running nbdkit captive under guestfish: nbdkit file file=disk.img --run 'guestfish --format=raw -a $nbd -i' When guestfish exits, nbdkit is killed. The following shell variables are available in the --run argument: $nbd A URL that refers to the nbdkit port or socket. Note there is some magic here, since qemu and guestfish URLs have a different format, so nbdkit tries to guess which you are running. If the magic doesn't work, try using the variables below instead. $port If "", the port number that nbdkit is listening on. $unixsocket If "", the Unix domain socket that nbdkit is listening on. --run implies --foreground. It is not possible, and probably not desirable, to have nbdkit fork into the background when using --run. Even when running captive, nbdkit still listens on the regular TCP/IP port, unless you specify the -p/-U options. If you want a truly private captive nbdkit, then you should create a private random Unix socket, like this: nbdkit -U - plugin [args] --run '...'
The NBD protocol comes in two incompatible forms that we call "oldstyle" and "newstyle". Unfortunately which protocol you should use depends on the client and cannot be known in advance, nor can it be negotiated from the server side. nbdkit currently defaults to the oldstyle protocol for compatibility with qemu and libguestfs. This is also the same behaviour as qemu-nbd 2.5. Use the -n or --newstyle flag on the command line to use the newstyle protocol. Use the -e or --exportname flag to set the exportname for the newstyle protocol. Use the -o or --oldstyle flag to force the oldstyle protocol. Some common clients and the protocol they require: Client Protocol ------------------------------------------------------------ qemu <= 2.5 without exportname oldstyle qemu <= 2.5 with exportname newstyle qemu >= 2.6 client can talk either protocol nbd-client < 3.10 client can talk either protocol nbd-client >= 3.10 newstyle If you use qemu 2.5 without the exportname field against a newstyle server, it will give the error: Server requires an export name If you use qemu 2.5 with the exportname field against an oldstyle server, it will give the error: Server does not support export names If you use the oldstyle protocol with nbd-client 3.10, it will give the error: Error: It looks like you're trying to connect to an oldstyle server. If you want to claim compatibility with what the NBD proto.txt document says should be the case (which isn't based in reality), then you should always use newstyle when using port 10809, and use oldstyle on all other ports.
"nbdkit" responds to the following signals: "SIGINT" "SIGQUIT" "SIGTERM" The server exits cleanly. "SIGPIPE" This signal is ignored.
nbdkit-plugin(3), nbdkit-curl-plugin(1), nbdkit-example1-plugin(1), nbdkit-example2-plugin(1), nbdkit-example3-plugin(1), nbdkit-file-plugin(1), nbdkit-gzip-plugin(1), nbdkit-libvirt-plugin(1), nbdkit-ocaml-plugin(3), nbdkit-perl-plugin(3), nbdkit-python-plugin(3), nbdkit-vddk-plugin(1). nbdkit-xz-plugin(1).
Richard W.M. Jones
Copyright (C) 2013 Red Hat Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * Neither the name of Red Hat nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY RED HAT 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 RED HAT 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.
Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.
Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.
Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.
Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.
The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.
Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.
Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.
Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.