2016-07-20 18:16:23 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008-2012 Daisuke Aoyama <aoyama@peach.ne.jp>.
|
|
|
|
* Copyright (c) Intel Corporation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 Intel Corporation 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 THE COPYRIGHT HOLDERS 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 THE COPYRIGHT
|
|
|
|
* OWNER 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Block device abstraction layer
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SPDK_BDEV_H_
|
|
|
|
#define SPDK_BDEV_H_
|
|
|
|
|
2017-05-01 20:22:48 +00:00
|
|
|
#include "spdk/stdinc.h"
|
2016-07-20 18:16:23 +00:00
|
|
|
|
|
|
|
#include "spdk/event.h"
|
|
|
|
#include "spdk/scsi_spec.h"
|
|
|
|
|
2017-05-05 20:15:51 +00:00
|
|
|
#define SPDK_BDEV_SMALL_BUF_MAX_SIZE 8192
|
|
|
|
#define SPDK_BDEV_LARGE_BUF_MAX_SIZE (64 * 1024)
|
2016-07-20 18:16:23 +00:00
|
|
|
|
2017-01-25 01:04:14 +00:00
|
|
|
typedef void (*spdk_bdev_remove_cb_t)(void *remove_ctx);
|
|
|
|
|
2017-05-04 20:46:50 +00:00
|
|
|
/**
|
|
|
|
* Block device I/O
|
|
|
|
*
|
|
|
|
* This is an I/O that is passed to an spdk_bdev.
|
|
|
|
*/
|
2016-07-20 18:16:23 +00:00
|
|
|
struct spdk_bdev_io;
|
2017-05-04 20:46:50 +00:00
|
|
|
|
2016-11-08 21:09:08 +00:00
|
|
|
struct spdk_bdev_fn_table;
|
2017-05-04 21:20:46 +00:00
|
|
|
struct spdk_io_channel;
|
2016-11-18 17:22:58 +00:00
|
|
|
struct spdk_json_write_ctx;
|
2016-07-20 18:16:23 +00:00
|
|
|
|
2017-01-25 01:04:14 +00:00
|
|
|
/** Blockdev status */
|
|
|
|
enum spdk_bdev_status {
|
|
|
|
SPDK_BDEV_STATUS_INVALID,
|
|
|
|
SPDK_BDEV_STATUS_UNCLAIMED,
|
|
|
|
SPDK_BDEV_STATUS_CLAIMED,
|
|
|
|
SPDK_BDEV_STATUS_REMOVING,
|
|
|
|
};
|
|
|
|
|
2016-07-20 18:16:23 +00:00
|
|
|
/**
|
|
|
|
* \brief SPDK block device.
|
|
|
|
*
|
|
|
|
* This is a virtual representation of a block device that is exported by the backend.
|
|
|
|
*/
|
2017-05-16 20:03:11 +00:00
|
|
|
struct spdk_bdev;
|
2016-07-20 18:16:23 +00:00
|
|
|
|
2016-08-24 17:25:49 +00:00
|
|
|
/** Blockdev I/O type */
|
|
|
|
enum spdk_bdev_io_type {
|
2017-05-06 00:01:40 +00:00
|
|
|
SPDK_BDEV_IO_TYPE_READ = 1,
|
2016-08-24 17:25:49 +00:00
|
|
|
SPDK_BDEV_IO_TYPE_WRITE,
|
|
|
|
SPDK_BDEV_IO_TYPE_UNMAP,
|
|
|
|
SPDK_BDEV_IO_TYPE_FLUSH,
|
|
|
|
SPDK_BDEV_IO_TYPE_RESET,
|
|
|
|
};
|
|
|
|
|
2017-05-16 20:25:03 +00:00
|
|
|
/**
|
|
|
|
* Block device completion callback
|
|
|
|
*
|
|
|
|
* \param bdev_io Block device I/O that has completed.
|
|
|
|
* \param success true if I/O completed successfully or false if it failed; additional error
|
|
|
|
* information may be retrieved from bdev_io by calling
|
|
|
|
* spdk_bdev_io_get_nvme_status() or spdk_bdev_io_get_scsi_status().
|
|
|
|
* \param cb_arg Callback argument specified when bdev_io was submitted.
|
|
|
|
*/
|
2016-10-05 22:00:20 +00:00
|
|
|
typedef void (*spdk_bdev_io_completion_cb)(struct spdk_bdev_io *bdev_io,
|
2017-05-16 20:25:03 +00:00
|
|
|
bool success,
|
2016-10-05 22:00:20 +00:00
|
|
|
void *cb_arg);
|
2016-07-20 18:16:23 +00:00
|
|
|
|
2017-04-06 21:40:29 +00:00
|
|
|
struct spdk_bdev_io_stat {
|
|
|
|
uint64_t bytes_read;
|
|
|
|
uint64_t num_read_ops;
|
|
|
|
uint64_t bytes_written;
|
|
|
|
uint64_t num_write_ops;
|
|
|
|
};
|
|
|
|
|
2016-08-01 21:31:02 +00:00
|
|
|
struct spdk_bdev *spdk_bdev_get_by_name(const char *bdev_name);
|
2016-08-19 17:51:37 +00:00
|
|
|
void spdk_bdev_unregister(struct spdk_bdev *bdev);
|
2016-08-01 21:31:02 +00:00
|
|
|
|
|
|
|
struct spdk_bdev *spdk_bdev_first(void);
|
|
|
|
struct spdk_bdev *spdk_bdev_next(struct spdk_bdev *prev);
|
|
|
|
|
2017-01-10 16:54:23 +00:00
|
|
|
/**
|
|
|
|
* Claim ownership of a block device.
|
|
|
|
*
|
|
|
|
* User applications and virtual blockdevs may use this to mediate access to bdevs.
|
|
|
|
*
|
|
|
|
* When the ownership of the bdev is no longer needed, the user should call spdk_bdev_unclaim().
|
|
|
|
*
|
|
|
|
* \param bdev Block device to claim.
|
2017-01-25 01:04:14 +00:00
|
|
|
* \param remove_cb callback function for hot remove the device.
|
|
|
|
* \param remove_ctx param for hot removal callback function.
|
2017-01-10 16:54:23 +00:00
|
|
|
* \return true if the caller claimed the bdev, or false if it was already claimed by another user.
|
|
|
|
*/
|
2017-01-25 01:04:14 +00:00
|
|
|
bool spdk_bdev_claim(struct spdk_bdev *bdev, spdk_bdev_remove_cb_t remove_cb, void *remove_ctx);
|
2017-01-10 16:54:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Release claim of ownership of a block device.
|
|
|
|
*
|
|
|
|
* When a bdev reference acquired with spdk_bdev_claim() is no longer needed, the user should
|
|
|
|
* release the claim using spdk_bdev_unclaim().
|
|
|
|
*
|
|
|
|
* \param bdev Block device to release.
|
|
|
|
*/
|
|
|
|
void spdk_bdev_unclaim(struct spdk_bdev *bdev);
|
|
|
|
|
2016-08-24 17:25:49 +00:00
|
|
|
bool spdk_bdev_io_type_supported(struct spdk_bdev *bdev, enum spdk_bdev_io_type io_type);
|
|
|
|
|
2016-11-18 17:22:58 +00:00
|
|
|
int spdk_bdev_dump_config_json(struct spdk_bdev *bdev, struct spdk_json_write_ctx *w);
|
|
|
|
|
2017-05-10 20:29:31 +00:00
|
|
|
/**
|
|
|
|
* Get block device name.
|
|
|
|
*
|
|
|
|
* \param bdev Block device to query.
|
|
|
|
* \return Name of bdev as a null-terminated string.
|
|
|
|
*/
|
|
|
|
const char *spdk_bdev_get_name(const struct spdk_bdev *bdev);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get block device product name.
|
|
|
|
*
|
|
|
|
* \param bdev Block device to query.
|
|
|
|
* \return Product name of bdev as a null-terminated string.
|
|
|
|
*/
|
|
|
|
const char *spdk_bdev_get_product_name(const struct spdk_bdev *bdev);
|
|
|
|
|
2017-05-12 17:29:00 +00:00
|
|
|
/**
|
|
|
|
* Get block device logical block size.
|
|
|
|
*
|
|
|
|
* \param bdev Block device to query.
|
|
|
|
* \return Size of logical block for this bdev in bytes.
|
|
|
|
*/
|
|
|
|
uint32_t spdk_bdev_get_block_size(const struct spdk_bdev *bdev);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get size of block device in logical blocks.
|
|
|
|
*
|
|
|
|
* \param bdev Block device to query.
|
|
|
|
* \return Size of bdev in logical blocks.
|
|
|
|
*
|
|
|
|
* Logical blocks are numbered from 0 to spdk_bdev_get_num_blocks(bdev) - 1, inclusive.
|
|
|
|
*/
|
|
|
|
uint64_t spdk_bdev_get_num_blocks(const struct spdk_bdev *bdev);
|
|
|
|
|
2017-05-12 23:08:38 +00:00
|
|
|
/**
|
|
|
|
* Get maximum number of descriptors per unmap request.
|
|
|
|
*
|
|
|
|
* \param bdev Block device to query.
|
|
|
|
* \return Maximum number of unmap descriptors per request.
|
|
|
|
*/
|
|
|
|
uint32_t spdk_bdev_get_max_unmap_descriptors(const struct spdk_bdev *bdev);
|
|
|
|
|
2017-05-09 17:57:32 +00:00
|
|
|
/**
|
|
|
|
* Get minimum I/O buffer address alignment for a bdev.
|
|
|
|
*
|
|
|
|
* \param bdev Block device to query.
|
|
|
|
* \return Required alignment of I/O buffers in bytes.
|
|
|
|
*/
|
|
|
|
size_t spdk_bdev_get_buf_align(const struct spdk_bdev *bdev);
|
|
|
|
|
2017-05-16 19:57:33 +00:00
|
|
|
/**
|
|
|
|
* Query whether block device has an enabled write cache.
|
|
|
|
*
|
|
|
|
* \param bdev Block device to query.
|
|
|
|
* \return true if block device has a volatile write cache enabled.
|
|
|
|
*
|
|
|
|
* If this function returns true, written data may not be persistent until a flush command
|
|
|
|
* is issued.
|
|
|
|
*/
|
|
|
|
bool spdk_bdev_has_write_cache(const struct spdk_bdev *bdev);
|
|
|
|
|
2016-09-20 23:18:44 +00:00
|
|
|
struct spdk_bdev_io *spdk_bdev_read(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
2016-09-14 17:34:48 +00:00
|
|
|
void *buf, uint64_t offset, uint64_t nbytes,
|
2016-07-20 18:16:23 +00:00
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
2016-10-04 14:39:27 +00:00
|
|
|
struct spdk_bdev_io *
|
|
|
|
spdk_bdev_readv(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
|
|
|
struct iovec *iov, int iovcnt,
|
|
|
|
uint64_t offset, uint64_t nbytes,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
2016-09-20 23:18:44 +00:00
|
|
|
struct spdk_bdev_io *spdk_bdev_write(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
2016-09-14 17:34:48 +00:00
|
|
|
void *buf, uint64_t offset, uint64_t nbytes,
|
2016-07-20 18:16:23 +00:00
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
2016-09-20 23:18:44 +00:00
|
|
|
struct spdk_bdev_io *spdk_bdev_writev(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
2016-07-20 18:16:23 +00:00
|
|
|
struct iovec *iov, int iovcnt,
|
2016-09-14 17:34:48 +00:00
|
|
|
uint64_t offset, uint64_t len,
|
2016-07-20 18:16:23 +00:00
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
2016-09-20 23:18:44 +00:00
|
|
|
struct spdk_bdev_io *spdk_bdev_unmap(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
2016-07-20 18:16:23 +00:00
|
|
|
struct spdk_scsi_unmap_bdesc *unmap_d,
|
|
|
|
uint16_t bdesc_count,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
2016-09-20 23:18:44 +00:00
|
|
|
struct spdk_bdev_io *spdk_bdev_flush(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
2016-07-20 18:16:23 +00:00
|
|
|
uint64_t offset, uint64_t length,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
2017-04-06 21:40:29 +00:00
|
|
|
void spdk_bdev_get_io_stat(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_bdev_io_stat *stat);
|
2016-07-20 18:16:23 +00:00
|
|
|
int spdk_bdev_free_io(struct spdk_bdev_io *bdev_io);
|
2017-05-23 17:51:50 +00:00
|
|
|
int spdk_bdev_reset(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
2017-05-11 17:17:47 +00:00
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg);
|
2017-05-18 17:48:04 +00:00
|
|
|
struct spdk_io_channel *spdk_bdev_get_io_channel(struct spdk_bdev *bdev);
|
2017-01-18 21:43:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the status of bdev_io as an NVMe status code.
|
|
|
|
*
|
|
|
|
* \param bdev_io I/O to get the status from.
|
|
|
|
* \param sct Status Code Type return value, as defined by the NVMe specification.
|
|
|
|
* \param sc Status Code return value, as defined by the NVMe specification.
|
|
|
|
*/
|
|
|
|
void spdk_bdev_io_get_nvme_status(const struct spdk_bdev_io *bdev_io, int *sct, int *sc);
|
|
|
|
|
2017-01-18 22:15:35 +00:00
|
|
|
/**
|
|
|
|
* Get the status of bdev_io as a SCSI status code.
|
|
|
|
*
|
|
|
|
* \param bdev_io I/O to get the status from.
|
|
|
|
* \param sc SCSI Status Code.
|
|
|
|
* \param sk SCSI Sense Key.
|
|
|
|
* \param asc SCSI Additional Sense Code.
|
|
|
|
* \param ascq SCSI Additional Sense Code Qualifier.
|
|
|
|
*/
|
|
|
|
void spdk_bdev_io_get_scsi_status(const struct spdk_bdev_io *bdev_io,
|
|
|
|
int *sc, int *sk, int *asc, int *ascq);
|
|
|
|
|
2017-05-04 20:57:07 +00:00
|
|
|
/**
|
|
|
|
* Get the iovec describing the data buffer of a bdev_io.
|
|
|
|
*
|
|
|
|
* \param bdev_io I/O to describe with iovec.
|
|
|
|
* \param iovp Pointer to be filled with iovec.
|
|
|
|
* \param iovcntp Pointer to be filled with number of iovec entries.
|
|
|
|
*/
|
|
|
|
void spdk_bdev_io_get_iovec(struct spdk_bdev_io *bdev_io, struct iovec **iovp, int *iovcntp);
|
|
|
|
|
2016-07-20 18:16:23 +00:00
|
|
|
#endif /* SPDK_BDEV_H_ */
|