blob: 2aa87cbdede0ed19b77c8e4aaffea2c2d8146758 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Macheka2531292010-07-18 14:27:13 +02007 * Copyright 1997-2000, 2008 Pavel Machek <pavel@ucw.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Parts copyright 2001 Steven Whitehouse <steve@chygwyn.com>
9 *
Pavel Machekdbf492d2006-06-25 05:47:42 -070010 * This file is released under GPLv2 or later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Pavel Machekdbf492d2006-06-25 05:47:42 -070012 * (part of code stolen from loop.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
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>
Vlastimil Babkaf1083042017-05-08 15:59:53 -070021#include <linux/sched/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/fs.h>
23#include <linux/bio.h>
24#include <linux/stat.h>
25#include <linux/errno.h>
26#include <linux/file.h>
27#include <linux/ioctl.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020028#include <linux/mutex.h>
Herbert Xu4b2f0262006-01-06 00:09:47 -080029#include <linux/compiler.h>
30#include <linux/err.h>
31#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <net/sock.h>
Trond Myklebust91cf45f2007-11-12 18:10:39 -080034#include <linux/net.h>
Laurent Vivier48cf6062008-04-29 01:02:46 -070035#include <linux/kthread.h>
Markus Pargmannb9c495b2015-04-02 10:11:37 +020036#include <linux/types.h>
Markus Pargmann30d53d92015-08-17 08:20:06 +020037#include <linux/debugfs.h>
Josef Bacikfd8383f2016-09-08 12:33:37 -070038#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/types.h>
42
43#include <linux/nbd.h>
Josef Bacike46c7282017-04-06 17:02:00 -040044#include <linux/nbd-netlink.h>
45#include <net/genetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Josef Bacikb0d91112017-02-01 16:11:40 -050047static DEFINE_IDR(nbd_index_idr);
48static DEFINE_MUTEX(nbd_index_mutex);
Josef Bacik47d902b2017-04-06 17:02:05 -040049static int nbd_total_devices = 0;
Josef Bacikb0d91112017-02-01 16:11:40 -050050
Josef Bacik9561a7a2016-11-22 14:04:40 -050051struct nbd_sock {
52 struct socket *sock;
53 struct mutex tx_lock;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -040054 struct request *pending;
55 int sent;
Josef Bacikf3733242017-04-06 17:01:57 -040056 bool dead;
57 int fallback_index;
Josef Bacik799f9a32017-04-06 17:02:02 -040058 int cookie;
Josef Bacik9561a7a2016-11-22 14:04:40 -050059};
60
Josef Bacik5ea8d102017-04-06 17:01:58 -040061struct recv_thread_args {
62 struct work_struct work;
63 struct nbd_device *nbd;
64 int index;
65};
66
Josef Bacik799f9a32017-04-06 17:02:02 -040067struct link_dead_args {
68 struct work_struct work;
69 int index;
70};
71
Josef Bacik9b4a6ba2016-09-08 12:33:39 -070072#define NBD_TIMEDOUT 0
73#define NBD_DISCONNECT_REQUESTED 1
Josef Bacik9561a7a2016-11-22 14:04:40 -050074#define NBD_DISCONNECTED 2
Josef Bacik5ea8d102017-04-06 17:01:58 -040075#define NBD_HAS_PID_FILE 3
Josef Bacike46c7282017-04-06 17:02:00 -040076#define NBD_HAS_CONFIG_REF 4
77#define NBD_BOUND 5
Josef Bacika2c97902017-04-06 17:02:07 -040078#define NBD_DESTROY_ON_DISCONNECT 6
Josef Bacik9b4a6ba2016-09-08 12:33:39 -070079
Josef Bacik5ea8d102017-04-06 17:01:58 -040080struct nbd_config {
Markus Pargmann22d109c2015-08-17 08:20:09 +020081 u32 flags;
Josef Bacik9b4a6ba2016-09-08 12:33:39 -070082 unsigned long runtime_flags;
Josef Bacik560bc4b2017-04-06 17:02:04 -040083 u64 dead_conn_timeout;
Josef Bacik5ea8d102017-04-06 17:01:58 -040084
Josef Bacik9561a7a2016-11-22 14:04:40 -050085 struct nbd_sock **socks;
Josef Bacik9561a7a2016-11-22 14:04:40 -050086 int num_connections;
Josef Bacik560bc4b2017-04-06 17:02:04 -040087 atomic_t live_connections;
88 wait_queue_head_t conn_wait;
Josef Bacik5ea8d102017-04-06 17:01:58 -040089
Josef Bacik9561a7a2016-11-22 14:04:40 -050090 atomic_t recv_threads;
91 wait_queue_head_t recv_wq;
Josef Bacikef77b512016-12-02 16:19:12 -050092 loff_t blksize;
Markus Pargmannb9c495b2015-04-02 10:11:37 +020093 loff_t bytesize;
Markus Pargmann30d53d92015-08-17 08:20:06 +020094#if IS_ENABLED(CONFIG_DEBUG_FS)
95 struct dentry *dbg_dir;
96#endif
Markus Pargmann13e71d62015-04-02 10:11:35 +020097};
98
Josef Bacik5ea8d102017-04-06 17:01:58 -040099struct nbd_device {
100 struct blk_mq_tag_set tag_set;
101
Josef Bacike46c7282017-04-06 17:02:00 -0400102 int index;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400103 refcount_t config_refs;
Josef Bacikc6a47592017-04-06 17:02:06 -0400104 refcount_t refs;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400105 struct nbd_config *config;
106 struct mutex config_lock;
107 struct gendisk *disk;
108
Josef Bacikc6a47592017-04-06 17:02:06 -0400109 struct list_head list;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400110 struct task_struct *task_recv;
111 struct task_struct *task_setup;
112};
113
Josef Bacikfd8383f2016-09-08 12:33:37 -0700114struct nbd_cmd {
115 struct nbd_device *nbd;
Josef Bacikf3733242017-04-06 17:01:57 -0400116 int index;
Josef Bacik799f9a32017-04-06 17:02:02 -0400117 int cookie;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500118 struct completion send_complete;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200119 blk_status_t status;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700120};
121
Markus Pargmann30d53d92015-08-17 08:20:06 +0200122#if IS_ENABLED(CONFIG_DEBUG_FS)
123static struct dentry *nbd_dbg_dir;
124#endif
125
126#define nbd_name(nbd) ((nbd)->disk->disk_name)
127
Wanlong Gaof4507162012-03-28 14:42:51 -0700128#define NBD_MAGIC 0x68797548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Ingo van Lil9c7a4162006-07-01 04:36:36 -0700130static unsigned int nbds_max = 16;
Josef Bacik7a8362a2017-08-14 18:56:16 +0000131static int max_part = 16;
Josef Bacik124d6db2017-02-01 16:11:11 -0500132static struct workqueue_struct *recv_workqueue;
Josef Bacikb0d91112017-02-01 16:11:40 -0500133static int part_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Josef Bacik9442b732017-02-07 17:10:22 -0500135static int nbd_dev_dbg_init(struct nbd_device *nbd);
136static void nbd_dev_dbg_close(struct nbd_device *nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400137static void nbd_config_put(struct nbd_device *nbd);
Josef Bacike46c7282017-04-06 17:02:00 -0400138static void nbd_connect_reply(struct genl_info *info, int index);
Josef Bacik47d902b2017-04-06 17:02:05 -0400139static int nbd_genl_status(struct sk_buff *skb, struct genl_info *info);
Josef Bacik799f9a32017-04-06 17:02:02 -0400140static void nbd_dead_link_work(struct work_struct *work);
Josef Bacik9442b732017-02-07 17:10:22 -0500141
Markus Pargmannd18509f2015-04-02 10:11:38 +0200142static inline struct device *nbd_to_dev(struct nbd_device *nbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Markus Pargmannd18509f2015-04-02 10:11:38 +0200144 return disk_to_dev(nbd->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
147static const char *nbdcmd_to_ascii(int cmd)
148{
149 switch (cmd) {
150 case NBD_CMD_READ: return "read";
151 case NBD_CMD_WRITE: return "write";
152 case NBD_CMD_DISC: return "disconnect";
Alex Bligh75f187a2013-02-27 17:05:23 -0800153 case NBD_CMD_FLUSH: return "flush";
Paul Clementsa336d292012-10-04 17:16:18 -0700154 case NBD_CMD_TRIM: return "trim/discard";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156 return "invalid";
157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Josef Bacik5ea8d102017-04-06 17:01:58 -0400159static ssize_t pid_show(struct device *dev,
160 struct device_attribute *attr, char *buf)
161{
162 struct gendisk *disk = dev_to_disk(dev);
163 struct nbd_device *nbd = (struct nbd_device *)disk->private_data;
164
165 return sprintf(buf, "%d\n", task_pid_nr(nbd->task_recv));
166}
167
Bhumika Goyaldfbde552017-08-21 17:13:08 +0530168static const struct device_attribute pid_attr = {
Josef Bacik5ea8d102017-04-06 17:01:58 -0400169 .attr = { .name = "pid", .mode = S_IRUGO},
170 .show = pid_show,
171};
172
Josef Bacikc6a47592017-04-06 17:02:06 -0400173static void nbd_dev_remove(struct nbd_device *nbd)
174{
175 struct gendisk *disk = nbd->disk;
176 if (disk) {
177 del_gendisk(disk);
178 blk_cleanup_queue(disk->queue);
179 blk_mq_free_tag_set(&nbd->tag_set);
Josef Bacika2c97902017-04-06 17:02:07 -0400180 disk->private_data = NULL;
Josef Bacikc6a47592017-04-06 17:02:06 -0400181 put_disk(disk);
182 }
183 kfree(nbd);
184}
185
186static void nbd_put(struct nbd_device *nbd)
187{
188 if (refcount_dec_and_mutex_lock(&nbd->refs,
189 &nbd_index_mutex)) {
190 idr_remove(&nbd_index_idr, nbd->index);
191 mutex_unlock(&nbd_index_mutex);
192 nbd_dev_remove(nbd);
193 }
194}
195
Josef Bacik799f9a32017-04-06 17:02:02 -0400196static int nbd_disconnected(struct nbd_config *config)
Josef Bacikf3733242017-04-06 17:01:57 -0400197{
Josef Bacik799f9a32017-04-06 17:02:02 -0400198 return test_bit(NBD_DISCONNECTED, &config->runtime_flags) ||
199 test_bit(NBD_DISCONNECT_REQUESTED, &config->runtime_flags);
200}
201
202static void nbd_mark_nsock_dead(struct nbd_device *nbd, struct nbd_sock *nsock,
203 int notify)
204{
205 if (!nsock->dead && notify && !nbd_disconnected(nbd->config)) {
206 struct link_dead_args *args;
207 args = kmalloc(sizeof(struct link_dead_args), GFP_NOIO);
208 if (args) {
209 INIT_WORK(&args->work, nbd_dead_link_work);
210 args->index = nbd->index;
211 queue_work(system_wq, &args->work);
212 }
213 }
Josef Bacik560bc4b2017-04-06 17:02:04 -0400214 if (!nsock->dead) {
Josef Bacikf3733242017-04-06 17:01:57 -0400215 kernel_sock_shutdown(nsock->sock, SHUT_RDWR);
Josef Bacik560bc4b2017-04-06 17:02:04 -0400216 atomic_dec(&nbd->config->live_connections);
217 }
Josef Bacikf3733242017-04-06 17:01:57 -0400218 nsock->dead = true;
219 nsock->pending = NULL;
220 nsock->sent = 0;
221}
222
Josef Bacik29eaadc2017-04-06 17:01:59 -0400223static void nbd_size_clear(struct nbd_device *nbd)
Markus Pargmann37091fd2015-07-27 07:36:49 +0200224{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400225 if (nbd->config->bytesize) {
Josef Bacik5ea8d102017-04-06 17:01:58 -0400226 set_capacity(nbd->disk, 0);
227 kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE);
228 }
Markus Pargmann37091fd2015-07-27 07:36:49 +0200229}
230
Josef Bacik29eaadc2017-04-06 17:01:59 -0400231static void nbd_size_update(struct nbd_device *nbd)
Markus Pargmann37091fd2015-07-27 07:36:49 +0200232{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400233 struct nbd_config *config = nbd->config;
234 blk_queue_logical_block_size(nbd->disk->queue, config->blksize);
235 blk_queue_physical_block_size(nbd->disk->queue, config->blksize);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400236 set_capacity(nbd->disk, config->bytesize >> 9);
Markus Pargmann37091fd2015-07-27 07:36:49 +0200237 kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE);
238}
239
Josef Bacik29eaadc2017-04-06 17:01:59 -0400240static void nbd_size_set(struct nbd_device *nbd, loff_t blocksize,
241 loff_t nr_blocks)
Markus Pargmann37091fd2015-07-27 07:36:49 +0200242{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400243 struct nbd_config *config = nbd->config;
244 config->blksize = blocksize;
245 config->bytesize = blocksize * nr_blocks;
Josef Bacik29eaadc2017-04-06 17:01:59 -0400246 nbd_size_update(nbd);
Markus Pargmann37091fd2015-07-27 07:36:49 +0200247}
248
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200249static void nbd_complete_rq(struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200251 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200253 dev_dbg(nbd_to_dev(cmd->nbd), "request %p: %s\n", cmd,
254 cmd->status ? "failed" : "done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200256 blk_mq_end_request(req, cmd->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Markus Pargmanne018e752015-04-02 10:11:39 +0200259/*
260 * Forcibly shutdown the socket causing all listeners to error
261 */
Markus Pargmann36e47be2015-08-17 08:20:01 +0200262static void sock_shutdown(struct nbd_device *nbd)
Paul Clements7fdfd402007-10-16 23:27:37 -0700263{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400264 struct nbd_config *config = nbd->config;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500265 int i;
Josef Bacikc2611892016-09-08 12:33:38 -0700266
Josef Bacik5ea8d102017-04-06 17:01:58 -0400267 if (config->num_connections == 0)
Markus Pargmann260bbce2015-08-17 08:20:02 +0200268 return;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400269 if (test_and_set_bit(NBD_DISCONNECTED, &config->runtime_flags))
Josef Bacik9561a7a2016-11-22 14:04:40 -0500270 return;
271
Josef Bacik5ea8d102017-04-06 17:01:58 -0400272 for (i = 0; i < config->num_connections; i++) {
273 struct nbd_sock *nsock = config->socks[i];
Josef Bacik9561a7a2016-11-22 14:04:40 -0500274 mutex_lock(&nsock->tx_lock);
Josef Bacik799f9a32017-04-06 17:02:02 -0400275 nbd_mark_nsock_dead(nbd, nsock, 0);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500276 mutex_unlock(&nsock->tx_lock);
Markus Pargmann23272a672015-10-29 11:51:16 +0100277 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500278 dev_warn(disk_to_dev(nbd->disk), "shutting down sockets\n");
Paul Clements7fdfd402007-10-16 23:27:37 -0700279}
280
Josef Bacik0eadf372016-09-08 12:33:40 -0700281static enum blk_eh_timer_return nbd_xmit_timeout(struct request *req,
282 bool reserved)
Paul Clements7fdfd402007-10-16 23:27:37 -0700283{
Josef Bacik0eadf372016-09-08 12:33:40 -0700284 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(req);
285 struct nbd_device *nbd = cmd->nbd;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400286 struct nbd_config *config;
Paul Clements7fdfd402007-10-16 23:27:37 -0700287
Josef Bacik5ea8d102017-04-06 17:01:58 -0400288 if (!refcount_inc_not_zero(&nbd->config_refs)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200289 cmd->status = BLK_STS_TIMEOUT;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400290 return BLK_EH_HANDLED;
291 }
292
Josef Bacik560bc4b2017-04-06 17:02:04 -0400293 /* If we are waiting on our dead timer then we could get timeout
294 * callbacks for our request. For this we just want to reset the timer
295 * and let the queue side take care of everything.
296 */
297 if (!completion_done(&cmd->send_complete)) {
298 nbd_config_put(nbd);
299 return BLK_EH_RESET_TIMER;
300 }
Josef Bacik5ea8d102017-04-06 17:01:58 -0400301 config = nbd->config;
302
303 if (config->num_connections > 1) {
Josef Bacikf3733242017-04-06 17:01:57 -0400304 dev_err_ratelimited(nbd_to_dev(nbd),
305 "Connection timed out, retrying\n");
Josef Bacikf3733242017-04-06 17:01:57 -0400306 /*
307 * Hooray we have more connections, requeue this IO, the submit
308 * path will put it on a real connection.
309 */
Josef Bacik5ea8d102017-04-06 17:01:58 -0400310 if (config->socks && config->num_connections > 1) {
311 if (cmd->index < config->num_connections) {
Josef Bacikf3733242017-04-06 17:01:57 -0400312 struct nbd_sock *nsock =
Josef Bacik5ea8d102017-04-06 17:01:58 -0400313 config->socks[cmd->index];
Josef Bacikf3733242017-04-06 17:01:57 -0400314 mutex_lock(&nsock->tx_lock);
Josef Bacik799f9a32017-04-06 17:02:02 -0400315 /* We can have multiple outstanding requests, so
316 * we don't want to mark the nsock dead if we've
317 * already reconnected with a new socket, so
318 * only mark it dead if its the same socket we
319 * were sent out on.
320 */
321 if (cmd->cookie == nsock->cookie)
322 nbd_mark_nsock_dead(nbd, nsock, 1);
Josef Bacikf3733242017-04-06 17:01:57 -0400323 mutex_unlock(&nsock->tx_lock);
324 }
Josef Bacikf3733242017-04-06 17:01:57 -0400325 blk_mq_requeue_request(req, true);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400326 nbd_config_put(nbd);
Josef Bacikf3733242017-04-06 17:01:57 -0400327 return BLK_EH_NOT_HANDLED;
328 }
Josef Bacikf3733242017-04-06 17:01:57 -0400329 } else {
330 dev_err_ratelimited(nbd_to_dev(nbd),
331 "Connection timed out\n");
332 }
Josef Bacik5ea8d102017-04-06 17:01:58 -0400333 set_bit(NBD_TIMEDOUT, &config->runtime_flags);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200334 cmd->status = BLK_STS_IOERR;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500335 sock_shutdown(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400336 nbd_config_put(nbd);
337
Josef Bacik0eadf372016-09-08 12:33:40 -0700338 return BLK_EH_HANDLED;
Paul Clements7fdfd402007-10-16 23:27:37 -0700339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/*
342 * Send or receive packet.
343 */
Al Viroc9f2b6a2015-11-12 05:09:35 -0500344static int sock_xmit(struct nbd_device *nbd, int index, int send,
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400345 struct iov_iter *iter, int msg_flags, int *sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400347 struct nbd_config *config = nbd->config;
348 struct socket *sock = config->socks[index]->sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 int result;
350 struct msghdr msg;
Vlastimil Babkaf1083042017-05-08 15:59:53 -0700351 unsigned int noreclaim_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Mike Snitzerffc41cf2008-04-02 13:04:47 -0700353 if (unlikely(!sock)) {
Josef Bacika897b662016-12-05 16:20:29 -0500354 dev_err_ratelimited(disk_to_dev(nbd->disk),
WANG Cong7f1b90f2011-08-19 14:48:22 +0200355 "Attempted %s on closed socket in sock_xmit\n",
356 (send ? "send" : "recv"));
Mike Snitzerffc41cf2008-04-02 13:04:47 -0700357 return -EINVAL;
358 }
359
Al Viroc9f2b6a2015-11-12 05:09:35 -0500360 msg.msg_iter = *iter;
Al Viroc1696ca2015-11-12 04:51:19 -0500361
Vlastimil Babkaf1083042017-05-08 15:59:53 -0700362 noreclaim_flag = memalloc_noreclaim_save();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 do {
Mel Gorman7f338fe2012-07-31 16:44:32 -0700364 sock->sk->sk_allocation = GFP_NOIO | __GFP_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 msg.msg_name = NULL;
366 msg.msg_namelen = 0;
367 msg.msg_control = NULL;
368 msg.msg_controllen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
370
Markus Pargmann7e2893a2015-08-17 08:20:00 +0200371 if (send)
Al Viroc1696ca2015-11-12 04:51:19 -0500372 result = sock_sendmsg(sock, &msg);
Markus Pargmann7e2893a2015-08-17 08:20:00 +0200373 else
Al Viroc1696ca2015-11-12 04:51:19 -0500374 result = sock_recvmsg(sock, &msg, msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (result <= 0) {
377 if (result == 0)
378 result = -EPIPE; /* short read */
379 break;
380 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400381 if (sent)
382 *sent += result;
Al Viroc1696ca2015-11-12 04:51:19 -0500383 } while (msg_data_left(&msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Vlastimil Babkaf1083042017-05-08 15:59:53 -0700385 memalloc_noreclaim_restore(noreclaim_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 return result;
388}
389
Paul Clements7fdfd402007-10-16 23:27:37 -0700390/* always call with the tx_lock held */
Josef Bacik9561a7a2016-11-22 14:04:40 -0500391static int nbd_send_cmd(struct nbd_device *nbd, struct nbd_cmd *cmd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Josef Bacikfd8383f2016-09-08 12:33:37 -0700393 struct request *req = blk_mq_rq_from_pdu(cmd);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400394 struct nbd_config *config = nbd->config;
395 struct nbd_sock *nsock = config->socks[index];
Josef Bacikd61b7f92017-01-19 16:08:49 -0500396 int result;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500397 struct nbd_request request = {.magic = htonl(NBD_REQUEST_MAGIC)};
398 struct kvec iov = {.iov_base = &request, .iov_len = sizeof(request)};
399 struct iov_iter from;
Tejun Heo1011c1b2009-05-07 22:24:45 +0900400 unsigned long size = blk_rq_bytes(req);
Jens Axboe429a7872016-11-17 12:30:37 -0700401 struct bio *bio;
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200402 u32 type;
Shaun McDowell685c9b22017-05-25 23:55:54 -0400403 u32 nbd_cmd_flags = 0;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500404 u32 tag = blk_mq_unique_tag(req);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400405 int sent = nsock->sent, skip = 0;
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200406
Al Viroc9f2b6a2015-11-12 05:09:35 -0500407 iov_iter_kvec(&from, WRITE | ITER_KVEC, &iov, 1, sizeof(request));
408
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100409 switch (req_op(req)) {
410 case REQ_OP_DISCARD:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200411 type = NBD_CMD_TRIM;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100412 break;
413 case REQ_OP_FLUSH:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200414 type = NBD_CMD_FLUSH;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100415 break;
416 case REQ_OP_WRITE:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200417 type = NBD_CMD_WRITE;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100418 break;
419 case REQ_OP_READ:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200420 type = NBD_CMD_READ;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100421 break;
422 default:
423 return -EIO;
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Christoph Hellwig09fc54cc2017-01-31 16:57:28 +0100426 if (rq_data_dir(req) == WRITE &&
Josef Bacik5ea8d102017-04-06 17:01:58 -0400427 (config->flags & NBD_FLAG_READ_ONLY)) {
Christoph Hellwig09fc54cc2017-01-31 16:57:28 +0100428 dev_err_ratelimited(disk_to_dev(nbd->disk),
429 "Write on read-only\n");
430 return -EIO;
431 }
432
Shaun McDowell685c9b22017-05-25 23:55:54 -0400433 if (req->cmd_flags & REQ_FUA)
434 nbd_cmd_flags |= NBD_CMD_FLAG_FUA;
435
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400436 /* We did a partial send previously, and we at least sent the whole
437 * request struct, so just go and send the rest of the pages in the
438 * request.
439 */
440 if (sent) {
441 if (sent >= sizeof(request)) {
442 skip = sent - sizeof(request);
443 goto send_pages;
444 }
445 iov_iter_advance(&from, sent);
446 }
Josef Bacikf3733242017-04-06 17:01:57 -0400447 cmd->index = index;
Josef Bacik799f9a32017-04-06 17:02:02 -0400448 cmd->cookie = nsock->cookie;
Shaun McDowell685c9b22017-05-25 23:55:54 -0400449 request.type = htonl(type | nbd_cmd_flags);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500450 if (type != NBD_CMD_FLUSH) {
Alex Bligh75f187a2013-02-27 17:05:23 -0800451 request.from = cpu_to_be64((u64)blk_rq_pos(req) << 9);
452 request.len = htonl(size);
453 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500454 memcpy(request.handle, &tag, sizeof(tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Markus Pargmannd18509f2015-04-02 10:11:38 +0200456 dev_dbg(nbd_to_dev(nbd), "request %p: sending control (%s@%llu,%uB)\n",
Josef Bacikfd8383f2016-09-08 12:33:37 -0700457 cmd, nbdcmd_to_ascii(type),
Markus Pargmannd18509f2015-04-02 10:11:38 +0200458 (unsigned long long)blk_rq_pos(req) << 9, blk_rq_bytes(req));
Al Viroc9f2b6a2015-11-12 05:09:35 -0500459 result = sock_xmit(nbd, index, 1, &from,
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400460 (type == NBD_CMD_WRITE) ? MSG_MORE : 0, &sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (result <= 0) {
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400462 if (result == -ERESTARTSYS) {
463 /* If we havne't sent anything we can just return BUSY,
464 * however if we have sent something we need to make
465 * sure we only allow this req to be sent until we are
466 * completely done.
467 */
468 if (sent) {
469 nsock->pending = req;
470 nsock->sent = sent;
471 }
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200472 return BLK_STS_RESOURCE;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400473 }
Josef Bacika897b662016-12-05 16:20:29 -0500474 dev_err_ratelimited(disk_to_dev(nbd->disk),
WANG Cong7f1b90f2011-08-19 14:48:22 +0200475 "Send control failed (result %d)\n", result);
Josef Bacikf3733242017-04-06 17:01:57 -0400476 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400478send_pages:
Jens Axboe429a7872016-11-17 12:30:37 -0700479 if (type != NBD_CMD_WRITE)
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400480 goto out;
Jens Axboe429a7872016-11-17 12:30:37 -0700481
Jens Axboe429a7872016-11-17 12:30:37 -0700482 bio = req->bio;
483 while (bio) {
484 struct bio *next = bio->bi_next;
485 struct bvec_iter iter;
Kent Overstreet79886132013-11-23 17:19:00 -0800486 struct bio_vec bvec;
Jens Axboe429a7872016-11-17 12:30:37 -0700487
488 bio_for_each_segment(bvec, bio, iter) {
489 bool is_last = !next && bio_iter_last(bvec, iter);
Josef Bacikd61b7f92017-01-19 16:08:49 -0500490 int flags = is_last ? 0 : MSG_MORE;
Jens Axboe429a7872016-11-17 12:30:37 -0700491
Markus Pargmannd18509f2015-04-02 10:11:38 +0200492 dev_dbg(nbd_to_dev(nbd), "request %p: sending %d bytes data\n",
Josef Bacikfd8383f2016-09-08 12:33:37 -0700493 cmd, bvec.bv_len);
Al Viroc9f2b6a2015-11-12 05:09:35 -0500494 iov_iter_bvec(&from, ITER_BVEC | WRITE,
495 &bvec, 1, bvec.bv_len);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400496 if (skip) {
497 if (skip >= iov_iter_count(&from)) {
498 skip -= iov_iter_count(&from);
499 continue;
500 }
501 iov_iter_advance(&from, skip);
502 skip = 0;
503 }
504 result = sock_xmit(nbd, index, 1, &from, flags, &sent);
Jens Axboe6c92e692007-08-16 13:43:12 +0200505 if (result <= 0) {
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400506 if (result == -ERESTARTSYS) {
507 /* We've already sent the header, we
508 * have no choice but to set pending and
509 * return BUSY.
510 */
511 nsock->pending = req;
512 nsock->sent = sent;
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200513 return BLK_STS_RESOURCE;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400514 }
Wanlong Gaof4507162012-03-28 14:42:51 -0700515 dev_err(disk_to_dev(nbd->disk),
WANG Cong7f1b90f2011-08-19 14:48:22 +0200516 "Send data failed (result %d)\n",
517 result);
Josef Bacikf3733242017-04-06 17:01:57 -0400518 return -EAGAIN;
Jens Axboe6c92e692007-08-16 13:43:12 +0200519 }
Jens Axboe429a7872016-11-17 12:30:37 -0700520 /*
521 * The completion might already have come in,
522 * so break for the last one instead of letting
523 * the iterator do it. This prevents use-after-free
524 * of the bio.
525 */
526 if (is_last)
527 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Jens Axboe429a7872016-11-17 12:30:37 -0700529 bio = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400531out:
532 nsock->pending = NULL;
533 nsock->sent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/* NULL returned = something went wrong, inform userspace */
Josef Bacik9561a7a2016-11-22 14:04:40 -0500538static struct nbd_cmd *nbd_read_stat(struct nbd_device *nbd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400540 struct nbd_config *config = nbd->config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int result;
542 struct nbd_reply reply;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700543 struct nbd_cmd *cmd;
544 struct request *req = NULL;
545 u16 hwq;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500546 u32 tag;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500547 struct kvec iov = {.iov_base = &reply, .iov_len = sizeof(reply)};
548 struct iov_iter to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 reply.magic = 0;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500551 iov_iter_kvec(&to, READ | ITER_KVEC, &iov, 1, sizeof(reply));
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400552 result = sock_xmit(nbd, index, 0, &to, MSG_WAITALL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (result <= 0) {
Josef Bacik5ea8d102017-04-06 17:01:58 -0400554 if (!nbd_disconnected(config))
Josef Bacik9561a7a2016-11-22 14:04:40 -0500555 dev_err(disk_to_dev(nbd->disk),
556 "Receive control failed (result %d)\n", result);
Markus Pargmann19391832015-08-17 08:20:03 +0200557 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Michal Feixe4b57e02006-07-30 03:03:31 -0700559
560 if (ntohl(reply.magic) != NBD_REPLY_MAGIC) {
Wanlong Gaof4507162012-03-28 14:42:51 -0700561 dev_err(disk_to_dev(nbd->disk), "Wrong magic (0x%lx)\n",
Michal Feixe4b57e02006-07-30 03:03:31 -0700562 (unsigned long)ntohl(reply.magic));
Markus Pargmann19391832015-08-17 08:20:03 +0200563 return ERR_PTR(-EPROTO);
Michal Feixe4b57e02006-07-30 03:03:31 -0700564 }
565
Josef Bacik9561a7a2016-11-22 14:04:40 -0500566 memcpy(&tag, reply.handle, sizeof(u32));
Herbert Xu4b2f0262006-01-06 00:09:47 -0800567
Josef Bacikfd8383f2016-09-08 12:33:37 -0700568 hwq = blk_mq_unique_tag_to_hwq(tag);
569 if (hwq < nbd->tag_set.nr_hw_queues)
570 req = blk_mq_tag_to_rq(nbd->tag_set.tags[hwq],
571 blk_mq_unique_tag_to_tag(tag));
572 if (!req || !blk_mq_request_started(req)) {
573 dev_err(disk_to_dev(nbd->disk), "Unexpected reply (%d) %p\n",
574 tag, req);
575 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
Josef Bacikfd8383f2016-09-08 12:33:37 -0700577 cmd = blk_mq_rq_to_pdu(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (ntohl(reply.error)) {
Wanlong Gaof4507162012-03-28 14:42:51 -0700579 dev_err(disk_to_dev(nbd->disk), "Other side returned error (%d)\n",
WANG Cong7f1b90f2011-08-19 14:48:22 +0200580 ntohl(reply.error));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200581 cmd->status = BLK_STS_IOERR;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700582 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
Josef Bacikfd8383f2016-09-08 12:33:37 -0700585 dev_dbg(nbd_to_dev(nbd), "request %p: got reply\n", cmd);
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200586 if (rq_data_dir(req) != WRITE) {
NeilBrown5705f702007-09-25 12:35:59 +0200587 struct req_iterator iter;
Kent Overstreet79886132013-11-23 17:19:00 -0800588 struct bio_vec bvec;
NeilBrown5705f702007-09-25 12:35:59 +0200589
590 rq_for_each_segment(bvec, req, iter) {
Al Viroc9f2b6a2015-11-12 05:09:35 -0500591 iov_iter_bvec(&to, ITER_BVEC | READ,
592 &bvec, 1, bvec.bv_len);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400593 result = sock_xmit(nbd, index, 0, &to, MSG_WAITALL, NULL);
Jens Axboe6c92e692007-08-16 13:43:12 +0200594 if (result <= 0) {
Wanlong Gaof4507162012-03-28 14:42:51 -0700595 dev_err(disk_to_dev(nbd->disk), "Receive data failed (result %d)\n",
WANG Cong7f1b90f2011-08-19 14:48:22 +0200596 result);
Josef Bacikf3733242017-04-06 17:01:57 -0400597 /*
598 * If we've disconnected or we only have 1
599 * connection then we need to make sure we
600 * complete this request, otherwise error out
601 * and let the timeout stuff handle resubmitting
602 * this request onto another connection.
603 */
Josef Bacik5ea8d102017-04-06 17:01:58 -0400604 if (nbd_disconnected(config) ||
605 config->num_connections <= 1) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200606 cmd->status = BLK_STS_IOERR;
Josef Bacikf3733242017-04-06 17:01:57 -0400607 return cmd;
608 }
609 return ERR_PTR(-EIO);
Jens Axboe6c92e692007-08-16 13:43:12 +0200610 }
Markus Pargmannd18509f2015-04-02 10:11:38 +0200611 dev_dbg(nbd_to_dev(nbd), "request %p: got %d bytes data\n",
Josef Bacikfd8383f2016-09-08 12:33:37 -0700612 cmd, bvec.bv_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500614 } else {
615 /* See the comment in nbd_queue_rq. */
616 wait_for_completion(&cmd->send_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Josef Bacikfd8383f2016-09-08 12:33:37 -0700618 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
Josef Bacik9561a7a2016-11-22 14:04:40 -0500621static void recv_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Josef Bacik9561a7a2016-11-22 14:04:40 -0500623 struct recv_thread_args *args = container_of(work,
624 struct recv_thread_args,
625 work);
626 struct nbd_device *nbd = args->nbd;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400627 struct nbd_config *config = nbd->config;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700628 struct nbd_cmd *cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Markus Pargmann19391832015-08-17 08:20:03 +0200630 while (1) {
Josef Bacik9561a7a2016-11-22 14:04:40 -0500631 cmd = nbd_read_stat(nbd, args->index);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700632 if (IS_ERR(cmd)) {
Josef Bacik5ea8d102017-04-06 17:01:58 -0400633 struct nbd_sock *nsock = config->socks[args->index];
Josef Bacikf3733242017-04-06 17:01:57 -0400634
635 mutex_lock(&nsock->tx_lock);
Josef Bacik799f9a32017-04-06 17:02:02 -0400636 nbd_mark_nsock_dead(nbd, nsock, 1);
Josef Bacikf3733242017-04-06 17:01:57 -0400637 mutex_unlock(&nsock->tx_lock);
Markus Pargmann19391832015-08-17 08:20:03 +0200638 break;
639 }
640
Christoph Hellwig08e00292017-04-20 16:03:09 +0200641 blk_mq_complete_request(blk_mq_rq_from_pdu(cmd));
Markus Pargmann19391832015-08-17 08:20:03 +0200642 }
Josef Bacik5ea8d102017-04-06 17:01:58 -0400643 atomic_dec(&config->recv_threads);
644 wake_up(&config->recv_wq);
645 nbd_config_put(nbd);
646 kfree(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Josef Bacikfd8383f2016-09-08 12:33:37 -0700649static void nbd_clear_req(struct request *req, void *data, bool reserved)
650{
651 struct nbd_cmd *cmd;
652
653 if (!blk_mq_request_started(req))
654 return;
655 cmd = blk_mq_rq_to_pdu(req);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200656 cmd->status = BLK_STS_IOERR;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200657 blk_mq_complete_request(req);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700658}
659
Wanlong Gaof4507162012-03-28 14:42:51 -0700660static void nbd_clear_que(struct nbd_device *nbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
Sagi Grimbergb52c2e92017-07-04 09:57:09 +0300662 blk_mq_quiesce_queue(nbd->disk->queue);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700663 blk_mq_tagset_busy_iter(&nbd->tag_set, nbd_clear_req, NULL);
Sagi Grimbergb52c2e92017-07-04 09:57:09 +0300664 blk_mq_unquiesce_queue(nbd->disk->queue);
Markus Pargmanne78273c2015-08-17 08:20:04 +0200665 dev_dbg(disk_to_dev(nbd->disk), "queue cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
Josef Bacikf3733242017-04-06 17:01:57 -0400668static int find_fallback(struct nbd_device *nbd, int index)
669{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400670 struct nbd_config *config = nbd->config;
Josef Bacikf3733242017-04-06 17:01:57 -0400671 int new_index = -1;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400672 struct nbd_sock *nsock = config->socks[index];
Josef Bacikf3733242017-04-06 17:01:57 -0400673 int fallback = nsock->fallback_index;
674
Josef Bacik5ea8d102017-04-06 17:01:58 -0400675 if (test_bit(NBD_DISCONNECTED, &config->runtime_flags))
Josef Bacikf3733242017-04-06 17:01:57 -0400676 return new_index;
677
Josef Bacik5ea8d102017-04-06 17:01:58 -0400678 if (config->num_connections <= 1) {
Josef Bacikf3733242017-04-06 17:01:57 -0400679 dev_err_ratelimited(disk_to_dev(nbd->disk),
680 "Attempted send on invalid socket\n");
681 return new_index;
682 }
683
Josef Bacik5ea8d102017-04-06 17:01:58 -0400684 if (fallback >= 0 && fallback < config->num_connections &&
685 !config->socks[fallback]->dead)
Josef Bacikf3733242017-04-06 17:01:57 -0400686 return fallback;
687
688 if (nsock->fallback_index < 0 ||
Josef Bacik5ea8d102017-04-06 17:01:58 -0400689 nsock->fallback_index >= config->num_connections ||
690 config->socks[nsock->fallback_index]->dead) {
Josef Bacikf3733242017-04-06 17:01:57 -0400691 int i;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400692 for (i = 0; i < config->num_connections; i++) {
Josef Bacikf3733242017-04-06 17:01:57 -0400693 if (i == index)
694 continue;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400695 if (!config->socks[i]->dead) {
Josef Bacikf3733242017-04-06 17:01:57 -0400696 new_index = i;
697 break;
698 }
699 }
700 nsock->fallback_index = new_index;
701 if (new_index < 0) {
702 dev_err_ratelimited(disk_to_dev(nbd->disk),
703 "Dead connection, failed to find a fallback\n");
704 return new_index;
705 }
706 }
707 new_index = nsock->fallback_index;
708 return new_index;
709}
Paul Clements7fdfd402007-10-16 23:27:37 -0700710
Josef Bacik560bc4b2017-04-06 17:02:04 -0400711static int wait_for_reconnect(struct nbd_device *nbd)
712{
713 struct nbd_config *config = nbd->config;
714 if (!config->dead_conn_timeout)
715 return 0;
716 if (test_bit(NBD_DISCONNECTED, &config->runtime_flags))
717 return 0;
718 wait_event_interruptible_timeout(config->conn_wait,
719 atomic_read(&config->live_connections),
720 config->dead_conn_timeout);
721 return atomic_read(&config->live_connections);
722}
723
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400724static int nbd_handle_cmd(struct nbd_cmd *cmd, int index)
Laurent Vivier48cf6062008-04-29 01:02:46 -0700725{
Josef Bacikfd8383f2016-09-08 12:33:37 -0700726 struct request *req = blk_mq_rq_from_pdu(cmd);
727 struct nbd_device *nbd = cmd->nbd;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400728 struct nbd_config *config;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500729 struct nbd_sock *nsock;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400730 int ret;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700731
Josef Bacik5ea8d102017-04-06 17:01:58 -0400732 if (!refcount_inc_not_zero(&nbd->config_refs)) {
733 dev_err_ratelimited(disk_to_dev(nbd->disk),
734 "Socks array is empty\n");
735 return -EINVAL;
736 }
737 config = nbd->config;
738
739 if (index >= config->num_connections) {
Josef Bacika897b662016-12-05 16:20:29 -0500740 dev_err_ratelimited(disk_to_dev(nbd->disk),
741 "Attempted send on invalid socket\n");
Josef Bacik5ea8d102017-04-06 17:01:58 -0400742 nbd_config_put(nbd);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400743 return -EINVAL;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500744 }
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200745 cmd->status = BLK_STS_OK;
Josef Bacikf3733242017-04-06 17:01:57 -0400746again:
Josef Bacik5ea8d102017-04-06 17:01:58 -0400747 nsock = config->socks[index];
Josef Bacik9561a7a2016-11-22 14:04:40 -0500748 mutex_lock(&nsock->tx_lock);
Josef Bacikf3733242017-04-06 17:01:57 -0400749 if (nsock->dead) {
Josef Bacik560bc4b2017-04-06 17:02:04 -0400750 int old_index = index;
Josef Bacikf3733242017-04-06 17:01:57 -0400751 index = find_fallback(nbd, index);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500752 mutex_unlock(&nsock->tx_lock);
Josef Bacik560bc4b2017-04-06 17:02:04 -0400753 if (index < 0) {
754 if (wait_for_reconnect(nbd)) {
755 index = old_index;
756 goto again;
757 }
758 /* All the sockets should already be down at this point,
759 * we just want to make sure that DISCONNECTED is set so
760 * any requests that come in that were queue'ed waiting
761 * for the reconnect timer don't trigger the timer again
762 * and instead just error out.
763 */
764 sock_shutdown(nbd);
765 nbd_config_put(nbd);
766 return -EIO;
767 }
Josef Bacikf3733242017-04-06 17:01:57 -0400768 goto again;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700769 }
770
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400771 /* Handle the case that we have a pending request that was partially
772 * transmitted that _has_ to be serviced first. We need to call requeue
773 * here so that it gets put _after_ the request that is already on the
774 * dispatch list.
775 */
776 if (unlikely(nsock->pending && nsock->pending != req)) {
777 blk_mq_requeue_request(req, true);
778 ret = 0;
779 goto out;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700780 }
Josef Bacikf3733242017-04-06 17:01:57 -0400781 /*
782 * Some failures are related to the link going down, so anything that
783 * returns EAGAIN can be retried on a different socket.
784 */
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400785 ret = nbd_send_cmd(nbd, cmd, index);
Josef Bacikf3733242017-04-06 17:01:57 -0400786 if (ret == -EAGAIN) {
787 dev_err_ratelimited(disk_to_dev(nbd->disk),
788 "Request send failed trying another connection\n");
Josef Bacik799f9a32017-04-06 17:02:02 -0400789 nbd_mark_nsock_dead(nbd, nsock, 1);
Josef Bacikf3733242017-04-06 17:01:57 -0400790 mutex_unlock(&nsock->tx_lock);
791 goto again;
792 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400793out:
Josef Bacik9561a7a2016-11-22 14:04:40 -0500794 mutex_unlock(&nsock->tx_lock);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400795 nbd_config_put(nbd);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400796 return ret;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700797}
798
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200799static blk_status_t nbd_queue_rq(struct blk_mq_hw_ctx *hctx,
Josef Bacikfd8383f2016-09-08 12:33:37 -0700800 const struct blk_mq_queue_data *bd)
Laurent Vivier48cf6062008-04-29 01:02:46 -0700801{
Josef Bacikfd8383f2016-09-08 12:33:37 -0700802 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(bd->rq);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400803 int ret;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700804
Josef Bacik9561a7a2016-11-22 14:04:40 -0500805 /*
806 * Since we look at the bio's to send the request over the network we
807 * need to make sure the completion work doesn't mark this request done
808 * before we are done doing our send. This keeps us from dereferencing
809 * freed data if we have particularly fast completions (ie we get the
810 * completion before we exit sock_xmit on the last bvec) or in the case
811 * that the server is misbehaving (or there was an error) before we're
812 * done sending everything over the wire.
813 */
814 init_completion(&cmd->send_complete);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700815 blk_mq_start_request(bd->rq);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400816
817 /* We can be called directly from the user space process, which means we
818 * could possibly have signals pending so our sendmsg will fail. In
819 * this case we need to return that we are busy, otherwise error out as
820 * appropriate.
821 */
822 ret = nbd_handle_cmd(cmd, hctx->queue_num);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500823 complete(&cmd->send_complete);
824
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200825 return ret < 0 ? BLK_STS_IOERR : BLK_STS_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Josef Bacike46c7282017-04-06 17:02:00 -0400828static int nbd_add_socket(struct nbd_device *nbd, unsigned long arg,
829 bool netlink)
Markus Pargmann23272a672015-10-29 11:51:16 +0100830{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400831 struct nbd_config *config = nbd->config;
Josef Bacik9442b732017-02-07 17:10:22 -0500832 struct socket *sock;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500833 struct nbd_sock **socks;
834 struct nbd_sock *nsock;
Josef Bacik9442b732017-02-07 17:10:22 -0500835 int err;
836
837 sock = sockfd_lookup(arg, &err);
838 if (!sock)
839 return err;
Markus Pargmann23272a672015-10-29 11:51:16 +0100840
Josef Bacike46c7282017-04-06 17:02:00 -0400841 if (!netlink && !nbd->task_setup &&
842 !test_bit(NBD_BOUND, &config->runtime_flags))
Josef Bacik9561a7a2016-11-22 14:04:40 -0500843 nbd->task_setup = current;
Josef Bacike46c7282017-04-06 17:02:00 -0400844
845 if (!netlink &&
846 (nbd->task_setup != current ||
847 test_bit(NBD_BOUND, &config->runtime_flags))) {
Josef Bacik9561a7a2016-11-22 14:04:40 -0500848 dev_err(disk_to_dev(nbd->disk),
849 "Device being setup by another task");
Josef Bacik9b1355d2017-04-06 17:01:56 -0400850 sockfd_put(sock);
Josef Bacike46c7282017-04-06 17:02:00 -0400851 return -EBUSY;
Markus Pargmann23272a672015-10-29 11:51:16 +0100852 }
853
Josef Bacik5ea8d102017-04-06 17:01:58 -0400854 socks = krealloc(config->socks, (config->num_connections + 1) *
Josef Bacik9561a7a2016-11-22 14:04:40 -0500855 sizeof(struct nbd_sock *), GFP_KERNEL);
Josef Bacik9b1355d2017-04-06 17:01:56 -0400856 if (!socks) {
857 sockfd_put(sock);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500858 return -ENOMEM;
Josef Bacik9b1355d2017-04-06 17:01:56 -0400859 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500860 nsock = kzalloc(sizeof(struct nbd_sock), GFP_KERNEL);
Josef Bacik9b1355d2017-04-06 17:01:56 -0400861 if (!nsock) {
862 sockfd_put(sock);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500863 return -ENOMEM;
Josef Bacik9b1355d2017-04-06 17:01:56 -0400864 }
Markus Pargmann23272a672015-10-29 11:51:16 +0100865
Josef Bacik5ea8d102017-04-06 17:01:58 -0400866 config->socks = socks;
Markus Pargmann23272a672015-10-29 11:51:16 +0100867
Josef Bacikf3733242017-04-06 17:01:57 -0400868 nsock->fallback_index = -1;
869 nsock->dead = false;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500870 mutex_init(&nsock->tx_lock);
871 nsock->sock = sock;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400872 nsock->pending = NULL;
873 nsock->sent = 0;
Josef Bacik799f9a32017-04-06 17:02:02 -0400874 nsock->cookie = 0;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400875 socks[config->num_connections++] = nsock;
Josef Bacik560bc4b2017-04-06 17:02:04 -0400876 atomic_inc(&config->live_connections);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500877
878 return 0;
Markus Pargmann23272a672015-10-29 11:51:16 +0100879}
880
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400881static int nbd_reconnect_socket(struct nbd_device *nbd, unsigned long arg)
882{
883 struct nbd_config *config = nbd->config;
884 struct socket *sock, *old;
885 struct recv_thread_args *args;
886 int i;
887 int err;
888
889 sock = sockfd_lookup(arg, &err);
890 if (!sock)
891 return err;
892
893 args = kzalloc(sizeof(*args), GFP_KERNEL);
894 if (!args) {
895 sockfd_put(sock);
896 return -ENOMEM;
897 }
898
899 for (i = 0; i < config->num_connections; i++) {
900 struct nbd_sock *nsock = config->socks[i];
901
902 if (!nsock->dead)
903 continue;
904
905 mutex_lock(&nsock->tx_lock);
906 if (!nsock->dead) {
907 mutex_unlock(&nsock->tx_lock);
908 continue;
909 }
910 sk_set_memalloc(sock->sk);
Josef Bacika7ee8cf2017-07-21 10:48:15 -0400911 if (nbd->tag_set.timeout)
912 sock->sk->sk_sndtimeo = nbd->tag_set.timeout;
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400913 atomic_inc(&config->recv_threads);
914 refcount_inc(&nbd->config_refs);
915 old = nsock->sock;
916 nsock->fallback_index = -1;
917 nsock->sock = sock;
918 nsock->dead = false;
919 INIT_WORK(&args->work, recv_work);
920 args->index = i;
921 args->nbd = nbd;
Josef Bacik799f9a32017-04-06 17:02:02 -0400922 nsock->cookie++;
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400923 mutex_unlock(&nsock->tx_lock);
924 sockfd_put(old);
925
Josef Bacik7a362ea2017-07-25 13:31:19 -0400926 clear_bit(NBD_DISCONNECTED, &config->runtime_flags);
927
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400928 /* We take the tx_mutex in an error path in the recv_work, so we
929 * need to queue_work outside of the tx_mutex.
930 */
931 queue_work(recv_workqueue, &args->work);
Josef Bacik560bc4b2017-04-06 17:02:04 -0400932
933 atomic_inc(&config->live_connections);
934 wake_up(&config->conn_wait);
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400935 return 0;
936 }
937 sockfd_put(sock);
938 kfree(args);
939 return -ENOSPC;
940}
941
Markus Pargmann0e4f0f62015-10-29 12:04:51 +0100942static void nbd_bdev_reset(struct block_device *bdev)
943{
Ratna Manoj Bollaabbbdf12017-03-24 14:08:29 -0400944 if (bdev->bd_openers > 1)
945 return;
Josef Bacik29eaadc2017-04-06 17:01:59 -0400946 bd_set_size(bdev, 0);
Markus Pargmann0e4f0f62015-10-29 12:04:51 +0100947 if (max_part > 0) {
948 blkdev_reread_part(bdev);
949 bdev->bd_invalidated = 1;
950 }
951}
952
Josef Bacik29eaadc2017-04-06 17:01:59 -0400953static void nbd_parse_flags(struct nbd_device *nbd)
Markus Pargmannd02cf532015-10-29 12:06:15 +0100954{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400955 struct nbd_config *config = nbd->config;
956 if (config->flags & NBD_FLAG_READ_ONLY)
Josef Bacik29eaadc2017-04-06 17:01:59 -0400957 set_disk_ro(nbd->disk, true);
958 else
959 set_disk_ro(nbd->disk, false);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400960 if (config->flags & NBD_FLAG_SEND_TRIM)
Markus Pargmannd02cf532015-10-29 12:06:15 +0100961 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue);
Shaun McDowell685c9b22017-05-25 23:55:54 -0400962 if (config->flags & NBD_FLAG_SEND_FLUSH) {
963 if (config->flags & NBD_FLAG_SEND_FUA)
964 blk_queue_write_cache(nbd->disk->queue, true, true);
965 else
966 blk_queue_write_cache(nbd->disk->queue, true, false);
967 }
Markus Pargmannd02cf532015-10-29 12:06:15 +0100968 else
Jens Axboeaafb1ee2016-03-30 10:10:53 -0600969 blk_queue_write_cache(nbd->disk->queue, false, false);
Markus Pargmannd02cf532015-10-29 12:06:15 +0100970}
971
Josef Bacik9561a7a2016-11-22 14:04:40 -0500972static void send_disconnects(struct nbd_device *nbd)
973{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400974 struct nbd_config *config = nbd->config;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500975 struct nbd_request request = {
976 .magic = htonl(NBD_REQUEST_MAGIC),
977 .type = htonl(NBD_CMD_DISC),
978 };
979 struct kvec iov = {.iov_base = &request, .iov_len = sizeof(request)};
980 struct iov_iter from;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500981 int i, ret;
982
Josef Bacik5ea8d102017-04-06 17:01:58 -0400983 for (i = 0; i < config->num_connections; i++) {
Josef Bacikb4b2aec2017-07-21 10:48:14 -0400984 struct nbd_sock *nsock = config->socks[i];
985
Al Viroc9f2b6a2015-11-12 05:09:35 -0500986 iov_iter_kvec(&from, WRITE | ITER_KVEC, &iov, 1, sizeof(request));
Josef Bacikb4b2aec2017-07-21 10:48:14 -0400987 mutex_lock(&nsock->tx_lock);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400988 ret = sock_xmit(nbd, i, 1, &from, 0, NULL);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500989 if (ret <= 0)
990 dev_err(disk_to_dev(nbd->disk),
991 "Send disconnect failed %d\n", ret);
Josef Bacikb4b2aec2017-07-21 10:48:14 -0400992 mutex_unlock(&nsock->tx_lock);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500993 }
994}
995
Josef Bacik29eaadc2017-04-06 17:01:59 -0400996static int nbd_disconnect(struct nbd_device *nbd)
Josef Bacik9442b732017-02-07 17:10:22 -0500997{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400998 struct nbd_config *config = nbd->config;
Josef Bacik9442b732017-02-07 17:10:22 -0500999
Josef Bacik5ea8d102017-04-06 17:01:58 -04001000 dev_info(disk_to_dev(nbd->disk), "NBD_DISCONNECT\n");
Josef Bacik2e134562017-07-21 10:48:13 -04001001 set_bit(NBD_DISCONNECT_REQUESTED, &config->runtime_flags);
1002 send_disconnects(nbd);
Josef Bacik9442b732017-02-07 17:10:22 -05001003 return 0;
1004}
1005
Josef Bacik29eaadc2017-04-06 17:01:59 -04001006static void nbd_clear_sock(struct nbd_device *nbd)
Josef Bacik9442b732017-02-07 17:10:22 -05001007{
1008 sock_shutdown(nbd);
1009 nbd_clear_que(nbd);
Josef Bacik9442b732017-02-07 17:10:22 -05001010 nbd->task_setup = NULL;
Josef Bacik9442b732017-02-07 17:10:22 -05001011}
1012
Josef Bacik5ea8d102017-04-06 17:01:58 -04001013static void nbd_config_put(struct nbd_device *nbd)
1014{
1015 if (refcount_dec_and_mutex_lock(&nbd->config_refs,
1016 &nbd->config_lock)) {
Josef Bacik5ea8d102017-04-06 17:01:58 -04001017 struct nbd_config *config = nbd->config;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001018 nbd_dev_dbg_close(nbd);
Josef Bacik29eaadc2017-04-06 17:01:59 -04001019 nbd_size_clear(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001020 if (test_and_clear_bit(NBD_HAS_PID_FILE,
1021 &config->runtime_flags))
1022 device_remove_file(disk_to_dev(nbd->disk), &pid_attr);
1023 nbd->task_recv = NULL;
Josef Bacik29eaadc2017-04-06 17:01:59 -04001024 nbd_clear_sock(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001025 if (config->num_connections) {
1026 int i;
1027 for (i = 0; i < config->num_connections; i++) {
1028 sockfd_put(config->socks[i]->sock);
1029 kfree(config->socks[i]);
1030 }
1031 kfree(config->socks);
1032 }
Ilya Dryomovfa976532017-05-23 17:49:55 +02001033 kfree(nbd->config);
Ilya Dryomovaf622b82017-05-23 17:49:54 +02001034 nbd->config = NULL;
1035
1036 nbd->tag_set.timeout = 0;
1037 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue);
Josef Bacika2c97902017-04-06 17:02:07 -04001038
Josef Bacik5ea8d102017-04-06 17:01:58 -04001039 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001040 nbd_put(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001041 module_put(THIS_MODULE);
1042 }
1043}
1044
Josef Bacike46c7282017-04-06 17:02:00 -04001045static int nbd_start_device(struct nbd_device *nbd)
Josef Bacik9442b732017-02-07 17:10:22 -05001046{
Josef Bacik5ea8d102017-04-06 17:01:58 -04001047 struct nbd_config *config = nbd->config;
1048 int num_connections = config->num_connections;
Josef Bacik9442b732017-02-07 17:10:22 -05001049 int error = 0, i;
1050
1051 if (nbd->task_recv)
1052 return -EBUSY;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001053 if (!config->socks)
Josef Bacik9442b732017-02-07 17:10:22 -05001054 return -EINVAL;
1055 if (num_connections > 1 &&
Josef Bacik5ea8d102017-04-06 17:01:58 -04001056 !(config->flags & NBD_FLAG_CAN_MULTI_CONN)) {
Josef Bacik9442b732017-02-07 17:10:22 -05001057 dev_err(disk_to_dev(nbd->disk), "server does not support multiple connections per device.\n");
Josef Bacik5ea8d102017-04-06 17:01:58 -04001058 return -EINVAL;
Josef Bacik9442b732017-02-07 17:10:22 -05001059 }
1060
Josef Bacik5ea8d102017-04-06 17:01:58 -04001061 blk_mq_update_nr_hw_queues(&nbd->tag_set, config->num_connections);
Josef Bacik9442b732017-02-07 17:10:22 -05001062 nbd->task_recv = current;
Josef Bacik9442b732017-02-07 17:10:22 -05001063
Josef Bacik29eaadc2017-04-06 17:01:59 -04001064 nbd_parse_flags(nbd);
Josef Bacik9442b732017-02-07 17:10:22 -05001065
1066 error = device_create_file(disk_to_dev(nbd->disk), &pid_attr);
1067 if (error) {
1068 dev_err(disk_to_dev(nbd->disk), "device_create_file failed!\n");
Josef Bacik5ea8d102017-04-06 17:01:58 -04001069 return error;
Josef Bacik9442b732017-02-07 17:10:22 -05001070 }
Josef Bacik29eaadc2017-04-06 17:01:59 -04001071 set_bit(NBD_HAS_PID_FILE, &config->runtime_flags);
Josef Bacik9442b732017-02-07 17:10:22 -05001072
1073 nbd_dev_dbg_init(nbd);
1074 for (i = 0; i < num_connections; i++) {
Josef Bacik5ea8d102017-04-06 17:01:58 -04001075 struct recv_thread_args *args;
1076
1077 args = kzalloc(sizeof(*args), GFP_KERNEL);
1078 if (!args) {
1079 sock_shutdown(nbd);
1080 return -ENOMEM;
1081 }
1082 sk_set_memalloc(config->socks[i]->sock->sk);
Josef Bacika7ee8cf2017-07-21 10:48:15 -04001083 if (nbd->tag_set.timeout)
1084 config->socks[i]->sock->sk->sk_sndtimeo =
1085 nbd->tag_set.timeout;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001086 atomic_inc(&config->recv_threads);
1087 refcount_inc(&nbd->config_refs);
1088 INIT_WORK(&args->work, recv_work);
1089 args->nbd = nbd;
1090 args->index = i;
1091 queue_work(recv_workqueue, &args->work);
Josef Bacik9442b732017-02-07 17:10:22 -05001092 }
Josef Bacike46c7282017-04-06 17:02:00 -04001093 return error;
1094}
1095
1096static int nbd_start_device_ioctl(struct nbd_device *nbd, struct block_device *bdev)
1097{
1098 struct nbd_config *config = nbd->config;
1099 int ret;
1100
1101 ret = nbd_start_device(nbd);
1102 if (ret)
1103 return ret;
1104
1105 bd_set_size(bdev, config->bytesize);
1106 if (max_part)
1107 bdev->bd_invalidated = 1;
1108 mutex_unlock(&nbd->config_lock);
1109 ret = wait_event_interruptible(config->recv_wq,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001110 atomic_read(&config->recv_threads) == 0);
Josef Bacike46c7282017-04-06 17:02:00 -04001111 if (ret)
Josef Bacik5ea8d102017-04-06 17:01:58 -04001112 sock_shutdown(nbd);
Josef Bacik9442b732017-02-07 17:10:22 -05001113 mutex_lock(&nbd->config_lock);
Josef Bacike46c7282017-04-06 17:02:00 -04001114 bd_set_size(bdev, 0);
Josef Bacik9442b732017-02-07 17:10:22 -05001115 /* user requested, ignore socket errors */
Josef Bacik5ea8d102017-04-06 17:01:58 -04001116 if (test_bit(NBD_DISCONNECT_REQUESTED, &config->runtime_flags))
Josef Bacike46c7282017-04-06 17:02:00 -04001117 ret = 0;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001118 if (test_bit(NBD_TIMEDOUT, &config->runtime_flags))
Josef Bacike46c7282017-04-06 17:02:00 -04001119 ret = -ETIMEDOUT;
1120 return ret;
Josef Bacik9442b732017-02-07 17:10:22 -05001121}
Markus Pargmann30d53d92015-08-17 08:20:06 +02001122
Josef Bacik29eaadc2017-04-06 17:01:59 -04001123static void nbd_clear_sock_ioctl(struct nbd_device *nbd,
1124 struct block_device *bdev)
1125{
Josef Bacik2516ab12017-04-06 17:02:03 -04001126 sock_shutdown(nbd);
Josef Bacik29eaadc2017-04-06 17:01:59 -04001127 kill_bdev(bdev);
1128 nbd_bdev_reset(bdev);
Josef Bacike46c7282017-04-06 17:02:00 -04001129 if (test_and_clear_bit(NBD_HAS_CONFIG_REF,
1130 &nbd->config->runtime_flags))
1131 nbd_config_put(nbd);
Josef Bacik29eaadc2017-04-06 17:01:59 -04001132}
1133
Josef Bacik9561a7a2016-11-22 14:04:40 -05001134/* Must be called with config_lock held */
Wanlong Gaof4507162012-03-28 14:42:51 -07001135static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd,
Pavel Machek1a2ad212009-04-02 16:58:41 -07001136 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Josef Bacik5ea8d102017-04-06 17:01:58 -04001138 struct nbd_config *config = nbd->config;
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 switch (cmd) {
Josef Bacik9442b732017-02-07 17:10:22 -05001141 case NBD_DISCONNECT:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001142 return nbd_disconnect(nbd);
Markus Pargmann23272a672015-10-29 11:51:16 +01001143 case NBD_CLEAR_SOCK:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001144 nbd_clear_sock_ioctl(nbd, bdev);
1145 return 0;
Josef Bacik9442b732017-02-07 17:10:22 -05001146 case NBD_SET_SOCK:
Josef Bacike46c7282017-04-06 17:02:00 -04001147 return nbd_add_socket(nbd, arg, false);
Josef Bacik9442b732017-02-07 17:10:22 -05001148 case NBD_SET_BLKSIZE:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001149 nbd_size_set(nbd, arg,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001150 div_s64(config->bytesize, arg));
Josef Bacike5445412017-02-13 10:39:47 -05001151 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 case NBD_SET_SIZE:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001153 nbd_size_set(nbd, config->blksize,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001154 div_s64(arg, config->blksize));
Josef Bacike5445412017-02-13 10:39:47 -05001155 return 0;
Markus Pargmann37091fd2015-07-27 07:36:49 +02001156 case NBD_SET_SIZE_BLOCKS:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001157 nbd_size_set(nbd, config->blksize, arg);
Josef Bacike5445412017-02-13 10:39:47 -05001158 return 0;
Paul Clements7fdfd402007-10-16 23:27:37 -07001159 case NBD_SET_TIMEOUT:
Josef Bacikf8586852017-03-24 14:08:28 -04001160 if (arg) {
1161 nbd->tag_set.timeout = arg * HZ;
1162 blk_queue_rq_timeout(nbd->disk->queue, arg * HZ);
1163 }
Paul Clements7fdfd402007-10-16 23:27:37 -07001164 return 0;
Pavel Machek1a2ad212009-04-02 16:58:41 -07001165
Paul Clements2f012502012-10-04 17:16:15 -07001166 case NBD_SET_FLAGS:
Josef Bacik5ea8d102017-04-06 17:01:58 -04001167 config->flags = arg;
Paul Clements2f012502012-10-04 17:16:15 -07001168 return 0;
Josef Bacik9442b732017-02-07 17:10:22 -05001169 case NBD_DO_IT:
Josef Bacike46c7282017-04-06 17:02:00 -04001170 return nbd_start_device_ioctl(nbd, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 case NBD_CLEAR_QUE:
Herbert Xu4b2f0262006-01-06 00:09:47 -08001172 /*
1173 * This is for compatibility only. The queue is always cleared
1174 * by NBD_DO_IT or NBD_CLEAR_SOCK.
1175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return 0;
1177 case NBD_PRINT_DEBUG:
Josef Bacikfd8383f2016-09-08 12:33:37 -07001178 /*
1179 * For compatibility only, we no longer keep a list of
1180 * outstanding requests.
1181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return 0;
1183 }
Pavel Machek1a2ad212009-04-02 16:58:41 -07001184 return -ENOTTY;
1185}
1186
1187static int nbd_ioctl(struct block_device *bdev, fmode_t mode,
1188 unsigned int cmd, unsigned long arg)
1189{
Wanlong Gaof4507162012-03-28 14:42:51 -07001190 struct nbd_device *nbd = bdev->bd_disk->private_data;
Josef Bacike46c7282017-04-06 17:02:00 -04001191 struct nbd_config *config = nbd->config;
1192 int error = -EINVAL;
Pavel Machek1a2ad212009-04-02 16:58:41 -07001193
1194 if (!capable(CAP_SYS_ADMIN))
1195 return -EPERM;
1196
Josef Bacik9561a7a2016-11-22 14:04:40 -05001197 mutex_lock(&nbd->config_lock);
Josef Bacike46c7282017-04-06 17:02:00 -04001198
1199 /* Don't allow ioctl operations on a nbd device that was created with
1200 * netlink, unless it's DISCONNECT or CLEAR_SOCK, which are fine.
1201 */
1202 if (!test_bit(NBD_BOUND, &config->runtime_flags) ||
1203 (cmd == NBD_DISCONNECT || cmd == NBD_CLEAR_SOCK))
1204 error = __nbd_ioctl(bdev, nbd, cmd, arg);
1205 else
1206 dev_err(nbd_to_dev(nbd), "Cannot use ioctl interface on a netlink controlled device.\n");
Josef Bacik9561a7a2016-11-22 14:04:40 -05001207 mutex_unlock(&nbd->config_lock);
Pavel Machek1a2ad212009-04-02 16:58:41 -07001208 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
Josef Bacik5ea8d102017-04-06 17:01:58 -04001211static struct nbd_config *nbd_alloc_config(void)
1212{
1213 struct nbd_config *config;
1214
1215 config = kzalloc(sizeof(struct nbd_config), GFP_NOFS);
1216 if (!config)
1217 return NULL;
1218 atomic_set(&config->recv_threads, 0);
1219 init_waitqueue_head(&config->recv_wq);
Josef Bacik560bc4b2017-04-06 17:02:04 -04001220 init_waitqueue_head(&config->conn_wait);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001221 config->blksize = 1024;
Josef Bacik560bc4b2017-04-06 17:02:04 -04001222 atomic_set(&config->live_connections, 0);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001223 try_module_get(THIS_MODULE);
1224 return config;
1225}
1226
1227static int nbd_open(struct block_device *bdev, fmode_t mode)
1228{
1229 struct nbd_device *nbd;
1230 int ret = 0;
1231
1232 mutex_lock(&nbd_index_mutex);
1233 nbd = bdev->bd_disk->private_data;
1234 if (!nbd) {
1235 ret = -ENXIO;
1236 goto out;
1237 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001238 if (!refcount_inc_not_zero(&nbd->refs)) {
1239 ret = -ENXIO;
1240 goto out;
1241 }
Josef Bacik5ea8d102017-04-06 17:01:58 -04001242 if (!refcount_inc_not_zero(&nbd->config_refs)) {
1243 struct nbd_config *config;
1244
1245 mutex_lock(&nbd->config_lock);
1246 if (refcount_inc_not_zero(&nbd->config_refs)) {
1247 mutex_unlock(&nbd->config_lock);
1248 goto out;
1249 }
1250 config = nbd->config = nbd_alloc_config();
1251 if (!config) {
1252 ret = -ENOMEM;
1253 mutex_unlock(&nbd->config_lock);
1254 goto out;
1255 }
1256 refcount_set(&nbd->config_refs, 1);
Josef Bacikc6a47592017-04-06 17:02:06 -04001257 refcount_inc(&nbd->refs);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001258 mutex_unlock(&nbd->config_lock);
1259 }
1260out:
1261 mutex_unlock(&nbd_index_mutex);
1262 return ret;
1263}
1264
1265static void nbd_release(struct gendisk *disk, fmode_t mode)
1266{
1267 struct nbd_device *nbd = disk->private_data;
1268 nbd_config_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04001269 nbd_put(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001270}
1271
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001272static const struct block_device_operations nbd_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
1274 .owner = THIS_MODULE,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001275 .open = nbd_open,
1276 .release = nbd_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001277 .ioctl = nbd_ioctl,
Al Viro263a3df2016-01-07 10:04:37 -05001278 .compat_ioctl = nbd_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279};
1280
Markus Pargmann30d53d92015-08-17 08:20:06 +02001281#if IS_ENABLED(CONFIG_DEBUG_FS)
1282
1283static int nbd_dbg_tasks_show(struct seq_file *s, void *unused)
1284{
1285 struct nbd_device *nbd = s->private;
1286
1287 if (nbd->task_recv)
1288 seq_printf(s, "recv: %d\n", task_pid_nr(nbd->task_recv));
Markus Pargmann30d53d92015-08-17 08:20:06 +02001289
1290 return 0;
1291}
1292
1293static int nbd_dbg_tasks_open(struct inode *inode, struct file *file)
1294{
1295 return single_open(file, nbd_dbg_tasks_show, inode->i_private);
1296}
1297
1298static const struct file_operations nbd_dbg_tasks_ops = {
1299 .open = nbd_dbg_tasks_open,
1300 .read = seq_read,
1301 .llseek = seq_lseek,
1302 .release = single_release,
1303};
1304
1305static int nbd_dbg_flags_show(struct seq_file *s, void *unused)
1306{
1307 struct nbd_device *nbd = s->private;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001308 u32 flags = nbd->config->flags;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001309
1310 seq_printf(s, "Hex: 0x%08x\n\n", flags);
1311
1312 seq_puts(s, "Known flags:\n");
1313
1314 if (flags & NBD_FLAG_HAS_FLAGS)
1315 seq_puts(s, "NBD_FLAG_HAS_FLAGS\n");
1316 if (flags & NBD_FLAG_READ_ONLY)
1317 seq_puts(s, "NBD_FLAG_READ_ONLY\n");
1318 if (flags & NBD_FLAG_SEND_FLUSH)
1319 seq_puts(s, "NBD_FLAG_SEND_FLUSH\n");
Shaun McDowell685c9b22017-05-25 23:55:54 -04001320 if (flags & NBD_FLAG_SEND_FUA)
1321 seq_puts(s, "NBD_FLAG_SEND_FUA\n");
Markus Pargmann30d53d92015-08-17 08:20:06 +02001322 if (flags & NBD_FLAG_SEND_TRIM)
1323 seq_puts(s, "NBD_FLAG_SEND_TRIM\n");
1324
1325 return 0;
1326}
1327
1328static int nbd_dbg_flags_open(struct inode *inode, struct file *file)
1329{
1330 return single_open(file, nbd_dbg_flags_show, inode->i_private);
1331}
1332
1333static const struct file_operations nbd_dbg_flags_ops = {
1334 .open = nbd_dbg_flags_open,
1335 .read = seq_read,
1336 .llseek = seq_lseek,
1337 .release = single_release,
1338};
1339
1340static int nbd_dev_dbg_init(struct nbd_device *nbd)
1341{
1342 struct dentry *dir;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001343 struct nbd_config *config = nbd->config;
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001344
1345 if (!nbd_dbg_dir)
1346 return -EIO;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001347
1348 dir = debugfs_create_dir(nbd_name(nbd), nbd_dbg_dir);
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001349 if (!dir) {
1350 dev_err(nbd_to_dev(nbd), "Failed to create debugfs dir for '%s'\n",
1351 nbd_name(nbd));
1352 return -EIO;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001353 }
Josef Bacik5ea8d102017-04-06 17:01:58 -04001354 config->dbg_dir = dir;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001355
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001356 debugfs_create_file("tasks", 0444, dir, nbd, &nbd_dbg_tasks_ops);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001357 debugfs_create_u64("size_bytes", 0444, dir, &config->bytesize);
Josef Bacik0eadf372016-09-08 12:33:40 -07001358 debugfs_create_u32("timeout", 0444, dir, &nbd->tag_set.timeout);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001359 debugfs_create_u64("blocksize", 0444, dir, &config->blksize);
Josef Bacikd366a0f2016-06-08 10:32:10 -04001360 debugfs_create_file("flags", 0444, dir, nbd, &nbd_dbg_flags_ops);
Markus Pargmann30d53d92015-08-17 08:20:06 +02001361
1362 return 0;
1363}
1364
1365static void nbd_dev_dbg_close(struct nbd_device *nbd)
1366{
Josef Bacik5ea8d102017-04-06 17:01:58 -04001367 debugfs_remove_recursive(nbd->config->dbg_dir);
Markus Pargmann30d53d92015-08-17 08:20:06 +02001368}
1369
1370static int nbd_dbg_init(void)
1371{
1372 struct dentry *dbg_dir;
1373
1374 dbg_dir = debugfs_create_dir("nbd", NULL);
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001375 if (!dbg_dir)
1376 return -EIO;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001377
1378 nbd_dbg_dir = dbg_dir;
1379
1380 return 0;
1381}
1382
1383static void nbd_dbg_close(void)
1384{
1385 debugfs_remove_recursive(nbd_dbg_dir);
1386}
1387
1388#else /* IS_ENABLED(CONFIG_DEBUG_FS) */
1389
1390static int nbd_dev_dbg_init(struct nbd_device *nbd)
1391{
1392 return 0;
1393}
1394
1395static void nbd_dev_dbg_close(struct nbd_device *nbd)
1396{
1397}
1398
1399static int nbd_dbg_init(void)
1400{
1401 return 0;
1402}
1403
1404static void nbd_dbg_close(void)
1405{
1406}
1407
1408#endif
1409
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001410static int nbd_init_request(struct blk_mq_tag_set *set, struct request *rq,
1411 unsigned int hctx_idx, unsigned int numa_node)
Josef Bacikfd8383f2016-09-08 12:33:37 -07001412{
1413 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(rq);
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001414 cmd->nbd = set->driver_data;
Josef Bacikfd8383f2016-09-08 12:33:37 -07001415 return 0;
1416}
1417
Eric Biggersf363b082017-03-30 13:39:16 -07001418static const struct blk_mq_ops nbd_mq_ops = {
Josef Bacikfd8383f2016-09-08 12:33:37 -07001419 .queue_rq = nbd_queue_rq,
Christoph Hellwig1e388ae2017-04-20 16:03:06 +02001420 .complete = nbd_complete_rq,
Josef Bacikfd8383f2016-09-08 12:33:37 -07001421 .init_request = nbd_init_request,
Josef Bacik0eadf372016-09-08 12:33:40 -07001422 .timeout = nbd_xmit_timeout,
Josef Bacikfd8383f2016-09-08 12:33:37 -07001423};
1424
Josef Bacikb0d91112017-02-01 16:11:40 -05001425static int nbd_dev_add(int index)
1426{
1427 struct nbd_device *nbd;
1428 struct gendisk *disk;
1429 struct request_queue *q;
1430 int err = -ENOMEM;
1431
1432 nbd = kzalloc(sizeof(struct nbd_device), GFP_KERNEL);
1433 if (!nbd)
1434 goto out;
1435
1436 disk = alloc_disk(1 << part_shift);
1437 if (!disk)
1438 goto out_free_nbd;
1439
1440 if (index >= 0) {
1441 err = idr_alloc(&nbd_index_idr, nbd, index, index + 1,
1442 GFP_KERNEL);
1443 if (err == -ENOSPC)
1444 err = -EEXIST;
1445 } else {
1446 err = idr_alloc(&nbd_index_idr, nbd, 0, 0, GFP_KERNEL);
1447 if (err >= 0)
1448 index = err;
1449 }
1450 if (err < 0)
1451 goto out_free_disk;
1452
Josef Bacike46c7282017-04-06 17:02:00 -04001453 nbd->index = index;
Josef Bacikb0d91112017-02-01 16:11:40 -05001454 nbd->disk = disk;
1455 nbd->tag_set.ops = &nbd_mq_ops;
1456 nbd->tag_set.nr_hw_queues = 1;
1457 nbd->tag_set.queue_depth = 128;
1458 nbd->tag_set.numa_node = NUMA_NO_NODE;
1459 nbd->tag_set.cmd_size = sizeof(struct nbd_cmd);
1460 nbd->tag_set.flags = BLK_MQ_F_SHOULD_MERGE |
1461 BLK_MQ_F_SG_MERGE | BLK_MQ_F_BLOCKING;
1462 nbd->tag_set.driver_data = nbd;
1463
1464 err = blk_mq_alloc_tag_set(&nbd->tag_set);
1465 if (err)
1466 goto out_free_idr;
1467
1468 q = blk_mq_init_queue(&nbd->tag_set);
1469 if (IS_ERR(q)) {
1470 err = PTR_ERR(q);
1471 goto out_free_tags;
1472 }
1473 disk->queue = q;
1474
1475 /*
1476 * Tell the block layer that we are not a rotational device
1477 */
1478 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, disk->queue);
1479 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, disk->queue);
1480 disk->queue->limits.discard_granularity = 512;
1481 blk_queue_max_discard_sectors(disk->queue, UINT_MAX);
Josef Bacikebb16d02017-04-18 16:22:51 -04001482 blk_queue_max_segment_size(disk->queue, UINT_MAX);
Josef Bacik1cc1f172017-04-20 15:47:01 -04001483 blk_queue_max_segments(disk->queue, USHRT_MAX);
Josef Bacikb0d91112017-02-01 16:11:40 -05001484 blk_queue_max_hw_sectors(disk->queue, 65536);
1485 disk->queue->limits.max_sectors = 256;
1486
Josef Bacikb0d91112017-02-01 16:11:40 -05001487 mutex_init(&nbd->config_lock);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001488 refcount_set(&nbd->config_refs, 0);
Josef Bacikc6a47592017-04-06 17:02:06 -04001489 refcount_set(&nbd->refs, 1);
1490 INIT_LIST_HEAD(&nbd->list);
Josef Bacikb0d91112017-02-01 16:11:40 -05001491 disk->major = NBD_MAJOR;
1492 disk->first_minor = index << part_shift;
1493 disk->fops = &nbd_fops;
1494 disk->private_data = nbd;
1495 sprintf(disk->disk_name, "nbd%d", index);
Josef Bacikb0d91112017-02-01 16:11:40 -05001496 add_disk(disk);
Josef Bacik47d902b2017-04-06 17:02:05 -04001497 nbd_total_devices++;
Josef Bacikb0d91112017-02-01 16:11:40 -05001498 return index;
1499
1500out_free_tags:
1501 blk_mq_free_tag_set(&nbd->tag_set);
1502out_free_idr:
1503 idr_remove(&nbd_index_idr, index);
1504out_free_disk:
1505 put_disk(disk);
1506out_free_nbd:
1507 kfree(nbd);
1508out:
1509 return err;
1510}
1511
Josef Bacike46c7282017-04-06 17:02:00 -04001512static int find_free_cb(int id, void *ptr, void *data)
1513{
1514 struct nbd_device *nbd = ptr;
1515 struct nbd_device **found = data;
1516
1517 if (!refcount_read(&nbd->config_refs)) {
1518 *found = nbd;
1519 return 1;
1520 }
1521 return 0;
1522}
1523
1524/* Netlink interface. */
1525static struct nla_policy nbd_attr_policy[NBD_ATTR_MAX + 1] = {
1526 [NBD_ATTR_INDEX] = { .type = NLA_U32 },
1527 [NBD_ATTR_SIZE_BYTES] = { .type = NLA_U64 },
1528 [NBD_ATTR_BLOCK_SIZE_BYTES] = { .type = NLA_U64 },
1529 [NBD_ATTR_TIMEOUT] = { .type = NLA_U64 },
1530 [NBD_ATTR_SERVER_FLAGS] = { .type = NLA_U64 },
1531 [NBD_ATTR_CLIENT_FLAGS] = { .type = NLA_U64 },
1532 [NBD_ATTR_SOCKETS] = { .type = NLA_NESTED},
Josef Bacik560bc4b2017-04-06 17:02:04 -04001533 [NBD_ATTR_DEAD_CONN_TIMEOUT] = { .type = NLA_U64 },
Josef Bacik47d902b2017-04-06 17:02:05 -04001534 [NBD_ATTR_DEVICE_LIST] = { .type = NLA_NESTED},
Josef Bacike46c7282017-04-06 17:02:00 -04001535};
1536
1537static struct nla_policy nbd_sock_policy[NBD_SOCK_MAX + 1] = {
1538 [NBD_SOCK_FD] = { .type = NLA_U32 },
1539};
1540
Josef Bacik47d902b2017-04-06 17:02:05 -04001541/* We don't use this right now since we don't parse the incoming list, but we
1542 * still want it here so userspace knows what to expect.
1543 */
1544static struct nla_policy __attribute__((unused))
1545nbd_device_policy[NBD_DEVICE_ATTR_MAX + 1] = {
1546 [NBD_DEVICE_INDEX] = { .type = NLA_U32 },
1547 [NBD_DEVICE_CONNECTED] = { .type = NLA_U8 },
1548};
1549
Josef Bacike46c7282017-04-06 17:02:00 -04001550static int nbd_genl_connect(struct sk_buff *skb, struct genl_info *info)
1551{
1552 struct nbd_device *nbd = NULL;
1553 struct nbd_config *config;
1554 int index = -1;
1555 int ret;
Josef Bacika2c97902017-04-06 17:02:07 -04001556 bool put_dev = false;
Josef Bacike46c7282017-04-06 17:02:00 -04001557
1558 if (!netlink_capable(skb, CAP_SYS_ADMIN))
1559 return -EPERM;
1560
1561 if (info->attrs[NBD_ATTR_INDEX])
1562 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1563 if (!info->attrs[NBD_ATTR_SOCKETS]) {
1564 printk(KERN_ERR "nbd: must specify at least one socket\n");
1565 return -EINVAL;
1566 }
1567 if (!info->attrs[NBD_ATTR_SIZE_BYTES]) {
1568 printk(KERN_ERR "nbd: must specify a size in bytes for the device\n");
1569 return -EINVAL;
1570 }
1571again:
1572 mutex_lock(&nbd_index_mutex);
1573 if (index == -1) {
1574 ret = idr_for_each(&nbd_index_idr, &find_free_cb, &nbd);
1575 if (ret == 0) {
1576 int new_index;
1577 new_index = nbd_dev_add(-1);
1578 if (new_index < 0) {
1579 mutex_unlock(&nbd_index_mutex);
1580 printk(KERN_ERR "nbd: failed to add new device\n");
1581 return ret;
1582 }
1583 nbd = idr_find(&nbd_index_idr, new_index);
1584 }
1585 } else {
1586 nbd = idr_find(&nbd_index_idr, index);
Josef Bacike6a76272017-08-14 18:25:33 +00001587 if (!nbd) {
1588 ret = nbd_dev_add(index);
1589 if (ret < 0) {
1590 mutex_unlock(&nbd_index_mutex);
1591 printk(KERN_ERR "nbd: failed to add new device\n");
1592 return ret;
1593 }
1594 nbd = idr_find(&nbd_index_idr, index);
1595 }
Josef Bacike46c7282017-04-06 17:02:00 -04001596 }
Josef Bacike46c7282017-04-06 17:02:00 -04001597 if (!nbd) {
1598 printk(KERN_ERR "nbd: couldn't find device at index %d\n",
1599 index);
Josef Bacikc6a47592017-04-06 17:02:06 -04001600 mutex_unlock(&nbd_index_mutex);
Josef Bacike46c7282017-04-06 17:02:00 -04001601 return -EINVAL;
1602 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001603 if (!refcount_inc_not_zero(&nbd->refs)) {
1604 mutex_unlock(&nbd_index_mutex);
1605 if (index == -1)
1606 goto again;
1607 printk(KERN_ERR "nbd: device at index %d is going down\n",
1608 index);
1609 return -EINVAL;
1610 }
1611 mutex_unlock(&nbd_index_mutex);
Josef Bacike46c7282017-04-06 17:02:00 -04001612
1613 mutex_lock(&nbd->config_lock);
1614 if (refcount_read(&nbd->config_refs)) {
1615 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001616 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001617 if (index == -1)
1618 goto again;
1619 printk(KERN_ERR "nbd: nbd%d already in use\n", index);
1620 return -EBUSY;
1621 }
1622 if (WARN_ON(nbd->config)) {
1623 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001624 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001625 return -EINVAL;
1626 }
1627 config = nbd->config = nbd_alloc_config();
1628 if (!nbd->config) {
1629 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001630 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001631 printk(KERN_ERR "nbd: couldn't allocate config\n");
1632 return -ENOMEM;
1633 }
1634 refcount_set(&nbd->config_refs, 1);
1635 set_bit(NBD_BOUND, &config->runtime_flags);
1636
1637 if (info->attrs[NBD_ATTR_SIZE_BYTES]) {
1638 u64 bytes = nla_get_u64(info->attrs[NBD_ATTR_SIZE_BYTES]);
1639 nbd_size_set(nbd, config->blksize,
1640 div64_u64(bytes, config->blksize));
1641 }
1642 if (info->attrs[NBD_ATTR_BLOCK_SIZE_BYTES]) {
1643 u64 bsize =
1644 nla_get_u64(info->attrs[NBD_ATTR_BLOCK_SIZE_BYTES]);
1645 nbd_size_set(nbd, bsize, div64_u64(config->bytesize, bsize));
1646 }
1647 if (info->attrs[NBD_ATTR_TIMEOUT]) {
1648 u64 timeout = nla_get_u64(info->attrs[NBD_ATTR_TIMEOUT]);
1649 nbd->tag_set.timeout = timeout * HZ;
1650 blk_queue_rq_timeout(nbd->disk->queue, timeout * HZ);
1651 }
Josef Bacik560bc4b2017-04-06 17:02:04 -04001652 if (info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]) {
1653 config->dead_conn_timeout =
1654 nla_get_u64(info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]);
1655 config->dead_conn_timeout *= HZ;
1656 }
Josef Bacike46c7282017-04-06 17:02:00 -04001657 if (info->attrs[NBD_ATTR_SERVER_FLAGS])
1658 config->flags =
1659 nla_get_u64(info->attrs[NBD_ATTR_SERVER_FLAGS]);
Josef Bacika2c97902017-04-06 17:02:07 -04001660 if (info->attrs[NBD_ATTR_CLIENT_FLAGS]) {
1661 u64 flags = nla_get_u64(info->attrs[NBD_ATTR_CLIENT_FLAGS]);
1662 if (flags & NBD_CFLAG_DESTROY_ON_DISCONNECT) {
1663 set_bit(NBD_DESTROY_ON_DISCONNECT,
1664 &config->runtime_flags);
1665 put_dev = true;
1666 }
1667 }
1668
Josef Bacike46c7282017-04-06 17:02:00 -04001669 if (info->attrs[NBD_ATTR_SOCKETS]) {
1670 struct nlattr *attr;
1671 int rem, fd;
1672
1673 nla_for_each_nested(attr, info->attrs[NBD_ATTR_SOCKETS],
1674 rem) {
1675 struct nlattr *socks[NBD_SOCK_MAX+1];
1676
1677 if (nla_type(attr) != NBD_SOCK_ITEM) {
1678 printk(KERN_ERR "nbd: socks must be embedded in a SOCK_ITEM attr\n");
1679 ret = -EINVAL;
1680 goto out;
1681 }
1682 ret = nla_parse_nested(socks, NBD_SOCK_MAX, attr,
Linus Torvalds8d65b082017-05-02 16:40:27 -07001683 nbd_sock_policy, info->extack);
Josef Bacike46c7282017-04-06 17:02:00 -04001684 if (ret != 0) {
1685 printk(KERN_ERR "nbd: error processing sock list\n");
1686 ret = -EINVAL;
1687 goto out;
1688 }
1689 if (!socks[NBD_SOCK_FD])
1690 continue;
1691 fd = (int)nla_get_u32(socks[NBD_SOCK_FD]);
1692 ret = nbd_add_socket(nbd, fd, true);
1693 if (ret)
1694 goto out;
1695 }
1696 }
1697 ret = nbd_start_device(nbd);
1698out:
1699 mutex_unlock(&nbd->config_lock);
1700 if (!ret) {
1701 set_bit(NBD_HAS_CONFIG_REF, &config->runtime_flags);
1702 refcount_inc(&nbd->config_refs);
1703 nbd_connect_reply(info, nbd->index);
1704 }
1705 nbd_config_put(nbd);
Josef Bacika2c97902017-04-06 17:02:07 -04001706 if (put_dev)
1707 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001708 return ret;
1709}
1710
1711static int nbd_genl_disconnect(struct sk_buff *skb, struct genl_info *info)
1712{
1713 struct nbd_device *nbd;
1714 int index;
1715
1716 if (!netlink_capable(skb, CAP_SYS_ADMIN))
1717 return -EPERM;
1718
1719 if (!info->attrs[NBD_ATTR_INDEX]) {
1720 printk(KERN_ERR "nbd: must specify an index to disconnect\n");
1721 return -EINVAL;
1722 }
1723 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1724 mutex_lock(&nbd_index_mutex);
1725 nbd = idr_find(&nbd_index_idr, index);
Josef Bacike46c7282017-04-06 17:02:00 -04001726 if (!nbd) {
Josef Bacikc6a47592017-04-06 17:02:06 -04001727 mutex_unlock(&nbd_index_mutex);
Josef Bacike46c7282017-04-06 17:02:00 -04001728 printk(KERN_ERR "nbd: couldn't find device at index %d\n",
1729 index);
1730 return -EINVAL;
1731 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001732 if (!refcount_inc_not_zero(&nbd->refs)) {
1733 mutex_unlock(&nbd_index_mutex);
1734 printk(KERN_ERR "nbd: device at index %d is going down\n",
1735 index);
1736 return -EINVAL;
1737 }
1738 mutex_unlock(&nbd_index_mutex);
1739 if (!refcount_inc_not_zero(&nbd->config_refs)) {
1740 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001741 return 0;
Josef Bacikc6a47592017-04-06 17:02:06 -04001742 }
Josef Bacike46c7282017-04-06 17:02:00 -04001743 mutex_lock(&nbd->config_lock);
1744 nbd_disconnect(nbd);
1745 mutex_unlock(&nbd->config_lock);
1746 if (test_and_clear_bit(NBD_HAS_CONFIG_REF,
1747 &nbd->config->runtime_flags))
1748 nbd_config_put(nbd);
1749 nbd_config_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04001750 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001751 return 0;
1752}
1753
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001754static int nbd_genl_reconfigure(struct sk_buff *skb, struct genl_info *info)
1755{
1756 struct nbd_device *nbd = NULL;
1757 struct nbd_config *config;
1758 int index;
1759 int ret = -EINVAL;
Josef Bacika2c97902017-04-06 17:02:07 -04001760 bool put_dev = false;
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001761
1762 if (!netlink_capable(skb, CAP_SYS_ADMIN))
1763 return -EPERM;
1764
1765 if (!info->attrs[NBD_ATTR_INDEX]) {
1766 printk(KERN_ERR "nbd: must specify a device to reconfigure\n");
1767 return -EINVAL;
1768 }
1769 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1770 mutex_lock(&nbd_index_mutex);
1771 nbd = idr_find(&nbd_index_idr, index);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001772 if (!nbd) {
Josef Bacikc6a47592017-04-06 17:02:06 -04001773 mutex_unlock(&nbd_index_mutex);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001774 printk(KERN_ERR "nbd: couldn't find a device at index %d\n",
1775 index);
1776 return -EINVAL;
1777 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001778 if (!refcount_inc_not_zero(&nbd->refs)) {
1779 mutex_unlock(&nbd_index_mutex);
1780 printk(KERN_ERR "nbd: device at index %d is going down\n",
1781 index);
1782 return -EINVAL;
1783 }
1784 mutex_unlock(&nbd_index_mutex);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001785
1786 if (!refcount_inc_not_zero(&nbd->config_refs)) {
1787 dev_err(nbd_to_dev(nbd),
1788 "not configured, cannot reconfigure\n");
Josef Bacikc6a47592017-04-06 17:02:06 -04001789 nbd_put(nbd);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001790 return -EINVAL;
1791 }
1792
1793 mutex_lock(&nbd->config_lock);
1794 config = nbd->config;
1795 if (!test_bit(NBD_BOUND, &config->runtime_flags) ||
1796 !nbd->task_recv) {
1797 dev_err(nbd_to_dev(nbd),
1798 "not configured, cannot reconfigure\n");
1799 goto out;
1800 }
1801
1802 if (info->attrs[NBD_ATTR_TIMEOUT]) {
1803 u64 timeout = nla_get_u64(info->attrs[NBD_ATTR_TIMEOUT]);
1804 nbd->tag_set.timeout = timeout * HZ;
1805 blk_queue_rq_timeout(nbd->disk->queue, timeout * HZ);
1806 }
Josef Bacik560bc4b2017-04-06 17:02:04 -04001807 if (info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]) {
1808 config->dead_conn_timeout =
1809 nla_get_u64(info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]);
1810 config->dead_conn_timeout *= HZ;
1811 }
Josef Bacika2c97902017-04-06 17:02:07 -04001812 if (info->attrs[NBD_ATTR_CLIENT_FLAGS]) {
1813 u64 flags = nla_get_u64(info->attrs[NBD_ATTR_CLIENT_FLAGS]);
1814 if (flags & NBD_CFLAG_DESTROY_ON_DISCONNECT) {
1815 if (!test_and_set_bit(NBD_DESTROY_ON_DISCONNECT,
1816 &config->runtime_flags))
1817 put_dev = true;
1818 } else {
1819 if (test_and_clear_bit(NBD_DESTROY_ON_DISCONNECT,
1820 &config->runtime_flags))
1821 refcount_inc(&nbd->refs);
1822 }
1823 }
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001824
1825 if (info->attrs[NBD_ATTR_SOCKETS]) {
1826 struct nlattr *attr;
1827 int rem, fd;
1828
1829 nla_for_each_nested(attr, info->attrs[NBD_ATTR_SOCKETS],
1830 rem) {
1831 struct nlattr *socks[NBD_SOCK_MAX+1];
1832
1833 if (nla_type(attr) != NBD_SOCK_ITEM) {
1834 printk(KERN_ERR "nbd: socks must be embedded in a SOCK_ITEM attr\n");
1835 ret = -EINVAL;
1836 goto out;
1837 }
1838 ret = nla_parse_nested(socks, NBD_SOCK_MAX, attr,
Linus Torvalds8d65b082017-05-02 16:40:27 -07001839 nbd_sock_policy, info->extack);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001840 if (ret != 0) {
1841 printk(KERN_ERR "nbd: error processing sock list\n");
1842 ret = -EINVAL;
1843 goto out;
1844 }
1845 if (!socks[NBD_SOCK_FD])
1846 continue;
1847 fd = (int)nla_get_u32(socks[NBD_SOCK_FD]);
1848 ret = nbd_reconnect_socket(nbd, fd);
1849 if (ret) {
1850 if (ret == -ENOSPC)
1851 ret = 0;
1852 goto out;
1853 }
1854 dev_info(nbd_to_dev(nbd), "reconnected socket\n");
1855 }
1856 }
1857out:
1858 mutex_unlock(&nbd->config_lock);
1859 nbd_config_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04001860 nbd_put(nbd);
Josef Bacika2c97902017-04-06 17:02:07 -04001861 if (put_dev)
1862 nbd_put(nbd);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001863 return ret;
1864}
1865
Josef Bacike46c7282017-04-06 17:02:00 -04001866static const struct genl_ops nbd_connect_genl_ops[] = {
1867 {
1868 .cmd = NBD_CMD_CONNECT,
1869 .policy = nbd_attr_policy,
1870 .doit = nbd_genl_connect,
1871 },
1872 {
1873 .cmd = NBD_CMD_DISCONNECT,
1874 .policy = nbd_attr_policy,
1875 .doit = nbd_genl_disconnect,
1876 },
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001877 {
1878 .cmd = NBD_CMD_RECONFIGURE,
1879 .policy = nbd_attr_policy,
1880 .doit = nbd_genl_reconfigure,
1881 },
Josef Bacik47d902b2017-04-06 17:02:05 -04001882 {
1883 .cmd = NBD_CMD_STATUS,
1884 .policy = nbd_attr_policy,
1885 .doit = nbd_genl_status,
1886 },
Josef Bacike46c7282017-04-06 17:02:00 -04001887};
1888
Josef Bacik799f9a32017-04-06 17:02:02 -04001889static const struct genl_multicast_group nbd_mcast_grps[] = {
1890 { .name = NBD_GENL_MCAST_GROUP_NAME, },
1891};
1892
Josef Bacike46c7282017-04-06 17:02:00 -04001893static struct genl_family nbd_genl_family __ro_after_init = {
1894 .hdrsize = 0,
1895 .name = NBD_GENL_FAMILY_NAME,
1896 .version = NBD_GENL_VERSION,
1897 .module = THIS_MODULE,
1898 .ops = nbd_connect_genl_ops,
1899 .n_ops = ARRAY_SIZE(nbd_connect_genl_ops),
1900 .maxattr = NBD_ATTR_MAX,
Josef Bacik799f9a32017-04-06 17:02:02 -04001901 .mcgrps = nbd_mcast_grps,
1902 .n_mcgrps = ARRAY_SIZE(nbd_mcast_grps),
Josef Bacike46c7282017-04-06 17:02:00 -04001903};
1904
Josef Bacik47d902b2017-04-06 17:02:05 -04001905static int populate_nbd_status(struct nbd_device *nbd, struct sk_buff *reply)
1906{
1907 struct nlattr *dev_opt;
1908 u8 connected = 0;
1909 int ret;
1910
1911 /* This is a little racey, but for status it's ok. The
1912 * reason we don't take a ref here is because we can't
1913 * take a ref in the index == -1 case as we would need
1914 * to put under the nbd_index_mutex, which could
1915 * deadlock if we are configured to remove ourselves
1916 * once we're disconnected.
1917 */
1918 if (refcount_read(&nbd->config_refs))
1919 connected = 1;
1920 dev_opt = nla_nest_start(reply, NBD_DEVICE_ITEM);
1921 if (!dev_opt)
1922 return -EMSGSIZE;
1923 ret = nla_put_u32(reply, NBD_DEVICE_INDEX, nbd->index);
1924 if (ret)
1925 return -EMSGSIZE;
1926 ret = nla_put_u8(reply, NBD_DEVICE_CONNECTED,
1927 connected);
1928 if (ret)
1929 return -EMSGSIZE;
1930 nla_nest_end(reply, dev_opt);
1931 return 0;
1932}
1933
1934static int status_cb(int id, void *ptr, void *data)
1935{
1936 struct nbd_device *nbd = ptr;
1937 return populate_nbd_status(nbd, (struct sk_buff *)data);
1938}
1939
1940static int nbd_genl_status(struct sk_buff *skb, struct genl_info *info)
1941{
1942 struct nlattr *dev_list;
1943 struct sk_buff *reply;
1944 void *reply_head;
1945 size_t msg_size;
1946 int index = -1;
1947 int ret = -ENOMEM;
1948
1949 if (info->attrs[NBD_ATTR_INDEX])
1950 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1951
1952 mutex_lock(&nbd_index_mutex);
1953
1954 msg_size = nla_total_size(nla_attr_size(sizeof(u32)) +
1955 nla_attr_size(sizeof(u8)));
1956 msg_size *= (index == -1) ? nbd_total_devices : 1;
1957
1958 reply = genlmsg_new(msg_size, GFP_KERNEL);
1959 if (!reply)
1960 goto out;
1961 reply_head = genlmsg_put_reply(reply, info, &nbd_genl_family, 0,
1962 NBD_CMD_STATUS);
1963 if (!reply_head) {
1964 nlmsg_free(reply);
1965 goto out;
1966 }
1967
1968 dev_list = nla_nest_start(reply, NBD_ATTR_DEVICE_LIST);
1969 if (index == -1) {
1970 ret = idr_for_each(&nbd_index_idr, &status_cb, reply);
1971 if (ret) {
1972 nlmsg_free(reply);
1973 goto out;
1974 }
1975 } else {
1976 struct nbd_device *nbd;
1977 nbd = idr_find(&nbd_index_idr, index);
1978 if (nbd) {
1979 ret = populate_nbd_status(nbd, reply);
1980 if (ret) {
1981 nlmsg_free(reply);
1982 goto out;
1983 }
1984 }
1985 }
1986 nla_nest_end(reply, dev_list);
1987 genlmsg_end(reply, reply_head);
1988 genlmsg_reply(reply, info);
1989 ret = 0;
1990out:
1991 mutex_unlock(&nbd_index_mutex);
1992 return ret;
1993}
1994
Josef Bacike46c7282017-04-06 17:02:00 -04001995static void nbd_connect_reply(struct genl_info *info, int index)
1996{
1997 struct sk_buff *skb;
1998 void *msg_head;
1999 int ret;
2000
2001 skb = genlmsg_new(nla_total_size(sizeof(u32)), GFP_KERNEL);
2002 if (!skb)
2003 return;
2004 msg_head = genlmsg_put_reply(skb, info, &nbd_genl_family, 0,
2005 NBD_CMD_CONNECT);
2006 if (!msg_head) {
2007 nlmsg_free(skb);
2008 return;
2009 }
2010 ret = nla_put_u32(skb, NBD_ATTR_INDEX, index);
2011 if (ret) {
2012 nlmsg_free(skb);
2013 return;
2014 }
2015 genlmsg_end(skb, msg_head);
2016 genlmsg_reply(skb, info);
2017}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Josef Bacik799f9a32017-04-06 17:02:02 -04002019static void nbd_mcast_index(int index)
2020{
2021 struct sk_buff *skb;
2022 void *msg_head;
2023 int ret;
2024
2025 skb = genlmsg_new(nla_total_size(sizeof(u32)), GFP_KERNEL);
2026 if (!skb)
2027 return;
2028 msg_head = genlmsg_put(skb, 0, 0, &nbd_genl_family, 0,
2029 NBD_CMD_LINK_DEAD);
2030 if (!msg_head) {
2031 nlmsg_free(skb);
2032 return;
2033 }
2034 ret = nla_put_u32(skb, NBD_ATTR_INDEX, index);
2035 if (ret) {
2036 nlmsg_free(skb);
2037 return;
2038 }
2039 genlmsg_end(skb, msg_head);
2040 genlmsg_multicast(&nbd_genl_family, skb, 0, 0, GFP_KERNEL);
2041}
2042
2043static void nbd_dead_link_work(struct work_struct *work)
2044{
2045 struct link_dead_args *args = container_of(work, struct link_dead_args,
2046 work);
2047 nbd_mcast_index(args->index);
2048 kfree(args);
2049}
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051static int __init nbd_init(void)
2052{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 int i;
2054
Adrian Bunk5b7b18c2006-03-25 03:07:04 -08002055 BUILD_BUG_ON(sizeof(struct nbd_request) != 28);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002057 if (max_part < 0) {
WANG Cong7742ce42011-08-19 14:48:28 +02002058 printk(KERN_ERR "nbd: max_part must be >= 0\n");
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002059 return -EINVAL;
2060 }
2061
2062 part_shift = 0;
Namhyung Kim5988ce22011-05-28 14:44:46 +02002063 if (max_part > 0) {
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002064 part_shift = fls(max_part);
2065
Namhyung Kim5988ce22011-05-28 14:44:46 +02002066 /*
2067 * Adjust max_part according to part_shift as it is exported
2068 * to user space so that user can know the max number of
2069 * partition kernel should be able to manage.
2070 *
2071 * Note that -1 is required because partition 0 is reserved
2072 * for the whole disk.
2073 */
2074 max_part = (1UL << part_shift) - 1;
2075 }
2076
Namhyung Kim3b271082011-05-28 14:44:46 +02002077 if ((1UL << part_shift) > DISK_MAX_PARTS)
2078 return -EINVAL;
2079
2080 if (nbds_max > 1UL << (MINORBITS - part_shift))
2081 return -EINVAL;
Josef Bacik124d6db2017-02-01 16:11:11 -05002082 recv_workqueue = alloc_workqueue("knbd-recv",
2083 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
2084 if (!recv_workqueue)
2085 return -ENOMEM;
Namhyung Kim3b271082011-05-28 14:44:46 +02002086
Josef Bacik6330a2d2017-02-15 16:49:48 -05002087 if (register_blkdev(NBD_MAJOR, "nbd")) {
2088 destroy_workqueue(recv_workqueue);
Josef Bacikb0d91112017-02-01 16:11:40 -05002089 return -EIO;
Josef Bacik6330a2d2017-02-15 16:49:48 -05002090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Josef Bacike46c7282017-04-06 17:02:00 -04002092 if (genl_register_family(&nbd_genl_family)) {
2093 unregister_blkdev(NBD_MAJOR, "nbd");
2094 destroy_workqueue(recv_workqueue);
2095 return -EINVAL;
2096 }
Markus Pargmann30d53d92015-08-17 08:20:06 +02002097 nbd_dbg_init();
2098
Josef Bacikb0d91112017-02-01 16:11:40 -05002099 mutex_lock(&nbd_index_mutex);
2100 for (i = 0; i < nbds_max; i++)
2101 nbd_dev_add(i);
2102 mutex_unlock(&nbd_index_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 return 0;
Josef Bacikb0d91112017-02-01 16:11:40 -05002104}
2105
2106static int nbd_exit_cb(int id, void *ptr, void *data)
2107{
Josef Bacikc6a47592017-04-06 17:02:06 -04002108 struct list_head *list = (struct list_head *)data;
Josef Bacikb0d91112017-02-01 16:11:40 -05002109 struct nbd_device *nbd = ptr;
Josef Bacikc6a47592017-04-06 17:02:06 -04002110
Josef Bacikc6a47592017-04-06 17:02:06 -04002111 list_add_tail(&nbd->list, list);
Josef Bacikb0d91112017-02-01 16:11:40 -05002112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113}
2114
2115static void __exit nbd_cleanup(void)
2116{
Josef Bacikc6a47592017-04-06 17:02:06 -04002117 struct nbd_device *nbd;
2118 LIST_HEAD(del_list);
2119
Markus Pargmann30d53d92015-08-17 08:20:06 +02002120 nbd_dbg_close();
2121
Josef Bacikc6a47592017-04-06 17:02:06 -04002122 mutex_lock(&nbd_index_mutex);
2123 idr_for_each(&nbd_index_idr, &nbd_exit_cb, &del_list);
2124 mutex_unlock(&nbd_index_mutex);
2125
Josef Bacik60ae36a2017-04-28 09:49:19 -04002126 while (!list_empty(&del_list)) {
2127 nbd = list_first_entry(&del_list, struct nbd_device, list);
2128 list_del_init(&nbd->list);
2129 if (refcount_read(&nbd->refs) != 1)
Josef Bacikc6a47592017-04-06 17:02:06 -04002130 printk(KERN_ERR "nbd: possibly leaking a device\n");
2131 nbd_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04002132 }
2133
Josef Bacikb0d91112017-02-01 16:11:40 -05002134 idr_destroy(&nbd_index_idr);
Josef Bacike46c7282017-04-06 17:02:00 -04002135 genl_unregister_family(&nbd_genl_family);
Josef Bacik124d6db2017-02-01 16:11:11 -05002136 destroy_workqueue(recv_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 unregister_blkdev(NBD_MAJOR, "nbd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
2140module_init(nbd_init);
2141module_exit(nbd_cleanup);
2142
2143MODULE_DESCRIPTION("Network Block Device");
2144MODULE_LICENSE("GPL");
2145
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -07002146module_param(nbds_max, int, 0444);
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002147MODULE_PARM_DESC(nbds_max, "number of network block devices to initialize (default: 16)");
2148module_param(max_part, int, 0444);
Josef Bacik7a8362a2017-08-14 18:56:16 +00002149MODULE_PARM_DESC(max_part, "number of partitions per device (default: 16)");