A daemon that handles the userspace side of the LIO TCM-User backstore.
LIO is the SCSI target in the Linux kernel. It is entirely kernel code, and allows exported SCSI logical units (LUNs) to be backed by regular files or block devices. But, if we want to get fancier with the capabilities of the device we're emulating, the kernel is not necessarily the right place. While there are userspace libraries for compression, encryption, and clustered storage solutions like Ceph or Gluster, these are not accessible from the kernel.
The TCMU userspace-passthrough backstore allows a userspace process to handle requests to a LUN. But since the kernel-user interface that TCMU provides must be fast and flexible, it is complex enough that we'd like to avoid each userspace handler having to write boilerplate code.
tcmu-runner handles the messy details of the TCMU interface -- UIO, netlink, pthreads, and DBus -- and exports a more friendly C plugin module API. Modules using this API are called "TCMU handlers". Handler authors can write code just to handle the SCSI commands as desired, and can also link with whatever userspace libraries they like.
One goal of TCMU is that configuring a userspace-backed LUN should be as easy as configuring a kernel-backed LUN. We're not quite there yet. This will require cooperation with the LIO configuration tool, targetcli
. targetcli
should list user-backed backstores along with the built-in kernel backstores, and ensure tcmu-runner is started if a user-backed backstore is created.
tcmu-runner is Apache 2.0 licensed.
Tarballs are available from https://fedorahosted.org/released/tcmu-runner/ .
We encourage pull requests and issues tracking via Github, and the target-devel mailing list (list info) may be used for discussion.
- Install cmake.
- Clone this repo.
- Install development packages for dependencies, usually ending with "-devel" or "-dev": libnl3, libglib2 (or glib2-devel on Fedora), libpthread, libdl, libkmod, libgfapi (Gluster), librbd1 (Ceph), zlib.
- Type
cmake .
.- Note: tcmu-runner can be compiled without the Gluster or qcow handlers using the
-Dwith-glfs=false
and-Dwith-qcow=false
cmake parameters respectively.
- Note: tcmu-runner can be compiled without the Gluster or qcow handlers using the
- Type
make
.
- Copy
tcmu-runner.conf
to/etc/dbus-1/system.d/
. This allows tcmu-runner to be on the system bus, which is privileged. - If using systemd, copy
org.kernel.TCMUService1.service
to/usr/share/dbus-1/system-services/
andtcmu-runner.service
to/lib/systemd/system
. - Or, run it from the command line as root. It should print the number of handlers and devices found.
Support for creating user backstores via targetcli is under development, but for now:
- Ensure
target_core_user
kernel module is loaded. - Create the HBA (user_1) and the storage object (test):
mkdir -p /sys/kernel/config/target/core/user_1/test
- Go to that directory:
cd /sys/kernel/config/target/core/user_1/test
- Set configuration values
- Set size (in bytes):
echo -n dev_size=16777216 > control
- Set configstring. See tcmu-design.txt, but note that the TCMU backstore driver already knows and will prepend the "tcm-user/hba_num/device_name" part. Therefore, if we wanted our new device to be handled by the "baz" handler, we would give subtype and path by running:
echo -n dev_config=baz/addl_info_for_baz_handler > control
- Enable the storage object:
echo -n 1 > enable
- Verify everything worked. There should be an entry in
/sys/class/uio
.
To delete:
rmdir /sys/kernel/config/target/core/user_1/test
rmdir /sys/kernel/config/target/core/user_1
There are two different ways to write a TCMU handler. The primary difference is who is responsible for the event loop.
There are two different ways to write a tcmu-runner plugin handler:
- one can register .handle_cmd to take the full control of command handling
- or else one can register .{read, write, flush, ...} to handle specific operations and .handle_cmd to override the generic handling if needed.
With the option 1, tcmu-runner is in charge of the event loop
for your plugin, and your handler's handle_cmd
function is called
repeatedly to respond to each incoming SCSI command. While your
handler sees all SCSI commands, there are helper functions provided
that save each handler from writing boilerplate code for mandatory
SCSI commands, if desired.
The file_optical
handler is an examples of this type.
With the option 2, tcmu-runner is in charge of the event loop and SCSI command handling for your plugin, and your handler's registered functions are called repeatedly to handle storage requests as required by the upper SCSI layer, which will handle most of the SCSI commands for you.
The file_example
handler is an example of this type.
If you want to add handling of TCMU devices to an existing daemon or
other program that already is processing its own event loop, the best
option is to use tcmulib directly. This requires your code to keep
track of tcmulib's file descriptors. While tcmulib's 'master' file
descriptor must be handled with tcmulib_master_fd_ready()
single-threadedly, per-device fds can be handled on the main thread
(with tcmulib_get_next_command
and tcmulib_command_complete
) or
separate threads if desired. SCSI command-processing helper functions
are still available for use.
tcmu-runner
itself uses tcmulib in this manner and may be used as an
example of multi-threaded tcmulib use. The consumer.c
example
demonstrates single-threaded tcmulib processing.