1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Network block device - make block devices work over TCP
5 * Note that you can not swap over this thing, yet. Seems to work but
6 * deadlocks sometimes - you can not swap over TCP in general.
8 * Copyright 1997-2000, 2008 Pavel Machek <pavel@ucw.cz>
9 * Parts copyright 2001 Steven Whitehouse <steve@chygwyn.com>
11 * (part of code stolen from loop.c)
14 #include <linux/major.h>
16 #include <linux/blkdev.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/sched.h>
20 #include <linux/sched/mm.h>
22 #include <linux/bio.h>
23 #include <linux/stat.h>
24 #include <linux/errno.h>
25 #include <linux/file.h>
26 #include <linux/ioctl.h>
27 #include <linux/mutex.h>
28 #include <linux/compiler.h>
29 #include <linux/completion.h>
30 #include <linux/err.h>
31 #include <linux/kernel.h>
32 #include <linux/slab.h>
34 #include <linux/net.h>
35 #include <linux/kthread.h>
36 #include <linux/types.h>
37 #include <linux/debugfs.h>
38 #include <linux/blk-mq.h>
40 #include <linux/uaccess.h>
41 #include <asm/types.h>
43 #include <linux/nbd.h>
44 #include <linux/nbd-netlink.h>
45 #include <net/genetlink.h>
47 #define CREATE_TRACE_POINTS
48 #include <trace/events/nbd.h>
50 static DEFINE_IDR(nbd_index_idr
);
51 static DEFINE_MUTEX(nbd_index_mutex
);
52 static int nbd_total_devices
= 0;
57 struct request
*pending
;
64 struct recv_thread_args
{
65 struct work_struct work
;
66 struct nbd_device
*nbd
;
70 struct link_dead_args
{
71 struct work_struct work
;
75 #define NBD_RT_TIMEDOUT 0
76 #define NBD_RT_DISCONNECT_REQUESTED 1
77 #define NBD_RT_DISCONNECTED 2
78 #define NBD_RT_HAS_PID_FILE 3
79 #define NBD_RT_HAS_CONFIG_REF 4
80 #define NBD_RT_BOUND 5
81 #define NBD_RT_DESTROY_ON_DISCONNECT 6
82 #define NBD_RT_DISCONNECT_ON_CLOSE 7
84 #define NBD_DESTROY_ON_DISCONNECT 0
85 #define NBD_DISCONNECT_REQUESTED 1
89 unsigned long runtime_flags
;
90 u64 dead_conn_timeout
;
92 struct nbd_sock
**socks
;
94 atomic_t live_connections
;
95 wait_queue_head_t conn_wait
;
97 atomic_t recv_threads
;
98 wait_queue_head_t recv_wq
;
101 #if IS_ENABLED(CONFIG_DEBUG_FS)
102 struct dentry
*dbg_dir
;
107 struct blk_mq_tag_set tag_set
;
110 refcount_t config_refs
;
112 struct nbd_config
*config
;
113 struct mutex config_lock
;
114 struct gendisk
*disk
;
115 struct workqueue_struct
*recv_workq
;
117 struct list_head list
;
118 struct task_struct
*task_recv
;
119 struct task_struct
*task_setup
;
121 struct completion
*destroy_complete
;
125 #define NBD_CMD_REQUEUED 1
128 struct nbd_device
*nbd
;
138 #if IS_ENABLED(CONFIG_DEBUG_FS)
139 static struct dentry
*nbd_dbg_dir
;
142 #define nbd_name(nbd) ((nbd)->disk->disk_name)
144 #define NBD_MAGIC 0x68797548
146 #define NBD_DEF_BLKSIZE 1024
148 static unsigned int nbds_max
= 16;
149 static int max_part
= 16;
150 static int part_shift
;
152 static int nbd_dev_dbg_init(struct nbd_device
*nbd
);
153 static void nbd_dev_dbg_close(struct nbd_device
*nbd
);
154 static void nbd_config_put(struct nbd_device
*nbd
);
155 static void nbd_connect_reply(struct genl_info
*info
, int index
);
156 static int nbd_genl_status(struct sk_buff
*skb
, struct genl_info
*info
);
157 static void nbd_dead_link_work(struct work_struct
*work
);
158 static void nbd_disconnect_and_put(struct nbd_device
*nbd
);
160 static inline struct device
*nbd_to_dev(struct nbd_device
*nbd
)
162 return disk_to_dev(nbd
->disk
);
165 static void nbd_requeue_cmd(struct nbd_cmd
*cmd
)
167 struct request
*req
= blk_mq_rq_from_pdu(cmd
);
169 if (!test_and_set_bit(NBD_CMD_REQUEUED
, &cmd
->flags
))
170 blk_mq_requeue_request(req
, true);
173 #define NBD_COOKIE_BITS 32
175 static u64
nbd_cmd_handle(struct nbd_cmd
*cmd
)
177 struct request
*req
= blk_mq_rq_from_pdu(cmd
);
178 u32 tag
= blk_mq_unique_tag(req
);
179 u64 cookie
= cmd
->cmd_cookie
;
181 return (cookie
<< NBD_COOKIE_BITS
) | tag
;
184 static u32
nbd_handle_to_tag(u64 handle
)
189 static u32
nbd_handle_to_cookie(u64 handle
)
191 return (u32
)(handle
>> NBD_COOKIE_BITS
);
194 static const char *nbdcmd_to_ascii(int cmd
)
197 case NBD_CMD_READ
: return "read";
198 case NBD_CMD_WRITE
: return "write";
199 case NBD_CMD_DISC
: return "disconnect";
200 case NBD_CMD_FLUSH
: return "flush";
201 case NBD_CMD_TRIM
: return "trim/discard";
206 static ssize_t
pid_show(struct device
*dev
,
207 struct device_attribute
*attr
, char *buf
)
209 struct gendisk
*disk
= dev_to_disk(dev
);
210 struct nbd_device
*nbd
= (struct nbd_device
*)disk
->private_data
;
212 return sprintf(buf
, "%d\n", task_pid_nr(nbd
->task_recv
));
215 static const struct device_attribute pid_attr
= {
216 .attr
= { .name
= "pid", .mode
= 0444},
220 static void nbd_dev_remove(struct nbd_device
*nbd
)
222 struct gendisk
*disk
= nbd
->disk
;
223 struct request_queue
*q
;
228 blk_cleanup_queue(q
);
229 blk_mq_free_tag_set(&nbd
->tag_set
);
230 disk
->private_data
= NULL
;
235 * Place this in the last just before the nbd is freed to
236 * make sure that the disk and the related kobject are also
237 * totally removed to avoid duplicate creation of the same
240 if (test_bit(NBD_DESTROY_ON_DISCONNECT
, &nbd
->flags
) && nbd
->destroy_complete
)
241 complete(nbd
->destroy_complete
);
246 static void nbd_put(struct nbd_device
*nbd
)
248 if (refcount_dec_and_mutex_lock(&nbd
->refs
,
250 idr_remove(&nbd_index_idr
, nbd
->index
);
252 mutex_unlock(&nbd_index_mutex
);
256 static int nbd_disconnected(struct nbd_config
*config
)
258 return test_bit(NBD_RT_DISCONNECTED
, &config
->runtime_flags
) ||
259 test_bit(NBD_RT_DISCONNECT_REQUESTED
, &config
->runtime_flags
);
262 static void nbd_mark_nsock_dead(struct nbd_device
*nbd
, struct nbd_sock
*nsock
,
265 if (!nsock
->dead
&& notify
&& !nbd_disconnected(nbd
->config
)) {
266 struct link_dead_args
*args
;
267 args
= kmalloc(sizeof(struct link_dead_args
), GFP_NOIO
);
269 INIT_WORK(&args
->work
, nbd_dead_link_work
);
270 args
->index
= nbd
->index
;
271 queue_work(system_wq
, &args
->work
);
275 kernel_sock_shutdown(nsock
->sock
, SHUT_RDWR
);
276 if (atomic_dec_return(&nbd
->config
->live_connections
) == 0) {
277 if (test_and_clear_bit(NBD_RT_DISCONNECT_REQUESTED
,
278 &nbd
->config
->runtime_flags
)) {
279 set_bit(NBD_RT_DISCONNECTED
,
280 &nbd
->config
->runtime_flags
);
281 dev_info(nbd_to_dev(nbd
),
282 "Disconnected due to user request.\n");
287 nsock
->pending
= NULL
;
291 static void nbd_size_clear(struct nbd_device
*nbd
)
293 if (nbd
->config
->bytesize
) {
294 set_capacity(nbd
->disk
, 0);
295 kobject_uevent(&nbd_to_dev(nbd
)->kobj
, KOBJ_CHANGE
);
299 static void nbd_size_update(struct nbd_device
*nbd
)
301 struct nbd_config
*config
= nbd
->config
;
302 struct block_device
*bdev
= bdget_disk(nbd
->disk
, 0);
304 if (config
->flags
& NBD_FLAG_SEND_TRIM
) {
305 nbd
->disk
->queue
->limits
.discard_granularity
= config
->blksize
;
306 nbd
->disk
->queue
->limits
.discard_alignment
= config
->blksize
;
307 blk_queue_max_discard_sectors(nbd
->disk
->queue
, UINT_MAX
);
309 blk_queue_logical_block_size(nbd
->disk
->queue
, config
->blksize
);
310 blk_queue_physical_block_size(nbd
->disk
->queue
, config
->blksize
);
311 set_capacity(nbd
->disk
, config
->bytesize
>> 9);
314 bd_set_size(bdev
, config
->bytesize
);
315 set_blocksize(bdev
, config
->blksize
);
317 bdev
->bd_invalidated
= 1;
320 kobject_uevent(&nbd_to_dev(nbd
)->kobj
, KOBJ_CHANGE
);
323 static void nbd_size_set(struct nbd_device
*nbd
, loff_t blocksize
,
326 struct nbd_config
*config
= nbd
->config
;
327 config
->blksize
= blocksize
;
328 config
->bytesize
= blocksize
* nr_blocks
;
329 if (nbd
->task_recv
!= NULL
)
330 nbd_size_update(nbd
);
333 static void nbd_complete_rq(struct request
*req
)
335 struct nbd_cmd
*cmd
= blk_mq_rq_to_pdu(req
);
337 dev_dbg(nbd_to_dev(cmd
->nbd
), "request %p: %s\n", req
,
338 cmd
->status
? "failed" : "done");
340 blk_mq_end_request(req
, cmd
->status
);
344 * Forcibly shutdown the socket causing all listeners to error
346 static void sock_shutdown(struct nbd_device
*nbd
)
348 struct nbd_config
*config
= nbd
->config
;
351 if (config
->num_connections
== 0)
353 if (test_and_set_bit(NBD_RT_DISCONNECTED
, &config
->runtime_flags
))
356 for (i
= 0; i
< config
->num_connections
; i
++) {
357 struct nbd_sock
*nsock
= config
->socks
[i
];
358 mutex_lock(&nsock
->tx_lock
);
359 nbd_mark_nsock_dead(nbd
, nsock
, 0);
360 mutex_unlock(&nsock
->tx_lock
);
362 dev_warn(disk_to_dev(nbd
->disk
), "shutting down sockets\n");
365 static u32
req_to_nbd_cmd_type(struct request
*req
)
367 switch (req_op(req
)) {
371 return NBD_CMD_FLUSH
;
373 return NBD_CMD_WRITE
;
381 static enum blk_eh_timer_return
nbd_xmit_timeout(struct request
*req
,
384 struct nbd_cmd
*cmd
= blk_mq_rq_to_pdu(req
);
385 struct nbd_device
*nbd
= cmd
->nbd
;
386 struct nbd_config
*config
;
388 if (!mutex_trylock(&cmd
->lock
))
389 return BLK_EH_RESET_TIMER
;
391 if (!refcount_inc_not_zero(&nbd
->config_refs
)) {
392 cmd
->status
= BLK_STS_TIMEOUT
;
393 mutex_unlock(&cmd
->lock
);
396 config
= nbd
->config
;
398 if (config
->num_connections
> 1) {
399 dev_err_ratelimited(nbd_to_dev(nbd
),
400 "Connection timed out, retrying (%d/%d alive)\n",
401 atomic_read(&config
->live_connections
),
402 config
->num_connections
);
404 * Hooray we have more connections, requeue this IO, the submit
405 * path will put it on a real connection.
407 if (config
->socks
&& config
->num_connections
> 1) {
408 if (cmd
->index
< config
->num_connections
) {
409 struct nbd_sock
*nsock
=
410 config
->socks
[cmd
->index
];
411 mutex_lock(&nsock
->tx_lock
);
412 /* We can have multiple outstanding requests, so
413 * we don't want to mark the nsock dead if we've
414 * already reconnected with a new socket, so
415 * only mark it dead if its the same socket we
418 if (cmd
->cookie
== nsock
->cookie
)
419 nbd_mark_nsock_dead(nbd
, nsock
, 1);
420 mutex_unlock(&nsock
->tx_lock
);
422 mutex_unlock(&cmd
->lock
);
423 nbd_requeue_cmd(cmd
);
429 if (!nbd
->tag_set
.timeout
) {
431 * Userspace sets timeout=0 to disable socket disconnection,
432 * so just warn and reset the timer.
435 dev_info(nbd_to_dev(nbd
), "Possible stuck request %p: control (%s@%llu,%uB). Runtime %u seconds\n",
436 req
, nbdcmd_to_ascii(req_to_nbd_cmd_type(req
)),
437 (unsigned long long)blk_rq_pos(req
) << 9,
438 blk_rq_bytes(req
), (req
->timeout
/ HZ
) * cmd
->retries
);
440 mutex_unlock(&cmd
->lock
);
442 return BLK_EH_RESET_TIMER
;
445 dev_err_ratelimited(nbd_to_dev(nbd
), "Connection timed out\n");
446 set_bit(NBD_RT_TIMEDOUT
, &config
->runtime_flags
);
447 cmd
->status
= BLK_STS_IOERR
;
448 mutex_unlock(&cmd
->lock
);
452 blk_mq_complete_request(req
);
457 * Send or receive packet.
459 static int sock_xmit(struct nbd_device
*nbd
, int index
, int send
,
460 struct iov_iter
*iter
, int msg_flags
, int *sent
)
462 struct nbd_config
*config
= nbd
->config
;
463 struct socket
*sock
= config
->socks
[index
]->sock
;
466 unsigned int noreclaim_flag
;
468 if (unlikely(!sock
)) {
469 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
470 "Attempted %s on closed socket in sock_xmit\n",
471 (send
? "send" : "recv"));
475 msg
.msg_iter
= *iter
;
477 noreclaim_flag
= memalloc_noreclaim_save();
479 sock
->sk
->sk_allocation
= GFP_NOIO
| __GFP_MEMALLOC
;
482 msg
.msg_control
= NULL
;
483 msg
.msg_controllen
= 0;
484 msg
.msg_flags
= msg_flags
| MSG_NOSIGNAL
;
487 result
= sock_sendmsg(sock
, &msg
);
489 result
= sock_recvmsg(sock
, &msg
, msg
.msg_flags
);
493 result
= -EPIPE
; /* short read */
498 } while (msg_data_left(&msg
));
500 memalloc_noreclaim_restore(noreclaim_flag
);
506 * Different settings for sk->sk_sndtimeo can result in different return values
507 * if there is a signal pending when we enter sendmsg, because reasons?
509 static inline int was_interrupted(int result
)
511 return result
== -ERESTARTSYS
|| result
== -EINTR
;
514 /* always call with the tx_lock held */
515 static int nbd_send_cmd(struct nbd_device
*nbd
, struct nbd_cmd
*cmd
, int index
)
517 struct request
*req
= blk_mq_rq_from_pdu(cmd
);
518 struct nbd_config
*config
= nbd
->config
;
519 struct nbd_sock
*nsock
= config
->socks
[index
];
521 struct nbd_request request
= {.magic
= htonl(NBD_REQUEST_MAGIC
)};
522 struct kvec iov
= {.iov_base
= &request
, .iov_len
= sizeof(request
)};
523 struct iov_iter from
;
524 unsigned long size
= blk_rq_bytes(req
);
528 u32 nbd_cmd_flags
= 0;
529 int sent
= nsock
->sent
, skip
= 0;
531 iov_iter_kvec(&from
, WRITE
, &iov
, 1, sizeof(request
));
533 type
= req_to_nbd_cmd_type(req
);
537 if (rq_data_dir(req
) == WRITE
&&
538 (config
->flags
& NBD_FLAG_READ_ONLY
)) {
539 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
540 "Write on read-only\n");
544 if (req
->cmd_flags
& REQ_FUA
)
545 nbd_cmd_flags
|= NBD_CMD_FLAG_FUA
;
547 /* We did a partial send previously, and we at least sent the whole
548 * request struct, so just go and send the rest of the pages in the
552 if (sent
>= sizeof(request
)) {
553 skip
= sent
- sizeof(request
);
555 /* initialize handle for tracing purposes */
556 handle
= nbd_cmd_handle(cmd
);
560 iov_iter_advance(&from
, sent
);
565 cmd
->cookie
= nsock
->cookie
;
567 request
.type
= htonl(type
| nbd_cmd_flags
);
568 if (type
!= NBD_CMD_FLUSH
) {
569 request
.from
= cpu_to_be64((u64
)blk_rq_pos(req
) << 9);
570 request
.len
= htonl(size
);
572 handle
= nbd_cmd_handle(cmd
);
573 memcpy(request
.handle
, &handle
, sizeof(handle
));
575 trace_nbd_send_request(&request
, nbd
->index
, blk_mq_rq_from_pdu(cmd
));
577 dev_dbg(nbd_to_dev(nbd
), "request %p: sending control (%s@%llu,%uB)\n",
578 req
, nbdcmd_to_ascii(type
),
579 (unsigned long long)blk_rq_pos(req
) << 9, blk_rq_bytes(req
));
580 result
= sock_xmit(nbd
, index
, 1, &from
,
581 (type
== NBD_CMD_WRITE
) ? MSG_MORE
: 0, &sent
);
582 trace_nbd_header_sent(req
, handle
);
584 if (was_interrupted(result
)) {
585 /* If we havne't sent anything we can just return BUSY,
586 * however if we have sent something we need to make
587 * sure we only allow this req to be sent until we are
591 nsock
->pending
= req
;
594 set_bit(NBD_CMD_REQUEUED
, &cmd
->flags
);
595 return BLK_STS_RESOURCE
;
597 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
598 "Send control failed (result %d)\n", result
);
602 if (type
!= NBD_CMD_WRITE
)
607 struct bio
*next
= bio
->bi_next
;
608 struct bvec_iter iter
;
611 bio_for_each_segment(bvec
, bio
, iter
) {
612 bool is_last
= !next
&& bio_iter_last(bvec
, iter
);
613 int flags
= is_last
? 0 : MSG_MORE
;
615 dev_dbg(nbd_to_dev(nbd
), "request %p: sending %d bytes data\n",
617 iov_iter_bvec(&from
, WRITE
, &bvec
, 1, bvec
.bv_len
);
619 if (skip
>= iov_iter_count(&from
)) {
620 skip
-= iov_iter_count(&from
);
623 iov_iter_advance(&from
, skip
);
626 result
= sock_xmit(nbd
, index
, 1, &from
, flags
, &sent
);
628 if (was_interrupted(result
)) {
629 /* We've already sent the header, we
630 * have no choice but to set pending and
633 nsock
->pending
= req
;
635 set_bit(NBD_CMD_REQUEUED
, &cmd
->flags
);
636 return BLK_STS_RESOURCE
;
638 dev_err(disk_to_dev(nbd
->disk
),
639 "Send data failed (result %d)\n",
644 * The completion might already have come in,
645 * so break for the last one instead of letting
646 * the iterator do it. This prevents use-after-free
655 trace_nbd_payload_sent(req
, handle
);
656 nsock
->pending
= NULL
;
661 /* NULL returned = something went wrong, inform userspace */
662 static struct nbd_cmd
*nbd_read_stat(struct nbd_device
*nbd
, int index
)
664 struct nbd_config
*config
= nbd
->config
;
666 struct nbd_reply reply
;
668 struct request
*req
= NULL
;
672 struct kvec iov
= {.iov_base
= &reply
, .iov_len
= sizeof(reply
)};
677 iov_iter_kvec(&to
, READ
, &iov
, 1, sizeof(reply
));
678 result
= sock_xmit(nbd
, index
, 0, &to
, MSG_WAITALL
, NULL
);
680 if (!nbd_disconnected(config
))
681 dev_err(disk_to_dev(nbd
->disk
),
682 "Receive control failed (result %d)\n", result
);
683 return ERR_PTR(result
);
686 if (ntohl(reply
.magic
) != NBD_REPLY_MAGIC
) {
687 dev_err(disk_to_dev(nbd
->disk
), "Wrong magic (0x%lx)\n",
688 (unsigned long)ntohl(reply
.magic
));
689 return ERR_PTR(-EPROTO
);
692 memcpy(&handle
, reply
.handle
, sizeof(handle
));
693 tag
= nbd_handle_to_tag(handle
);
694 hwq
= blk_mq_unique_tag_to_hwq(tag
);
695 if (hwq
< nbd
->tag_set
.nr_hw_queues
)
696 req
= blk_mq_tag_to_rq(nbd
->tag_set
.tags
[hwq
],
697 blk_mq_unique_tag_to_tag(tag
));
698 if (!req
|| !blk_mq_request_started(req
)) {
699 dev_err(disk_to_dev(nbd
->disk
), "Unexpected reply (%d) %p\n",
701 return ERR_PTR(-ENOENT
);
703 trace_nbd_header_received(req
, handle
);
704 cmd
= blk_mq_rq_to_pdu(req
);
706 mutex_lock(&cmd
->lock
);
707 if (cmd
->cmd_cookie
!= nbd_handle_to_cookie(handle
)) {
708 dev_err(disk_to_dev(nbd
->disk
), "Double reply on req %p, cmd_cookie %u, handle cookie %u\n",
709 req
, cmd
->cmd_cookie
, nbd_handle_to_cookie(handle
));
713 if (cmd
->status
!= BLK_STS_OK
) {
714 dev_err(disk_to_dev(nbd
->disk
), "Command already handled %p\n",
719 if (test_bit(NBD_CMD_REQUEUED
, &cmd
->flags
)) {
720 dev_err(disk_to_dev(nbd
->disk
), "Raced with timeout on req %p\n",
725 if (ntohl(reply
.error
)) {
726 dev_err(disk_to_dev(nbd
->disk
), "Other side returned error (%d)\n",
728 cmd
->status
= BLK_STS_IOERR
;
732 dev_dbg(nbd_to_dev(nbd
), "request %p: got reply\n", req
);
733 if (rq_data_dir(req
) != WRITE
) {
734 struct req_iterator iter
;
737 rq_for_each_segment(bvec
, req
, iter
) {
738 iov_iter_bvec(&to
, READ
, &bvec
, 1, bvec
.bv_len
);
739 result
= sock_xmit(nbd
, index
, 0, &to
, MSG_WAITALL
, NULL
);
741 dev_err(disk_to_dev(nbd
->disk
), "Receive data failed (result %d)\n",
744 * If we've disconnected or we only have 1
745 * connection then we need to make sure we
746 * complete this request, otherwise error out
747 * and let the timeout stuff handle resubmitting
748 * this request onto another connection.
750 if (nbd_disconnected(config
) ||
751 config
->num_connections
<= 1) {
752 cmd
->status
= BLK_STS_IOERR
;
758 dev_dbg(nbd_to_dev(nbd
), "request %p: got %d bytes data\n",
763 trace_nbd_payload_received(req
, handle
);
764 mutex_unlock(&cmd
->lock
);
765 return ret
? ERR_PTR(ret
) : cmd
;
768 static void recv_work(struct work_struct
*work
)
770 struct recv_thread_args
*args
= container_of(work
,
771 struct recv_thread_args
,
773 struct nbd_device
*nbd
= args
->nbd
;
774 struct nbd_config
*config
= nbd
->config
;
778 cmd
= nbd_read_stat(nbd
, args
->index
);
780 struct nbd_sock
*nsock
= config
->socks
[args
->index
];
782 mutex_lock(&nsock
->tx_lock
);
783 nbd_mark_nsock_dead(nbd
, nsock
, 1);
784 mutex_unlock(&nsock
->tx_lock
);
788 blk_mq_complete_request(blk_mq_rq_from_pdu(cmd
));
790 atomic_dec(&config
->recv_threads
);
791 wake_up(&config
->recv_wq
);
796 static bool nbd_clear_req(struct request
*req
, void *data
, bool reserved
)
798 struct nbd_cmd
*cmd
= blk_mq_rq_to_pdu(req
);
800 mutex_lock(&cmd
->lock
);
801 cmd
->status
= BLK_STS_IOERR
;
802 mutex_unlock(&cmd
->lock
);
804 blk_mq_complete_request(req
);
808 static void nbd_clear_que(struct nbd_device
*nbd
)
810 blk_mq_quiesce_queue(nbd
->disk
->queue
);
811 blk_mq_tagset_busy_iter(&nbd
->tag_set
, nbd_clear_req
, NULL
);
812 blk_mq_unquiesce_queue(nbd
->disk
->queue
);
813 dev_dbg(disk_to_dev(nbd
->disk
), "queue cleared\n");
816 static int find_fallback(struct nbd_device
*nbd
, int index
)
818 struct nbd_config
*config
= nbd
->config
;
820 struct nbd_sock
*nsock
= config
->socks
[index
];
821 int fallback
= nsock
->fallback_index
;
823 if (test_bit(NBD_RT_DISCONNECTED
, &config
->runtime_flags
))
826 if (config
->num_connections
<= 1) {
827 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
828 "Attempted send on invalid socket\n");
832 if (fallback
>= 0 && fallback
< config
->num_connections
&&
833 !config
->socks
[fallback
]->dead
)
836 if (nsock
->fallback_index
< 0 ||
837 nsock
->fallback_index
>= config
->num_connections
||
838 config
->socks
[nsock
->fallback_index
]->dead
) {
840 for (i
= 0; i
< config
->num_connections
; i
++) {
843 if (!config
->socks
[i
]->dead
) {
848 nsock
->fallback_index
= new_index
;
850 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
851 "Dead connection, failed to find a fallback\n");
855 new_index
= nsock
->fallback_index
;
859 static int wait_for_reconnect(struct nbd_device
*nbd
)
861 struct nbd_config
*config
= nbd
->config
;
862 if (!config
->dead_conn_timeout
)
864 if (test_bit(NBD_RT_DISCONNECTED
, &config
->runtime_flags
))
866 return wait_event_timeout(config
->conn_wait
,
867 atomic_read(&config
->live_connections
) > 0,
868 config
->dead_conn_timeout
) > 0;
871 static int nbd_handle_cmd(struct nbd_cmd
*cmd
, int index
)
873 struct request
*req
= blk_mq_rq_from_pdu(cmd
);
874 struct nbd_device
*nbd
= cmd
->nbd
;
875 struct nbd_config
*config
;
876 struct nbd_sock
*nsock
;
879 if (!refcount_inc_not_zero(&nbd
->config_refs
)) {
880 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
881 "Socks array is empty\n");
882 blk_mq_start_request(req
);
885 config
= nbd
->config
;
887 if (index
>= config
->num_connections
) {
888 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
889 "Attempted send on invalid socket\n");
891 blk_mq_start_request(req
);
894 cmd
->status
= BLK_STS_OK
;
896 nsock
= config
->socks
[index
];
897 mutex_lock(&nsock
->tx_lock
);
899 int old_index
= index
;
900 index
= find_fallback(nbd
, index
);
901 mutex_unlock(&nsock
->tx_lock
);
903 if (wait_for_reconnect(nbd
)) {
907 /* All the sockets should already be down at this point,
908 * we just want to make sure that DISCONNECTED is set so
909 * any requests that come in that were queue'ed waiting
910 * for the reconnect timer don't trigger the timer again
911 * and instead just error out.
915 blk_mq_start_request(req
);
921 /* Handle the case that we have a pending request that was partially
922 * transmitted that _has_ to be serviced first. We need to call requeue
923 * here so that it gets put _after_ the request that is already on the
926 blk_mq_start_request(req
);
927 if (unlikely(nsock
->pending
&& nsock
->pending
!= req
)) {
928 nbd_requeue_cmd(cmd
);
933 * Some failures are related to the link going down, so anything that
934 * returns EAGAIN can be retried on a different socket.
936 ret
= nbd_send_cmd(nbd
, cmd
, index
);
937 if (ret
== -EAGAIN
) {
938 dev_err_ratelimited(disk_to_dev(nbd
->disk
),
939 "Request send failed, requeueing\n");
940 nbd_mark_nsock_dead(nbd
, nsock
, 1);
941 nbd_requeue_cmd(cmd
);
945 mutex_unlock(&nsock
->tx_lock
);
950 static blk_status_t
nbd_queue_rq(struct blk_mq_hw_ctx
*hctx
,
951 const struct blk_mq_queue_data
*bd
)
953 struct nbd_cmd
*cmd
= blk_mq_rq_to_pdu(bd
->rq
);
957 * Since we look at the bio's to send the request over the network we
958 * need to make sure the completion work doesn't mark this request done
959 * before we are done doing our send. This keeps us from dereferencing
960 * freed data if we have particularly fast completions (ie we get the
961 * completion before we exit sock_xmit on the last bvec) or in the case
962 * that the server is misbehaving (or there was an error) before we're
963 * done sending everything over the wire.
965 mutex_lock(&cmd
->lock
);
966 clear_bit(NBD_CMD_REQUEUED
, &cmd
->flags
);
968 /* We can be called directly from the user space process, which means we
969 * could possibly have signals pending so our sendmsg will fail. In
970 * this case we need to return that we are busy, otherwise error out as
973 ret
= nbd_handle_cmd(cmd
, hctx
->queue_num
);
978 mutex_unlock(&cmd
->lock
);
983 static struct socket
*nbd_get_socket(struct nbd_device
*nbd
, unsigned long fd
,
989 sock
= sockfd_lookup(fd
, err
);
993 if (sock
->ops
->shutdown
== sock_no_shutdown
) {
994 dev_err(disk_to_dev(nbd
->disk
), "Unsupported socket: shutdown callout must be supported.\n");
1003 static int nbd_add_socket(struct nbd_device
*nbd
, unsigned long arg
,
1006 struct nbd_config
*config
= nbd
->config
;
1007 struct socket
*sock
;
1008 struct nbd_sock
**socks
;
1009 struct nbd_sock
*nsock
;
1012 sock
= nbd_get_socket(nbd
, arg
, &err
);
1016 if (!netlink
&& !nbd
->task_setup
&&
1017 !test_bit(NBD_RT_BOUND
, &config
->runtime_flags
))
1018 nbd
->task_setup
= current
;
1021 (nbd
->task_setup
!= current
||
1022 test_bit(NBD_RT_BOUND
, &config
->runtime_flags
))) {
1023 dev_err(disk_to_dev(nbd
->disk
),
1024 "Device being setup by another task");
1029 nsock
= kzalloc(sizeof(*nsock
), GFP_KERNEL
);
1035 socks
= krealloc(config
->socks
, (config
->num_connections
+ 1) *
1036 sizeof(struct nbd_sock
*), GFP_KERNEL
);
1043 config
->socks
= socks
;
1045 nsock
->fallback_index
= -1;
1046 nsock
->dead
= false;
1047 mutex_init(&nsock
->tx_lock
);
1049 nsock
->pending
= NULL
;
1052 socks
[config
->num_connections
++] = nsock
;
1053 atomic_inc(&config
->live_connections
);
1062 static int nbd_reconnect_socket(struct nbd_device
*nbd
, unsigned long arg
)
1064 struct nbd_config
*config
= nbd
->config
;
1065 struct socket
*sock
, *old
;
1066 struct recv_thread_args
*args
;
1070 sock
= nbd_get_socket(nbd
, arg
, &err
);
1074 args
= kzalloc(sizeof(*args
), GFP_KERNEL
);
1080 for (i
= 0; i
< config
->num_connections
; i
++) {
1081 struct nbd_sock
*nsock
= config
->socks
[i
];
1086 mutex_lock(&nsock
->tx_lock
);
1088 mutex_unlock(&nsock
->tx_lock
);
1091 sk_set_memalloc(sock
->sk
);
1092 if (nbd
->tag_set
.timeout
)
1093 sock
->sk
->sk_sndtimeo
= nbd
->tag_set
.timeout
;
1094 atomic_inc(&config
->recv_threads
);
1095 refcount_inc(&nbd
->config_refs
);
1097 nsock
->fallback_index
= -1;
1099 nsock
->dead
= false;
1100 INIT_WORK(&args
->work
, recv_work
);
1104 mutex_unlock(&nsock
->tx_lock
);
1107 clear_bit(NBD_RT_DISCONNECTED
, &config
->runtime_flags
);
1109 /* We take the tx_mutex in an error path in the recv_work, so we
1110 * need to queue_work outside of the tx_mutex.
1112 queue_work(nbd
->recv_workq
, &args
->work
);
1114 atomic_inc(&config
->live_connections
);
1115 wake_up(&config
->conn_wait
);
1123 static void nbd_bdev_reset(struct block_device
*bdev
)
1125 if (bdev
->bd_openers
> 1)
1127 bd_set_size(bdev
, 0);
1130 static void nbd_parse_flags(struct nbd_device
*nbd
)
1132 struct nbd_config
*config
= nbd
->config
;
1133 if (config
->flags
& NBD_FLAG_READ_ONLY
)
1134 set_disk_ro(nbd
->disk
, true);
1136 set_disk_ro(nbd
->disk
, false);
1137 if (config
->flags
& NBD_FLAG_SEND_TRIM
)
1138 blk_queue_flag_set(QUEUE_FLAG_DISCARD
, nbd
->disk
->queue
);
1139 if (config
->flags
& NBD_FLAG_SEND_FLUSH
) {
1140 if (config
->flags
& NBD_FLAG_SEND_FUA
)
1141 blk_queue_write_cache(nbd
->disk
->queue
, true, true);
1143 blk_queue_write_cache(nbd
->disk
->queue
, true, false);
1146 blk_queue_write_cache(nbd
->disk
->queue
, false, false);
1149 static void send_disconnects(struct nbd_device
*nbd
)
1151 struct nbd_config
*config
= nbd
->config
;
1152 struct nbd_request request
= {
1153 .magic
= htonl(NBD_REQUEST_MAGIC
),
1154 .type
= htonl(NBD_CMD_DISC
),
1156 struct kvec iov
= {.iov_base
= &request
, .iov_len
= sizeof(request
)};
1157 struct iov_iter from
;
1160 for (i
= 0; i
< config
->num_connections
; i
++) {
1161 struct nbd_sock
*nsock
= config
->socks
[i
];
1163 iov_iter_kvec(&from
, WRITE
, &iov
, 1, sizeof(request
));
1164 mutex_lock(&nsock
->tx_lock
);
1165 ret
= sock_xmit(nbd
, i
, 1, &from
, 0, NULL
);
1167 dev_err(disk_to_dev(nbd
->disk
),
1168 "Send disconnect failed %d\n", ret
);
1169 mutex_unlock(&nsock
->tx_lock
);
1173 static int nbd_disconnect(struct nbd_device
*nbd
)
1175 struct nbd_config
*config
= nbd
->config
;
1177 dev_info(disk_to_dev(nbd
->disk
), "NBD_DISCONNECT\n");
1178 set_bit(NBD_RT_DISCONNECT_REQUESTED
, &config
->runtime_flags
);
1179 set_bit(NBD_DISCONNECT_REQUESTED
, &nbd
->flags
);
1180 send_disconnects(nbd
);
1184 static void nbd_clear_sock(struct nbd_device
*nbd
)
1188 nbd
->task_setup
= NULL
;
1191 static void nbd_config_put(struct nbd_device
*nbd
)
1193 if (refcount_dec_and_mutex_lock(&nbd
->config_refs
,
1194 &nbd
->config_lock
)) {
1195 struct nbd_config
*config
= nbd
->config
;
1196 nbd_dev_dbg_close(nbd
);
1197 nbd_size_clear(nbd
);
1198 if (test_and_clear_bit(NBD_RT_HAS_PID_FILE
,
1199 &config
->runtime_flags
))
1200 device_remove_file(disk_to_dev(nbd
->disk
), &pid_attr
);
1201 nbd
->task_recv
= NULL
;
1202 nbd_clear_sock(nbd
);
1203 if (config
->num_connections
) {
1205 for (i
= 0; i
< config
->num_connections
; i
++) {
1206 sockfd_put(config
->socks
[i
]->sock
);
1207 kfree(config
->socks
[i
]);
1209 kfree(config
->socks
);
1214 if (nbd
->recv_workq
)
1215 destroy_workqueue(nbd
->recv_workq
);
1216 nbd
->recv_workq
= NULL
;
1218 nbd
->tag_set
.timeout
= 0;
1219 nbd
->disk
->queue
->limits
.discard_granularity
= 0;
1220 nbd
->disk
->queue
->limits
.discard_alignment
= 0;
1221 blk_queue_max_discard_sectors(nbd
->disk
->queue
, UINT_MAX
);
1222 blk_queue_flag_clear(QUEUE_FLAG_DISCARD
, nbd
->disk
->queue
);
1224 mutex_unlock(&nbd
->config_lock
);
1226 module_put(THIS_MODULE
);
1230 static int nbd_start_device(struct nbd_device
*nbd
)
1232 struct nbd_config
*config
= nbd
->config
;
1233 int num_connections
= config
->num_connections
;
1240 if (num_connections
> 1 &&
1241 !(config
->flags
& NBD_FLAG_CAN_MULTI_CONN
)) {
1242 dev_err(disk_to_dev(nbd
->disk
), "server does not support multiple connections per device.\n");
1246 nbd
->recv_workq
= alloc_workqueue("knbd%d-recv",
1247 WQ_MEM_RECLAIM
| WQ_HIGHPRI
|
1248 WQ_UNBOUND
, 0, nbd
->index
);
1249 if (!nbd
->recv_workq
) {
1250 dev_err(disk_to_dev(nbd
->disk
), "Could not allocate knbd recv work queue.\n");
1254 blk_mq_update_nr_hw_queues(&nbd
->tag_set
, config
->num_connections
);
1255 nbd
->task_recv
= current
;
1257 nbd_parse_flags(nbd
);
1259 error
= device_create_file(disk_to_dev(nbd
->disk
), &pid_attr
);
1261 dev_err(disk_to_dev(nbd
->disk
), "device_create_file failed!\n");
1264 set_bit(NBD_RT_HAS_PID_FILE
, &config
->runtime_flags
);
1266 nbd_dev_dbg_init(nbd
);
1267 for (i
= 0; i
< num_connections
; i
++) {
1268 struct recv_thread_args
*args
;
1270 args
= kzalloc(sizeof(*args
), GFP_KERNEL
);
1274 * If num_connections is m (2 < m),
1275 * and NO.1 ~ NO.n(1 < n < m) kzallocs are successful.
1276 * But NO.(n + 1) failed. We still have n recv threads.
1277 * So, add flush_workqueue here to prevent recv threads
1278 * dropping the last config_refs and trying to destroy
1279 * the workqueue from inside the workqueue.
1282 flush_workqueue(nbd
->recv_workq
);
1285 sk_set_memalloc(config
->socks
[i
]->sock
->sk
);
1286 if (nbd
->tag_set
.timeout
)
1287 config
->socks
[i
]->sock
->sk
->sk_sndtimeo
=
1288 nbd
->tag_set
.timeout
;
1289 atomic_inc(&config
->recv_threads
);
1290 refcount_inc(&nbd
->config_refs
);
1291 INIT_WORK(&args
->work
, recv_work
);
1294 queue_work(nbd
->recv_workq
, &args
->work
);
1296 nbd_size_update(nbd
);
1300 static int nbd_start_device_ioctl(struct nbd_device
*nbd
, struct block_device
*bdev
)
1302 struct nbd_config
*config
= nbd
->config
;
1305 ret
= nbd_start_device(nbd
);
1310 bdev
->bd_invalidated
= 1;
1311 mutex_unlock(&nbd
->config_lock
);
1312 ret
= wait_event_interruptible(config
->recv_wq
,
1313 atomic_read(&config
->recv_threads
) == 0);
1316 flush_workqueue(nbd
->recv_workq
);
1318 mutex_lock(&nbd
->config_lock
);
1319 nbd_bdev_reset(bdev
);
1320 /* user requested, ignore socket errors */
1321 if (test_bit(NBD_RT_DISCONNECT_REQUESTED
, &config
->runtime_flags
))
1323 if (test_bit(NBD_RT_TIMEDOUT
, &config
->runtime_flags
))
1328 static void nbd_clear_sock_ioctl(struct nbd_device
*nbd
,
1329 struct block_device
*bdev
)
1332 __invalidate_device(bdev
, true);
1333 nbd_bdev_reset(bdev
);
1334 if (test_and_clear_bit(NBD_RT_HAS_CONFIG_REF
,
1335 &nbd
->config
->runtime_flags
))
1336 nbd_config_put(nbd
);
1339 static bool nbd_is_valid_blksize(unsigned long blksize
)
1341 if (!blksize
|| !is_power_of_2(blksize
) || blksize
< 512 ||
1342 blksize
> PAGE_SIZE
)
1347 static void nbd_set_cmd_timeout(struct nbd_device
*nbd
, u64 timeout
)
1349 nbd
->tag_set
.timeout
= timeout
* HZ
;
1351 blk_queue_rq_timeout(nbd
->disk
->queue
, timeout
* HZ
);
1353 blk_queue_rq_timeout(nbd
->disk
->queue
, 30 * HZ
);
1356 /* Must be called with config_lock held */
1357 static int __nbd_ioctl(struct block_device
*bdev
, struct nbd_device
*nbd
,
1358 unsigned int cmd
, unsigned long arg
)
1360 struct nbd_config
*config
= nbd
->config
;
1363 case NBD_DISCONNECT
:
1364 return nbd_disconnect(nbd
);
1365 case NBD_CLEAR_SOCK
:
1366 nbd_clear_sock_ioctl(nbd
, bdev
);
1369 return nbd_add_socket(nbd
, arg
, false);
1370 case NBD_SET_BLKSIZE
:
1372 arg
= NBD_DEF_BLKSIZE
;
1373 if (!nbd_is_valid_blksize(arg
))
1375 nbd_size_set(nbd
, arg
,
1376 div_s64(config
->bytesize
, arg
));
1379 nbd_size_set(nbd
, config
->blksize
,
1380 div_s64(arg
, config
->blksize
));
1382 case NBD_SET_SIZE_BLOCKS
:
1383 nbd_size_set(nbd
, config
->blksize
, arg
);
1385 case NBD_SET_TIMEOUT
:
1386 nbd_set_cmd_timeout(nbd
, arg
);
1390 config
->flags
= arg
;
1393 return nbd_start_device_ioctl(nbd
, bdev
);
1396 * This is for compatibility only. The queue is always cleared
1397 * by NBD_DO_IT or NBD_CLEAR_SOCK.
1400 case NBD_PRINT_DEBUG
:
1402 * For compatibility only, we no longer keep a list of
1403 * outstanding requests.
1410 static int nbd_ioctl(struct block_device
*bdev
, fmode_t mode
,
1411 unsigned int cmd
, unsigned long arg
)
1413 struct nbd_device
*nbd
= bdev
->bd_disk
->private_data
;
1414 struct nbd_config
*config
= nbd
->config
;
1415 int error
= -EINVAL
;
1417 if (!capable(CAP_SYS_ADMIN
))
1420 /* The block layer will pass back some non-nbd ioctls in case we have
1421 * special handling for them, but we don't so just return an error.
1423 if (_IOC_TYPE(cmd
) != 0xab)
1426 mutex_lock(&nbd
->config_lock
);
1428 /* Don't allow ioctl operations on a nbd device that was created with
1429 * netlink, unless it's DISCONNECT or CLEAR_SOCK, which are fine.
1431 if (!test_bit(NBD_RT_BOUND
, &config
->runtime_flags
) ||
1432 (cmd
== NBD_DISCONNECT
|| cmd
== NBD_CLEAR_SOCK
))
1433 error
= __nbd_ioctl(bdev
, nbd
, cmd
, arg
);
1435 dev_err(nbd_to_dev(nbd
), "Cannot use ioctl interface on a netlink controlled device.\n");
1436 mutex_unlock(&nbd
->config_lock
);
1440 static struct nbd_config
*nbd_alloc_config(void)
1442 struct nbd_config
*config
;
1444 config
= kzalloc(sizeof(struct nbd_config
), GFP_NOFS
);
1447 atomic_set(&config
->recv_threads
, 0);
1448 init_waitqueue_head(&config
->recv_wq
);
1449 init_waitqueue_head(&config
->conn_wait
);
1450 config
->blksize
= NBD_DEF_BLKSIZE
;
1451 atomic_set(&config
->live_connections
, 0);
1452 try_module_get(THIS_MODULE
);
1456 static int nbd_open(struct block_device
*bdev
, fmode_t mode
)
1458 struct nbd_device
*nbd
;
1461 mutex_lock(&nbd_index_mutex
);
1462 nbd
= bdev
->bd_disk
->private_data
;
1467 if (!refcount_inc_not_zero(&nbd
->refs
)) {
1471 if (!refcount_inc_not_zero(&nbd
->config_refs
)) {
1472 struct nbd_config
*config
;
1474 mutex_lock(&nbd
->config_lock
);
1475 if (refcount_inc_not_zero(&nbd
->config_refs
)) {
1476 mutex_unlock(&nbd
->config_lock
);
1479 config
= nbd
->config
= nbd_alloc_config();
1482 mutex_unlock(&nbd
->config_lock
);
1485 refcount_set(&nbd
->config_refs
, 1);
1486 refcount_inc(&nbd
->refs
);
1487 mutex_unlock(&nbd
->config_lock
);
1488 bdev
->bd_invalidated
= 1;
1489 } else if (nbd_disconnected(nbd
->config
)) {
1490 bdev
->bd_invalidated
= 1;
1493 mutex_unlock(&nbd_index_mutex
);
1497 static void nbd_release(struct gendisk
*disk
, fmode_t mode
)
1499 struct nbd_device
*nbd
= disk
->private_data
;
1500 struct block_device
*bdev
= bdget_disk(disk
, 0);
1502 if (test_bit(NBD_RT_DISCONNECT_ON_CLOSE
, &nbd
->config
->runtime_flags
) &&
1503 bdev
->bd_openers
== 0)
1504 nbd_disconnect_and_put(nbd
);
1506 nbd_config_put(nbd
);
1510 static const struct block_device_operations nbd_fops
=
1512 .owner
= THIS_MODULE
,
1514 .release
= nbd_release
,
1516 .compat_ioctl
= nbd_ioctl
,
1519 #if IS_ENABLED(CONFIG_DEBUG_FS)
1521 static int nbd_dbg_tasks_show(struct seq_file
*s
, void *unused
)
1523 struct nbd_device
*nbd
= s
->private;
1526 seq_printf(s
, "recv: %d\n", task_pid_nr(nbd
->task_recv
));
1531 static int nbd_dbg_tasks_open(struct inode
*inode
, struct file
*file
)
1533 return single_open(file
, nbd_dbg_tasks_show
, inode
->i_private
);
1536 static const struct file_operations nbd_dbg_tasks_ops
= {
1537 .open
= nbd_dbg_tasks_open
,
1539 .llseek
= seq_lseek
,
1540 .release
= single_release
,
1543 static int nbd_dbg_flags_show(struct seq_file
*s
, void *unused
)
1545 struct nbd_device
*nbd
= s
->private;
1546 u32 flags
= nbd
->config
->flags
;
1548 seq_printf(s
, "Hex: 0x%08x\n\n", flags
);
1550 seq_puts(s
, "Known flags:\n");
1552 if (flags
& NBD_FLAG_HAS_FLAGS
)
1553 seq_puts(s
, "NBD_FLAG_HAS_FLAGS\n");
1554 if (flags
& NBD_FLAG_READ_ONLY
)
1555 seq_puts(s
, "NBD_FLAG_READ_ONLY\n");
1556 if (flags
& NBD_FLAG_SEND_FLUSH
)
1557 seq_puts(s
, "NBD_FLAG_SEND_FLUSH\n");
1558 if (flags
& NBD_FLAG_SEND_FUA
)
1559 seq_puts(s
, "NBD_FLAG_SEND_FUA\n");
1560 if (flags
& NBD_FLAG_SEND_TRIM
)
1561 seq_puts(s
, "NBD_FLAG_SEND_TRIM\n");
1566 static int nbd_dbg_flags_open(struct inode
*inode
, struct file
*file
)
1568 return single_open(file
, nbd_dbg_flags_show
, inode
->i_private
);
1571 static const struct file_operations nbd_dbg_flags_ops
= {
1572 .open
= nbd_dbg_flags_open
,
1574 .llseek
= seq_lseek
,
1575 .release
= single_release
,
1578 static int nbd_dev_dbg_init(struct nbd_device
*nbd
)
1581 struct nbd_config
*config
= nbd
->config
;
1586 dir
= debugfs_create_dir(nbd_name(nbd
), nbd_dbg_dir
);
1588 dev_err(nbd_to_dev(nbd
), "Failed to create debugfs dir for '%s'\n",
1592 config
->dbg_dir
= dir
;
1594 debugfs_create_file("tasks", 0444, dir
, nbd
, &nbd_dbg_tasks_ops
);
1595 debugfs_create_u64("size_bytes", 0444, dir
, &config
->bytesize
);
1596 debugfs_create_u32("timeout", 0444, dir
, &nbd
->tag_set
.timeout
);
1597 debugfs_create_u64("blocksize", 0444, dir
, &config
->blksize
);
1598 debugfs_create_file("flags", 0444, dir
, nbd
, &nbd_dbg_flags_ops
);
1603 static void nbd_dev_dbg_close(struct nbd_device
*nbd
)
1605 debugfs_remove_recursive(nbd
->config
->dbg_dir
);
1608 static int nbd_dbg_init(void)
1610 struct dentry
*dbg_dir
;
1612 dbg_dir
= debugfs_create_dir("nbd", NULL
);
1616 nbd_dbg_dir
= dbg_dir
;
1621 static void nbd_dbg_close(void)
1623 debugfs_remove_recursive(nbd_dbg_dir
);
1626 #else /* IS_ENABLED(CONFIG_DEBUG_FS) */
1628 static int nbd_dev_dbg_init(struct nbd_device
*nbd
)
1633 static void nbd_dev_dbg_close(struct nbd_device
*nbd
)
1637 static int nbd_dbg_init(void)
1642 static void nbd_dbg_close(void)
1648 static int nbd_init_request(struct blk_mq_tag_set
*set
, struct request
*rq
,
1649 unsigned int hctx_idx
, unsigned int numa_node
)
1651 struct nbd_cmd
*cmd
= blk_mq_rq_to_pdu(rq
);
1652 cmd
->nbd
= set
->driver_data
;
1654 mutex_init(&cmd
->lock
);
1658 static const struct blk_mq_ops nbd_mq_ops
= {
1659 .queue_rq
= nbd_queue_rq
,
1660 .complete
= nbd_complete_rq
,
1661 .init_request
= nbd_init_request
,
1662 .timeout
= nbd_xmit_timeout
,
1665 static int nbd_dev_add(int index
)
1667 struct nbd_device
*nbd
;
1668 struct gendisk
*disk
;
1669 struct request_queue
*q
;
1672 nbd
= kzalloc(sizeof(struct nbd_device
), GFP_KERNEL
);
1676 disk
= alloc_disk(1 << part_shift
);
1681 err
= idr_alloc(&nbd_index_idr
, nbd
, index
, index
+ 1,
1686 err
= idr_alloc(&nbd_index_idr
, nbd
, 0, 0, GFP_KERNEL
);
1695 nbd
->tag_set
.ops
= &nbd_mq_ops
;
1696 nbd
->tag_set
.nr_hw_queues
= 1;
1697 nbd
->tag_set
.queue_depth
= 128;
1698 nbd
->tag_set
.numa_node
= NUMA_NO_NODE
;
1699 nbd
->tag_set
.cmd_size
= sizeof(struct nbd_cmd
);
1700 nbd
->tag_set
.flags
= BLK_MQ_F_SHOULD_MERGE
|
1702 nbd
->tag_set
.driver_data
= nbd
;
1703 nbd
->destroy_complete
= NULL
;
1705 err
= blk_mq_alloc_tag_set(&nbd
->tag_set
);
1709 q
= blk_mq_init_queue(&nbd
->tag_set
);
1717 * Tell the block layer that we are not a rotational device
1719 blk_queue_flag_set(QUEUE_FLAG_NONROT
, disk
->queue
);
1720 blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM
, disk
->queue
);
1721 disk
->queue
->limits
.discard_granularity
= 0;
1722 disk
->queue
->limits
.discard_alignment
= 0;
1723 blk_queue_max_discard_sectors(disk
->queue
, 0);
1724 blk_queue_max_segment_size(disk
->queue
, UINT_MAX
);
1725 blk_queue_max_segments(disk
->queue
, USHRT_MAX
);
1726 blk_queue_max_hw_sectors(disk
->queue
, 65536);
1727 disk
->queue
->limits
.max_sectors
= 256;
1729 mutex_init(&nbd
->config_lock
);
1730 refcount_set(&nbd
->config_refs
, 0);
1731 refcount_set(&nbd
->refs
, 1);
1732 INIT_LIST_HEAD(&nbd
->list
);
1733 disk
->major
= NBD_MAJOR
;
1734 disk
->first_minor
= index
<< part_shift
;
1735 disk
->fops
= &nbd_fops
;
1736 disk
->private_data
= nbd
;
1737 sprintf(disk
->disk_name
, "nbd%d", index
);
1739 nbd_total_devices
++;
1743 blk_mq_free_tag_set(&nbd
->tag_set
);
1745 idr_remove(&nbd_index_idr
, index
);
1754 static int find_free_cb(int id
, void *ptr
, void *data
)
1756 struct nbd_device
*nbd
= ptr
;
1757 struct nbd_device
**found
= data
;
1759 if (!refcount_read(&nbd
->config_refs
)) {
1766 /* Netlink interface. */
1767 static const struct nla_policy nbd_attr_policy
[NBD_ATTR_MAX
+ 1] = {
1768 [NBD_ATTR_INDEX
] = { .type
= NLA_U32
},
1769 [NBD_ATTR_SIZE_BYTES
] = { .type
= NLA_U64
},
1770 [NBD_ATTR_BLOCK_SIZE_BYTES
] = { .type
= NLA_U64
},
1771 [NBD_ATTR_TIMEOUT
] = { .type
= NLA_U64
},
1772 [NBD_ATTR_SERVER_FLAGS
] = { .type
= NLA_U64
},
1773 [NBD_ATTR_CLIENT_FLAGS
] = { .type
= NLA_U64
},
1774 [NBD_ATTR_SOCKETS
] = { .type
= NLA_NESTED
},
1775 [NBD_ATTR_DEAD_CONN_TIMEOUT
] = { .type
= NLA_U64
},
1776 [NBD_ATTR_DEVICE_LIST
] = { .type
= NLA_NESTED
},
1779 static const struct nla_policy nbd_sock_policy
[NBD_SOCK_MAX
+ 1] = {
1780 [NBD_SOCK_FD
] = { .type
= NLA_U32
},
1783 /* We don't use this right now since we don't parse the incoming list, but we
1784 * still want it here so userspace knows what to expect.
1786 static const struct nla_policy
__attribute__((unused
))
1787 nbd_device_policy
[NBD_DEVICE_ATTR_MAX
+ 1] = {
1788 [NBD_DEVICE_INDEX
] = { .type
= NLA_U32
},
1789 [NBD_DEVICE_CONNECTED
] = { .type
= NLA_U8
},
1792 static int nbd_genl_size_set(struct genl_info
*info
, struct nbd_device
*nbd
)
1794 struct nbd_config
*config
= nbd
->config
;
1795 u64 bsize
= config
->blksize
;
1796 u64 bytes
= config
->bytesize
;
1798 if (info
->attrs
[NBD_ATTR_SIZE_BYTES
])
1799 bytes
= nla_get_u64(info
->attrs
[NBD_ATTR_SIZE_BYTES
]);
1801 if (info
->attrs
[NBD_ATTR_BLOCK_SIZE_BYTES
]) {
1802 bsize
= nla_get_u64(info
->attrs
[NBD_ATTR_BLOCK_SIZE_BYTES
]);
1804 bsize
= NBD_DEF_BLKSIZE
;
1805 if (!nbd_is_valid_blksize(bsize
)) {
1806 printk(KERN_ERR
"Invalid block size %llu\n", bsize
);
1811 if (bytes
!= config
->bytesize
|| bsize
!= config
->blksize
)
1812 nbd_size_set(nbd
, bsize
, div64_u64(bytes
, bsize
));
1816 static int nbd_genl_connect(struct sk_buff
*skb
, struct genl_info
*info
)
1818 DECLARE_COMPLETION_ONSTACK(destroy_complete
);
1819 struct nbd_device
*nbd
= NULL
;
1820 struct nbd_config
*config
;
1823 bool put_dev
= false;
1825 if (!netlink_capable(skb
, CAP_SYS_ADMIN
))
1828 if (info
->attrs
[NBD_ATTR_INDEX
])
1829 index
= nla_get_u32(info
->attrs
[NBD_ATTR_INDEX
]);
1830 if (!info
->attrs
[NBD_ATTR_SOCKETS
]) {
1831 printk(KERN_ERR
"nbd: must specify at least one socket\n");
1834 if (!info
->attrs
[NBD_ATTR_SIZE_BYTES
]) {
1835 printk(KERN_ERR
"nbd: must specify a size in bytes for the device\n");
1839 mutex_lock(&nbd_index_mutex
);
1841 ret
= idr_for_each(&nbd_index_idr
, &find_free_cb
, &nbd
);
1844 new_index
= nbd_dev_add(-1);
1845 if (new_index
< 0) {
1846 mutex_unlock(&nbd_index_mutex
);
1847 printk(KERN_ERR
"nbd: failed to add new device\n");
1850 nbd
= idr_find(&nbd_index_idr
, new_index
);
1853 nbd
= idr_find(&nbd_index_idr
, index
);
1855 ret
= nbd_dev_add(index
);
1857 mutex_unlock(&nbd_index_mutex
);
1858 printk(KERN_ERR
"nbd: failed to add new device\n");
1861 nbd
= idr_find(&nbd_index_idr
, index
);
1865 printk(KERN_ERR
"nbd: couldn't find device at index %d\n",
1867 mutex_unlock(&nbd_index_mutex
);
1871 if (test_bit(NBD_DESTROY_ON_DISCONNECT
, &nbd
->flags
) &&
1872 test_bit(NBD_DISCONNECT_REQUESTED
, &nbd
->flags
)) {
1873 nbd
->destroy_complete
= &destroy_complete
;
1874 mutex_unlock(&nbd_index_mutex
);
1876 /* Wait untill the the nbd stuff is totally destroyed */
1877 wait_for_completion(&destroy_complete
);
1881 if (!refcount_inc_not_zero(&nbd
->refs
)) {
1882 mutex_unlock(&nbd_index_mutex
);
1885 printk(KERN_ERR
"nbd: device at index %d is going down\n",
1889 mutex_unlock(&nbd_index_mutex
);
1891 mutex_lock(&nbd
->config_lock
);
1892 if (refcount_read(&nbd
->config_refs
)) {
1893 mutex_unlock(&nbd
->config_lock
);
1897 printk(KERN_ERR
"nbd: nbd%d already in use\n", index
);
1900 if (WARN_ON(nbd
->config
)) {
1901 mutex_unlock(&nbd
->config_lock
);
1905 config
= nbd
->config
= nbd_alloc_config();
1907 mutex_unlock(&nbd
->config_lock
);
1909 printk(KERN_ERR
"nbd: couldn't allocate config\n");
1912 refcount_set(&nbd
->config_refs
, 1);
1913 set_bit(NBD_RT_BOUND
, &config
->runtime_flags
);
1915 ret
= nbd_genl_size_set(info
, nbd
);
1919 if (info
->attrs
[NBD_ATTR_TIMEOUT
])
1920 nbd_set_cmd_timeout(nbd
,
1921 nla_get_u64(info
->attrs
[NBD_ATTR_TIMEOUT
]));
1922 if (info
->attrs
[NBD_ATTR_DEAD_CONN_TIMEOUT
]) {
1923 config
->dead_conn_timeout
=
1924 nla_get_u64(info
->attrs
[NBD_ATTR_DEAD_CONN_TIMEOUT
]);
1925 config
->dead_conn_timeout
*= HZ
;
1927 if (info
->attrs
[NBD_ATTR_SERVER_FLAGS
])
1929 nla_get_u64(info
->attrs
[NBD_ATTR_SERVER_FLAGS
]);
1930 if (info
->attrs
[NBD_ATTR_CLIENT_FLAGS
]) {
1931 u64 flags
= nla_get_u64(info
->attrs
[NBD_ATTR_CLIENT_FLAGS
]);
1932 if (flags
& NBD_CFLAG_DESTROY_ON_DISCONNECT
) {
1933 set_bit(NBD_RT_DESTROY_ON_DISCONNECT
,
1934 &config
->runtime_flags
);
1935 set_bit(NBD_DESTROY_ON_DISCONNECT
, &nbd
->flags
);
1938 clear_bit(NBD_DESTROY_ON_DISCONNECT
, &nbd
->flags
);
1940 if (flags
& NBD_CFLAG_DISCONNECT_ON_CLOSE
) {
1941 set_bit(NBD_RT_DISCONNECT_ON_CLOSE
,
1942 &config
->runtime_flags
);
1946 if (info
->attrs
[NBD_ATTR_SOCKETS
]) {
1947 struct nlattr
*attr
;
1950 nla_for_each_nested(attr
, info
->attrs
[NBD_ATTR_SOCKETS
],
1952 struct nlattr
*socks
[NBD_SOCK_MAX
+1];
1954 if (nla_type(attr
) != NBD_SOCK_ITEM
) {
1955 printk(KERN_ERR
"nbd: socks must be embedded in a SOCK_ITEM attr\n");
1959 ret
= nla_parse_nested_deprecated(socks
, NBD_SOCK_MAX
,
1964 printk(KERN_ERR
"nbd: error processing sock list\n");
1968 if (!socks
[NBD_SOCK_FD
])
1970 fd
= (int)nla_get_u32(socks
[NBD_SOCK_FD
]);
1971 ret
= nbd_add_socket(nbd
, fd
, true);
1976 ret
= nbd_start_device(nbd
);
1978 mutex_unlock(&nbd
->config_lock
);
1980 set_bit(NBD_RT_HAS_CONFIG_REF
, &config
->runtime_flags
);
1981 refcount_inc(&nbd
->config_refs
);
1982 nbd_connect_reply(info
, nbd
->index
);
1984 nbd_config_put(nbd
);
1990 static void nbd_disconnect_and_put(struct nbd_device
*nbd
)
1992 mutex_lock(&nbd
->config_lock
);
1993 nbd_disconnect(nbd
);
1994 nbd_clear_sock(nbd
);
1995 mutex_unlock(&nbd
->config_lock
);
1997 * Make sure recv thread has finished, so it does not drop the last
1998 * config ref and try to destroy the workqueue from inside the work
2001 flush_workqueue(nbd
->recv_workq
);
2002 if (test_and_clear_bit(NBD_RT_HAS_CONFIG_REF
,
2003 &nbd
->config
->runtime_flags
))
2004 nbd_config_put(nbd
);
2007 static int nbd_genl_disconnect(struct sk_buff
*skb
, struct genl_info
*info
)
2009 struct nbd_device
*nbd
;
2012 if (!netlink_capable(skb
, CAP_SYS_ADMIN
))
2015 if (!info
->attrs
[NBD_ATTR_INDEX
]) {
2016 printk(KERN_ERR
"nbd: must specify an index to disconnect\n");
2019 index
= nla_get_u32(info
->attrs
[NBD_ATTR_INDEX
]);
2020 mutex_lock(&nbd_index_mutex
);
2021 nbd
= idr_find(&nbd_index_idr
, index
);
2023 mutex_unlock(&nbd_index_mutex
);
2024 printk(KERN_ERR
"nbd: couldn't find device at index %d\n",
2028 if (!refcount_inc_not_zero(&nbd
->refs
)) {
2029 mutex_unlock(&nbd_index_mutex
);
2030 printk(KERN_ERR
"nbd: device at index %d is going down\n",
2034 mutex_unlock(&nbd_index_mutex
);
2035 if (!refcount_inc_not_zero(&nbd
->config_refs
)) {
2039 nbd_disconnect_and_put(nbd
);
2040 nbd_config_put(nbd
);
2045 static int nbd_genl_reconfigure(struct sk_buff
*skb
, struct genl_info
*info
)
2047 struct nbd_device
*nbd
= NULL
;
2048 struct nbd_config
*config
;
2051 bool put_dev
= false;
2053 if (!netlink_capable(skb
, CAP_SYS_ADMIN
))
2056 if (!info
->attrs
[NBD_ATTR_INDEX
]) {
2057 printk(KERN_ERR
"nbd: must specify a device to reconfigure\n");
2060 index
= nla_get_u32(info
->attrs
[NBD_ATTR_INDEX
]);
2061 mutex_lock(&nbd_index_mutex
);
2062 nbd
= idr_find(&nbd_index_idr
, index
);
2064 mutex_unlock(&nbd_index_mutex
);
2065 printk(KERN_ERR
"nbd: couldn't find a device at index %d\n",
2069 if (!refcount_inc_not_zero(&nbd
->refs
)) {
2070 mutex_unlock(&nbd_index_mutex
);
2071 printk(KERN_ERR
"nbd: device at index %d is going down\n",
2075 mutex_unlock(&nbd_index_mutex
);
2077 if (!refcount_inc_not_zero(&nbd
->config_refs
)) {
2078 dev_err(nbd_to_dev(nbd
),
2079 "not configured, cannot reconfigure\n");
2084 mutex_lock(&nbd
->config_lock
);
2085 config
= nbd
->config
;
2086 if (!test_bit(NBD_RT_BOUND
, &config
->runtime_flags
) ||
2088 dev_err(nbd_to_dev(nbd
),
2089 "not configured, cannot reconfigure\n");
2094 ret
= nbd_genl_size_set(info
, nbd
);
2098 if (info
->attrs
[NBD_ATTR_TIMEOUT
])
2099 nbd_set_cmd_timeout(nbd
,
2100 nla_get_u64(info
->attrs
[NBD_ATTR_TIMEOUT
]));
2101 if (info
->attrs
[NBD_ATTR_DEAD_CONN_TIMEOUT
]) {
2102 config
->dead_conn_timeout
=
2103 nla_get_u64(info
->attrs
[NBD_ATTR_DEAD_CONN_TIMEOUT
]);
2104 config
->dead_conn_timeout
*= HZ
;
2106 if (info
->attrs
[NBD_ATTR_CLIENT_FLAGS
]) {
2107 u64 flags
= nla_get_u64(info
->attrs
[NBD_ATTR_CLIENT_FLAGS
]);
2108 if (flags
& NBD_CFLAG_DESTROY_ON_DISCONNECT
) {
2109 if (!test_and_set_bit(NBD_RT_DESTROY_ON_DISCONNECT
,
2110 &config
->runtime_flags
))
2112 set_bit(NBD_DESTROY_ON_DISCONNECT
, &nbd
->flags
);
2114 if (test_and_clear_bit(NBD_RT_DESTROY_ON_DISCONNECT
,
2115 &config
->runtime_flags
))
2116 refcount_inc(&nbd
->refs
);
2117 clear_bit(NBD_DESTROY_ON_DISCONNECT
, &nbd
->flags
);
2120 if (flags
& NBD_CFLAG_DISCONNECT_ON_CLOSE
) {
2121 set_bit(NBD_RT_DISCONNECT_ON_CLOSE
,
2122 &config
->runtime_flags
);
2124 clear_bit(NBD_RT_DISCONNECT_ON_CLOSE
,
2125 &config
->runtime_flags
);
2129 if (info
->attrs
[NBD_ATTR_SOCKETS
]) {
2130 struct nlattr
*attr
;
2133 nla_for_each_nested(attr
, info
->attrs
[NBD_ATTR_SOCKETS
],
2135 struct nlattr
*socks
[NBD_SOCK_MAX
+1];
2137 if (nla_type(attr
) != NBD_SOCK_ITEM
) {
2138 printk(KERN_ERR
"nbd: socks must be embedded in a SOCK_ITEM attr\n");
2142 ret
= nla_parse_nested_deprecated(socks
, NBD_SOCK_MAX
,
2147 printk(KERN_ERR
"nbd: error processing sock list\n");
2151 if (!socks
[NBD_SOCK_FD
])
2153 fd
= (int)nla_get_u32(socks
[NBD_SOCK_FD
]);
2154 ret
= nbd_reconnect_socket(nbd
, fd
);
2160 dev_info(nbd_to_dev(nbd
), "reconnected socket\n");
2164 mutex_unlock(&nbd
->config_lock
);
2165 nbd_config_put(nbd
);
2172 static const struct genl_ops nbd_connect_genl_ops
[] = {
2174 .cmd
= NBD_CMD_CONNECT
,
2175 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
2176 .doit
= nbd_genl_connect
,
2179 .cmd
= NBD_CMD_DISCONNECT
,
2180 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
2181 .doit
= nbd_genl_disconnect
,
2184 .cmd
= NBD_CMD_RECONFIGURE
,
2185 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
2186 .doit
= nbd_genl_reconfigure
,
2189 .cmd
= NBD_CMD_STATUS
,
2190 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
2191 .doit
= nbd_genl_status
,
2195 static const struct genl_multicast_group nbd_mcast_grps
[] = {
2196 { .name
= NBD_GENL_MCAST_GROUP_NAME
, },
2199 static struct genl_family nbd_genl_family __ro_after_init
= {
2201 .name
= NBD_GENL_FAMILY_NAME
,
2202 .version
= NBD_GENL_VERSION
,
2203 .module
= THIS_MODULE
,
2204 .ops
= nbd_connect_genl_ops
,
2205 .n_ops
= ARRAY_SIZE(nbd_connect_genl_ops
),
2206 .maxattr
= NBD_ATTR_MAX
,
2207 .policy
= nbd_attr_policy
,
2208 .mcgrps
= nbd_mcast_grps
,
2209 .n_mcgrps
= ARRAY_SIZE(nbd_mcast_grps
),
2212 static int populate_nbd_status(struct nbd_device
*nbd
, struct sk_buff
*reply
)
2214 struct nlattr
*dev_opt
;
2218 /* This is a little racey, but for status it's ok. The
2219 * reason we don't take a ref here is because we can't
2220 * take a ref in the index == -1 case as we would need
2221 * to put under the nbd_index_mutex, which could
2222 * deadlock if we are configured to remove ourselves
2223 * once we're disconnected.
2225 if (refcount_read(&nbd
->config_refs
))
2227 dev_opt
= nla_nest_start_noflag(reply
, NBD_DEVICE_ITEM
);
2230 ret
= nla_put_u32(reply
, NBD_DEVICE_INDEX
, nbd
->index
);
2233 ret
= nla_put_u8(reply
, NBD_DEVICE_CONNECTED
,
2237 nla_nest_end(reply
, dev_opt
);
2241 static int status_cb(int id
, void *ptr
, void *data
)
2243 struct nbd_device
*nbd
= ptr
;
2244 return populate_nbd_status(nbd
, (struct sk_buff
*)data
);
2247 static int nbd_genl_status(struct sk_buff
*skb
, struct genl_info
*info
)
2249 struct nlattr
*dev_list
;
2250 struct sk_buff
*reply
;
2256 if (info
->attrs
[NBD_ATTR_INDEX
])
2257 index
= nla_get_u32(info
->attrs
[NBD_ATTR_INDEX
]);
2259 mutex_lock(&nbd_index_mutex
);
2261 msg_size
= nla_total_size(nla_attr_size(sizeof(u32
)) +
2262 nla_attr_size(sizeof(u8
)));
2263 msg_size
*= (index
== -1) ? nbd_total_devices
: 1;
2265 reply
= genlmsg_new(msg_size
, GFP_KERNEL
);
2268 reply_head
= genlmsg_put_reply(reply
, info
, &nbd_genl_family
, 0,
2275 dev_list
= nla_nest_start_noflag(reply
, NBD_ATTR_DEVICE_LIST
);
2277 ret
= idr_for_each(&nbd_index_idr
, &status_cb
, reply
);
2283 struct nbd_device
*nbd
;
2284 nbd
= idr_find(&nbd_index_idr
, index
);
2286 ret
= populate_nbd_status(nbd
, reply
);
2293 nla_nest_end(reply
, dev_list
);
2294 genlmsg_end(reply
, reply_head
);
2295 ret
= genlmsg_reply(reply
, info
);
2297 mutex_unlock(&nbd_index_mutex
);
2301 static void nbd_connect_reply(struct genl_info
*info
, int index
)
2303 struct sk_buff
*skb
;
2307 skb
= genlmsg_new(nla_total_size(sizeof(u32
)), GFP_KERNEL
);
2310 msg_head
= genlmsg_put_reply(skb
, info
, &nbd_genl_family
, 0,
2316 ret
= nla_put_u32(skb
, NBD_ATTR_INDEX
, index
);
2321 genlmsg_end(skb
, msg_head
);
2322 genlmsg_reply(skb
, info
);
2325 static void nbd_mcast_index(int index
)
2327 struct sk_buff
*skb
;
2331 skb
= genlmsg_new(nla_total_size(sizeof(u32
)), GFP_KERNEL
);
2334 msg_head
= genlmsg_put(skb
, 0, 0, &nbd_genl_family
, 0,
2340 ret
= nla_put_u32(skb
, NBD_ATTR_INDEX
, index
);
2345 genlmsg_end(skb
, msg_head
);
2346 genlmsg_multicast(&nbd_genl_family
, skb
, 0, 0, GFP_KERNEL
);
2349 static void nbd_dead_link_work(struct work_struct
*work
)
2351 struct link_dead_args
*args
= container_of(work
, struct link_dead_args
,
2353 nbd_mcast_index(args
->index
);
2357 static int __init
nbd_init(void)
2361 BUILD_BUG_ON(sizeof(struct nbd_request
) != 28);
2364 printk(KERN_ERR
"nbd: max_part must be >= 0\n");
2370 part_shift
= fls(max_part
);
2373 * Adjust max_part according to part_shift as it is exported
2374 * to user space so that user can know the max number of
2375 * partition kernel should be able to manage.
2377 * Note that -1 is required because partition 0 is reserved
2378 * for the whole disk.
2380 max_part
= (1UL << part_shift
) - 1;
2383 if ((1UL << part_shift
) > DISK_MAX_PARTS
)
2386 if (nbds_max
> 1UL << (MINORBITS
- part_shift
))
2389 if (register_blkdev(NBD_MAJOR
, "nbd"))
2392 if (genl_register_family(&nbd_genl_family
)) {
2393 unregister_blkdev(NBD_MAJOR
, "nbd");
2398 mutex_lock(&nbd_index_mutex
);
2399 for (i
= 0; i
< nbds_max
; i
++)
2401 mutex_unlock(&nbd_index_mutex
);
2405 static int nbd_exit_cb(int id
, void *ptr
, void *data
)
2407 struct list_head
*list
= (struct list_head
*)data
;
2408 struct nbd_device
*nbd
= ptr
;
2410 list_add_tail(&nbd
->list
, list
);
2414 static void __exit
nbd_cleanup(void)
2416 struct nbd_device
*nbd
;
2417 LIST_HEAD(del_list
);
2421 mutex_lock(&nbd_index_mutex
);
2422 idr_for_each(&nbd_index_idr
, &nbd_exit_cb
, &del_list
);
2423 mutex_unlock(&nbd_index_mutex
);
2425 while (!list_empty(&del_list
)) {
2426 nbd
= list_first_entry(&del_list
, struct nbd_device
, list
);
2427 list_del_init(&nbd
->list
);
2428 if (refcount_read(&nbd
->refs
) != 1)
2429 printk(KERN_ERR
"nbd: possibly leaking a device\n");
2433 idr_destroy(&nbd_index_idr
);
2434 genl_unregister_family(&nbd_genl_family
);
2435 unregister_blkdev(NBD_MAJOR
, "nbd");
2438 module_init(nbd_init
);
2439 module_exit(nbd_cleanup
);
2441 MODULE_DESCRIPTION("Network Block Device");
2442 MODULE_LICENSE("GPL");
2444 module_param(nbds_max
, int, 0444);
2445 MODULE_PARM_DESC(nbds_max
, "number of network block devices to initialize (default: 16)");
2446 module_param(max_part
, int, 0444);
2447 MODULE_PARM_DESC(max_part
, "number of partitions per device (default: 16)");