xref: /spdk/
Name
Date
Size
#Lines
LOC

..--

.githooks/H--11772

.github/H--9664

app/H--18,15314,895

doc/H--29,41623,314

docker/H--730589

dpdk/H--

dpdkbuild/H--253174

examples/H--19,57415,246

go/rpc/H--702499

include/H--44,70716,639

intel-ipsec-mb/H--

ipsecbuild/H--2814

isa-l/H--

isa-l-crypto/H--

isalbuild/H--2915

isalcryptobuild/H--3015

lib/H--219,300165,705

libvfio-user/H--

licenses/H--3122

mk/H--1,366929

module/H--72,62155,520

ocf/H--

proto/H--330275

python/H--10,0157,896

rpmbuild/H--475321

scripts/H--21,69216,909

shared_lib/H--4426

test/H--202,505151,256

vfiouserbuild/H--3720

xnvme/H--

xnvmebuild/H--2918

.astylercH A D12-Dec-2017769 2821

.gitignoreH A D06-Dec-2024500

.gitmodulesH A D14-May-2024590 2221

CHANGELOG.mdH A D21-Oct-2024201.3 KiB

CODE_OF_CONDUCT.mdH A D20-Oct-20225.3 KiB13195

CONFIGH A D12-Aug-20245.5 KiB

CONTRIBUTING.mdH A D01-Sep-2017135 42

LICENSEH A D23-Apr-20241.1 KiB

MakefileH A D06-Dec-20243.5 KiB

README.mdH A D28-Sep-20239.3 KiB278214

SECURITY.mdH A D15-Jul-2022212 53

VERSIONH A D06-Dec-202412

autobuild.shH A D17-Aug-20241.5 KiB

autorun.shH A D09-Sep-2024650

autorun_post.pyH A D22-Feb-20248.4 KiB224167

autotest.shH A D25-Oct-202413.8 KiB

configureH A D12-Aug-202447.4 KiB

deprecation.mdH A D07-Oct-20242.1 KiB

mdl_rules.rbH A D01-May-2023246 1211

README.md

