nbdkit-error-filter(1) | NBDKIT | nbdkit-error-filter(1) |
nbdkit-error-filter - inject errors for testing clients
nbdkit --filter=error PLUGIN [error=EPERM|EIO|ENOMEM|EINVAL|ENOSPC|ESHUTDOWN] [error-rate=10%|0.1] [error-file=/tmp/inject] [error-pread=...] [error-pread-rate=...] [error-pread-file=...] [error-pwrite=...] [error-pwrite-rate=...] [error-pwrite-file=...] [error-trim=...] [error-trim-rate=...] [error-trim-file=...] [error-zero=...] [error-zero-rate=...] [error-zero-file=...] [error-extents=...] [error-extents-rate=...] [error-extents-file=...] [error-cache=...] [error-cache-rate=...] [error-cache-file=...]
"nbdkit-error-filter" is an nbdkit filter that injects random errors into replies from the server. This is used for testing that NBD clients can handle errors.
All parameters are optional, but you should usually specify one of the "error-rate" or "error-*-rate" parameters, otherwise this filter will do nothing.
Inject a low rate of errors randomly into the connection:
nbdkit --filter=error file disk.img error-rate=1%
Reading, trimming, cache and extents (block status) requests will be successful, but all writes and zeroing will return "No space left on device":
nbdkit --filter=error file disk.img \ error=ENOSPC \ error-pwrite-rate=100% \ error-zero-rate=100%
To make all connections fail hard 60 seconds after the server is started, use:
rm -f /tmp/inject nbdkit --filter=error file disk.img \ error-rate=100% \ error-file=/tmp/inject sleep 60; touch /tmp/inject
This parameter is optional and the default is "EIO" ("Input/output error").
This parameter is optional and the default is "0%". Unless you set this, the filter will do nothing.
You can use this for fine-grained control over when to inject errors, for example if you want to trigger an error at an exact moment during a test, arrange for this file to be created at the appropriate time. Or conversely to test error recovery in a client, create the file initially, and then delete it to check the client can recover.
This parameter is optional.
Same as "error", "error-rate" and "error-file" but only apply the settings to NBD block status requests to read extents.
Same as "error", "error-rate" and "error-file" but only apply the settings to NBD cache requests.
If you are looking at the debugging output (using "nbdkit -f -v") references to the name of this filter show up as "error-inject:", and such lines indicate that the filter is not altering output, for example:
nbdkit: file.9: debug: error-inject: pread count=1024 offset=0 flags=0x0
Conversely, references to the string "error:" occur when the nbdkit_error(3) API was used, including when this filter injects an error, as in:
nbdkit: file.4: error: injecting ENOSPC error into pwrite
Use "nbdkit --dump-config" to find the location of $filterdir.
"nbdkit-error-filter" first appeared in nbdkit 1.6.
nbdkit(1), nbdkit-file-plugin(1), nbdkit-full-plugin(1), nbdkit-retry-filter(1), nbdkit-retry-request-filter(1), nbdkit-filter(3).
Richard W.M. Jones
Copyright (C) 2018 Red Hat Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
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.
2023-01-04 | nbdkit-1.32.5 |