LCOV - code coverage report
Current view: top level - spdk/lib/nvmf - vfio_user.c (source / functions) Hit Total Coverage
Test: Combined Lines: 1670 2730 61.2 %
Date: 2024-11-15 12:45:51 Functions: 116 153 75.8 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 3341 10007 33.4 %

           Branch data     Line data    Source code
       1                 :            : /*   SPDX-License-Identifier: BSD-3-Clause
       2                 :            :  *   Copyright (C) 2020 Intel Corporation.
       3                 :            :  *   Copyright (c) 2019-2022, Nutanix Inc. All rights reserved.
       4                 :            :  *   Copyright (c) 2022, 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
       5                 :            :  */
       6                 :            : 
       7                 :            : /*
       8                 :            :  * NVMe over vfio-user transport
       9                 :            :  */
      10                 :            : 
      11                 :            : #include <sys/param.h>
      12                 :            : 
      13                 :            : #include <vfio-user/libvfio-user.h>
      14                 :            : #include <vfio-user/pci_defs.h>
      15                 :            : 
      16                 :            : #include "spdk/barrier.h"
      17                 :            : #include "spdk/stdinc.h"
      18                 :            : #include "spdk/assert.h"
      19                 :            : #include "spdk/thread.h"
      20                 :            : #include "spdk/nvmf_transport.h"
      21                 :            : #include "spdk/sock.h"
      22                 :            : #include "spdk/string.h"
      23                 :            : #include "spdk/util.h"
      24                 :            : #include "spdk/log.h"
      25                 :            : 
      26                 :            : #include "transport.h"
      27                 :            : 
      28                 :            : #include "nvmf_internal.h"
      29                 :            : 
      30                 :            : #define SWAP(x, y)                  \
      31                 :            :         do                          \
      32                 :            :         {                           \
      33                 :            :                 typeof(x) _tmp = x; \
      34                 :            :                 x = y;              \
      35                 :            :                 y = _tmp;           \
      36                 :            :         } while (0)
      37                 :            : 
      38                 :            : #define NVMF_VFIO_USER_DEFAULT_MAX_QUEUE_DEPTH 256
      39                 :            : #define NVMF_VFIO_USER_DEFAULT_AQ_DEPTH 32
      40                 :            : #define NVMF_VFIO_USER_DEFAULT_MAX_IO_SIZE ((NVMF_REQ_MAX_BUFFERS - 1) << SHIFT_4KB)
      41                 :            : #define NVMF_VFIO_USER_DEFAULT_IO_UNIT_SIZE NVMF_VFIO_USER_DEFAULT_MAX_IO_SIZE
      42                 :            : 
      43                 :            : #define NVME_DOORBELLS_OFFSET   0x1000
      44                 :            : #define NVMF_VFIO_USER_SHADOW_DOORBELLS_BUFFER_COUNT 2
      45                 :            : #define NVMF_VFIO_USER_SET_EVENTIDX_MAX_ATTEMPTS 3
      46                 :            : #define NVMF_VFIO_USER_EVENTIDX_POLL UINT32_MAX
      47                 :            : 
      48                 :            : #define NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR 512
      49                 :            : #define NVMF_VFIO_USER_DEFAULT_MAX_QPAIRS_PER_CTRLR (NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR / 4)
      50                 :            : 
      51                 :            : /* NVMe spec 1.4, section 5.21.1.7 */
      52                 :            : SPDK_STATIC_ASSERT(NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR >= 2 &&
      53                 :            :                    NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR <= SPDK_NVME_MAX_IO_QUEUES,
      54                 :            :                    "bad number of queues");
      55                 :            : 
      56                 :            : /*
      57                 :            :  * NVMe driver reads 4096 bytes, which is the extended PCI configuration space
      58                 :            :  * available on PCI-X 2.0 and PCI Express buses
      59                 :            :  */
      60                 :            : #define NVME_REG_CFG_SIZE       0x1000
      61                 :            : 
      62                 :            : /*
      63                 :            :  * Doorbells must be page aligned so that they can memory mapped.
      64                 :            :  *
      65                 :            :  * TODO does the NVMe spec also require this? Document it.
      66                 :            :  */
      67                 :            : #define NVMF_VFIO_USER_DOORBELLS_SIZE \
      68                 :            :         SPDK_ALIGN_CEIL( \
      69                 :            :                 (NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR * 2 * SPDK_NVME_DOORBELL_REGISTER_SIZE), \
      70                 :            :                 0x1000)
      71                 :            : #define NVME_REG_BAR0_SIZE (NVME_DOORBELLS_OFFSET + NVMF_VFIO_USER_DOORBELLS_SIZE)
      72                 :            : 
      73                 :            : /*
      74                 :            :  * TODO check the PCI spec whether BAR4 and BAR5 really have to be at least one
      75                 :            :  * page and a multiple of page size (maybe QEMU also needs this?). Document all
      76                 :            :  * this.
      77                 :            :  */
      78                 :            : 
      79                 :            : #define NVMF_VFIO_USER_MSIX_NUM MAX(CHAR_BIT, NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR)
      80                 :            : 
      81                 :            : #define NVMF_VFIO_USER_MSIX_TABLE_BIR (4)
      82                 :            : #define NVMF_VFIO_USER_BAR4_SIZE SPDK_ALIGN_CEIL((NVMF_VFIO_USER_MSIX_NUM * 16), 0x1000)
      83                 :            : SPDK_STATIC_ASSERT(NVMF_VFIO_USER_BAR4_SIZE > 0, "Incorrect size");
      84                 :            : 
      85                 :            : /*
      86                 :            :  * TODO according to the PCI spec we need one bit per vector, document the
      87                 :            :  * relevant section.
      88                 :            :  */
      89                 :            : #define NVMF_VFIO_USER_MSIX_PBA_BIR (5)
      90                 :            : #define NVMF_VFIO_USER_BAR5_SIZE SPDK_ALIGN_CEIL((NVMF_VFIO_USER_MSIX_NUM / CHAR_BIT), 0x1000)
      91                 :            : SPDK_STATIC_ASSERT(NVMF_VFIO_USER_BAR5_SIZE > 0, "Incorrect size");
      92                 :            : struct nvmf_vfio_user_req;
      93                 :            : 
      94                 :            : typedef int (*nvmf_vfio_user_req_cb_fn)(struct nvmf_vfio_user_req *req, void *cb_arg);
      95                 :            : 
      96                 :            : /* 1 more for PRP2 list itself */
      97                 :            : #define NVMF_VFIO_USER_MAX_IOVECS       (NVMF_REQ_MAX_BUFFERS + 1)
      98                 :            : 
      99                 :            : enum nvmf_vfio_user_req_state {
     100                 :            :         VFIO_USER_REQUEST_STATE_FREE = 0,
     101                 :            :         VFIO_USER_REQUEST_STATE_EXECUTING,
     102                 :            : };
     103                 :            : 
     104                 :            : /*
     105                 :            :  * Support for live migration in NVMf/vfio-user: live migration is implemented
     106                 :            :  * by stopping the NVMf subsystem when the device is instructed to enter the
     107                 :            :  * stop-and-copy state and then trivially, and most importantly safely,
     108                 :            :  * collecting migration state and providing it to the vfio-user client. We
     109                 :            :  * don't provide any migration state at the pre-copy state as that's too
     110                 :            :  * complicated to do, we might support this in the future.
     111                 :            :  */
     112                 :            : 
     113                 :            : 
     114                 :            : /* NVMe device state representation */
     115                 :            : struct nvme_migr_sq_state {
     116                 :            :         uint16_t        sqid;
     117                 :            :         uint16_t        cqid;
     118                 :            :         uint32_t        head;
     119                 :            :         uint32_t        size;
     120                 :            :         uint32_t        reserved;
     121                 :            :         uint64_t        dma_addr;
     122                 :            : };
     123                 :            : SPDK_STATIC_ASSERT(sizeof(struct nvme_migr_sq_state) == 0x18, "Incorrect size");
     124                 :            : 
     125                 :            : struct nvme_migr_cq_state {
     126                 :            :         uint16_t        cqid;
     127                 :            :         uint16_t        phase;
     128                 :            :         uint32_t        tail;
     129                 :            :         uint32_t        size;
     130                 :            :         uint32_t        iv;
     131                 :            :         uint32_t        ien;
     132                 :            :         uint32_t        reserved;
     133                 :            :         uint64_t        dma_addr;
     134                 :            : };
     135                 :            : SPDK_STATIC_ASSERT(sizeof(struct nvme_migr_cq_state) == 0x20, "Incorrect size");
     136                 :            : 
     137                 :            : #define VFIO_USER_MIGR_CALLBACK_VERS    1
     138                 :            : #define VFIO_USER_NVME_MIGR_MAGIC       0xAFEDBC23
     139                 :            : 
     140                 :            : /* The device state is in VFIO MIGRATION BAR(9) region, keep the device state page aligned.
     141                 :            :  *
     142                 :            :  * NVMe device migration region is defined as below:
     143                 :            :  * -------------------------------------------------------------------------
     144                 :            :  * | vfio_user_nvme_migr_header | nvmf controller data | queue pairs | BARs |
     145                 :            :  * -------------------------------------------------------------------------
     146                 :            :  *
     147                 :            :  * Keep vfio_user_nvme_migr_header as a fixed 0x1000 length, all new added fields
     148                 :            :  * can use the reserved space at the end of the data structure.
     149                 :            :  */
     150                 :            : struct vfio_user_nvme_migr_header {
     151                 :            :         /* Magic value to validate migration data */
     152                 :            :         uint32_t        magic;
     153                 :            :         /* Version to check the data is same from source to destination */
     154                 :            :         uint32_t        version;
     155                 :            : 
     156                 :            :         /* The library uses this field to know how many fields in this
     157                 :            :          * structure are valid, starting at the beginning of this data
     158                 :            :          * structure.  New added fields in future use `unused` memory
     159                 :            :          * spaces.
     160                 :            :          */
     161                 :            :         uint32_t        opts_size;
     162                 :            :         uint32_t        reserved0;
     163                 :            : 
     164                 :            :         /* BARs information */
     165                 :            :         uint64_t        bar_offset[VFU_PCI_DEV_NUM_REGIONS];
     166                 :            :         uint64_t        bar_len[VFU_PCI_DEV_NUM_REGIONS];
     167                 :            : 
     168                 :            :         /* Queue pair start offset, starting at the beginning of this
     169                 :            :          * data structure.
     170                 :            :          */
     171                 :            :         uint64_t        qp_offset;
     172                 :            :         uint64_t        qp_len;
     173                 :            : 
     174                 :            :         /* Controller data structure */
     175                 :            :         uint32_t        num_io_queues;
     176                 :            :         uint32_t        reserved1;
     177                 :            : 
     178                 :            :         /* NVMf controller data offset and length if exist, starting at
     179                 :            :          * the beginning of this data structure.
     180                 :            :          */
     181                 :            :         uint64_t        nvmf_data_offset;
     182                 :            :         uint64_t        nvmf_data_len;
     183                 :            : 
     184                 :            :         /*
     185                 :            :          * Whether or not shadow doorbells are used in the source. 0 is a valid DMA
     186                 :            :          * address.
     187                 :            :          */
     188                 :            :         uint32_t        sdbl;
     189                 :            : 
     190                 :            :         /* Shadow doorbell DMA addresses. */
     191                 :            :         uint64_t        shadow_doorbell_buffer;
     192                 :            :         uint64_t        eventidx_buffer;
     193                 :            : 
     194                 :            :         /* Reserved memory space for new added fields, the
     195                 :            :          * field is always at the end of this data structure.
     196                 :            :          */
     197                 :            :         uint8_t         unused[3856];
     198                 :            : };
     199                 :            : SPDK_STATIC_ASSERT(sizeof(struct vfio_user_nvme_migr_header) == 0x1000, "Incorrect size");
     200                 :            : 
     201                 :            : struct vfio_user_nvme_migr_qp {
     202                 :            :         struct nvme_migr_sq_state       sq;
     203                 :            :         struct nvme_migr_cq_state       cq;
     204                 :            : };
     205                 :            : 
     206                 :            : /* NVMe state definition used to load/restore from/to NVMe migration BAR region */
     207                 :            : struct vfio_user_nvme_migr_state {
     208                 :            :         struct vfio_user_nvme_migr_header       ctrlr_header;
     209                 :            :         struct spdk_nvmf_ctrlr_migr_data        nvmf_data;
     210                 :            :         struct vfio_user_nvme_migr_qp           qps[NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR];
     211                 :            :         uint8_t                                 doorbells[NVMF_VFIO_USER_DOORBELLS_SIZE];
     212                 :            :         uint8_t                                 cfg[NVME_REG_CFG_SIZE];
     213                 :            : };
     214                 :            : 
     215                 :            : struct nvmf_vfio_user_req  {
     216                 :            :         struct spdk_nvmf_request                req;
     217                 :            :         struct spdk_nvme_cpl                    rsp;
     218                 :            :         struct spdk_nvme_cmd                    cmd;
     219                 :            : 
     220                 :            :         enum nvmf_vfio_user_req_state           state;
     221                 :            :         nvmf_vfio_user_req_cb_fn                cb_fn;
     222                 :            :         void                                    *cb_arg;
     223                 :            : 
     224                 :            :         /* old CC before prop_set_cc fabric command */
     225                 :            :         union spdk_nvme_cc_register             cc;
     226                 :            : 
     227                 :            :         TAILQ_ENTRY(nvmf_vfio_user_req)         link;
     228                 :            : 
     229                 :            :         struct iovec                            iov[NVMF_VFIO_USER_MAX_IOVECS];
     230                 :            :         uint8_t                                 iovcnt;
     231                 :            : 
     232                 :            :         /* NVMF_VFIO_USER_MAX_IOVECS worth of dma_sg_t. */
     233                 :            :         uint8_t                                 sg[];
     234                 :            : };
     235                 :            : 
     236                 :            : #define MAP_R                   (0)
     237                 :            : #define MAP_RW                  (1 << 0)
     238                 :            : #define MAP_INITIALIZE          (1 << 1)
     239                 :            : #define MAP_QUIET               (1 << 2)
     240                 :            : 
     241                 :            : /*
     242                 :            :  * Mapping of an NVMe queue.
     243                 :            :  *
     244                 :            :  * This holds the information tracking a local process mapping of an NVMe queue
     245                 :            :  * shared by the client.
     246                 :            :  */
     247                 :            : struct nvme_q_mapping {
     248                 :            :         /* iov of local process mapping. */
     249                 :            :         struct iovec iov;
     250                 :            :         /* Stored sg, needed for unmap. */
     251                 :            :         dma_sg_t *sg;
     252                 :            :         /* Client PRP of queue. */
     253                 :            :         uint64_t prp1;
     254                 :            :         /* Total length in bytes. */
     255                 :            :         uint64_t len;
     256                 :            : };
     257                 :            : 
     258                 :            : enum nvmf_vfio_user_sq_state {
     259                 :            :         VFIO_USER_SQ_UNUSED = 0,
     260                 :            :         VFIO_USER_SQ_CREATED,
     261                 :            :         VFIO_USER_SQ_DELETED,
     262                 :            :         VFIO_USER_SQ_ACTIVE,
     263                 :            :         VFIO_USER_SQ_INACTIVE
     264                 :            : };
     265                 :            : 
     266                 :            : enum nvmf_vfio_user_cq_state {
     267                 :            :         VFIO_USER_CQ_UNUSED = 0,
     268                 :            :         VFIO_USER_CQ_CREATED,
     269                 :            :         VFIO_USER_CQ_DELETED,
     270                 :            : };
     271                 :            : 
     272                 :            : enum nvmf_vfio_user_ctrlr_state {
     273                 :            :         VFIO_USER_CTRLR_CREATING = 0,
     274                 :            :         VFIO_USER_CTRLR_RUNNING,
     275                 :            :         /* Quiesce requested by libvfio-user */
     276                 :            :         VFIO_USER_CTRLR_PAUSING,
     277                 :            :         /* NVMf subsystem is paused, it's safe to do PCI reset, memory register,
     278                 :            :          * memory unergister, and vfio migration state transition in this state.
     279                 :            :          */
     280                 :            :         VFIO_USER_CTRLR_PAUSED,
     281                 :            :         /*
     282                 :            :          * Implies that the NVMf subsystem is paused. Device will be unquiesced (PCI
     283                 :            :          * reset, memory register and unregister, controller in destination VM has
     284                 :            :          * been restored).  NVMf subsystem resume has been requested.
     285                 :            :          */
     286                 :            :         VFIO_USER_CTRLR_RESUMING,
     287                 :            :         /*
     288                 :            :          * Implies that the NVMf subsystem is paused. Both controller in source VM and
     289                 :            :          * destinatiom VM is in this state when doing live migration.
     290                 :            :          */
     291                 :            :         VFIO_USER_CTRLR_MIGRATING
     292                 :            : };
     293                 :            : 
     294                 :            : struct nvmf_vfio_user_sq {
     295                 :            :         struct spdk_nvmf_qpair                  qpair;
     296                 :            :         struct spdk_nvmf_transport_poll_group   *group;
     297                 :            :         struct nvmf_vfio_user_ctrlr             *ctrlr;
     298                 :            : 
     299                 :            :         uint32_t                                qid;
     300                 :            :         /* Number of entries in queue. */
     301                 :            :         uint32_t                                size;
     302                 :            :         struct nvme_q_mapping                   mapping;
     303                 :            :         enum nvmf_vfio_user_sq_state            sq_state;
     304                 :            : 
     305                 :            :         uint32_t                                head;
     306                 :            :         volatile uint32_t                       *dbl_tailp;
     307                 :            : 
     308                 :            :         /* Whether a shadow doorbell eventidx needs setting. */
     309                 :            :         bool                                    need_rearm;
     310                 :            : 
     311                 :            :         /* multiple SQs can be mapped to the same CQ */
     312                 :            :         uint16_t                                cqid;
     313                 :            : 
     314                 :            :         /* handle_queue_connect_rsp() can be used both for CREATE IO SQ response
     315                 :            :          * and SQ re-connect response in the destination VM, for the prior case,
     316                 :            :          * we will post a NVMe completion to VM, we will not set this flag when
     317                 :            :          * re-connecting SQs in the destination VM.
     318                 :            :          */
     319                 :            :         bool                                    post_create_io_sq_completion;
     320                 :            :         /* Copy of Create IO SQ command, this field is used together with
     321                 :            :          * `post_create_io_sq_completion` flag.
     322                 :            :          */
     323                 :            :         struct spdk_nvme_cmd                    create_io_sq_cmd;
     324                 :            : 
     325                 :            :         struct vfio_user_delete_sq_ctx          *delete_ctx;
     326                 :            : 
     327                 :            :         /* Currently unallocated reqs. */
     328                 :            :         TAILQ_HEAD(, nvmf_vfio_user_req)        free_reqs;
     329                 :            :         /* Poll group entry */
     330                 :            :         TAILQ_ENTRY(nvmf_vfio_user_sq)          link;
     331                 :            :         /* Connected SQ entry */
     332                 :            :         TAILQ_ENTRY(nvmf_vfio_user_sq)          tailq;
     333                 :            : };
     334                 :            : 
     335                 :            : struct nvmf_vfio_user_cq {
     336                 :            :         struct spdk_nvmf_transport_poll_group   *group;
     337                 :            :         int                                     cq_ref;
     338                 :            : 
     339                 :            :         uint32_t                                qid;
     340                 :            :         /* Number of entries in queue. */
     341                 :            :         uint32_t                                size;
     342                 :            :         struct nvme_q_mapping                   mapping;
     343                 :            :         enum nvmf_vfio_user_cq_state            cq_state;
     344                 :            : 
     345                 :            :         uint32_t                                tail;
     346                 :            :         volatile uint32_t                       *dbl_headp;
     347                 :            : 
     348                 :            :         bool                                    phase;
     349                 :            : 
     350                 :            :         uint16_t                                iv;
     351                 :            :         bool                                    ien;
     352                 :            : 
     353                 :            :         uint32_t                                last_head;
     354                 :            :         uint32_t                                last_trigger_irq_tail;
     355                 :            : };
     356                 :            : 
     357                 :            : struct nvmf_vfio_user_poll_group {
     358                 :            :         struct spdk_nvmf_transport_poll_group   group;
     359                 :            :         TAILQ_ENTRY(nvmf_vfio_user_poll_group)  link;
     360                 :            :         TAILQ_HEAD(, nvmf_vfio_user_sq)         sqs;
     361                 :            :         struct spdk_interrupt                   *intr;
     362                 :            :         int                                     intr_fd;
     363                 :            :         struct {
     364                 :            : 
     365                 :            :                 /*
     366                 :            :                  * ctrlr_intr and ctrlr_kicks will be zero for all other poll
     367                 :            :                  * groups. However, they can be zero even for the poll group
     368                 :            :                  * the controller belongs are if no vfio-user message has been
     369                 :            :                  * received or the controller hasn't been kicked yet.
     370                 :            :                  */
     371                 :            : 
     372                 :            :                 /*
     373                 :            :                  * Number of times vfio_user_ctrlr_intr() has run:
     374                 :            :                  * vfio-user file descriptor has been ready or explicitly
     375                 :            :                  * kicked (see below).
     376                 :            :                  */
     377                 :            :                 uint64_t ctrlr_intr;
     378                 :            : 
     379                 :            :                 /*
     380                 :            :                  * Kicks to the controller by ctrlr_kick().
     381                 :            :                  * ctrlr_intr - ctrlr_kicks is the number of times the
     382                 :            :                  * vfio-user poll file descriptor has been ready.
     383                 :            :                  */
     384                 :            :                 uint64_t ctrlr_kicks;
     385                 :            : 
     386                 :            :                 /*
     387                 :            :                  * How many times we won the race arming an SQ.
     388                 :            :                  */
     389                 :            :                 uint64_t won;
     390                 :            : 
     391                 :            :                 /*
     392                 :            :                  * How many times we lost the race arming an SQ
     393                 :            :                  */
     394                 :            :                 uint64_t lost;
     395                 :            : 
     396                 :            :                 /*
     397                 :            :                  * How many requests we processed in total each time we lost
     398                 :            :                  * the rearm race.
     399                 :            :                  */
     400                 :            :                 uint64_t lost_count;
     401                 :            : 
     402                 :            :                 /*
     403                 :            :                  * Number of attempts we attempted to rearm all the SQs in the
     404                 :            :                  * poll group.
     405                 :            :                  */
     406                 :            :                 uint64_t rearms;
     407                 :            : 
     408                 :            :                 uint64_t pg_process_count;
     409                 :            :                 uint64_t intr;
     410                 :            :                 uint64_t polls;
     411                 :            :                 uint64_t polls_spurious;
     412                 :            :                 uint64_t poll_reqs;
     413                 :            :                 uint64_t poll_reqs_squared;
     414                 :            :                 uint64_t cqh_admin_writes;
     415                 :            :                 uint64_t cqh_io_writes;
     416                 :            :         } stats;
     417                 :            : };
     418                 :            : 
     419                 :            : struct nvmf_vfio_user_shadow_doorbells {
     420                 :            :         volatile uint32_t                       *shadow_doorbells;
     421                 :            :         volatile uint32_t                       *eventidxs;
     422                 :            :         dma_sg_t                                *sgs;
     423                 :            :         struct iovec                            *iovs;
     424                 :            : };
     425                 :            : 
     426                 :            : struct nvmf_vfio_user_ctrlr {
     427                 :            :         struct nvmf_vfio_user_endpoint          *endpoint;
     428                 :            :         struct nvmf_vfio_user_transport         *transport;
     429                 :            : 
     430                 :            :         /* Connected SQs list */
     431                 :            :         TAILQ_HEAD(, nvmf_vfio_user_sq)         connected_sqs;
     432                 :            :         enum nvmf_vfio_user_ctrlr_state         state;
     433                 :            : 
     434                 :            :         /*
     435                 :            :          * Tells whether live migration data have been prepared. This is used
     436                 :            :          * by the get_pending_bytes callback to tell whether or not the
     437                 :            :          * previous iteration finished.
     438                 :            :          */
     439                 :            :         bool migr_data_prepared;
     440                 :            : 
     441                 :            :         /* Controller is in source VM when doing live migration */
     442                 :            :         bool                                    in_source_vm;
     443                 :            : 
     444                 :            :         struct spdk_thread                      *thread;
     445                 :            :         struct spdk_poller                      *vfu_ctx_poller;
     446                 :            :         struct spdk_interrupt                   *intr;
     447                 :            :         int                                     intr_fd;
     448                 :            : 
     449                 :            :         bool                                    queued_quiesce;
     450                 :            : 
     451                 :            :         bool                                    reset_shn;
     452                 :            :         bool                                    disconnect;
     453                 :            : 
     454                 :            :         uint16_t                                cntlid;
     455                 :            :         struct spdk_nvmf_ctrlr                  *ctrlr;
     456                 :            : 
     457                 :            :         struct nvmf_vfio_user_sq                *sqs[NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR];
     458                 :            :         struct nvmf_vfio_user_cq                *cqs[NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR];
     459                 :            : 
     460                 :            :         TAILQ_ENTRY(nvmf_vfio_user_ctrlr)       link;
     461                 :            : 
     462                 :            :         volatile uint32_t                       *bar0_doorbells;
     463                 :            :         struct nvmf_vfio_user_shadow_doorbells  *sdbl;
     464                 :            :         /*
     465                 :            :          * Shadow doorbells PRPs to provide during the stop-and-copy state.
     466                 :            :          */
     467                 :            :         uint64_t                                shadow_doorbell_buffer;
     468                 :            :         uint64_t                                eventidx_buffer;
     469                 :            : 
     470                 :            :         bool                                    adaptive_irqs_enabled;
     471                 :            : };
     472                 :            : 
     473                 :            : /* Endpoint in vfio-user is associated with a socket file, which
     474                 :            :  * is the representative of a PCI endpoint.
     475                 :            :  */
     476                 :            : struct nvmf_vfio_user_endpoint {
     477                 :            :         struct nvmf_vfio_user_transport         *transport;
     478                 :            :         vfu_ctx_t                               *vfu_ctx;
     479                 :            :         struct spdk_poller                      *accept_poller;
     480                 :            :         struct spdk_thread                      *accept_thread;
     481                 :            :         bool                                    interrupt_mode;
     482                 :            :         struct msixcap                          *msix;
     483                 :            :         vfu_pci_config_space_t                  *pci_config_space;
     484                 :            :         int                                     devmem_fd;
     485                 :            :         int                                     accept_intr_fd;
     486                 :            :         struct spdk_interrupt                   *accept_intr;
     487                 :            : 
     488                 :            :         volatile uint32_t                       *bar0_doorbells;
     489                 :            : 
     490                 :            :         int                                     migr_fd;
     491                 :            :         void                                    *migr_data;
     492                 :            : 
     493                 :            :         struct spdk_nvme_transport_id           trid;
     494                 :            :         struct spdk_nvmf_subsystem              *subsystem;
     495                 :            : 
     496                 :            :         /* Controller is associated with an active socket connection,
     497                 :            :          * the lifecycle of the controller is same as the VM.
     498                 :            :          * Currently we only support one active connection, as the NVMe
     499                 :            :          * specification defines, we may support multiple controllers in
     500                 :            :          * future, so that it can support e.g: RESERVATION.
     501                 :            :          */
     502                 :            :         struct nvmf_vfio_user_ctrlr             *ctrlr;
     503                 :            :         pthread_mutex_t                         lock;
     504                 :            : 
     505                 :            :         bool                                    need_async_destroy;
     506                 :            :         /* The subsystem is in PAUSED state and need to be resumed, TRUE
     507                 :            :          * only when migration is done successfully and the controller is
     508                 :            :          * in source VM.
     509                 :            :          */
     510                 :            :         bool                                    need_resume;
     511                 :            :         /* Start the accept poller again after destroying the controller */
     512                 :            :         bool                                    need_relisten;
     513                 :            : 
     514                 :            :         TAILQ_ENTRY(nvmf_vfio_user_endpoint)    link;
     515                 :            : };
     516                 :            : 
     517                 :            : struct nvmf_vfio_user_transport_opts {
     518                 :            :         bool                                    disable_mappable_bar0;
     519                 :            :         bool                                    disable_adaptive_irq;
     520                 :            :         bool                                    disable_shadow_doorbells;
     521                 :            :         bool                                    disable_compare;
     522                 :            :         bool                                    enable_intr_mode_sq_spreading;
     523                 :            : };
     524                 :            : 
     525                 :            : struct nvmf_vfio_user_transport {
     526                 :            :         struct spdk_nvmf_transport              transport;
     527                 :            :         struct nvmf_vfio_user_transport_opts    transport_opts;
     528                 :            :         bool                                    intr_mode_supported;
     529                 :            :         pthread_mutex_t                         lock;
     530                 :            :         TAILQ_HEAD(, nvmf_vfio_user_endpoint)   endpoints;
     531                 :            : 
     532                 :            :         pthread_mutex_t                         pg_lock;
     533                 :            :         TAILQ_HEAD(, nvmf_vfio_user_poll_group) poll_groups;
     534                 :            :         struct nvmf_vfio_user_poll_group        *next_pg;
     535                 :            : };
     536                 :            : 
     537                 :            : /*
     538                 :            :  * function prototypes
     539                 :            :  */
     540                 :            : static int nvmf_vfio_user_req_free(struct spdk_nvmf_request *req);
     541                 :            : 
     542                 :            : static struct nvmf_vfio_user_req *get_nvmf_vfio_user_req(struct nvmf_vfio_user_sq *sq);
     543                 :            : 
     544                 :            : /*
     545                 :            :  * Local process virtual address of a queue.
     546                 :            :  */
     547                 :            : static inline void *
     548                 :    7750683 : q_addr(struct nvme_q_mapping *mapping)
     549                 :            : {
     550   [ +  -  +  -  :    7750683 :         return mapping->iov.iov_base;
                   +  - ]
     551                 :            : }
     552                 :            : 
     553                 :            : static inline int
     554                 :        876 : queue_index(uint16_t qid, bool is_cq)
     555                 :            : {
     556   [ +  -  +  -  :        876 :         return (qid * 2) + is_cq;
                   +  - ]
     557                 :            : }
     558                 :            : 
     559                 :            : static inline volatile uint32_t *
     560                 :   96363493 : sq_headp(struct nvmf_vfio_user_sq *sq)
     561                 :            : {
     562   [ +  +  #  # ]:   96363493 :         assert(sq != NULL);
     563         [ +  - ]:   96363493 :         return &sq->head;
     564                 :            : }
     565                 :            : 
     566                 :            : static inline volatile uint32_t *
     567                 :   73989167 : sq_dbl_tailp(struct nvmf_vfio_user_sq *sq)
     568                 :            : {
     569   [ +  +  #  # ]:   73989167 :         assert(sq != NULL);
     570   [ +  -  +  - ]:   73989167 :         return sq->dbl_tailp;
     571                 :            : }
     572                 :            : 
     573                 :            : static inline volatile uint32_t *
     574                 :      44321 : cq_dbl_headp(struct nvmf_vfio_user_cq *cq)
     575                 :            : {
     576   [ +  +  #  # ]:      44321 :         assert(cq != NULL);
     577   [ +  -  +  - ]:      44321 :         return cq->dbl_headp;
     578                 :            : }
     579                 :            : 
     580                 :            : static inline volatile uint32_t *
     581                 :   41587887 : cq_tailp(struct nvmf_vfio_user_cq *cq)
     582                 :            : {
     583   [ +  +  #  # ]:   41587887 :         assert(cq != NULL);
     584         [ +  - ]:   41587887 :         return &cq->tail;
     585                 :            : }
     586                 :            : 
     587                 :            : static inline void
     588                 :    3649185 : sq_head_advance(struct nvmf_vfio_user_sq *sq)
     589                 :            : {
     590   [ +  +  #  # ]:    3649185 :         assert(sq != NULL);
     591                 :            : 
     592   [ +  +  +  -  :    3649185 :         assert(*sq_headp(sq) < sq->size);
             +  -  #  # ]
     593                 :    3649185 :         (*sq_headp(sq))++;
     594                 :            : 
     595   [ +  +  +  -  :    3649185 :         if (spdk_unlikely(*sq_headp(sq) == sq->size)) {
                   +  + ]
     596                 :      14778 :                 *sq_headp(sq) = 0;
     597                 :       1097 :         }
     598                 :    3649185 : }
     599                 :            : 
     600                 :            : static inline void
     601                 :    3649005 : cq_tail_advance(struct nvmf_vfio_user_cq *cq)
     602                 :            : {
     603   [ +  +  #  # ]:    3649005 :         assert(cq != NULL);
     604                 :            : 
     605   [ +  +  +  -  :    3649005 :         assert(*cq_tailp(cq) < cq->size);
             +  -  #  # ]
     606                 :    3649005 :         (*cq_tailp(cq))++;
     607                 :            : 
     608   [ +  +  +  -  :    3649005 :         if (spdk_unlikely(*cq_tailp(cq) == cq->size)) {
                   +  + ]
     609                 :      14778 :                 *cq_tailp(cq) = 0;
     610   [ +  +  +  -  :      14778 :                 cq->phase = !cq->phase;
          +  -  +  -  +  
                      - ]
     611                 :       1097 :         }
     612                 :    3649005 : }
     613                 :            : 
     614                 :            : static bool
     615                 :       3809 : io_q_exists(struct nvmf_vfio_user_ctrlr *vu_ctrlr, const uint16_t qid, const bool is_cq)
     616                 :            : {
     617   [ +  +  #  # ]:       3809 :         assert(vu_ctrlr != NULL);
     618                 :            : 
     619   [ +  +  +  + ]:       3809 :         if (qid == 0 || qid >= NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR) {
     620                 :       2833 :                 return false;
     621                 :            :         }
     622                 :            : 
     623   [ +  +  +  + ]:        976 :         if (is_cq) {
     624   [ +  +  +  -  :        583 :                 if (vu_ctrlr->cqs[qid] == NULL) {
          +  -  +  -  +  
                      + ]
     625                 :        203 :                         return false;
     626                 :            :                 }
     627                 :            : 
     628   [ +  +  +  -  :        755 :                 return (vu_ctrlr->cqs[qid]->cq_state != VFIO_USER_CQ_DELETED &&
          +  -  +  -  +  
             -  +  -  -  
                      + ]
     629   [ +  +  +  -  :        375 :                         vu_ctrlr->cqs[qid]->cq_state != VFIO_USER_CQ_UNUSED);
          +  -  +  -  +  
                -  +  - ]
     630                 :            :         }
     631                 :            : 
     632   [ +  +  +  -  :        393 :         if (vu_ctrlr->sqs[qid] == NULL) {
          +  -  +  -  +  
                      + ]
     633                 :        202 :                 return false;
     634                 :            :         }
     635                 :            : 
     636   [ +  +  +  -  :        367 :         return (vu_ctrlr->sqs[qid]->sq_state != VFIO_USER_SQ_DELETED &&
          +  -  +  -  +  
             -  +  -  -  
                      + ]
     637   [ +  -  +  -  :        176 :                 vu_ctrlr->sqs[qid]->sq_state != VFIO_USER_SQ_UNUSED);
          +  -  +  -  +  
                -  +  - ]
     638                 :         35 : }
     639                 :            : 
     640                 :            : static char *
     641                 :    2137034 : endpoint_id(struct nvmf_vfio_user_endpoint *endpoint)
     642                 :            : {
     643   [ +  -  +  - ]:    2137034 :         return endpoint->trid.traddr;
     644                 :            : }
     645                 :            : 
     646                 :            : static char *
     647                 :    2136856 : ctrlr_id(struct nvmf_vfio_user_ctrlr *ctrlr)
     648                 :            : {
     649   [ +  -  +  +  :    2136856 :         if (!ctrlr || !ctrlr->endpoint) {
             +  -  -  + ]
     650                 :          0 :                 return "Null Ctrlr";
     651                 :            :         }
     652                 :            : 
     653   [ +  -  +  - ]:    2136856 :         return endpoint_id(ctrlr->endpoint);
     654                 :         14 : }
     655                 :            : 
     656                 :            : /* Return the poll group for the admin queue of the controller. */
     657                 :            : static inline struct nvmf_vfio_user_poll_group *
     658                 :          0 : ctrlr_to_poll_group(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
     659                 :            : {
     660   [ #  #  #  #  :          0 :         return SPDK_CONTAINEROF(vu_ctrlr->sqs[0]->group,
          #  #  #  #  #  
                #  #  # ]
     661                 :            :                                 struct nvmf_vfio_user_poll_group,
     662                 :            :                                 group);
     663                 :            : }
     664                 :            : 
     665                 :            : static inline struct spdk_thread *
     666                 :        944 : poll_group_to_thread(struct nvmf_vfio_user_poll_group *vu_pg)
     667                 :            : {
     668   [ #  #  #  #  :        944 :         return vu_pg->group.group->thread;
          #  #  #  #  #  
                      # ]
     669                 :            : }
     670                 :            : 
     671                 :            : static dma_sg_t *
     672                 :    4791980 : index_to_sg_t(void *arr, size_t i)
     673                 :            : {
     674                 :    4791980 :         return (dma_sg_t *)((uintptr_t)arr + i * dma_sg_size());
     675                 :            : }
     676                 :            : 
     677                 :            : static inline size_t
     678                 :        155 : vfio_user_migr_data_len(void)
     679                 :            : {
     680   [ +  -  +  - ]:        155 :         return SPDK_ALIGN_CEIL(sizeof(struct vfio_user_nvme_migr_state), PAGE_SIZE);
     681                 :            : }
     682                 :            : 
     683                 :            : static inline bool
     684                 :        612 : in_interrupt_mode(struct nvmf_vfio_user_transport *vu_transport)
     685                 :            : {
     686         [ +  + ]:        620 :         return spdk_interrupt_mode_is_enabled() &&
     687   [ -  +  +  -  :          8 :                vu_transport->intr_mode_supported;
                   #  # ]
     688                 :            : }
     689                 :            : 
     690                 :            : static int vfio_user_ctrlr_intr(void *ctx);
     691                 :            : 
     692                 :            : static void
     693                 :          0 : vfio_user_msg_ctrlr_intr(void *ctx)
     694                 :            : {
     695                 :          0 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = ctx;
     696                 :          0 :         struct nvmf_vfio_user_poll_group *vu_ctrlr_group = ctrlr_to_poll_group(vu_ctrlr);
     697                 :            : 
     698   [ #  #  #  # ]:          0 :         vu_ctrlr_group->stats.ctrlr_kicks++;
     699                 :            : 
     700                 :          0 :         vfio_user_ctrlr_intr(ctx);
     701                 :          0 : }
     702                 :            : 
     703                 :            : /*
     704                 :            :  * Kick (force a wakeup) of all poll groups for this controller.
     705                 :            :  * vfio_user_ctrlr_intr() itself arranges for kicking other poll groups if
     706                 :            :  * needed.
     707                 :            :  */
     708                 :            : static void
     709                 :          0 : ctrlr_kick(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
     710                 :            : {
     711                 :            :         struct nvmf_vfio_user_poll_group *vu_ctrlr_group;
     712                 :            : 
     713   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db, "%s: kicked\n", ctrlr_id(vu_ctrlr));
                   #  # ]
     714                 :            : 
     715                 :          0 :         vu_ctrlr_group = ctrlr_to_poll_group(vu_ctrlr);
     716                 :            : 
     717                 :          0 :         spdk_thread_send_msg(poll_group_to_thread(vu_ctrlr_group),
     718                 :          0 :                              vfio_user_msg_ctrlr_intr, vu_ctrlr);
     719                 :          0 : }
     720                 :            : 
     721                 :            : /*
     722                 :            :  * Make the given DMA address and length available (locally mapped) via iov.
     723                 :            :  */
     724                 :            : static void *
     725                 :    2953262 : map_one(vfu_ctx_t *ctx, uint64_t addr, uint64_t len, dma_sg_t *sg,
     726                 :            :         struct iovec *iov, int32_t flags)
     727                 :            : {
     728                 :    2953262 :         int prot = PROT_READ;
     729                 :            :         int ret;
     730                 :            : 
     731   [ +  +  +  -  :    2953262 :         if (flags & MAP_RW) {
                   +  + ]
     732                 :    2949400 :                 prot |= PROT_WRITE;
     733                 :     141004 :         }
     734                 :            : 
     735   [ +  +  #  # ]:    2953262 :         assert(ctx != NULL);
     736   [ +  +  #  # ]:    2953262 :         assert(sg != NULL);
     737   [ +  +  #  # ]:    2953262 :         assert(iov != NULL);
     738                 :            : 
     739                 :    2953262 :         ret = vfu_addr_to_sgl(ctx, (void *)(uintptr_t)addr, len, sg, 1, prot);
     740         [ +  + ]:    2953262 :         if (ret < 0) {
     741         [ +  - ]:    1049593 :                 if (ret == -1) {
     742   [ +  +  #  #  :    1049593 :                         if (!(flags & MAP_QUIET)) {
                   #  # ]
     743                 :    1049543 :                                 SPDK_ERRLOG("failed to translate IOVA [%#lx, %#lx) (prot=%d) to local VA: %m\n",
     744                 :            :                                             addr, addr + len, prot);
     745                 :          0 :                         }
     746                 :          0 :                 } else {
     747   [ #  #  #  # ]:          0 :                         SPDK_ERRLOG("failed to translate IOVA [%#lx, %#lx) (prot=%d) to local VA: %d segments needed\n",
     748                 :            :                                     addr, addr + len, prot, -(ret + 1));
     749                 :            :                 }
     750                 :    1049593 :                 return NULL;
     751                 :            :         }
     752                 :            : 
     753                 :    1903669 :         ret = vfu_sgl_get(ctx, sg, iov, 1, 0);
     754         [ -  + ]:    1903669 :         if (ret != 0) {
     755                 :          0 :                 SPDK_ERRLOG("failed to get iovec for IOVA [%#lx, %#lx): %m\n",
     756                 :            :                             addr, addr + len);
     757                 :          0 :                 return NULL;
     758                 :            :         }
     759                 :            : 
     760   [ +  +  +  -  :    1903669 :         assert(iov->iov_base != NULL);
             +  -  #  # ]
     761   [ +  -  +  - ]:    1903669 :         return iov->iov_base;
     762                 :     141018 : }
     763                 :            : 
     764                 :            : static int
     765                 :    1061354 : nvme_cmd_map_prps(void *prv, struct spdk_nvme_cmd *cmd, struct iovec *iovs,
     766                 :            :                   uint32_t max_iovcnt, uint32_t len, size_t mps,
     767                 :            :                   void *(*gpa_to_vva)(void *prv, uint64_t addr, uint64_t len, uint32_t flags))
     768                 :            : {
     769                 :            :         uint64_t prp1, prp2;
     770                 :            :         void *vva;
     771                 :            :         uint32_t i;
     772                 :            :         uint32_t residue_len, nents;
     773                 :            :         uint64_t *prp_list;
     774                 :            :         uint32_t iovcnt;
     775                 :            : 
     776   [ +  +  #  # ]:    1061354 :         assert(max_iovcnt > 0);
     777                 :            : 
     778   [ +  -  +  -  :    1061354 :         prp1 = cmd->dptr.prp.prp1;
             +  -  +  - ]
     779   [ +  -  +  -  :    1061354 :         prp2 = cmd->dptr.prp.prp2;
             +  -  +  - ]
     780                 :            : 
     781                 :            :         /* PRP1 may started with unaligned page address */
     782         [ +  + ]:    1061354 :         residue_len = mps - (prp1 % mps);
     783         [ -  + ]:    1061354 :         residue_len = spdk_min(len, residue_len);
     784                 :            : 
     785   [ -  +  +  -  :    1061354 :         vva = gpa_to_vva(prv, prp1, residue_len, MAP_RW);
             -  +  +  - ]
     786         [ +  + ]:    1061354 :         if (spdk_unlikely(vva == NULL)) {
     787                 :    1049543 :                 SPDK_ERRLOG("GPA to VVA failed\n");
     788                 :    1049543 :                 return -EINVAL;
     789                 :            :         }
     790                 :      11811 :         len -= residue_len;
     791   [ +  +  -  + ]:      11811 :         if (len && max_iovcnt < 2) {
     792                 :          0 :                 SPDK_ERRLOG("Too many page entries, at least two iovs are required\n");
     793                 :          0 :                 return -ERANGE;
     794                 :            :         }
     795   [ +  -  +  -  :      11811 :         iovs[0].iov_base = vva;
                   +  - ]
     796   [ +  -  +  -  :      11811 :         iovs[0].iov_len = residue_len;
                   +  - ]
     797                 :            : 
     798         [ +  + ]:      11811 :         if (len) {
     799         [ +  + ]:       5696 :                 if (spdk_unlikely(prp2 == 0)) {
     800                 :          1 :                         SPDK_ERRLOG("no PRP2, %d remaining\n", len);
     801                 :          1 :                         return -EINVAL;
     802                 :            :                 }
     803                 :            : 
     804         [ +  + ]:       5695 :                 if (len <= mps) {
     805                 :            :                         /* 2 PRP used */
     806                 :       2171 :                         iovcnt = 2;
     807   [ #  #  #  #  :       2171 :                         vva = gpa_to_vva(prv, prp2, len, MAP_RW);
             #  #  #  # ]
     808         [ -  + ]:       2171 :                         if (spdk_unlikely(vva == NULL)) {
     809                 :          0 :                                 SPDK_ERRLOG("no VVA for %#" PRIx64 ", len%#x\n",
     810                 :            :                                             prp2, len);
     811                 :          0 :                                 return -EINVAL;
     812                 :            :                         }
     813   [ #  #  #  #  :       2171 :                         iovs[1].iov_base = vva;
                   #  # ]
     814   [ #  #  #  #  :       2171 :                         iovs[1].iov_len = len;
                   #  # ]
     815                 :          0 :                 } else {
     816                 :            :                         /* PRP list used */
     817         [ -  + ]:       3524 :                         nents = (len + mps - 1) / mps;
     818         [ -  + ]:       3524 :                         if (spdk_unlikely(nents + 1 > max_iovcnt)) {
     819                 :          0 :                                 SPDK_ERRLOG("Too many page entries\n");
     820                 :          0 :                                 return -ERANGE;
     821                 :            :                         }
     822                 :            : 
     823   [ #  #  #  # ]:       3524 :                         vva = gpa_to_vva(prv, prp2, nents * sizeof(*prp_list), MAP_R);
     824         [ -  + ]:       3524 :                         if (spdk_unlikely(vva == NULL)) {
     825                 :          0 :                                 SPDK_ERRLOG("no VVA for %#" PRIx64 ", nents=%#x\n",
     826                 :            :                                             prp2, nents);
     827                 :          0 :                                 return -EINVAL;
     828                 :            :                         }
     829                 :       3524 :                         prp_list = vva;
     830                 :       3524 :                         i = 0;
     831         [ +  + ]:      61515 :                         while (len != 0) {
     832         [ #  # ]:      57991 :                                 residue_len = spdk_min(len, mps);
     833   [ #  #  #  #  :      57991 :                                 vva = gpa_to_vva(prv, prp_list[i], residue_len, MAP_RW);
          #  #  #  #  #  
                #  #  # ]
     834         [ -  + ]:      57991 :                                 if (spdk_unlikely(vva == NULL)) {
     835   [ #  #  #  # ]:          0 :                                         SPDK_ERRLOG("no VVA for %#" PRIx64 ", residue_len=%#x\n",
     836                 :            :                                                     prp_list[i], residue_len);
     837                 :          0 :                                         return -EINVAL;
     838                 :            :                                 }
     839   [ #  #  #  #  :      57991 :                                 iovs[i + 1].iov_base = vva;
                   #  # ]
     840   [ #  #  #  #  :      57991 :                                 iovs[i + 1].iov_len = residue_len;
                   #  # ]
     841                 :      57991 :                                 len -= residue_len;
     842                 :      57991 :                                 i++;
     843                 :            :                         }
     844                 :       3524 :                         iovcnt = i + 1;
     845                 :            :                 }
     846                 :          0 :         } else {
     847                 :            :                 /* 1 PRP used */
     848                 :       6115 :                 iovcnt = 1;
     849                 :            :         }
     850                 :            : 
     851   [ +  +  #  # ]:      11810 :         assert(iovcnt <= max_iovcnt);
     852                 :      11810 :         return iovcnt;
     853                 :         28 : }
     854                 :            : 
     855                 :            : static int
     856                 :         72 : nvme_cmd_map_sgls_data(void *prv, struct spdk_nvme_sgl_descriptor *sgls, uint32_t num_sgls,
     857                 :            :                        struct iovec *iovs, uint32_t max_iovcnt,
     858                 :            :                        void *(*gpa_to_vva)(void *prv, uint64_t addr, uint64_t len, uint32_t flags))
     859                 :            : {
     860                 :            :         uint32_t i;
     861                 :            :         void *vva;
     862                 :            : 
     863         [ -  + ]:         72 :         if (spdk_unlikely(max_iovcnt < num_sgls)) {
     864                 :          0 :                 return -ERANGE;
     865                 :            :         }
     866                 :            : 
     867         [ +  + ]:        229 :         for (i = 0; i < num_sgls; i++) {
     868   [ -  +  #  #  :        157 :                 if (spdk_unlikely(sgls[i].unkeyed.type != SPDK_NVME_SGL_TYPE_DATA_BLOCK)) {
          #  #  #  #  #  
                      # ]
     869   [ #  #  #  #  :          0 :                         SPDK_ERRLOG("Invalid SGL type %u\n", sgls[i].unkeyed.type);
             #  #  #  # ]
     870                 :          0 :                         return -EINVAL;
     871                 :            :                 }
     872   [ #  #  #  #  :        157 :                 vva = gpa_to_vva(prv, sgls[i].address, sgls[i].unkeyed.length, MAP_RW);
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  #  
                      # ]
     873         [ -  + ]:        157 :                 if (spdk_unlikely(vva == NULL)) {
     874                 :          0 :                         SPDK_ERRLOG("GPA to VVA failed\n");
     875                 :          0 :                         return -EINVAL;
     876                 :            :                 }
     877   [ #  #  #  #  :        157 :                 iovs[i].iov_base = vva;
                   #  # ]
     878   [ #  #  #  #  :        157 :                 iovs[i].iov_len = sgls[i].unkeyed.length;
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     879                 :          0 :         }
     880                 :            : 
     881                 :         72 :         return num_sgls;
     882                 :          0 : }
     883                 :            : 
     884                 :            : static int
     885                 :    1827486 : nvme_cmd_map_sgls(void *prv, struct spdk_nvme_cmd *cmd, struct iovec *iovs, uint32_t max_iovcnt,
     886                 :            :                   uint32_t len, size_t mps,
     887                 :            :                   void *(*gpa_to_vva)(void *prv, uint64_t addr, uint64_t len, uint32_t flags))
     888                 :            : {
     889                 :            :         struct spdk_nvme_sgl_descriptor *sgl, *last_sgl;
     890                 :            :         uint32_t num_sgls, seg_len;
     891                 :            :         void *vva;
     892                 :            :         int ret;
     893                 :    1827486 :         uint32_t total_iovcnt = 0;
     894                 :            : 
     895                 :            :         /* SGL cases */
     896   [ +  -  +  - ]:    1827486 :         sgl = &cmd->dptr.sgl1;
     897                 :            : 
     898                 :            :         /* only one SGL segment */
     899   [ +  +  +  -  :    1827486 :         if (sgl->unkeyed.type == SPDK_NVME_SGL_TYPE_DATA_BLOCK) {
             +  -  -  + ]
     900   [ +  +  #  # ]:    1827414 :                 assert(max_iovcnt > 0);
     901   [ -  +  +  -  :    1827414 :                 vva = gpa_to_vva(prv, sgl->address, sgl->unkeyed.length, MAP_RW);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  +  
                      - ]
     902         [ -  + ]:    1827414 :                 if (spdk_unlikely(vva == NULL)) {
     903                 :          0 :                         SPDK_ERRLOG("GPA to VVA failed\n");
     904                 :          0 :                         return -EINVAL;
     905                 :            :                 }
     906   [ +  -  +  -  :    1827414 :                 iovs[0].iov_base = vva;
                   +  - ]
     907   [ +  -  +  -  :    1827414 :                 iovs[0].iov_len = sgl->unkeyed.length;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
     908   [ +  +  +  -  :    1827414 :                 assert(sgl->unkeyed.length == len);
          +  -  +  -  +  
                -  #  # ]
     909                 :            : 
     910                 :    1827414 :                 return 1;
     911                 :            :         }
     912                 :            : 
     913                 :          0 :         for (;;) {
     914   [ +  -  -  +  :         72 :                 if (spdk_unlikely((sgl->unkeyed.type != SPDK_NVME_SGL_TYPE_SEGMENT) &&
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     915                 :            :                                   (sgl->unkeyed.type != SPDK_NVME_SGL_TYPE_LAST_SEGMENT))) {
     916   [ #  #  #  #  :          0 :                         SPDK_ERRLOG("Invalid SGL type %u\n", sgl->unkeyed.type);
                   #  # ]
     917                 :          0 :                         return -EINVAL;
     918                 :            :                 }
     919                 :            : 
     920   [ #  #  #  #  :         72 :                 seg_len = sgl->unkeyed.length;
             #  #  #  # ]
     921   [ -  +  #  # ]:         72 :                 if (spdk_unlikely(seg_len % sizeof(struct spdk_nvme_sgl_descriptor))) {
     922                 :          0 :                         SPDK_ERRLOG("Invalid SGL segment len %u\n", seg_len);
     923                 :          0 :                         return -EINVAL;
     924                 :            :                 }
     925                 :            : 
     926         [ #  # ]:         72 :                 num_sgls = seg_len / sizeof(struct spdk_nvme_sgl_descriptor);
     927   [ #  #  #  #  :         72 :                 vva = gpa_to_vva(prv, sgl->address, sgl->unkeyed.length, MAP_R);
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     928         [ -  + ]:         72 :                 if (spdk_unlikely(vva == NULL)) {
     929                 :          0 :                         SPDK_ERRLOG("GPA to VVA failed\n");
     930                 :          0 :                         return -EINVAL;
     931                 :            :                 }
     932                 :            : 
     933                 :            :                 /* sgl point to the first segment */
     934                 :         72 :                 sgl = (struct spdk_nvme_sgl_descriptor *)vva;
     935         [ #  # ]:         72 :                 last_sgl = &sgl[num_sgls - 1];
     936                 :            : 
     937                 :            :                 /* we are done */
     938   [ +  -  #  #  :         72 :                 if (last_sgl->unkeyed.type == SPDK_NVME_SGL_TYPE_DATA_BLOCK) {
             #  #  #  # ]
     939                 :            :                         /* map whole sgl list */
     940         [ #  # ]:         72 :                         ret = nvme_cmd_map_sgls_data(prv, sgl, num_sgls, &iovs[total_iovcnt],
     941                 :          0 :                                                      max_iovcnt - total_iovcnt, gpa_to_vva);
     942         [ -  + ]:         72 :                         if (spdk_unlikely(ret < 0)) {
     943                 :          0 :                                 return ret;
     944                 :            :                         }
     945                 :         72 :                         total_iovcnt += ret;
     946                 :            : 
     947                 :         72 :                         return total_iovcnt;
     948                 :            :                 }
     949                 :            : 
     950         [ #  # ]:          0 :                 if (num_sgls > 1) {
     951                 :            :                         /* map whole sgl exclude last_sgl */
     952         [ #  # ]:          0 :                         ret = nvme_cmd_map_sgls_data(prv, sgl, num_sgls - 1, &iovs[total_iovcnt],
     953                 :          0 :                                                      max_iovcnt - total_iovcnt, gpa_to_vva);
     954         [ #  # ]:          0 :                         if (spdk_unlikely(ret < 0)) {
     955                 :          0 :                                 return ret;
     956                 :            :                         }
     957                 :          0 :                         total_iovcnt += ret;
     958                 :          0 :                 }
     959                 :            : 
     960                 :            :                 /* move to next level's segments */
     961                 :          0 :                 sgl = last_sgl;
     962                 :            :         }
     963                 :            : 
     964                 :            :         return 0;
     965                 :     140962 : }
     966                 :            : 
     967                 :            : static int
     968                 :    2888840 : nvme_map_cmd(void *prv, struct spdk_nvme_cmd *cmd, struct iovec *iovs, uint32_t max_iovcnt,
     969                 :            :              uint32_t len, size_t mps,
     970                 :            :              void *(*gpa_to_vva)(void *prv, uint64_t addr, uint64_t len, uint32_t flags))
     971                 :            : {
     972   [ +  +  +  + ]:    2888840 :         if (cmd->psdt == SPDK_NVME_PSDT_PRP) {
     973                 :    1061354 :                 return nvme_cmd_map_prps(prv, cmd, iovs, max_iovcnt, len, mps, gpa_to_vva);
     974                 :            :         }
     975                 :            : 
     976                 :    1827486 :         return nvme_cmd_map_sgls(prv, cmd, iovs, max_iovcnt, len, mps, gpa_to_vva);
     977                 :     140990 : }
     978                 :            : 
     979                 :            : /*
     980                 :            :  * For each queue, update the location of its doorbell to the correct location:
     981                 :            :  * either our own BAR0, or the guest's configured shadow doorbell area.
     982                 :            :  *
     983                 :            :  * The Admin queue (qid: 0) does not ever use shadow doorbells.
     984                 :            :  */
     985                 :            : static void
     986                 :         56 : vfio_user_ctrlr_switch_doorbells(struct nvmf_vfio_user_ctrlr *ctrlr, bool shadow)
     987                 :            : {
     988   [ +  +  -  +  :         63 :         volatile uint32_t *doorbells = shadow ? ctrlr->sdbl->shadow_doorbells :
          #  #  #  #  #  
                #  #  # ]
     989   [ +  -  +  - ]:          7 :                                        ctrlr->bar0_doorbells;
     990                 :            : 
     991   [ +  +  #  # ]:         56 :         assert(doorbells != NULL);
     992                 :            : 
     993         [ +  + ]:       7168 :         for (size_t i = 1; i < NVMF_VFIO_USER_DEFAULT_MAX_QPAIRS_PER_CTRLR; i++) {
     994   [ +  -  +  -  :       7112 :                 struct nvmf_vfio_user_sq *sq = ctrlr->sqs[i];
             +  -  +  - ]
     995   [ +  -  +  -  :       7112 :                 struct nvmf_vfio_user_cq *cq = ctrlr->cqs[i];
             +  -  +  - ]
     996                 :            : 
     997         [ +  + ]:       7112 :                 if (sq != NULL) {
     998   [ +  -  +  -  :        184 :                         sq->dbl_tailp = doorbells + queue_index(sq->qid, false);
          +  -  +  -  +  
                      - ]
     999                 :            : 
    1000   [ +  -  +  -  :        184 :                         ctrlr->sqs[i]->need_rearm = shadow;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    1001                 :          7 :                 }
    1002                 :            : 
    1003         [ +  + ]:       7112 :                 if (cq != NULL) {
    1004   [ +  -  +  -  :        183 :                         cq->dbl_headp = doorbells + queue_index(cq->qid, true);
          +  -  +  -  +  
                      - ]
    1005                 :          7 :                 }
    1006                 :        889 :         }
    1007                 :         56 : }
    1008                 :            : 
    1009                 :            : static void
    1010                 :          0 : unmap_sdbl(vfu_ctx_t *vfu_ctx, struct nvmf_vfio_user_shadow_doorbells *sdbl)
    1011                 :            : {
    1012   [ #  #  #  # ]:          0 :         assert(vfu_ctx != NULL);
    1013   [ #  #  #  # ]:          0 :         assert(sdbl != NULL);
    1014                 :            : 
    1015                 :            :         /*
    1016                 :            :          * An allocation error would result in only one of the two being
    1017                 :            :          * non-NULL.  If that is the case, no memory should have been mapped.
    1018                 :            :          */
    1019   [ #  #  #  #  :          0 :         if (sdbl->iovs == NULL || sdbl->sgs == NULL) {
          #  #  #  #  #  
                #  #  # ]
    1020                 :          0 :                 return;
    1021                 :            :         }
    1022                 :            : 
    1023         [ #  # ]:          0 :         for (size_t i = 0; i < NVMF_VFIO_USER_SHADOW_DOORBELLS_BUFFER_COUNT; ++i) {
    1024                 :            :                 struct iovec *iov;
    1025                 :            :                 dma_sg_t *sg;
    1026                 :            : 
    1027   [ #  #  #  #  :          0 :                 if (!sdbl->iovs[i].iov_len) {
          #  #  #  #  #  
                #  #  # ]
    1028                 :          0 :                         continue;
    1029                 :            :                 }
    1030                 :            : 
    1031   [ #  #  #  # ]:          0 :                 sg = index_to_sg_t(sdbl->sgs, i);
    1032   [ #  #  #  #  :          0 :                 iov = sdbl->iovs + i;
                   #  # ]
    1033                 :            : 
    1034                 :          0 :                 vfu_sgl_put(vfu_ctx, sg, iov, 1);
    1035                 :          0 :         }
    1036                 :          0 : }
    1037                 :            : 
    1038                 :            : static void
    1039                 :        178 : free_sdbl(vfu_ctx_t *vfu_ctx, struct nvmf_vfio_user_shadow_doorbells *sdbl)
    1040                 :            : {
    1041         [ +  + ]:        178 :         if (sdbl == NULL) {
    1042                 :        178 :                 return;
    1043                 :            :         }
    1044                 :            : 
    1045                 :          0 :         unmap_sdbl(vfu_ctx, sdbl);
    1046                 :            : 
    1047                 :            :         /*
    1048                 :            :          * sdbl->shadow_doorbells and sdbl->eventidxs were mapped,
    1049                 :            :          * not allocated, so don't free() them.
    1050                 :            :          */
    1051   [ #  #  #  # ]:          0 :         free(sdbl->sgs);
    1052   [ #  #  #  # ]:          0 :         free(sdbl->iovs);
    1053                 :          0 :         free(sdbl);
    1054                 :         82 : }
    1055                 :            : 
    1056                 :            : static struct nvmf_vfio_user_shadow_doorbells *
    1057                 :          0 : map_sdbl(vfu_ctx_t *vfu_ctx, uint64_t prp1, uint64_t prp2, size_t len)
    1058                 :            : {
    1059                 :          0 :         struct nvmf_vfio_user_shadow_doorbells *sdbl = NULL;
    1060                 :          0 :         dma_sg_t *sg2 = NULL;
    1061                 :            :         void *p;
    1062                 :            : 
    1063   [ #  #  #  # ]:          0 :         assert(vfu_ctx != NULL);
    1064                 :            : 
    1065                 :          0 :         sdbl = calloc(1, sizeof(*sdbl));
    1066         [ #  # ]:          0 :         if (sdbl == NULL) {
    1067                 :          0 :                 goto err;
    1068                 :            :         }
    1069                 :            : 
    1070   [ #  #  #  # ]:          0 :         sdbl->sgs = calloc(NVMF_VFIO_USER_SHADOW_DOORBELLS_BUFFER_COUNT, dma_sg_size());
    1071   [ #  #  #  # ]:          0 :         sdbl->iovs = calloc(NVMF_VFIO_USER_SHADOW_DOORBELLS_BUFFER_COUNT, sizeof(*sdbl->iovs));
    1072   [ #  #  #  #  :          0 :         if (sdbl->sgs == NULL || sdbl->iovs == NULL) {
          #  #  #  #  #  
                #  #  # ]
    1073                 :          0 :                 goto err;
    1074                 :            :         }
    1075                 :            : 
    1076                 :            :         /* Map shadow doorbell buffer (PRP1). */
    1077   [ #  #  #  #  :          0 :         p = map_one(vfu_ctx, prp1, len, sdbl->sgs, sdbl->iovs, MAP_RW);
          #  #  #  #  #  
                #  #  # ]
    1078                 :            : 
    1079         [ #  # ]:          0 :         if (p == NULL) {
    1080                 :          0 :                 goto err;
    1081                 :            :         }
    1082                 :            : 
    1083                 :            :         /*
    1084                 :            :          * Map eventidx buffer (PRP2).
    1085                 :            :          * Should only be written to by the controller.
    1086                 :            :          */
    1087                 :            : 
    1088   [ #  #  #  # ]:          0 :         sg2 = index_to_sg_t(sdbl->sgs, 1);
    1089                 :            : 
    1090   [ #  #  #  #  :          0 :         p = map_one(vfu_ctx, prp2, len, sg2, sdbl->iovs + 1, MAP_RW);
          #  #  #  #  #  
                      # ]
    1091                 :            : 
    1092         [ #  # ]:          0 :         if (p == NULL) {
    1093                 :          0 :                 goto err;
    1094                 :            :         }
    1095                 :            : 
    1096   [ #  #  #  #  :          0 :         sdbl->shadow_doorbells = (uint32_t *)sdbl->iovs[0].iov_base;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    1097   [ #  #  #  #  :          0 :         sdbl->eventidxs = (uint32_t *)sdbl->iovs[1].iov_base;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    1098                 :            : 
    1099                 :          0 :         return sdbl;
    1100                 :            : 
    1101                 :          0 : err:
    1102                 :          0 :         free_sdbl(vfu_ctx, sdbl);
    1103                 :          0 :         return NULL;
    1104                 :          0 : }
    1105                 :            : 
    1106                 :            : /*
    1107                 :            :  * Copy doorbells from one buffer to the other, during switches between BAR0
    1108                 :            :  * doorbells and shadow doorbells.
    1109                 :            :  */
    1110                 :            : static void
    1111                 :          0 : copy_doorbells(struct nvmf_vfio_user_ctrlr *ctrlr,
    1112                 :            :                const volatile uint32_t *from, volatile uint32_t *to)
    1113                 :            : {
    1114   [ #  #  #  # ]:          0 :         assert(ctrlr != NULL);
    1115   [ #  #  #  # ]:          0 :         assert(from != NULL);
    1116   [ #  #  #  # ]:          0 :         assert(to != NULL);
    1117                 :            : 
    1118   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db,
                   #  # ]
    1119                 :            :                       "%s: migrating shadow doorbells from %p to %p\n",
    1120                 :            :                       ctrlr_id(ctrlr), from, to);
    1121                 :            : 
    1122                 :            :         /* Can't use memcpy because it doesn't respect volatile semantics. */
    1123         [ #  # ]:          0 :         for (size_t i = 0; i < NVMF_VFIO_USER_DEFAULT_MAX_QPAIRS_PER_CTRLR; ++i) {
    1124   [ #  #  #  #  :          0 :                 if (ctrlr->sqs[i] != NULL) {
          #  #  #  #  #  
                      # ]
    1125   [ #  #  #  # ]:          0 :                         to[queue_index(i, false)] = from[queue_index(i, false)];
    1126                 :          0 :                 }
    1127                 :            : 
    1128   [ #  #  #  #  :          0 :                 if (ctrlr->cqs[i] != NULL) {
          #  #  #  #  #  
                      # ]
    1129   [ #  #  #  # ]:          0 :                         to[queue_index(i, true)] = from[queue_index(i, true)];
    1130                 :          0 :                 }
    1131                 :          0 :         }
    1132                 :          0 : }
    1133                 :            : 
    1134                 :            : static void
    1135                 :          0 : fail_ctrlr(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    1136                 :            : {
    1137                 :            :         const struct spdk_nvmf_registers *regs;
    1138                 :            : 
    1139   [ #  #  #  # ]:          0 :         assert(vu_ctrlr != NULL);
    1140   [ #  #  #  #  :          0 :         assert(vu_ctrlr->ctrlr != NULL);
             #  #  #  # ]
    1141                 :            : 
    1142   [ #  #  #  # ]:          0 :         regs = spdk_nvmf_ctrlr_get_regs(vu_ctrlr->ctrlr);
    1143   [ #  #  #  #  :          0 :         if (regs->csts.bits.cfs == 0) {
             #  #  #  # ]
    1144                 :          0 :                 SPDK_ERRLOG(":%s failing controller\n", ctrlr_id(vu_ctrlr));
    1145                 :          0 :         }
    1146                 :            : 
    1147   [ #  #  #  # ]:          0 :         nvmf_ctrlr_set_fatal_status(vu_ctrlr->ctrlr);
    1148                 :          0 : }
    1149                 :            : 
    1150                 :            : static inline bool
    1151                 :   27383107 : ctrlr_interrupt_enabled(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    1152                 :            : {
    1153   [ +  +  #  # ]:   27383107 :         assert(vu_ctrlr != NULL);
    1154   [ +  +  +  -  :   27383107 :         assert(vu_ctrlr->endpoint != NULL);
             +  -  #  # ]
    1155                 :            : 
    1156   [ +  -  +  -  :   27383107 :         vfu_pci_config_space_t *pci = vu_ctrlr->endpoint->pci_config_space;
             +  -  +  - ]
    1157                 :            : 
    1158   [ +  +  +  +  :   27383107 :         return (!pci->hdr.cmd.id || vu_ctrlr->endpoint->msix->mxc.mxe);
          +  -  +  -  +  
          -  +  -  -  +  
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    1159                 :            : }
    1160                 :            : 
    1161                 :            : static void
    1162                 :         31 : nvmf_vfio_user_destroy_endpoint(struct nvmf_vfio_user_endpoint *endpoint)
    1163                 :            : {
    1164   [ +  +  +  +  :         31 :         SPDK_DEBUGLOG(nvmf_vfio, "destroy endpoint %s\n", endpoint_id(endpoint));
                   +  - ]
    1165                 :            : 
    1166         [ +  - ]:         31 :         spdk_interrupt_unregister(&endpoint->accept_intr);
    1167         [ +  - ]:         31 :         spdk_poller_unregister(&endpoint->accept_poller);
    1168                 :            : 
    1169   [ +  -  +  -  :         31 :         if (endpoint->bar0_doorbells) {
                   +  - ]
    1170   [ +  -  +  - ]:         31 :                 munmap((void *)endpoint->bar0_doorbells, NVMF_VFIO_USER_DOORBELLS_SIZE);
    1171                 :         14 :         }
    1172                 :            : 
    1173   [ +  -  +  -  :         31 :         if (endpoint->devmem_fd > 0) {
                   +  - ]
    1174   [ +  -  +  - ]:         31 :                 close(endpoint->devmem_fd);
    1175                 :         14 :         }
    1176                 :            : 
    1177   [ +  -  +  -  :         31 :         if (endpoint->migr_data) {
                   +  - ]
    1178   [ +  -  +  - ]:         31 :                 munmap(endpoint->migr_data, vfio_user_migr_data_len());
    1179                 :         14 :         }
    1180                 :            : 
    1181   [ +  -  +  -  :         31 :         if (endpoint->migr_fd > 0) {
                   +  - ]
    1182   [ +  -  +  - ]:         31 :                 close(endpoint->migr_fd);
    1183                 :         14 :         }
    1184                 :            : 
    1185   [ +  -  +  -  :         31 :         if (endpoint->vfu_ctx) {
                   +  - ]
    1186   [ +  -  +  - ]:         31 :                 vfu_destroy_ctx(endpoint->vfu_ctx);
    1187                 :         14 :         }
    1188                 :            : 
    1189   [ +  +  +  - ]:         31 :         pthread_mutex_destroy(&endpoint->lock);
    1190                 :         31 :         free(endpoint);
    1191                 :         31 : }
    1192                 :            : 
    1193                 :            : /* called when process exits */
    1194                 :            : static int
    1195                 :         14 : nvmf_vfio_user_destroy(struct spdk_nvmf_transport *transport,
    1196                 :            :                        spdk_nvmf_transport_destroy_done_cb cb_fn, void *cb_arg)
    1197                 :            : {
    1198                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    1199                 :            :         struct nvmf_vfio_user_endpoint *endpoint, *tmp;
    1200                 :            : 
    1201   [ +  +  +  +  :         14 :         SPDK_DEBUGLOG(nvmf_vfio, "destroy transport\n");
                   +  - ]
    1202                 :            : 
    1203                 :         14 :         vu_transport = SPDK_CONTAINEROF(transport, struct nvmf_vfio_user_transport,
    1204                 :            :                                         transport);
    1205                 :            : 
    1206   [ +  +  +  - ]:         14 :         pthread_mutex_destroy(&vu_transport->lock);
    1207   [ +  +  +  - ]:         14 :         pthread_mutex_destroy(&vu_transport->pg_lock);
    1208                 :            : 
    1209   [ +  +  +  -  :         14 :         TAILQ_FOREACH_SAFE(endpoint, &vu_transport->endpoints, link, tmp) {
          +  -  -  +  #  
          #  #  #  #  #  
                   +  - ]
    1210   [ #  #  #  #  :          0 :                 TAILQ_REMOVE(&vu_transport->endpoints, endpoint, link);
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                #  #  # ]
    1211                 :          0 :                 nvmf_vfio_user_destroy_endpoint(endpoint);
    1212                 :          0 :         }
    1213                 :            : 
    1214                 :         14 :         free(vu_transport);
    1215                 :            : 
    1216         [ +  - ]:         14 :         if (cb_fn) {
    1217   [ -  +  +  - ]:         14 :                 cb_fn(cb_arg);
    1218                 :          7 :         }
    1219                 :            : 
    1220                 :         14 :         return 0;
    1221                 :            : }
    1222                 :            : 
    1223                 :            : static const struct spdk_json_object_decoder vfio_user_transport_opts_decoder[] = {
    1224                 :            :         {
    1225                 :            :                 "disable_mappable_bar0",
    1226                 :            :                 offsetof(struct nvmf_vfio_user_transport, transport_opts.disable_mappable_bar0),
    1227                 :            :                 spdk_json_decode_bool, true
    1228                 :            :         },
    1229                 :            :         {
    1230                 :            :                 "disable_adaptive_irq",
    1231                 :            :                 offsetof(struct nvmf_vfio_user_transport, transport_opts.disable_adaptive_irq),
    1232                 :            :                 spdk_json_decode_bool, true
    1233                 :            :         },
    1234                 :            :         {
    1235                 :            :                 "disable_shadow_doorbells",
    1236                 :            :                 offsetof(struct nvmf_vfio_user_transport, transport_opts.disable_shadow_doorbells),
    1237                 :            :                 spdk_json_decode_bool, true
    1238                 :            :         },
    1239                 :            :         {
    1240                 :            :                 "disable_compare",
    1241                 :            :                 offsetof(struct nvmf_vfio_user_transport, transport_opts.disable_compare),
    1242                 :            :                 spdk_json_decode_bool, true
    1243                 :            :         },
    1244                 :            :         {
    1245                 :            :                 "enable_intr_mode_sq_spreading",
    1246                 :            :                 offsetof(struct nvmf_vfio_user_transport, transport_opts.enable_intr_mode_sq_spreading),
    1247                 :            :                 spdk_json_decode_bool, true
    1248                 :            :         },
    1249                 :            : };
    1250                 :            : 
    1251                 :            : static struct spdk_nvmf_transport *
    1252                 :         14 : nvmf_vfio_user_create(struct spdk_nvmf_transport_opts *opts)
    1253                 :            : {
    1254                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    1255                 :            :         int err;
    1256                 :            : 
    1257   [ +  +  +  -  :         14 :         if (opts->max_qpairs_per_ctrlr > NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR) {
                   -  + ]
    1258   [ #  #  #  # ]:          0 :                 SPDK_ERRLOG("Invalid max_qpairs_per_ctrlr=%d, supported max_qpairs_per_ctrlr=%d\n",
    1259                 :            :                             opts->max_qpairs_per_ctrlr, NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR);
    1260                 :          0 :                 return NULL;
    1261                 :            :         }
    1262                 :            : 
    1263                 :         14 :         vu_transport = calloc(1, sizeof(*vu_transport));
    1264         [ +  + ]:         14 :         if (vu_transport == NULL) {
    1265                 :          0 :                 SPDK_ERRLOG("Transport alloc fail: %m\n");
    1266                 :          0 :                 return NULL;
    1267                 :            :         }
    1268                 :            : 
    1269   [ +  +  +  - ]:         14 :         err = pthread_mutex_init(&vu_transport->lock, NULL);
    1270         [ -  + ]:         14 :         if (err != 0) {
    1271                 :          0 :                 SPDK_ERRLOG("Pthread initialisation failed (%d)\n", err);
    1272                 :          0 :                 goto err;
    1273                 :            :         }
    1274   [ +  -  +  -  :         14 :         TAILQ_INIT(&vu_transport->endpoints);
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    1275                 :            : 
    1276   [ +  +  +  - ]:         14 :         err = pthread_mutex_init(&vu_transport->pg_lock, NULL);
    1277         [ -  + ]:         14 :         if (err != 0) {
    1278   [ #  #  #  # ]:          0 :                 pthread_mutex_destroy(&vu_transport->lock);
    1279                 :          0 :                 SPDK_ERRLOG("Pthread initialisation failed (%d)\n", err);
    1280                 :          0 :                 goto err;
    1281                 :            :         }
    1282   [ +  -  +  -  :         14 :         TAILQ_INIT(&vu_transport->poll_groups);
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    1283                 :            : 
    1284   [ +  -  +  +  :         28 :         if (opts->transport_specific != NULL &&
             +  -  +  - ]
    1285   [ +  -  +  - ]:         14 :             spdk_json_decode_object_relaxed(opts->transport_specific, vfio_user_transport_opts_decoder,
    1286                 :            :                                             SPDK_COUNTOF(vfio_user_transport_opts_decoder),
    1287                 :          7 :                                             vu_transport)) {
    1288                 :          0 :                 SPDK_ERRLOG("spdk_json_decode_object_relaxed failed\n");
    1289                 :          0 :                 goto cleanup;
    1290                 :            :         }
    1291                 :            : 
    1292                 :            :         /*
    1293                 :            :          * To support interrupt mode, the transport must be configured with
    1294                 :            :          * mappable BAR0 disabled: we need a vfio-user message to wake us up
    1295                 :            :          * when a client writes new doorbell values to BAR0, via the
    1296                 :            :          * libvfio-user socket fd.
    1297                 :            :          */
    1298   [ +  -  +  - ]:         14 :         vu_transport->intr_mode_supported =
    1299   [ +  +  +  -  :         14 :                 vu_transport->transport_opts.disable_mappable_bar0;
             +  -  +  - ]
    1300                 :            : 
    1301                 :            :         /*
    1302                 :            :          * If BAR0 is mappable, it doesn't make sense to support shadow
    1303                 :            :          * doorbells, so explicitly turn it off.
    1304                 :            :          */
    1305   [ +  +  +  +  :         14 :         if (!vu_transport->transport_opts.disable_mappable_bar0) {
          +  -  +  -  -  
                      + ]
    1306   [ +  -  +  -  :         13 :                 vu_transport->transport_opts.disable_shadow_doorbells = true;
                   +  - ]
    1307                 :          7 :         }
    1308                 :            : 
    1309         [ +  + ]:         14 :         if (spdk_interrupt_mode_is_enabled()) {
    1310   [ -  +  -  +  :          1 :                 if (!vu_transport->intr_mode_supported) {
             #  #  #  # ]
    1311                 :          0 :                         SPDK_ERRLOG("interrupt mode not supported\n");
    1312                 :          0 :                         goto cleanup;
    1313                 :            :                 }
    1314                 :            : 
    1315                 :            :                 /*
    1316                 :            :                  * If we are in interrupt mode, we cannot support adaptive IRQs,
    1317                 :            :                  * as there is no guarantee the SQ poller will run subsequently
    1318                 :            :                  * to send pending IRQs.
    1319                 :            :                  */
    1320   [ #  #  #  #  :          1 :                 vu_transport->transport_opts.disable_adaptive_irq = true;
                   #  # ]
    1321                 :          0 :         }
    1322                 :            : 
    1323   [ +  +  +  +  :         14 :         SPDK_DEBUGLOG(nvmf_vfio, "vfio_user transport: disable_mappable_bar0=%d\n",
          +  -  #  #  #  
             #  #  #  #  
                      # ]
    1324                 :            :                       vu_transport->transport_opts.disable_mappable_bar0);
    1325   [ +  +  +  +  :         14 :         SPDK_DEBUGLOG(nvmf_vfio, "vfio_user transport: disable_adaptive_irq=%d\n",
          +  -  #  #  #  
             #  #  #  #  
                      # ]
    1326                 :            :                       vu_transport->transport_opts.disable_adaptive_irq);
    1327   [ +  +  +  +  :         14 :         SPDK_DEBUGLOG(nvmf_vfio, "vfio_user transport: disable_shadow_doorbells=%d\n",
          +  -  #  #  #  
             #  #  #  #  
                      # ]
    1328                 :            :                       vu_transport->transport_opts.disable_shadow_doorbells);
    1329                 :            : 
    1330         [ +  - ]:         14 :         return &vu_transport->transport;
    1331                 :            : 
    1332                 :          0 : cleanup:
    1333   [ #  #  #  # ]:          0 :         pthread_mutex_destroy(&vu_transport->lock);
    1334   [ #  #  #  # ]:          0 :         pthread_mutex_destroy(&vu_transport->pg_lock);
    1335                 :          0 : err:
    1336                 :          0 :         free(vu_transport);
    1337                 :          0 :         return NULL;
    1338                 :          7 : }
    1339                 :            : 
    1340                 :            : static uint32_t
    1341                 :        404 : max_queue_size(struct nvmf_vfio_user_ctrlr const *vu_ctrlr)
    1342                 :            : {
    1343   [ +  +  #  # ]:        404 :         assert(vu_ctrlr != NULL);
    1344   [ +  +  +  -  :        404 :         assert(vu_ctrlr->ctrlr != NULL);
             +  -  #  # ]
    1345                 :            : 
    1346   [ +  -  +  -  :        404 :         return vu_ctrlr->ctrlr->vcprop.cap.bits.mqes + 1;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    1347                 :            : }
    1348                 :            : 
    1349                 :            : static uint32_t
    1350                 :          0 : doorbell_stride(const struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    1351                 :            : {
    1352   [ #  #  #  # ]:          0 :         assert(vu_ctrlr != NULL);
    1353   [ #  #  #  #  :          0 :         assert(vu_ctrlr->ctrlr != NULL);
             #  #  #  # ]
    1354                 :            : 
    1355   [ #  #  #  #  :          0 :         return vu_ctrlr->ctrlr->vcprop.cap.bits.dstrd;
          #  #  #  #  #  
                #  #  # ]
    1356                 :            : }
    1357                 :            : 
    1358                 :            : static uintptr_t
    1359                 :          0 : memory_page_size(const struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    1360                 :            : {
    1361   [ #  #  #  #  :          0 :         uint32_t memory_page_shift = vu_ctrlr->ctrlr->vcprop.cc.bits.mps + 12;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    1362         [ #  # ]:          0 :         return 1ul << memory_page_shift;
    1363                 :            : }
    1364                 :            : 
    1365                 :            : static uintptr_t
    1366                 :          0 : memory_page_mask(const struct nvmf_vfio_user_ctrlr *ctrlr)
    1367                 :            : {
    1368                 :          0 :         return ~(memory_page_size(ctrlr) - 1);
    1369                 :            : }
    1370                 :            : 
    1371                 :            : static int
    1372                 :        579 : map_q(struct nvmf_vfio_user_ctrlr *vu_ctrlr, struct nvme_q_mapping *mapping,
    1373                 :            :       uint32_t flags)
    1374                 :            : {
    1375                 :            :         void *ret;
    1376                 :            : 
    1377   [ +  +  +  -  :        579 :         assert(mapping->len != 0);
             +  -  #  # ]
    1378   [ +  +  #  # ]:        579 :         assert(q_addr(mapping) == NULL);
    1379                 :            : 
    1380   [ +  -  +  -  :        607 :         ret = map_one(vu_ctrlr->endpoint->vfu_ctx, mapping->prp1, mapping->len,
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    1381   [ +  -  +  -  :         28 :                       mapping->sg, &mapping->iov, flags);
                   +  - ]
    1382         [ +  + ]:        579 :         if (ret == NULL) {
    1383                 :         50 :                 return -EFAULT;
    1384                 :            :         }
    1385                 :            : 
    1386   [ +  +  +  -  :        529 :         if (flags & MAP_INITIALIZE) {
                   -  + ]
    1387   [ +  +  +  -  :        509 :                 memset(q_addr(mapping), 0, mapping->len);
                   +  - ]
    1388                 :         28 :         }
    1389                 :            : 
    1390                 :        529 :         return 0;
    1391                 :         28 : }
    1392                 :            : 
    1393                 :            : static inline void
    1394                 :       1366 : unmap_q(struct nvmf_vfio_user_ctrlr *vu_ctrlr, struct nvme_q_mapping *mapping)
    1395                 :            : {
    1396         [ +  + ]:       1366 :         if (q_addr(mapping) != NULL) {
    1397   [ +  -  +  -  :        529 :                 vfu_sgl_put(vu_ctrlr->endpoint->vfu_ctx, mapping->sg,
          +  -  +  -  +  
                -  +  - ]
    1398         [ +  - ]:         28 :                             &mapping->iov, 1);
    1399   [ +  -  +  -  :        529 :                 mapping->iov.iov_base = NULL;
                   +  - ]
    1400                 :         28 :         }
    1401                 :       1366 : }
    1402                 :            : 
    1403                 :            : static int
    1404                 :         59 : asq_setup(struct nvmf_vfio_user_ctrlr *ctrlr)
    1405                 :            : {
    1406                 :            :         struct nvmf_vfio_user_sq *sq;
    1407                 :            :         const struct spdk_nvmf_registers *regs;
    1408                 :            :         int ret;
    1409                 :            : 
    1410   [ +  +  #  # ]:         59 :         assert(ctrlr != NULL);
    1411                 :            : 
    1412   [ +  -  +  -  :         59 :         sq = ctrlr->sqs[0];
             +  -  +  - ]
    1413                 :            : 
    1414   [ +  +  #  # ]:         59 :         assert(sq != NULL);
    1415   [ +  +  +  -  :         59 :         assert(q_addr(&sq->mapping) == NULL);
                   #  # ]
    1416                 :            :         /* XXX ctrlr->asq == 0 is a valid memory address */
    1417                 :            : 
    1418   [ +  -  +  - ]:         59 :         regs = spdk_nvmf_ctrlr_get_regs(ctrlr->ctrlr);
    1419   [ +  -  +  - ]:         59 :         sq->qid = 0;
    1420   [ +  -  +  -  :         59 :         sq->size = regs->aqa.bits.asqs + 1;
          +  -  +  -  +  
                -  +  - ]
    1421   [ +  -  +  -  :         59 :         sq->mapping.prp1 = regs->asq;
          +  -  +  -  +  
                      - ]
    1422   [ +  -  +  -  :         59 :         sq->mapping.len = sq->size * sizeof(struct spdk_nvme_cmd);
          +  -  +  -  +  
                      - ]
    1423                 :         59 :         *sq_headp(sq) = 0;
    1424   [ +  -  +  - ]:         59 :         sq->cqid = 0;
    1425                 :            : 
    1426   [ +  -  -  +  :         59 :         ret = map_q(ctrlr, &sq->mapping, MAP_INITIALIZE);
                   +  - ]
    1427         [ -  + ]:         59 :         if (ret) {
    1428                 :          0 :                 return ret;
    1429                 :            :         }
    1430                 :            : 
    1431                 :            :         /* The Admin queue (qid: 0) does not ever use shadow doorbells. */
    1432   [ +  -  +  -  :         59 :         sq->dbl_tailp = ctrlr->bar0_doorbells + queue_index(0, false);
          +  -  +  -  +  
                      - ]
    1433                 :            : 
    1434                 :         59 :         *sq_dbl_tailp(sq) = 0;
    1435                 :            : 
    1436                 :         59 :         return 0;
    1437                 :          7 : }
    1438                 :            : 
    1439                 :            : /*
    1440                 :            :  * Updates eventidx to set an SQ into interrupt or polling mode.
    1441                 :            :  *
    1442                 :            :  * Returns false if the current SQ tail does not match the SQ head, as
    1443                 :            :  * this means that the host has submitted more items to the queue while we were
    1444                 :            :  * not looking - or during the event index update. In that case, we must retry,
    1445                 :            :  * or otherwise make sure we are going to wake up again.
    1446                 :            :  */
    1447                 :            : static bool
    1448                 :          0 : set_sq_eventidx(struct nvmf_vfio_user_sq *sq)
    1449                 :            : {
    1450                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    1451                 :            :         volatile uint32_t *sq_tail_eidx;
    1452                 :            :         uint32_t old_tail, new_tail;
    1453                 :            : 
    1454   [ #  #  #  # ]:          0 :         assert(sq != NULL);
    1455   [ #  #  #  #  :          0 :         assert(sq->ctrlr != NULL);
             #  #  #  # ]
    1456   [ #  #  #  #  :          0 :         assert(sq->ctrlr->sdbl != NULL);
          #  #  #  #  #  
                #  #  # ]
    1457   [ #  #  #  #  :          0 :         assert(sq->need_rearm);
          #  #  #  #  #  
                      # ]
    1458   [ #  #  #  #  :          0 :         assert(sq->qid != 0);
             #  #  #  # ]
    1459                 :            : 
    1460   [ #  #  #  # ]:          0 :         ctrlr = sq->ctrlr;
    1461                 :            : 
    1462   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db, "%s: updating eventidx of sqid:%u\n",
          #  #  #  #  #  
                      # ]
    1463                 :            :                       ctrlr_id(ctrlr), sq->qid);
    1464                 :            : 
    1465   [ #  #  #  #  :          0 :         sq_tail_eidx = ctrlr->sdbl->eventidxs + queue_index(sq->qid, false);
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    1466                 :            : 
    1467   [ #  #  #  #  :          0 :         assert(ctrlr->endpoint != NULL);
             #  #  #  # ]
    1468                 :            : 
    1469   [ #  #  #  #  :          0 :         if (!ctrlr->endpoint->interrupt_mode) {
          #  #  #  #  #  
                #  #  # ]
    1470                 :            :                 /* No synchronisation necessary. */
    1471                 :          0 :                 *sq_tail_eidx = NVMF_VFIO_USER_EVENTIDX_POLL;
    1472                 :          0 :                 return true;
    1473                 :            :         }
    1474                 :            : 
    1475                 :          0 :         old_tail = *sq_dbl_tailp(sq);
    1476                 :          0 :         *sq_tail_eidx = old_tail;
    1477                 :            : 
    1478                 :            :         /*
    1479                 :            :          * Ensure that the event index is updated before re-reading the tail
    1480                 :            :          * doorbell. If it's not, then the host might race us and update the
    1481                 :            :          * tail after the second read but before the event index is written, so
    1482                 :            :          * it won't write to BAR0 and we'll miss the update.
    1483                 :            :          *
    1484                 :            :          * The driver should provide similar ordering with an mb().
    1485                 :            :          */
    1486                 :          0 :         spdk_mb();
    1487                 :            : 
    1488                 :            :         /*
    1489                 :            :          * Check if the host has updated the tail doorbell after we've read it
    1490                 :            :          * for the first time, but before the event index was written. If that's
    1491                 :            :          * the case, then we've lost the race and we need to update the event
    1492                 :            :          * index again (after polling the queue, since the host won't write to
    1493                 :            :          * BAR0).
    1494                 :            :          */
    1495                 :          0 :         new_tail = *sq_dbl_tailp(sq);
    1496                 :            : 
    1497                 :            :         /*
    1498                 :            :          * We might poll the queue straight after this function returns if the
    1499                 :            :          * tail has been updated, so we need to ensure that any changes to the
    1500                 :            :          * queue will be visible to us if the doorbell has been updated.
    1501                 :            :          *
    1502                 :            :          * The driver should provide similar ordering with a wmb() to ensure
    1503                 :            :          * that the queue is written before it updates the tail doorbell.
    1504                 :            :          */
    1505                 :          0 :         spdk_rmb();
    1506                 :            : 
    1507   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db, "%s: sqid:%u, old_tail=%u, new_tail=%u, "
          #  #  #  #  #  
                      # ]
    1508                 :            :                       "sq_head=%u\n", ctrlr_id(ctrlr), sq->qid, old_tail,
    1509                 :            :                       new_tail, *sq_headp(sq));
    1510                 :            : 
    1511         [ #  # ]:          0 :         if (new_tail == *sq_headp(sq)) {
    1512   [ #  #  #  # ]:          0 :                 sq->need_rearm = false;
    1513                 :          0 :                 return true;
    1514                 :            :         }
    1515                 :            : 
    1516                 :            :         /*
    1517                 :            :          * We've lost the race: the tail was updated since we last polled,
    1518                 :            :          * including if it happened within this routine.
    1519                 :            :          *
    1520                 :            :          * The caller should retry after polling (think of this as a cmpxchg
    1521                 :            :          * loop); if we go to sleep while the SQ is not empty, then we won't
    1522                 :            :          * process the remaining events.
    1523                 :            :          */
    1524                 :          0 :         return false;
    1525                 :          0 : }
    1526                 :            : 
    1527                 :            : static int nvmf_vfio_user_sq_poll(struct nvmf_vfio_user_sq *sq);
    1528                 :            : 
    1529                 :            : /*
    1530                 :            :  * Arrange for an SQ to interrupt us if written. Returns non-zero if we
    1531                 :            :  * processed some SQ entries.
    1532                 :            :  */
    1533                 :            : static int
    1534                 :          0 : vfio_user_sq_rearm(struct nvmf_vfio_user_ctrlr *ctrlr,
    1535                 :            :                    struct nvmf_vfio_user_sq *sq,
    1536                 :            :                    struct nvmf_vfio_user_poll_group *vu_group)
    1537                 :            : {
    1538                 :          0 :         int count = 0;
    1539                 :            :         size_t i;
    1540                 :            : 
    1541   [ #  #  #  #  :          0 :         assert(sq->need_rearm);
          #  #  #  #  #  
                      # ]
    1542                 :            : 
    1543         [ #  # ]:          0 :         for (i = 0; i < NVMF_VFIO_USER_SET_EVENTIDX_MAX_ATTEMPTS; i++) {
    1544                 :            :                 int ret;
    1545                 :            : 
    1546         [ #  # ]:          0 :                 if (set_sq_eventidx(sq)) {
    1547                 :            :                         /* We won the race and set eventidx; done. */
    1548   [ #  #  #  # ]:          0 :                         vu_group->stats.won++;
    1549                 :          0 :                         return count;
    1550                 :            :                 }
    1551                 :            : 
    1552                 :          0 :                 ret = nvmf_vfio_user_sq_poll(sq);
    1553                 :            : 
    1554   [ #  #  #  # ]:          0 :                 count += (ret < 0) ? 1 : ret;
    1555                 :            : 
    1556                 :            :                 /*
    1557                 :            :                  * set_sq_eventidx() hit the race, so we expected
    1558                 :            :                  * to process at least one command from this queue.
    1559                 :            :                  * If there were no new commands waiting for us, then
    1560                 :            :                  * we must have hit an unexpected race condition.
    1561                 :            :                  */
    1562         [ #  # ]:          0 :                 if (ret == 0) {
    1563                 :          0 :                         SPDK_ERRLOG("%s: unexpected race condition detected "
    1564                 :            :                                     "while updating the shadow doorbell buffer\n",
    1565                 :            :                                     ctrlr_id(ctrlr));
    1566                 :            : 
    1567                 :          0 :                         fail_ctrlr(ctrlr);
    1568                 :          0 :                         return count;
    1569                 :            :                 }
    1570                 :          0 :         }
    1571                 :            : 
    1572   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db,
                   #  # ]
    1573                 :            :                       "%s: set_sq_eventidx() lost the race %zu times\n",
    1574                 :            :                       ctrlr_id(ctrlr), i);
    1575                 :            : 
    1576   [ #  #  #  # ]:          0 :         vu_group->stats.lost++;
    1577   [ #  #  #  #  :          0 :         vu_group->stats.lost_count += count;
                   #  # ]
    1578                 :            : 
    1579                 :            :         /*
    1580                 :            :          * We couldn't arrange an eventidx guaranteed to cause a BAR0 write, as
    1581                 :            :          * we raced with the producer too many times; force ourselves to wake up
    1582                 :            :          * instead. We'll process all queues at that point.
    1583                 :            :          */
    1584                 :          0 :         ctrlr_kick(ctrlr);
    1585                 :            : 
    1586                 :          0 :         return count;
    1587                 :          0 : }
    1588                 :            : 
    1589                 :            : /*
    1590                 :            :  * We're in interrupt mode, and potentially about to go to sleep. We need to
    1591                 :            :  * make sure any further I/O submissions are guaranteed to wake us up: for
    1592                 :            :  * shadow doorbells that means we may need to go through set_sq_eventidx() for
    1593                 :            :  * every SQ that needs re-arming.
    1594                 :            :  *
    1595                 :            :  * Returns non-zero if we processed something.
    1596                 :            :  */
    1597                 :            : static int
    1598                 :          0 : vfio_user_poll_group_rearm(struct nvmf_vfio_user_poll_group *vu_group)
    1599                 :            : {
    1600                 :            :         struct nvmf_vfio_user_sq *sq;
    1601                 :          0 :         int count = 0;
    1602                 :            : 
    1603   [ #  #  #  # ]:          0 :         vu_group->stats.rearms++;
    1604                 :            : 
    1605   [ #  #  #  #  :          0 :         TAILQ_FOREACH(sq, &vu_group->sqs, link) {
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    1606   [ #  #  #  #  :          0 :                 if (spdk_unlikely(sq->sq_state != VFIO_USER_SQ_ACTIVE || !sq->size)) {
          #  #  #  #  #  
                #  #  # ]
    1607                 :          0 :                         continue;
    1608                 :            :                 }
    1609                 :            : 
    1610   [ #  #  #  #  :          0 :                 if (sq->need_rearm) {
             #  #  #  # ]
    1611   [ #  #  #  #  :          0 :                         count += vfio_user_sq_rearm(sq->ctrlr, sq, vu_group);
                   #  # ]
    1612                 :          0 :                 }
    1613                 :          0 :         }
    1614                 :            : 
    1615                 :          0 :         return count;
    1616                 :            : }
    1617                 :            : 
    1618                 :            : static int
    1619                 :         59 : acq_setup(struct nvmf_vfio_user_ctrlr *ctrlr)
    1620                 :            : {
    1621                 :            :         struct nvmf_vfio_user_cq *cq;
    1622                 :            :         const struct spdk_nvmf_registers *regs;
    1623                 :            :         int ret;
    1624                 :            : 
    1625   [ +  +  #  # ]:         59 :         assert(ctrlr != NULL);
    1626                 :            : 
    1627   [ +  -  +  -  :         59 :         cq = ctrlr->cqs[0];
             +  -  +  - ]
    1628                 :            : 
    1629   [ +  +  #  # ]:         59 :         assert(cq != NULL);
    1630                 :            : 
    1631   [ +  +  +  -  :         59 :         assert(q_addr(&cq->mapping) == NULL);
                   #  # ]
    1632                 :            : 
    1633   [ +  -  +  - ]:         59 :         regs = spdk_nvmf_ctrlr_get_regs(ctrlr->ctrlr);
    1634   [ +  +  #  # ]:         59 :         assert(regs != NULL);
    1635   [ +  -  +  - ]:         59 :         cq->qid = 0;
    1636   [ +  -  +  -  :         59 :         cq->size = regs->aqa.bits.acqs + 1;
          +  -  +  -  +  
                -  +  - ]
    1637   [ +  -  +  -  :         59 :         cq->mapping.prp1 = regs->acq;
          +  -  +  -  +  
                      - ]
    1638   [ +  -  +  -  :         59 :         cq->mapping.len = cq->size * sizeof(struct spdk_nvme_cpl);
          +  -  +  -  +  
                      - ]
    1639                 :         59 :         *cq_tailp(cq) = 0;
    1640   [ +  -  +  - ]:         59 :         cq->ien = true;
    1641   [ +  -  +  - ]:         59 :         cq->phase = true;
    1642                 :            : 
    1643   [ +  -  -  +  :         59 :         ret = map_q(ctrlr, &cq->mapping, MAP_RW | MAP_INITIALIZE);
          +  -  -  +  +  
                      - ]
    1644         [ -  + ]:         59 :         if (ret) {
    1645                 :          0 :                 return ret;
    1646                 :            :         }
    1647                 :            : 
    1648                 :            :         /* The Admin queue (qid: 0) does not ever use shadow doorbells. */
    1649   [ +  -  +  -  :         59 :         cq->dbl_headp = ctrlr->bar0_doorbells + queue_index(0, true);
          +  -  +  -  +  
                      - ]
    1650                 :            : 
    1651                 :         59 :         *cq_dbl_headp(cq) = 0;
    1652                 :            : 
    1653                 :         59 :         return 0;
    1654                 :          7 : }
    1655                 :            : 
    1656                 :            : static void *
    1657                 :    2952683 : _map_one(void *prv, uint64_t addr, uint64_t len, uint32_t flags)
    1658                 :            : {
    1659                 :    2952683 :         struct spdk_nvmf_request *req = (struct spdk_nvmf_request *)prv;
    1660                 :            :         struct spdk_nvmf_qpair *qpair;
    1661                 :            :         struct nvmf_vfio_user_req *vu_req;
    1662                 :            :         struct nvmf_vfio_user_sq *sq;
    1663                 :            :         void *ret;
    1664                 :            : 
    1665   [ +  +  #  # ]:    2952683 :         assert(req != NULL);
    1666   [ +  -  +  - ]:    2952683 :         qpair = req->qpair;
    1667                 :    2952683 :         vu_req = SPDK_CONTAINEROF(req, struct nvmf_vfio_user_req, req);
    1668                 :    2952683 :         sq = SPDK_CONTAINEROF(qpair, struct nvmf_vfio_user_sq, qpair);
    1669                 :            : 
    1670   [ +  +  +  -  :    2952683 :         assert(vu_req->iovcnt < NVMF_VFIO_USER_MAX_IOVECS);
             +  -  #  # ]
    1671   [ +  -  +  -  :    5905366 :         ret = map_one(sq->ctrlr->endpoint->vfu_ctx, addr, len,
          +  -  +  -  +  
                -  +  - ]
    1672   [ +  -  +  -  :    2952683 :                       index_to_sg_t(vu_req->sg, vu_req->iovcnt),
                   +  - ]
    1673   [ +  -  +  -  :    2952683 :                       &vu_req->iov[vu_req->iovcnt], flags);
          +  -  +  -  +  
                      - ]
    1674         [ +  + ]:    2952683 :         if (spdk_likely(ret != NULL)) {
    1675         [ +  - ]:    1903140 :                 vu_req->iovcnt++;
    1676                 :     140990 :         }
    1677                 :    2952683 :         return ret;
    1678                 :            : }
    1679                 :            : 
    1680                 :            : static int
    1681                 :    2888840 : vfio_user_map_cmd(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvmf_request *req,
    1682                 :            :                   struct iovec *iov, uint32_t length)
    1683                 :            : {
    1684                 :            :         /* Map PRP list to from Guest physical memory to
    1685                 :            :          * virtual memory address.
    1686                 :            :          */
    1687   [ +  -  +  -  :    2888840 :         return nvme_map_cmd(req, &req->cmd->nvme_cmd, iov, NVMF_REQ_MAX_BUFFERS,
                   +  - ]
    1688                 :     140990 :                             length, 4096, _map_one);
    1689                 :            : }
    1690                 :            : 
    1691                 :            : static int handle_cmd_req(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvme_cmd *cmd,
    1692                 :            :                           struct nvmf_vfio_user_sq *sq);
    1693                 :            : 
    1694                 :            : static uint32_t
    1695                 :    4113592 : cq_free_slots(struct nvmf_vfio_user_cq *cq)
    1696                 :            : {
    1697                 :            :         uint32_t free_slots;
    1698                 :            : 
    1699   [ +  +  #  # ]:    4113592 :         assert(cq != NULL);
    1700                 :            : 
    1701   [ +  +  +  -  :    4113592 :         if (cq->tail == cq->last_head) {
          +  -  +  -  +  
                      + ]
    1702   [ +  -  +  - ]:      12175 :                 free_slots = cq->size;
    1703   [ +  +  +  -  :    4103659 :         } else if (cq->tail > cq->last_head) {
          +  -  +  -  +  
                      + ]
    1704   [ +  -  +  -  :    1975809 :                 free_slots = cq->size - (cq->tail - cq->last_head);
          +  -  +  -  +  
                -  +  - ]
    1705                 :     122032 :         } else {
    1706   [ +  -  +  -  :    2125608 :                 free_slots = cq->last_head - cq->tail;
             +  -  +  - ]
    1707                 :            :         }
    1708   [ +  +  #  # ]:    4113592 :         assert(free_slots > 0);
    1709                 :            : 
    1710                 :    4113592 :         return free_slots - 1;
    1711                 :            : }
    1712                 :            : 
    1713                 :            : /*
    1714                 :            :  * Since reading the head doorbell is relatively expensive, we use the cached
    1715                 :            :  * value, so we only have to read it for real if it appears that we are full.
    1716                 :            :  */
    1717                 :            : static inline bool
    1718                 :    3649005 : cq_is_full(struct nvmf_vfio_user_cq *cq)
    1719                 :            : {
    1720                 :            :         uint32_t free_cq_slots;
    1721                 :            : 
    1722   [ +  +  #  # ]:    3649005 :         assert(cq != NULL);
    1723                 :            : 
    1724                 :    3649005 :         free_cq_slots = cq_free_slots(cq);
    1725                 :            : 
    1726         [ +  + ]:    3649005 :         if (spdk_unlikely(free_cq_slots == 0)) {
    1727   [ #  #  #  # ]:         25 :                 cq->last_head = *cq_dbl_headp(cq);
    1728                 :         25 :                 free_cq_slots = cq_free_slots(cq);
    1729                 :          0 :         }
    1730                 :            : 
    1731                 :    3649005 :         return free_cq_slots == 0;
    1732                 :            : }
    1733                 :            : 
    1734                 :            : /*
    1735                 :            :  * Posts a CQE in the completion queue.
    1736                 :            :  *
    1737                 :            :  * @ctrlr: the vfio-user controller
    1738                 :            :  * @cq: the completion queue
    1739                 :            :  * @cdw0: cdw0 as reported by NVMf
    1740                 :            :  * @sqid: submission queue ID
    1741                 :            :  * @cid: command identifier in NVMe command
    1742                 :            :  * @sc: the NVMe CQE status code
    1743                 :            :  * @sct: the NVMe CQE status code type
    1744                 :            :  */
    1745                 :            : static int
    1746                 :    3649177 : post_completion(struct nvmf_vfio_user_ctrlr *ctrlr, struct nvmf_vfio_user_cq *cq,
    1747                 :            :                 uint32_t cdw0, uint16_t sqid, uint16_t cid, uint16_t sc, uint16_t sct)
    1748                 :            : {
    1749                 :    3649177 :         struct spdk_nvme_status cpl_status = { 0 };
    1750                 :            :         struct spdk_nvme_cpl *cpl;
    1751                 :            :         int err;
    1752                 :            : 
    1753   [ +  +  #  # ]:    3649177 :         assert(ctrlr != NULL);
    1754                 :            : 
    1755   [ +  -  +  +  :    3649177 :         if (spdk_unlikely(cq == NULL || q_addr(&cq->mapping) == NULL)) {
                   +  + ]
    1756                 :        172 :                 return 0;
    1757                 :            :         }
    1758                 :            : 
    1759   [ +  +  +  -  :    3649005 :         if (cq->qid == 0) {
                   +  + ]
    1760   [ +  +  +  -  :     373785 :                 assert(spdk_get_thread() == cq->group->group->thread);
          +  -  +  -  +  
          -  +  -  +  -  
                   #  # ]
    1761                 :         77 :         }
    1762                 :            : 
    1763                 :            :         /*
    1764                 :            :          * As per NVMe Base spec 3.3.1.2.1, we are supposed to implement CQ flow
    1765                 :            :          * control: if there is no space in the CQ, we should wait until there is.
    1766                 :            :          *
    1767                 :            :          * In practice, we just fail the controller instead: as it happens, all host
    1768                 :            :          * implementations we care about right-size the CQ: this is required anyway for
    1769                 :            :          * NVMEoF support (see 3.3.2.8).
    1770                 :            :          */
    1771         [ -  + ]:    3649005 :         if (cq_is_full(cq)) {
    1772   [ #  #  #  # ]:          0 :                 SPDK_ERRLOG("%s: cqid:%d full (tail=%d, head=%d)\n",
    1773                 :            :                             ctrlr_id(ctrlr), cq->qid, *cq_tailp(cq),
    1774                 :            :                             *cq_dbl_headp(cq));
    1775                 :          0 :                 return -1;
    1776                 :            :         }
    1777                 :            : 
    1778   [ +  -  +  - ]:    3649005 :         cpl = ((struct spdk_nvme_cpl *)q_addr(&cq->mapping)) + *cq_tailp(cq);
    1779                 :            : 
    1780   [ +  +  +  -  :    3649005 :         assert(ctrlr->sqs[sqid] != NULL);
          +  -  +  -  +  
                -  #  # ]
    1781   [ +  +  +  +  :    3649005 :         SPDK_DEBUGLOG(nvmf_vfio,
          +  -  #  #  #  
             #  #  #  #  
                      # ]
    1782                 :            :                       "%s: request complete sqid:%d cid=%d status=%#x "
    1783                 :            :                       "sqhead=%d cq tail=%d\n", ctrlr_id(ctrlr), sqid, cid, sc,
    1784                 :            :                       *sq_headp(ctrlr->sqs[sqid]), *cq_tailp(cq));
    1785                 :            : 
    1786   [ +  -  +  -  :    3649005 :         cpl->sqhd = *sq_headp(ctrlr->sqs[sqid]);
          +  -  +  -  +  
                -  +  - ]
    1787   [ +  -  +  - ]:    3649005 :         cpl->sqid = sqid;
    1788   [ +  -  +  - ]:    3649005 :         cpl->cid = cid;
    1789   [ +  -  +  - ]:    3649005 :         cpl->cdw0 = cdw0;
    1790                 :            : 
    1791                 :            :         /*
    1792                 :            :          * This is a bitfield: instead of setting the individual bits we need
    1793                 :            :          * directly in cpl->status, which would cause a read-modify-write cycle,
    1794                 :            :          * we'll avoid reading from the CPL altogether by filling in a local
    1795                 :            :          * cpl_status variable, then writing the whole thing.
    1796                 :            :          */
    1797                 :    3649005 :         cpl_status.sct = sct;
    1798                 :    3649005 :         cpl_status.sc = sc;
    1799   [ +  +  +  -  :    3649005 :         cpl_status.p = cq->phase;
                   +  - ]
    1800   [ +  -  +  - ]:    3649005 :         cpl->status = cpl_status;
    1801                 :            : 
    1802                 :            :         /* Ensure the Completion Queue Entry is visible. */
    1803                 :    3649005 :         spdk_wmb();
    1804                 :    3649005 :         cq_tail_advance(cq);
    1805                 :            : 
    1806   [ +  +  +  +  :    3649082 :         if ((cq->qid == 0 || !ctrlr->adaptive_irqs_enabled) &&
          +  +  +  -  +  
             -  +  -  +  
                      - ]
    1807   [ +  +  +  -  :     373785 :             cq->ien && ctrlr_interrupt_enabled(ctrlr)) {
             +  +  +  - ]
    1808   [ #  #  #  #  :        386 :                 err = vfu_irq_trigger(ctrlr->endpoint->vfu_ctx, cq->iv);
          #  #  #  #  #  
                #  #  # ]
    1809         [ -  + ]:        386 :                 if (err != 0) {
    1810                 :          0 :                         SPDK_ERRLOG("%s: failed to trigger interrupt: %m\n",
    1811                 :            :                                     ctrlr_id(ctrlr));
    1812                 :          0 :                         return err;
    1813                 :            :                 }
    1814                 :          0 :         }
    1815                 :            : 
    1816                 :    3649005 :         return 0;
    1817                 :     141067 : }
    1818                 :            : 
    1819                 :            : static void
    1820                 :        631 : free_sq_reqs(struct nvmf_vfio_user_sq *sq)
    1821                 :            : {
    1822   [ +  +  +  -  :      20821 :         while (!TAILQ_EMPTY(&sq->free_reqs)) {
             +  -  +  + ]
    1823   [ +  -  +  -  :      20190 :                 struct nvmf_vfio_user_req *vu_req = TAILQ_FIRST(&sq->free_reqs);
                   +  - ]
    1824   [ +  +  +  -  :      20190 :                 TAILQ_REMOVE(&sq->free_reqs, vu_req, link);
          +  -  +  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  -  +  -  
          +  -  +  -  +  
          -  +  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  +  - ]
    1825                 :      20190 :                 free(vu_req);
    1826                 :            :         }
    1827                 :        631 : }
    1828                 :            : 
    1829                 :            : static void
    1830                 :        292 : delete_cq_done(struct nvmf_vfio_user_ctrlr *ctrlr, struct nvmf_vfio_user_cq *cq)
    1831                 :            : {
    1832   [ +  +  +  -  :        292 :         assert(cq->cq_ref == 0);
             +  -  #  # ]
    1833         [ +  - ]:        292 :         unmap_q(ctrlr, &cq->mapping);
    1834   [ +  -  +  - ]:        292 :         cq->size = 0;
    1835   [ +  -  +  - ]:        292 :         cq->cq_state = VFIO_USER_CQ_DELETED;
    1836   [ +  -  +  - ]:        292 :         cq->group = NULL;
    1837                 :        292 : }
    1838                 :            : 
    1839                 :            : /* Deletes a SQ, if this SQ is the last user of the associated CQ
    1840                 :            :  * and the controller is being shut down/reset or vfio-user client disconnects,
    1841                 :            :  * then the CQ is also deleted.
    1842                 :            :  */
    1843                 :            : static void
    1844                 :        319 : delete_sq_done(struct nvmf_vfio_user_ctrlr *vu_ctrlr, struct nvmf_vfio_user_sq *sq)
    1845                 :            : {
    1846                 :            :         struct nvmf_vfio_user_cq *cq;
    1847                 :            :         uint16_t cqid;
    1848                 :            : 
    1849   [ +  +  +  +  :        319 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: delete sqid:%d=%p done\n", ctrlr_id(vu_ctrlr),
          +  -  #  #  #  
                      # ]
    1850                 :            :                       sq->qid, sq);
    1851                 :            : 
    1852                 :            :         /* Free SQ resources */
    1853         [ +  - ]:        319 :         unmap_q(vu_ctrlr, &sq->mapping);
    1854                 :            : 
    1855                 :        319 :         free_sq_reqs(sq);
    1856                 :            : 
    1857   [ +  -  +  - ]:        319 :         sq->size = 0;
    1858                 :            : 
    1859   [ +  -  +  - ]:        319 :         sq->sq_state = VFIO_USER_SQ_DELETED;
    1860                 :            : 
    1861                 :            :         /* Controller RESET and SHUTDOWN are special cases,
    1862                 :            :          * VM may not send DELETE IO SQ/CQ commands, NVMf library
    1863                 :            :          * will disconnect IO queue pairs.
    1864                 :            :          */
    1865   [ +  +  +  +  :        319 :         if (vu_ctrlr->reset_shn || vu_ctrlr->disconnect) {
          +  +  +  +  +  
          -  +  -  +  -  
                   +  + ]
    1866   [ +  -  +  - ]:        119 :                 cqid = sq->cqid;
    1867   [ +  -  +  -  :        119 :                 cq = vu_ctrlr->cqs[cqid];
             +  -  +  - ]
    1868                 :            : 
    1869   [ +  +  +  +  :        119 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s: try to delete cqid:%u=%p\n", ctrlr_id(vu_ctrlr),
          +  -  #  #  #  
                      # ]
    1870                 :            :                               cq->qid, cq);
    1871                 :            : 
    1872   [ +  +  +  -  :        119 :                 assert(cq->cq_ref > 0);
             +  -  #  # ]
    1873   [ +  -  +  -  :        119 :                 if (--cq->cq_ref == 0) {
                   -  + ]
    1874                 :        119 :                         delete_cq_done(vu_ctrlr, cq);
    1875                 :         75 :                 }
    1876                 :         75 :         }
    1877                 :        319 : }
    1878                 :            : 
    1879                 :            : static void
    1880                 :      62464 : free_qp(struct nvmf_vfio_user_ctrlr *ctrlr, uint16_t qid)
    1881                 :            : {
    1882                 :            :         struct nvmf_vfio_user_sq *sq;
    1883                 :            :         struct nvmf_vfio_user_cq *cq;
    1884                 :            : 
    1885         [ +  + ]:      62464 :         if (ctrlr == NULL) {
    1886                 :          0 :                 return;
    1887                 :            :         }
    1888                 :            : 
    1889   [ +  -  +  -  :      62464 :         sq = ctrlr->sqs[qid];
             +  -  +  - ]
    1890         [ +  + ]:      62464 :         if (sq) {
    1891   [ +  +  +  +  :        312 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s: Free sqid:%u\n", ctrlr_id(ctrlr), qid);
                   +  - ]
    1892         [ +  - ]:        312 :                 unmap_q(ctrlr, &sq->mapping);
    1893                 :            : 
    1894                 :        312 :                 free_sq_reqs(sq);
    1895                 :            : 
    1896   [ +  -  +  -  :        312 :                 free(sq->mapping.sg);
                   +  - ]
    1897                 :        312 :                 free(sq);
    1898   [ +  -  +  -  :        312 :                 ctrlr->sqs[qid] = NULL;
             +  -  +  - ]
    1899                 :         82 :         }
    1900                 :            : 
    1901   [ +  -  +  -  :      62464 :         cq = ctrlr->cqs[qid];
             +  -  +  - ]
    1902         [ +  + ]:      62464 :         if (cq) {
    1903   [ +  +  +  +  :        311 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s: Free cqid:%u\n", ctrlr_id(ctrlr), qid);
                   +  - ]
    1904         [ +  - ]:        311 :                 unmap_q(ctrlr, &cq->mapping);
    1905   [ +  -  +  -  :        311 :                 free(cq->mapping.sg);
                   +  - ]
    1906                 :        311 :                 free(cq);
    1907   [ +  -  +  -  :        311 :                 ctrlr->cqs[qid] = NULL;
             +  -  +  - ]
    1908                 :         82 :         }
    1909                 :      38400 : }
    1910                 :            : 
    1911                 :            : static int
    1912                 :        312 : init_sq(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvmf_transport *transport,
    1913                 :            :         const uint16_t id)
    1914                 :            : {
    1915                 :            :         struct nvmf_vfio_user_sq *sq;
    1916                 :            : 
    1917   [ +  +  #  # ]:        312 :         assert(ctrlr != NULL);
    1918   [ +  +  #  # ]:        312 :         assert(transport != NULL);
    1919   [ +  +  +  -  :        312 :         assert(ctrlr->sqs[id] == NULL);
          +  -  +  -  +  
                -  #  # ]
    1920                 :            : 
    1921                 :        312 :         sq = calloc(1, sizeof(*sq));
    1922         [ +  + ]:        312 :         if (sq == NULL) {
    1923                 :          0 :                 return -ENOMEM;
    1924                 :            :         }
    1925   [ +  -  +  -  :        312 :         sq->mapping.sg = calloc(1, dma_sg_size());
                   +  - ]
    1926   [ +  +  +  -  :        312 :         if (sq->mapping.sg == NULL) {
             +  -  +  - ]
    1927                 :          0 :                 free(sq);
    1928                 :          0 :                 return -ENOMEM;
    1929                 :            :         }
    1930                 :            : 
    1931   [ +  -  +  - ]:        312 :         sq->qid = id;
    1932   [ +  -  +  -  :        312 :         sq->qpair.qid = id;
                   +  - ]
    1933   [ +  -  +  -  :        312 :         sq->qpair.transport = transport;
                   +  - ]
    1934   [ +  -  +  - ]:        312 :         sq->ctrlr = ctrlr;
    1935   [ +  -  +  -  :        312 :         ctrlr->sqs[id] = sq;
             +  -  +  - ]
    1936                 :            : 
    1937   [ +  -  +  -  :        312 :         TAILQ_INIT(&sq->free_reqs);
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    1938                 :            : 
    1939                 :        312 :         return 0;
    1940                 :         82 : }
    1941                 :            : 
    1942                 :            : static int
    1943                 :        311 : init_cq(struct nvmf_vfio_user_ctrlr *vu_ctrlr, const uint16_t id)
    1944                 :            : {
    1945                 :            :         struct nvmf_vfio_user_cq *cq;
    1946                 :            : 
    1947   [ +  +  #  # ]:        311 :         assert(vu_ctrlr != NULL);
    1948   [ +  +  +  -  :        311 :         assert(vu_ctrlr->cqs[id] == NULL);
          +  -  +  -  +  
                -  #  # ]
    1949                 :            : 
    1950                 :        311 :         cq = calloc(1, sizeof(*cq));
    1951         [ +  + ]:        311 :         if (cq == NULL) {
    1952                 :          0 :                 return -ENOMEM;
    1953                 :            :         }
    1954   [ +  -  +  -  :        311 :         cq->mapping.sg = calloc(1, dma_sg_size());
                   +  - ]
    1955   [ +  +  +  -  :        311 :         if (cq->mapping.sg == NULL) {
             +  -  +  - ]
    1956                 :          0 :                 free(cq);
    1957                 :          0 :                 return -ENOMEM;
    1958                 :            :         }
    1959                 :            : 
    1960   [ +  -  +  - ]:        311 :         cq->qid = id;
    1961   [ +  -  +  -  :        311 :         vu_ctrlr->cqs[id] = cq;
             +  -  +  - ]
    1962                 :            : 
    1963                 :        311 :         return 0;
    1964                 :         82 : }
    1965                 :            : 
    1966                 :            : static int
    1967                 :        319 : alloc_sq_reqs(struct nvmf_vfio_user_ctrlr *vu_ctrlr, struct nvmf_vfio_user_sq *sq)
    1968                 :            : {
    1969                 :            :         struct nvmf_vfio_user_req *vu_req, *tmp;
    1970                 :            :         size_t req_size;
    1971                 :            :         uint32_t i;
    1972                 :            : 
    1973                 :        319 :         req_size = sizeof(struct nvmf_vfio_user_req) +
    1974                 :        319 :                    (dma_sg_size() * NVMF_VFIO_USER_MAX_IOVECS);
    1975                 :            : 
    1976   [ +  +  +  -  :      20509 :         for (i = 0; i < sq->size; i++) {
                   +  + ]
    1977                 :            :                 struct spdk_nvmf_request *req;
    1978                 :            : 
    1979                 :      20190 :                 vu_req = calloc(1, req_size);
    1980         [ +  + ]:      20190 :                 if (vu_req == NULL) {
    1981                 :          0 :                         goto err;
    1982                 :            :                 }
    1983                 :            : 
    1984         [ +  - ]:      20190 :                 req = &vu_req->req;
    1985   [ +  -  +  -  :      20190 :                 req->qpair = &sq->qpair;
                   +  - ]
    1986   [ +  -  +  -  :      20190 :                 req->rsp = (union nvmf_c2h_msg *)&vu_req->rsp;
                   +  - ]
    1987   [ +  -  +  -  :      20190 :                 req->cmd = (union nvmf_h2c_msg *)&vu_req->cmd;
                   +  - ]
    1988   [ +  -  +  - ]:      20190 :                 req->stripped_data = NULL;
    1989                 :            : 
    1990   [ +  -  +  -  :      20190 :                 TAILQ_INSERT_TAIL(&sq->free_reqs, vu_req, link);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    1991                 :       3296 :         }
    1992                 :            : 
    1993                 :        319 :         return 0;
    1994                 :            : 
    1995                 :          0 : err:
    1996   [ #  #  #  #  :          0 :         TAILQ_FOREACH_SAFE(vu_req, &sq->free_reqs, link, tmp) {
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    1997                 :          0 :                 free(vu_req);
    1998                 :          0 :         }
    1999                 :          0 :         return -ENOMEM;
    2000                 :         82 : }
    2001                 :            : 
    2002                 :            : static volatile uint32_t *
    2003                 :        391 : ctrlr_doorbell_ptr(struct nvmf_vfio_user_ctrlr *ctrlr)
    2004                 :            : {
    2005   [ +  -  +  -  :        405 :         return ctrlr->sdbl != NULL ?
                   +  - ]
    2006   [ -  +  #  #  :        377 :                ctrlr->sdbl->shadow_doorbells :
             #  #  #  # ]
    2007   [ +  -  +  - ]:         14 :                ctrlr->bar0_doorbells;
    2008                 :            : }
    2009                 :            : 
    2010                 :            : static uint16_t
    2011                 :        200 : handle_create_io_sq(struct nvmf_vfio_user_ctrlr *ctrlr,
    2012                 :            :                     struct spdk_nvme_cmd *cmd, uint16_t *sct)
    2013                 :            : {
    2014   [ +  -  +  - ]:        200 :         struct nvmf_vfio_user_transport *vu_transport = ctrlr->transport;
    2015                 :            :         struct nvmf_vfio_user_sq *sq;
    2016                 :            :         uint32_t qsize;
    2017                 :            :         uint16_t cqid;
    2018                 :            :         uint16_t qid;
    2019                 :            :         int err;
    2020                 :            : 
    2021   [ +  -  +  -  :        200 :         qid = cmd->cdw10_bits.create_io_q.qid;
             +  -  +  - ]
    2022   [ +  -  +  -  :        200 :         cqid = cmd->cdw11_bits.create_io_sq.cqid;
             +  -  +  - ]
    2023   [ +  -  +  -  :        200 :         qsize = cmd->cdw10_bits.create_io_q.qsize + 1;
          +  -  +  -  +  
                      - ]
    2024                 :            : 
    2025   [ +  +  +  -  :        200 :         if (ctrlr->sqs[qid] == NULL) {
          +  -  +  -  -  
                      + ]
    2026   [ +  -  +  -  :        190 :                 err = init_sq(ctrlr, ctrlr->sqs[0]->qpair.transport, qid);
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    2027         [ -  + ]:        190 :                 if (err != 0) {
    2028         [ #  # ]:          0 :                         *sct = SPDK_NVME_SCT_GENERIC;
    2029                 :          0 :                         return SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    2030                 :            :                 }
    2031                 :          7 :         }
    2032                 :            : 
    2033   [ +  +  +  +  :        200 :         if (cqid == 0 || cqid >= vu_transport->transport.opts.max_qpairs_per_ctrlr) {
          +  -  +  -  +  
                -  -  + ]
    2034                 :          2 :                 SPDK_ERRLOG("%s: invalid cqid:%u\n", ctrlr_id(ctrlr), cqid);
    2035         [ #  # ]:          2 :                 *sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2036                 :          2 :                 return SPDK_NVME_SC_INVALID_QUEUE_IDENTIFIER;
    2037                 :            :         }
    2038                 :            : 
    2039                 :            :         /* CQ must be created before SQ. */
    2040         [ +  + ]:        198 :         if (!io_q_exists(ctrlr, cqid, true)) {
    2041                 :          0 :                 SPDK_ERRLOG("%s: cqid:%u does not exist\n", ctrlr_id(ctrlr), cqid);
    2042         [ #  # ]:          0 :                 *sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2043                 :          0 :                 return SPDK_NVME_SC_COMPLETION_QUEUE_INVALID;
    2044                 :            :         }
    2045                 :            : 
    2046   [ +  +  +  -  :        198 :         if (cmd->cdw11_bits.create_io_sq.pc != 0x1) {
          +  -  +  -  -  
                      + ]
    2047                 :          1 :                 SPDK_ERRLOG("%s: non-PC SQ not supported\n", ctrlr_id(ctrlr));
    2048         [ #  # ]:          1 :                 *sct = SPDK_NVME_SCT_GENERIC;
    2049                 :          1 :                 return SPDK_NVME_SC_INVALID_FIELD;
    2050                 :            :         }
    2051                 :            : 
    2052   [ +  -  +  -  :        197 :         sq = ctrlr->sqs[qid];
             +  -  +  - ]
    2053   [ +  -  +  - ]:        197 :         sq->size = qsize;
    2054                 :            : 
    2055   [ +  +  +  +  :        197 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: sqid:%d cqid:%d\n", ctrlr_id(ctrlr),
                   +  - ]
    2056                 :            :                       qid, cqid);
    2057                 :            : 
    2058   [ +  -  +  -  :        197 :         sq->mapping.prp1 = cmd->dptr.prp.prp1;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    2059   [ +  -  +  -  :        197 :         sq->mapping.len = sq->size * sizeof(struct spdk_nvme_cmd);
          +  -  +  -  +  
                      - ]
    2060                 :            : 
    2061   [ +  -  -  +  :        197 :         err = map_q(ctrlr, &sq->mapping, MAP_INITIALIZE);
                   +  - ]
    2062         [ -  + ]:        197 :         if (err) {
    2063                 :          0 :                 SPDK_ERRLOG("%s: failed to map I/O queue: %m\n", ctrlr_id(ctrlr));
    2064         [ #  # ]:          0 :                 *sct = SPDK_NVME_SCT_GENERIC;
    2065                 :          0 :                 return SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    2066                 :            :         }
    2067                 :            : 
    2068   [ +  +  +  +  :        197 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: mapped sqid:%d IOVA=%#lx vaddr=%p\n",
          +  -  #  #  #  
          #  #  #  #  #  
                   #  # ]
    2069                 :            :                       ctrlr_id(ctrlr), qid, cmd->dptr.prp.prp1,
    2070                 :            :                       q_addr(&sq->mapping));
    2071                 :            : 
    2072                 :        197 :         err = alloc_sq_reqs(ctrlr, sq);
    2073         [ +  + ]:        197 :         if (err < 0) {
    2074                 :          0 :                 SPDK_ERRLOG("%s: failed to allocate SQ requests: %m\n", ctrlr_id(ctrlr));
    2075         [ #  # ]:          0 :                 *sct = SPDK_NVME_SCT_GENERIC;
    2076                 :          0 :                 return SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    2077                 :            :         }
    2078                 :            : 
    2079   [ +  -  +  - ]:        197 :         sq->cqid = cqid;
    2080   [ +  -  +  -  :        197 :         ctrlr->cqs[sq->cqid]->cq_ref++;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    2081   [ +  -  +  - ]:        197 :         sq->sq_state = VFIO_USER_SQ_CREATED;
    2082                 :        197 :         *sq_headp(sq) = 0;
    2083                 :            : 
    2084   [ +  -  +  -  :        197 :         sq->dbl_tailp = ctrlr_doorbell_ptr(ctrlr) + queue_index(qid, false);
                   +  - ]
    2085                 :            : 
    2086                 :            :         /*
    2087                 :            :          * We should always reset the doorbells.
    2088                 :            :          *
    2089                 :            :          * The Specification prohibits the controller from writing to the shadow
    2090                 :            :          * doorbell buffer, however older versions of the Linux NVMe driver
    2091                 :            :          * don't reset the shadow doorbell buffer after a Queue-Level or
    2092                 :            :          * Controller-Level reset, which means that we're left with garbage
    2093                 :            :          * doorbell values.
    2094                 :            :          */
    2095                 :        197 :         *sq_dbl_tailp(sq) = 0;
    2096                 :            : 
    2097   [ +  +  +  -  :        197 :         if (ctrlr->sdbl != NULL) {
                   +  - ]
    2098   [ #  #  #  # ]:          0 :                 sq->need_rearm = true;
    2099                 :            : 
    2100         [ #  # ]:          0 :                 if (!set_sq_eventidx(sq)) {
    2101                 :          0 :                         SPDK_ERRLOG("%s: host updated SQ tail doorbell before "
    2102                 :            :                                     "sqid:%hu was initialized\n",
    2103                 :            :                                     ctrlr_id(ctrlr), qid);
    2104                 :          0 :                         fail_ctrlr(ctrlr);
    2105         [ #  # ]:          0 :                         *sct = SPDK_NVME_SCT_GENERIC;
    2106                 :          0 :                         return SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    2107                 :            :                 }
    2108                 :          0 :         }
    2109                 :            : 
    2110                 :            :         /*
    2111                 :            :          * Create our new I/O qpair. This asynchronously invokes, on a suitable
    2112                 :            :          * poll group, the nvmf_vfio_user_poll_group_add() callback, which will
    2113                 :            :          * call spdk_nvmf_request_exec() with a generated fabrics
    2114                 :            :          * connect command. This command is then eventually completed via
    2115                 :            :          * handle_queue_connect_rsp().
    2116                 :            :          */
    2117         [ +  - ]:        197 :         sq->create_io_sq_cmd = *cmd;
    2118   [ +  -  +  - ]:        197 :         sq->post_create_io_sq_completion = true;
    2119                 :            : 
    2120   [ +  -  +  -  :        197 :         spdk_nvmf_tgt_new_qpair(ctrlr->transport->transport.tgt,
          +  -  +  -  +  
                      - ]
    2121         [ +  - ]:          7 :                                 &sq->qpair);
    2122                 :            : 
    2123         [ +  - ]:        197 :         *sct = SPDK_NVME_SCT_GENERIC;
    2124                 :        197 :         return SPDK_NVME_SC_SUCCESS;
    2125                 :          7 : }
    2126                 :            : 
    2127                 :            : static uint16_t
    2128                 :        196 : handle_create_io_cq(struct nvmf_vfio_user_ctrlr *ctrlr,
    2129                 :            :                     struct spdk_nvme_cmd *cmd, uint16_t *sct)
    2130                 :            : {
    2131                 :            :         struct nvmf_vfio_user_cq *cq;
    2132                 :            :         uint32_t qsize;
    2133                 :            :         uint16_t qid;
    2134                 :            :         int err;
    2135                 :            : 
    2136   [ +  -  +  -  :        196 :         qid = cmd->cdw10_bits.create_io_q.qid;
             +  -  +  - ]
    2137   [ +  -  +  -  :        196 :         qsize = cmd->cdw10_bits.create_io_q.qsize + 1;
          +  -  +  -  +  
                      - ]
    2138                 :            : 
    2139   [ +  +  +  -  :        196 :         if (ctrlr->cqs[qid] == NULL) {
          +  -  +  -  -  
                      + ]
    2140                 :        189 :                 err = init_cq(ctrlr, qid);
    2141         [ -  + ]:        189 :                 if (err != 0) {
    2142         [ #  # ]:          0 :                         *sct = SPDK_NVME_SCT_GENERIC;
    2143                 :          0 :                         return SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    2144                 :            :                 }
    2145                 :          7 :         }
    2146                 :            : 
    2147   [ +  +  +  -  :        196 :         if (cmd->cdw11_bits.create_io_cq.pc != 0x1) {
          +  -  +  -  -  
                      + ]
    2148                 :          1 :                 SPDK_ERRLOG("%s: non-PC CQ not supported\n", ctrlr_id(ctrlr));
    2149         [ #  # ]:          1 :                 *sct = SPDK_NVME_SCT_GENERIC;
    2150                 :          1 :                 return SPDK_NVME_SC_INVALID_FIELD;
    2151                 :            :         }
    2152                 :            : 
    2153   [ +  +  +  -  :        195 :         if (cmd->cdw11_bits.create_io_cq.iv > NVMF_VFIO_USER_MSIX_NUM - 1) {
          +  -  +  -  -  
                      + ]
    2154                 :          1 :                 SPDK_ERRLOG("%s: IV is too big\n", ctrlr_id(ctrlr));
    2155         [ #  # ]:          1 :                 *sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2156                 :          1 :                 return SPDK_NVME_SC_INVALID_INTERRUPT_VECTOR;
    2157                 :            :         }
    2158                 :            : 
    2159   [ +  -  +  -  :        194 :         cq = ctrlr->cqs[qid];
             +  -  +  - ]
    2160   [ +  -  +  - ]:        194 :         cq->size = qsize;
    2161                 :            : 
    2162   [ +  -  +  -  :        194 :         cq->mapping.prp1 = cmd->dptr.prp.prp1;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    2163   [ +  -  +  -  :        194 :         cq->mapping.len = cq->size * sizeof(struct spdk_nvme_cpl);
          +  -  +  -  +  
                      - ]
    2164                 :            : 
    2165   [ +  -  +  -  :        194 :         cq->dbl_headp = ctrlr_doorbell_ptr(ctrlr) + queue_index(qid, true);
                   +  - ]
    2166                 :            : 
    2167   [ +  -  -  +  :        194 :         err = map_q(ctrlr, &cq->mapping, MAP_RW | MAP_INITIALIZE);
          +  -  -  +  +  
                      - ]
    2168         [ +  + ]:        194 :         if (err) {
    2169                 :          0 :                 SPDK_ERRLOG("%s: failed to map I/O queue: %m\n", ctrlr_id(ctrlr));
    2170         [ #  # ]:          0 :                 *sct = SPDK_NVME_SCT_GENERIC;
    2171                 :          0 :                 return SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    2172                 :            :         }
    2173                 :            : 
    2174   [ +  +  +  +  :        194 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: mapped cqid:%u IOVA=%#lx vaddr=%p\n",
          +  -  #  #  #  
          #  #  #  #  #  
                   #  # ]
    2175                 :            :                       ctrlr_id(ctrlr), qid, cmd->dptr.prp.prp1,
    2176                 :            :                       q_addr(&cq->mapping));
    2177                 :            : 
    2178   [ +  -  +  -  :        194 :         cq->ien = cmd->cdw11_bits.create_io_cq.ien;
          +  -  +  -  +  
                -  +  - ]
    2179   [ +  -  +  -  :        194 :         cq->iv = cmd->cdw11_bits.create_io_cq.iv;
          +  -  +  -  +  
                -  +  - ]
    2180   [ +  -  +  - ]:        194 :         cq->phase = true;
    2181   [ +  -  +  - ]:        194 :         cq->cq_state = VFIO_USER_CQ_CREATED;
    2182                 :            : 
    2183                 :        194 :         *cq_tailp(cq) = 0;
    2184                 :            : 
    2185                 :            :         /*
    2186                 :            :          * We should always reset the doorbells.
    2187                 :            :          *
    2188                 :            :          * The Specification prohibits the controller from writing to the shadow
    2189                 :            :          * doorbell buffer, however older versions of the Linux NVMe driver
    2190                 :            :          * don't reset the shadow doorbell buffer after a Queue-Level or
    2191                 :            :          * Controller-Level reset, which means that we're left with garbage
    2192                 :            :          * doorbell values.
    2193                 :            :          */
    2194                 :        194 :         *cq_dbl_headp(cq) = 0;
    2195                 :            : 
    2196         [ +  - ]:        194 :         *sct = SPDK_NVME_SCT_GENERIC;
    2197                 :        194 :         return SPDK_NVME_SC_SUCCESS;
    2198                 :          7 : }
    2199                 :            : 
    2200                 :            : /*
    2201                 :            :  * Creates a completion or submission I/O queue. Returns 0 on success, -errno
    2202                 :            :  * on error.
    2203                 :            :  */
    2204                 :            : static int
    2205                 :       3202 : handle_create_io_q(struct nvmf_vfio_user_ctrlr *ctrlr,
    2206                 :            :                    struct spdk_nvme_cmd *cmd, const bool is_cq)
    2207                 :            : {
    2208   [ +  -  +  - ]:       3202 :         struct nvmf_vfio_user_transport *vu_transport = ctrlr->transport;
    2209                 :       3202 :         uint16_t sct = SPDK_NVME_SCT_GENERIC;
    2210                 :       3202 :         uint16_t sc = SPDK_NVME_SC_SUCCESS;
    2211                 :            :         uint32_t qsize;
    2212                 :            :         uint16_t qid;
    2213                 :            : 
    2214   [ +  +  #  # ]:       3202 :         assert(ctrlr != NULL);
    2215   [ +  +  #  # ]:       3202 :         assert(cmd != NULL);
    2216                 :            : 
    2217   [ +  -  +  -  :       3202 :         qid = cmd->cdw10_bits.create_io_q.qid;
             +  -  +  - ]
    2218   [ +  -  +  +  :       3202 :         if (qid == 0 || qid >= vu_transport->transport.opts.max_qpairs_per_ctrlr) {
          +  -  +  -  +  
                -  -  + ]
    2219   [ #  #  #  #  :       2797 :                 SPDK_ERRLOG("%s: invalid qid=%d, max=%d\n", ctrlr_id(ctrlr),
             #  #  #  # ]
    2220                 :            :                             qid, vu_transport->transport.opts.max_qpairs_per_ctrlr);
    2221                 :       2797 :                 sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2222                 :       2797 :                 sc = SPDK_NVME_SC_INVALID_QUEUE_IDENTIFIER;
    2223                 :       2797 :                 goto out;
    2224                 :            :         }
    2225                 :            : 
    2226   [ +  +  -  + ]:        405 :         if (io_q_exists(ctrlr, qid, is_cq)) {
    2227         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: %cqid:%d already exists\n", ctrlr_id(ctrlr),
    2228                 :            :                             is_cq ? 'c' : 's', qid);
    2229                 :          0 :                 sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2230                 :          0 :                 sc = SPDK_NVME_SC_INVALID_QUEUE_IDENTIFIER;
    2231                 :          0 :                 goto out;
    2232                 :            :         }
    2233                 :            : 
    2234   [ +  -  +  -  :        405 :         qsize = cmd->cdw10_bits.create_io_q.qsize + 1;
          +  -  +  -  +  
                      - ]
    2235   [ +  +  +  + ]:        405 :         if (qsize == 1 || qsize > max_queue_size(ctrlr)) {
    2236                 :          9 :                 SPDK_ERRLOG("%s: invalid I/O queue size %u\n", ctrlr_id(ctrlr), qsize);
    2237                 :          9 :                 sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2238                 :          9 :                 sc = SPDK_NVME_SC_INVALID_QUEUE_SIZE;
    2239                 :          9 :                 goto out;
    2240                 :            :         }
    2241                 :            : 
    2242   [ +  +  +  + ]:        403 :         if (is_cq) {
    2243                 :        196 :                 sc = handle_create_io_cq(ctrlr, cmd, &sct);
    2244                 :          7 :         } else {
    2245                 :        200 :                 sc = handle_create_io_sq(ctrlr, cmd, &sct);
    2246                 :            : 
    2247   [ +  +  +  + ]:        200 :                 if (sct == SPDK_NVME_SCT_GENERIC &&
    2248                 :          7 :                     sc == SPDK_NVME_SC_SUCCESS) {
    2249                 :            :                         /* Completion posted asynchronously. */
    2250                 :        197 :                         return 0;
    2251                 :            :                 }
    2252                 :            :         }
    2253                 :            : 
    2254                 :         32 : out:
    2255   [ +  -  +  -  :       3005 :         return post_completion(ctrlr, ctrlr->cqs[0], 0, 0, cmd->cid, sc, sct);
          +  -  +  -  +  
                -  +  - ]
    2256                 :         14 : }
    2257                 :            : 
    2258                 :            : /* For ADMIN I/O DELETE SUBMISSION QUEUE the NVMf library will disconnect and free
    2259                 :            :  * queue pair, so save the command id and controller in a context.
    2260                 :            :  */
    2261                 :            : struct vfio_user_delete_sq_ctx {
    2262                 :            :         struct nvmf_vfio_user_ctrlr *vu_ctrlr;
    2263                 :            :         uint16_t cid;
    2264                 :            : };
    2265                 :            : 
    2266                 :            : static void
    2267                 :        300 : vfio_user_qpair_delete_cb(void *cb_arg)
    2268                 :            : {
    2269                 :        300 :         struct vfio_user_delete_sq_ctx *ctx = cb_arg;
    2270   [ +  -  +  - ]:        300 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = ctx->vu_ctrlr;
    2271   [ +  -  +  -  :        300 :         struct nvmf_vfio_user_cq *admin_cq = vu_ctrlr->cqs[0];
             +  -  +  - ]
    2272                 :            : 
    2273   [ +  +  #  # ]:        300 :         assert(admin_cq != NULL);
    2274   [ +  +  +  -  :        300 :         assert(admin_cq->group != NULL);
             +  -  #  # ]
    2275   [ +  +  +  -  :        300 :         assert(admin_cq->group->group->thread != NULL);
          +  -  +  -  +  
          -  +  -  +  -  
                   #  # ]
    2276   [ +  +  +  -  :        300 :         if (admin_cq->group->group->thread != spdk_get_thread()) {
          +  -  +  -  +  
             -  +  -  -  
                      + ]
    2277   [ #  #  #  #  :        124 :                 spdk_thread_send_msg(admin_cq->group->group->thread,
          #  #  #  #  #  
                #  #  # ]
    2278                 :            :                                      vfio_user_qpair_delete_cb,
    2279                 :          0 :                                      cb_arg);
    2280                 :          0 :         } else {
    2281                 :        183 :                 post_completion(vu_ctrlr, admin_cq, 0, 0,
    2282   [ +  -  +  - ]:        176 :                                 ctx->cid,
    2283                 :            :                                 SPDK_NVME_SC_SUCCESS, SPDK_NVME_SCT_GENERIC);
    2284                 :        176 :                 free(ctx);
    2285                 :            :         }
    2286                 :        300 : }
    2287                 :            : 
    2288                 :            : /*
    2289                 :            :  * Deletes a completion or submission I/O queue.
    2290                 :            :  */
    2291                 :            : static int
    2292                 :       3206 : handle_del_io_q(struct nvmf_vfio_user_ctrlr *ctrlr,
    2293                 :            :                 struct spdk_nvme_cmd *cmd, const bool is_cq)
    2294                 :            : {
    2295                 :       3206 :         uint16_t sct = SPDK_NVME_SCT_GENERIC;
    2296                 :       3206 :         uint16_t sc = SPDK_NVME_SC_SUCCESS;
    2297                 :            :         struct nvmf_vfio_user_sq *sq;
    2298                 :            :         struct nvmf_vfio_user_cq *cq;
    2299                 :            : 
    2300   [ +  +  +  +  :       3206 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: delete I/O %cqid:%d\n",
          +  -  #  #  #  
          #  #  #  #  #  
                   #  # ]
    2301                 :            :                       ctrlr_id(ctrlr), is_cq ? 'c' : 's',
    2302                 :            :                       cmd->cdw10_bits.delete_io_q.qid);
    2303                 :            : 
    2304   [ +  +  +  -  :       3206 :         if (!io_q_exists(ctrlr, cmd->cdw10_bits.delete_io_q.qid, is_cq)) {
          +  -  +  -  +  
                -  +  - ]
    2305   [ +  +  #  #  :       2855 :                 SPDK_ERRLOG("%s: I/O %cqid:%d does not exist\n", ctrlr_id(ctrlr),
          #  #  #  #  #  
                      # ]
    2306                 :            :                             is_cq ? 'c' : 's', cmd->cdw10_bits.delete_io_q.qid);
    2307                 :       2855 :                 sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2308                 :       2855 :                 sc = SPDK_NVME_SC_INVALID_QUEUE_IDENTIFIER;
    2309                 :       2855 :                 goto out;
    2310                 :            :         }
    2311                 :            : 
    2312   [ +  +  +  + ]:        358 :         if (is_cq) {
    2313   [ +  -  +  -  :        175 :                 cq = ctrlr->cqs[cmd->cdw10_bits.delete_io_q.qid];
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    2314   [ +  +  +  -  :        175 :                 if (cq->cq_ref) {
                   -  + ]
    2315                 :          2 :                         SPDK_ERRLOG("%s: the associated SQ must be deleted first\n", ctrlr_id(ctrlr));
    2316                 :          2 :                         sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
    2317                 :          2 :                         sc = SPDK_NVME_SC_INVALID_QUEUE_DELETION;
    2318                 :          2 :                         goto out;
    2319                 :            :                 }
    2320                 :        173 :                 delete_cq_done(ctrlr, cq);
    2321                 :          7 :         } else {
    2322                 :            :                 /*
    2323                 :            :                  * Deletion of the CQ is only deferred to delete_sq_done() on
    2324                 :            :                  * VM reboot or CC.EN change, so we have to delete it in all
    2325                 :            :                  * other cases.
    2326                 :            :                  */
    2327   [ +  -  +  -  :        176 :                 sq = ctrlr->sqs[cmd->cdw10_bits.delete_io_q.qid];
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    2328   [ +  -  +  - ]:        176 :                 sq->delete_ctx = calloc(1, sizeof(*sq->delete_ctx));
    2329   [ +  +  +  -  :        176 :                 if (!sq->delete_ctx) {
                   +  - ]
    2330                 :          0 :                         sct = SPDK_NVME_SCT_GENERIC;
    2331                 :          0 :                         sc = SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    2332                 :          0 :                         goto out;
    2333                 :            :                 }
    2334   [ +  -  +  -  :        176 :                 sq->delete_ctx->vu_ctrlr = ctrlr;
             +  -  +  - ]
    2335   [ +  -  +  -  :        176 :                 sq->delete_ctx->cid = cmd->cid;
          +  -  +  -  +  
                -  +  - ]
    2336   [ +  -  +  - ]:        176 :                 sq->sq_state = VFIO_USER_SQ_DELETED;
    2337   [ +  +  +  -  :        176 :                 assert(ctrlr->cqs[sq->cqid]->cq_ref);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  #  
                      # ]
    2338   [ +  -  +  -  :        176 :                 ctrlr->cqs[sq->cqid]->cq_ref--;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    2339                 :            : 
    2340         [ +  - ]:        176 :                 spdk_nvmf_qpair_disconnect(&sq->qpair);
    2341                 :        176 :                 return 0;
    2342                 :            :         }
    2343                 :            : 
    2344                 :       3023 : out:
    2345   [ +  -  +  -  :       3030 :         return post_completion(ctrlr, ctrlr->cqs[0], 0, 0, cmd->cid, sc, sct);
          +  -  +  -  +  
                -  +  - ]
    2346                 :         14 : }
    2347                 :            : 
    2348                 :            : /*
    2349                 :            :  * Configures Shadow Doorbells.
    2350                 :            :  */
    2351                 :            : static int
    2352                 :          0 : handle_doorbell_buffer_config(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvme_cmd *cmd)
    2353                 :            : {
    2354                 :          0 :         struct nvmf_vfio_user_shadow_doorbells *sdbl = NULL;
    2355                 :            :         uint32_t dstrd;
    2356                 :            :         uintptr_t page_size, page_mask;
    2357                 :            :         uint64_t prp1, prp2;
    2358                 :          0 :         uint16_t sct = SPDK_NVME_SCT_GENERIC;
    2359                 :          0 :         uint16_t sc = SPDK_NVME_SC_INVALID_FIELD;
    2360                 :            : 
    2361   [ #  #  #  # ]:          0 :         assert(ctrlr != NULL);
    2362   [ #  #  #  #  :          0 :         assert(ctrlr->endpoint != NULL);
             #  #  #  # ]
    2363   [ #  #  #  # ]:          0 :         assert(cmd != NULL);
    2364                 :            : 
    2365                 :          0 :         dstrd = doorbell_stride(ctrlr);
    2366                 :          0 :         page_size = memory_page_size(ctrlr);
    2367                 :          0 :         page_mask = memory_page_mask(ctrlr);
    2368                 :            : 
    2369                 :            :         /* FIXME: we don't check doorbell stride when setting queue doorbells. */
    2370   [ #  #  #  # ]:          0 :         if ((4u << dstrd) * NVMF_VFIO_USER_DEFAULT_MAX_QPAIRS_PER_CTRLR > page_size) {
    2371                 :          0 :                 SPDK_ERRLOG("%s: doorbells do not fit in a single host page",
    2372                 :            :                             ctrlr_id(ctrlr));
    2373                 :            : 
    2374                 :          0 :                 goto out;
    2375                 :            :         }
    2376                 :            : 
    2377                 :            :         /* Verify guest physical addresses passed as PRPs. */
    2378   [ #  #  #  # ]:          0 :         if (cmd->psdt != SPDK_NVME_PSDT_PRP) {
    2379                 :          0 :                 SPDK_ERRLOG("%s: received Doorbell Buffer Config without PRPs",
    2380                 :            :                             ctrlr_id(ctrlr));
    2381                 :            : 
    2382                 :          0 :                 goto out;
    2383                 :            :         }
    2384                 :            : 
    2385   [ #  #  #  #  :          0 :         prp1 = cmd->dptr.prp.prp1;
             #  #  #  # ]
    2386   [ #  #  #  #  :          0 :         prp2 = cmd->dptr.prp.prp2;
             #  #  #  # ]
    2387                 :            : 
    2388   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio,
                   #  # ]
    2389                 :            :                       "%s: configuring shadow doorbells with PRP1=%#lx and PRP2=%#lx (GPAs)\n",
    2390                 :            :                       ctrlr_id(ctrlr), prp1, prp2);
    2391                 :            : 
    2392         [ #  # ]:          0 :         if (prp1 == prp2
    2393         [ #  # ]:          0 :             || prp1 != (prp1 & page_mask)
    2394         [ #  # ]:          0 :             || prp2 != (prp2 & page_mask)) {
    2395                 :          0 :                 SPDK_ERRLOG("%s: invalid shadow doorbell GPAs\n",
    2396                 :            :                             ctrlr_id(ctrlr));
    2397                 :            : 
    2398                 :          0 :                 goto out;
    2399                 :            :         }
    2400                 :            : 
    2401                 :            :         /* Map guest physical addresses to our virtual address space. */
    2402   [ #  #  #  #  :          0 :         sdbl = map_sdbl(ctrlr->endpoint->vfu_ctx, prp1, prp2, page_size);
             #  #  #  # ]
    2403         [ #  # ]:          0 :         if (sdbl == NULL) {
    2404                 :          0 :                 SPDK_ERRLOG("%s: failed to map shadow doorbell buffers\n",
    2405                 :            :                             ctrlr_id(ctrlr));
    2406                 :            : 
    2407                 :          0 :                 goto out;
    2408                 :            :         }
    2409                 :            : 
    2410   [ #  #  #  # ]:          0 :         ctrlr->shadow_doorbell_buffer = prp1;
    2411   [ #  #  #  # ]:          0 :         ctrlr->eventidx_buffer = prp2;
    2412                 :            : 
    2413   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio,
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    2414                 :            :                       "%s: mapped shadow doorbell buffers [%p, %p) and [%p, %p)\n",
    2415                 :            :                       ctrlr_id(ctrlr),
    2416                 :            :                       sdbl->iovs[0].iov_base,
    2417                 :            :                       sdbl->iovs[0].iov_base + sdbl->iovs[0].iov_len,
    2418                 :            :                       sdbl->iovs[1].iov_base,
    2419                 :            :                       sdbl->iovs[1].iov_base + sdbl->iovs[1].iov_len);
    2420                 :            : 
    2421                 :            : 
    2422                 :            :         /*
    2423                 :            :          * Set all possible CQ head doorbells to polling mode now, such that we
    2424                 :            :          * don't have to worry about it later if the host creates more queues.
    2425                 :            :          *
    2426                 :            :          * We only ever want interrupts for writes to the SQ tail doorbells
    2427                 :            :          * (which are initialised in set_ctrlr_intr_mode() below).
    2428                 :            :          */
    2429         [ #  # ]:          0 :         for (uint16_t i = 0; i < NVMF_VFIO_USER_DEFAULT_MAX_QPAIRS_PER_CTRLR; ++i) {
    2430   [ #  #  #  #  :          0 :                 sdbl->eventidxs[queue_index(i, true)] = NVMF_VFIO_USER_EVENTIDX_POLL;
                   #  # ]
    2431                 :          0 :         }
    2432                 :            : 
    2433                 :            :         /* Update controller. */
    2434   [ #  #  #  #  :          0 :         SWAP(ctrlr->sdbl, sdbl);
             #  #  #  # ]
    2435                 :            : 
    2436                 :            :         /*
    2437                 :            :          * Copy doorbells from either the previous shadow doorbell buffer or the
    2438                 :            :          * BAR0 doorbells and make I/O queue doorbells point to the new buffer.
    2439                 :            :          *
    2440                 :            :          * This needs to account for older versions of the Linux NVMe driver,
    2441                 :            :          * which don't clear out the buffer after a controller reset.
    2442                 :            :          */
    2443         [ #  # ]:          0 :         copy_doorbells(ctrlr, sdbl != NULL ?
    2444   [ #  #  #  #  :          0 :                        sdbl->shadow_doorbells : ctrlr->bar0_doorbells,
             #  #  #  # ]
    2445   [ #  #  #  #  :          0 :                        ctrlr->sdbl->shadow_doorbells);
             #  #  #  # ]
    2446                 :            : 
    2447                 :          0 :         vfio_user_ctrlr_switch_doorbells(ctrlr, true);
    2448                 :            : 
    2449                 :          0 :         ctrlr_kick(ctrlr);
    2450                 :            : 
    2451                 :          0 :         sc = SPDK_NVME_SC_SUCCESS;
    2452                 :            : 
    2453                 :          0 : out:
    2454                 :            :         /*
    2455                 :            :          * Unmap existing buffers, in case Doorbell Buffer Config was sent
    2456                 :            :          * more than once (pointless, but not prohibited by the spec), or
    2457                 :            :          * in case of an error.
    2458                 :            :          *
    2459                 :            :          * If this is the first time Doorbell Buffer Config was processed,
    2460                 :            :          * then we've just swapped a NULL from ctrlr->sdbl into sdbl, so
    2461                 :            :          * free_sdbl() becomes a noop.
    2462                 :            :          */
    2463   [ #  #  #  #  :          0 :         free_sdbl(ctrlr->endpoint->vfu_ctx, sdbl);
             #  #  #  # ]
    2464                 :            : 
    2465   [ #  #  #  #  :          0 :         return post_completion(ctrlr, ctrlr->cqs[0], 0, 0, cmd->cid, sc, sct);
          #  #  #  #  #  
                #  #  # ]
    2466                 :            : }
    2467                 :            : 
    2468                 :            : /* Returns 0 on success and -errno on error. */
    2469                 :            : static int
    2470                 :     373965 : consume_admin_cmd(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvme_cmd *cmd)
    2471                 :            : {
    2472   [ +  +  #  # ]:     373965 :         assert(ctrlr != NULL);
    2473   [ +  +  #  # ]:     373965 :         assert(cmd != NULL);
    2474                 :            : 
    2475   [ +  +  -  + ]:     373965 :         if (cmd->fuse != 0) {
    2476                 :            :                 /* Fused admin commands are not supported. */
    2477   [ #  #  #  #  :          2 :                 return post_completion(ctrlr, ctrlr->cqs[0], 0, 0, cmd->cid,
          #  #  #  #  #  
                #  #  # ]
    2478                 :            :                                        SPDK_NVME_SC_INVALID_FIELD,
    2479                 :            :                                        SPDK_NVME_SCT_GENERIC);
    2480                 :            :         }
    2481                 :            : 
    2482   [ +  +  +  +  :     373963 :         switch (cmd->opc) {
                   +  - ]
    2483                 :       3188 :         case SPDK_NVME_OPC_CREATE_IO_CQ:
    2484                 :            :         case SPDK_NVME_OPC_CREATE_IO_SQ:
    2485                 :       3202 :                 return handle_create_io_q(ctrlr, cmd,
    2486         [ +  - ]:       3202 :                                           cmd->opc == SPDK_NVME_OPC_CREATE_IO_CQ);
    2487                 :       3192 :         case SPDK_NVME_OPC_DELETE_IO_SQ:
    2488                 :            :         case SPDK_NVME_OPC_DELETE_IO_CQ:
    2489                 :       3206 :                 return handle_del_io_q(ctrlr, cmd,
    2490         [ +  - ]:       3206 :                                        cmd->opc == SPDK_NVME_OPC_DELETE_IO_CQ);
    2491                 :       1402 :         case SPDK_NVME_OPC_DOORBELL_BUFFER_CONFIG:
    2492   [ -  +  #  #  :       1402 :                 SPDK_NOTICELOG("%s: requested shadow doorbells (supported: %d)\n",
          #  #  #  #  #  
                #  #  # ]
    2493                 :            :                                ctrlr_id(ctrlr),
    2494                 :            :                                !ctrlr->transport->transport_opts.disable_shadow_doorbells);
    2495   [ -  +  -  +  :       1402 :                 if (!ctrlr->transport->transport_opts.disable_shadow_doorbells) {
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    2496                 :          0 :                         return handle_doorbell_buffer_config(ctrlr, cmd);
    2497                 :            :                 }
    2498                 :            :         /* FALLTHROUGH */
    2499                 :            :         default:
    2500   [ +  -  +  -  :     367555 :                 return handle_cmd_req(ctrlr, cmd, ctrlr->sqs[0]);
             +  -  +  - ]
    2501                 :            :         }
    2502                 :        105 : }
    2503                 :            : 
    2504                 :            : static int
    2505                 :    3642767 : handle_cmd_rsp(struct nvmf_vfio_user_req *vu_req, void *cb_arg)
    2506                 :            : {
    2507                 :    3642767 :         struct nvmf_vfio_user_sq *sq = cb_arg;
    2508   [ +  -  +  - ]:    3642767 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = sq->ctrlr;
    2509                 :            :         uint16_t sqid, cqid;
    2510                 :            : 
    2511   [ +  +  #  # ]:    3642767 :         assert(sq != NULL);
    2512   [ +  +  #  # ]:    3642767 :         assert(vu_req != NULL);
    2513   [ +  +  #  # ]:    3642767 :         assert(vu_ctrlr != NULL);
    2514                 :            : 
    2515   [ +  +  +  -  :    3642767 :         if (spdk_likely(vu_req->iovcnt)) {
                   +  + ]
    2516   [ +  -  +  -  :    1980287 :                 vfu_sgl_put(vu_ctrlr->endpoint->vfu_ctx,
             +  -  +  - ]
    2517         [ +  - ]:    1839297 :                             index_to_sg_t(vu_req->sg, 0),
    2518   [ +  -  +  -  :    1839297 :                             vu_req->iov, vu_req->iovcnt);
                   +  - ]
    2519                 :     140990 :         }
    2520   [ +  -  +  - ]:    3642767 :         sqid = sq->qid;
    2521   [ +  -  +  - ]:    3642767 :         cqid = sq->cqid;
    2522                 :            : 
    2523   [ +  -  +  -  :    3783806 :         return post_completion(vu_ctrlr, vu_ctrlr->cqs[cqid],
             +  -  +  - ]
    2524   [ +  -  +  -  :    3642767 :                                vu_req->req.rsp->nvme_cpl.cdw0,
          +  -  +  -  +  
                -  +  - ]
    2525                 :     141039 :                                sqid,
    2526   [ +  -  +  -  :    3642767 :                                vu_req->req.cmd->nvme_cmd.cid,
          +  -  +  -  +  
                -  +  - ]
    2527   [ +  -  +  -  :    3642767 :                                vu_req->req.rsp->nvme_cpl.status.sc,
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    2528   [ +  -  +  -  :    3642767 :                                vu_req->req.rsp->nvme_cpl.status.sct);
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    2529                 :            : }
    2530                 :            : 
    2531                 :            : static int
    2532                 :    3649185 : consume_cmd(struct nvmf_vfio_user_ctrlr *ctrlr, struct nvmf_vfio_user_sq *sq,
    2533                 :            :             struct spdk_nvme_cmd *cmd)
    2534                 :            : {
    2535   [ +  +  #  # ]:    3649185 :         assert(sq != NULL);
    2536   [ +  +  +  + ]:    3649185 :         if (spdk_unlikely(nvmf_qpair_is_admin_queue(&sq->qpair))) {
    2537                 :     373965 :                 return consume_admin_cmd(ctrlr, cmd);
    2538                 :            :         }
    2539                 :            : 
    2540                 :    3275220 :         return handle_cmd_req(ctrlr, cmd, sq);
    2541                 :     141067 : }
    2542                 :            : 
    2543                 :            : /* Returns the number of commands processed, or a negative value on error. */
    2544                 :            : static int
    2545                 :     446663 : handle_sq_tdbl_write(struct nvmf_vfio_user_ctrlr *ctrlr, const uint32_t new_tail,
    2546                 :            :                      struct nvmf_vfio_user_sq *sq)
    2547                 :            : {
    2548                 :            :         struct spdk_nvme_cmd *queue;
    2549   [ +  -  +  -  :     446663 :         struct nvmf_vfio_user_cq *cq = ctrlr->cqs[sq->cqid];
          +  -  +  -  +  
                -  +  - ]
    2550                 :     446663 :         int count = 0;
    2551                 :            :         uint32_t free_cq_slots;
    2552                 :            : 
    2553   [ +  +  #  # ]:     446663 :         assert(ctrlr != NULL);
    2554   [ +  +  #  # ]:     446663 :         assert(sq != NULL);
    2555                 :            : 
    2556   [ +  +  +  -  :     446663 :         if (ctrlr->sdbl != NULL && sq->qid != 0) {
          -  +  #  #  #  
                #  #  # ]
    2557                 :            :                 /*
    2558                 :            :                  * Submission queue index has moved past the event index, so it
    2559                 :            :                  * needs to be re-armed before we go to sleep.
    2560                 :            :                  */
    2561   [ #  #  #  # ]:          0 :                 sq->need_rearm = true;
    2562                 :          0 :         }
    2563                 :            : 
    2564                 :     446663 :         free_cq_slots = cq_free_slots(cq);
    2565         [ +  - ]:     446663 :         queue = q_addr(&sq->mapping);
    2566         [ +  + ]:    4113747 :         while (*sq_headp(sq) != new_tail) {
    2567                 :            :                 int err;
    2568                 :            :                 struct spdk_nvme_cmd *cmd;
    2569                 :            : 
    2570                 :            :                 /*
    2571                 :            :                  * Linux host nvme driver can submit cmd's more than free cq slots
    2572                 :            :                  * available. So process only those who have cq slots available.
    2573                 :            :                  */
    2574         [ +  + ]:    3667084 :                 if (free_cq_slots-- == 0) {
    2575   [ +  -  +  - ]:      17899 :                         cq->last_head = *cq_dbl_headp(cq);
    2576                 :            : 
    2577                 :      17899 :                         free_cq_slots = cq_free_slots(cq);
    2578         [ +  + ]:      17899 :                         if (free_cq_slots > 0) {
    2579                 :      17899 :                                 continue;
    2580                 :            :                         }
    2581                 :            : 
    2582                 :            :                         /*
    2583                 :            :                          * If there are no free cq slots then kick interrupt FD to loop
    2584                 :            :                          * again to process remaining sq cmds.
    2585                 :            :                          * In case of polling mode we will process remaining sq cmds during
    2586                 :            :                          * next polling iteration.
    2587                 :            :                          * sq head is advanced only for consumed commands.
    2588                 :            :                          */
    2589   [ #  #  #  #  :          0 :                         if (in_interrupt_mode(ctrlr->transport)) {
                   #  # ]
    2590   [ #  #  #  # ]:          0 :                                 eventfd_write(ctrlr->intr_fd, 1);
    2591                 :          0 :                         }
    2592                 :          0 :                         break;
    2593                 :            :                 }
    2594                 :            : 
    2595         [ +  - ]:    3649185 :                 cmd = &queue[*sq_headp(sq)];
    2596         [ +  - ]:    3649185 :                 count++;
    2597                 :            : 
    2598                 :            :                 /*
    2599                 :            :                  * SQHD must contain the new head pointer, so we must increase
    2600                 :            :                  * it before we generate a completion.
    2601                 :            :                  */
    2602                 :    3649185 :                 sq_head_advance(sq);
    2603                 :            : 
    2604                 :    3649185 :                 err = consume_cmd(ctrlr, sq, cmd);
    2605         [ +  + ]:    3649185 :                 if (spdk_unlikely(err != 0)) {
    2606                 :          0 :                         return err;
    2607                 :            :                 }
    2608                 :            :         }
    2609                 :            : 
    2610                 :     446663 :         return count;
    2611                 :     141039 : }
    2612                 :            : 
    2613                 :            : /* Checks whether endpoint is connected from the same process */
    2614                 :            : static bool
    2615                 :       2084 : is_peer_same_process(struct nvmf_vfio_user_endpoint *endpoint)
    2616                 :            : {
    2617                 :        176 :         struct ucred ucred;
    2618                 :       2084 :         socklen_t ucredlen = sizeof(ucred);
    2619                 :            : 
    2620         [ +  + ]:       2084 :         if (endpoint == NULL) {
    2621                 :          0 :                 return false;
    2622                 :            :         }
    2623                 :            : 
    2624   [ +  +  +  -  :       2084 :         if (getsockopt(vfu_get_poll_fd(endpoint->vfu_ctx), SOL_SOCKET, SO_PEERCRED, &ucred,
             +  -  +  - ]
    2625                 :       1800 :                        &ucredlen) < 0) {
    2626         [ #  # ]:          0 :                 SPDK_ERRLOG("getsockopt(SO_PEERCRED): %s\n", strerror(errno));
    2627                 :          0 :                 return false;
    2628                 :            :         }
    2629                 :            : 
    2630                 :       2084 :         return ucred.pid == getpid();
    2631                 :       1800 : }
    2632                 :            : 
    2633                 :            : static void
    2634                 :       1235 : memory_region_add_cb(vfu_ctx_t *vfu_ctx, vfu_dma_info_t *info)
    2635                 :            : {
    2636                 :       1235 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    2637                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    2638                 :            :         struct nvmf_vfio_user_sq *sq;
    2639                 :            :         struct nvmf_vfio_user_cq *cq;
    2640                 :            :         void *map_start, *map_end;
    2641                 :            :         int ret;
    2642                 :            : 
    2643                 :            :         /*
    2644                 :            :          * We're not interested in any DMA regions that aren't mappable (we don't
    2645                 :            :          * support clients that don't share their memory).
    2646                 :            :          */
    2647   [ +  +  +  -  :       1235 :         if (!info->vaddr) {
                   -  + ]
    2648                 :        152 :                 return;
    2649                 :            :         }
    2650                 :            : 
    2651   [ +  -  +  -  :       1083 :         map_start = info->mapping.iov_base;
                   +  - ]
    2652   [ +  -  +  -  :       1083 :         map_end = info->mapping.iov_base + info->mapping.iov_len;
          +  -  +  -  +  
                -  +  - ]
    2653                 :            : 
    2654   [ +  -  +  -  :       1983 :         if (((uintptr_t)info->mapping.iov_base & MASK_2MB) ||
          +  -  +  -  +  
                -  -  + ]
    2655   [ +  +  +  -  :       1083 :             (info->mapping.iov_len & MASK_2MB)) {
             +  -  +  - ]
    2656   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio, "Invalid memory region vaddr %p, IOVA %p-%p\n",
          #  #  #  #  #  
                      # ]
    2657                 :            :                               info->vaddr, map_start, map_end);
    2658                 :          0 :                 return;
    2659                 :            :         }
    2660                 :            : 
    2661   [ +  +  #  # ]:       1083 :         assert(endpoint != NULL);
    2662   [ +  +  +  -  :       1083 :         if (endpoint->ctrlr == NULL) {
                   +  - ]
    2663                 :          0 :                 return;
    2664                 :            :         }
    2665   [ +  -  +  - ]:       1083 :         ctrlr = endpoint->ctrlr;
    2666                 :            : 
    2667   [ +  +  +  +  :       1083 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: map IOVA %p-%p\n", endpoint_id(endpoint),
                   +  - ]
    2668                 :            :                       map_start, map_end);
    2669                 :            : 
    2670                 :            :         /* VFIO_DMA_MAP_FLAG_READ | VFIO_DMA_MAP_FLAG_WRITE are enabled when registering to VFIO, here we also
    2671                 :            :          * check the protection bits before registering. When vfio client and server are run in same process
    2672                 :            :          * there is no need to register the same memory again.
    2673                 :            :          */
    2674   [ +  +  +  -  :       1083 :         if (info->prot == (PROT_WRITE | PROT_READ) && !is_peer_same_process(endpoint)) {
             +  -  +  - ]
    2675   [ #  #  #  #  :        142 :                 ret = spdk_mem_register(info->mapping.iov_base, info->mapping.iov_len);
          #  #  #  #  #  
                #  #  # ]
    2676         [ -  + ]:        142 :                 if (ret) {
    2677                 :          0 :                         SPDK_ERRLOG("Memory region register %p-%p failed, ret=%d\n",
    2678                 :            :                                     map_start, map_end, ret);
    2679                 :          0 :                 }
    2680                 :          0 :         }
    2681                 :            : 
    2682   [ +  +  +  - ]:       1083 :         pthread_mutex_lock(&endpoint->lock);
    2683   [ +  +  +  -  :       2909 :         TAILQ_FOREACH(sq, &ctrlr->connected_sqs, tailq) {
          +  -  +  +  +  
             -  +  -  +  
                      - ]
    2684   [ +  +  +  -  :       1826 :                 if (sq->sq_state != VFIO_USER_SQ_INACTIVE) {
                   +  - ]
    2685                 :       1766 :                         continue;
    2686                 :            :                 }
    2687                 :            : 
    2688   [ #  #  #  #  :         60 :                 cq = ctrlr->cqs[sq->cqid];
          #  #  #  #  #  
                #  #  # ]
    2689                 :            : 
    2690                 :            :                 /* For shared CQ case, we will use q_addr() to avoid mapping CQ multiple times */
    2691   [ +  -  +  -  :         60 :                 if (cq->size && q_addr(&cq->mapping) == NULL) {
          #  #  #  #  #  
                      # ]
    2692   [ #  #  #  #  :         60 :                         ret = map_q(ctrlr, &cq->mapping, MAP_RW | MAP_QUIET);
          #  #  #  #  #  
                      # ]
    2693         [ +  + ]:         60 :                         if (ret) {
    2694   [ -  +  -  +  :         50 :                                 SPDK_DEBUGLOG(nvmf_vfio, "Memory isn't ready to remap cqid:%d %#lx-%#lx\n",
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  # ]
    2695                 :            :                                               cq->qid, cq->mapping.prp1,
    2696                 :            :                                               cq->mapping.prp1 + cq->mapping.len);
    2697                 :         50 :                                 continue;
    2698                 :            :                         }
    2699                 :          0 :                 }
    2700                 :            : 
    2701   [ +  -  #  #  :         10 :                 if (sq->size) {
                   #  # ]
    2702   [ #  #  #  #  :         10 :                         ret = map_q(ctrlr, &sq->mapping, MAP_R | MAP_QUIET);
                   #  # ]
    2703         [ -  + ]:         10 :                         if (ret) {
    2704   [ #  #  #  #  :          0 :                                 SPDK_DEBUGLOG(nvmf_vfio, "Memory isn't ready to remap sqid:%d %#lx-%#lx\n",
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  # ]
    2705                 :            :                                               sq->qid, sq->mapping.prp1,
    2706                 :            :                                               sq->mapping.prp1 + sq->mapping.len);
    2707                 :          0 :                                 continue;
    2708                 :            :                         }
    2709                 :          0 :                 }
    2710   [ #  #  #  # ]:         10 :                 sq->sq_state = VFIO_USER_SQ_ACTIVE;
    2711   [ -  +  -  +  :         10 :                 SPDK_DEBUGLOG(nvmf_vfio, "Remap sqid:%u successfully\n", sq->qid);
          #  #  #  #  #  
                      # ]
    2712                 :          0 :         }
    2713   [ +  +  +  - ]:       1083 :         pthread_mutex_unlock(&endpoint->lock);
    2714                 :        900 : }
    2715                 :            : 
    2716                 :            : static void
    2717                 :       1235 : memory_region_remove_cb(vfu_ctx_t *vfu_ctx, vfu_dma_info_t *info)
    2718                 :            : {
    2719                 :       1235 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    2720                 :            :         struct nvmf_vfio_user_sq *sq;
    2721                 :            :         struct nvmf_vfio_user_cq *cq;
    2722                 :            :         void *map_start, *map_end;
    2723                 :       1235 :         int ret = 0;
    2724                 :            : 
    2725   [ +  +  +  -  :       1235 :         if (!info->vaddr) {
                   -  + ]
    2726                 :        152 :                 return;
    2727                 :            :         }
    2728                 :            : 
    2729   [ +  -  +  -  :       1083 :         map_start = info->mapping.iov_base;
                   +  - ]
    2730   [ +  -  +  -  :       1083 :         map_end = info->mapping.iov_base + info->mapping.iov_len;
          +  -  +  -  +  
                -  +  - ]
    2731                 :            : 
    2732   [ +  -  +  -  :       1983 :         if (((uintptr_t)info->mapping.iov_base & MASK_2MB) ||
          +  -  +  -  +  
                -  -  + ]
    2733   [ +  +  +  -  :       1083 :             (info->mapping.iov_len & MASK_2MB)) {
             +  -  +  - ]
    2734   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio, "Invalid memory region vaddr %p, IOVA %p-%p\n",
          #  #  #  #  #  
                      # ]
    2735                 :            :                               info->vaddr, map_start, map_end);
    2736                 :          0 :                 return;
    2737                 :            :         }
    2738                 :            : 
    2739   [ +  +  #  # ]:       1083 :         assert(endpoint != NULL);
    2740   [ +  +  +  +  :       1083 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: unmap IOVA %p-%p\n", endpoint_id(endpoint),
                   +  - ]
    2741                 :            :                       map_start, map_end);
    2742                 :            : 
    2743   [ +  +  +  -  :       1083 :         if (endpoint->ctrlr != NULL) {
                   +  - ]
    2744                 :            :                 struct nvmf_vfio_user_ctrlr *ctrlr;
    2745   [ +  -  +  - ]:       1027 :                 ctrlr = endpoint->ctrlr;
    2746                 :            : 
    2747   [ +  +  +  - ]:       1027 :                 pthread_mutex_lock(&endpoint->lock);
    2748   [ +  +  +  -  :       2602 :                 TAILQ_FOREACH(sq, &ctrlr->connected_sqs, tailq) {
          +  -  +  +  +  
             -  +  -  +  
                      - ]
    2749   [ +  +  +  +  :       1575 :                         if (q_addr(&sq->mapping) >= map_start && q_addr(&sq->mapping) <= map_end) {
             #  #  #  # ]
    2750         [ #  # ]:         10 :                                 unmap_q(ctrlr, &sq->mapping);
    2751   [ #  #  #  # ]:         10 :                                 sq->sq_state = VFIO_USER_SQ_INACTIVE;
    2752                 :          0 :                         }
    2753                 :            : 
    2754   [ +  -  +  -  :       1575 :                         cq = ctrlr->cqs[sq->cqid];
          +  -  +  -  +  
                -  +  - ]
    2755   [ +  +  +  +  :       1575 :                         if (q_addr(&cq->mapping) >= map_start && q_addr(&cq->mapping) <= map_end) {
             #  #  #  # ]
    2756         [ #  # ]:         10 :                                 unmap_q(ctrlr, &cq->mapping);
    2757                 :          0 :                         }
    2758                 :        900 :                 }
    2759                 :            : 
    2760   [ +  +  +  -  :       1027 :                 if (ctrlr->sdbl != NULL) {
                   +  - ]
    2761                 :            :                         size_t i;
    2762                 :            : 
    2763         [ #  # ]:          0 :                         for (i = 0; i < NVMF_VFIO_USER_SHADOW_DOORBELLS_BUFFER_COUNT; i++) {
    2764   [ #  #  #  #  :          0 :                                 const void *const iov_base = ctrlr->sdbl->iovs[i].iov_base;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    2765                 :            : 
    2766   [ #  #  #  # ]:          0 :                                 if (iov_base >= map_start && iov_base < map_end) {
    2767                 :          0 :                                         copy_doorbells(ctrlr,
    2768   [ #  #  #  #  :          0 :                                                        ctrlr->sdbl->shadow_doorbells,
             #  #  #  # ]
    2769   [ #  #  #  # ]:          0 :                                                        ctrlr->bar0_doorbells);
    2770                 :          0 :                                         vfio_user_ctrlr_switch_doorbells(ctrlr, false);
    2771   [ #  #  #  #  :          0 :                                         free_sdbl(endpoint->vfu_ctx, ctrlr->sdbl);
             #  #  #  # ]
    2772   [ #  #  #  # ]:          0 :                                         ctrlr->sdbl = NULL;
    2773                 :          0 :                                         break;
    2774                 :            :                                 }
    2775                 :          0 :                         }
    2776                 :          0 :                 }
    2777                 :            : 
    2778   [ +  +  +  - ]:       1027 :                 pthread_mutex_unlock(&endpoint->lock);
    2779                 :        900 :         }
    2780                 :            : 
    2781   [ +  +  +  -  :       1083 :         if (info->prot == (PROT_WRITE | PROT_READ) && !is_peer_same_process(endpoint)) {
             +  -  +  - ]
    2782   [ #  #  #  #  :        142 :                 ret = spdk_mem_unregister(info->mapping.iov_base, info->mapping.iov_len);
          #  #  #  #  #  
                #  #  # ]
    2783         [ -  + ]:        142 :                 if (ret) {
    2784                 :          0 :                         SPDK_ERRLOG("Memory region unregister %p-%p failed, ret=%d\n",
    2785                 :            :                                     map_start, map_end, ret);
    2786                 :          0 :                 }
    2787                 :          0 :         }
    2788                 :        900 : }
    2789                 :            : 
    2790                 :            : /* Used to initiate a controller-level reset or a controller shutdown. */
    2791                 :            : static void
    2792                 :         56 : disable_ctrlr(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    2793                 :            : {
    2794                 :         56 :         SPDK_NOTICELOG("%s: disabling controller\n", ctrlr_id(vu_ctrlr));
    2795                 :            : 
    2796                 :            :         /* Unmap Admin queue. */
    2797                 :            : 
    2798   [ +  +  +  -  :         56 :         assert(vu_ctrlr->sqs[0] != NULL);
          +  -  +  -  +  
                -  #  # ]
    2799   [ +  +  +  -  :         56 :         assert(vu_ctrlr->cqs[0] != NULL);
          +  -  +  -  +  
                -  #  # ]
    2800                 :            : 
    2801   [ +  -  +  -  :         56 :         unmap_q(vu_ctrlr, &vu_ctrlr->sqs[0]->mapping);
          +  -  +  -  +  
                      - ]
    2802   [ +  -  +  -  :         56 :         unmap_q(vu_ctrlr, &vu_ctrlr->cqs[0]->mapping);
          +  -  +  -  +  
                      - ]
    2803                 :            : 
    2804   [ +  -  +  -  :         56 :         vu_ctrlr->sqs[0]->size = 0;
          +  -  +  -  +  
                -  +  - ]
    2805   [ +  -  +  -  :         56 :         *sq_headp(vu_ctrlr->sqs[0]) = 0;
             +  -  +  - ]
    2806                 :            : 
    2807   [ +  -  +  -  :         56 :         vu_ctrlr->sqs[0]->sq_state = VFIO_USER_SQ_INACTIVE;
          +  -  +  -  +  
                -  +  - ]
    2808                 :            : 
    2809   [ +  -  +  -  :         56 :         vu_ctrlr->cqs[0]->size = 0;
          +  -  +  -  +  
                -  +  - ]
    2810   [ +  -  +  -  :         56 :         *cq_tailp(vu_ctrlr->cqs[0]) = 0;
             +  -  +  - ]
    2811                 :            : 
    2812                 :            :         /*
    2813                 :            :          * For PCIe controller reset or shutdown, we will drop all AER
    2814                 :            :          * responses.
    2815                 :            :          */
    2816   [ +  -  +  - ]:         56 :         spdk_nvmf_ctrlr_abort_aer(vu_ctrlr->ctrlr);
    2817                 :            : 
    2818                 :            :         /* Free the shadow doorbell buffer. */
    2819                 :         56 :         vfio_user_ctrlr_switch_doorbells(vu_ctrlr, false);
    2820   [ +  -  +  -  :         56 :         free_sdbl(vu_ctrlr->endpoint->vfu_ctx, vu_ctrlr->sdbl);
          +  -  +  -  +  
                -  +  - ]
    2821   [ +  -  +  - ]:         56 :         vu_ctrlr->sdbl = NULL;
    2822                 :         56 : }
    2823                 :            : 
    2824                 :            : /* Used to re-enable the controller after a controller-level reset. */
    2825                 :            : static int
    2826                 :         59 : enable_ctrlr(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    2827                 :            : {
    2828                 :            :         int err;
    2829                 :            : 
    2830   [ +  +  #  # ]:         59 :         assert(vu_ctrlr != NULL);
    2831                 :            : 
    2832                 :         59 :         SPDK_NOTICELOG("%s: enabling controller\n", ctrlr_id(vu_ctrlr));
    2833                 :            : 
    2834                 :         59 :         err = acq_setup(vu_ctrlr);
    2835         [ -  + ]:         59 :         if (err != 0) {
    2836                 :          0 :                 return err;
    2837                 :            :         }
    2838                 :            : 
    2839                 :         59 :         err = asq_setup(vu_ctrlr);
    2840         [ -  + ]:         59 :         if (err != 0) {
    2841                 :          0 :                 return err;
    2842                 :            :         }
    2843                 :            : 
    2844   [ +  -  +  -  :         59 :         vu_ctrlr->sqs[0]->sq_state = VFIO_USER_SQ_ACTIVE;
          +  -  +  -  +  
                -  +  - ]
    2845                 :            : 
    2846                 :         59 :         return 0;
    2847                 :          7 : }
    2848                 :            : 
    2849                 :            : static int
    2850                 :        355 : nvmf_vfio_user_prop_req_rsp_set(struct nvmf_vfio_user_req *req,
    2851                 :            :                                 struct nvmf_vfio_user_sq *sq)
    2852                 :            : {
    2853                 :            :         struct nvmf_vfio_user_ctrlr *vu_ctrlr;
    2854                 :            :         union spdk_nvme_cc_register cc, diff;
    2855                 :            : 
    2856   [ +  +  +  -  :        355 :         assert(req->req.cmd->prop_set_cmd.fctype == SPDK_NVMF_FABRIC_COMMAND_PROPERTY_SET);
          +  -  +  -  +  
          -  +  -  +  -  
                   #  # ]
    2857   [ +  +  +  -  :        355 :         assert(sq->ctrlr != NULL);
             +  -  #  # ]
    2858   [ +  -  +  - ]:        355 :         vu_ctrlr = sq->ctrlr;
    2859                 :            : 
    2860   [ +  +  +  -  :        355 :         if (req->req.cmd->prop_set_cmd.ofst != offsetof(struct spdk_nvme_registers, cc)) {
          +  -  +  -  +  
             -  +  -  +  
                      + ]
    2861                 :        221 :                 return 0;
    2862                 :            :         }
    2863                 :            : 
    2864   [ +  -  +  -  :        134 :         cc.raw = req->req.cmd->prop_set_cmd.value.u64;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    2865   [ +  -  +  -  :        134 :         diff.raw = cc.raw ^ req->cc.raw;
                   +  - ]
    2866                 :            : 
    2867         [ +  + ]:        134 :         if (diff.bits.en) {
    2868         [ +  + ]:         64 :                 if (cc.bits.en) {
    2869                 :         59 :                         int ret = enable_ctrlr(vu_ctrlr);
    2870         [ -  + ]:         59 :                         if (ret) {
    2871                 :          0 :                                 SPDK_ERRLOG("%s: failed to enable ctrlr\n", ctrlr_id(vu_ctrlr));
    2872                 :          0 :                                 return ret;
    2873                 :            :                         }
    2874   [ +  -  +  - ]:         59 :                         vu_ctrlr->reset_shn = false;
    2875                 :          7 :                 } else {
    2876   [ #  #  #  # ]:          5 :                         vu_ctrlr->reset_shn = true;
    2877                 :            :                 }
    2878                 :          7 :         }
    2879                 :            : 
    2880         [ +  + ]:        134 :         if (diff.bits.shn) {
    2881   [ -  +  -  - ]:         46 :                 if (cc.bits.shn == SPDK_NVME_SHN_NORMAL || cc.bits.shn == SPDK_NVME_SHN_ABRUPT) {
    2882   [ +  -  +  - ]:         46 :                         vu_ctrlr->reset_shn = true;
    2883                 :          7 :                 }
    2884                 :          7 :         }
    2885                 :            : 
    2886   [ +  +  +  +  :        134 :         if (vu_ctrlr->reset_shn) {
             +  -  +  + ]
    2887                 :         56 :                 disable_ctrlr(vu_ctrlr);
    2888                 :          7 :         }
    2889                 :        134 :         return 0;
    2890                 :         45 : }
    2891                 :            : 
    2892                 :            : static int
    2893                 :        940 : nvmf_vfio_user_prop_req_rsp(struct nvmf_vfio_user_req *req, void *cb_arg)
    2894                 :            : {
    2895                 :        940 :         struct nvmf_vfio_user_sq *sq = cb_arg;
    2896                 :            : 
    2897   [ +  +  #  # ]:        940 :         assert(sq != NULL);
    2898   [ +  +  #  # ]:        940 :         assert(req != NULL);
    2899                 :            : 
    2900   [ +  +  +  -  :        940 :         if (req->req.cmd->prop_get_cmd.fctype == SPDK_NVMF_FABRIC_COMMAND_PROPERTY_GET) {
          +  -  +  -  +  
             -  +  -  +  
                      + ]
    2901   [ +  +  +  -  :        585 :                 assert(sq->ctrlr != NULL);
             +  -  #  # ]
    2902   [ +  +  #  # ]:        585 :                 assert(req != NULL);
    2903                 :            : 
    2904   [ +  +  +  +  :        651 :                 memcpy(req->req.iov[0].iov_base,
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    2905   [ +  -  +  -  :        585 :                        &req->req.rsp->prop_get_rsp.value.u64,
          +  -  +  -  +  
                -  +  - ]
    2906   [ +  -  +  -  :        585 :                        req->req.length);
                   +  - ]
    2907                 :        585 :                 return 0;
    2908                 :            :         }
    2909                 :            : 
    2910                 :        355 :         return nvmf_vfio_user_prop_req_rsp_set(req, sq);
    2911                 :        111 : }
    2912                 :            : 
    2913                 :            : /*
    2914                 :            :  * Handles a write at offset 0x1000 or more; this is the non-mapped path when a
    2915                 :            :  * doorbell is written via access_bar0_fn().
    2916                 :            :  *
    2917                 :            :  * DSTRD is set to fixed value 0 for NVMf.
    2918                 :            :  *
    2919                 :            :  */
    2920                 :            : static int
    2921                 :          0 : handle_dbl_access(struct nvmf_vfio_user_ctrlr *ctrlr, uint32_t *buf,
    2922                 :            :                   const size_t count, loff_t pos, const bool is_write)
    2923                 :            : {
    2924                 :            :         struct nvmf_vfio_user_poll_group *group;
    2925                 :            : 
    2926   [ #  #  #  # ]:          0 :         assert(ctrlr != NULL);
    2927   [ #  #  #  # ]:          0 :         assert(buf != NULL);
    2928                 :            : 
    2929   [ #  #  #  # ]:          0 :         if (spdk_unlikely(!is_write)) {
    2930                 :          0 :                 SPDK_WARNLOG("%s: host tried to read BAR0 doorbell %#lx\n",
    2931                 :            :                              ctrlr_id(ctrlr), pos);
    2932         [ #  # ]:          0 :                 errno = EPERM;
    2933                 :          0 :                 return -1;
    2934                 :            :         }
    2935                 :            : 
    2936         [ #  # ]:          0 :         if (spdk_unlikely(count != sizeof(uint32_t))) {
    2937                 :          0 :                 SPDK_ERRLOG("%s: bad doorbell buffer size %ld\n",
    2938                 :            :                             ctrlr_id(ctrlr), count);
    2939         [ #  # ]:          0 :                 errno = EINVAL;
    2940                 :          0 :                 return -1;
    2941                 :            :         }
    2942                 :            : 
    2943         [ #  # ]:          0 :         pos -= NVME_DOORBELLS_OFFSET;
    2944                 :            : 
    2945                 :            :         /* pos must be dword aligned */
    2946         [ #  # ]:          0 :         if (spdk_unlikely((pos & 0x3) != 0)) {
    2947                 :          0 :                 SPDK_ERRLOG("%s: bad doorbell offset %#lx\n", ctrlr_id(ctrlr), pos);
    2948         [ #  # ]:          0 :                 errno = EINVAL;
    2949                 :          0 :                 return -1;
    2950                 :            :         }
    2951                 :            : 
    2952                 :            :         /* convert byte offset to array index */
    2953         [ #  # ]:          0 :         pos >>= 2;
    2954                 :            : 
    2955         [ #  # ]:          0 :         if (spdk_unlikely(pos >= NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR * 2)) {
    2956                 :          0 :                 SPDK_ERRLOG("%s: bad doorbell index %#lx\n", ctrlr_id(ctrlr), pos);
    2957         [ #  # ]:          0 :                 errno = EINVAL;
    2958                 :          0 :                 return -1;
    2959                 :            :         }
    2960                 :            : 
    2961   [ #  #  #  #  :          0 :         ctrlr->bar0_doorbells[pos] = *buf;
             #  #  #  # ]
    2962                 :          0 :         spdk_wmb();
    2963                 :            : 
    2964                 :          0 :         group = ctrlr_to_poll_group(ctrlr);
    2965         [ #  # ]:          0 :         if (pos == 1) {
    2966   [ #  #  #  # ]:          0 :                 group->stats.cqh_admin_writes++;
    2967         [ #  # ]:          0 :         } else if (pos & 1) {
    2968   [ #  #  #  # ]:          0 :                 group->stats.cqh_io_writes++;
    2969                 :          0 :         }
    2970                 :            : 
    2971   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db, "%s: updating BAR0 doorbell %s:%ld to %u\n",
          #  #  #  #  #  
                      # ]
    2972                 :            :                       ctrlr_id(ctrlr), (pos & 1) ? "cqid" : "sqid",
    2973                 :            :                       pos / 2, *buf);
    2974                 :            : 
    2975                 :            : 
    2976                 :          0 :         return 0;
    2977                 :          0 : }
    2978                 :            : 
    2979                 :            : static size_t
    2980                 :        940 : vfio_user_property_access(struct nvmf_vfio_user_ctrlr *vu_ctrlr,
    2981                 :            :                           char *buf, size_t count, loff_t pos,
    2982                 :            :                           bool is_write)
    2983                 :            : {
    2984                 :            :         struct nvmf_vfio_user_req *req;
    2985                 :            :         const struct spdk_nvmf_registers *regs;
    2986                 :            : 
    2987   [ +  +  +  + ]:        940 :         if ((count != 4) && (count != 8)) {
    2988         [ #  # ]:          0 :                 errno = EINVAL;
    2989                 :          0 :                 return -1;
    2990                 :            :         }
    2991                 :            : 
    2992                 :            :         /* Construct a Fabric Property Get/Set command and send it */
    2993   [ +  -  +  -  :        940 :         req = get_nvmf_vfio_user_req(vu_ctrlr->sqs[0]);
             +  -  +  - ]
    2994         [ +  + ]:        940 :         if (req == NULL) {
    2995         [ #  # ]:          0 :                 errno = ENOBUFS;
    2996                 :          0 :                 return -1;
    2997                 :            :         }
    2998   [ +  -  +  - ]:        940 :         regs = spdk_nvmf_ctrlr_get_regs(vu_ctrlr->ctrlr);
    2999   [ +  -  +  -  :        940 :         req->cc.raw = regs->cc.raw;
          +  -  +  -  +  
                -  +  - ]
    3000                 :            : 
    3001   [ +  -  +  - ]:        940 :         req->cb_fn = nvmf_vfio_user_prop_req_rsp;
    3002   [ +  -  +  -  :        940 :         req->cb_arg = vu_ctrlr->sqs[0];
          +  -  +  -  +  
                -  +  - ]
    3003   [ +  -  +  -  :        940 :         req->req.cmd->prop_set_cmd.opcode = SPDK_NVME_OPC_FABRIC;
          +  -  +  -  +  
                -  +  - ]
    3004   [ +  -  +  -  :        940 :         req->req.cmd->prop_set_cmd.cid = 0;
          +  -  +  -  +  
                -  +  - ]
    3005         [ +  + ]:        940 :         if (count == 4) {
    3006   [ +  -  +  -  :        772 :                 req->req.cmd->prop_set_cmd.attrib.size = 0;
          +  -  +  -  +  
                -  +  - ]
    3007                 :         83 :         } else {
    3008   [ +  -  +  -  :        168 :                 req->req.cmd->prop_set_cmd.attrib.size = 1;
          +  -  +  -  +  
                -  +  - ]
    3009                 :            :         }
    3010   [ +  -  +  -  :        940 :         req->req.cmd->prop_set_cmd.ofst = pos;
          +  -  +  -  +  
                -  +  - ]
    3011   [ +  +  +  + ]:        940 :         if (is_write) {
    3012   [ +  -  +  -  :        355 :                 req->req.cmd->prop_set_cmd.fctype = SPDK_NVMF_FABRIC_COMMAND_PROPERTY_SET;
          +  -  +  -  +  
                -  +  - ]
    3013   [ +  +  +  -  :        355 :                 if (req->req.cmd->prop_set_cmd.attrib.size) {
          +  -  +  -  +  
             -  +  -  +  
                      + ]
    3014   [ +  -  +  -  :         84 :                         req->req.cmd->prop_set_cmd.value.u64 = *(uint64_t *)buf;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    3015                 :         14 :                 } else {
    3016   [ +  -  +  -  :        271 :                         req->req.cmd->prop_set_cmd.value.u32.high = 0;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    3017   [ +  -  +  -  :        271 :                         req->req.cmd->prop_set_cmd.value.u32.low = *(uint32_t *)buf;
          +  -  +  -  +  
          -  +  -  +  -  
             +  -  +  - ]
    3018                 :            :                 }
    3019                 :         45 :         } else {
    3020   [ +  -  +  -  :        585 :                 req->req.cmd->prop_get_cmd.fctype = SPDK_NVMF_FABRIC_COMMAND_PROPERTY_GET;
          +  -  +  -  +  
                -  +  - ]
    3021                 :            :         }
    3022   [ +  -  +  -  :        940 :         req->req.length = count;
                   +  - ]
    3023   [ +  -  +  -  :        940 :         SPDK_IOV_ONE(req->req.iov, &req->req.iovcnt, buf, req->req.length);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
             +  -  +  - ]
    3024                 :            : 
    3025         [ +  - ]:        940 :         spdk_nvmf_request_exec(&req->req);
    3026                 :            : 
    3027                 :        940 :         return count;
    3028                 :        111 : }
    3029                 :            : 
    3030                 :            : static ssize_t
    3031                 :        940 : access_bar0_fn(vfu_ctx_t *vfu_ctx, char *buf, size_t count, loff_t pos,
    3032                 :            :                bool is_write)
    3033                 :            : {
    3034                 :        940 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    3035                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    3036                 :            :         int ret;
    3037                 :            : 
    3038   [ +  -  +  - ]:        940 :         ctrlr = endpoint->ctrlr;
    3039   [ +  +  +  -  :        940 :         if (spdk_unlikely(endpoint->need_async_destroy || !ctrlr)) {
          +  +  -  +  -  
                      + ]
    3040         [ #  # ]:          0 :                 errno = EIO;
    3041                 :          0 :                 return -1;
    3042                 :            :         }
    3043                 :            : 
    3044         [ -  + ]:        940 :         if (pos >= NVME_DOORBELLS_OFFSET) {
    3045                 :            :                 /*
    3046                 :            :                  * The fact that the doorbells can be memory mapped doesn't mean
    3047                 :            :                  * that the client (VFIO in QEMU) is obliged to memory map them,
    3048                 :            :                  * it might still elect to access them via regular read/write;
    3049                 :            :                  * we might also have had disable_mappable_bar0 set.
    3050                 :            :                  */
    3051                 :          0 :                 ret = handle_dbl_access(ctrlr, (uint32_t *)buf, count,
    3052         [ #  # ]:          0 :                                         pos, is_write);
    3053         [ #  # ]:          0 :                 if (ret == 0) {
    3054                 :          0 :                         return count;
    3055                 :            :                 }
    3056                 :          0 :                 return ret;
    3057                 :            :         }
    3058                 :            : 
    3059         [ +  - ]:        940 :         return vfio_user_property_access(ctrlr, buf, count, pos, is_write);
    3060                 :        111 : }
    3061                 :            : 
    3062                 :            : static ssize_t
    3063                 :         12 : access_pci_config(vfu_ctx_t *vfu_ctx, char *buf, size_t count, loff_t offset,
    3064                 :            :                   bool is_write)
    3065                 :            : {
    3066                 :         12 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    3067                 :            : 
    3068   [ -  +  #  # ]:         12 :         if (is_write) {
    3069                 :          0 :                 SPDK_ERRLOG("%s: write %#lx-%#lx not supported\n",
    3070                 :            :                             endpoint_id(endpoint), offset, offset + count);
    3071         [ #  # ]:          0 :                 errno = EINVAL;
    3072                 :          0 :                 return -1;
    3073                 :            :         }
    3074                 :            : 
    3075         [ -  + ]:         12 :         if (offset + count > NVME_REG_CFG_SIZE) {
    3076                 :          0 :                 SPDK_ERRLOG("%s: access past end of extended PCI configuration space, want=%ld+%ld, max=%d\n",
    3077                 :            :                             endpoint_id(endpoint), offset, count,
    3078                 :            :                             NVME_REG_CFG_SIZE);
    3079         [ #  # ]:          0 :                 errno = ERANGE;
    3080                 :          0 :                 return -1;
    3081                 :            :         }
    3082                 :            : 
    3083   [ -  +  -  +  :         12 :         memcpy(buf, ((unsigned char *)endpoint->pci_config_space) + offset, count);
          #  #  #  #  #  
                      # ]
    3084                 :            : 
    3085                 :         12 :         return count;
    3086                 :          0 : }
    3087                 :            : 
    3088                 :            : static void
    3089                 :         85 : vfio_user_log(vfu_ctx_t *vfu_ctx, int level, char const *msg)
    3090                 :            : {
    3091                 :         85 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    3092                 :            : 
    3093         [ -  + ]:         85 :         if (level >= LOG_DEBUG) {
    3094   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s: %s\n", endpoint_id(endpoint), msg);
                   #  # ]
    3095         [ -  + ]:         85 :         } else if (level >= LOG_INFO) {
    3096   [ #  #  #  #  :          0 :                 SPDK_INFOLOG(nvmf_vfio, "%s: %s\n", endpoint_id(endpoint), msg);
                   #  # ]
    3097         [ -  + ]:         85 :         } else if (level >= LOG_NOTICE) {
    3098                 :          0 :                 SPDK_NOTICELOG("%s: %s\n", endpoint_id(endpoint), msg);
    3099         [ +  + ]:         85 :         } else if (level >= LOG_WARNING) {
    3100                 :          9 :                 SPDK_WARNLOG("%s: %s\n", endpoint_id(endpoint), msg);
    3101                 :          9 :         } else {
    3102                 :         76 :                 SPDK_ERRLOG("%s: %s\n", endpoint_id(endpoint), msg);
    3103                 :            :         }
    3104                 :         85 : }
    3105                 :            : 
    3106                 :            : static int
    3107                 :         31 : vfio_user_get_log_level(void)
    3108                 :            : {
    3109                 :            :         int level;
    3110                 :            : 
    3111         [ -  + ]:         31 :         if (SPDK_DEBUGLOG_FLAG_ENABLED("nvmf_vfio")) {
    3112                 :          0 :                 return LOG_DEBUG;
    3113                 :            :         }
    3114                 :            : 
    3115                 :         31 :         level = spdk_log_to_syslog_level(spdk_log_get_level());
    3116         [ -  + ]:         31 :         if (level < 0) {
    3117                 :          0 :                 return LOG_ERR;
    3118                 :            :         }
    3119                 :            : 
    3120                 :         31 :         return level;
    3121                 :         14 : }
    3122                 :            : 
    3123                 :            : static void
    3124                 :         31 : init_pci_config_space(vfu_pci_config_space_t *p)
    3125                 :            : {
    3126                 :            :         /* MLBAR */
    3127   [ +  -  +  -  :         31 :         p->hdr.bars[0].raw = 0x0;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    3128                 :            :         /* MUBAR */
    3129   [ +  -  +  -  :         31 :         p->hdr.bars[1].raw = 0x0;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    3130                 :            : 
    3131                 :            :         /* vendor specific, let's set them to zero for now */
    3132   [ +  -  +  -  :         31 :         p->hdr.bars[3].raw = 0x0;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    3133   [ +  -  +  -  :         31 :         p->hdr.bars[4].raw = 0x0;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    3134   [ +  -  +  -  :         31 :         p->hdr.bars[5].raw = 0x0;
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    3135                 :            : 
    3136                 :            :         /* enable INTx */
    3137   [ +  -  +  -  :         31 :         p->hdr.intr.ipin = 0x1;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    3138                 :         31 : }
    3139                 :            : 
    3140                 :            : struct ctrlr_quiesce_ctx {
    3141                 :            :         struct nvmf_vfio_user_endpoint *endpoint;
    3142                 :            :         struct nvmf_vfio_user_poll_group *group;
    3143                 :            :         int status;
    3144                 :            : };
    3145                 :            : 
    3146                 :            : static void ctrlr_quiesce(struct nvmf_vfio_user_ctrlr *vu_ctrlr);
    3147                 :            : 
    3148                 :            : static void
    3149                 :        246 : _vfio_user_endpoint_resume_done_msg(void *ctx)
    3150                 :            : {
    3151                 :        246 :         struct nvmf_vfio_user_endpoint *endpoint = ctx;
    3152   [ #  #  #  # ]:        246 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = endpoint->ctrlr;
    3153                 :            : 
    3154   [ #  #  #  # ]:        246 :         endpoint->need_resume = false;
    3155                 :            : 
    3156         [ -  + ]:        246 :         if (!vu_ctrlr) {
    3157                 :          0 :                 return;
    3158                 :            :         }
    3159                 :            : 
    3160   [ -  +  +  +  :        246 :         if (!vu_ctrlr->queued_quiesce) {
             #  #  #  # ]
    3161   [ #  #  #  # ]:        241 :                 vu_ctrlr->state = VFIO_USER_CTRLR_RUNNING;
    3162                 :            : 
    3163                 :            :                 /*
    3164                 :            :                  * We might have ignored new SQ entries while we were quiesced:
    3165                 :            :                  * kick ourselves so we'll definitely check again while in
    3166                 :            :                  * VFIO_USER_CTRLR_RUNNING state.
    3167                 :            :                  */
    3168   [ -  +  #  #  :        241 :                 if (in_interrupt_mode(endpoint->transport)) {
                   #  # ]
    3169                 :          0 :                         ctrlr_kick(vu_ctrlr);
    3170                 :          0 :                 }
    3171                 :        241 :                 return;
    3172                 :            :         }
    3173                 :            : 
    3174                 :            : 
    3175                 :            :         /*
    3176                 :            :          * Basically, once we call `vfu_device_quiesced` the device is
    3177                 :            :          * unquiesced from libvfio-user's perspective so from the moment
    3178                 :            :          * `vfio_user_quiesce_done` returns libvfio-user might quiesce the device
    3179                 :            :          * again. However, because the NVMf subsystem is an asynchronous
    3180                 :            :          * operation, this quiesce might come _before_ the NVMf subsystem has
    3181                 :            :          * been resumed, so in the callback of `spdk_nvmf_subsystem_resume` we
    3182                 :            :          * need to check whether a quiesce was requested.
    3183                 :            :          */
    3184   [ -  +  -  +  :          5 :         SPDK_DEBUGLOG(nvmf_vfio, "%s has queued quiesce event, quiesce again\n",
                   #  # ]
    3185                 :            :                       ctrlr_id(vu_ctrlr));
    3186                 :          5 :         ctrlr_quiesce(vu_ctrlr);
    3187                 :          0 : }
    3188                 :            : 
    3189                 :            : static void
    3190                 :        246 : vfio_user_endpoint_resume_done(struct spdk_nvmf_subsystem *subsystem,
    3191                 :            :                                void *cb_arg, int status)
    3192                 :            : {
    3193                 :        246 :         struct nvmf_vfio_user_endpoint *endpoint = cb_arg;
    3194   [ #  #  #  # ]:        246 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = endpoint->ctrlr;
    3195                 :            : 
    3196   [ -  +  -  +  :        246 :         SPDK_DEBUGLOG(nvmf_vfio, "%s resumed done with status %d\n", endpoint_id(endpoint), status);
                   #  # ]
    3197                 :            : 
    3198         [ -  + ]:        246 :         if (!vu_ctrlr) {
    3199                 :          0 :                 return;
    3200                 :            :         }
    3201                 :            : 
    3202   [ #  #  #  # ]:        246 :         spdk_thread_send_msg(vu_ctrlr->thread, _vfio_user_endpoint_resume_done_msg, endpoint);
    3203                 :          0 : }
    3204                 :            : 
    3205                 :            : static void
    3206                 :        246 : vfio_user_quiesce_done(void *ctx)
    3207                 :            : {
    3208                 :        246 :         struct ctrlr_quiesce_ctx *quiesce_ctx = ctx;
    3209   [ #  #  #  # ]:        246 :         struct nvmf_vfio_user_endpoint *endpoint = quiesce_ctx->endpoint;
    3210   [ #  #  #  # ]:        246 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = endpoint->ctrlr;
    3211                 :            :         int ret;
    3212                 :            : 
    3213         [ -  + ]:        246 :         if (!vu_ctrlr) {
    3214                 :          0 :                 free(quiesce_ctx);
    3215                 :          0 :                 return;
    3216                 :            :         }
    3217                 :            : 
    3218   [ -  +  -  +  :        246 :         SPDK_DEBUGLOG(nvmf_vfio, "%s device quiesced\n", ctrlr_id(vu_ctrlr));
                   #  # ]
    3219                 :            : 
    3220   [ -  +  #  #  :        246 :         assert(vu_ctrlr->state == VFIO_USER_CTRLR_PAUSING);
             #  #  #  # ]
    3221   [ #  #  #  # ]:        246 :         vu_ctrlr->state = VFIO_USER_CTRLR_PAUSED;
    3222   [ #  #  #  #  :        246 :         vfu_device_quiesced(endpoint->vfu_ctx, quiesce_ctx->status);
             #  #  #  # ]
    3223   [ #  #  #  # ]:        246 :         vu_ctrlr->queued_quiesce = false;
    3224                 :        246 :         free(quiesce_ctx);
    3225                 :            : 
    3226                 :            :         /* `vfu_device_quiesced` can change the migration state,
    3227                 :            :          * so we need to re-check `vu_ctrlr->state`.
    3228                 :            :          */
    3229   [ -  +  #  #  :        246 :         if (vu_ctrlr->state == VFIO_USER_CTRLR_MIGRATING) {
                   #  # ]
    3230   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s is in MIGRATION state\n", ctrlr_id(vu_ctrlr));
                   #  # ]
    3231                 :          0 :                 return;
    3232                 :            :         }
    3233                 :            : 
    3234   [ -  +  -  +  :        246 :         SPDK_DEBUGLOG(nvmf_vfio, "%s start to resume\n", ctrlr_id(vu_ctrlr));
                   #  # ]
    3235   [ #  #  #  # ]:        246 :         vu_ctrlr->state = VFIO_USER_CTRLR_RESUMING;
    3236   [ #  #  #  # ]:        246 :         ret = spdk_nvmf_subsystem_resume((struct spdk_nvmf_subsystem *)endpoint->subsystem,
    3237                 :          0 :                                          vfio_user_endpoint_resume_done, endpoint);
    3238         [ -  + ]:        246 :         if (ret < 0) {
    3239   [ #  #  #  # ]:          0 :                 vu_ctrlr->state = VFIO_USER_CTRLR_PAUSED;
    3240                 :          0 :                 SPDK_ERRLOG("%s: failed to resume, ret=%d\n", endpoint_id(endpoint), ret);
    3241                 :          0 :         }
    3242                 :          0 : }
    3243                 :            : 
    3244                 :            : static void
    3245                 :        246 : vfio_user_pause_done(struct spdk_nvmf_subsystem *subsystem,
    3246                 :            :                      void *ctx, int status)
    3247                 :            : {
    3248                 :        246 :         struct ctrlr_quiesce_ctx *quiesce_ctx = ctx;
    3249   [ #  #  #  # ]:        246 :         struct nvmf_vfio_user_endpoint *endpoint = quiesce_ctx->endpoint;
    3250   [ #  #  #  # ]:        246 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = endpoint->ctrlr;
    3251                 :            : 
    3252         [ -  + ]:        246 :         if (!vu_ctrlr) {
    3253                 :          0 :                 free(quiesce_ctx);
    3254                 :          0 :                 return;
    3255                 :            :         }
    3256                 :            : 
    3257   [ #  #  #  # ]:        246 :         quiesce_ctx->status = status;
    3258                 :            : 
    3259   [ -  +  -  +  :        246 :         SPDK_DEBUGLOG(nvmf_vfio, "%s pause done with status %d\n",
                   #  # ]
    3260                 :            :                       ctrlr_id(vu_ctrlr), status);
    3261                 :            : 
    3262   [ #  #  #  # ]:        246 :         spdk_thread_send_msg(vu_ctrlr->thread,
    3263                 :          0 :                              vfio_user_quiesce_done, ctx);
    3264                 :          0 : }
    3265                 :            : 
    3266                 :            : /*
    3267                 :            :  * Ensure that, for this PG, we've stopped running in nvmf_vfio_user_sq_poll();
    3268                 :            :  * we've already set ctrlr->state, so we won't process new entries, but we need
    3269                 :            :  * to ensure that this PG is quiesced. This only works because there's no
    3270                 :            :  * callback context set up between polling the SQ and spdk_nvmf_request_exec().
    3271                 :            :  *
    3272                 :            :  * Once we've walked all PGs, we need to pause any submitted I/O via
    3273                 :            :  * spdk_nvmf_subsystem_pause(SPDK_NVME_GLOBAL_NS_TAG).
    3274                 :            :  */
    3275                 :            : static void
    3276                 :        944 : vfio_user_quiesce_pg(void *ctx)
    3277                 :            : {
    3278                 :        944 :         struct ctrlr_quiesce_ctx *quiesce_ctx = ctx;
    3279   [ #  #  #  # ]:        944 :         struct nvmf_vfio_user_endpoint *endpoint = quiesce_ctx->endpoint;
    3280   [ #  #  #  # ]:        944 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = endpoint->ctrlr;
    3281   [ #  #  #  # ]:        944 :         struct nvmf_vfio_user_poll_group *vu_group = quiesce_ctx->group;
    3282   [ #  #  #  # ]:        944 :         struct spdk_nvmf_subsystem *subsystem = endpoint->subsystem;
    3283                 :            :         int ret;
    3284                 :            : 
    3285   [ -  +  -  +  :        944 :         SPDK_DEBUGLOG(nvmf_vfio, "quiesced pg:%p\n", vu_group);
                   #  # ]
    3286                 :            : 
    3287         [ -  + ]:        944 :         if (!vu_ctrlr) {
    3288                 :          0 :                 free(quiesce_ctx);
    3289                 :          0 :                 return;
    3290                 :            :         }
    3291                 :            : 
    3292   [ #  #  #  #  :        944 :         quiesce_ctx->group = TAILQ_NEXT(vu_group, link);
          #  #  #  #  #  
                      # ]
    3293   [ +  +  #  #  :        944 :         if (quiesce_ctx->group != NULL)  {
                   #  # ]
    3294   [ #  #  #  # ]:        698 :                 spdk_thread_send_msg(poll_group_to_thread(quiesce_ctx->group),
    3295                 :          0 :                                      vfio_user_quiesce_pg, quiesce_ctx);
    3296                 :        698 :                 return;
    3297                 :            :         }
    3298                 :            : 
    3299                 :        246 :         ret = spdk_nvmf_subsystem_pause(subsystem, SPDK_NVME_GLOBAL_NS_TAG,
    3300                 :          0 :                                         vfio_user_pause_done, quiesce_ctx);
    3301         [ -  + ]:        246 :         if (ret < 0) {
    3302                 :          0 :                 SPDK_ERRLOG("%s: failed to pause, ret=%d\n",
    3303                 :            :                             endpoint_id(endpoint), ret);
    3304   [ #  #  #  # ]:          0 :                 vu_ctrlr->state = VFIO_USER_CTRLR_RUNNING;
    3305                 :          0 :                 fail_ctrlr(vu_ctrlr);
    3306                 :          0 :                 free(quiesce_ctx);
    3307                 :          0 :         }
    3308                 :          0 : }
    3309                 :            : 
    3310                 :            : static void
    3311                 :        246 : ctrlr_quiesce(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    3312                 :            : {
    3313                 :            :         struct ctrlr_quiesce_ctx *quiesce_ctx;
    3314                 :            : 
    3315   [ #  #  #  # ]:        246 :         vu_ctrlr->state = VFIO_USER_CTRLR_PAUSING;
    3316                 :            : 
    3317                 :        246 :         quiesce_ctx = calloc(1, sizeof(*quiesce_ctx));
    3318         [ -  + ]:        246 :         if (!quiesce_ctx) {
    3319                 :          0 :                 SPDK_ERRLOG("Failed to allocate subsystem pause context\n");
    3320         [ #  # ]:          0 :                 assert(false);
    3321                 :            :                 return;
    3322                 :            :         }
    3323                 :            : 
    3324   [ #  #  #  #  :        246 :         quiesce_ctx->endpoint = vu_ctrlr->endpoint;
             #  #  #  # ]
    3325   [ #  #  #  # ]:        246 :         quiesce_ctx->status = 0;
    3326   [ #  #  #  #  :        246 :         quiesce_ctx->group = TAILQ_FIRST(&vu_ctrlr->transport->poll_groups);
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3327                 :            : 
    3328   [ #  #  #  # ]:        246 :         spdk_thread_send_msg(poll_group_to_thread(quiesce_ctx->group),
    3329                 :          0 :                              vfio_user_quiesce_pg, quiesce_ctx);
    3330                 :          0 : }
    3331                 :            : 
    3332                 :            : static int
    3333                 :       2480 : vfio_user_dev_quiesce_cb(vfu_ctx_t *vfu_ctx)
    3334                 :            : {
    3335                 :       2480 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    3336   [ +  -  +  - ]:       2480 :         struct spdk_nvmf_subsystem *subsystem = endpoint->subsystem;
    3337   [ +  -  +  - ]:       2480 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = endpoint->ctrlr;
    3338                 :            : 
    3339         [ +  + ]:       2480 :         if (!vu_ctrlr) {
    3340                 :          0 :                 return 0;
    3341                 :            :         }
    3342                 :            : 
    3343                 :            :         /* NVMf library will destruct controller when no
    3344                 :            :          * connected queue pairs.
    3345                 :            :          */
    3346   [ -  +  -  +  :       2480 :         if (!nvmf_subsystem_get_ctrlr(subsystem, vu_ctrlr->cntlid)) {
                   +  - ]
    3347                 :          0 :                 return 0;
    3348                 :            :         }
    3349                 :            : 
    3350   [ +  +  +  +  :       2480 :         SPDK_DEBUGLOG(nvmf_vfio, "%s starts to quiesce\n", ctrlr_id(vu_ctrlr));
                   +  - ]
    3351                 :            : 
    3352                 :            :         /* There is no race condition here as device quiesce callback
    3353                 :            :          * and nvmf_prop_set_cc() are running in the same thread context.
    3354                 :            :          */
    3355   [ +  +  +  -  :       2480 :         if (!vu_ctrlr->ctrlr->vcprop.cc.bits.en) {
          +  -  +  -  +  
             -  +  -  +  
                      + ]
    3356                 :       2066 :                 return 0;
    3357   [ +  +  +  -  :        414 :         } else if (!vu_ctrlr->ctrlr->vcprop.csts.bits.rdy) {
          +  -  +  -  +  
             -  +  -  -  
                      + ]
    3358                 :          0 :                 return 0;
    3359   [ +  +  -  +  :        414 :         } else if (vu_ctrlr->ctrlr->vcprop.csts.bits.shst == SPDK_NVME_SHST_COMPLETE) {
          -  +  -  +  -  
             +  -  +  +  
                      - ]
    3360                 :        168 :                 return 0;
    3361                 :            :         }
    3362                 :            : 
    3363   [ -  +  +  -  :        246 :         switch (vu_ctrlr->state) {
             #  #  #  # ]
    3364                 :          0 :         case VFIO_USER_CTRLR_PAUSED:
    3365                 :            :         case VFIO_USER_CTRLR_MIGRATING:
    3366                 :          0 :                 return 0;
    3367                 :        241 :         case VFIO_USER_CTRLR_RUNNING:
    3368                 :        241 :                 ctrlr_quiesce(vu_ctrlr);
    3369                 :        241 :                 break;
    3370                 :          5 :         case VFIO_USER_CTRLR_RESUMING:
    3371   [ #  #  #  # ]:          5 :                 vu_ctrlr->queued_quiesce = true;
    3372   [ -  +  -  +  :          5 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s is busy to quiesce, current state %u\n", ctrlr_id(vu_ctrlr),
          #  #  #  #  #  
                      # ]
    3373                 :            :                               vu_ctrlr->state);
    3374                 :          5 :                 break;
    3375                 :          0 :         default:
    3376   [ #  #  #  #  :          0 :                 assert(vu_ctrlr->state != VFIO_USER_CTRLR_PAUSING);
             #  #  #  # ]
    3377                 :          0 :                 break;
    3378                 :            :         }
    3379                 :            : 
    3380         [ #  # ]:        246 :         errno = EBUSY;
    3381                 :        246 :         return -1;
    3382                 :       1893 : }
    3383                 :            : 
    3384                 :            : static void
    3385                 :          0 : vfio_user_ctrlr_dump_migr_data(const char *name,
    3386                 :            :                                struct vfio_user_nvme_migr_state *migr_data,
    3387                 :            :                                struct nvmf_vfio_user_shadow_doorbells *sdbl)
    3388                 :            : {
    3389                 :            :         struct spdk_nvmf_registers *regs;
    3390                 :            :         struct nvme_migr_sq_state *sq;
    3391                 :            :         struct nvme_migr_cq_state *cq;
    3392                 :            :         uint32_t *doorbell_base;
    3393                 :            :         uint32_t i;
    3394                 :            : 
    3395                 :          0 :         SPDK_NOTICELOG("Dump %s\n", name);
    3396                 :            : 
    3397   [ #  #  #  # ]:          0 :         regs = &migr_data->nvmf_data.regs;
    3398         [ #  # ]:          0 :         doorbell_base = (uint32_t *)&migr_data->doorbells;
    3399                 :            : 
    3400                 :          0 :         SPDK_NOTICELOG("Registers\n");
    3401   [ #  #  #  #  :          0 :         SPDK_NOTICELOG("CSTS 0x%x\n", regs->csts.raw);
                   #  # ]
    3402   [ #  #  #  #  :          0 :         SPDK_NOTICELOG("CAP  0x%"PRIx64"\n", regs->cap.raw);
                   #  # ]
    3403   [ #  #  #  #  :          0 :         SPDK_NOTICELOG("VS   0x%x\n", regs->vs.raw);
                   #  # ]
    3404   [ #  #  #  #  :          0 :         SPDK_NOTICELOG("CC   0x%x\n", regs->cc.raw);
                   #  # ]
    3405   [ #  #  #  #  :          0 :         SPDK_NOTICELOG("AQA  0x%x\n", regs->aqa.raw);
                   #  # ]
    3406   [ #  #  #  # ]:          0 :         SPDK_NOTICELOG("ASQ  0x%"PRIx64"\n", regs->asq);
    3407   [ #  #  #  # ]:          0 :         SPDK_NOTICELOG("ACQ  0x%"PRIx64"\n", regs->acq);
    3408                 :            : 
    3409   [ #  #  #  #  :          0 :         SPDK_NOTICELOG("Number of IO Queues %u\n", migr_data->ctrlr_header.num_io_queues);
                   #  # ]
    3410                 :            : 
    3411         [ #  # ]:          0 :         if (sdbl != NULL) {
    3412   [ #  #  #  #  :          0 :                 SPDK_NOTICELOG("shadow doorbell buffer=%#lx\n",
                   #  # ]
    3413                 :            :                                migr_data->ctrlr_header.shadow_doorbell_buffer);
    3414   [ #  #  #  #  :          0 :                 SPDK_NOTICELOG("eventidx buffer=%#lx\n",
                   #  # ]
    3415                 :            :                                migr_data->ctrlr_header.eventidx_buffer);
    3416                 :          0 :         }
    3417                 :            : 
    3418         [ #  # ]:          0 :         for (i = 0; i < NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR; i++) {
    3419   [ #  #  #  #  :          0 :                 sq = &migr_data->qps[i].sq;
             #  #  #  # ]
    3420   [ #  #  #  #  :          0 :                 cq = &migr_data->qps[i].cq;
             #  #  #  # ]
    3421                 :            : 
    3422   [ #  #  #  #  :          0 :                 if (sq->size) {
                   #  # ]
    3423   [ #  #  #  #  :          0 :                         SPDK_NOTICELOG("sqid:%u, bar0_doorbell:%u\n", sq->sqid, doorbell_base[i * 2]);
             #  #  #  # ]
    3424   [ #  #  #  # ]:          0 :                         if (i > 0 && sdbl != NULL) {
    3425   [ #  #  #  #  :          0 :                                 SPDK_NOTICELOG("sqid:%u, shadow_doorbell:%u, eventidx:%u\n",
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3426                 :            :                                                sq->sqid,
    3427                 :            :                                                sdbl->shadow_doorbells[queue_index(i, false)],
    3428                 :            :                                                sdbl->eventidxs[queue_index(i, false)]);
    3429                 :          0 :                         }
    3430   [ #  #  #  #  :          0 :                         SPDK_NOTICELOG("SQ sqid:%u, cqid:%u, sqhead:%u, size:%u, dma_addr:0x%"PRIx64"\n",
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                      # ]
    3431                 :            :                                        sq->sqid, sq->cqid, sq->head, sq->size, sq->dma_addr);
    3432                 :          0 :                 }
    3433                 :            : 
    3434   [ #  #  #  #  :          0 :                 if (cq->size) {
                   #  # ]
    3435   [ #  #  #  #  :          0 :                         SPDK_NOTICELOG("cqid:%u, bar0_doorbell:%u\n", cq->cqid, doorbell_base[i * 2 + 1]);
             #  #  #  # ]
    3436   [ #  #  #  # ]:          0 :                         if (i > 0 && sdbl != NULL) {
    3437   [ #  #  #  #  :          0 :                                 SPDK_NOTICELOG("cqid:%u, shadow_doorbell:%u, eventidx:%u\n",
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3438                 :            :                                                cq->cqid,
    3439                 :            :                                                sdbl->shadow_doorbells[queue_index(i, true)],
    3440                 :            :                                                sdbl->eventidxs[queue_index(i, true)]);
    3441                 :          0 :                         }
    3442   [ #  #  #  #  :          0 :                         SPDK_NOTICELOG("CQ cqid:%u, phase:%u, cqtail:%u, size:%u, iv:%u, ien:%u, dma_addr:0x%"PRIx64"\n",
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  # ]
    3443                 :            :                                        cq->cqid, cq->phase, cq->tail, cq->size, cq->iv, cq->ien, cq->dma_addr);
    3444                 :          0 :                 }
    3445                 :          0 :         }
    3446                 :            : 
    3447                 :          0 :         SPDK_NOTICELOG("%s Dump Done\n", name);
    3448                 :          0 : }
    3449                 :            : 
    3450                 :            : /* Read region 9 content and restore it to migration data structures */
    3451                 :            : static int
    3452                 :          0 : vfio_user_migr_stream_to_data(struct nvmf_vfio_user_endpoint *endpoint,
    3453                 :            :                               struct vfio_user_nvme_migr_state *migr_state)
    3454                 :            : {
    3455   [ #  #  #  # ]:          0 :         void *data_ptr = endpoint->migr_data;
    3456                 :            : 
    3457                 :            :         /* Load vfio_user_nvme_migr_header first */
    3458   [ #  #  #  #  :          0 :         memcpy(&migr_state->ctrlr_header, data_ptr, sizeof(struct vfio_user_nvme_migr_header));
                   #  # ]
    3459                 :            :         /* TODO: version check */
    3460   [ #  #  #  #  :          0 :         if (migr_state->ctrlr_header.magic != VFIO_USER_NVME_MIGR_MAGIC) {
             #  #  #  # ]
    3461   [ #  #  #  #  :          0 :                 SPDK_ERRLOG("%s: bad magic number %x\n", endpoint_id(endpoint), migr_state->ctrlr_header.magic);
                   #  # ]
    3462                 :          0 :                 return -EINVAL;
    3463                 :            :         }
    3464                 :            : 
    3465                 :            :         /* Load nvmf controller data */
    3466   [ #  #  #  #  :          0 :         data_ptr = endpoint->migr_data + migr_state->ctrlr_header.nvmf_data_offset;
          #  #  #  #  #  
                      # ]
    3467   [ #  #  #  #  :          0 :         memcpy(&migr_state->nvmf_data, data_ptr, migr_state->ctrlr_header.nvmf_data_len);
          #  #  #  #  #  
                #  #  # ]
    3468                 :            : 
    3469                 :            :         /* Load queue pairs */
    3470   [ #  #  #  #  :          0 :         data_ptr = endpoint->migr_data + migr_state->ctrlr_header.qp_offset;
          #  #  #  #  #  
                      # ]
    3471   [ #  #  #  #  :          0 :         memcpy(&migr_state->qps, data_ptr, migr_state->ctrlr_header.qp_len);
          #  #  #  #  #  
                #  #  # ]
    3472                 :            : 
    3473                 :            :         /* Load doorbells */
    3474   [ #  #  #  #  :          0 :         data_ptr = endpoint->migr_data + migr_state->ctrlr_header.bar_offset[VFU_PCI_DEV_BAR0_REGION_IDX];
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3475   [ #  #  #  #  :          0 :         memcpy(&migr_state->doorbells, data_ptr,
                   #  # ]
    3476   [ #  #  #  #  :          0 :                migr_state->ctrlr_header.bar_len[VFU_PCI_DEV_BAR0_REGION_IDX]);
          #  #  #  #  #  
                      # ]
    3477                 :            : 
    3478                 :            :         /* Load CFG */
    3479   [ #  #  #  #  :          0 :         data_ptr = endpoint->migr_data + migr_state->ctrlr_header.bar_offset[VFU_PCI_DEV_CFG_REGION_IDX];
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3480   [ #  #  #  #  :          0 :         memcpy(&migr_state->cfg, data_ptr, migr_state->ctrlr_header.bar_len[VFU_PCI_DEV_CFG_REGION_IDX]);
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3481                 :            : 
    3482                 :          0 :         return 0;
    3483                 :          0 : }
    3484                 :            : 
    3485                 :            : 
    3486                 :            : static void
    3487                 :          0 : vfio_user_migr_ctrlr_save_data(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    3488                 :            : {
    3489   [ #  #  #  # ]:          0 :         struct spdk_nvmf_ctrlr *ctrlr = vu_ctrlr->ctrlr;
    3490   [ #  #  #  # ]:          0 :         struct nvmf_vfio_user_endpoint *endpoint = vu_ctrlr->endpoint;
    3491                 :            :         struct nvmf_vfio_user_sq *sq;
    3492                 :            :         struct nvmf_vfio_user_cq *cq;
    3493                 :            :         uint64_t data_offset;
    3494                 :            :         void *data_ptr;
    3495                 :            :         uint32_t *doorbell_base;
    3496                 :          0 :         uint32_t i = 0;
    3497                 :            :         uint16_t sqid, cqid;
    3498                 :          0 :         struct vfio_user_nvme_migr_state migr_state = {
    3499                 :            :                 .nvmf_data = {
    3500                 :            :                         .data_size = offsetof(struct spdk_nvmf_ctrlr_migr_data, unused),
    3501                 :            :                         .regs_size = sizeof(struct spdk_nvmf_registers),
    3502                 :            :                         .feat_size = sizeof(struct spdk_nvmf_ctrlr_feat)
    3503                 :            :                 }
    3504                 :            :         };
    3505                 :            : 
    3506                 :            :         /* Save all data to vfio_user_nvme_migr_state first, then we will
    3507                 :            :          * copy it to device migration region at last.
    3508                 :            :          */
    3509                 :            : 
    3510                 :            :         /* save magic number */
    3511                 :          0 :         migr_state.ctrlr_header.magic = VFIO_USER_NVME_MIGR_MAGIC;
    3512                 :            : 
    3513                 :            :         /* save controller data */
    3514                 :          0 :         spdk_nvmf_ctrlr_save_migr_data(ctrlr, &migr_state.nvmf_data);
    3515                 :            : 
    3516                 :            :         /* save connected queue pairs */
    3517   [ #  #  #  #  :          0 :         TAILQ_FOREACH(sq, &vu_ctrlr->connected_sqs, tailq) {
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3518                 :            :                 /* save sq */
    3519   [ #  #  #  # ]:          0 :                 sqid = sq->qid;
    3520   [ #  #  #  #  :          0 :                 migr_state.qps[sqid].sq.sqid = sq->qid;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3521   [ #  #  #  #  :          0 :                 migr_state.qps[sqid].sq.cqid = sq->cqid;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3522   [ #  #  #  #  :          0 :                 migr_state.qps[sqid].sq.head = *sq_headp(sq);
          #  #  #  #  #  
                      # ]
    3523   [ #  #  #  #  :          0 :                 migr_state.qps[sqid].sq.size = sq->size;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3524   [ #  #  #  #  :          0 :                 migr_state.qps[sqid].sq.dma_addr = sq->mapping.prp1;
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3525                 :            : 
    3526                 :            :                 /* save cq, for shared cq case, cq may be saved multiple times */
    3527   [ #  #  #  # ]:          0 :                 cqid = sq->cqid;
    3528   [ #  #  #  #  :          0 :                 cq = vu_ctrlr->cqs[cqid];
             #  #  #  # ]
    3529   [ #  #  #  #  :          0 :                 migr_state.qps[cqid].cq.cqid = cqid;
          #  #  #  #  #  
                      # ]
    3530   [ #  #  #  #  :          0 :                 migr_state.qps[cqid].cq.tail = *cq_tailp(cq);
          #  #  #  #  #  
                      # ]
    3531   [ #  #  #  #  :          0 :                 migr_state.qps[cqid].cq.ien = cq->ien;
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3532   [ #  #  #  #  :          0 :                 migr_state.qps[cqid].cq.iv = cq->iv;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3533   [ #  #  #  #  :          0 :                 migr_state.qps[cqid].cq.size = cq->size;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3534   [ #  #  #  #  :          0 :                 migr_state.qps[cqid].cq.phase = cq->phase;
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3535   [ #  #  #  #  :          0 :                 migr_state.qps[cqid].cq.dma_addr = cq->mapping.prp1;
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3536                 :          0 :                 i++;
    3537                 :          0 :         }
    3538                 :            : 
    3539   [ #  #  #  # ]:          0 :         assert(i > 0);
    3540         [ #  # ]:          0 :         migr_state.ctrlr_header.num_io_queues = i - 1;
    3541                 :            : 
    3542                 :            :         /* Save doorbells */
    3543                 :          0 :         doorbell_base = (uint32_t *)&migr_state.doorbells;
    3544   [ #  #  #  #  :          0 :         memcpy(doorbell_base, (void *)vu_ctrlr->bar0_doorbells, NVMF_VFIO_USER_DOORBELLS_SIZE);
             #  #  #  # ]
    3545                 :            : 
    3546                 :            :         /* Save PCI configuration space */
    3547   [ #  #  #  #  :          0 :         memcpy(&migr_state.cfg, (void *)endpoint->pci_config_space, NVME_REG_CFG_SIZE);
             #  #  #  # ]
    3548                 :            : 
    3549                 :            :         /* Save all data to device migration region */
    3550   [ #  #  #  # ]:          0 :         data_ptr = endpoint->migr_data;
    3551                 :            : 
    3552                 :            :         /* Copy nvmf controller data */
    3553                 :          0 :         data_offset = sizeof(struct vfio_user_nvme_migr_header);
    3554                 :          0 :         data_ptr += data_offset;
    3555         [ #  # ]:          0 :         migr_state.ctrlr_header.nvmf_data_offset = data_offset;
    3556         [ #  # ]:          0 :         migr_state.ctrlr_header.nvmf_data_len = sizeof(struct spdk_nvmf_ctrlr_migr_data);
    3557   [ #  #  #  # ]:          0 :         memcpy(data_ptr, &migr_state.nvmf_data, sizeof(struct spdk_nvmf_ctrlr_migr_data));
    3558                 :            : 
    3559                 :            :         /* Copy queue pairs */
    3560                 :          0 :         data_offset += sizeof(struct spdk_nvmf_ctrlr_migr_data);
    3561                 :          0 :         data_ptr += sizeof(struct spdk_nvmf_ctrlr_migr_data);
    3562         [ #  # ]:          0 :         migr_state.ctrlr_header.qp_offset = data_offset;
    3563         [ #  # ]:          0 :         migr_state.ctrlr_header.qp_len = i * (sizeof(struct nvme_migr_sq_state) + sizeof(
    3564                 :            :                         struct nvme_migr_cq_state));
    3565   [ #  #  #  #  :          0 :         memcpy(data_ptr, &migr_state.qps, migr_state.ctrlr_header.qp_len);
                   #  # ]
    3566                 :            : 
    3567                 :            :         /* Copy doorbells */
    3568         [ #  # ]:          0 :         data_offset += migr_state.ctrlr_header.qp_len;
    3569         [ #  # ]:          0 :         data_ptr += migr_state.ctrlr_header.qp_len;
    3570   [ #  #  #  #  :          0 :         migr_state.ctrlr_header.bar_offset[VFU_PCI_DEV_BAR0_REGION_IDX] = data_offset;
                   #  # ]
    3571   [ #  #  #  #  :          0 :         migr_state.ctrlr_header.bar_len[VFU_PCI_DEV_BAR0_REGION_IDX] = NVMF_VFIO_USER_DOORBELLS_SIZE;
                   #  # ]
    3572   [ #  #  #  # ]:          0 :         memcpy(data_ptr, &migr_state.doorbells, NVMF_VFIO_USER_DOORBELLS_SIZE);
    3573                 :            : 
    3574                 :            :         /* Copy CFG */
    3575                 :          0 :         data_offset += NVMF_VFIO_USER_DOORBELLS_SIZE;
    3576                 :          0 :         data_ptr += NVMF_VFIO_USER_DOORBELLS_SIZE;
    3577   [ #  #  #  #  :          0 :         migr_state.ctrlr_header.bar_offset[VFU_PCI_DEV_CFG_REGION_IDX] = data_offset;
                   #  # ]
    3578   [ #  #  #  #  :          0 :         migr_state.ctrlr_header.bar_len[VFU_PCI_DEV_CFG_REGION_IDX] = NVME_REG_CFG_SIZE;
                   #  # ]
    3579   [ #  #  #  # ]:          0 :         memcpy(data_ptr, &migr_state.cfg, NVME_REG_CFG_SIZE);
    3580                 :            : 
    3581                 :            :         /* copy shadow doorbells */
    3582   [ #  #  #  #  :          0 :         if (vu_ctrlr->sdbl != NULL) {
                   #  # ]
    3583         [ #  # ]:          0 :                 migr_state.ctrlr_header.sdbl = true;
    3584   [ #  #  #  #  :          0 :                 migr_state.ctrlr_header.shadow_doorbell_buffer = vu_ctrlr->shadow_doorbell_buffer;
                   #  # ]
    3585   [ #  #  #  #  :          0 :                 migr_state.ctrlr_header.eventidx_buffer = vu_ctrlr->eventidx_buffer;
                   #  # ]
    3586                 :          0 :         }
    3587                 :            : 
    3588                 :            :         /* Copy nvme migration header finally */
    3589   [ #  #  #  #  :          0 :         memcpy(endpoint->migr_data, &migr_state.ctrlr_header, sizeof(struct vfio_user_nvme_migr_header));
             #  #  #  # ]
    3590                 :            : 
    3591         [ #  # ]:          0 :         if (SPDK_DEBUGLOG_FLAG_ENABLED("nvmf_vfio")) {
    3592   [ #  #  #  # ]:          0 :                 vfio_user_ctrlr_dump_migr_data("SAVE", &migr_state, vu_ctrlr->sdbl);
    3593                 :          0 :         }
    3594                 :          0 : }
    3595                 :            : 
    3596                 :            : /*
    3597                 :            :  * If we are about to close the connection, we need to unregister the interrupt,
    3598                 :            :  * as the library will subsequently close the file descriptor we registered.
    3599                 :            :  */
    3600                 :            : static int
    3601                 :        157 : vfio_user_device_reset(vfu_ctx_t *vfu_ctx, vfu_reset_type_t type)
    3602                 :            : {
    3603                 :        157 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    3604   [ +  -  +  - ]:        157 :         struct nvmf_vfio_user_ctrlr *ctrlr = endpoint->ctrlr;
    3605                 :            : 
    3606   [ +  +  +  +  :        157 :         SPDK_DEBUGLOG(nvmf_vfio, "Device reset type %u\n", type);
                   +  - ]
    3607                 :            : 
    3608         [ +  + ]:        157 :         if (type == VFU_RESET_LOST_CONN) {
    3609         [ +  + ]:        145 :                 if (ctrlr != NULL) {
    3610         [ +  - ]:        114 :                         spdk_interrupt_unregister(&ctrlr->intr);
    3611   [ +  -  +  - ]:        114 :                         ctrlr->intr_fd = -1;
    3612                 :         75 :                 }
    3613                 :        145 :                 return 0;
    3614                 :            :         }
    3615                 :            : 
    3616                 :            :         /* FIXME: LOST_CONN case ? */
    3617   [ -  +  #  #  :         12 :         if (ctrlr->sdbl != NULL) {
                   #  # ]
    3618                 :          0 :                 vfio_user_ctrlr_switch_doorbells(ctrlr, false);
    3619   [ #  #  #  # ]:          0 :                 free_sdbl(vfu_ctx, ctrlr->sdbl);
    3620   [ #  #  #  # ]:          0 :                 ctrlr->sdbl = NULL;
    3621                 :          0 :         }
    3622                 :            : 
    3623                 :            :         /* FIXME: much more needed here. */
    3624                 :            : 
    3625                 :         12 :         return 0;
    3626                 :         89 : }
    3627                 :            : 
    3628                 :            : static int
    3629                 :          0 : vfio_user_migr_ctrlr_construct_qps(struct nvmf_vfio_user_ctrlr *vu_ctrlr,
    3630                 :            :                                    struct vfio_user_nvme_migr_state *migr_state)
    3631                 :            : {
    3632                 :          0 :         uint32_t i, qsize = 0;
    3633                 :            :         uint16_t sqid, cqid;
    3634                 :            :         struct vfio_user_nvme_migr_qp migr_qp;
    3635                 :            :         void *addr;
    3636                 :          0 :         uint32_t cqs_ref[NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR] = {};
    3637                 :            :         int ret;
    3638                 :            : 
    3639         [ #  # ]:          0 :         if (SPDK_DEBUGLOG_FLAG_ENABLED("nvmf_vfio")) {
    3640   [ #  #  #  # ]:          0 :                 vfio_user_ctrlr_dump_migr_data("RESUME", migr_state, vu_ctrlr->sdbl);
    3641                 :          0 :         }
    3642                 :            : 
    3643                 :            :         /* restore submission queues */
    3644         [ #  # ]:          0 :         for (i = 0; i < NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR; i++) {
    3645   [ #  #  #  #  :          0 :                 migr_qp =  migr_state->qps[i];
                   #  # ]
    3646                 :            : 
    3647         [ #  # ]:          0 :                 qsize = migr_qp.sq.size;
    3648         [ #  # ]:          0 :                 if (qsize) {
    3649                 :            :                         struct nvmf_vfio_user_sq *sq;
    3650                 :            : 
    3651                 :          0 :                         sqid = migr_qp.sq.sqid;
    3652         [ #  # ]:          0 :                         if (sqid != i) {
    3653                 :          0 :                                 SPDK_ERRLOG("Expected sqid %u while got %u", i, sqid);
    3654                 :          0 :                                 return -EINVAL;
    3655                 :            :                         }
    3656                 :            : 
    3657                 :            :                         /* allocate sq if necessary */
    3658   [ #  #  #  #  :          0 :                         if (vu_ctrlr->sqs[sqid] == NULL) {
          #  #  #  #  #  
                      # ]
    3659   [ #  #  #  #  :          0 :                                 ret = init_sq(vu_ctrlr, &vu_ctrlr->transport->transport, sqid);
                   #  # ]
    3660         [ #  # ]:          0 :                                 if (ret) {
    3661                 :          0 :                                         SPDK_ERRLOG("Construct qpair with qid %u failed\n", sqid);
    3662                 :          0 :                                         return -EFAULT;
    3663                 :            :                                 }
    3664                 :          0 :                         }
    3665                 :            : 
    3666   [ #  #  #  #  :          0 :                         sq = vu_ctrlr->sqs[sqid];
             #  #  #  # ]
    3667   [ #  #  #  # ]:          0 :                         sq->size = qsize;
    3668                 :            : 
    3669                 :          0 :                         ret = alloc_sq_reqs(vu_ctrlr, sq);
    3670         [ #  # ]:          0 :                         if (ret) {
    3671                 :          0 :                                 SPDK_ERRLOG("Construct sq with qid %u failed\n", sqid);
    3672                 :          0 :                                 return -EFAULT;
    3673                 :            :                         }
    3674                 :            : 
    3675                 :            :                         /* restore sq */
    3676   [ #  #  #  # ]:          0 :                         sq->sq_state = VFIO_USER_SQ_CREATED;
    3677   [ #  #  #  #  :          0 :                         sq->cqid = migr_qp.sq.cqid;
                   #  # ]
    3678         [ #  # ]:          0 :                         *sq_headp(sq) = migr_qp.sq.head;
    3679   [ #  #  #  #  :          0 :                         sq->mapping.prp1 = migr_qp.sq.dma_addr;
             #  #  #  # ]
    3680   [ #  #  #  #  :          0 :                         sq->mapping.len = sq->size * sizeof(struct spdk_nvme_cmd);
          #  #  #  #  #  
                      # ]
    3681   [ #  #  #  #  :          0 :                         addr = map_one(vu_ctrlr->endpoint->vfu_ctx,
             #  #  #  # ]
    3682   [ #  #  #  #  :          0 :                                        sq->mapping.prp1, sq->mapping.len,
          #  #  #  #  #  
                #  #  # ]
    3683   [ #  #  #  #  :          0 :                                        sq->mapping.sg, &sq->mapping.iov,
          #  #  #  #  #  
                      # ]
    3684                 :            :                                        PROT_READ);
    3685         [ #  # ]:          0 :                         if (addr == NULL) {
    3686   [ #  #  #  #  :          0 :                                 SPDK_ERRLOG("Restore sq with qid %u PRP1 0x%"PRIx64" with size %u failed\n",
          #  #  #  #  #  
                      # ]
    3687                 :            :                                             sqid, sq->mapping.prp1, sq->size);
    3688                 :          0 :                                 return -EFAULT;
    3689                 :            :                         }
    3690   [ #  #  #  #  :          0 :                         cqs_ref[sq->cqid]++;
             #  #  #  # ]
    3691                 :          0 :                 }
    3692                 :          0 :         }
    3693                 :            : 
    3694                 :            :         /* restore completion queues */
    3695         [ #  # ]:          0 :         for (i = 0; i < NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR; i++) {
    3696   [ #  #  #  #  :          0 :                 migr_qp =  migr_state->qps[i];
                   #  # ]
    3697                 :            : 
    3698   [ #  #  #  # ]:          0 :                 qsize = migr_qp.cq.size;
    3699         [ #  # ]:          0 :                 if (qsize) {
    3700                 :            :                         struct nvmf_vfio_user_cq *cq;
    3701                 :            : 
    3702                 :            :                         /* restore cq */
    3703         [ #  # ]:          0 :                         cqid = migr_qp.sq.cqid;
    3704   [ #  #  #  # ]:          0 :                         assert(cqid == i);
    3705                 :            : 
    3706                 :            :                         /* allocate cq if necessary */
    3707   [ #  #  #  #  :          0 :                         if (vu_ctrlr->cqs[cqid] == NULL) {
          #  #  #  #  #  
                      # ]
    3708                 :          0 :                                 ret = init_cq(vu_ctrlr, cqid);
    3709         [ #  # ]:          0 :                                 if (ret) {
    3710                 :          0 :                                         SPDK_ERRLOG("Construct qpair with qid %u failed\n", cqid);
    3711                 :          0 :                                         return -EFAULT;
    3712                 :            :                                 }
    3713                 :          0 :                         }
    3714                 :            : 
    3715   [ #  #  #  #  :          0 :                         cq = vu_ctrlr->cqs[cqid];
             #  #  #  # ]
    3716                 :            : 
    3717   [ #  #  #  # ]:          0 :                         cq->size = qsize;
    3718                 :            : 
    3719   [ #  #  #  # ]:          0 :                         cq->cq_state = VFIO_USER_CQ_CREATED;
    3720   [ #  #  #  #  :          0 :                         cq->cq_ref = cqs_ref[cqid];
          #  #  #  #  #  
                      # ]
    3721   [ #  #  #  # ]:          0 :                         *cq_tailp(cq) = migr_qp.cq.tail;
    3722   [ #  #  #  #  :          0 :                         cq->mapping.prp1 = migr_qp.cq.dma_addr;
          #  #  #  #  #  
                      # ]
    3723   [ #  #  #  #  :          0 :                         cq->mapping.len = cq->size * sizeof(struct spdk_nvme_cpl);
          #  #  #  #  #  
                      # ]
    3724   [ #  #  #  #  :          0 :                         cq->ien = migr_qp.cq.ien;
             #  #  #  # ]
    3725   [ #  #  #  #  :          0 :                         cq->iv = migr_qp.cq.iv;
             #  #  #  # ]
    3726   [ #  #  #  #  :          0 :                         cq->phase = migr_qp.cq.phase;
             #  #  #  # ]
    3727   [ #  #  #  #  :          0 :                         addr = map_one(vu_ctrlr->endpoint->vfu_ctx,
             #  #  #  # ]
    3728   [ #  #  #  #  :          0 :                                        cq->mapping.prp1, cq->mapping.len,
          #  #  #  #  #  
                #  #  # ]
    3729   [ #  #  #  #  :          0 :                                        cq->mapping.sg, &cq->mapping.iov,
          #  #  #  #  #  
                      # ]
    3730                 :            :                                        PROT_READ | PROT_WRITE);
    3731         [ #  # ]:          0 :                         if (addr == NULL) {
    3732   [ #  #  #  #  :          0 :                                 SPDK_ERRLOG("Restore cq with qid %u PRP1 0x%"PRIx64" with size %u failed\n",
          #  #  #  #  #  
                      # ]
    3733                 :            :                                             cqid, cq->mapping.prp1, cq->size);
    3734                 :          0 :                                 return -EFAULT;
    3735                 :            :                         }
    3736                 :          0 :                 }
    3737                 :          0 :         }
    3738                 :            : 
    3739                 :          0 :         return 0;
    3740                 :          0 : }
    3741                 :            : 
    3742                 :            : static int
    3743                 :          0 : vfio_user_migr_ctrlr_restore(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    3744                 :            : {
    3745   [ #  #  #  # ]:          0 :         struct nvmf_vfio_user_endpoint *endpoint = vu_ctrlr->endpoint;
    3746   [ #  #  #  # ]:          0 :         struct spdk_nvmf_ctrlr *ctrlr = vu_ctrlr->ctrlr;
    3747                 :            :         uint32_t *doorbell_base;
    3748                 :          0 :         struct spdk_nvme_cmd cmd;
    3749                 :            :         uint16_t i;
    3750                 :          0 :         int rc = 0;
    3751                 :          0 :         struct vfio_user_nvme_migr_state migr_state = {
    3752                 :            :                 .nvmf_data = {
    3753                 :            :                         .data_size = offsetof(struct spdk_nvmf_ctrlr_migr_data, unused),
    3754                 :            :                         .regs_size = sizeof(struct spdk_nvmf_registers),
    3755                 :            :                         .feat_size = sizeof(struct spdk_nvmf_ctrlr_feat)
    3756                 :            :                 }
    3757                 :            :         };
    3758                 :            : 
    3759   [ #  #  #  #  :          0 :         assert(endpoint->migr_data != NULL);
             #  #  #  # ]
    3760   [ #  #  #  # ]:          0 :         assert(ctrlr != NULL);
    3761                 :          0 :         rc = vfio_user_migr_stream_to_data(endpoint, &migr_state);
    3762         [ #  # ]:          0 :         if (rc) {
    3763                 :          0 :                 return rc;
    3764                 :            :         }
    3765                 :            : 
    3766                 :            :         /* restore shadow doorbells */
    3767   [ #  #  #  # ]:          0 :         if (migr_state.ctrlr_header.sdbl) {
    3768                 :            :                 struct nvmf_vfio_user_shadow_doorbells *sdbl;
    3769   [ #  #  #  #  :          0 :                 sdbl = map_sdbl(vu_ctrlr->endpoint->vfu_ctx,
             #  #  #  # ]
    3770         [ #  # ]:          0 :                                 migr_state.ctrlr_header.shadow_doorbell_buffer,
    3771         [ #  # ]:          0 :                                 migr_state.ctrlr_header.eventidx_buffer,
    3772                 :          0 :                                 memory_page_size(vu_ctrlr));
    3773         [ #  # ]:          0 :                 if (sdbl == NULL) {
    3774                 :          0 :                         SPDK_ERRLOG("%s: failed to re-map shadow doorbell buffers\n",
    3775                 :            :                                     ctrlr_id(vu_ctrlr));
    3776                 :          0 :                         return -1;
    3777                 :            :                 }
    3778                 :            : 
    3779   [ #  #  #  #  :          0 :                 vu_ctrlr->shadow_doorbell_buffer = migr_state.ctrlr_header.shadow_doorbell_buffer;
                   #  # ]
    3780   [ #  #  #  #  :          0 :                 vu_ctrlr->eventidx_buffer = migr_state.ctrlr_header.eventidx_buffer;
                   #  # ]
    3781                 :            : 
    3782   [ #  #  #  #  :          0 :                 SWAP(vu_ctrlr->sdbl, sdbl);
             #  #  #  # ]
    3783                 :          0 :         }
    3784                 :            : 
    3785                 :          0 :         rc = vfio_user_migr_ctrlr_construct_qps(vu_ctrlr, &migr_state);
    3786         [ #  # ]:          0 :         if (rc) {
    3787                 :          0 :                 return rc;
    3788                 :            :         }
    3789                 :            : 
    3790                 :            :         /* restore PCI configuration space */
    3791   [ #  #  #  #  :          0 :         memcpy((void *)endpoint->pci_config_space, &migr_state.cfg, NVME_REG_CFG_SIZE);
             #  #  #  # ]
    3792                 :            : 
    3793                 :          0 :         doorbell_base = (uint32_t *)&migr_state.doorbells;
    3794                 :            :         /* restore doorbells from saved registers */
    3795   [ #  #  #  #  :          0 :         memcpy((void *)vu_ctrlr->bar0_doorbells, doorbell_base, NVMF_VFIO_USER_DOORBELLS_SIZE);
             #  #  #  # ]
    3796                 :            : 
    3797                 :            :         /* restore nvmf controller data */
    3798                 :          0 :         rc = spdk_nvmf_ctrlr_restore_migr_data(ctrlr, &migr_state.nvmf_data);
    3799         [ #  # ]:          0 :         if (rc) {
    3800                 :          0 :                 return rc;
    3801                 :            :         }
    3802                 :            : 
    3803                 :            :         /* resubmit pending AERs */
    3804   [ #  #  #  #  :          0 :         for (i = 0; i < migr_state.nvmf_data.num_aer_cids; i++) {
                   #  # ]
    3805   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s AER resubmit, CID %u\n", ctrlr_id(vu_ctrlr),
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    3806                 :            :                               migr_state.nvmf_data.aer_cids[i]);
    3807         [ #  # ]:          0 :                 memset(&cmd, 0, sizeof(cmd));
    3808                 :          0 :                 cmd.opc = SPDK_NVME_OPC_ASYNC_EVENT_REQUEST;
    3809   [ #  #  #  #  :          0 :                 cmd.cid = migr_state.nvmf_data.aer_cids[i];
          #  #  #  #  #  
                      # ]
    3810   [ #  #  #  #  :          0 :                 rc = handle_cmd_req(vu_ctrlr, &cmd, vu_ctrlr->sqs[0]);
             #  #  #  # ]
    3811         [ #  # ]:          0 :                 if (spdk_unlikely(rc)) {
    3812                 :          0 :                         break;
    3813                 :            :                 }
    3814                 :          0 :         }
    3815                 :            : 
    3816                 :          0 :         return rc;
    3817                 :          0 : }
    3818                 :            : 
    3819                 :            : static void
    3820                 :          0 : vfio_user_migr_ctrlr_enable_sqs(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    3821                 :            : {
    3822                 :            :         uint32_t i;
    3823                 :            :         struct nvmf_vfio_user_sq *sq;
    3824                 :            : 
    3825                 :            :         /* The Admin queue (qid: 0) does not ever use shadow doorbells. */
    3826                 :            : 
    3827   [ #  #  #  #  :          0 :         if (vu_ctrlr->sqs[0] != NULL) {
          #  #  #  #  #  
                      # ]
    3828   [ #  #  #  #  :          0 :                 vu_ctrlr->sqs[0]->dbl_tailp = vu_ctrlr->bar0_doorbells +
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                      # ]
    3829                 :          0 :                                               queue_index(0, false);
    3830                 :          0 :         }
    3831                 :            : 
    3832   [ #  #  #  #  :          0 :         if (vu_ctrlr->cqs[0] != NULL) {
          #  #  #  #  #  
                      # ]
    3833   [ #  #  #  #  :          0 :                 vu_ctrlr->cqs[0]->dbl_headp = vu_ctrlr->bar0_doorbells +
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                      # ]
    3834                 :          0 :                                               queue_index(0, true);
    3835                 :          0 :         }
    3836                 :            : 
    3837   [ #  #  #  # ]:          0 :         vfio_user_ctrlr_switch_doorbells(vu_ctrlr, vu_ctrlr->sdbl != NULL);
    3838                 :            : 
    3839         [ #  # ]:          0 :         for (i = 0; i < NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR; i++) {
    3840   [ #  #  #  #  :          0 :                 sq = vu_ctrlr->sqs[i];
             #  #  #  # ]
    3841   [ #  #  #  #  :          0 :                 if (!sq || !sq->size) {
             #  #  #  # ]
    3842                 :          0 :                         continue;
    3843                 :            :                 }
    3844                 :            : 
    3845   [ #  #  #  # ]:          0 :                 if (nvmf_qpair_is_admin_queue(&sq->qpair)) {
    3846                 :            :                         /* ADMIN queue pair is always in the poll group, just enable it */
    3847   [ #  #  #  # ]:          0 :                         sq->sq_state = VFIO_USER_SQ_ACTIVE;
    3848                 :          0 :                 } else {
    3849   [ #  #  #  #  :          0 :                         spdk_nvmf_tgt_new_qpair(vu_ctrlr->transport->transport.tgt, &sq->qpair);
          #  #  #  #  #  
                #  #  # ]
    3850                 :            :                 }
    3851                 :          0 :         }
    3852                 :          0 : }
    3853                 :            : 
    3854                 :            : /*
    3855                 :            :  * We are in stop-and-copy state, but still potentially have some current dirty
    3856                 :            :  * sgls: while we're quiesced and thus should have no active requests, we still
    3857                 :            :  * have potentially dirty maps of the shadow doorbells and the CQs (SQs are
    3858                 :            :  * mapped read only).
    3859                 :            :  *
    3860                 :            :  * Since we won't be calling vfu_sgl_put() for them, we need to explicitly
    3861                 :            :  * mark them dirty now.
    3862                 :            :  */
    3863                 :            : static void
    3864                 :          0 : vfio_user_migr_ctrlr_mark_dirty(struct nvmf_vfio_user_ctrlr *vu_ctrlr)
    3865                 :            : {
    3866   [ #  #  #  # ]:          0 :         struct nvmf_vfio_user_endpoint *endpoint = vu_ctrlr->endpoint;
    3867                 :            : 
    3868   [ #  #  #  #  :          0 :         assert(vu_ctrlr->state == VFIO_USER_CTRLR_MIGRATING);
             #  #  #  # ]
    3869                 :            : 
    3870         [ #  # ]:          0 :         for (size_t i = 0; i < NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR; i++) {
    3871   [ #  #  #  #  :          0 :                 struct nvmf_vfio_user_cq *cq = vu_ctrlr->cqs[i];
             #  #  #  # ]
    3872                 :            : 
    3873   [ #  #  #  #  :          0 :                 if (cq == NULL || q_addr(&cq->mapping) == NULL) {
                   #  # ]
    3874                 :          0 :                         continue;
    3875                 :            :                 }
    3876                 :            : 
    3877   [ #  #  #  #  :          0 :                 vfu_sgl_mark_dirty(endpoint->vfu_ctx, cq->mapping.sg, 1);
          #  #  #  #  #  
                      # ]
    3878                 :          0 :         }
    3879                 :            : 
    3880   [ #  #  #  #  :          0 :         if (vu_ctrlr->sdbl != NULL) {
                   #  # ]
    3881                 :            :                 dma_sg_t *sg;
    3882                 :            :                 size_t i;
    3883                 :            : 
    3884         [ #  # ]:          0 :                 for (i = 0; i < NVMF_VFIO_USER_SHADOW_DOORBELLS_BUFFER_COUNT;
    3885                 :          0 :                      ++i) {
    3886                 :            : 
    3887   [ #  #  #  #  :          0 :                         if (!vu_ctrlr->sdbl->iovs[i].iov_len) {
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    3888                 :          0 :                                 continue;
    3889                 :            :                         }
    3890                 :            : 
    3891   [ #  #  #  #  :          0 :                         sg = index_to_sg_t(vu_ctrlr->sdbl->sgs, i);
             #  #  #  # ]
    3892                 :            : 
    3893   [ #  #  #  # ]:          0 :                         vfu_sgl_mark_dirty(endpoint->vfu_ctx, sg, 1);
    3894                 :          0 :                 }
    3895                 :          0 :         }
    3896                 :          0 : }
    3897                 :            : 
    3898                 :            : static int
    3899                 :          0 : vfio_user_migration_device_state_transition(vfu_ctx_t *vfu_ctx, vfu_migr_state_t state)
    3900                 :            : {
    3901                 :          0 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    3902   [ #  #  #  # ]:          0 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = endpoint->ctrlr;
    3903                 :            :         struct nvmf_vfio_user_sq *sq;
    3904                 :          0 :         int ret = 0;
    3905                 :            : 
    3906   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio, "%s controller state %u, migration state %u\n", endpoint_id(endpoint),
          #  #  #  #  #  
                      # ]
    3907                 :            :                       vu_ctrlr->state, state);
    3908                 :            : 
    3909   [ #  #  #  #  :          0 :         switch (state) {
                   #  # ]
    3910                 :          0 :         case VFU_MIGR_STATE_STOP_AND_COPY:
    3911   [ #  #  #  # ]:          0 :                 vu_ctrlr->in_source_vm = true;
    3912   [ #  #  #  # ]:          0 :                 vu_ctrlr->state = VFIO_USER_CTRLR_MIGRATING;
    3913                 :          0 :                 vfio_user_migr_ctrlr_mark_dirty(vu_ctrlr);
    3914                 :          0 :                 vfio_user_migr_ctrlr_save_data(vu_ctrlr);
    3915                 :          0 :                 break;
    3916                 :          0 :         case VFU_MIGR_STATE_STOP:
    3917   [ #  #  #  # ]:          0 :                 vu_ctrlr->state = VFIO_USER_CTRLR_MIGRATING;
    3918                 :            :                 /* The controller associates with source VM is dead now, we will resume
    3919                 :            :                  * the subsystem after destroying the controller data structure, then the
    3920                 :            :                  * subsystem can be re-used for another new client.
    3921                 :            :                  */
    3922   [ #  #  #  #  :          0 :                 if (vu_ctrlr->in_source_vm) {
             #  #  #  # ]
    3923   [ #  #  #  # ]:          0 :                         endpoint->need_resume = true;
    3924                 :          0 :                 }
    3925                 :          0 :                 break;
    3926                 :          0 :         case VFU_MIGR_STATE_PRE_COPY:
    3927   [ #  #  #  #  :          0 :                 assert(vu_ctrlr->state == VFIO_USER_CTRLR_PAUSED);
             #  #  #  # ]
    3928                 :          0 :                 break;
    3929                 :          0 :         case VFU_MIGR_STATE_RESUME:
    3930                 :            :                 /*
    3931                 :            :                  * Destination ADMIN queue pair is connected when starting the VM,
    3932                 :            :                  * but the ADMIN queue pair isn't enabled in destination VM, the poll
    3933                 :            :                  * group will do nothing to ADMIN queue pair for now.
    3934                 :            :                  */
    3935   [ #  #  #  #  :          0 :                 if (vu_ctrlr->state != VFIO_USER_CTRLR_RUNNING) {
                   #  # ]
    3936                 :          0 :                         break;
    3937                 :            :                 }
    3938                 :            : 
    3939   [ #  #  #  #  :          0 :                 assert(!vu_ctrlr->in_source_vm);
          #  #  #  #  #  
                      # ]
    3940   [ #  #  #  # ]:          0 :                 vu_ctrlr->state = VFIO_USER_CTRLR_MIGRATING;
    3941                 :            : 
    3942   [ #  #  #  #  :          0 :                 sq = TAILQ_FIRST(&vu_ctrlr->connected_sqs);
                   #  # ]
    3943   [ #  #  #  # ]:          0 :                 assert(sq != NULL);
    3944   [ #  #  #  #  :          0 :                 assert(sq->qpair.qid == 0);
          #  #  #  #  #  
                      # ]
    3945   [ #  #  #  # ]:          0 :                 sq->sq_state = VFIO_USER_SQ_INACTIVE;
    3946                 :            : 
    3947                 :            :                 /* Free ADMIN SQ resources first, SQ resources will be
    3948                 :            :                  * allocated based on queue size from source VM.
    3949                 :            :                  */
    3950                 :          0 :                 free_sq_reqs(sq);
    3951   [ #  #  #  # ]:          0 :                 sq->size = 0;
    3952                 :          0 :                 break;
    3953                 :          0 :         case VFU_MIGR_STATE_RUNNING:
    3954                 :            : 
    3955   [ #  #  #  #  :          0 :                 if (vu_ctrlr->state != VFIO_USER_CTRLR_MIGRATING) {
                   #  # ]
    3956                 :          0 :                         break;
    3957                 :            :                 }
    3958                 :            : 
    3959   [ #  #  #  #  :          0 :                 if (!vu_ctrlr->in_source_vm) {
             #  #  #  # ]
    3960                 :            :                         /* Restore destination VM from BAR9 */
    3961                 :          0 :                         ret = vfio_user_migr_ctrlr_restore(vu_ctrlr);
    3962         [ #  # ]:          0 :                         if (ret) {
    3963                 :          0 :                                 break;
    3964                 :            :                         }
    3965                 :            : 
    3966                 :          0 :                         vfio_user_ctrlr_switch_doorbells(vu_ctrlr, false);
    3967                 :          0 :                         vfio_user_migr_ctrlr_enable_sqs(vu_ctrlr);
    3968   [ #  #  #  # ]:          0 :                         vu_ctrlr->state = VFIO_USER_CTRLR_RUNNING;
    3969                 :            :                         /* FIXME where do we resume nvmf? */
    3970                 :          0 :                 } else {
    3971                 :            :                         /* Rollback source VM */
    3972   [ #  #  #  # ]:          0 :                         vu_ctrlr->state = VFIO_USER_CTRLR_RESUMING;
    3973   [ #  #  #  # ]:          0 :                         ret = spdk_nvmf_subsystem_resume((struct spdk_nvmf_subsystem *)endpoint->subsystem,
    3974                 :          0 :                                                          vfio_user_endpoint_resume_done, endpoint);
    3975         [ #  # ]:          0 :                         if (ret < 0) {
    3976                 :            :                                 /* TODO: fail controller with CFS bit set */
    3977   [ #  #  #  # ]:          0 :                                 vu_ctrlr->state = VFIO_USER_CTRLR_PAUSED;
    3978                 :          0 :                                 SPDK_ERRLOG("%s: failed to resume, ret=%d\n", endpoint_id(endpoint), ret);
    3979                 :          0 :                         }
    3980                 :            :                 }
    3981   [ #  #  #  # ]:          0 :                 vu_ctrlr->migr_data_prepared = false;
    3982   [ #  #  #  # ]:          0 :                 vu_ctrlr->in_source_vm = false;
    3983                 :          0 :                 break;
    3984                 :            : 
    3985                 :          0 :         default:
    3986                 :          0 :                 return -EINVAL;
    3987                 :            :         }
    3988                 :            : 
    3989                 :          0 :         return ret;
    3990                 :          0 : }
    3991                 :            : 
    3992                 :            : static uint64_t
    3993                 :          0 : vfio_user_migration_get_pending_bytes(vfu_ctx_t *vfu_ctx)
    3994                 :            : {
    3995                 :          0 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    3996   [ #  #  #  # ]:          0 :         struct nvmf_vfio_user_ctrlr *ctrlr = endpoint->ctrlr;
    3997                 :            :         uint64_t pending_bytes;
    3998                 :            : 
    3999   [ #  #  #  #  :          0 :         if (ctrlr->migr_data_prepared) {
             #  #  #  # ]
    4000   [ #  #  #  #  :          0 :                 assert(ctrlr->state == VFIO_USER_CTRLR_MIGRATING);
             #  #  #  # ]
    4001                 :          0 :                 pending_bytes = 0;
    4002                 :          0 :         } else {
    4003                 :          0 :                 pending_bytes = vfio_user_migr_data_len();
    4004                 :            :         }
    4005                 :            : 
    4006   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio,
          #  #  #  #  #  
                      # ]
    4007                 :            :                       "%s current state %u, pending bytes 0x%"PRIx64"\n",
    4008                 :            :                       endpoint_id(endpoint), ctrlr->state, pending_bytes);
    4009                 :            : 
    4010                 :          0 :         return pending_bytes;
    4011                 :            : }
    4012                 :            : 
    4013                 :            : static int
    4014                 :          0 : vfio_user_migration_prepare_data(vfu_ctx_t *vfu_ctx, uint64_t *offset, uint64_t *size)
    4015                 :            : {
    4016                 :          0 :         struct nvmf_vfio_user_endpoint *endpoint = vfu_get_private(vfu_ctx);
    4017   [ #  #  #  # ]:          0 :         struct nvmf_vfio_user_ctrlr *ctrlr = endpoint->ctrlr;
    4018                 :            : 
    4019                 :            :         /*
    4020                 :            :          * When transitioning to pre-copy state we set pending_bytes to 0,
    4021                 :            :          * so the vfio-user client shouldn't attempt to read any migration
    4022                 :            :          * data. This is not yet guaranteed by libvfio-user.
    4023                 :            :          */
    4024   [ #  #  #  #  :          0 :         if (ctrlr->state != VFIO_USER_CTRLR_MIGRATING) {
                   #  # ]
    4025   [ #  #  #  # ]:          0 :                 assert(size != NULL);
    4026         [ #  # ]:          0 :                 *offset = 0;
    4027         [ #  # ]:          0 :                 *size = 0;
    4028                 :          0 :                 return 0;
    4029                 :            :         }
    4030                 :            : 
    4031   [ #  #  #  #  :          0 :         if (ctrlr->in_source_vm) { /* migration source */
             #  #  #  # ]
    4032   [ #  #  #  # ]:          0 :                 assert(size != NULL);
    4033         [ #  # ]:          0 :                 *size = vfio_user_migr_data_len();
    4034                 :          0 :                 vfio_user_migr_ctrlr_save_data(ctrlr);
    4035                 :          0 :         } else { /* migration destination */
    4036   [ #  #  #  # ]:          0 :                 assert(size == NULL);
    4037   [ #  #  #  #  :          0 :                 assert(!ctrlr->migr_data_prepared);
          #  #  #  #  #  
                      # ]
    4038                 :            :         }
    4039         [ #  # ]:          0 :         *offset = 0;
    4040   [ #  #  #  # ]:          0 :         ctrlr->migr_data_prepared = true;
    4041                 :            : 
    4042   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio, "%s current state %u\n", endpoint_id(endpoint), ctrlr->state);
          #  #  #  #  #  
                      # ]
    4043                 :            : 
    4044                 :          0 :         return 0;
    4045                 :          0 : }
    4046                 :            : 
    4047                 :            : static ssize_t
    4048                 :          0 : vfio_user_migration_read_data(vfu_ctx_t *vfu_ctx __attribute__((unused)),
    4049                 :            :                               void *buf __attribute__((unused)),
    4050                 :            :                               uint64_t count __attribute__((unused)),
    4051                 :            :                               uint64_t offset __attribute__((unused)))
    4052                 :            : {
    4053   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: migration read data not supported\n",
                   #  # ]
    4054                 :            :                       endpoint_id(vfu_get_private(vfu_ctx)));
    4055         [ #  # ]:          0 :         errno = ENOTSUP;
    4056                 :          0 :         return -1;
    4057                 :            : }
    4058                 :            : 
    4059                 :            : static ssize_t
    4060                 :          0 : vfio_user_migration_write_data(vfu_ctx_t *vfu_ctx __attribute__((unused)),
    4061                 :            :                                void *buf __attribute__((unused)),
    4062                 :            :                                uint64_t count __attribute__((unused)),
    4063                 :            :                                uint64_t offset __attribute__((unused)))
    4064                 :            : {
    4065   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: migration write data not supported\n",
                   #  # ]
    4066                 :            :                       endpoint_id(vfu_get_private(vfu_ctx)));
    4067         [ #  # ]:          0 :         errno = ENOTSUP;
    4068                 :          0 :         return -1;
    4069                 :            : }
    4070                 :            : 
    4071                 :            : static int
    4072                 :          0 : vfio_user_migration_data_written(vfu_ctx_t *vfu_ctx __attribute__((unused)),
    4073                 :            :                                  uint64_t count)
    4074                 :            : {
    4075   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio, "write 0x%"PRIx64"\n", (uint64_t)count);
                   #  # ]
    4076                 :            : 
    4077         [ #  # ]:          0 :         if (count != vfio_user_migr_data_len()) {
    4078   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s bad count %#lx\n",
                   #  # ]
    4079                 :            :                               endpoint_id(vfu_get_private(vfu_ctx)), count);
    4080         [ #  # ]:          0 :                 errno = EINVAL;
    4081                 :          0 :                 return -1;
    4082                 :            :         }
    4083                 :            : 
    4084                 :          0 :         return 0;
    4085                 :          0 : }
    4086                 :            : 
    4087                 :            : static int
    4088                 :         31 : vfio_user_dev_info_fill(struct nvmf_vfio_user_transport *vu_transport,
    4089                 :            :                         struct nvmf_vfio_user_endpoint *endpoint)
    4090                 :            : {
    4091                 :            :         int ret;
    4092                 :            :         ssize_t cap_offset;
    4093   [ +  -  +  - ]:         31 :         vfu_ctx_t *vfu_ctx = endpoint->vfu_ctx;
    4094                 :         31 :         struct iovec migr_sparse_mmap = {};
    4095                 :            : 
    4096                 :         31 :         struct pmcap pmcap = { .hdr.id = PCI_CAP_ID_PM, .pmcs.nsfrst = 0x1 };
    4097                 :         31 :         struct pxcap pxcap = {
    4098                 :            :                 .hdr.id = PCI_CAP_ID_EXP,
    4099                 :            :                 .pxcaps.ver = 0x2,
    4100                 :            :                 .pxdcap = {.rer = 0x1, .flrc = 0x1},
    4101                 :            :                 .pxdcap2.ctds = 0x1
    4102                 :            :         };
    4103                 :            : 
    4104                 :         31 :         struct msixcap msixcap = {
    4105                 :            :                 .hdr.id = PCI_CAP_ID_MSIX,
    4106                 :            :                 .mxc.ts = NVMF_VFIO_USER_MSIX_NUM - 1,
    4107                 :            :                 .mtab = {.tbir = NVMF_VFIO_USER_MSIX_TABLE_BIR, .to = 0x0},
    4108                 :            :                 .mpba = {.pbir = NVMF_VFIO_USER_MSIX_PBA_BIR, .pbao = 0x0}
    4109                 :            :         };
    4110                 :            : 
    4111                 :         31 :         struct iovec sparse_mmap[] = {
    4112                 :            :                 {
    4113                 :            :                         .iov_base = (void *)NVME_DOORBELLS_OFFSET,
    4114                 :            :                         .iov_len = NVMF_VFIO_USER_DOORBELLS_SIZE,
    4115                 :            :                 },
    4116                 :            :         };
    4117                 :            : 
    4118                 :         31 :         const vfu_migration_callbacks_t migr_callbacks = {
    4119                 :            :                 .version = VFIO_USER_MIGR_CALLBACK_VERS,
    4120                 :            :                 .transition = &vfio_user_migration_device_state_transition,
    4121                 :            :                 .get_pending_bytes = &vfio_user_migration_get_pending_bytes,
    4122                 :            :                 .prepare_data = &vfio_user_migration_prepare_data,
    4123                 :            :                 .read_data = &vfio_user_migration_read_data,
    4124                 :            :                 .data_written = &vfio_user_migration_data_written,
    4125                 :            :                 .write_data = &vfio_user_migration_write_data
    4126                 :            :         };
    4127                 :            : 
    4128                 :         31 :         ret = vfu_pci_init(vfu_ctx, VFU_PCI_TYPE_EXPRESS, PCI_HEADER_TYPE_NORMAL, 0);
    4129         [ -  + ]:         31 :         if (ret < 0) {
    4130                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to initialize PCI\n", vfu_ctx);
    4131                 :          0 :                 return ret;
    4132                 :            :         }
    4133                 :         31 :         vfu_pci_set_id(vfu_ctx, SPDK_PCI_VID_NUTANIX, 0x0001, SPDK_PCI_VID_NUTANIX, 0);
    4134                 :            :         /*
    4135                 :            :          * 0x02, controller uses the NVM Express programming interface
    4136                 :            :          * 0x08, non-volatile memory controller
    4137                 :            :          * 0x01, mass storage controller
    4138                 :            :          */
    4139                 :         31 :         vfu_pci_set_class(vfu_ctx, 0x01, 0x08, 0x02);
    4140                 :            : 
    4141                 :         31 :         cap_offset = vfu_pci_add_capability(vfu_ctx, 0, 0, &pmcap);
    4142         [ -  + ]:         31 :         if (cap_offset < 0) {
    4143                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed add pmcap\n", vfu_ctx);
    4144                 :          0 :                 return ret;
    4145                 :            :         }
    4146                 :            : 
    4147                 :         31 :         cap_offset = vfu_pci_add_capability(vfu_ctx, 0, 0, &pxcap);
    4148         [ -  + ]:         31 :         if (cap_offset < 0) {
    4149                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed add pxcap\n", vfu_ctx);
    4150                 :          0 :                 return ret;
    4151                 :            :         }
    4152                 :            : 
    4153                 :         31 :         cap_offset = vfu_pci_add_capability(vfu_ctx, 0, 0, &msixcap);
    4154         [ -  + ]:         31 :         if (cap_offset < 0) {
    4155                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed add msixcap\n", vfu_ctx);
    4156                 :          0 :                 return ret;
    4157                 :            :         }
    4158                 :            : 
    4159                 :         45 :         ret = vfu_setup_region(vfu_ctx, VFU_PCI_DEV_CFG_REGION_IDX, NVME_REG_CFG_SIZE,
    4160   [ -  +  +  -  :         14 :                                access_pci_config, VFU_REGION_FLAG_RW, NULL, 0, -1, 0);
             -  +  +  - ]
    4161         [ -  + ]:         31 :         if (ret < 0) {
    4162                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup cfg\n", vfu_ctx);
    4163                 :          0 :                 return ret;
    4164                 :            :         }
    4165                 :            : 
    4166   [ +  +  +  +  :         31 :         if (vu_transport->transport_opts.disable_mappable_bar0) {
          +  -  +  -  -  
                      + ]
    4167                 :          2 :                 ret = vfu_setup_region(vfu_ctx, VFU_PCI_DEV_BAR0_REGION_IDX, NVME_REG_BAR0_SIZE,
    4168   [ #  #  #  #  :          0 :                                        access_bar0_fn, VFU_REGION_FLAG_RW | VFU_REGION_FLAG_MEM,
          #  #  #  #  #  
                #  #  # ]
    4169                 :            :                                        NULL, 0, -1, 0);
    4170                 :          0 :         } else {
    4171                 :         43 :                 ret = vfu_setup_region(vfu_ctx, VFU_PCI_DEV_BAR0_REGION_IDX, NVME_REG_BAR0_SIZE,
    4172   [ -  +  +  -  :         14 :                                        access_bar0_fn, VFU_REGION_FLAG_RW | VFU_REGION_FLAG_MEM,
          -  +  +  -  -  
                +  +  - ]
    4173   [ +  -  +  - ]:         14 :                                        sparse_mmap, 1, endpoint->devmem_fd, 0);
    4174                 :            :         }
    4175                 :            : 
    4176         [ -  + ]:         31 :         if (ret < 0) {
    4177                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup bar 0\n", vfu_ctx);
    4178                 :          0 :                 return ret;
    4179                 :            :         }
    4180                 :            : 
    4181                 :         45 :         ret = vfu_setup_region(vfu_ctx, VFU_PCI_DEV_BAR4_REGION_IDX, NVMF_VFIO_USER_BAR4_SIZE,
    4182   [ -  +  +  -  :         14 :                                NULL, VFU_REGION_FLAG_RW, NULL, 0, -1, 0);
             -  +  +  - ]
    4183         [ -  + ]:         31 :         if (ret < 0) {
    4184                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup bar 4\n", vfu_ctx);
    4185                 :          0 :                 return ret;
    4186                 :            :         }
    4187                 :            : 
    4188                 :         45 :         ret = vfu_setup_region(vfu_ctx, VFU_PCI_DEV_BAR5_REGION_IDX, NVMF_VFIO_USER_BAR5_SIZE,
    4189   [ -  +  +  -  :         14 :                                NULL, VFU_REGION_FLAG_RW, NULL, 0, -1, 0);
             -  +  +  - ]
    4190         [ -  + ]:         31 :         if (ret < 0) {
    4191                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup bar 5\n", vfu_ctx);
    4192                 :          0 :                 return ret;
    4193                 :            :         }
    4194                 :            : 
    4195                 :         31 :         ret = vfu_setup_device_dma(vfu_ctx, memory_region_add_cb, memory_region_remove_cb);
    4196         [ -  + ]:         31 :         if (ret < 0) {
    4197                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup dma callback\n", vfu_ctx);
    4198                 :          0 :                 return ret;
    4199                 :            :         }
    4200                 :            : 
    4201                 :         31 :         ret = vfu_setup_device_reset_cb(vfu_ctx, vfio_user_device_reset);
    4202         [ -  + ]:         31 :         if (ret < 0) {
    4203                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup reset callback\n", vfu_ctx);
    4204                 :          0 :                 return ret;
    4205                 :            :         }
    4206                 :            : 
    4207                 :         31 :         ret = vfu_setup_device_nr_irqs(vfu_ctx, VFU_DEV_INTX_IRQ, 1);
    4208         [ -  + ]:         31 :         if (ret < 0) {
    4209                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup INTX\n", vfu_ctx);
    4210                 :          0 :                 return ret;
    4211                 :            :         }
    4212                 :            : 
    4213                 :         31 :         ret = vfu_setup_device_nr_irqs(vfu_ctx, VFU_DEV_MSIX_IRQ, NVMF_VFIO_USER_MSIX_NUM);
    4214         [ -  + ]:         31 :         if (ret < 0) {
    4215                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup MSIX\n", vfu_ctx);
    4216                 :          0 :                 return ret;
    4217                 :            :         }
    4218                 :            : 
    4219                 :         31 :         vfu_setup_device_quiesce_cb(vfu_ctx, vfio_user_dev_quiesce_cb);
    4220                 :            : 
    4221                 :         31 :         migr_sparse_mmap.iov_base = (void *)4096;
    4222         [ +  - ]:         31 :         migr_sparse_mmap.iov_len = vfio_user_migr_data_len();
    4223                 :         62 :         ret = vfu_setup_region(vfu_ctx, VFU_PCI_DEV_MIGR_REGION_IDX,
    4224                 :         31 :                                vfu_get_migr_register_area_size() + vfio_user_migr_data_len(),
    4225   [ -  +  +  -  :         14 :                                NULL, VFU_REGION_FLAG_RW | VFU_REGION_FLAG_MEM, &migr_sparse_mmap,
          -  +  +  -  -  
                +  +  - ]
    4226   [ +  -  +  - ]:         14 :                                1, endpoint->migr_fd, 0);
    4227         [ -  + ]:         31 :         if (ret < 0) {
    4228                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup migration region\n", vfu_ctx);
    4229                 :          0 :                 return ret;
    4230                 :            :         }
    4231                 :            : 
    4232                 :         45 :         ret = vfu_setup_device_migration_callbacks(vfu_ctx, &migr_callbacks,
    4233                 :         14 :                         vfu_get_migr_register_area_size());
    4234         [ -  + ]:         31 :         if (ret < 0) {
    4235                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to setup migration callbacks\n", vfu_ctx);
    4236                 :          0 :                 return ret;
    4237                 :            :         }
    4238                 :            : 
    4239                 :         31 :         ret = vfu_realize_ctx(vfu_ctx);
    4240         [ -  + ]:         31 :         if (ret < 0) {
    4241                 :          0 :                 SPDK_ERRLOG("vfu_ctx %p failed to realize\n", vfu_ctx);
    4242                 :          0 :                 return ret;
    4243                 :            :         }
    4244                 :            : 
    4245   [ -  +  -  +  :         31 :         endpoint->pci_config_space = vfu_pci_get_config_space(endpoint->vfu_ctx);
             -  +  -  + ]
    4246   [ -  +  -  +  :         31 :         assert(endpoint->pci_config_space != NULL);
             +  -  #  # ]
    4247   [ +  -  +  - ]:         31 :         init_pci_config_space(endpoint->pci_config_space);
    4248                 :            : 
    4249   [ +  +  #  # ]:         31 :         assert(cap_offset != 0);
    4250   [ +  -  +  -  :         31 :         endpoint->msix = (struct msixcap *)((uint8_t *)endpoint->pci_config_space + cap_offset);
          +  -  +  -  +  
                      - ]
    4251                 :            : 
    4252                 :         31 :         return 0;
    4253                 :         14 : }
    4254                 :            : 
    4255                 :            : static int nvmf_vfio_user_accept(void *ctx);
    4256                 :            : 
    4257                 :            : /*
    4258                 :            :  * Register an "accept" poller: this is polling for incoming vfio-user socket
    4259                 :            :  * connections (on the listening socket).
    4260                 :            :  *
    4261                 :            :  * We need to do this on first listening, and also after destroying a
    4262                 :            :  * controller, so we can accept another connection.
    4263                 :            :  */
    4264                 :            : static int
    4265                 :        138 : vfio_user_register_accept_poller(struct nvmf_vfio_user_endpoint *endpoint)
    4266                 :            : {
    4267   [ +  -  +  -  :        138 :         uint64_t poll_rate_us = endpoint->transport->transport.opts.acceptor_poll_rate;
          +  -  +  -  +  
                -  +  - ]
    4268                 :            : 
    4269   [ +  +  +  +  :        138 :         SPDK_DEBUGLOG(nvmf_vfio, "registering accept poller\n");
                   +  - ]
    4270                 :            : 
    4271   [ +  -  +  - ]:        138 :         endpoint->accept_poller = SPDK_POLLER_REGISTER(nvmf_vfio_user_accept,
    4272                 :            :                                   endpoint, poll_rate_us);
    4273                 :            : 
    4274   [ +  +  +  -  :        138 :         if (!endpoint->accept_poller) {
                   +  - ]
    4275                 :          0 :                 return -1;
    4276                 :            :         }
    4277                 :            : 
    4278   [ +  -  +  - ]:        138 :         endpoint->accept_thread = spdk_get_thread();
    4279   [ +  -  +  - ]:        138 :         endpoint->need_relisten = false;
    4280                 :            : 
    4281         [ +  + ]:        138 :         if (!spdk_interrupt_mode_is_enabled()) {
    4282                 :        136 :                 return 0;
    4283                 :            :         }
    4284                 :            : 
    4285   [ #  #  #  #  :          2 :         endpoint->accept_intr_fd = vfu_get_poll_fd(endpoint->vfu_ctx);
             #  #  #  # ]
    4286   [ -  +  #  #  :          2 :         assert(endpoint->accept_intr_fd != -1);
             #  #  #  # ]
    4287                 :            : 
    4288   [ #  #  #  #  :          2 :         endpoint->accept_intr = SPDK_INTERRUPT_REGISTER(endpoint->accept_intr_fd,
             #  #  #  # ]
    4289                 :            :                                 nvmf_vfio_user_accept, endpoint);
    4290                 :            : 
    4291   [ -  +  #  #  :          2 :         assert(endpoint->accept_intr != NULL);
             #  #  #  # ]
    4292                 :            : 
    4293   [ #  #  #  # ]:          2 :         spdk_poller_register_interrupt(endpoint->accept_poller, NULL, NULL);
    4294                 :          2 :         return 0;
    4295                 :         82 : }
    4296                 :            : 
    4297                 :            : static void
    4298                 :        107 : _vfio_user_relisten(void *ctx)
    4299                 :            : {
    4300                 :        107 :         struct nvmf_vfio_user_endpoint *endpoint = ctx;
    4301                 :            : 
    4302                 :        107 :         vfio_user_register_accept_poller(endpoint);
    4303                 :        107 : }
    4304                 :            : 
    4305                 :            : static void
    4306                 :        122 : _free_ctrlr(void *ctx)
    4307                 :            : {
    4308                 :        122 :         struct nvmf_vfio_user_ctrlr *ctrlr = ctx;
    4309   [ +  -  +  - ]:        122 :         struct nvmf_vfio_user_endpoint *endpoint = ctrlr->endpoint;
    4310                 :            : 
    4311   [ +  -  +  -  :        122 :         free_sdbl(endpoint->vfu_ctx, ctrlr->sdbl);
             +  -  +  - ]
    4312                 :            : 
    4313         [ +  - ]:        122 :         spdk_interrupt_unregister(&ctrlr->intr);
    4314   [ +  -  +  - ]:        122 :         ctrlr->intr_fd = -1;
    4315         [ +  - ]:        122 :         spdk_poller_unregister(&ctrlr->vfu_ctx_poller);
    4316                 :            : 
    4317                 :        122 :         free(ctrlr);
    4318                 :            : 
    4319   [ +  +  +  +  :        122 :         if (endpoint->need_async_destroy) {
             +  -  +  + ]
    4320                 :          7 :                 nvmf_vfio_user_destroy_endpoint(endpoint);
    4321   [ +  +  +  +  :        122 :         } else if (endpoint->need_relisten) {
             +  -  -  + ]
    4322   [ +  -  +  - ]:        107 :                 spdk_thread_send_msg(endpoint->accept_thread,
    4323                 :         68 :                                      _vfio_user_relisten, endpoint);
    4324                 :         68 :         }
    4325                 :        122 : }
    4326                 :            : 
    4327                 :            : static void
    4328                 :        122 : free_ctrlr(struct nvmf_vfio_user_ctrlr *ctrlr)
    4329                 :            : {
    4330                 :            :         struct spdk_thread *thread;
    4331                 :            :         int i;
    4332                 :            : 
    4333   [ +  +  #  # ]:        122 :         assert(ctrlr != NULL);
    4334   [ +  -  +  -  :        122 :         thread = ctrlr->thread ? ctrlr->thread : spdk_get_thread();
          +  -  +  -  +  
                      - ]
    4335                 :            : 
    4336   [ +  +  +  +  :        122 :         SPDK_DEBUGLOG(nvmf_vfio, "free %s\n", ctrlr_id(ctrlr));
                   +  - ]
    4337                 :            : 
    4338   [ +  +  +  - ]:      62586 :         for (i = 0; i < NVMF_VFIO_USER_MAX_QPAIRS_PER_CTRLR; i++) {
    4339                 :      62464 :                 free_qp(ctrlr, i);
    4340                 :      38400 :         }
    4341                 :            : 
    4342                 :        122 :         spdk_thread_exec_msg(thread, _free_ctrlr, ctrlr);
    4343                 :        122 : }
    4344                 :            : 
    4345                 :            : static int
    4346                 :        122 : nvmf_vfio_user_create_ctrlr(struct nvmf_vfio_user_transport *transport,
    4347                 :            :                             struct nvmf_vfio_user_endpoint *endpoint)
    4348                 :            : {
    4349                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    4350                 :        122 :         int err = 0;
    4351                 :            : 
    4352   [ +  +  +  +  :        122 :         SPDK_DEBUGLOG(nvmf_vfio, "%s\n", endpoint_id(endpoint));
                   +  - ]
    4353                 :            : 
    4354                 :            :         /* First, construct a vfio-user CUSTOM transport controller */
    4355                 :        122 :         ctrlr = calloc(1, sizeof(*ctrlr));
    4356         [ +  + ]:        122 :         if (ctrlr == NULL) {
    4357                 :          0 :                 err = -ENOMEM;
    4358                 :          0 :                 goto out;
    4359                 :            :         }
    4360                 :            :         /*
    4361                 :            :          * We can only support one connection for now, but generate a unique cntlid in case vfio-user
    4362                 :            :          * transport is used together with RDMA or TCP transports in the same target
    4363                 :            :          */
    4364   [ +  -  +  -  :        122 :         ctrlr->cntlid = nvmf_subsystem_gen_cntlid(endpoint->subsystem);
             +  -  +  - ]
    4365   [ +  -  +  - ]:        122 :         ctrlr->intr_fd = -1;
    4366   [ +  -  +  - ]:        122 :         ctrlr->transport = transport;
    4367   [ +  -  +  - ]:        122 :         ctrlr->endpoint = endpoint;
    4368   [ +  -  +  -  :        122 :         ctrlr->bar0_doorbells = endpoint->bar0_doorbells;
             +  -  +  - ]
    4369   [ +  -  +  -  :        122 :         TAILQ_INIT(&ctrlr->connected_sqs);
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    4370                 :            : 
    4371   [ +  -  +  - ]:        122 :         ctrlr->adaptive_irqs_enabled =
    4372   [ +  +  +  -  :        122 :                 !transport->transport_opts.disable_adaptive_irq;
             +  -  +  - ]
    4373                 :            : 
    4374                 :            :         /* Then, construct an admin queue pair */
    4375         [ +  - ]:        122 :         err = init_sq(ctrlr, &transport->transport, 0);
    4376         [ -  + ]:        122 :         if (err != 0) {
    4377                 :          0 :                 free(ctrlr);
    4378                 :          0 :                 goto out;
    4379                 :            :         }
    4380                 :            : 
    4381                 :        122 :         err = init_cq(ctrlr, 0);
    4382         [ -  + ]:        122 :         if (err != 0) {
    4383                 :          0 :                 free(ctrlr);
    4384                 :          0 :                 goto out;
    4385                 :            :         }
    4386                 :            : 
    4387   [ +  -  +  -  :        122 :         ctrlr->sqs[0]->size = NVMF_VFIO_USER_DEFAULT_AQ_DEPTH;
          +  -  +  -  +  
                -  +  - ]
    4388                 :            : 
    4389   [ +  -  +  -  :        122 :         err = alloc_sq_reqs(ctrlr, ctrlr->sqs[0]);
             +  -  +  - ]
    4390         [ +  + ]:        122 :         if (err != 0) {
    4391                 :          0 :                 free(ctrlr);
    4392                 :          0 :                 goto out;
    4393                 :            :         }
    4394   [ +  -  +  - ]:        122 :         endpoint->ctrlr = ctrlr;
    4395                 :            : 
    4396                 :            :         /* Notify the generic layer about the new admin queue pair */
    4397   [ +  -  +  -  :        122 :         spdk_nvmf_tgt_new_qpair(transport->transport.tgt, &ctrlr->sqs[0]->qpair);
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    4398                 :            : 
    4399                 :         47 : out:
    4400         [ +  + ]:        122 :         if (err != 0) {
    4401         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: failed to create vfio-user controller: %s\n",
    4402                 :            :                             endpoint_id(endpoint), strerror(-err));
    4403                 :          0 :         }
    4404                 :            : 
    4405                 :        122 :         return err;
    4406                 :            : }
    4407                 :            : 
    4408                 :            : static int
    4409                 :         31 : nvmf_vfio_user_listen(struct spdk_nvmf_transport *transport,
    4410                 :            :                       const struct spdk_nvme_transport_id *trid,
    4411                 :            :                       struct spdk_nvmf_listen_opts *listen_opts)
    4412                 :            : {
    4413                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4414                 :            :         struct nvmf_vfio_user_endpoint *endpoint, *tmp;
    4415                 :         31 :         char path[PATH_MAX] = {};
    4416                 :         31 :         char uuid[PATH_MAX] = {};
    4417                 :            :         int ret;
    4418                 :            : 
    4419                 :         31 :         vu_transport = SPDK_CONTAINEROF(transport, struct nvmf_vfio_user_transport,
    4420                 :            :                                         transport);
    4421                 :            : 
    4422   [ +  +  +  - ]:         31 :         pthread_mutex_lock(&vu_transport->lock);
    4423   [ +  +  +  -  :         45 :         TAILQ_FOREACH_SAFE(endpoint, &vu_transport->endpoints, link, tmp) {
          +  -  +  +  +  
          -  +  -  +  -  
                   +  + ]
    4424                 :            :                 /* Only compare traddr */
    4425   [ +  +  +  +  :         14 :                 if (strncmp(endpoint->trid.traddr, trid->traddr, sizeof(endpoint->trid.traddr)) == 0) {
          +  +  +  -  +  
                -  -  + ]
    4426   [ #  #  #  # ]:          0 :                         pthread_mutex_unlock(&vu_transport->lock);
    4427                 :          0 :                         return -EEXIST;
    4428                 :            :                 }
    4429                 :          7 :         }
    4430   [ +  +  +  - ]:         31 :         pthread_mutex_unlock(&vu_transport->lock);
    4431                 :            : 
    4432                 :         31 :         endpoint = calloc(1, sizeof(*endpoint));
    4433         [ -  + ]:         31 :         if (!endpoint) {
    4434                 :          0 :                 return -ENOMEM;
    4435                 :            :         }
    4436                 :            : 
    4437   [ +  +  +  - ]:         31 :         pthread_mutex_init(&endpoint->lock, NULL);
    4438   [ +  -  +  - ]:         31 :         endpoint->devmem_fd = -1;
    4439   [ +  +  +  +  :         31 :         memcpy(&endpoint->trid, trid, sizeof(endpoint->trid));
                   +  - ]
    4440   [ +  -  +  - ]:         31 :         endpoint->transport = vu_transport;
    4441                 :            : 
    4442                 :         31 :         ret = snprintf(path, PATH_MAX, "%s/bar0", endpoint_id(endpoint));
    4443   [ +  -  -  + ]:         31 :         if (ret < 0 || ret >= PATH_MAX) {
    4444         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: error to get socket path: %s.\n", endpoint_id(endpoint), spdk_strerror(errno));
    4445                 :          0 :                 ret = -1;
    4446                 :          0 :                 goto out;
    4447                 :            :         }
    4448                 :            : 
    4449         [ +  - ]:         31 :         ret = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
    4450         [ -  + ]:         31 :         if (ret == -1) {
    4451         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: failed to open device memory at %s: %s.\n",
    4452                 :            :                             endpoint_id(endpoint), path, spdk_strerror(errno));
    4453                 :          0 :                 goto out;
    4454                 :            :         }
    4455         [ +  - ]:         31 :         unlink(path);
    4456                 :            : 
    4457   [ +  -  +  - ]:         31 :         endpoint->devmem_fd = ret;
    4458   [ +  -  +  - ]:         31 :         ret = ftruncate(endpoint->devmem_fd,
    4459                 :            :                         NVME_DOORBELLS_OFFSET + NVMF_VFIO_USER_DOORBELLS_SIZE);
    4460         [ -  + ]:         31 :         if (ret != 0) {
    4461         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: error to ftruncate file %s: %s.\n", endpoint_id(endpoint), path,
    4462                 :            :                             spdk_strerror(errno));
    4463                 :          0 :                 goto out;
    4464                 :            :         }
    4465                 :            : 
    4466   [ +  -  +  - ]:         31 :         endpoint->bar0_doorbells = mmap(NULL, NVMF_VFIO_USER_DOORBELLS_SIZE,
    4467   [ +  -  +  - ]:         14 :                                         PROT_READ | PROT_WRITE, MAP_SHARED, endpoint->devmem_fd, NVME_DOORBELLS_OFFSET);
    4468   [ +  +  +  -  :         31 :         if (endpoint->bar0_doorbells == MAP_FAILED) {
                   -  + ]
    4469         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: error to mmap file %s: %s.\n", endpoint_id(endpoint), path, spdk_strerror(errno));
    4470   [ #  #  #  # ]:          0 :                 endpoint->bar0_doorbells = NULL;
    4471                 :          0 :                 ret = -1;
    4472                 :          0 :                 goto out;
    4473                 :            :         }
    4474                 :            : 
    4475                 :         31 :         ret = snprintf(path, PATH_MAX, "%s/migr", endpoint_id(endpoint));
    4476   [ +  -  -  + ]:         31 :         if (ret < 0 || ret >= PATH_MAX) {
    4477         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: error to get migration file path: %s.\n", endpoint_id(endpoint),
    4478                 :            :                             spdk_strerror(errno));
    4479                 :          0 :                 ret = -1;
    4480                 :          0 :                 goto out;
    4481                 :            :         }
    4482         [ +  - ]:         31 :         ret = open(path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
    4483         [ +  + ]:         31 :         if (ret == -1) {
    4484         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: failed to open device memory at %s: %s.\n",
    4485                 :            :                             endpoint_id(endpoint), path, spdk_strerror(errno));
    4486                 :          0 :                 goto out;
    4487                 :            :         }
    4488         [ +  - ]:         31 :         unlink(path);
    4489                 :            : 
    4490   [ +  -  +  - ]:         31 :         endpoint->migr_fd = ret;
    4491   [ +  -  +  - ]:         31 :         ret = ftruncate(endpoint->migr_fd,
    4492                 :         31 :                         vfu_get_migr_register_area_size() + vfio_user_migr_data_len());
    4493         [ -  + ]:         31 :         if (ret != 0) {
    4494         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: error to ftruncate migration file %s: %s.\n", endpoint_id(endpoint), path,
    4495                 :            :                             spdk_strerror(errno));
    4496                 :          0 :                 goto out;
    4497                 :            :         }
    4498                 :            : 
    4499   [ +  -  +  - ]:         45 :         endpoint->migr_data = mmap(NULL, vfio_user_migr_data_len(),
    4500   [ +  -  +  - ]:         31 :                                    PROT_READ | PROT_WRITE, MAP_SHARED, endpoint->migr_fd, vfu_get_migr_register_area_size());
    4501   [ +  +  +  -  :         31 :         if (endpoint->migr_data == MAP_FAILED) {
                   +  - ]
    4502         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: error to mmap file %s: %s.\n", endpoint_id(endpoint), path, spdk_strerror(errno));
    4503   [ #  #  #  # ]:          0 :                 endpoint->migr_data = NULL;
    4504                 :          0 :                 ret = -1;
    4505                 :          0 :                 goto out;
    4506                 :            :         }
    4507                 :            : 
    4508                 :         31 :         ret = snprintf(uuid, PATH_MAX, "%s/cntrl", endpoint_id(endpoint));
    4509   [ +  -  -  + ]:         31 :         if (ret < 0 || ret >= PATH_MAX) {
    4510         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: error to get ctrlr file path: %s\n", endpoint_id(endpoint), spdk_strerror(errno));
    4511                 :          0 :                 ret = -1;
    4512                 :          0 :                 goto out;
    4513                 :            :         }
    4514                 :            : 
    4515   [ -  +  +  -  :         31 :         endpoint->vfu_ctx = vfu_create_ctx(VFU_TRANS_SOCK, uuid, LIBVFIO_USER_FLAG_ATTACH_NB,
             +  -  +  - ]
    4516                 :         14 :                                            endpoint, VFU_DEV_TYPE_PCI);
    4517   [ +  +  +  -  :         31 :         if (endpoint->vfu_ctx == NULL) {
                   +  - ]
    4518                 :          0 :                 SPDK_ERRLOG("%s: error creating libmuser context: %m\n",
    4519                 :            :                             endpoint_id(endpoint));
    4520                 :          0 :                 ret = -1;
    4521                 :          0 :                 goto out;
    4522                 :            :         }
    4523                 :            : 
    4524   [ +  -  +  - ]:         31 :         ret = vfu_setup_log(endpoint->vfu_ctx, vfio_user_log,
    4525                 :         14 :                             vfio_user_get_log_level());
    4526         [ +  + ]:         31 :         if (ret < 0) {
    4527                 :          0 :                 goto out;
    4528                 :            :         }
    4529                 :            : 
    4530                 :            : 
    4531                 :         31 :         ret = vfio_user_dev_info_fill(vu_transport, endpoint);
    4532         [ +  + ]:         31 :         if (ret < 0) {
    4533                 :          0 :                 goto out;
    4534                 :            :         }
    4535                 :            : 
    4536                 :         31 :         ret = vfio_user_register_accept_poller(endpoint);
    4537                 :            : 
    4538         [ -  + ]:         31 :         if (ret != 0) {
    4539                 :          0 :                 goto out;
    4540                 :            :         }
    4541                 :            : 
    4542   [ -  +  -  + ]:         31 :         pthread_mutex_lock(&vu_transport->lock);
    4543   [ -  +  -  +  :         31 :         TAILQ_INSERT_TAIL(&vu_transport->endpoints, endpoint, link);
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                   -  + ]
    4544   [ -  +  -  + ]:         31 :         pthread_mutex_unlock(&vu_transport->lock);
    4545                 :            : 
    4546                 :         17 : out:
    4547         [ -  + ]:         31 :         if (ret != 0) {
    4548                 :          0 :                 nvmf_vfio_user_destroy_endpoint(endpoint);
    4549                 :          0 :         }
    4550                 :            : 
    4551                 :         31 :         return ret;
    4552                 :         14 : }
    4553                 :            : 
    4554                 :            : static void
    4555                 :         31 : nvmf_vfio_user_stop_listen(struct spdk_nvmf_transport *transport,
    4556                 :            :                            const struct spdk_nvme_transport_id *trid)
    4557                 :            : {
    4558                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4559                 :            :         struct nvmf_vfio_user_endpoint *endpoint, *tmp;
    4560                 :            : 
    4561   [ +  +  #  # ]:         31 :         assert(trid != NULL);
    4562   [ +  +  +  -  :         31 :         assert(trid->traddr != NULL);
                   #  # ]
    4563                 :            : 
    4564   [ +  +  +  +  :         31 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: stop listen\n", trid->traddr);
             +  -  #  # ]
    4565                 :            : 
    4566                 :         31 :         vu_transport = SPDK_CONTAINEROF(transport, struct nvmf_vfio_user_transport,
    4567                 :            :                                         transport);
    4568                 :            : 
    4569   [ +  +  +  - ]:         31 :         pthread_mutex_lock(&vu_transport->lock);
    4570   [ +  -  +  -  :         31 :         TAILQ_FOREACH_SAFE(endpoint, &vu_transport->endpoints, link, tmp) {
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    4571   [ +  +  +  +  :         31 :                 if (strcmp(trid->traddr, endpoint->trid.traddr) == 0) {
          +  -  +  -  +  
                -  -  + ]
    4572   [ +  +  +  -  :         31 :                         TAILQ_REMOVE(&vu_transport->endpoints, endpoint, link);
          +  -  +  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  +  - ]
    4573                 :            :                         /* Defer to free endpoint resources until the controller
    4574                 :            :                          * is freed.  There are two cases when running here:
    4575                 :            :                          * 1. kill nvmf target while VM is connected
    4576                 :            :                          * 2. remove listener via RPC call
    4577                 :            :                          * nvmf library will disconnect all queue paris.
    4578                 :            :                          */
    4579   [ +  +  +  -  :         31 :                         if (endpoint->ctrlr) {
                   +  + ]
    4580   [ +  -  +  -  :          7 :                                 assert(!endpoint->need_async_destroy);
          +  -  +  -  #  
                      # ]
    4581   [ +  -  +  - ]:          7 :                                 endpoint->need_async_destroy = true;
    4582   [ +  -  +  - ]:          7 :                                 pthread_mutex_unlock(&vu_transport->lock);
    4583                 :          7 :                                 return;
    4584                 :            :                         }
    4585                 :            : 
    4586                 :         24 :                         nvmf_vfio_user_destroy_endpoint(endpoint);
    4587   [ +  +  +  - ]:         24 :                         pthread_mutex_unlock(&vu_transport->lock);
    4588                 :         24 :                         return;
    4589                 :            :                 }
    4590                 :          0 :         }
    4591   [ #  #  #  # ]:          0 :         pthread_mutex_unlock(&vu_transport->lock);
    4592                 :            : 
    4593   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: not found\n", trid->traddr);
             #  #  #  # ]
    4594                 :         14 : }
    4595                 :            : 
    4596                 :            : static void
    4597                 :        122 : nvmf_vfio_user_cdata_init(struct spdk_nvmf_transport *transport,
    4598                 :            :                           struct spdk_nvmf_subsystem *subsystem,
    4599                 :            :                           struct spdk_nvmf_ctrlr_data *cdata)
    4600                 :            : {
    4601                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4602                 :            : 
    4603                 :        122 :         vu_transport = SPDK_CONTAINEROF(transport, struct nvmf_vfio_user_transport, transport);
    4604                 :            : 
    4605   [ +  -  +  - ]:        122 :         cdata->vid = SPDK_PCI_VID_NUTANIX;
    4606   [ +  -  +  - ]:        122 :         cdata->ssvid = SPDK_PCI_VID_NUTANIX;
    4607   [ +  -  +  -  :        122 :         cdata->ieee[0] = 0x8d;
             +  -  +  - ]
    4608   [ +  -  +  -  :        122 :         cdata->ieee[1] = 0x6b;
             +  -  +  - ]
    4609   [ +  -  +  -  :        122 :         cdata->ieee[2] = 0x50;
             +  -  +  - ]
    4610   [ +  +  +  - ]:        122 :         memset(&cdata->sgls, 0, sizeof(struct spdk_nvme_cdata_sgls));
    4611   [ +  -  +  - ]:        122 :         cdata->sgls.supported = SPDK_NVME_SGLS_SUPPORTED_DWORD_ALIGNED;
    4612   [ +  +  +  -  :        122 :         cdata->oncs.compare = !vu_transport->transport_opts.disable_compare;
          +  -  +  -  +  
                -  +  - ]
    4613                 :            :         /* libvfio-user can only support 1 connection for now */
    4614   [ +  -  +  - ]:        122 :         cdata->oncs.reservations = 0;
    4615   [ +  +  +  -  :        122 :         cdata->oacs.doorbell_buffer_config = !vu_transport->transport_opts.disable_shadow_doorbells;
          +  -  +  -  +  
                -  +  - ]
    4616   [ +  +  +  -  :        122 :         cdata->fuses.compare_and_write = !vu_transport->transport_opts.disable_compare;
          +  -  +  -  +  
                -  +  - ]
    4617                 :        122 : }
    4618                 :            : 
    4619                 :            : static int
    4620                 :         31 : nvmf_vfio_user_listen_associate(struct spdk_nvmf_transport *transport,
    4621                 :            :                                 const struct spdk_nvmf_subsystem *subsystem,
    4622                 :            :                                 const struct spdk_nvme_transport_id *trid)
    4623                 :            : {
    4624                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4625                 :            :         struct nvmf_vfio_user_endpoint *endpoint;
    4626                 :            : 
    4627                 :         31 :         vu_transport = SPDK_CONTAINEROF(transport, struct nvmf_vfio_user_transport, transport);
    4628                 :            : 
    4629   [ +  +  +  - ]:         31 :         pthread_mutex_lock(&vu_transport->lock);
    4630   [ +  -  +  -  :         45 :         TAILQ_FOREACH(endpoint, &vu_transport->endpoints, link) {
          +  -  -  +  +  
             -  +  -  +  
                      - ]
    4631   [ +  +  +  +  :         45 :                 if (strncmp(endpoint->trid.traddr, trid->traddr, sizeof(endpoint->trid.traddr)) == 0) {
          +  +  +  -  +  
                -  +  + ]
    4632                 :         31 :                         break;
    4633                 :            :                 }
    4634                 :          7 :         }
    4635   [ +  +  +  - ]:         31 :         pthread_mutex_unlock(&vu_transport->lock);
    4636                 :            : 
    4637         [ +  + ]:         31 :         if (endpoint == NULL) {
    4638                 :          0 :                 return -ENOENT;
    4639                 :            :         }
    4640                 :            : 
    4641                 :            :         /* Drop const - we will later need to pause/unpause. */
    4642   [ +  -  +  - ]:         31 :         endpoint->subsystem = (struct spdk_nvmf_subsystem *)subsystem;
    4643                 :            : 
    4644                 :         31 :         return 0;
    4645                 :         14 : }
    4646                 :            : 
    4647                 :            : /*
    4648                 :            :  * Executed periodically at a default SPDK_NVMF_DEFAULT_ACCEPT_POLL_RATE_US
    4649                 :            :  * frequency.
    4650                 :            :  *
    4651                 :            :  * For this endpoint (which at the libvfio-user level corresponds to a socket),
    4652                 :            :  * if we don't currently have a controller set up, peek to see if the socket is
    4653                 :            :  * able to accept a new connection.
    4654                 :            :  */
    4655                 :            : static int
    4656                 :       7331 : nvmf_vfio_user_accept(void *ctx)
    4657                 :            : {
    4658                 :       7331 :         struct nvmf_vfio_user_endpoint *endpoint = ctx;
    4659                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4660                 :            :         int err;
    4661                 :            : 
    4662   [ +  -  +  - ]:       7331 :         vu_transport = endpoint->transport;
    4663                 :            : 
    4664   [ +  +  +  -  :       7331 :         if (endpoint->ctrlr != NULL) {
                   -  + ]
    4665                 :          0 :                 return SPDK_POLLER_IDLE;
    4666                 :            :         }
    4667                 :            : 
    4668                 :            :         /* While we're here, the controller is already destroyed,
    4669                 :            :          * subsystem may still be in RESUMING state, we will wait
    4670                 :            :          * until the subsystem is in RUNNING state.
    4671                 :            :          */
    4672   [ +  +  +  +  :       7331 :         if (endpoint->need_resume) {
             +  -  -  + ]
    4673                 :          0 :                 return SPDK_POLLER_IDLE;
    4674                 :            :         }
    4675                 :            : 
    4676   [ +  -  +  - ]:       7331 :         err = vfu_attach_ctx(endpoint->vfu_ctx);
    4677         [ +  + ]:       7331 :         if (err == 0) {
    4678   [ +  +  +  +  :        122 :                 SPDK_DEBUGLOG(nvmf_vfio, "attach succeeded\n");
                   +  - ]
    4679                 :        122 :                 err = nvmf_vfio_user_create_ctrlr(vu_transport, endpoint);
    4680         [ +  + ]:        122 :                 if (err == 0) {
    4681                 :            :                         /*
    4682                 :            :                          * Unregister ourselves: now we've accepted a
    4683                 :            :                          * connection, there is nothing for us to poll for, and
    4684                 :            :                          * we will poll the connection via vfu_run_ctx()
    4685                 :            :                          * instead.
    4686                 :            :                          */
    4687         [ -  + ]:        122 :                         spdk_interrupt_unregister(&endpoint->accept_intr);
    4688         [ -  + ]:        122 :                         spdk_poller_unregister(&endpoint->accept_poller);
    4689                 :         75 :                 }
    4690                 :        122 :                 return SPDK_POLLER_BUSY;
    4691                 :            :         }
    4692                 :            : 
    4693   [ +  +  -  +  :       7209 :         if (errno == EAGAIN || errno == EWOULDBLOCK) {
             #  #  #  # ]
    4694                 :       7209 :                 return SPDK_POLLER_IDLE;
    4695                 :            :         }
    4696                 :            : 
    4697                 :          0 :         return SPDK_POLLER_BUSY;
    4698                 :        438 : }
    4699                 :            : 
    4700                 :            : static void
    4701                 :          0 : nvmf_vfio_user_discover(struct spdk_nvmf_transport *transport,
    4702                 :            :                         struct spdk_nvme_transport_id *trid,
    4703                 :            :                         struct spdk_nvmf_discovery_log_page_entry *entry)
    4704                 :          0 : { }
    4705                 :            : 
    4706                 :            : static int vfio_user_poll_group_intr(void *ctx);
    4707                 :            : 
    4708                 :            : static void
    4709                 :          4 : vfio_user_poll_group_add_intr(struct nvmf_vfio_user_poll_group *vu_group,
    4710                 :            :                               struct spdk_nvmf_poll_group *group)
    4711                 :            : {
    4712   [ #  #  #  # ]:          4 :         vu_group->intr_fd = eventfd(0, EFD_NONBLOCK);
    4713   [ -  +  #  #  :          4 :         assert(vu_group->intr_fd != -1);
             #  #  #  # ]
    4714                 :            : 
    4715   [ #  #  #  #  :          4 :         vu_group->intr = SPDK_INTERRUPT_REGISTER(vu_group->intr_fd,
             #  #  #  # ]
    4716                 :            :                          vfio_user_poll_group_intr, vu_group);
    4717   [ -  +  #  #  :          4 :         assert(vu_group->intr != NULL);
             #  #  #  # ]
    4718                 :          4 : }
    4719                 :            : 
    4720                 :            : static struct spdk_nvmf_transport_poll_group *
    4721                 :         28 : nvmf_vfio_user_poll_group_create(struct spdk_nvmf_transport *transport,
    4722                 :            :                                  struct spdk_nvmf_poll_group *group)
    4723                 :            : {
    4724                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4725                 :            :         struct nvmf_vfio_user_poll_group *vu_group;
    4726                 :            : 
    4727                 :         28 :         vu_transport = SPDK_CONTAINEROF(transport, struct nvmf_vfio_user_transport,
    4728                 :            :                                         transport);
    4729                 :            : 
    4730   [ +  +  +  +  :         28 :         SPDK_DEBUGLOG(nvmf_vfio, "create poll group\n");
                   +  - ]
    4731                 :            : 
    4732                 :         28 :         vu_group = calloc(1, sizeof(*vu_group));
    4733         [ +  + ]:         28 :         if (vu_group == NULL) {
    4734                 :          0 :                 SPDK_ERRLOG("Error allocating poll group: %m");
    4735                 :          0 :                 return NULL;
    4736                 :            :         }
    4737                 :            : 
    4738         [ +  + ]:         28 :         if (in_interrupt_mode(vu_transport)) {
    4739                 :          4 :                 vfio_user_poll_group_add_intr(vu_group, group);
    4740                 :          0 :         }
    4741                 :            : 
    4742   [ +  -  +  -  :         28 :         TAILQ_INIT(&vu_group->sqs);
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    4743                 :            : 
    4744   [ +  +  +  - ]:         28 :         pthread_mutex_lock(&vu_transport->pg_lock);
    4745   [ +  -  +  -  :         28 :         TAILQ_INSERT_TAIL(&vu_transport->poll_groups, vu_group, link);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    4746   [ +  +  +  -  :         28 :         if (vu_transport->next_pg == NULL) {
                   +  - ]
    4747   [ +  -  +  - ]:         14 :                 vu_transport->next_pg = vu_group;
    4748                 :          7 :         }
    4749   [ +  +  +  - ]:         28 :         pthread_mutex_unlock(&vu_transport->pg_lock);
    4750                 :            : 
    4751         [ +  - ]:         28 :         return &vu_group->group;
    4752                 :          7 : }
    4753                 :            : 
    4754                 :            : static struct spdk_nvmf_transport_poll_group *
    4755                 :        319 : nvmf_vfio_user_get_optimal_poll_group(struct spdk_nvmf_qpair *qpair)
    4756                 :            : {
    4757                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4758                 :            :         struct nvmf_vfio_user_poll_group **vu_group;
    4759                 :            :         struct nvmf_vfio_user_sq *sq;
    4760                 :            :         struct nvmf_vfio_user_cq *cq;
    4761                 :            : 
    4762                 :        319 :         struct spdk_nvmf_transport_poll_group *result = NULL;
    4763                 :            : 
    4764                 :        319 :         sq = SPDK_CONTAINEROF(qpair, struct nvmf_vfio_user_sq, qpair);
    4765   [ +  -  +  -  :        319 :         cq = sq->ctrlr->cqs[sq->cqid];
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    4766   [ +  +  #  # ]:        319 :         assert(cq != NULL);
    4767   [ +  -  +  - ]:        319 :         vu_transport = SPDK_CONTAINEROF(qpair->transport, struct nvmf_vfio_user_transport, transport);
    4768                 :            : 
    4769   [ +  +  +  - ]:        319 :         pthread_mutex_lock(&vu_transport->pg_lock);
    4770   [ +  +  +  -  :        319 :         if (TAILQ_EMPTY(&vu_transport->poll_groups)) {
             +  -  -  + ]
    4771                 :          0 :                 goto out;
    4772                 :            :         }
    4773                 :            : 
    4774         [ +  + ]:        319 :         if (!nvmf_qpair_is_admin_queue(qpair)) {
    4775                 :            :                 /*
    4776                 :            :                  * If this is shared IO CQ case, just return the used CQ's poll
    4777                 :            :                  * group, so I/O completions don't have to use
    4778                 :            :                  * spdk_thread_send_msg().
    4779                 :            :                  */
    4780   [ +  +  +  -  :        197 :                 if (cq->group != NULL) {
                   -  + ]
    4781   [ #  #  #  # ]:          4 :                         result = cq->group;
    4782                 :          4 :                         goto out;
    4783                 :            :                 }
    4784                 :            : 
    4785                 :            :                 /*
    4786                 :            :                  * If we're in interrupt mode, align all qpairs for a controller
    4787                 :            :                  * on the same poll group by default, unless requested. This can
    4788                 :            :                  * be lower in performance than running on a single poll group,
    4789                 :            :                  * so we disable spreading by default.
    4790                 :            :                  */
    4791   [ -  +  #  # ]:        193 :                 if (in_interrupt_mode(vu_transport) &&
    4792   [ #  #  #  #  :          0 :                     !vu_transport->transport_opts.enable_intr_mode_sq_spreading) {
             #  #  #  # ]
    4793   [ #  #  #  #  :          0 :                         result = sq->ctrlr->sqs[0]->group;
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    4794                 :          0 :                         goto out;
    4795                 :            :                 }
    4796                 :            : 
    4797                 :          7 :         }
    4798                 :            : 
    4799         [ +  - ]:        315 :         vu_group = &vu_transport->next_pg;
    4800   [ +  +  +  -  :        315 :         assert(*vu_group != NULL);
                   #  # ]
    4801                 :            : 
    4802   [ +  -  +  - ]:        315 :         result = &(*vu_group)->group;
    4803   [ +  -  +  -  :        315 :         *vu_group = TAILQ_NEXT(*vu_group, link);
          +  -  +  -  +  
                      - ]
    4804   [ +  +  +  - ]:        397 :         if (*vu_group == NULL) {
    4805   [ +  -  +  -  :        169 :                 *vu_group = TAILQ_FIRST(&vu_transport->poll_groups);
             +  -  +  - ]
    4806                 :         82 :         }
    4807                 :            : 
    4808                 :        146 : out:
    4809   [ +  +  +  -  :        319 :         if (cq->group == NULL) {
                   -  + ]
    4810   [ +  -  +  - ]:        315 :                 cq->group = result;
    4811                 :         82 :         }
    4812                 :            : 
    4813   [ +  +  +  - ]:        319 :         pthread_mutex_unlock(&vu_transport->pg_lock);
    4814                 :        319 :         return result;
    4815                 :            : }
    4816                 :            : 
    4817                 :            : static void
    4818                 :          4 : vfio_user_poll_group_del_intr(struct nvmf_vfio_user_poll_group *vu_group)
    4819                 :            : {
    4820   [ -  +  #  #  :          4 :         assert(vu_group->intr_fd != -1);
             #  #  #  # ]
    4821                 :            : 
    4822         [ #  # ]:          4 :         spdk_interrupt_unregister(&vu_group->intr);
    4823                 :            : 
    4824   [ #  #  #  # ]:          4 :         close(vu_group->intr_fd);
    4825   [ #  #  #  # ]:          4 :         vu_group->intr_fd = -1;
    4826                 :          4 : }
    4827                 :            : 
    4828                 :            : /* called when process exits */
    4829                 :            : static void
    4830                 :         28 : nvmf_vfio_user_poll_group_destroy(struct spdk_nvmf_transport_poll_group *group)
    4831                 :            : {
    4832                 :            :         struct nvmf_vfio_user_poll_group *vu_group, *next_tgroup;
    4833                 :            :         struct nvmf_vfio_user_transport *vu_transport;
    4834                 :            : 
    4835   [ +  +  +  +  :         28 :         SPDK_DEBUGLOG(nvmf_vfio, "destroy poll group\n");
                   +  - ]
    4836                 :            : 
    4837                 :         28 :         vu_group = SPDK_CONTAINEROF(group, struct nvmf_vfio_user_poll_group, group);
    4838   [ +  -  +  -  :         28 :         vu_transport = SPDK_CONTAINEROF(vu_group->group.transport, struct nvmf_vfio_user_transport,
                   +  - ]
    4839                 :            :                                         transport);
    4840                 :            : 
    4841         [ +  + ]:         28 :         if (in_interrupt_mode(vu_transport)) {
    4842                 :          4 :                 vfio_user_poll_group_del_intr(vu_group);
    4843                 :          0 :         }
    4844                 :            : 
    4845   [ +  +  +  - ]:         28 :         pthread_mutex_lock(&vu_transport->pg_lock);
    4846   [ +  -  +  -  :         28 :         next_tgroup = TAILQ_NEXT(vu_group, link);
                   +  - ]
    4847   [ +  +  +  -  :         28 :         TAILQ_REMOVE(&vu_transport->poll_groups, vu_group, link);
          +  -  +  -  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  +  - ]
    4848         [ +  + ]:         28 :         if (next_tgroup == NULL) {
    4849   [ +  -  +  -  :         20 :                 next_tgroup = TAILQ_FIRST(&vu_transport->poll_groups);
                   +  - ]
    4850                 :          7 :         }
    4851   [ +  +  +  -  :         28 :         if (vu_transport->next_pg == vu_group) {
                   +  - ]
    4852   [ +  -  +  - ]:         21 :                 vu_transport->next_pg = next_tgroup;
    4853                 :          7 :         }
    4854   [ +  +  +  - ]:         28 :         pthread_mutex_unlock(&vu_transport->pg_lock);
    4855                 :            : 
    4856                 :         28 :         free(vu_group);
    4857                 :         28 : }
    4858                 :            : 
    4859                 :            : static void
    4860                 :        114 : _vfio_user_qpair_disconnect(void *ctx)
    4861                 :            : {
    4862                 :        114 :         struct nvmf_vfio_user_sq *sq = ctx;
    4863                 :            : 
    4864         [ +  - ]:        114 :         spdk_nvmf_qpair_disconnect(&sq->qpair);
    4865                 :        114 : }
    4866                 :            : 
    4867                 :            : /* The function is used when socket connection is destroyed */
    4868                 :            : static int
    4869                 :        114 : vfio_user_destroy_ctrlr(struct nvmf_vfio_user_ctrlr *ctrlr)
    4870                 :            : {
    4871                 :            :         struct nvmf_vfio_user_sq *sq;
    4872                 :            :         struct nvmf_vfio_user_endpoint *endpoint;
    4873                 :            : 
    4874   [ +  +  +  +  :        114 :         SPDK_DEBUGLOG(nvmf_vfio, "%s stop processing\n", ctrlr_id(ctrlr));
                   +  - ]
    4875                 :            : 
    4876   [ +  -  +  - ]:        114 :         endpoint = ctrlr->endpoint;
    4877   [ +  +  #  # ]:        114 :         assert(endpoint != NULL);
    4878                 :            : 
    4879   [ +  +  +  - ]:        114 :         pthread_mutex_lock(&endpoint->lock);
    4880   [ +  -  +  - ]:        114 :         endpoint->need_relisten = true;
    4881   [ +  -  +  - ]:        114 :         ctrlr->disconnect = true;
    4882   [ +  +  +  -  :        114 :         if (TAILQ_EMPTY(&ctrlr->connected_sqs)) {
             +  -  +  - ]
    4883   [ #  #  #  # ]:          0 :                 endpoint->ctrlr = NULL;
    4884                 :          0 :                 free_ctrlr(ctrlr);
    4885   [ #  #  #  # ]:          0 :                 pthread_mutex_unlock(&endpoint->lock);
    4886                 :          0 :                 return 0;
    4887                 :            :         }
    4888                 :            : 
    4889   [ +  +  +  -  :        228 :         TAILQ_FOREACH(sq, &ctrlr->connected_sqs, tailq) {
          +  -  +  +  +  
             -  +  -  +  
                      - ]
    4890                 :            :                 /* add another round thread poll to avoid recursive endpoint lock */
    4891   [ +  -  +  - ]:        114 :                 spdk_thread_send_msg(ctrlr->thread, _vfio_user_qpair_disconnect, sq);
    4892                 :         75 :         }
    4893   [ +  +  +  - ]:        114 :         pthread_mutex_unlock(&endpoint->lock);
    4894                 :            : 
    4895                 :        114 :         return 0;
    4896                 :         75 : }
    4897                 :            : 
    4898                 :            : /*
    4899                 :            :  * Poll for and process any incoming vfio-user messages.
    4900                 :            :  */
    4901                 :            : static int
    4902                 :     332934 : vfio_user_poll_vfu_ctx(void *ctx)
    4903                 :            : {
    4904                 :     332934 :         struct nvmf_vfio_user_ctrlr *ctrlr = ctx;
    4905                 :            :         int ret;
    4906                 :            : 
    4907   [ +  +  #  # ]:     332934 :         assert(ctrlr != NULL);
    4908                 :            : 
    4909                 :            :         /* This will call access_bar0_fn() if there are any writes
    4910                 :            :          * to the portion of the BAR that is not mmap'd */
    4911   [ +  -  +  -  :     332934 :         ret = vfu_run_ctx(ctrlr->endpoint->vfu_ctx);
             +  -  +  - ]
    4912         [ +  + ]:     332934 :         if (spdk_unlikely(ret == -1)) {
    4913   [ +  +  -  + ]:        366 :                 if (errno == EBUSY) {
    4914                 :        252 :                         return SPDK_POLLER_IDLE;
    4915                 :            :                 }
    4916                 :            : 
    4917         [ +  - ]:        114 :                 spdk_poller_unregister(&ctrlr->vfu_ctx_poller);
    4918                 :            : 
    4919                 :            :                 /*
    4920                 :            :                  * We lost the client; the reset callback will already have
    4921                 :            :                  * unregistered the interrupt.
    4922                 :            :                  */
    4923   [ +  -  +  - ]:        114 :                 if (errno == ENOTCONN) {
    4924                 :        114 :                         vfio_user_destroy_ctrlr(ctrlr);
    4925                 :        114 :                         return SPDK_POLLER_BUSY;
    4926                 :            :                 }
    4927                 :            : 
    4928                 :            :                 /*
    4929                 :            :                  * We might not have got a reset callback in this case, so
    4930                 :            :                  * explicitly unregister the interrupt here.
    4931                 :            :                  */
    4932         [ #  # ]:          0 :                 spdk_interrupt_unregister(&ctrlr->intr);
    4933   [ #  #  #  # ]:          0 :                 ctrlr->intr_fd = -1;
    4934                 :          0 :                 fail_ctrlr(ctrlr);
    4935                 :          0 :         }
    4936                 :            : 
    4937                 :     332568 :         return ret != 0 ? SPDK_POLLER_BUSY : SPDK_POLLER_IDLE;
    4938                 :      24865 : }
    4939                 :            : 
    4940                 :            : struct vfio_user_post_cpl_ctx {
    4941                 :            :         struct nvmf_vfio_user_ctrlr     *ctrlr;
    4942                 :            :         struct nvmf_vfio_user_cq        *cq;
    4943                 :            :         struct spdk_nvme_cpl            cpl;
    4944                 :            : };
    4945                 :            : 
    4946                 :            : static void
    4947                 :        131 : _post_completion_msg(void *ctx)
    4948                 :            : {
    4949                 :        131 :         struct vfio_user_post_cpl_ctx *cpl_ctx = ctx;
    4950                 :            : 
    4951   [ #  #  #  #  :        131 :         post_completion(cpl_ctx->ctrlr, cpl_ctx->cq, cpl_ctx->cpl.cdw0, cpl_ctx->cpl.sqid,
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                      # ]
    4952   [ #  #  #  #  :        131 :                         cpl_ctx->cpl.cid, cpl_ctx->cpl.status.sc, cpl_ctx->cpl.status.sct);
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                #  #  # ]
    4953                 :        131 :         free(cpl_ctx);
    4954                 :        131 : }
    4955                 :            : 
    4956                 :            : static int nvmf_vfio_user_poll_group_poll(struct spdk_nvmf_transport_poll_group *group);
    4957                 :            : 
    4958                 :            : static int
    4959                 :          0 : vfio_user_poll_group_process(void *ctx)
    4960                 :            : {
    4961                 :          0 :         struct nvmf_vfio_user_poll_group *vu_group = ctx;
    4962                 :          0 :         int ret = 0;
    4963                 :            : 
    4964   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db, "pg:%p got intr\n", vu_group);
                   #  # ]
    4965                 :            : 
    4966         [ #  # ]:          0 :         ret |= nvmf_vfio_user_poll_group_poll(&vu_group->group);
    4967                 :            : 
    4968                 :            :         /*
    4969                 :            :          * Re-arm the event indexes. NB: this also could rearm other
    4970                 :            :          * controller's SQs.
    4971                 :            :          */
    4972                 :          0 :         ret |= vfio_user_poll_group_rearm(vu_group);
    4973                 :            : 
    4974   [ #  #  #  # ]:          0 :         vu_group->stats.pg_process_count++;
    4975                 :          0 :         return ret != 0 ? SPDK_POLLER_BUSY : SPDK_POLLER_IDLE;
    4976                 :            : }
    4977                 :            : 
    4978                 :            : static int
    4979                 :          0 : vfio_user_poll_group_intr(void *ctx)
    4980                 :            : {
    4981                 :          0 :         struct nvmf_vfio_user_poll_group *vu_group = ctx;
    4982                 :          0 :         eventfd_t val;
    4983                 :            : 
    4984   [ #  #  #  # ]:          0 :         eventfd_read(vu_group->intr_fd, &val);
    4985                 :            : 
    4986   [ #  #  #  # ]:          0 :         vu_group->stats.intr++;
    4987                 :            : 
    4988                 :          0 :         return vfio_user_poll_group_process(ctx);
    4989                 :            : }
    4990                 :            : 
    4991                 :            : /*
    4992                 :            :  * Handle an interrupt for the given controller: we must poll the vfu_ctx, and
    4993                 :            :  * the SQs assigned to our own poll group. Other poll groups are handled via
    4994                 :            :  * vfio_user_poll_group_intr().
    4995                 :            :  */
    4996                 :            : static int
    4997                 :          0 : vfio_user_ctrlr_intr(void *ctx)
    4998                 :            : {
    4999                 :            :         struct nvmf_vfio_user_poll_group *vu_ctrlr_group;
    5000                 :          0 :         struct nvmf_vfio_user_ctrlr *vu_ctrlr = ctx;
    5001                 :            :         struct nvmf_vfio_user_poll_group *vu_group;
    5002                 :          0 :         int ret = SPDK_POLLER_IDLE;
    5003                 :            : 
    5004                 :          0 :         vu_ctrlr_group = ctrlr_to_poll_group(vu_ctrlr);
    5005                 :            : 
    5006   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(vfio_user_db, "ctrlr pg:%p got intr\n", vu_ctrlr_group);
                   #  # ]
    5007                 :            : 
    5008   [ #  #  #  # ]:          0 :         vu_ctrlr_group->stats.ctrlr_intr++;
    5009                 :            : 
    5010                 :            :         /*
    5011                 :            :          * Poll vfio-user for this controller. We need to do this before polling
    5012                 :            :          * any SQs, as this is where doorbell writes may be handled.
    5013                 :            :          */
    5014                 :          0 :         ret = vfio_user_poll_vfu_ctx(vu_ctrlr);
    5015                 :            : 
    5016                 :            :         /*
    5017                 :            :          * `sqs[0]` could be set to NULL in vfio_user_poll_vfu_ctx() context,
    5018                 :            :          * just return for this case.
    5019                 :            :          */
    5020   [ #  #  #  #  :          0 :         if (vu_ctrlr->sqs[0] == NULL) {
          #  #  #  #  #  
                      # ]
    5021                 :          0 :                 return ret;
    5022                 :            :         }
    5023                 :            : 
    5024   [ #  #  #  #  :          0 :         if (vu_ctrlr->transport->transport_opts.enable_intr_mode_sq_spreading) {
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    5025                 :            :                 /*
    5026                 :            :                  * We may have just written to a doorbell owned by another
    5027                 :            :                  * reactor: we need to prod them to make sure its SQs are polled
    5028                 :            :                  * *after* the doorbell value is updated.
    5029                 :            :                  */
    5030   [ #  #  #  #  :          0 :                 TAILQ_FOREACH(vu_group, &vu_ctrlr->transport->poll_groups, link) {
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  # ]
    5031         [ #  # ]:          0 :                         if (vu_group != vu_ctrlr_group) {
    5032   [ #  #  #  #  :          0 :                                 SPDK_DEBUGLOG(vfio_user_db, "prodding pg:%p\n", vu_group);
                   #  # ]
    5033   [ #  #  #  # ]:          0 :                                 eventfd_write(vu_group->intr_fd, 1);
    5034                 :          0 :                         }
    5035                 :          0 :                 }
    5036                 :          0 :         }
    5037                 :            : 
    5038                 :          0 :         ret |= vfio_user_poll_group_process(vu_ctrlr_group);
    5039                 :            : 
    5040                 :          0 :         return ret;
    5041                 :          0 : }
    5042                 :            : 
    5043                 :            : static void
    5044                 :          0 : vfio_user_ctrlr_set_intr_mode(struct spdk_poller *poller, void *ctx,
    5045                 :            :                               bool interrupt_mode)
    5046                 :            : {
    5047                 :          0 :         struct nvmf_vfio_user_ctrlr *ctrlr = ctx;
    5048   [ #  #  #  # ]:          0 :         assert(ctrlr != NULL);
    5049   [ #  #  #  #  :          0 :         assert(ctrlr->endpoint != NULL);
             #  #  #  # ]
    5050                 :            : 
    5051   [ #  #  #  #  :          0 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: setting interrupt mode to %d\n",
             #  #  #  # ]
    5052                 :            :                       ctrlr_id(ctrlr), interrupt_mode);
    5053                 :            : 
    5054                 :            :         /*
    5055                 :            :          * interrupt_mode needs to persist across controller resets, so store
    5056                 :            :          * it in the endpoint instead.
    5057                 :            :          */
    5058   [ #  #  #  #  :          0 :         ctrlr->endpoint->interrupt_mode = interrupt_mode;
          #  #  #  #  #  
                      # ]
    5059                 :            : 
    5060                 :          0 :         vfio_user_poll_group_rearm(ctrlr_to_poll_group(ctrlr));
    5061                 :          0 : }
    5062                 :            : 
    5063                 :            : /*
    5064                 :            :  * In response to the nvmf_vfio_user_create_ctrlr() path, the admin queue is now
    5065                 :            :  * set up and we can start operating on this controller.
    5066                 :            :  */
    5067                 :            : static void
    5068                 :        122 : start_ctrlr(struct nvmf_vfio_user_ctrlr *vu_ctrlr,
    5069                 :            :             struct spdk_nvmf_ctrlr *ctrlr)
    5070                 :            : {
    5071   [ +  -  +  - ]:        122 :         struct nvmf_vfio_user_endpoint *endpoint = vu_ctrlr->endpoint;
    5072                 :            : 
    5073   [ +  -  +  - ]:        122 :         vu_ctrlr->ctrlr = ctrlr;
    5074   [ +  -  +  -  :        122 :         vu_ctrlr->cntlid = ctrlr->cntlid;
             +  -  +  - ]
    5075   [ +  -  +  - ]:        122 :         vu_ctrlr->thread = spdk_get_thread();
    5076   [ +  -  +  - ]:        122 :         vu_ctrlr->state = VFIO_USER_CTRLR_RUNNING;
    5077                 :            : 
    5078   [ +  -  +  -  :        122 :         if (!in_interrupt_mode(endpoint->transport)) {
                   -  + ]
    5079   [ +  -  +  - ]:        122 :                 vu_ctrlr->vfu_ctx_poller = SPDK_POLLER_REGISTER(vfio_user_poll_vfu_ctx,
    5080                 :            :                                            vu_ctrlr, 1000);
    5081                 :        122 :                 return;
    5082                 :            :         }
    5083                 :            : 
    5084   [ #  #  #  # ]:          0 :         vu_ctrlr->vfu_ctx_poller = SPDK_POLLER_REGISTER(vfio_user_poll_vfu_ctx,
    5085                 :            :                                    vu_ctrlr, 0);
    5086                 :            : 
    5087   [ #  #  #  #  :          0 :         vu_ctrlr->intr_fd = vfu_get_poll_fd(vu_ctrlr->endpoint->vfu_ctx);
          #  #  #  #  #  
                #  #  # ]
    5088   [ #  #  #  #  :          0 :         assert(vu_ctrlr->intr_fd != -1);
             #  #  #  # ]
    5089                 :            : 
    5090   [ #  #  #  #  :          0 :         vu_ctrlr->intr = SPDK_INTERRUPT_REGISTER(vu_ctrlr->intr_fd,
             #  #  #  # ]
    5091                 :            :                          vfio_user_ctrlr_intr, vu_ctrlr);
    5092                 :            : 
    5093   [ #  #  #  #  :          0 :         assert(vu_ctrlr->intr != NULL);
             #  #  #  # ]
    5094                 :            : 
    5095   [ #  #  #  # ]:          0 :         spdk_poller_register_interrupt(vu_ctrlr->vfu_ctx_poller,
    5096                 :            :                                        vfio_user_ctrlr_set_intr_mode,
    5097                 :          0 :                                        vu_ctrlr);
    5098                 :         75 : }
    5099                 :            : 
    5100                 :            : static int
    5101                 :        319 : handle_queue_connect_rsp(struct nvmf_vfio_user_req *req, void *cb_arg)
    5102                 :            : {
    5103                 :            :         struct nvmf_vfio_user_poll_group *vu_group;
    5104                 :        319 :         struct nvmf_vfio_user_sq *sq = cb_arg;
    5105                 :            :         struct nvmf_vfio_user_cq *admin_cq;
    5106                 :            :         struct nvmf_vfio_user_ctrlr *vu_ctrlr;
    5107                 :            :         struct nvmf_vfio_user_endpoint *endpoint;
    5108                 :            : 
    5109   [ +  +  #  # ]:        319 :         assert(sq != NULL);
    5110   [ +  +  #  # ]:        319 :         assert(req != NULL);
    5111                 :            : 
    5112   [ +  -  +  - ]:        319 :         vu_ctrlr = sq->ctrlr;
    5113   [ +  +  #  # ]:        319 :         assert(vu_ctrlr != NULL);
    5114   [ +  -  +  - ]:        319 :         endpoint = vu_ctrlr->endpoint;
    5115   [ +  +  #  # ]:        319 :         assert(endpoint != NULL);
    5116                 :            : 
    5117   [ +  -  +  +  :        319 :         if (spdk_nvme_cpl_is_error(&req->req.rsp->nvme_cpl)) {
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  -  + ]
    5118   [ #  #  #  #  :          0 :                 SPDK_ERRLOG("SC %u, SCT %u\n", req->req.rsp->nvme_cpl.status.sc, req->req.rsp->nvme_cpl.status.sct);
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  # ]
    5119   [ #  #  #  # ]:          0 :                 endpoint->ctrlr = NULL;
    5120                 :          0 :                 free_ctrlr(vu_ctrlr);
    5121                 :          0 :                 return -1;
    5122                 :            :         }
    5123                 :            : 
    5124   [ +  -  +  - ]:        319 :         vu_group = SPDK_CONTAINEROF(sq->group, struct nvmf_vfio_user_poll_group, group);
    5125   [ +  -  +  -  :        319 :         TAILQ_INSERT_TAIL(&vu_group->sqs, sq, link);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    5126                 :            : 
    5127   [ +  -  +  -  :        319 :         admin_cq = vu_ctrlr->cqs[0];
             +  -  +  - ]
    5128   [ +  +  #  # ]:        319 :         assert(admin_cq != NULL);
    5129   [ +  +  +  -  :        319 :         assert(admin_cq->group != NULL);
             +  -  #  # ]
    5130   [ +  +  +  -  :        319 :         assert(admin_cq->group->group->thread != NULL);
          +  -  +  -  +  
          -  +  -  +  -  
                   #  # ]
    5131                 :            : 
    5132   [ +  +  +  - ]:        319 :         pthread_mutex_lock(&endpoint->lock);
    5133   [ +  +  +  + ]:        319 :         if (nvmf_qpair_is_admin_queue(&sq->qpair)) {
    5134   [ +  +  +  -  :        122 :                 assert(admin_cq->group->group->thread == spdk_get_thread());
          +  -  +  -  +  
          -  +  -  +  -  
                   #  # ]
    5135                 :            :                 /*
    5136                 :            :                  * The admin queue is special as SQ0 and CQ0 are created
    5137                 :            :                  * together.
    5138                 :            :                  */
    5139   [ +  -  +  - ]:        122 :                 admin_cq->cq_ref = 1;
    5140   [ +  -  +  -  :        122 :                 start_ctrlr(vu_ctrlr, sq->qpair.ctrlr);
                   +  - ]
    5141                 :         75 :         } else {
    5142                 :            :                 /* For I/O queues this command was generated in response to an
    5143                 :            :                  * ADMIN I/O CREATE SUBMISSION QUEUE command which has not yet
    5144                 :            :                  * been completed. Complete it now.
    5145                 :            :                  */
    5146   [ +  +  +  -  :        197 :                 if (sq->post_create_io_sq_completion) {
             +  -  +  - ]
    5147   [ +  +  +  -  :        197 :                         if (admin_cq->group->group->thread != spdk_get_thread()) {
          +  -  +  -  +  
             -  +  -  -  
                      + ]
    5148                 :            :                                 struct vfio_user_post_cpl_ctx *cpl_ctx;
    5149                 :            : 
    5150                 :        131 :                                 cpl_ctx = calloc(1, sizeof(*cpl_ctx));
    5151         [ -  + ]:        131 :                                 if (!cpl_ctx) {
    5152                 :          0 :                                         return -ENOMEM;
    5153                 :            :                                 }
    5154   [ #  #  #  # ]:        131 :                                 cpl_ctx->ctrlr = vu_ctrlr;
    5155   [ #  #  #  # ]:        131 :                                 cpl_ctx->cq = admin_cq;
    5156   [ #  #  #  #  :        131 :                                 cpl_ctx->cpl.sqid = 0;
                   #  # ]
    5157   [ #  #  #  #  :        131 :                                 cpl_ctx->cpl.cdw0 = 0;
                   #  # ]
    5158   [ #  #  #  #  :        131 :                                 cpl_ctx->cpl.cid = sq->create_io_sq_cmd.cid;
          #  #  #  #  #  
                #  #  # ]
    5159   [ #  #  #  #  :        131 :                                 cpl_ctx->cpl.status.sc = SPDK_NVME_SC_SUCCESS;
             #  #  #  # ]
    5160   [ #  #  #  #  :        131 :                                 cpl_ctx->cpl.status.sct = SPDK_NVME_SCT_GENERIC;
             #  #  #  # ]
    5161                 :            : 
    5162   [ #  #  #  #  :        131 :                                 spdk_thread_send_msg(admin_cq->group->group->thread,
          #  #  #  #  #  
                #  #  # ]
    5163                 :            :                                                      _post_completion_msg,
    5164                 :          0 :                                                      cpl_ctx);
    5165                 :          0 :                         } else {
    5166                 :         73 :                                 post_completion(vu_ctrlr, admin_cq, 0, 0,
    5167   [ +  -  +  -  :         66 :                                                 sq->create_io_sq_cmd.cid, SPDK_NVME_SC_SUCCESS, SPDK_NVME_SCT_GENERIC);
                   +  - ]
    5168                 :            :                         }
    5169   [ +  -  +  - ]:        197 :                         sq->post_create_io_sq_completion = false;
    5170   [ #  #  #  #  :          7 :                 } else if (in_interrupt_mode(endpoint->transport)) {
                   #  # ]
    5171                 :            :                         /*
    5172                 :            :                          * If we're live migrating a guest, there is a window
    5173                 :            :                          * where the I/O queues haven't been set up but the
    5174                 :            :                          * device is in running state, during which the guest
    5175                 :            :                          * might write to a doorbell. This doorbell write will
    5176                 :            :                          * go unnoticed, so let's poll the whole controller to
    5177                 :            :                          * pick that up.
    5178                 :            :                          */
    5179                 :          0 :                         ctrlr_kick(vu_ctrlr);
    5180                 :          0 :                 }
    5181   [ +  -  +  - ]:        197 :                 sq->sq_state = VFIO_USER_SQ_ACTIVE;
    5182                 :            :         }
    5183                 :            : 
    5184   [ +  -  +  -  :        319 :         TAILQ_INSERT_TAIL(&vu_ctrlr->connected_sqs, sq, tailq);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    5185   [ +  +  +  - ]:        319 :         pthread_mutex_unlock(&endpoint->lock);
    5186                 :            : 
    5187   [ +  -  +  -  :        319 :         free(req->req.iov[0].iov_base);
          +  -  +  -  +  
                -  +  - ]
    5188   [ +  -  +  -  :        319 :         req->req.iov[0].iov_base = NULL;
          +  -  +  -  +  
                -  +  - ]
    5189   [ +  -  +  -  :        319 :         req->req.iovcnt = 0;
                   +  - ]
    5190                 :            : 
    5191                 :        319 :         return 0;
    5192                 :         82 : }
    5193                 :            : 
    5194                 :            : static void
    5195                 :        319 : _nvmf_vfio_user_poll_group_add(void *req)
    5196                 :            : {
    5197                 :        319 :         spdk_nvmf_request_exec(req);
    5198                 :        319 : }
    5199                 :            : 
    5200                 :            : /*
    5201                 :            :  * Add the given qpair to the given poll group. New qpairs are added via
    5202                 :            :  * spdk_nvmf_tgt_new_qpair(), which picks a poll group via
    5203                 :            :  * nvmf_vfio_user_get_optimal_poll_group(), then calls back here via
    5204                 :            :  * nvmf_transport_poll_group_add().
    5205                 :            :  */
    5206                 :            : static int
    5207                 :        319 : nvmf_vfio_user_poll_group_add(struct spdk_nvmf_transport_poll_group *group,
    5208                 :            :                               struct spdk_nvmf_qpair *qpair)
    5209                 :            : {
    5210                 :            :         struct nvmf_vfio_user_sq *sq;
    5211                 :            :         struct nvmf_vfio_user_req *vu_req;
    5212                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    5213                 :            :         struct spdk_nvmf_request *req;
    5214                 :            :         struct spdk_nvmf_fabric_connect_data *data;
    5215                 :            :         bool admin;
    5216                 :            : 
    5217                 :        319 :         sq = SPDK_CONTAINEROF(qpair, struct nvmf_vfio_user_sq, qpair);
    5218   [ +  -  +  - ]:        319 :         sq->group = group;
    5219   [ +  -  +  - ]:        319 :         ctrlr = sq->ctrlr;
    5220                 :            : 
    5221   [ +  +  +  +  :        319 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: add QP%d=%p(%p) to poll_group=%p\n",
          +  -  #  #  #  
                #  #  # ]
    5222                 :            :                       ctrlr_id(ctrlr), sq->qpair.qid,
    5223                 :            :                       sq, qpair, group);
    5224                 :            : 
    5225         [ +  - ]:        319 :         admin = nvmf_qpair_is_admin_queue(&sq->qpair);
    5226                 :            : 
    5227                 :        319 :         vu_req = get_nvmf_vfio_user_req(sq);
    5228         [ +  + ]:        319 :         if (vu_req == NULL) {
    5229                 :          0 :                 return -1;
    5230                 :            :         }
    5231                 :            : 
    5232         [ +  - ]:        319 :         req = &vu_req->req;
    5233   [ +  -  +  -  :        319 :         req->cmd->connect_cmd.opcode = SPDK_NVME_OPC_FABRIC;
          +  -  +  -  +  
                      - ]
    5234   [ +  -  +  -  :        319 :         req->cmd->connect_cmd.cid = 0;
          +  -  +  -  +  
                      - ]
    5235   [ +  -  +  -  :        319 :         req->cmd->connect_cmd.fctype = SPDK_NVMF_FABRIC_COMMAND_CONNECT;
          +  -  +  -  +  
                      - ]
    5236   [ +  -  +  -  :        319 :         req->cmd->connect_cmd.recfmt = 0;
          +  -  +  -  +  
                      - ]
    5237   [ +  -  +  -  :        319 :         req->cmd->connect_cmd.sqsize = sq->size - 1;
          +  -  +  -  +  
             -  +  -  +  
                      - ]
    5238   [ +  +  +  +  :        319 :         req->cmd->connect_cmd.qid = admin ? 0 : qpair->qid;
          +  -  +  -  +  
          -  +  -  +  -  
             +  -  +  - ]
    5239                 :            : 
    5240   [ +  -  +  - ]:        319 :         req->length = sizeof(struct spdk_nvmf_fabric_connect_data);
    5241                 :            : 
    5242   [ +  -  +  - ]:        319 :         data = calloc(1, req->length);
    5243         [ +  + ]:        319 :         if (data == NULL) {
    5244                 :          0 :                 nvmf_vfio_user_req_free(req);
    5245                 :          0 :                 return -ENOMEM;
    5246                 :            :         }
    5247                 :            : 
    5248   [ +  -  +  -  :        319 :         SPDK_IOV_ONE(req->iov, &req->iovcnt, data, req->length);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                      - ]
    5249                 :            : 
    5250   [ +  -  +  -  :        319 :         data->cntlid = ctrlr->cntlid;
             +  -  +  - ]
    5251         [ +  + ]:        401 :         snprintf(data->subnqn, sizeof(data->subnqn), "%s",
    5252   [ +  -  +  -  :        319 :                  spdk_nvmf_subsystem_get_nqn(ctrlr->endpoint->subsystem));
             +  -  +  - ]
    5253                 :            : 
    5254   [ +  -  +  - ]:        319 :         vu_req->cb_fn = handle_queue_connect_rsp;
    5255   [ +  -  +  - ]:        319 :         vu_req->cb_arg = sq;
    5256                 :            : 
    5257   [ +  +  +  +  :        319 :         SPDK_DEBUGLOG(nvmf_vfio,
          +  -  #  #  #  
             #  #  #  #  
                      # ]
    5258                 :            :                       "%s: sending connect fabrics command for qid:%#x cntlid=%#x\n",
    5259                 :            :                       ctrlr_id(ctrlr), qpair->qid, data->cntlid);
    5260                 :            : 
    5261                 :            :         /*
    5262                 :            :          * By the time transport's poll_group_add() callback is executed, the
    5263                 :            :          * qpair isn't in the ACTIVE state yet, so spdk_nvmf_request_exec()
    5264                 :            :          * would fail.  The state changes to ACTIVE immediately after the
    5265                 :            :          * callback finishes, so delay spdk_nvmf_request_exec() by sending a
    5266                 :            :          * message.
    5267                 :            :          */
    5268                 :        319 :         spdk_thread_send_msg(spdk_get_thread(), _nvmf_vfio_user_poll_group_add, req);
    5269                 :        319 :         return 0;
    5270                 :         82 : }
    5271                 :            : 
    5272                 :            : static int
    5273                 :        319 : nvmf_vfio_user_poll_group_remove(struct spdk_nvmf_transport_poll_group *group,
    5274                 :            :                                  struct spdk_nvmf_qpair *qpair)
    5275                 :            : {
    5276                 :            :         struct nvmf_vfio_user_sq *sq;
    5277                 :            :         struct nvmf_vfio_user_poll_group *vu_group;
    5278                 :            : 
    5279                 :        319 :         sq = SPDK_CONTAINEROF(qpair, struct nvmf_vfio_user_sq, qpair);
    5280                 :            : 
    5281   [ +  +  +  +  :        319 :         SPDK_DEBUGLOG(nvmf_vfio,
          +  -  #  #  #  
             #  #  #  #  
                      # ]
    5282                 :            :                       "%s: remove NVMf QP%d=%p from NVMf poll_group=%p\n",
    5283                 :            :                       ctrlr_id(sq->ctrlr), qpair->qid, qpair, group);
    5284                 :            : 
    5285                 :            : 
    5286                 :        319 :         vu_group = SPDK_CONTAINEROF(group, struct nvmf_vfio_user_poll_group, group);
    5287   [ +  +  +  -  :        319 :         TAILQ_REMOVE(&vu_group->sqs, sq, link);
          +  -  +  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  +  - ]
    5288                 :            : 
    5289                 :        319 :         return 0;
    5290                 :            : }
    5291                 :            : 
    5292                 :            : static void
    5293                 :    3644034 : _nvmf_vfio_user_req_free(struct nvmf_vfio_user_sq *sq, struct nvmf_vfio_user_req *vu_req)
    5294                 :            : {
    5295   [ +  +  +  - ]:    3644034 :         memset(&vu_req->cmd, 0, sizeof(vu_req->cmd));
    5296   [ +  +  +  - ]:    3644034 :         memset(&vu_req->rsp, 0, sizeof(vu_req->rsp));
    5297   [ +  -  +  - ]:    3644034 :         vu_req->iovcnt = 0;
    5298   [ +  -  +  -  :    3644034 :         vu_req->req.iovcnt = 0;
                   +  - ]
    5299   [ +  -  +  -  :    3644034 :         vu_req->req.length = 0;
                   +  - ]
    5300   [ +  -  +  - ]:    3644034 :         vu_req->state = VFIO_USER_REQUEST_STATE_FREE;
    5301                 :            : 
    5302   [ +  -  +  -  :    3644034 :         TAILQ_INSERT_TAIL(&sq->free_reqs, vu_req, link);
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
                   +  - ]
    5303                 :    3644034 : }
    5304                 :            : 
    5305                 :            : static int
    5306                 :          8 : nvmf_vfio_user_req_free(struct spdk_nvmf_request *req)
    5307                 :            : {
    5308                 :            :         struct nvmf_vfio_user_sq *sq;
    5309                 :            :         struct nvmf_vfio_user_req *vu_req;
    5310                 :            : 
    5311   [ -  +  #  # ]:          8 :         assert(req != NULL);
    5312                 :            : 
    5313                 :          8 :         vu_req = SPDK_CONTAINEROF(req, struct nvmf_vfio_user_req, req);
    5314   [ #  #  #  # ]:          8 :         sq = SPDK_CONTAINEROF(req->qpair, struct nvmf_vfio_user_sq, qpair);
    5315                 :            : 
    5316                 :          8 :         _nvmf_vfio_user_req_free(sq, vu_req);
    5317                 :            : 
    5318                 :          8 :         return 0;
    5319                 :            : }
    5320                 :            : 
    5321                 :            : static int
    5322                 :    2563899 : nvmf_vfio_user_req_complete(struct spdk_nvmf_request *req)
    5323                 :            : {
    5324                 :            :         struct nvmf_vfio_user_sq *sq;
    5325                 :            :         struct nvmf_vfio_user_req *vu_req;
    5326                 :            : 
    5327   [ +  +  #  # ]:    2563899 :         assert(req != NULL);
    5328                 :            : 
    5329                 :    2563899 :         vu_req = SPDK_CONTAINEROF(req, struct nvmf_vfio_user_req, req);
    5330   [ +  -  +  - ]:    2563899 :         sq = SPDK_CONTAINEROF(req->qpair, struct nvmf_vfio_user_sq, qpair);
    5331                 :            : 
    5332   [ +  -  +  -  :    2563899 :         if (vu_req->cb_fn != NULL) {
                   -  + ]
    5333   [ +  +  +  -  :    2563899 :                 if (vu_req->cb_fn(vu_req, vu_req->cb_arg) != 0) {
          -  +  +  -  +  
             -  +  -  +  
                      - ]
    5334   [ #  #  #  # ]:          0 :                         fail_ctrlr(sq->ctrlr);
    5335                 :          0 :                 }
    5336                 :     141232 :         }
    5337                 :            : 
    5338                 :    2563899 :         _nvmf_vfio_user_req_free(sq, vu_req);
    5339                 :            : 
    5340                 :    2563899 :         return 0;
    5341                 :            : }
    5342                 :            : 
    5343                 :            : static void
    5344                 :        319 : nvmf_vfio_user_close_qpair(struct spdk_nvmf_qpair *qpair,
    5345                 :            :                            spdk_nvmf_transport_qpair_fini_cb cb_fn, void *cb_arg)
    5346                 :            : {
    5347                 :            :         struct nvmf_vfio_user_sq *sq;
    5348                 :            :         struct nvmf_vfio_user_ctrlr *vu_ctrlr;
    5349                 :            :         struct nvmf_vfio_user_endpoint *endpoint;
    5350                 :            :         struct vfio_user_delete_sq_ctx *del_ctx;
    5351                 :            : 
    5352   [ +  +  #  # ]:        319 :         assert(qpair != NULL);
    5353                 :        319 :         sq = SPDK_CONTAINEROF(qpair, struct nvmf_vfio_user_sq, qpair);
    5354   [ +  -  +  - ]:        319 :         vu_ctrlr = sq->ctrlr;
    5355   [ +  -  +  - ]:        319 :         endpoint = vu_ctrlr->endpoint;
    5356   [ +  -  +  - ]:        319 :         del_ctx = sq->delete_ctx;
    5357   [ +  -  +  - ]:        319 :         sq->delete_ctx = NULL;
    5358                 :            : 
    5359   [ +  +  +  - ]:        319 :         pthread_mutex_lock(&endpoint->lock);
    5360   [ +  +  +  -  :        319 :         TAILQ_REMOVE(&vu_ctrlr->connected_sqs, sq, tailq);
          +  -  -  +  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  +  - ]
    5361                 :        319 :         delete_sq_done(vu_ctrlr, sq);
    5362   [ +  +  +  -  :        319 :         if (TAILQ_EMPTY(&vu_ctrlr->connected_sqs)) {
             +  -  +  + ]
    5363   [ +  -  +  - ]:        122 :                 endpoint->ctrlr = NULL;
    5364   [ +  +  +  +  :        122 :                 if (vu_ctrlr->in_source_vm && endpoint->need_resume) {
          +  -  -  +  #  
          #  #  #  #  #  
                   #  # ]
    5365                 :            :                         /* The controller will be freed, we can resume the subsystem
    5366                 :            :                          * now so that the endpoint can be ready to accept another
    5367                 :            :                          * new connection.
    5368                 :            :                          */
    5369   [ #  #  #  # ]:          0 :                         spdk_nvmf_subsystem_resume((struct spdk_nvmf_subsystem *)endpoint->subsystem,
    5370                 :          0 :                                                    vfio_user_endpoint_resume_done, endpoint);
    5371                 :          0 :                 }
    5372                 :        122 :                 free_ctrlr(vu_ctrlr);
    5373                 :         75 :         }
    5374   [ +  +  +  - ]:        319 :         pthread_mutex_unlock(&endpoint->lock);
    5375                 :            : 
    5376         [ +  + ]:        319 :         if (del_ctx) {
    5377                 :        176 :                 vfio_user_qpair_delete_cb(del_ctx);
    5378                 :          7 :         }
    5379                 :            : 
    5380         [ +  + ]:        319 :         if (cb_fn) {
    5381   [ -  +  +  - ]:        319 :                 cb_fn(cb_arg);
    5382                 :         82 :         }
    5383                 :        319 : }
    5384                 :            : 
    5385                 :            : /**
    5386                 :            :  * Returns a preallocated request, or NULL if there isn't one available.
    5387                 :            :  */
    5388                 :            : static struct nvmf_vfio_user_req *
    5389                 :    3644034 : get_nvmf_vfio_user_req(struct nvmf_vfio_user_sq *sq)
    5390                 :            : {
    5391                 :            :         struct nvmf_vfio_user_req *req;
    5392                 :            : 
    5393         [ +  + ]:    3644034 :         if (sq == NULL) {
    5394                 :          0 :                 return NULL;
    5395                 :            :         }
    5396                 :            : 
    5397   [ +  -  +  -  :    3644034 :         req = TAILQ_FIRST(&sq->free_reqs);
                   +  - ]
    5398         [ +  + ]:    3644034 :         if (req == NULL) {
    5399                 :          0 :                 return NULL;
    5400                 :            :         }
    5401                 :            : 
    5402   [ +  -  +  -  :    3644034 :         TAILQ_REMOVE(&sq->free_reqs, req, link);
          +  -  -  +  +  
          -  +  -  +  -  
          +  -  +  -  +  
          -  +  -  +  -  
          +  -  #  #  #  
          #  #  #  #  #  
          #  #  #  #  +  
          -  +  -  +  -  
          +  -  +  -  +  
                -  +  - ]
    5403                 :            : 
    5404                 :    3644034 :         return req;
    5405                 :     141232 : }
    5406                 :            : 
    5407                 :            : static int
    5408                 :    2886559 : get_nvmf_io_req_length(struct spdk_nvmf_request *req)
    5409                 :            : {
    5410                 :            :         uint16_t nr;
    5411                 :            :         uint32_t nlb, nsid;
    5412   [ +  -  +  -  :    2886559 :         struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
                   +  - ]
    5413   [ +  -  +  -  :    2886559 :         struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
             +  -  +  - ]
    5414                 :            :         struct spdk_nvmf_ns *ns;
    5415                 :            : 
    5416   [ +  -  +  - ]:    2886559 :         nsid = cmd->nsid;
    5417   [ +  -  +  - ]:    2886559 :         ns = _nvmf_subsystem_get_ns(ctrlr->subsys, nsid);
    5418   [ +  -  +  +  :    2886559 :         if (ns == NULL || ns->bdev == NULL) {
             +  -  -  + ]
    5419   [ #  #  #  # ]:          0 :                 SPDK_ERRLOG("unsuccessful query for nsid %u\n", cmd->nsid);
    5420                 :          0 :                 return -EINVAL;
    5421                 :            :         }
    5422                 :            : 
    5423   [ +  +  -  + ]:    2886559 :         if (cmd->opc == SPDK_NVME_OPC_DATASET_MANAGEMENT) {
    5424   [ #  #  #  #  :       5641 :                 nr = cmd->cdw10_bits.dsm.nr + 1;
          #  #  #  #  #  
                      # ]
    5425                 :       5641 :                 return nr * sizeof(struct spdk_nvme_dsm_range);
    5426                 :            :         }
    5427                 :            : 
    5428   [ +  +  -  + ]:    2880918 :         if (cmd->opc == SPDK_NVME_OPC_COPY) {
    5429   [ #  #  #  #  :       5607 :                 nr = (cmd->cdw12 & 0x000000ffu) + 1;
                   #  # ]
    5430                 :       5607 :                 return nr * sizeof(struct spdk_nvme_scc_source_range);
    5431                 :            :         }
    5432                 :            : 
    5433   [ +  -  +  -  :    2875311 :         nlb = (cmd->cdw12 & 0x0000ffffu) + 1;
                   +  - ]
    5434   [ +  -  +  - ]:    2875311 :         return nlb * spdk_bdev_desc_get_block_size(ns->desc);
    5435                 :     140962 : }
    5436                 :            : 
    5437                 :            : static int
    5438                 :     367555 : map_admin_cmd_req(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvmf_request *req)
    5439                 :            : {
    5440   [ +  -  +  -  :     367555 :         struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
                   +  - ]
    5441                 :     367555 :         uint32_t len = 0, numdw = 0;
    5442                 :            :         uint8_t fid;
    5443                 :            :         int iovcnt;
    5444                 :            : 
    5445   [ +  -  +  -  :     367555 :         req->xfer = spdk_nvme_opc_get_data_transfer(cmd->opc);
                   +  - ]
    5446                 :            : 
    5447   [ +  +  +  -  :     367555 :         if (req->xfer == SPDK_NVME_DATA_NONE) {
                   +  + ]
    5448                 :      86052 :                 return 0;
    5449                 :            :         }
    5450                 :            : 
    5451   [ +  +  +  +  :     281503 :         switch (cmd->opc) {
                +  +  - ]
    5452                 :       1794 :         case SPDK_NVME_OPC_IDENTIFY:
    5453                 :       1822 :                 len = 4096;
    5454                 :       1822 :                 break;
    5455                 :       1461 :         case SPDK_NVME_OPC_GET_LOG_PAGE:
    5456   [ #  #  #  #  :       1461 :                 numdw = ((((uint32_t)cmd->cdw11_bits.get_log_page.numdu << 16) |
          #  #  #  #  #  
                      # ]
    5457   [ #  #  #  #  :       1461 :                           cmd->cdw10_bits.get_log_page.numdl) + 1);
             #  #  #  # ]
    5458         [ +  + ]:       1461 :                 if (numdw > UINT32_MAX / 4) {
    5459                 :       1050 :                         return -EINVAL;
    5460                 :            :                 }
    5461                 :        411 :                 len = numdw * 4;
    5462                 :        411 :                 break;
    5463                 :      17843 :         case SPDK_NVME_OPC_GET_FEATURES:
    5464                 :            :         case SPDK_NVME_OPC_SET_FEATURES:
    5465   [ +  -  +  -  :      17864 :                 fid = cmd->cdw10_bits.set_features.fid;
             +  -  +  - ]
    5466   [ +  +  +  +  :      17864 :                 switch (fid) {
                   +  + ]
    5467                 :          7 :                 case SPDK_NVME_FEAT_LBA_RANGE_TYPE:
    5468                 :          7 :                         len = 4096;
    5469                 :          7 :                         break;
    5470                 :         12 :                 case SPDK_NVME_FEAT_AUTONOMOUS_POWER_STATE_TRANSITION:
    5471                 :         12 :                         len = 256;
    5472                 :         12 :                         break;
    5473                 :          7 :                 case SPDK_NVME_FEAT_TIMESTAMP:
    5474                 :          7 :                         len = 8;
    5475                 :          7 :                         break;
    5476                 :         13 :                 case SPDK_NVME_FEAT_HOST_BEHAVIOR_SUPPORT:
    5477                 :         13 :                         len = 512;
    5478                 :         13 :                         break;
    5479                 :          9 :                 case SPDK_NVME_FEAT_HOST_IDENTIFIER:
    5480   [ +  +  #  #  :          9 :                         if (cmd->cdw11_bits.feat_host_identifier.bits.exhid) {
          #  #  #  #  #  
                #  #  # ]
    5481                 :          3 :                                 len = 16;
    5482                 :          0 :                         } else {
    5483                 :          6 :                                 len = 8;
    5484                 :            :                         }
    5485                 :          9 :                         break;
    5486                 :      17795 :                 default:
    5487                 :      17816 :                         return 0;
    5488                 :            :                 }
    5489                 :         48 :                 break;
    5490                 :       1436 :         case SPDK_NVME_OPC_FABRIC:
    5491                 :       1436 :                 return -ENOTSUP;
    5492                 :     258920 :         default:
    5493                 :     258920 :                 return 0;
    5494                 :            :         }
    5495                 :            : 
    5496                 :            :         /* ADMIN command will not use SGL */
    5497   [ +  +  -  + ]:       2281 :         if (cmd->psdt != 0) {
    5498                 :          0 :                 return -EINVAL;
    5499                 :            :         }
    5500                 :            : 
    5501         [ +  - ]:       2281 :         iovcnt = vfio_user_map_cmd(ctrlr, req, req->iov, len);
    5502         [ +  + ]:       2281 :         if (iovcnt < 0) {
    5503         [ #  # ]:       1802 :                 SPDK_ERRLOG("%s: map Admin Opc %x failed\n",
    5504                 :            :                             ctrlr_id(ctrlr), cmd->opc);
    5505                 :       1802 :                 return -1;
    5506                 :            :         }
    5507   [ +  -  +  - ]:        479 :         req->length = len;
    5508   [ +  -  +  - ]:        479 :         req->iovcnt = iovcnt;
    5509                 :            : 
    5510                 :        479 :         return 0;
    5511                 :         77 : }
    5512                 :            : 
    5513                 :            : /*
    5514                 :            :  * Map an I/O command's buffers.
    5515                 :            :  *
    5516                 :            :  * Returns 0 on success and -errno on failure.
    5517                 :            :  */
    5518                 :            : static int
    5519                 :    3247123 : map_io_cmd_req(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvmf_request *req)
    5520                 :            : {
    5521                 :            :         int len, iovcnt;
    5522                 :            :         struct spdk_nvme_cmd *cmd;
    5523                 :            : 
    5524   [ +  +  #  # ]:    3247123 :         assert(ctrlr != NULL);
    5525   [ +  +  #  # ]:    3247123 :         assert(req != NULL);
    5526                 :            : 
    5527   [ +  -  +  -  :    3247123 :         cmd = &req->cmd->nvme_cmd;
                   +  - ]
    5528   [ +  -  +  -  :    3247123 :         req->xfer = spdk_nvme_opc_get_data_transfer(cmd->opc);
                   +  - ]
    5529                 :            : 
    5530   [ +  +  +  -  :    3247123 :         if (spdk_unlikely(req->xfer == SPDK_NVME_DATA_NONE)) {
                   -  + ]
    5531                 :     360564 :                 return 0;
    5532                 :            :         }
    5533                 :            : 
    5534                 :    2886559 :         len = get_nvmf_io_req_length(req);
    5535         [ +  + ]:    2886559 :         if (len < 0) {
    5536                 :          0 :                 return -EINVAL;
    5537                 :            :         }
    5538   [ +  -  +  - ]:    2886559 :         req->length = len;
    5539                 :            : 
    5540   [ +  -  +  -  :    2886559 :         iovcnt = vfio_user_map_cmd(ctrlr, req, req->iov, req->length);
                   +  - ]
    5541         [ +  + ]:    2886559 :         if (iovcnt < 0) {
    5542         [ #  # ]:    1047742 :                 SPDK_ERRLOG("%s: failed to map IO OPC %u\n", ctrlr_id(ctrlr), cmd->opc);
    5543                 :    1047742 :                 return -EFAULT;
    5544                 :            :         }
    5545   [ +  -  +  - ]:    1838817 :         req->iovcnt = iovcnt;
    5546                 :            : 
    5547                 :    1838817 :         return 0;
    5548                 :     140962 : }
    5549                 :            : 
    5550                 :            : static int
    5551                 :    3642775 : handle_cmd_req(struct nvmf_vfio_user_ctrlr *ctrlr, struct spdk_nvme_cmd *cmd,
    5552                 :            :                struct nvmf_vfio_user_sq *sq)
    5553                 :            : {
    5554                 :            :         int err;
    5555                 :            :         struct nvmf_vfio_user_req *vu_req;
    5556                 :            :         struct spdk_nvmf_request *req;
    5557                 :            : 
    5558   [ +  +  #  # ]:    3642775 :         assert(ctrlr != NULL);
    5559   [ +  +  #  # ]:    3642775 :         assert(cmd != NULL);
    5560                 :            : 
    5561                 :    3642775 :         vu_req = get_nvmf_vfio_user_req(sq);
    5562         [ -  + ]:    3642775 :         if (spdk_unlikely(vu_req == NULL)) {
    5563         [ #  # ]:          0 :                 SPDK_ERRLOG("%s: no request for NVMe command opc 0x%x\n", ctrlr_id(ctrlr), cmd->opc);
    5564   [ #  #  #  #  :          0 :                 return post_completion(ctrlr, ctrlr->cqs[sq->cqid], 0, 0, cmd->cid,
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
    5565                 :            :                                        SPDK_NVME_SC_INTERNAL_DEVICE_ERROR, SPDK_NVME_SCT_GENERIC);
    5566                 :            : 
    5567                 :            :         }
    5568         [ +  - ]:    3642775 :         req = &vu_req->req;
    5569                 :            : 
    5570   [ +  +  +  -  :    3642775 :         assert(req->qpair != NULL);
             +  -  #  # ]
    5571   [ +  +  +  +  :    3642775 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: handle sqid:%u, req opc=%#x cid=%d\n",
          +  -  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                      # ]
    5572                 :            :                       ctrlr_id(ctrlr), req->qpair->qid, cmd->opc, cmd->cid);
    5573                 :            : 
    5574   [ +  -  +  - ]:    3642775 :         vu_req->cb_fn = handle_cmd_rsp;
    5575   [ +  -  +  -  :    3642775 :         vu_req->cb_arg = SPDK_CONTAINEROF(req->qpair, struct nvmf_vfio_user_sq, qpair);
             +  -  +  - ]
    5576   [ +  -  +  -  :    3642775 :         req->cmd->nvme_cmd = *cmd;
                   +  - ]
    5577                 :            : 
    5578   [ +  +  +  -  :    3642775 :         if (nvmf_qpair_is_admin_queue(req->qpair)) {
                   +  + ]
    5579                 :     367555 :                 err = map_admin_cmd_req(ctrlr, req);
    5580                 :         77 :         } else {
    5581   [ +  +  +  - ]:    3275220 :                 switch (cmd->opc) {
    5582                 :      28097 :                 case SPDK_NVME_OPC_RESERVATION_REGISTER:
    5583                 :            :                 case SPDK_NVME_OPC_RESERVATION_REPORT:
    5584                 :            :                 case SPDK_NVME_OPC_RESERVATION_ACQUIRE:
    5585                 :            :                 case SPDK_NVME_OPC_RESERVATION_RELEASE:
    5586                 :            :                 case SPDK_NVME_OPC_FABRIC:
    5587                 :      28097 :                         err = -ENOTSUP;
    5588                 :      28097 :                         break;
    5589                 :    3106161 :                 default:
    5590                 :    3247123 :                         err = map_io_cmd_req(ctrlr, req);
    5591                 :    3247123 :                         break;
    5592                 :            :                 }
    5593                 :            :         }
    5594                 :            : 
    5595         [ +  + ]:    3642775 :         if (spdk_unlikely(err < 0)) {
    5596         [ #  # ]:    1080127 :                 SPDK_ERRLOG("%s: process NVMe command opc 0x%x failed\n",
    5597                 :            :                             ctrlr_id(ctrlr), cmd->opc);
    5598   [ #  #  #  #  :    1080127 :                 req->rsp->nvme_cpl.status.sct = SPDK_NVME_SCT_GENERIC;
          #  #  #  #  #  
                #  #  # ]
    5599   [ +  +  #  #  :    1080127 :                 req->rsp->nvme_cpl.status.sc = err == -ENOTSUP ?
          #  #  #  #  #  
                #  #  # ]
    5600                 :            :                                                SPDK_NVME_SC_INVALID_OPCODE :
    5601                 :            :                                                SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
    5602   [ #  #  #  # ]:    1080127 :                 err = handle_cmd_rsp(vu_req, vu_req->cb_arg);
    5603                 :    1080127 :                 _nvmf_vfio_user_req_free(sq, vu_req);
    5604                 :    1080127 :                 return err;
    5605                 :            :         }
    5606                 :            : 
    5607   [ +  -  +  - ]:    2562648 :         vu_req->state = VFIO_USER_REQUEST_STATE_EXECUTING;
    5608                 :    2562648 :         spdk_nvmf_request_exec(req);
    5609                 :            : 
    5610                 :    2562648 :         return 0;
    5611                 :     141039 : }
    5612                 :            : 
    5613                 :            : /*
    5614                 :            :  * If we suppressed an IRQ in post_completion(), check if it needs to be fired
    5615                 :            :  * here: if the host isn't up to date, and is apparently not actively processing
    5616                 :            :  * the queue (i.e. ->last_head isn't changing), we need an IRQ.
    5617                 :            :  */
    5618                 :            : static void
    5619                 :   73988911 : handle_suppressed_irq(struct nvmf_vfio_user_ctrlr *ctrlr,
    5620                 :            :                       struct nvmf_vfio_user_sq *sq)
    5621                 :            : {
    5622   [ +  -  +  -  :   73988911 :         struct nvmf_vfio_user_cq *cq = ctrlr->cqs[sq->cqid];
          +  -  +  -  +  
                -  +  - ]
    5623                 :            :         uint32_t cq_head;
    5624                 :            :         uint32_t cq_tail;
    5625                 :            : 
    5626   [ +  +  +  +  :   73988911 :         if (!cq->ien || cq->qid == 0 || !ctrlr_interrupt_enabled(ctrlr)) {
          +  +  +  +  +  
          -  +  -  -  +  
                   #  # ]
    5627                 :   47012131 :                 return;
    5628                 :            :         }
    5629                 :            : 
    5630                 :   26976780 :         cq_tail = *cq_tailp(cq);
    5631                 :            : 
    5632                 :            :         /* Already sent? */
    5633   [ +  +  #  #  :   26976780 :         if (cq_tail == cq->last_trigger_irq_tail) {
                   #  # ]
    5634                 :   26950636 :                 return;
    5635                 :            :         }
    5636                 :            : 
    5637                 :            :         spdk_ivdt_dcache(cq_dbl_headp(cq));
    5638                 :      26144 :         cq_head = *cq_dbl_headp(cq);
    5639                 :            : 
    5640   [ +  +  +  +  :      26144 :         if (cq_head != cq_tail && cq_head == cq->last_head) {
             #  #  #  # ]
    5641   [ #  #  #  #  :      13160 :                 int err = vfu_irq_trigger(ctrlr->endpoint->vfu_ctx, cq->iv);
          #  #  #  #  #  
                #  #  # ]
    5642         [ -  + ]:      13160 :                 if (err != 0) {
    5643                 :          0 :                         SPDK_ERRLOG("%s: failed to trigger interrupt: %m\n",
    5644                 :            :                                     ctrlr_id(ctrlr));
    5645                 :          0 :                 } else {
    5646   [ #  #  #  # ]:      13160 :                         cq->last_trigger_irq_tail = cq_tail;
    5647                 :            :                 }
    5648                 :          0 :         }
    5649                 :            : 
    5650   [ #  #  #  # ]:      26144 :         cq->last_head = cq_head;
    5651                 :     803304 : }
    5652                 :            : 
    5653                 :            : /* Returns the number of commands processed, or a negative value on error. */
    5654                 :            : static int
    5655                 :   74385070 : nvmf_vfio_user_sq_poll(struct nvmf_vfio_user_sq *sq)
    5656                 :            : {
    5657                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    5658                 :            :         uint32_t new_tail;
    5659                 :   74385070 :         int count = 0;
    5660                 :            : 
    5661   [ +  +  #  # ]:   74385070 :         assert(sq != NULL);
    5662                 :            : 
    5663   [ +  -  +  - ]:   74385070 :         ctrlr = sq->ctrlr;
    5664                 :            : 
    5665                 :            :         /*
    5666                 :            :          * A quiesced, or migrating, controller should never process new
    5667                 :            :          * commands.
    5668                 :            :          */
    5669   [ +  +  +  -  :   74385070 :         if (ctrlr->state != VFIO_USER_CTRLR_RUNNING) {
                   -  + ]
    5670                 :     396159 :                 return SPDK_POLLER_IDLE;
    5671                 :            :         }
    5672                 :            : 
    5673   [ +  +  +  -  :   73988911 :         if (ctrlr->adaptive_irqs_enabled) {
             +  -  -  + ]
    5674                 :   73988911 :                 handle_suppressed_irq(ctrlr, sq);
    5675                 :     803304 :         }
    5676                 :            : 
    5677                 :            :         /* On aarch64 platforms, doorbells update from guest VM may not be seen
    5678                 :            :          * on SPDK target side. This is because there is memory type mismatch
    5679                 :            :          * situation here. That is on guest VM side, the doorbells are treated as
    5680                 :            :          * device memory while on SPDK target side, it is treated as normal
    5681                 :            :          * memory. And this situation cause problem on ARM platform.
    5682                 :            :          * Refer to "https://developer.arm.com/documentation/102376/0100/
    5683                 :            :          * Memory-aliasing-and-mismatched-memory-types". Only using spdk_mb()
    5684                 :            :          * cannot fix this. Use "dc civac" to invalidate cache may solve
    5685                 :            :          * this.
    5686                 :            :          */
    5687                 :            :         spdk_ivdt_dcache(sq_dbl_tailp(sq));
    5688                 :            : 
    5689                 :            :         /* Load-Acquire. */
    5690                 :   73988911 :         new_tail = *sq_dbl_tailp(sq);
    5691                 :            : 
    5692                 :   73988911 :         new_tail = new_tail & 0xffffu;
    5693   [ +  +  +  -  :   73988911 :         if (spdk_unlikely(new_tail >= sq->size)) {
                   -  + ]
    5694   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio, "%s: invalid sqid:%u doorbell value %u\n", ctrlr_id(ctrlr), sq->qid,
          #  #  #  #  #  
                      # ]
    5695                 :            :                               new_tail);
    5696   [ #  #  #  # ]:          0 :                 spdk_nvmf_ctrlr_async_event_error_event(ctrlr->ctrlr, SPDK_NVME_ASYNC_EVENT_INVALID_DB_WRITE);
    5697                 :            : 
    5698                 :          0 :                 return -1;
    5699                 :            :         }
    5700                 :            : 
    5701         [ +  + ]:   73988911 :         if (*sq_headp(sq) == new_tail) {
    5702                 :   73542248 :                 return 0;
    5703                 :            :         }
    5704                 :            : 
    5705   [ +  +  +  +  :     446663 :         SPDK_DEBUGLOG(nvmf_vfio, "%s: sqid:%u doorbell old=%u new=%u\n",
          +  -  #  #  #  
                      # ]
    5706                 :            :                       ctrlr_id(ctrlr), sq->qid, *sq_headp(sq), new_tail);
    5707   [ +  +  +  -  :     446663 :         if (ctrlr->sdbl != NULL) {
                   +  - ]
    5708   [ #  #  #  #  :          0 :                 SPDK_DEBUGLOG(nvmf_vfio,
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  # ]
    5709                 :            :                               "%s: sqid:%u bar0_doorbell=%u shadow_doorbell=%u eventidx=%u\n",
    5710                 :            :                               ctrlr_id(ctrlr), sq->qid,
    5711                 :            :                               ctrlr->bar0_doorbells[queue_index(sq->qid, false)],
    5712                 :            :                               ctrlr->sdbl->shadow_doorbells[queue_index(sq->qid, false)],
    5713                 :            :                               ctrlr->sdbl->eventidxs[queue_index(sq->qid, false)]);
    5714                 :          0 :         }
    5715                 :            : 
    5716                 :            :         /*
    5717                 :            :          * Ensure that changes to the queue are visible to us.
    5718                 :            :          * The host driver should write the queue first, do a wmb(), and then
    5719                 :            :          * update the SQ tail doorbell (their Store-Release).
    5720                 :            :          */
    5721                 :     446663 :         spdk_rmb();
    5722                 :            : 
    5723                 :     446663 :         count = handle_sq_tdbl_write(ctrlr, new_tail, sq);
    5724         [ +  + ]:     446663 :         if (spdk_unlikely(count < 0)) {
    5725                 :          0 :                 fail_ctrlr(ctrlr);
    5726                 :          0 :         }
    5727                 :            : 
    5728                 :     446663 :         return count;
    5729                 :     803304 : }
    5730                 :            : 
    5731                 :            : /*
    5732                 :            :  * vfio-user transport poll handler. Note that the library context is polled in
    5733                 :            :  * a separate poller (->vfu_ctx_poller), so this poller only needs to poll the
    5734                 :            :  * active SQs.
    5735                 :            :  *
    5736                 :            :  * Returns the number of commands processed, or a negative value on error.
    5737                 :            :  */
    5738                 :            : static int
    5739                 :   81120610 : nvmf_vfio_user_poll_group_poll(struct spdk_nvmf_transport_poll_group *group)
    5740                 :            : {
    5741                 :            :         struct nvmf_vfio_user_poll_group *vu_group;
    5742                 :            :         struct nvmf_vfio_user_sq *sq, *tmp;
    5743                 :   81120610 :         int count = 0;
    5744                 :            : 
    5745   [ +  +  #  # ]:   81120610 :         assert(group != NULL);
    5746                 :            : 
    5747                 :   81120610 :         vu_group = SPDK_CONTAINEROF(group, struct nvmf_vfio_user_poll_group, group);
    5748                 :            : 
    5749   [ +  +  +  +  :   81120610 :         SPDK_DEBUGLOG(vfio_user_db, "polling all SQs\n");
                   +  - ]
    5750                 :            : 
    5751   [ +  +  +  -  :  156902141 :         TAILQ_FOREACH_SAFE(sq, &vu_group->sqs, link, tmp) {
          +  -  +  +  +  
          -  +  -  +  -  
                   +  + ]
    5752                 :            :                 int ret;
    5753                 :            : 
    5754   [ +  +  +  +  :   75781531 :                 if (spdk_unlikely(sq->sq_state != VFIO_USER_SQ_ACTIVE || !sq->size)) {
          +  +  +  -  +  
                -  +  + ]
    5755                 :    1396461 :                         continue;
    5756                 :            :                 }
    5757                 :            : 
    5758                 :   74385070 :                 ret = nvmf_vfio_user_sq_poll(sq);
    5759                 :            : 
    5760         [ -  + ]:   74385070 :                 if (spdk_unlikely(ret < 0)) {
    5761                 :          0 :                         return ret;
    5762                 :            :                 }
    5763                 :            : 
    5764         [ +  - ]:   74385070 :                 count += ret;
    5765                 :     803304 :         }
    5766                 :            : 
    5767   [ +  -  +  - ]:   81120610 :         vu_group->stats.polls++;
    5768   [ +  -  +  -  :   81120610 :         vu_group->stats.poll_reqs += count;
                   +  - ]
    5769   [ +  -  +  -  :   81120610 :         vu_group->stats.poll_reqs_squared += count * count;
             +  -  +  - ]
    5770         [ +  + ]:   81120610 :         if (count == 0) {
    5771   [ +  -  +  - ]:   80710962 :                 vu_group->stats.polls_spurious++;
    5772                 :     698680 :         }
    5773                 :            : 
    5774                 :   81120610 :         return count;
    5775                 :     839719 : }
    5776                 :            : 
    5777                 :            : static int
    5778                 :          0 : nvmf_vfio_user_qpair_get_local_trid(struct spdk_nvmf_qpair *qpair,
    5779                 :            :                                     struct spdk_nvme_transport_id *trid)
    5780                 :            : {
    5781                 :            :         struct nvmf_vfio_user_sq *sq;
    5782                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    5783                 :            : 
    5784                 :          0 :         sq = SPDK_CONTAINEROF(qpair, struct nvmf_vfio_user_sq, qpair);
    5785   [ #  #  #  # ]:          0 :         ctrlr = sq->ctrlr;
    5786                 :            : 
    5787   [ #  #  #  #  :          0 :         memcpy(trid, &ctrlr->endpoint->trid, sizeof(*trid));
          #  #  #  #  #  
                      # ]
    5788                 :          0 :         return 0;
    5789                 :            : }
    5790                 :            : 
    5791                 :            : static int
    5792                 :          0 : nvmf_vfio_user_qpair_get_peer_trid(struct spdk_nvmf_qpair *qpair,
    5793                 :            :                                    struct spdk_nvme_transport_id *trid)
    5794                 :            : {
    5795                 :          0 :         return 0;
    5796                 :            : }
    5797                 :            : 
    5798                 :            : static int
    5799                 :        444 : nvmf_vfio_user_qpair_get_listen_trid(struct spdk_nvmf_qpair *qpair,
    5800                 :            :                                      struct spdk_nvme_transport_id *trid)
    5801                 :            : {
    5802                 :            :         struct nvmf_vfio_user_sq *sq;
    5803                 :            :         struct nvmf_vfio_user_ctrlr *ctrlr;
    5804                 :            : 
    5805                 :        444 :         sq = SPDK_CONTAINEROF(qpair, struct nvmf_vfio_user_sq, qpair);
    5806   [ +  -  +  - ]:        444 :         ctrlr = sq->ctrlr;
    5807                 :            : 
    5808   [ +  +  +  +  :        444 :         memcpy(trid, &ctrlr->endpoint->trid, sizeof(*trid));
          +  -  +  -  +  
                      - ]
    5809                 :        444 :         return 0;
    5810                 :            : }
    5811                 :            : 
    5812                 :            : static void
    5813                 :          0 : nvmf_vfio_user_qpair_abort_request(struct spdk_nvmf_qpair *qpair,
    5814                 :            :                                    struct spdk_nvmf_request *req)
    5815                 :            : {
    5816                 :          0 :         struct spdk_nvmf_request *req_to_abort = NULL;
    5817                 :          0 :         struct spdk_nvmf_request *temp_req = NULL;
    5818                 :            :         uint16_t cid;
    5819                 :            : 
    5820   [ #  #  #  #  :          0 :         cid = req->cmd->nvme_cmd.cdw10_bits.abort.cid;
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    5821                 :            : 
    5822   [ #  #  #  #  :          0 :         TAILQ_FOREACH(temp_req, &qpair->outstanding, link) {
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    5823                 :            :                 struct nvmf_vfio_user_req *vu_req;
    5824                 :            : 
    5825                 :          0 :                 vu_req = SPDK_CONTAINEROF(temp_req, struct nvmf_vfio_user_req, req);
    5826                 :            : 
    5827   [ #  #  #  #  :          0 :                 if (vu_req->state == VFIO_USER_REQUEST_STATE_EXECUTING && vu_req->cmd.cid == cid) {
          #  #  #  #  #  
             #  #  #  #  
                      # ]
    5828                 :          0 :                         req_to_abort = temp_req;
    5829                 :          0 :                         break;
    5830                 :            :                 }
    5831                 :          0 :         }
    5832                 :            : 
    5833         [ #  # ]:          0 :         if (req_to_abort == NULL) {
    5834                 :          0 :                 spdk_nvmf_request_complete(req);
    5835                 :          0 :                 return;
    5836                 :            :         }
    5837                 :            : 
    5838   [ #  #  #  # ]:          0 :         req->req_to_abort = req_to_abort;
    5839                 :          0 :         nvmf_ctrlr_abort_request(req);
    5840                 :          0 : }
    5841                 :            : 
    5842                 :            : static void
    5843                 :          0 : nvmf_vfio_user_poll_group_dump_stat(struct spdk_nvmf_transport_poll_group *group,
    5844                 :            :                                     struct spdk_json_write_ctx *w)
    5845                 :            : {
    5846                 :          0 :         struct nvmf_vfio_user_poll_group *vu_group = SPDK_CONTAINEROF(group,
    5847                 :            :                         struct nvmf_vfio_user_poll_group, group);
    5848                 :            :         uint64_t polls_denom;
    5849                 :            : 
    5850   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "ctrlr_intr", vu_group->stats.ctrlr_intr);
                   #  # ]
    5851   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "ctrlr_kicks", vu_group->stats.ctrlr_kicks);
                   #  # ]
    5852   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "won", vu_group->stats.won);
                   #  # ]
    5853   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "lost", vu_group->stats.lost);
                   #  # ]
    5854   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "lost_count", vu_group->stats.lost_count);
                   #  # ]
    5855   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "rearms", vu_group->stats.rearms);
                   #  # ]
    5856   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "pg_process_count", vu_group->stats.pg_process_count);
                   #  # ]
    5857   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "intr", vu_group->stats.intr);
                   #  # ]
    5858   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "polls", vu_group->stats.polls);
                   #  # ]
    5859   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "polls_spurious", vu_group->stats.polls_spurious);
                   #  # ]
    5860   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "poll_reqs", vu_group->stats.poll_reqs);
                   #  # ]
    5861   [ #  #  #  #  :          0 :         polls_denom = vu_group->stats.polls * (vu_group->stats.polls - 1);
          #  #  #  #  #  
                #  #  # ]
    5862         [ #  # ]:          0 :         if (polls_denom) {
    5863   [ #  #  #  #  :          0 :                 uint64_t n = vu_group->stats.polls * vu_group->stats.poll_reqs_squared - vu_group->stats.poll_reqs *
          #  #  #  #  #  
          #  #  #  #  #  
             #  #  #  # ]
    5864   [ #  #  #  #  :          0 :                              vu_group->stats.poll_reqs;
                   #  # ]
    5865         [ #  # ]:          0 :                 spdk_json_write_named_double(w, "poll_reqs_variance", sqrt(n / polls_denom));
    5866                 :          0 :         }
    5867                 :            : 
    5868   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "cqh_admin_writes", vu_group->stats.cqh_admin_writes);
                   #  # ]
    5869   [ #  #  #  #  :          0 :         spdk_json_write_named_uint64(w, "cqh_io_writes", vu_group->stats.cqh_io_writes);
                   #  # ]
    5870                 :          0 : }
    5871                 :            : 
    5872                 :            : static void
    5873                 :         14 : nvmf_vfio_user_opts_init(struct spdk_nvmf_transport_opts *opts)
    5874                 :            : {
    5875   [ +  -  +  - ]:         14 :         opts->max_queue_depth =              NVMF_VFIO_USER_DEFAULT_MAX_QUEUE_DEPTH;
    5876   [ +  -  +  - ]:         14 :         opts->max_qpairs_per_ctrlr = NVMF_VFIO_USER_DEFAULT_MAX_QPAIRS_PER_CTRLR;
    5877   [ +  -  +  - ]:         14 :         opts->in_capsule_data_size = 0;
    5878   [ -  +  +  -  :         14 :         opts->max_io_size =          NVMF_VFIO_USER_DEFAULT_MAX_IO_SIZE;
             +  -  +  - ]
    5879   [ -  +  +  -  :         14 :         opts->io_unit_size =         NVMF_VFIO_USER_DEFAULT_IO_UNIT_SIZE;
             +  -  +  - ]
    5880   [ +  -  +  - ]:         14 :         opts->max_aq_depth =         NVMF_VFIO_USER_DEFAULT_AQ_DEPTH;
    5881   [ +  -  +  - ]:         14 :         opts->num_shared_buffers =   0;
    5882   [ +  -  +  - ]:         14 :         opts->buf_cache_size =               0;
    5883   [ +  -  +  - ]:         14 :         opts->association_timeout =  0;
    5884   [ +  -  +  - ]:         14 :         opts->transport_specific =      NULL;
    5885                 :         14 : }
    5886                 :            : 
    5887                 :            : const struct spdk_nvmf_transport_ops spdk_nvmf_transport_vfio_user = {
    5888                 :            :         .name = "VFIOUSER",
    5889                 :            :         .type = SPDK_NVME_TRANSPORT_VFIOUSER,
    5890                 :            :         .opts_init = nvmf_vfio_user_opts_init,
    5891                 :            :         .create = nvmf_vfio_user_create,
    5892                 :            :         .destroy = nvmf_vfio_user_destroy,
    5893                 :            : 
    5894                 :            :         .listen = nvmf_vfio_user_listen,
    5895                 :            :         .stop_listen = nvmf_vfio_user_stop_listen,
    5896                 :            :         .cdata_init = nvmf_vfio_user_cdata_init,
    5897                 :            :         .listen_associate = nvmf_vfio_user_listen_associate,
    5898                 :            : 
    5899                 :            :         .listener_discover = nvmf_vfio_user_discover,
    5900                 :            : 
    5901                 :            :         .poll_group_create = nvmf_vfio_user_poll_group_create,
    5902                 :            :         .get_optimal_poll_group = nvmf_vfio_user_get_optimal_poll_group,
    5903                 :            :         .poll_group_destroy = nvmf_vfio_user_poll_group_destroy,
    5904                 :            :         .poll_group_add = nvmf_vfio_user_poll_group_add,
    5905                 :            :         .poll_group_remove = nvmf_vfio_user_poll_group_remove,
    5906                 :            :         .poll_group_poll = nvmf_vfio_user_poll_group_poll,
    5907                 :            : 
    5908                 :            :         .req_free = nvmf_vfio_user_req_free,
    5909                 :            :         .req_complete = nvmf_vfio_user_req_complete,
    5910                 :            : 
    5911                 :            :         .qpair_fini = nvmf_vfio_user_close_qpair,
    5912                 :            :         .qpair_get_local_trid = nvmf_vfio_user_qpair_get_local_trid,
    5913                 :            :         .qpair_get_peer_trid = nvmf_vfio_user_qpair_get_peer_trid,
    5914                 :            :         .qpair_get_listen_trid = nvmf_vfio_user_qpair_get_listen_trid,
    5915                 :            :         .qpair_abort_request = nvmf_vfio_user_qpair_abort_request,
    5916                 :            : 
    5917                 :            :         .poll_group_dump_stat = nvmf_vfio_user_poll_group_dump_stat,
    5918                 :            : };
    5919                 :            : 
    5920                 :        212 : SPDK_NVMF_TRANSPORT_REGISTER(muser, &spdk_nvmf_transport_vfio_user);
    5921                 :        212 : SPDK_LOG_REGISTER_COMPONENT(nvmf_vfio)
    5922                 :        212 : SPDK_LOG_REGISTER_COMPONENT(vfio_user_db)

Generated by: LCOV version 1.15