1# Storage Performance Development Kit
2
3[![License](https://img.shields.io/github/license/spdk/spdk?style=flat-square&color=blue&label=License)](https://github.com/spdk/spdk/blob/master/LICENSE)
4[![Build Status](https://travis-ci.org/spdk/spdk.svg?branch=master)](https://travis-ci.org/spdk/spdk)
5[![Go Doc](https://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/spdk/spdk/go/rpc)
6[![Go Report Card](https://goreportcard.com/badge/github.com/spdk/spdk/go/rpc)](https://goreportcard.com/report/github.com/spdk/spdk/go/rpc)
7
8NOTE: The SPDK mailing list has moved to a new location. Please visit
9[this URL](https://lists.linuxfoundation.org/mailman/listinfo/spdk) to subscribe
10at the new location. Subscribers from the old location will not be automatically
11migrated to the new location.
12
13The Storage Performance Development Kit ([SPDK](http://www.spdk.io)) provides a set of tools
14and libraries for writing high performance, scalable, user-mode storage
15applications. It achieves high performance by moving all of the necessary
16drivers into userspace and operating in a polled mode instead of relying on
17interrupts, which avoids kernel context switches and eliminates interrupt
18handling overhead.
19
20The development kit currently includes:
21
22* [NVMe driver](http://www.spdk.io/doc/nvme.html)
23* [I/OAT (DMA engine) driver](http://www.spdk.io/doc/ioat.html)
24* [NVMe over Fabrics target](http://www.spdk.io/doc/nvmf.html)
25* [iSCSI target](http://www.spdk.io/doc/iscsi.html)
26* [vhost target](http://www.spdk.io/doc/vhost.html)
27* [Virtio-SCSI driver](http://www.spdk.io/doc/virtio.html)
28
29## In this readme
30
31* [Documentation](#documentation)
32* [Prerequisites](#prerequisites)
33* [Source Code](#source)
34* [Build](#libraries)
35* [Unit Tests](#tests)
36* [Vagrant](#vagrant)
37* [AWS](#aws)
38* [Advanced Build Options](#advanced)
39* [Shared libraries](#shared)
40* [Hugepages and Device Binding](#huge)
41* [Example Code](#examples)
42* [Contributing](#contributing)
43
44<a id="documentation"></a>
45## Documentation
46
47[Doxygen API documentation](http://www.spdk.io/doc/) is available, as
48well as a [Porting Guide](http://www.spdk.io/doc/porting.html) for porting SPDK to different frameworks
49and operating systems.
50
51<a id="source"></a>
52## Source Code
53
54~~~{.sh}
55git clone https://github.com/spdk/spdk
56cd spdk
57git submodule update --init
58~~~
59
60<a id="prerequisites"></a>
61## Prerequisites
62
63The dependencies can be installed automatically by `scripts/pkgdep.sh`.
64The `scripts/pkgdep.sh` script will automatically install the bare minimum
65dependencies required to build SPDK.
66Use `--help` to see information on installing dependencies for optional components
67
68~~~{.sh}
69./scripts/pkgdep.sh
70~~~
71
72<a id="libraries"></a>
73## Build
74
75Linux:
76
77~~~{.sh}
78./configure
79make
80~~~
81
82FreeBSD:
83Note: Make sure you have the matching kernel source in /usr/src/ and
84also note that CONFIG_COVERAGE option is not available right now
85for FreeBSD builds.
86
87~~~{.sh}
88./configure
89gmake
90~~~
91
92<a id="tests"></a>
93## Unit Tests
94
95~~~{.sh}
96./test/unit/unittest.sh
97~~~
98
99You will see several error messages when running the unit tests, but they are
100part of the test suite. The final message at the end of the script indicates
101success or failure.
102
103<a id="vagrant"></a>
104## Vagrant
105
106A [Vagrant](https://www.vagrantup.com/downloads.html) setup is also provided
107to create a Linux VM with a virtual NVMe controller to get up and running
108quickly.  Currently this has been tested on MacOS, Ubuntu 16.04.2 LTS and
109Ubuntu 18.04.3 LTS with the VirtualBox and Libvirt provider.
110The [VirtualBox Extension Pack](https://www.virtualbox.org/wiki/Downloads)
111or [Vagrant Libvirt] (https://github.com/vagrant-libvirt/vagrant-libvirt) must
112also be installed in order to get the required NVMe support.
113
114Details on the Vagrant setup can be found in the
115[SPDK Vagrant documentation](http://spdk.io/doc/vagrant.html).
116
117<a id="aws"></a>
118## AWS
119
120The following setup is known to work on AWS:
121Image: Ubuntu 18.04
122Before running  `setup.sh`, run `modprobe vfio-pci`
123then: `DRIVER_OVERRIDE=vfio-pci ./setup.sh`
124
125<a id="advanced"></a>
126## Advanced Build Options
127
128Optional components and other build-time configuration are controlled by
129settings in the Makefile configuration file in the root of the repository. `CONFIG`
130contains the base settings for the `configure` script. This script generates a new
131file, `mk/config.mk`, that contains final build settings. For advanced configuration,
132there are a number of additional options to `configure` that may be used, or
133`mk/config.mk` can simply be created and edited by hand. A description of all
134possible options is located in `CONFIG`.
135
136Boolean (on/off) options are configured with a 'y' (yes) or 'n' (no). For
137example, this line of `CONFIG` controls whether the optional RDMA (libibverbs)
138support is enabled:
139
140~~~{.sh}
141CONFIG_RDMA?=n
142~~~
143
144To enable RDMA, this line may be added to `mk/config.mk` with a 'y' instead of
145'n'. For the majority of options this can be done using the `configure` script.
146For example:
147
148~~~{.sh}
149./configure --with-rdma
150~~~
151
152Additionally, `CONFIG` options may also be overridden on the `make` command
153line:
154
155~~~{.sh}
156make CONFIG_RDMA=y
157~~~
158
159Users may wish to use a version of DPDK different from the submodule included
160in the SPDK repository.  Note, this includes the ability to build not only
161from DPDK sources, but also just with the includes and libraries
162installed via the dpdk and dpdk-devel packages.  To specify an alternate DPDK
163installation, run configure with the --with-dpdk option.  For example:
164
165Linux:
166
167~~~{.sh}
168./configure --with-dpdk=/path/to/dpdk/x86_64-native-linuxapp-gcc
169make
170~~~
171
172FreeBSD:
173
174~~~{.sh}
175./configure --with-dpdk=/path/to/dpdk/x86_64-native-bsdapp-clang
176gmake
177~~~
178
179The options specified on the `make` command line take precedence over the
180values in `mk/config.mk`. This can be useful if you, for example, generate
181a `mk/config.mk` using the `configure` script and then have one or two
182options (i.e. debug builds) that you wish to turn on and off frequently.
183
184<a id="shared"></a>
185## Shared libraries
186
187By default, the build of the SPDK yields static libraries against which
188the SPDK applications and examples are linked.
189Configure option `--with-shared` provides the ability to produce SPDK shared
190libraries, in addition to the default static ones.  Use of this flag also
191results in the SPDK executables linked to the shared versions of libraries.
192SPDK shared libraries by default, are located in `./build/lib`.  This includes
193the single SPDK shared lib encompassing all of the SPDK static libs
194(`libspdk.so`) as well as individual SPDK shared libs corresponding to each
195of the SPDK static ones.
196
197In order to start a SPDK app linked with SPDK shared libraries, make sure
198to do the following steps:
199
200- run ldconfig specifying the directory containing SPDK shared libraries
201- provide proper `LD_LIBRARY_PATH`
202
203If DPDK shared libraries are used, you may also need to add DPDK shared
204libraries to `LD_LIBRARY_PATH`
205
206Linux:
207
208~~~{.sh}
209./configure --with-shared
210make
211ldconfig -v -n ./build/lib
212LD_LIBRARY_PATH=./build/lib/:./dpdk/build/lib/ ./build/bin/spdk_tgt
213~~~
214
215<a id="huge"></a>
216## Hugepages and Device Binding
217
218Before running an SPDK application, some hugepages must be allocated and
219any NVMe and I/OAT devices must be unbound from the native kernel drivers.
220SPDK includes a script to automate this process on both Linux and FreeBSD.
221This script should be run as root.
222
223~~~{.sh}
224sudo scripts/setup.sh
225~~~
226
227Users may wish to configure a specific memory size. Below is an example of
228configuring 8192MB memory.
229
230~~~{.sh}
231sudo HUGEMEM=8192 scripts/setup.sh
232~~~
233
234There are a lot of other environment variables that can be set to configure
235setup.sh for advanced users. To see the full list, run:
236
237~~~{.sh}
238scripts/setup.sh --help
239~~~
240
241<a id="targets"></a>
242## Target applications
243
244After completing the build process, SPDK target applications can be found in
245`spdk/build/bin` directory:
246
247* [nvmf_tgt](https://spdk.io/doc/nvmf.html) - SPDK NVMe over Fabrics target
248  presents block devices over a fabrics,
249* [iscsi_tgt](https://spdk.io/doc/iscsi.html) - SPDK iSCSI target runs I/O
250  operations remotely with TCP/IP protocol,
251* [vhost](https://spdk.io/doc/vhost.html) - A vhost target provides a local
252  storage service as a process running on a local machine,
253* spdk_tgt - combines capabilities of all three applications.
254
255SPDK runs in a polled mode, which means it continuously checks for operation completions.
256This approach assures faster response than interrupt mode, but also lessens usefulness
257of tools like `top`, which only shows 100% CPU usage for SPDK assigned cores.
258[spdk_top](https://spdk.io/doc/spdk_top.html) is a program which simulates `top` application
259and uses SPDK's [JSON RPC](https://spdk.io/doc/jsonrpc.html) interface to present statistics
260about SPDK threads, pollers and CPU cores as an interactive list.
261
262<a id="examples"></a>
263## Example Code
264
265Example code is located in the examples directory. The examples are compiled
266automatically as part of the build process. Simply call any of the examples
267with no arguments to see the help output. You'll likely need to run the examples
268as a privileged user (root) unless you've done additional configuration
269to grant your user permission to allocate huge pages and map devices through
270vfio.
271
272<a id="contributing"></a>
273## Contributing
274
275For additional details on how to get more involved in the community, including
276[contributing code](http://www.spdk.io/development) and participating in discussions and other activities, please
277refer to [spdk.io](http://www.spdk.io/community)
278