Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Network block device - make block devices work over TCP |
| 3 | * |
| 4 | * Note that you can not swap over this thing, yet. Seems to work but |
| 5 | * deadlocks sometimes - you can not swap over TCP in general. |
| 6 | * |
Pavel Machek | a253129 | 2010-07-18 14:27:13 +0200 | [diff] [blame] | 7 | * Copyright 1997-2000, 2008 Pavel Machek <pavel@ucw.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Parts copyright 2001 Steven Whitehouse <steve@chygwyn.com> |
| 9 | * |
Pavel Machek | dbf492d | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 10 | * This file is released under GPLv2 or later. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
Pavel Machek | dbf492d | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 12 | * (part of code stolen from loop.c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/major.h> |
| 16 | |
| 17 | #include <linux/blkdev.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/sched.h> |
| 21 | #include <linux/fs.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> |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 27 | #include <linux/mutex.h> |
Herbert Xu | 4b2f026 | 2006-01-06 00:09:47 -0800 | [diff] [blame] | 28 | #include <linux/compiler.h> |
| 29 | #include <linux/err.h> |
| 30 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <net/sock.h> |
Trond Myklebust | 91cf45f | 2007-11-12 18:10:39 -0800 | [diff] [blame] | 33 | #include <linux/net.h> |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 34 | #include <linux/kthread.h> |
Markus Pargmann | b9c495b | 2015-04-02 10:11:37 +0200 | [diff] [blame] | 35 | #include <linux/types.h> |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 36 | #include <linux/debugfs.h> |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 37 | #include <linux/blk-mq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 39 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/types.h> |
| 41 | |
| 42 | #include <linux/nbd.h> |
| 43 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 44 | struct nbd_sock { |
| 45 | struct socket *sock; |
| 46 | struct mutex tx_lock; |
| 47 | }; |
| 48 | |
Josef Bacik | 9b4a6ba | 2016-09-08 12:33:39 -0700 | [diff] [blame] | 49 | #define NBD_TIMEDOUT 0 |
| 50 | #define NBD_DISCONNECT_REQUESTED 1 |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 51 | #define NBD_DISCONNECTED 2 |
| 52 | #define NBD_RUNNING 3 |
Josef Bacik | 9b4a6ba | 2016-09-08 12:33:39 -0700 | [diff] [blame] | 53 | |
Markus Pargmann | 13e71d6 | 2015-04-02 10:11:35 +0200 | [diff] [blame] | 54 | struct nbd_device { |
Markus Pargmann | 22d109c | 2015-08-17 08:20:09 +0200 | [diff] [blame] | 55 | u32 flags; |
Josef Bacik | 9b4a6ba | 2016-09-08 12:33:39 -0700 | [diff] [blame] | 56 | unsigned long runtime_flags; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 57 | struct nbd_sock **socks; |
Markus Pargmann | 13e71d6 | 2015-04-02 10:11:35 +0200 | [diff] [blame] | 58 | int magic; |
| 59 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 60 | struct blk_mq_tag_set tag_set; |
Markus Pargmann | 13e71d6 | 2015-04-02 10:11:35 +0200 | [diff] [blame] | 61 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 62 | struct mutex config_lock; |
Markus Pargmann | 13e71d6 | 2015-04-02 10:11:35 +0200 | [diff] [blame] | 63 | struct gendisk *disk; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 64 | int num_connections; |
| 65 | atomic_t recv_threads; |
| 66 | wait_queue_head_t recv_wq; |
Josef Bacik | ef77b51 | 2016-12-02 16:19:12 -0500 | [diff] [blame] | 67 | loff_t blksize; |
Markus Pargmann | b9c495b | 2015-04-02 10:11:37 +0200 | [diff] [blame] | 68 | loff_t bytesize; |
Markus Pargmann | 7e2893a | 2015-08-17 08:20:00 +0200 | [diff] [blame] | 69 | |
Markus Pargmann | 7e2893a | 2015-08-17 08:20:00 +0200 | [diff] [blame] | 70 | struct task_struct *task_recv; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 71 | struct task_struct *task_setup; |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 72 | |
| 73 | #if IS_ENABLED(CONFIG_DEBUG_FS) |
| 74 | struct dentry *dbg_dir; |
| 75 | #endif |
Markus Pargmann | 13e71d6 | 2015-04-02 10:11:35 +0200 | [diff] [blame] | 76 | }; |
| 77 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 78 | struct nbd_cmd { |
| 79 | struct nbd_device *nbd; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 80 | struct completion send_complete; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 81 | }; |
| 82 | |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 83 | #if IS_ENABLED(CONFIG_DEBUG_FS) |
| 84 | static struct dentry *nbd_dbg_dir; |
| 85 | #endif |
| 86 | |
| 87 | #define nbd_name(nbd) ((nbd)->disk->disk_name) |
| 88 | |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 89 | #define NBD_MAGIC 0x68797548 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Ingo van Lil | 9c7a416 | 2006-07-01 04:36:36 -0700 | [diff] [blame] | 91 | static unsigned int nbds_max = 16; |
Paul Clements | 20a8143 | 2008-02-08 04:21:51 -0800 | [diff] [blame] | 92 | static struct nbd_device *nbd_dev; |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 93 | static int max_part; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Markus Pargmann | d18509f | 2015-04-02 10:11:38 +0200 | [diff] [blame] | 95 | static inline struct device *nbd_to_dev(struct nbd_device *nbd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
Markus Pargmann | d18509f | 2015-04-02 10:11:38 +0200 | [diff] [blame] | 97 | return disk_to_dev(nbd->disk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 100 | static bool nbd_is_connected(struct nbd_device *nbd) |
| 101 | { |
| 102 | return !!nbd->task_recv; |
| 103 | } |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | static const char *nbdcmd_to_ascii(int cmd) |
| 106 | { |
| 107 | switch (cmd) { |
| 108 | case NBD_CMD_READ: return "read"; |
| 109 | case NBD_CMD_WRITE: return "write"; |
| 110 | case NBD_CMD_DISC: return "disconnect"; |
Alex Bligh | 75f187a | 2013-02-27 17:05:23 -0800 | [diff] [blame] | 111 | case NBD_CMD_FLUSH: return "flush"; |
Paul Clements | a336d29 | 2012-10-04 17:16:18 -0700 | [diff] [blame] | 112 | case NBD_CMD_TRIM: return "trim/discard"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | return "invalid"; |
| 115 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 117 | static int nbd_size_clear(struct nbd_device *nbd, struct block_device *bdev) |
| 118 | { |
| 119 | bdev->bd_inode->i_size = 0; |
| 120 | set_capacity(nbd->disk, 0); |
| 121 | kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE); |
| 122 | |
| 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | static void nbd_size_update(struct nbd_device *nbd, struct block_device *bdev) |
| 127 | { |
| 128 | if (!nbd_is_connected(nbd)) |
| 129 | return; |
| 130 | |
| 131 | bdev->bd_inode->i_size = nbd->bytesize; |
| 132 | set_capacity(nbd->disk, nbd->bytesize >> 9); |
| 133 | kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE); |
| 134 | } |
| 135 | |
| 136 | static int nbd_size_set(struct nbd_device *nbd, struct block_device *bdev, |
Josef Bacik | ef77b51 | 2016-12-02 16:19:12 -0500 | [diff] [blame] | 137 | loff_t blocksize, loff_t nr_blocks) |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 138 | { |
| 139 | int ret; |
| 140 | |
| 141 | ret = set_blocksize(bdev, blocksize); |
| 142 | if (ret) |
| 143 | return ret; |
| 144 | |
| 145 | nbd->blksize = blocksize; |
Josef Bacik | ef77b51 | 2016-12-02 16:19:12 -0500 | [diff] [blame] | 146 | nbd->bytesize = blocksize * nr_blocks; |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 147 | |
| 148 | nbd_size_update(nbd, bdev); |
| 149 | |
| 150 | return 0; |
| 151 | } |
| 152 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 153 | static void nbd_end_request(struct nbd_cmd *cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 155 | struct nbd_device *nbd = cmd->nbd; |
| 156 | struct request *req = blk_mq_rq_from_pdu(cmd); |
Kiyoshi Ueda | 097c94a | 2007-12-11 17:44:06 -0500 | [diff] [blame] | 157 | int error = req->errors ? -EIO : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 159 | dev_dbg(nbd_to_dev(nbd), "request %p: %s\n", cmd, |
Markus Pargmann | d18509f | 2015-04-02 10:11:38 +0200 | [diff] [blame] | 160 | error ? "failed" : "done"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 162 | blk_mq_complete_request(req, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Markus Pargmann | e018e75 | 2015-04-02 10:11:39 +0200 | [diff] [blame] | 165 | /* |
| 166 | * Forcibly shutdown the socket causing all listeners to error |
| 167 | */ |
Markus Pargmann | 36e47be | 2015-08-17 08:20:01 +0200 | [diff] [blame] | 168 | static void sock_shutdown(struct nbd_device *nbd) |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 169 | { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 170 | int i; |
Josef Bacik | c261189 | 2016-09-08 12:33:38 -0700 | [diff] [blame] | 171 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 172 | if (nbd->num_connections == 0) |
Markus Pargmann | 260bbce | 2015-08-17 08:20:02 +0200 | [diff] [blame] | 173 | return; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 174 | if (test_and_set_bit(NBD_DISCONNECTED, &nbd->runtime_flags)) |
| 175 | return; |
| 176 | |
| 177 | for (i = 0; i < nbd->num_connections; i++) { |
| 178 | struct nbd_sock *nsock = nbd->socks[i]; |
| 179 | mutex_lock(&nsock->tx_lock); |
| 180 | kernel_sock_shutdown(nsock->sock, SHUT_RDWR); |
| 181 | mutex_unlock(&nsock->tx_lock); |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 182 | } |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 183 | dev_warn(disk_to_dev(nbd->disk), "shutting down sockets\n"); |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Josef Bacik | 0eadf37 | 2016-09-08 12:33:40 -0700 | [diff] [blame] | 186 | static enum blk_eh_timer_return nbd_xmit_timeout(struct request *req, |
| 187 | bool reserved) |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 188 | { |
Josef Bacik | 0eadf37 | 2016-09-08 12:33:40 -0700 | [diff] [blame] | 189 | struct nbd_cmd *cmd = blk_mq_rq_to_pdu(req); |
| 190 | struct nbd_device *nbd = cmd->nbd; |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 191 | |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 192 | dev_err(nbd_to_dev(nbd), "Connection timed out, shutting down connection\n"); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 193 | set_bit(NBD_TIMEDOUT, &nbd->runtime_flags); |
| 194 | req->errors++; |
| 195 | |
| 196 | /* |
| 197 | * If our disconnect packet times out then we're already holding the |
| 198 | * config_lock and could deadlock here, so just set an error and return, |
| 199 | * we'll handle shutting everything down later. |
| 200 | */ |
| 201 | if (req->cmd_type == REQ_TYPE_DRV_PRIV) |
| 202 | return BLK_EH_HANDLED; |
| 203 | mutex_lock(&nbd->config_lock); |
| 204 | sock_shutdown(nbd); |
| 205 | mutex_unlock(&nbd->config_lock); |
Josef Bacik | 0eadf37 | 2016-09-08 12:33:40 -0700 | [diff] [blame] | 206 | return BLK_EH_HANDLED; |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /* |
| 210 | * Send or receive packet. |
| 211 | */ |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 212 | static int sock_xmit(struct nbd_device *nbd, int index, int send, void *buf, |
| 213 | int size, int msg_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 215 | struct socket *sock = nbd->socks[index]->sock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | int result; |
| 217 | struct msghdr msg; |
| 218 | struct kvec iov; |
Mel Gorman | 7f338fe | 2012-07-31 16:44:32 -0700 | [diff] [blame] | 219 | unsigned long pflags = current->flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Mike Snitzer | ffc41cf | 2008-04-02 13:04:47 -0700 | [diff] [blame] | 221 | if (unlikely(!sock)) { |
Josef Bacik | a897b66 | 2016-12-05 16:20:29 -0500 | [diff] [blame] | 222 | dev_err_ratelimited(disk_to_dev(nbd->disk), |
WANG Cong | 7f1b90f | 2011-08-19 14:48:22 +0200 | [diff] [blame] | 223 | "Attempted %s on closed socket in sock_xmit\n", |
| 224 | (send ? "send" : "recv")); |
Mike Snitzer | ffc41cf | 2008-04-02 13:04:47 -0700 | [diff] [blame] | 225 | return -EINVAL; |
| 226 | } |
| 227 | |
Mel Gorman | 7f338fe | 2012-07-31 16:44:32 -0700 | [diff] [blame] | 228 | current->flags |= PF_MEMALLOC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | do { |
Mel Gorman | 7f338fe | 2012-07-31 16:44:32 -0700 | [diff] [blame] | 230 | sock->sk->sk_allocation = GFP_NOIO | __GFP_MEMALLOC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | iov.iov_base = buf; |
| 232 | iov.iov_len = size; |
| 233 | msg.msg_name = NULL; |
| 234 | msg.msg_namelen = 0; |
| 235 | msg.msg_control = NULL; |
| 236 | msg.msg_controllen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | msg.msg_flags = msg_flags | MSG_NOSIGNAL; |
| 238 | |
Markus Pargmann | 7e2893a | 2015-08-17 08:20:00 +0200 | [diff] [blame] | 239 | if (send) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | result = kernel_sendmsg(sock, &msg, &iov, 1, size); |
Markus Pargmann | 7e2893a | 2015-08-17 08:20:00 +0200 | [diff] [blame] | 241 | else |
Namhyung Kim | 35fbf5b | 2011-05-28 14:44:46 +0200 | [diff] [blame] | 242 | result = kernel_recvmsg(sock, &msg, &iov, 1, size, |
| 243 | msg.msg_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | if (result <= 0) { |
| 246 | if (result == 0) |
| 247 | result = -EPIPE; /* short read */ |
| 248 | break; |
| 249 | } |
| 250 | size -= result; |
| 251 | buf += result; |
| 252 | } while (size > 0); |
| 253 | |
Mel Gorman | 7f338fe | 2012-07-31 16:44:32 -0700 | [diff] [blame] | 254 | tsk_restore_flags(current, pflags, PF_MEMALLOC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
| 256 | return result; |
| 257 | } |
| 258 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 259 | static inline int sock_send_bvec(struct nbd_device *nbd, int index, |
| 260 | struct bio_vec *bvec, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
| 262 | int result; |
| 263 | void *kaddr = kmap(bvec->bv_page); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 264 | result = sock_xmit(nbd, index, 1, kaddr + bvec->bv_offset, |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 265 | bvec->bv_len, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | kunmap(bvec->bv_page); |
| 267 | return result; |
| 268 | } |
| 269 | |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 270 | /* always call with the tx_lock held */ |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 271 | static int nbd_send_cmd(struct nbd_device *nbd, struct nbd_cmd *cmd, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 273 | struct request *req = blk_mq_rq_from_pdu(cmd); |
Josef Bacik | d61b7f9 | 2017-01-19 16:08:49 -0500 | [diff] [blame] | 274 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | struct nbd_request request; |
Tejun Heo | 1011c1b | 2009-05-07 22:24:45 +0900 | [diff] [blame] | 276 | unsigned long size = blk_rq_bytes(req); |
Jens Axboe | 429a787 | 2016-11-17 12:30:37 -0700 | [diff] [blame] | 277 | struct bio *bio; |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 278 | u32 type; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 279 | u32 tag = blk_mq_unique_tag(req); |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 280 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 281 | if (req_op(req) == REQ_OP_DISCARD) |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 282 | type = NBD_CMD_TRIM; |
Mike Christie | 3a5e02c | 2016-06-05 14:32:23 -0500 | [diff] [blame] | 283 | else if (req_op(req) == REQ_OP_FLUSH) |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 284 | type = NBD_CMD_FLUSH; |
| 285 | else if (rq_data_dir(req) == WRITE) |
| 286 | type = NBD_CMD_WRITE; |
| 287 | else |
| 288 | type = NBD_CMD_READ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Hani Benhabiles | 04cfac4 | 2014-06-06 14:38:30 -0700 | [diff] [blame] | 290 | memset(&request, 0, sizeof(request)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | request.magic = htonl(NBD_REQUEST_MAGIC); |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 292 | request.type = htonl(type); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 293 | if (type != NBD_CMD_FLUSH) { |
Alex Bligh | 75f187a | 2013-02-27 17:05:23 -0800 | [diff] [blame] | 294 | request.from = cpu_to_be64((u64)blk_rq_pos(req) << 9); |
| 295 | request.len = htonl(size); |
| 296 | } |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 297 | memcpy(request.handle, &tag, sizeof(tag)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Markus Pargmann | d18509f | 2015-04-02 10:11:38 +0200 | [diff] [blame] | 299 | dev_dbg(nbd_to_dev(nbd), "request %p: sending control (%s@%llu,%uB)\n", |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 300 | cmd, nbdcmd_to_ascii(type), |
Markus Pargmann | d18509f | 2015-04-02 10:11:38 +0200 | [diff] [blame] | 301 | (unsigned long long)blk_rq_pos(req) << 9, blk_rq_bytes(req)); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 302 | result = sock_xmit(nbd, index, 1, &request, sizeof(request), |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 303 | (type == NBD_CMD_WRITE) ? MSG_MORE : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | if (result <= 0) { |
Josef Bacik | a897b66 | 2016-12-05 16:20:29 -0500 | [diff] [blame] | 305 | dev_err_ratelimited(disk_to_dev(nbd->disk), |
WANG Cong | 7f1b90f | 2011-08-19 14:48:22 +0200 | [diff] [blame] | 306 | "Send control failed (result %d)\n", result); |
Markus Pargmann | dab5313 | 2015-04-02 10:11:40 +0200 | [diff] [blame] | 307 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Jens Axboe | 429a787 | 2016-11-17 12:30:37 -0700 | [diff] [blame] | 310 | if (type != NBD_CMD_WRITE) |
| 311 | return 0; |
| 312 | |
Jens Axboe | 429a787 | 2016-11-17 12:30:37 -0700 | [diff] [blame] | 313 | bio = req->bio; |
| 314 | while (bio) { |
| 315 | struct bio *next = bio->bi_next; |
| 316 | struct bvec_iter iter; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 317 | struct bio_vec bvec; |
Jens Axboe | 429a787 | 2016-11-17 12:30:37 -0700 | [diff] [blame] | 318 | |
| 319 | bio_for_each_segment(bvec, bio, iter) { |
| 320 | bool is_last = !next && bio_iter_last(bvec, iter); |
Josef Bacik | d61b7f9 | 2017-01-19 16:08:49 -0500 | [diff] [blame] | 321 | int flags = is_last ? 0 : MSG_MORE; |
Jens Axboe | 429a787 | 2016-11-17 12:30:37 -0700 | [diff] [blame] | 322 | |
Markus Pargmann | d18509f | 2015-04-02 10:11:38 +0200 | [diff] [blame] | 323 | dev_dbg(nbd_to_dev(nbd), "request %p: sending %d bytes data\n", |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 324 | cmd, bvec.bv_len); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 325 | result = sock_send_bvec(nbd, index, &bvec, flags); |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 326 | if (result <= 0) { |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 327 | dev_err(disk_to_dev(nbd->disk), |
WANG Cong | 7f1b90f | 2011-08-19 14:48:22 +0200 | [diff] [blame] | 328 | "Send data failed (result %d)\n", |
| 329 | result); |
Markus Pargmann | dab5313 | 2015-04-02 10:11:40 +0200 | [diff] [blame] | 330 | return -EIO; |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 331 | } |
Jens Axboe | 429a787 | 2016-11-17 12:30:37 -0700 | [diff] [blame] | 332 | /* |
| 333 | * The completion might already have come in, |
| 334 | * so break for the last one instead of letting |
| 335 | * the iterator do it. This prevents use-after-free |
| 336 | * of the bio. |
| 337 | */ |
| 338 | if (is_last) |
| 339 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
Jens Axboe | 429a787 | 2016-11-17 12:30:37 -0700 | [diff] [blame] | 341 | bio = next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
| 345 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 346 | static inline int sock_recv_bvec(struct nbd_device *nbd, int index, |
| 347 | struct bio_vec *bvec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | { |
| 349 | int result; |
| 350 | void *kaddr = kmap(bvec->bv_page); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 351 | result = sock_xmit(nbd, index, 0, kaddr + bvec->bv_offset, |
| 352 | bvec->bv_len, MSG_WAITALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | kunmap(bvec->bv_page); |
| 354 | return result; |
| 355 | } |
| 356 | |
| 357 | /* NULL returned = something went wrong, inform userspace */ |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 358 | static struct nbd_cmd *nbd_read_stat(struct nbd_device *nbd, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { |
| 360 | int result; |
| 361 | struct nbd_reply reply; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 362 | struct nbd_cmd *cmd; |
| 363 | struct request *req = NULL; |
| 364 | u16 hwq; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 365 | u32 tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
| 367 | reply.magic = 0; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 368 | result = sock_xmit(nbd, index, 0, &reply, sizeof(reply), MSG_WAITALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | if (result <= 0) { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 370 | if (!test_bit(NBD_DISCONNECTED, &nbd->runtime_flags) && |
| 371 | !test_bit(NBD_DISCONNECT_REQUESTED, &nbd->runtime_flags)) |
| 372 | dev_err(disk_to_dev(nbd->disk), |
| 373 | "Receive control failed (result %d)\n", result); |
Markus Pargmann | 1939183 | 2015-08-17 08:20:03 +0200 | [diff] [blame] | 374 | return ERR_PTR(result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
Michal Feix | e4b57e0 | 2006-07-30 03:03:31 -0700 | [diff] [blame] | 376 | |
| 377 | if (ntohl(reply.magic) != NBD_REPLY_MAGIC) { |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 378 | dev_err(disk_to_dev(nbd->disk), "Wrong magic (0x%lx)\n", |
Michal Feix | e4b57e0 | 2006-07-30 03:03:31 -0700 | [diff] [blame] | 379 | (unsigned long)ntohl(reply.magic)); |
Markus Pargmann | 1939183 | 2015-08-17 08:20:03 +0200 | [diff] [blame] | 380 | return ERR_PTR(-EPROTO); |
Michal Feix | e4b57e0 | 2006-07-30 03:03:31 -0700 | [diff] [blame] | 381 | } |
| 382 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 383 | memcpy(&tag, reply.handle, sizeof(u32)); |
Herbert Xu | 4b2f026 | 2006-01-06 00:09:47 -0800 | [diff] [blame] | 384 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 385 | hwq = blk_mq_unique_tag_to_hwq(tag); |
| 386 | if (hwq < nbd->tag_set.nr_hw_queues) |
| 387 | req = blk_mq_tag_to_rq(nbd->tag_set.tags[hwq], |
| 388 | blk_mq_unique_tag_to_tag(tag)); |
| 389 | if (!req || !blk_mq_request_started(req)) { |
| 390 | dev_err(disk_to_dev(nbd->disk), "Unexpected reply (%d) %p\n", |
| 391 | tag, req); |
| 392 | return ERR_PTR(-ENOENT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | } |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 394 | cmd = blk_mq_rq_to_pdu(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | if (ntohl(reply.error)) { |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 396 | dev_err(disk_to_dev(nbd->disk), "Other side returned error (%d)\n", |
WANG Cong | 7f1b90f | 2011-08-19 14:48:22 +0200 | [diff] [blame] | 397 | ntohl(reply.error)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | req->errors++; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 399 | return cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
| 401 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 402 | dev_dbg(nbd_to_dev(nbd), "request %p: got reply\n", cmd); |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 403 | if (rq_data_dir(req) != WRITE) { |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 404 | struct req_iterator iter; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 405 | struct bio_vec bvec; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 406 | |
| 407 | rq_for_each_segment(bvec, req, iter) { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 408 | result = sock_recv_bvec(nbd, index, &bvec); |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 409 | if (result <= 0) { |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 410 | dev_err(disk_to_dev(nbd->disk), "Receive data failed (result %d)\n", |
WANG Cong | 7f1b90f | 2011-08-19 14:48:22 +0200 | [diff] [blame] | 411 | result); |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 412 | req->errors++; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 413 | return cmd; |
Jens Axboe | 6c92e69 | 2007-08-16 13:43:12 +0200 | [diff] [blame] | 414 | } |
Markus Pargmann | d18509f | 2015-04-02 10:11:38 +0200 | [diff] [blame] | 415 | dev_dbg(nbd_to_dev(nbd), "request %p: got %d bytes data\n", |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 416 | cmd, bvec.bv_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 418 | } else { |
| 419 | /* See the comment in nbd_queue_rq. */ |
| 420 | wait_for_completion(&cmd->send_complete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 422 | return cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | } |
| 424 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 425 | static ssize_t pid_show(struct device *dev, |
| 426 | struct device_attribute *attr, char *buf) |
Paul Clements | 6b39bb6 | 2006-12-06 20:40:53 -0800 | [diff] [blame] | 427 | { |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 428 | struct gendisk *disk = dev_to_disk(dev); |
Markus Pargmann | 6521d39 | 2015-08-17 08:20:05 +0200 | [diff] [blame] | 429 | struct nbd_device *nbd = (struct nbd_device *)disk->private_data; |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 430 | |
Markus Pargmann | 6521d39 | 2015-08-17 08:20:05 +0200 | [diff] [blame] | 431 | return sprintf(buf, "%d\n", task_pid_nr(nbd->task_recv)); |
Paul Clements | 6b39bb6 | 2006-12-06 20:40:53 -0800 | [diff] [blame] | 432 | } |
| 433 | |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 434 | static struct device_attribute pid_attr = { |
Parag Warudkar | 01e8ef1 | 2008-10-18 20:28:50 -0700 | [diff] [blame] | 435 | .attr = { .name = "pid", .mode = S_IRUGO}, |
Paul Clements | 6b39bb6 | 2006-12-06 20:40:53 -0800 | [diff] [blame] | 436 | .show = pid_show, |
| 437 | }; |
| 438 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 439 | struct recv_thread_args { |
| 440 | struct work_struct work; |
| 441 | struct nbd_device *nbd; |
| 442 | int index; |
| 443 | }; |
| 444 | |
| 445 | static void recv_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 447 | struct recv_thread_args *args = container_of(work, |
| 448 | struct recv_thread_args, |
| 449 | work); |
| 450 | struct nbd_device *nbd = args->nbd; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 451 | struct nbd_cmd *cmd; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 452 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 454 | BUG_ON(nbd->magic != NBD_MAGIC); |
Markus Pargmann | 1939183 | 2015-08-17 08:20:03 +0200 | [diff] [blame] | 455 | while (1) { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 456 | cmd = nbd_read_stat(nbd, args->index); |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 457 | if (IS_ERR(cmd)) { |
| 458 | ret = PTR_ERR(cmd); |
Markus Pargmann | 1939183 | 2015-08-17 08:20:03 +0200 | [diff] [blame] | 459 | break; |
| 460 | } |
| 461 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 462 | nbd_end_request(cmd); |
Markus Pargmann | 1939183 | 2015-08-17 08:20:03 +0200 | [diff] [blame] | 463 | } |
Paul Clements | 6b39bb6 | 2006-12-06 20:40:53 -0800 | [diff] [blame] | 464 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 465 | /* |
| 466 | * We got an error, shut everybody down if this wasn't the result of a |
| 467 | * disconnect request. |
| 468 | */ |
| 469 | if (ret && !test_bit(NBD_DISCONNECT_REQUESTED, &nbd->runtime_flags)) |
| 470 | sock_shutdown(nbd); |
| 471 | atomic_dec(&nbd->recv_threads); |
| 472 | wake_up(&nbd->recv_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 475 | static void nbd_clear_req(struct request *req, void *data, bool reserved) |
| 476 | { |
| 477 | struct nbd_cmd *cmd; |
| 478 | |
| 479 | if (!blk_mq_request_started(req)) |
| 480 | return; |
| 481 | cmd = blk_mq_rq_to_pdu(req); |
| 482 | req->errors++; |
| 483 | nbd_end_request(cmd); |
| 484 | } |
| 485 | |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 486 | static void nbd_clear_que(struct nbd_device *nbd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | { |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 488 | BUG_ON(nbd->magic != NBD_MAGIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 490 | blk_mq_tagset_busy_iter(&nbd->tag_set, nbd_clear_req, NULL); |
Markus Pargmann | e78273c | 2015-08-17 08:20:04 +0200 | [diff] [blame] | 491 | dev_dbg(disk_to_dev(nbd->disk), "queue cleared\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } |
| 493 | |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 494 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 495 | static void nbd_handle_cmd(struct nbd_cmd *cmd, int index) |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 496 | { |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 497 | struct request *req = blk_mq_rq_from_pdu(cmd); |
| 498 | struct nbd_device *nbd = cmd->nbd; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 499 | struct nbd_sock *nsock; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 500 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 501 | if (index >= nbd->num_connections) { |
Josef Bacik | a897b66 | 2016-12-05 16:20:29 -0500 | [diff] [blame] | 502 | dev_err_ratelimited(disk_to_dev(nbd->disk), |
| 503 | "Attempted send on invalid socket\n"); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 504 | goto error_out; |
| 505 | } |
| 506 | |
| 507 | if (test_bit(NBD_DISCONNECTED, &nbd->runtime_flags)) { |
Josef Bacik | a897b66 | 2016-12-05 16:20:29 -0500 | [diff] [blame] | 508 | dev_err_ratelimited(disk_to_dev(nbd->disk), |
| 509 | "Attempted send on closed socket\n"); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 510 | goto error_out; |
| 511 | } |
| 512 | |
| 513 | if (req->cmd_type != REQ_TYPE_FS && |
| 514 | req->cmd_type != REQ_TYPE_DRV_PRIV) |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 515 | goto error_out; |
| 516 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 517 | if (req->cmd_type == REQ_TYPE_FS && |
| 518 | rq_data_dir(req) == WRITE && |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 519 | (nbd->flags & NBD_FLAG_READ_ONLY)) { |
Josef Bacik | a897b66 | 2016-12-05 16:20:29 -0500 | [diff] [blame] | 520 | dev_err_ratelimited(disk_to_dev(nbd->disk), |
| 521 | "Write on read-only\n"); |
Christoph Hellwig | 9dc6c80 | 2015-04-17 22:37:21 +0200 | [diff] [blame] | 522 | goto error_out; |
Alex Bligh | 75f187a | 2013-02-27 17:05:23 -0800 | [diff] [blame] | 523 | } |
| 524 | |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 525 | req->errors = 0; |
| 526 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 527 | nsock = nbd->socks[index]; |
| 528 | mutex_lock(&nsock->tx_lock); |
| 529 | if (unlikely(!nsock->sock)) { |
| 530 | mutex_unlock(&nsock->tx_lock); |
Josef Bacik | a897b66 | 2016-12-05 16:20:29 -0500 | [diff] [blame] | 531 | dev_err_ratelimited(disk_to_dev(nbd->disk), |
| 532 | "Attempted send on closed socket\n"); |
Pavel Machek | 15746fc | 2009-04-02 16:58:42 -0700 | [diff] [blame] | 533 | goto error_out; |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 534 | } |
| 535 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 536 | if (nbd_send_cmd(nbd, cmd, index) != 0) { |
Josef Bacik | a897b66 | 2016-12-05 16:20:29 -0500 | [diff] [blame] | 537 | dev_err_ratelimited(disk_to_dev(nbd->disk), |
| 538 | "Request send failed\n"); |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 539 | req->errors++; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 540 | nbd_end_request(cmd); |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 541 | } |
| 542 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 543 | mutex_unlock(&nsock->tx_lock); |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 544 | |
| 545 | return; |
| 546 | |
| 547 | error_out: |
| 548 | req->errors++; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 549 | nbd_end_request(cmd); |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 550 | } |
| 551 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 552 | static int nbd_queue_rq(struct blk_mq_hw_ctx *hctx, |
| 553 | const struct blk_mq_queue_data *bd) |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 554 | { |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 555 | struct nbd_cmd *cmd = blk_mq_rq_to_pdu(bd->rq); |
Laurent Vivier | 48cf606 | 2008-04-29 01:02:46 -0700 | [diff] [blame] | 556 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 557 | /* |
| 558 | * Since we look at the bio's to send the request over the network we |
| 559 | * need to make sure the completion work doesn't mark this request done |
| 560 | * before we are done doing our send. This keeps us from dereferencing |
| 561 | * freed data if we have particularly fast completions (ie we get the |
| 562 | * completion before we exit sock_xmit on the last bvec) or in the case |
| 563 | * that the server is misbehaving (or there was an error) before we're |
| 564 | * done sending everything over the wire. |
| 565 | */ |
| 566 | init_completion(&cmd->send_complete); |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 567 | blk_mq_start_request(bd->rq); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 568 | nbd_handle_cmd(cmd, hctx->queue_num); |
| 569 | complete(&cmd->send_complete); |
| 570 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 571 | return BLK_MQ_RQ_QUEUE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | } |
| 573 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 574 | static int nbd_add_socket(struct nbd_device *nbd, struct socket *sock) |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 575 | { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 576 | struct nbd_sock **socks; |
| 577 | struct nbd_sock *nsock; |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 578 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 579 | if (!nbd->task_setup) |
| 580 | nbd->task_setup = current; |
| 581 | if (nbd->task_setup != current) { |
| 582 | dev_err(disk_to_dev(nbd->disk), |
| 583 | "Device being setup by another task"); |
| 584 | return -EINVAL; |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 585 | } |
| 586 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 587 | socks = krealloc(nbd->socks, (nbd->num_connections + 1) * |
| 588 | sizeof(struct nbd_sock *), GFP_KERNEL); |
| 589 | if (!socks) |
| 590 | return -ENOMEM; |
| 591 | nsock = kzalloc(sizeof(struct nbd_sock), GFP_KERNEL); |
| 592 | if (!nsock) |
| 593 | return -ENOMEM; |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 594 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 595 | nbd->socks = socks; |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 596 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 597 | mutex_init(&nsock->tx_lock); |
| 598 | nsock->sock = sock; |
| 599 | socks[nbd->num_connections++] = nsock; |
| 600 | |
| 601 | return 0; |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 602 | } |
| 603 | |
Markus Pargmann | 0e4f0f6 | 2015-10-29 12:04:51 +0100 | [diff] [blame] | 604 | /* Reset all properties of an NBD device */ |
| 605 | static void nbd_reset(struct nbd_device *nbd) |
| 606 | { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 607 | int i; |
| 608 | |
| 609 | for (i = 0; i < nbd->num_connections; i++) |
| 610 | kfree(nbd->socks[i]); |
| 611 | kfree(nbd->socks); |
| 612 | nbd->socks = NULL; |
Josef Bacik | 9b4a6ba | 2016-09-08 12:33:39 -0700 | [diff] [blame] | 613 | nbd->runtime_flags = 0; |
Markus Pargmann | 0e4f0f6 | 2015-10-29 12:04:51 +0100 | [diff] [blame] | 614 | nbd->blksize = 1024; |
| 615 | nbd->bytesize = 0; |
| 616 | set_capacity(nbd->disk, 0); |
| 617 | nbd->flags = 0; |
Josef Bacik | 0eadf37 | 2016-09-08 12:33:40 -0700 | [diff] [blame] | 618 | nbd->tag_set.timeout = 0; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 619 | nbd->num_connections = 0; |
| 620 | nbd->task_setup = NULL; |
Markus Pargmann | 0e4f0f6 | 2015-10-29 12:04:51 +0100 | [diff] [blame] | 621 | queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue); |
Markus Pargmann | 0e4f0f6 | 2015-10-29 12:04:51 +0100 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | static void nbd_bdev_reset(struct block_device *bdev) |
| 625 | { |
| 626 | set_device_ro(bdev, false); |
| 627 | bdev->bd_inode->i_size = 0; |
| 628 | if (max_part > 0) { |
| 629 | blkdev_reread_part(bdev); |
| 630 | bdev->bd_invalidated = 1; |
| 631 | } |
| 632 | } |
| 633 | |
Markus Pargmann | d02cf53 | 2015-10-29 12:06:15 +0100 | [diff] [blame] | 634 | static void nbd_parse_flags(struct nbd_device *nbd, struct block_device *bdev) |
| 635 | { |
| 636 | if (nbd->flags & NBD_FLAG_READ_ONLY) |
| 637 | set_device_ro(bdev, true); |
| 638 | if (nbd->flags & NBD_FLAG_SEND_TRIM) |
| 639 | queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue); |
| 640 | if (nbd->flags & NBD_FLAG_SEND_FLUSH) |
Jens Axboe | aafb1ee | 2016-03-30 10:10:53 -0600 | [diff] [blame] | 641 | blk_queue_write_cache(nbd->disk->queue, true, false); |
Markus Pargmann | d02cf53 | 2015-10-29 12:06:15 +0100 | [diff] [blame] | 642 | else |
Jens Axboe | aafb1ee | 2016-03-30 10:10:53 -0600 | [diff] [blame] | 643 | blk_queue_write_cache(nbd->disk->queue, false, false); |
Markus Pargmann | d02cf53 | 2015-10-29 12:06:15 +0100 | [diff] [blame] | 644 | } |
| 645 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 646 | static void send_disconnects(struct nbd_device *nbd) |
| 647 | { |
| 648 | struct nbd_request request = {}; |
| 649 | int i, ret; |
| 650 | |
| 651 | request.magic = htonl(NBD_REQUEST_MAGIC); |
| 652 | request.type = htonl(NBD_CMD_DISC); |
| 653 | |
| 654 | for (i = 0; i < nbd->num_connections; i++) { |
| 655 | ret = sock_xmit(nbd, i, 1, &request, sizeof(request), 0); |
| 656 | if (ret <= 0) |
| 657 | dev_err(disk_to_dev(nbd->disk), |
| 658 | "Send disconnect failed %d\n", ret); |
| 659 | } |
| 660 | } |
| 661 | |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 662 | static int nbd_dev_dbg_init(struct nbd_device *nbd); |
| 663 | static void nbd_dev_dbg_close(struct nbd_device *nbd); |
| 664 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 665 | /* Must be called with config_lock held */ |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 666 | static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd, |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 667 | unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | switch (cmd) { |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 670 | case NBD_DISCONNECT: { |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 671 | dev_info(disk_to_dev(nbd->disk), "NBD_DISCONNECT\n"); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 672 | if (!nbd->socks) |
Paolo Bonzini | 3a2d63f8 | 2013-02-27 17:05:25 -0800 | [diff] [blame] | 673 | return -EINVAL; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 674 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 675 | mutex_unlock(&nbd->config_lock); |
Paolo Bonzini | 3a2d63f8 | 2013-02-27 17:05:25 -0800 | [diff] [blame] | 676 | fsync_bdev(bdev); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 677 | mutex_lock(&nbd->config_lock); |
Paolo Bonzini | 3a2d63f8 | 2013-02-27 17:05:25 -0800 | [diff] [blame] | 678 | |
| 679 | /* Check again after getting mutex back. */ |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 680 | if (!nbd->socks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | return -EINVAL; |
Paolo Bonzini | 3a2d63f8 | 2013-02-27 17:05:25 -0800 | [diff] [blame] | 682 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 683 | if (!test_and_set_bit(NBD_DISCONNECT_REQUESTED, |
| 684 | &nbd->runtime_flags)) |
| 685 | send_disconnects(nbd); |
Paul Clements | c378f70 | 2013-07-03 15:09:04 -0700 | [diff] [blame] | 686 | return 0; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 687 | } |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 688 | |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 689 | case NBD_CLEAR_SOCK: |
| 690 | sock_shutdown(nbd); |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 691 | nbd_clear_que(nbd); |
Paolo Bonzini | 3a2d63f8 | 2013-02-27 17:05:25 -0800 | [diff] [blame] | 692 | kill_bdev(bdev); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 693 | nbd_bdev_reset(bdev); |
| 694 | /* |
| 695 | * We want to give the run thread a chance to wait for everybody |
| 696 | * to clean up and then do it's own cleanup. |
| 697 | */ |
| 698 | if (!test_bit(NBD_RUNNING, &nbd->runtime_flags)) { |
| 699 | int i; |
| 700 | |
| 701 | for (i = 0; i < nbd->num_connections; i++) |
| 702 | kfree(nbd->socks[i]); |
| 703 | kfree(nbd->socks); |
| 704 | nbd->socks = NULL; |
| 705 | nbd->num_connections = 0; |
Josef Bacik | 20032ec | 2016-12-08 09:52:35 -0500 | [diff] [blame] | 706 | nbd->task_setup = NULL; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 707 | } |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 708 | return 0; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 709 | |
| 710 | case NBD_SET_SOCK: { |
Al Viro | e251157 | 2014-03-05 20:41:36 -0500 | [diff] [blame] | 711 | int err; |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 712 | struct socket *sock = sockfd_lookup(arg, &err); |
| 713 | |
| 714 | if (!sock) |
| 715 | return err; |
| 716 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 717 | err = nbd_add_socket(nbd, sock); |
Markus Pargmann | 23272a67 | 2015-10-29 11:51:16 +0100 | [diff] [blame] | 718 | if (!err && max_part) |
| 719 | bdev->bd_invalidated = 1; |
| 720 | |
| 721 | return err; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 722 | } |
| 723 | |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 724 | case NBD_SET_BLKSIZE: { |
Arnd Bergmann | 5e454c6 | 2016-03-05 00:49:31 +0100 | [diff] [blame] | 725 | loff_t bsize = div_s64(nbd->bytesize, arg); |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 726 | |
| 727 | return nbd_size_set(nbd, bdev, arg, bsize); |
| 728 | } |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | case NBD_SET_SIZE: |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 731 | return nbd_size_set(nbd, bdev, nbd->blksize, |
Jens Axboe | e88f72c | 2016-12-03 12:08:03 -0700 | [diff] [blame] | 732 | div_s64(arg, nbd->blksize)); |
Markus Pargmann | 37091fd | 2015-07-27 07:36:49 +0200 | [diff] [blame] | 733 | |
| 734 | case NBD_SET_SIZE_BLOCKS: |
| 735 | return nbd_size_set(nbd, bdev, nbd->blksize, arg); |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 736 | |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 737 | case NBD_SET_TIMEOUT: |
Josef Bacik | 0eadf37 | 2016-09-08 12:33:40 -0700 | [diff] [blame] | 738 | nbd->tag_set.timeout = arg * HZ; |
Paul Clements | 7fdfd40 | 2007-10-16 23:27:37 -0700 | [diff] [blame] | 739 | return 0; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 740 | |
Paul Clements | 2f01250 | 2012-10-04 17:16:15 -0700 | [diff] [blame] | 741 | case NBD_SET_FLAGS: |
| 742 | nbd->flags = arg; |
| 743 | return 0; |
| 744 | |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 745 | case NBD_DO_IT: { |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 746 | struct recv_thread_args *args; |
| 747 | int num_connections = nbd->num_connections; |
Jens Axboe | feffa5c | 2016-11-22 19:09:45 -0700 | [diff] [blame] | 748 | int error = 0, i; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 749 | |
Markus Pargmann | 6521d39 | 2015-08-17 08:20:05 +0200 | [diff] [blame] | 750 | if (nbd->task_recv) |
Pavel Machek | c91192d | 2009-01-15 13:51:03 -0800 | [diff] [blame] | 751 | return -EBUSY; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 752 | if (!nbd->socks) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | return -EINVAL; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 754 | if (num_connections > 1 && |
| 755 | !(nbd->flags & NBD_FLAG_CAN_MULTI_CONN)) { |
| 756 | dev_err(disk_to_dev(nbd->disk), "server does not support multiple connections per device.\n"); |
Jens Axboe | feffa5c | 2016-11-22 19:09:45 -0700 | [diff] [blame] | 757 | error = -EINVAL; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 758 | goto out_err; |
| 759 | } |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 760 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 761 | set_bit(NBD_RUNNING, &nbd->runtime_flags); |
| 762 | blk_mq_update_nr_hw_queues(&nbd->tag_set, nbd->num_connections); |
| 763 | args = kcalloc(num_connections, sizeof(*args), GFP_KERNEL); |
Jens Axboe | feffa5c | 2016-11-22 19:09:45 -0700 | [diff] [blame] | 764 | if (!args) { |
| 765 | error = -ENOMEM; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 766 | goto out_err; |
Jens Axboe | feffa5c | 2016-11-22 19:09:45 -0700 | [diff] [blame] | 767 | } |
Vegard Nossum | 9724096 | 2016-05-27 12:59:35 +0200 | [diff] [blame] | 768 | nbd->task_recv = current; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 769 | mutex_unlock(&nbd->config_lock); |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 770 | |
Markus Pargmann | d02cf53 | 2015-10-29 12:06:15 +0100 | [diff] [blame] | 771 | nbd_parse_flags(nbd, bdev); |
Paul Clements | a336d29 | 2012-10-04 17:16:18 -0700 | [diff] [blame] | 772 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 773 | error = device_create_file(disk_to_dev(nbd->disk), &pid_attr); |
| 774 | if (error) { |
| 775 | dev_err(disk_to_dev(nbd->disk), "device_create_file failed!\n"); |
| 776 | goto out_recv; |
| 777 | } |
| 778 | |
| 779 | nbd_size_update(nbd, bdev); |
| 780 | |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 781 | nbd_dev_dbg_init(nbd); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 782 | for (i = 0; i < num_connections; i++) { |
| 783 | sk_set_memalloc(nbd->socks[i]->sock->sk); |
| 784 | atomic_inc(&nbd->recv_threads); |
| 785 | INIT_WORK(&args[i].work, recv_work); |
| 786 | args[i].nbd = nbd; |
| 787 | args[i].index = i; |
| 788 | queue_work(system_long_wq, &args[i].work); |
| 789 | } |
| 790 | wait_event_interruptible(nbd->recv_wq, |
| 791 | atomic_read(&nbd->recv_threads) == 0); |
| 792 | for (i = 0; i < num_connections; i++) |
| 793 | flush_work(&args[i].work); |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 794 | nbd_dev_dbg_close(nbd); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 795 | nbd_size_clear(nbd, bdev); |
| 796 | device_remove_file(disk_to_dev(nbd->disk), &pid_attr); |
| 797 | out_recv: |
| 798 | mutex_lock(&nbd->config_lock); |
Vegard Nossum | 9724096 | 2016-05-27 12:59:35 +0200 | [diff] [blame] | 799 | nbd->task_recv = NULL; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 800 | out_err: |
Markus Pargmann | 36e47be | 2015-08-17 08:20:01 +0200 | [diff] [blame] | 801 | sock_shutdown(nbd); |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 802 | nbd_clear_que(nbd); |
Paolo Bonzini | 3a2d63f8 | 2013-02-27 17:05:25 -0800 | [diff] [blame] | 803 | kill_bdev(bdev); |
Markus Pargmann | 0e4f0f6 | 2015-10-29 12:04:51 +0100 | [diff] [blame] | 804 | nbd_bdev_reset(bdev); |
| 805 | |
Josef Bacik | 9b4a6ba | 2016-09-08 12:33:39 -0700 | [diff] [blame] | 806 | /* user requested, ignore socket errors */ |
| 807 | if (test_bit(NBD_DISCONNECT_REQUESTED, &nbd->runtime_flags)) |
Markus Pargmann | 1f7b5cf | 2015-10-29 12:01:34 +0100 | [diff] [blame] | 808 | error = 0; |
Josef Bacik | 9b4a6ba | 2016-09-08 12:33:39 -0700 | [diff] [blame] | 809 | if (test_bit(NBD_TIMEDOUT, &nbd->runtime_flags)) |
Markus Pargmann | 1f7b5cf | 2015-10-29 12:01:34 +0100 | [diff] [blame] | 810 | error = -ETIMEDOUT; |
| 811 | |
Markus Pargmann | 0e4f0f6 | 2015-10-29 12:04:51 +0100 | [diff] [blame] | 812 | nbd_reset(nbd); |
Markus Pargmann | 1939183 | 2015-08-17 08:20:03 +0200 | [diff] [blame] | 813 | return error; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 814 | } |
| 815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | case NBD_CLEAR_QUE: |
Herbert Xu | 4b2f026 | 2006-01-06 00:09:47 -0800 | [diff] [blame] | 817 | /* |
| 818 | * This is for compatibility only. The queue is always cleared |
| 819 | * by NBD_DO_IT or NBD_CLEAR_SOCK. |
| 820 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | return 0; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 822 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | case NBD_PRINT_DEBUG: |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 824 | /* |
| 825 | * For compatibility only, we no longer keep a list of |
| 826 | * outstanding requests. |
| 827 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | return 0; |
| 829 | } |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 830 | return -ENOTTY; |
| 831 | } |
| 832 | |
| 833 | static int nbd_ioctl(struct block_device *bdev, fmode_t mode, |
| 834 | unsigned int cmd, unsigned long arg) |
| 835 | { |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 836 | struct nbd_device *nbd = bdev->bd_disk->private_data; |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 837 | int error; |
| 838 | |
| 839 | if (!capable(CAP_SYS_ADMIN)) |
| 840 | return -EPERM; |
| 841 | |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 842 | BUG_ON(nbd->magic != NBD_MAGIC); |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 843 | |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 844 | mutex_lock(&nbd->config_lock); |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 845 | error = __nbd_ioctl(bdev, nbd, cmd, arg); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 846 | mutex_unlock(&nbd->config_lock); |
Pavel Machek | 1a2ad21 | 2009-04-02 16:58:41 -0700 | [diff] [blame] | 847 | |
| 848 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 851 | static const struct block_device_operations nbd_fops = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | { |
| 853 | .owner = THIS_MODULE, |
Arnd Bergmann | 8a6cfeb | 2010-07-08 10:18:46 +0200 | [diff] [blame] | 854 | .ioctl = nbd_ioctl, |
Al Viro | 263a3df | 2016-01-07 10:04:37 -0500 | [diff] [blame] | 855 | .compat_ioctl = nbd_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | }; |
| 857 | |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 858 | #if IS_ENABLED(CONFIG_DEBUG_FS) |
| 859 | |
| 860 | static int nbd_dbg_tasks_show(struct seq_file *s, void *unused) |
| 861 | { |
| 862 | struct nbd_device *nbd = s->private; |
| 863 | |
| 864 | if (nbd->task_recv) |
| 865 | seq_printf(s, "recv: %d\n", task_pid_nr(nbd->task_recv)); |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 866 | |
| 867 | return 0; |
| 868 | } |
| 869 | |
| 870 | static int nbd_dbg_tasks_open(struct inode *inode, struct file *file) |
| 871 | { |
| 872 | return single_open(file, nbd_dbg_tasks_show, inode->i_private); |
| 873 | } |
| 874 | |
| 875 | static const struct file_operations nbd_dbg_tasks_ops = { |
| 876 | .open = nbd_dbg_tasks_open, |
| 877 | .read = seq_read, |
| 878 | .llseek = seq_lseek, |
| 879 | .release = single_release, |
| 880 | }; |
| 881 | |
| 882 | static int nbd_dbg_flags_show(struct seq_file *s, void *unused) |
| 883 | { |
| 884 | struct nbd_device *nbd = s->private; |
| 885 | u32 flags = nbd->flags; |
| 886 | |
| 887 | seq_printf(s, "Hex: 0x%08x\n\n", flags); |
| 888 | |
| 889 | seq_puts(s, "Known flags:\n"); |
| 890 | |
| 891 | if (flags & NBD_FLAG_HAS_FLAGS) |
| 892 | seq_puts(s, "NBD_FLAG_HAS_FLAGS\n"); |
| 893 | if (flags & NBD_FLAG_READ_ONLY) |
| 894 | seq_puts(s, "NBD_FLAG_READ_ONLY\n"); |
| 895 | if (flags & NBD_FLAG_SEND_FLUSH) |
| 896 | seq_puts(s, "NBD_FLAG_SEND_FLUSH\n"); |
| 897 | if (flags & NBD_FLAG_SEND_TRIM) |
| 898 | seq_puts(s, "NBD_FLAG_SEND_TRIM\n"); |
| 899 | |
| 900 | return 0; |
| 901 | } |
| 902 | |
| 903 | static int nbd_dbg_flags_open(struct inode *inode, struct file *file) |
| 904 | { |
| 905 | return single_open(file, nbd_dbg_flags_show, inode->i_private); |
| 906 | } |
| 907 | |
| 908 | static const struct file_operations nbd_dbg_flags_ops = { |
| 909 | .open = nbd_dbg_flags_open, |
| 910 | .read = seq_read, |
| 911 | .llseek = seq_lseek, |
| 912 | .release = single_release, |
| 913 | }; |
| 914 | |
| 915 | static int nbd_dev_dbg_init(struct nbd_device *nbd) |
| 916 | { |
| 917 | struct dentry *dir; |
Markus Pargmann | 27ea43f | 2015-10-24 21:15:34 +0200 | [diff] [blame] | 918 | |
| 919 | if (!nbd_dbg_dir) |
| 920 | return -EIO; |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 921 | |
| 922 | dir = debugfs_create_dir(nbd_name(nbd), nbd_dbg_dir); |
Markus Pargmann | 27ea43f | 2015-10-24 21:15:34 +0200 | [diff] [blame] | 923 | if (!dir) { |
| 924 | dev_err(nbd_to_dev(nbd), "Failed to create debugfs dir for '%s'\n", |
| 925 | nbd_name(nbd)); |
| 926 | return -EIO; |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 927 | } |
| 928 | nbd->dbg_dir = dir; |
| 929 | |
Markus Pargmann | 27ea43f | 2015-10-24 21:15:34 +0200 | [diff] [blame] | 930 | debugfs_create_file("tasks", 0444, dir, nbd, &nbd_dbg_tasks_ops); |
| 931 | debugfs_create_u64("size_bytes", 0444, dir, &nbd->bytesize); |
Josef Bacik | 0eadf37 | 2016-09-08 12:33:40 -0700 | [diff] [blame] | 932 | debugfs_create_u32("timeout", 0444, dir, &nbd->tag_set.timeout); |
Josef Bacik | ef77b51 | 2016-12-02 16:19:12 -0500 | [diff] [blame] | 933 | debugfs_create_u64("blocksize", 0444, dir, &nbd->blksize); |
Josef Bacik | d366a0f | 2016-06-08 10:32:10 -0400 | [diff] [blame] | 934 | debugfs_create_file("flags", 0444, dir, nbd, &nbd_dbg_flags_ops); |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 935 | |
| 936 | return 0; |
| 937 | } |
| 938 | |
| 939 | static void nbd_dev_dbg_close(struct nbd_device *nbd) |
| 940 | { |
| 941 | debugfs_remove_recursive(nbd->dbg_dir); |
| 942 | } |
| 943 | |
| 944 | static int nbd_dbg_init(void) |
| 945 | { |
| 946 | struct dentry *dbg_dir; |
| 947 | |
| 948 | dbg_dir = debugfs_create_dir("nbd", NULL); |
Markus Pargmann | 27ea43f | 2015-10-24 21:15:34 +0200 | [diff] [blame] | 949 | if (!dbg_dir) |
| 950 | return -EIO; |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 951 | |
| 952 | nbd_dbg_dir = dbg_dir; |
| 953 | |
| 954 | return 0; |
| 955 | } |
| 956 | |
| 957 | static void nbd_dbg_close(void) |
| 958 | { |
| 959 | debugfs_remove_recursive(nbd_dbg_dir); |
| 960 | } |
| 961 | |
| 962 | #else /* IS_ENABLED(CONFIG_DEBUG_FS) */ |
| 963 | |
| 964 | static int nbd_dev_dbg_init(struct nbd_device *nbd) |
| 965 | { |
| 966 | return 0; |
| 967 | } |
| 968 | |
| 969 | static void nbd_dev_dbg_close(struct nbd_device *nbd) |
| 970 | { |
| 971 | } |
| 972 | |
| 973 | static int nbd_dbg_init(void) |
| 974 | { |
| 975 | return 0; |
| 976 | } |
| 977 | |
| 978 | static void nbd_dbg_close(void) |
| 979 | { |
| 980 | } |
| 981 | |
| 982 | #endif |
| 983 | |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 984 | static int nbd_init_request(void *data, struct request *rq, |
| 985 | unsigned int hctx_idx, unsigned int request_idx, |
| 986 | unsigned int numa_node) |
| 987 | { |
| 988 | struct nbd_cmd *cmd = blk_mq_rq_to_pdu(rq); |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 989 | cmd->nbd = data; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 990 | return 0; |
| 991 | } |
| 992 | |
| 993 | static struct blk_mq_ops nbd_mq_ops = { |
| 994 | .queue_rq = nbd_queue_rq, |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 995 | .init_request = nbd_init_request, |
Josef Bacik | 0eadf37 | 2016-09-08 12:33:40 -0700 | [diff] [blame] | 996 | .timeout = nbd_xmit_timeout, |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 997 | }; |
| 998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | /* |
| 1000 | * And here should be modules and kernel interface |
| 1001 | * (Just smiley confuses emacs :-) |
| 1002 | */ |
| 1003 | |
| 1004 | static int __init nbd_init(void) |
| 1005 | { |
| 1006 | int err = -ENOMEM; |
| 1007 | int i; |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 1008 | int part_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | |
Adrian Bunk | 5b7b18c | 2006-03-25 03:07:04 -0800 | [diff] [blame] | 1010 | BUILD_BUG_ON(sizeof(struct nbd_request) != 28); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 1012 | if (max_part < 0) { |
WANG Cong | 7742ce4 | 2011-08-19 14:48:28 +0200 | [diff] [blame] | 1013 | printk(KERN_ERR "nbd: max_part must be >= 0\n"); |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 1014 | return -EINVAL; |
| 1015 | } |
| 1016 | |
| 1017 | part_shift = 0; |
Namhyung Kim | 5988ce2 | 2011-05-28 14:44:46 +0200 | [diff] [blame] | 1018 | if (max_part > 0) { |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 1019 | part_shift = fls(max_part); |
| 1020 | |
Namhyung Kim | 5988ce2 | 2011-05-28 14:44:46 +0200 | [diff] [blame] | 1021 | /* |
| 1022 | * Adjust max_part according to part_shift as it is exported |
| 1023 | * to user space so that user can know the max number of |
| 1024 | * partition kernel should be able to manage. |
| 1025 | * |
| 1026 | * Note that -1 is required because partition 0 is reserved |
| 1027 | * for the whole disk. |
| 1028 | */ |
| 1029 | max_part = (1UL << part_shift) - 1; |
| 1030 | } |
| 1031 | |
Namhyung Kim | 3b27108 | 2011-05-28 14:44:46 +0200 | [diff] [blame] | 1032 | if ((1UL << part_shift) > DISK_MAX_PARTS) |
| 1033 | return -EINVAL; |
| 1034 | |
| 1035 | if (nbds_max > 1UL << (MINORBITS - part_shift)) |
| 1036 | return -EINVAL; |
| 1037 | |
Sudip Mukherjee | ff6b809 | 2015-01-27 18:08:22 +0530 | [diff] [blame] | 1038 | nbd_dev = kcalloc(nbds_max, sizeof(*nbd_dev), GFP_KERNEL); |
| 1039 | if (!nbd_dev) |
| 1040 | return -ENOMEM; |
| 1041 | |
Lars Marowsky-Bree | 40be0c2 | 2005-05-01 08:59:07 -0700 | [diff] [blame] | 1042 | for (i = 0; i < nbds_max; i++) { |
Jeff Moyer | 25b4acf | 2017-01-09 15:20:31 -0500 | [diff] [blame] | 1043 | struct request_queue *q; |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 1044 | struct gendisk *disk = alloc_disk(1 << part_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | if (!disk) |
| 1046 | goto out; |
| 1047 | nbd_dev[i].disk = disk; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 1048 | |
| 1049 | nbd_dev[i].tag_set.ops = &nbd_mq_ops; |
| 1050 | nbd_dev[i].tag_set.nr_hw_queues = 1; |
| 1051 | nbd_dev[i].tag_set.queue_depth = 128; |
| 1052 | nbd_dev[i].tag_set.numa_node = NUMA_NO_NODE; |
| 1053 | nbd_dev[i].tag_set.cmd_size = sizeof(struct nbd_cmd); |
| 1054 | nbd_dev[i].tag_set.flags = BLK_MQ_F_SHOULD_MERGE | |
Josef Bacik | 005043a | 2016-09-21 16:55:31 -0400 | [diff] [blame] | 1055 | BLK_MQ_F_SG_MERGE | BLK_MQ_F_BLOCKING; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 1056 | nbd_dev[i].tag_set.driver_data = &nbd_dev[i]; |
| 1057 | |
| 1058 | err = blk_mq_alloc_tag_set(&nbd_dev[i].tag_set); |
| 1059 | if (err) { |
| 1060 | put_disk(disk); |
| 1061 | goto out; |
| 1062 | } |
| 1063 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | /* |
| 1065 | * The new linux 2.5 block layer implementation requires |
| 1066 | * every gendisk to have its very own request_queue struct. |
| 1067 | * These structs are big so we dynamically allocate them. |
| 1068 | */ |
Jeff Moyer | 25b4acf | 2017-01-09 15:20:31 -0500 | [diff] [blame] | 1069 | q = blk_mq_init_queue(&nbd_dev[i].tag_set); |
| 1070 | if (IS_ERR(q)) { |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 1071 | blk_mq_free_tag_set(&nbd_dev[i].tag_set); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | put_disk(disk); |
| 1073 | goto out; |
| 1074 | } |
Jeff Moyer | 25b4acf | 2017-01-09 15:20:31 -0500 | [diff] [blame] | 1075 | disk->queue = q; |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 1076 | |
Jens Axboe | 31dcfab | 2008-10-31 10:06:37 +0100 | [diff] [blame] | 1077 | /* |
| 1078 | * Tell the block layer that we are not a rotational device |
| 1079 | */ |
| 1080 | queue_flag_set_unlocked(QUEUE_FLAG_NONROT, disk->queue); |
Mike Snitzer | b277da0 | 2014-10-04 10:55:32 -0600 | [diff] [blame] | 1081 | queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, disk->queue); |
Paul Clements | a336d29 | 2012-10-04 17:16:18 -0700 | [diff] [blame] | 1082 | disk->queue->limits.discard_granularity = 512; |
Jens Axboe | 2bb4cd5 | 2015-07-14 08:15:12 -0600 | [diff] [blame] | 1083 | blk_queue_max_discard_sectors(disk->queue, UINT_MAX); |
Paul Clements | a336d29 | 2012-10-04 17:16:18 -0700 | [diff] [blame] | 1084 | disk->queue->limits.discard_zeroes_data = 0; |
Michal Belczyk | 078be02 | 2013-04-30 15:28:28 -0700 | [diff] [blame] | 1085 | blk_queue_max_hw_sectors(disk->queue, 65536); |
| 1086 | disk->queue->limits.max_sectors = 256; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
| 1089 | if (register_blkdev(NBD_MAJOR, "nbd")) { |
| 1090 | err = -EIO; |
| 1091 | goto out; |
| 1092 | } |
| 1093 | |
| 1094 | printk(KERN_INFO "nbd: registered device at major %d\n", NBD_MAJOR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 1096 | nbd_dbg_init(); |
| 1097 | |
Lars Marowsky-Bree | 40be0c2 | 2005-05-01 08:59:07 -0700 | [diff] [blame] | 1098 | for (i = 0; i < nbds_max; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | struct gendisk *disk = nbd_dev[i].disk; |
Wanlong Gao | f450716 | 2012-03-28 14:42:51 -0700 | [diff] [blame] | 1100 | nbd_dev[i].magic = NBD_MAGIC; |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 1101 | mutex_init(&nbd_dev[i].config_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | disk->major = NBD_MAJOR; |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 1103 | disk->first_minor = i << part_shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | disk->fops = &nbd_fops; |
| 1105 | disk->private_data = &nbd_dev[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | sprintf(disk->disk_name, "nbd%d", i); |
Josef Bacik | 9561a7a | 2016-11-22 14:04:40 -0500 | [diff] [blame] | 1107 | init_waitqueue_head(&nbd_dev[i].recv_wq); |
Markus Pargmann | 0e4f0f6 | 2015-10-29 12:04:51 +0100 | [diff] [blame] | 1108 | nbd_reset(&nbd_dev[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | add_disk(disk); |
| 1110 | } |
| 1111 | |
| 1112 | return 0; |
| 1113 | out: |
| 1114 | while (i--) { |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 1115 | blk_mq_free_tag_set(&nbd_dev[i].tag_set); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | blk_cleanup_queue(nbd_dev[i].disk->queue); |
| 1117 | put_disk(nbd_dev[i].disk); |
| 1118 | } |
Sven Wegener | f3944d6 | 2008-08-20 14:09:07 -0700 | [diff] [blame] | 1119 | kfree(nbd_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | return err; |
| 1121 | } |
| 1122 | |
| 1123 | static void __exit nbd_cleanup(void) |
| 1124 | { |
| 1125 | int i; |
Markus Pargmann | 30d53d9 | 2015-08-17 08:20:06 +0200 | [diff] [blame] | 1126 | |
| 1127 | nbd_dbg_close(); |
| 1128 | |
Lars Marowsky-Bree | 40be0c2 | 2005-05-01 08:59:07 -0700 | [diff] [blame] | 1129 | for (i = 0; i < nbds_max; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | struct gendisk *disk = nbd_dev[i].disk; |
Lars Marowsky-Bree | 40be0c2 | 2005-05-01 08:59:07 -0700 | [diff] [blame] | 1131 | nbd_dev[i].magic = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | if (disk) { |
| 1133 | del_gendisk(disk); |
| 1134 | blk_cleanup_queue(disk->queue); |
Josef Bacik | fd8383f | 2016-09-08 12:33:37 -0700 | [diff] [blame] | 1135 | blk_mq_free_tag_set(&nbd_dev[i].tag_set); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | put_disk(disk); |
| 1137 | } |
| 1138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | unregister_blkdev(NBD_MAJOR, "nbd"); |
Sven Wegener | f3944d6 | 2008-08-20 14:09:07 -0700 | [diff] [blame] | 1140 | kfree(nbd_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | printk(KERN_INFO "nbd: unregistered device at major %d\n", NBD_MAJOR); |
| 1142 | } |
| 1143 | |
| 1144 | module_init(nbd_init); |
| 1145 | module_exit(nbd_cleanup); |
| 1146 | |
| 1147 | MODULE_DESCRIPTION("Network Block Device"); |
| 1148 | MODULE_LICENSE("GPL"); |
| 1149 | |
Lars Marowsky-Bree | 40be0c2 | 2005-05-01 08:59:07 -0700 | [diff] [blame] | 1150 | module_param(nbds_max, int, 0444); |
Laurent Vivier | d71a6d7 | 2008-04-29 01:02:51 -0700 | [diff] [blame] | 1151 | MODULE_PARM_DESC(nbds_max, "number of network block devices to initialize (default: 16)"); |
| 1152 | module_param(max_part, int, 0444); |
| 1153 | MODULE_PARM_DESC(max_part, "number of partitions per device (default: 0)"); |