blob: ac376b9b852d69677f292eba1afb15df419fe769 [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>
21#include <linux/fs.h>
22#include <linux/bio.h>
23#include <linux/stat.h>
24#include <linux/errno.h>
25#include <linux/file.h>
26#include <linux/ioctl.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020027#include <linux/mutex.h>
Herbert Xu4b2f0262006-01-06 00:09:47 -080028#include <linux/compiler.h>
29#include <linux/err.h>
30#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <net/sock.h>
Trond Myklebust91cf45f2007-11-12 18:10:39 -080033#include <linux/net.h>
Laurent Vivier48cf6062008-04-29 01:02:46 -070034#include <linux/kthread.h>
Markus Pargmannb9c495b2015-04-02 10:11:37 +020035#include <linux/types.h>
Markus Pargmann30d53d92015-08-17 08:20:06 +020036#include <linux/debugfs.h>
Josef Bacikfd8383f2016-09-08 12:33:37 -070037#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080039#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/types.h>
41
42#include <linux/nbd.h>
Josef Bacike46c7282017-04-06 17:02:00 -040043#include <linux/nbd-netlink.h>
44#include <net/genetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Josef Bacikb0d91112017-02-01 16:11:40 -050046static DEFINE_IDR(nbd_index_idr);
47static DEFINE_MUTEX(nbd_index_mutex);
Josef Bacik47d902b2017-04-06 17:02:05 -040048static int nbd_total_devices = 0;
Josef Bacikb0d91112017-02-01 16:11:40 -050049
Josef Bacik9561a7a2016-11-22 14:04:40 -050050struct nbd_sock {
51 struct socket *sock;
52 struct mutex tx_lock;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -040053 struct request *pending;
54 int sent;
Josef Bacikf3733242017-04-06 17:01:57 -040055 bool dead;
56 int fallback_index;
Josef Bacik799f9a32017-04-06 17:02:02 -040057 int cookie;
Josef Bacik9561a7a2016-11-22 14:04:40 -050058};
59
Josef Bacik5ea8d102017-04-06 17:01:58 -040060struct recv_thread_args {
61 struct work_struct work;
62 struct nbd_device *nbd;
63 int index;
64};
65
Josef Bacik799f9a32017-04-06 17:02:02 -040066struct link_dead_args {
67 struct work_struct work;
68 int index;
69};
70
Josef Bacik9b4a6ba2016-09-08 12:33:39 -070071#define NBD_TIMEDOUT 0
72#define NBD_DISCONNECT_REQUESTED 1
Josef Bacik9561a7a2016-11-22 14:04:40 -050073#define NBD_DISCONNECTED 2
Josef Bacik5ea8d102017-04-06 17:01:58 -040074#define NBD_HAS_PID_FILE 3
Josef Bacike46c7282017-04-06 17:02:00 -040075#define NBD_HAS_CONFIG_REF 4
76#define NBD_BOUND 5
Josef Bacika2c97902017-04-06 17:02:07 -040077#define NBD_DESTROY_ON_DISCONNECT 6
Josef Bacik9b4a6ba2016-09-08 12:33:39 -070078
Josef Bacik5ea8d102017-04-06 17:01:58 -040079struct nbd_config {
Markus Pargmann22d109c2015-08-17 08:20:09 +020080 u32 flags;
Josef Bacik9b4a6ba2016-09-08 12:33:39 -070081 unsigned long runtime_flags;
Josef Bacik560bc4b2017-04-06 17:02:04 -040082 u64 dead_conn_timeout;
Josef Bacik5ea8d102017-04-06 17:01:58 -040083
Josef Bacik9561a7a2016-11-22 14:04:40 -050084 struct nbd_sock **socks;
Josef Bacik9561a7a2016-11-22 14:04:40 -050085 int num_connections;
Josef Bacik560bc4b2017-04-06 17:02:04 -040086 atomic_t live_connections;
87 wait_queue_head_t conn_wait;
Josef Bacik5ea8d102017-04-06 17:01:58 -040088
Josef Bacik9561a7a2016-11-22 14:04:40 -050089 atomic_t recv_threads;
90 wait_queue_head_t recv_wq;
Josef Bacikef77b512016-12-02 16:19:12 -050091 loff_t blksize;
Markus Pargmannb9c495b2015-04-02 10:11:37 +020092 loff_t bytesize;
Markus Pargmann30d53d92015-08-17 08:20:06 +020093#if IS_ENABLED(CONFIG_DEBUG_FS)
94 struct dentry *dbg_dir;
95#endif
Markus Pargmann13e71d62015-04-02 10:11:35 +020096};
97
Josef Bacik5ea8d102017-04-06 17:01:58 -040098struct nbd_device {
99 struct blk_mq_tag_set tag_set;
100
Josef Bacike46c7282017-04-06 17:02:00 -0400101 int index;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400102 refcount_t config_refs;
Josef Bacikc6a47592017-04-06 17:02:06 -0400103 refcount_t refs;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400104 struct nbd_config *config;
105 struct mutex config_lock;
106 struct gendisk *disk;
107
Josef Bacikc6a47592017-04-06 17:02:06 -0400108 struct list_head list;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400109 struct task_struct *task_recv;
110 struct task_struct *task_setup;
111};
112
Josef Bacikfd8383f2016-09-08 12:33:37 -0700113struct nbd_cmd {
114 struct nbd_device *nbd;
Josef Bacikf3733242017-04-06 17:01:57 -0400115 int index;
Josef Bacik799f9a32017-04-06 17:02:02 -0400116 int cookie;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500117 struct completion send_complete;
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200118 int status;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700119};
120
Markus Pargmann30d53d92015-08-17 08:20:06 +0200121#if IS_ENABLED(CONFIG_DEBUG_FS)
122static struct dentry *nbd_dbg_dir;
123#endif
124
125#define nbd_name(nbd) ((nbd)->disk->disk_name)
126
Wanlong Gaof4507162012-03-28 14:42:51 -0700127#define NBD_MAGIC 0x68797548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Ingo van Lil9c7a4162006-07-01 04:36:36 -0700129static unsigned int nbds_max = 16;
Laurent Vivierd71a6d72008-04-29 01:02:51 -0700130static int max_part;
Josef Bacik124d6db2017-02-01 16:11:11 -0500131static struct workqueue_struct *recv_workqueue;
Josef Bacikb0d91112017-02-01 16:11:40 -0500132static int part_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Josef Bacik9442b732017-02-07 17:10:22 -0500134static int nbd_dev_dbg_init(struct nbd_device *nbd);
135static void nbd_dev_dbg_close(struct nbd_device *nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400136static void nbd_config_put(struct nbd_device *nbd);
Josef Bacike46c7282017-04-06 17:02:00 -0400137static void nbd_connect_reply(struct genl_info *info, int index);
Josef Bacik47d902b2017-04-06 17:02:05 -0400138static int nbd_genl_status(struct sk_buff *skb, struct genl_info *info);
Josef Bacik799f9a32017-04-06 17:02:02 -0400139static void nbd_dead_link_work(struct work_struct *work);
Josef Bacik9442b732017-02-07 17:10:22 -0500140
Markus Pargmannd18509f2015-04-02 10:11:38 +0200141static inline struct device *nbd_to_dev(struct nbd_device *nbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Markus Pargmannd18509f2015-04-02 10:11:38 +0200143 return disk_to_dev(nbd->disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146static const char *nbdcmd_to_ascii(int cmd)
147{
148 switch (cmd) {
149 case NBD_CMD_READ: return "read";
150 case NBD_CMD_WRITE: return "write";
151 case NBD_CMD_DISC: return "disconnect";
Alex Bligh75f187a2013-02-27 17:05:23 -0800152 case NBD_CMD_FLUSH: return "flush";
Paul Clementsa336d292012-10-04 17:16:18 -0700153 case NBD_CMD_TRIM: return "trim/discard";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 return "invalid";
156}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Josef Bacik5ea8d102017-04-06 17:01:58 -0400158static ssize_t pid_show(struct device *dev,
159 struct device_attribute *attr, char *buf)
160{
161 struct gendisk *disk = dev_to_disk(dev);
162 struct nbd_device *nbd = (struct nbd_device *)disk->private_data;
163
164 return sprintf(buf, "%d\n", task_pid_nr(nbd->task_recv));
165}
166
167static struct device_attribute pid_attr = {
168 .attr = { .name = "pid", .mode = S_IRUGO},
169 .show = pid_show,
170};
171
Josef Bacikc6a47592017-04-06 17:02:06 -0400172static void nbd_dev_remove(struct nbd_device *nbd)
173{
174 struct gendisk *disk = nbd->disk;
175 if (disk) {
176 del_gendisk(disk);
177 blk_cleanup_queue(disk->queue);
178 blk_mq_free_tag_set(&nbd->tag_set);
Josef Bacika2c97902017-04-06 17:02:07 -0400179 disk->private_data = NULL;
Josef Bacikc6a47592017-04-06 17:02:06 -0400180 put_disk(disk);
181 }
182 kfree(nbd);
183}
184
185static void nbd_put(struct nbd_device *nbd)
186{
187 if (refcount_dec_and_mutex_lock(&nbd->refs,
188 &nbd_index_mutex)) {
189 idr_remove(&nbd_index_idr, nbd->index);
190 mutex_unlock(&nbd_index_mutex);
191 nbd_dev_remove(nbd);
192 }
193}
194
Josef Bacik799f9a32017-04-06 17:02:02 -0400195static int nbd_disconnected(struct nbd_config *config)
Josef Bacikf3733242017-04-06 17:01:57 -0400196{
Josef Bacik799f9a32017-04-06 17:02:02 -0400197 return test_bit(NBD_DISCONNECTED, &config->runtime_flags) ||
198 test_bit(NBD_DISCONNECT_REQUESTED, &config->runtime_flags);
199}
200
201static void nbd_mark_nsock_dead(struct nbd_device *nbd, struct nbd_sock *nsock,
202 int notify)
203{
204 if (!nsock->dead && notify && !nbd_disconnected(nbd->config)) {
205 struct link_dead_args *args;
206 args = kmalloc(sizeof(struct link_dead_args), GFP_NOIO);
207 if (args) {
208 INIT_WORK(&args->work, nbd_dead_link_work);
209 args->index = nbd->index;
210 queue_work(system_wq, &args->work);
211 }
212 }
Josef Bacik560bc4b2017-04-06 17:02:04 -0400213 if (!nsock->dead) {
Josef Bacikf3733242017-04-06 17:01:57 -0400214 kernel_sock_shutdown(nsock->sock, SHUT_RDWR);
Josef Bacik560bc4b2017-04-06 17:02:04 -0400215 atomic_dec(&nbd->config->live_connections);
216 }
Josef Bacikf3733242017-04-06 17:01:57 -0400217 nsock->dead = true;
218 nsock->pending = NULL;
219 nsock->sent = 0;
220}
221
Josef Bacik29eaadc2017-04-06 17:01:59 -0400222static void nbd_size_clear(struct nbd_device *nbd)
Markus Pargmann37091fd2015-07-27 07:36:49 +0200223{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400224 if (nbd->config->bytesize) {
Josef Bacik5ea8d102017-04-06 17:01:58 -0400225 set_capacity(nbd->disk, 0);
226 kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE);
227 }
Markus Pargmann37091fd2015-07-27 07:36:49 +0200228}
229
Josef Bacik29eaadc2017-04-06 17:01:59 -0400230static void nbd_size_update(struct nbd_device *nbd)
Markus Pargmann37091fd2015-07-27 07:36:49 +0200231{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400232 struct nbd_config *config = nbd->config;
233 blk_queue_logical_block_size(nbd->disk->queue, config->blksize);
234 blk_queue_physical_block_size(nbd->disk->queue, config->blksize);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400235 set_capacity(nbd->disk, config->bytesize >> 9);
Markus Pargmann37091fd2015-07-27 07:36:49 +0200236 kobject_uevent(&nbd_to_dev(nbd)->kobj, KOBJ_CHANGE);
237}
238
Josef Bacik29eaadc2017-04-06 17:01:59 -0400239static void nbd_size_set(struct nbd_device *nbd, loff_t blocksize,
240 loff_t nr_blocks)
Markus Pargmann37091fd2015-07-27 07:36:49 +0200241{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400242 struct nbd_config *config = nbd->config;
243 config->blksize = blocksize;
244 config->bytesize = blocksize * nr_blocks;
Josef Bacik29eaadc2017-04-06 17:01:59 -0400245 nbd_size_update(nbd);
Markus Pargmann37091fd2015-07-27 07:36:49 +0200246}
247
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200248static void nbd_complete_rq(struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200250 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200252 dev_dbg(nbd_to_dev(cmd->nbd), "request %p: %s\n", cmd,
253 cmd->status ? "failed" : "done");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200255 blk_mq_end_request(req, cmd->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Markus Pargmanne018e752015-04-02 10:11:39 +0200258/*
259 * Forcibly shutdown the socket causing all listeners to error
260 */
Markus Pargmann36e47be2015-08-17 08:20:01 +0200261static void sock_shutdown(struct nbd_device *nbd)
Paul Clements7fdfd402007-10-16 23:27:37 -0700262{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400263 struct nbd_config *config = nbd->config;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500264 int i;
Josef Bacikc2611892016-09-08 12:33:38 -0700265
Josef Bacik5ea8d102017-04-06 17:01:58 -0400266 if (config->num_connections == 0)
Markus Pargmann260bbce2015-08-17 08:20:02 +0200267 return;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400268 if (test_and_set_bit(NBD_DISCONNECTED, &config->runtime_flags))
Josef Bacik9561a7a2016-11-22 14:04:40 -0500269 return;
270
Josef Bacik5ea8d102017-04-06 17:01:58 -0400271 for (i = 0; i < config->num_connections; i++) {
272 struct nbd_sock *nsock = config->socks[i];
Josef Bacik9561a7a2016-11-22 14:04:40 -0500273 mutex_lock(&nsock->tx_lock);
Josef Bacik799f9a32017-04-06 17:02:02 -0400274 nbd_mark_nsock_dead(nbd, nsock, 0);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500275 mutex_unlock(&nsock->tx_lock);
Markus Pargmann23272a672015-10-29 11:51:16 +0100276 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500277 dev_warn(disk_to_dev(nbd->disk), "shutting down sockets\n");
Paul Clements7fdfd402007-10-16 23:27:37 -0700278}
279
Josef Bacik0eadf372016-09-08 12:33:40 -0700280static enum blk_eh_timer_return nbd_xmit_timeout(struct request *req,
281 bool reserved)
Paul Clements7fdfd402007-10-16 23:27:37 -0700282{
Josef Bacik0eadf372016-09-08 12:33:40 -0700283 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(req);
284 struct nbd_device *nbd = cmd->nbd;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400285 struct nbd_config *config;
Paul Clements7fdfd402007-10-16 23:27:37 -0700286
Josef Bacik5ea8d102017-04-06 17:01:58 -0400287 if (!refcount_inc_not_zero(&nbd->config_refs)) {
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200288 cmd->status = -EIO;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400289 return BLK_EH_HANDLED;
290 }
291
Josef Bacik560bc4b2017-04-06 17:02:04 -0400292 /* If we are waiting on our dead timer then we could get timeout
293 * callbacks for our request. For this we just want to reset the timer
294 * and let the queue side take care of everything.
295 */
296 if (!completion_done(&cmd->send_complete)) {
297 nbd_config_put(nbd);
298 return BLK_EH_RESET_TIMER;
299 }
Josef Bacik5ea8d102017-04-06 17:01:58 -0400300 config = nbd->config;
301
302 if (config->num_connections > 1) {
Josef Bacikf3733242017-04-06 17:01:57 -0400303 dev_err_ratelimited(nbd_to_dev(nbd),
304 "Connection timed out, retrying\n");
Josef Bacikf3733242017-04-06 17:01:57 -0400305 /*
306 * Hooray we have more connections, requeue this IO, the submit
307 * path will put it on a real connection.
308 */
Josef Bacik5ea8d102017-04-06 17:01:58 -0400309 if (config->socks && config->num_connections > 1) {
310 if (cmd->index < config->num_connections) {
Josef Bacikf3733242017-04-06 17:01:57 -0400311 struct nbd_sock *nsock =
Josef Bacik5ea8d102017-04-06 17:01:58 -0400312 config->socks[cmd->index];
Josef Bacikf3733242017-04-06 17:01:57 -0400313 mutex_lock(&nsock->tx_lock);
Josef Bacik799f9a32017-04-06 17:02:02 -0400314 /* We can have multiple outstanding requests, so
315 * we don't want to mark the nsock dead if we've
316 * already reconnected with a new socket, so
317 * only mark it dead if its the same socket we
318 * were sent out on.
319 */
320 if (cmd->cookie == nsock->cookie)
321 nbd_mark_nsock_dead(nbd, nsock, 1);
Josef Bacikf3733242017-04-06 17:01:57 -0400322 mutex_unlock(&nsock->tx_lock);
323 }
Josef Bacikf3733242017-04-06 17:01:57 -0400324 blk_mq_requeue_request(req, true);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400325 nbd_config_put(nbd);
Josef Bacikf3733242017-04-06 17:01:57 -0400326 return BLK_EH_NOT_HANDLED;
327 }
Josef Bacikf3733242017-04-06 17:01:57 -0400328 } else {
329 dev_err_ratelimited(nbd_to_dev(nbd),
330 "Connection timed out\n");
331 }
Josef Bacik5ea8d102017-04-06 17:01:58 -0400332 set_bit(NBD_TIMEDOUT, &config->runtime_flags);
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200333 cmd->status = -EIO;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500334 sock_shutdown(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400335 nbd_config_put(nbd);
336
Josef Bacik0eadf372016-09-08 12:33:40 -0700337 return BLK_EH_HANDLED;
Paul Clements7fdfd402007-10-16 23:27:37 -0700338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/*
341 * Send or receive packet.
342 */
Al Viroc9f2b6a2015-11-12 05:09:35 -0500343static int sock_xmit(struct nbd_device *nbd, int index, int send,
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400344 struct iov_iter *iter, int msg_flags, int *sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400346 struct nbd_config *config = nbd->config;
347 struct socket *sock = config->socks[index]->sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int result;
349 struct msghdr msg;
Mel Gorman7f338fe2012-07-31 16:44:32 -0700350 unsigned long pflags = current->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Mike Snitzerffc41cf2008-04-02 13:04:47 -0700352 if (unlikely(!sock)) {
Josef Bacika897b662016-12-05 16:20:29 -0500353 dev_err_ratelimited(disk_to_dev(nbd->disk),
WANG Cong7f1b90f2011-08-19 14:48:22 +0200354 "Attempted %s on closed socket in sock_xmit\n",
355 (send ? "send" : "recv"));
Mike Snitzerffc41cf2008-04-02 13:04:47 -0700356 return -EINVAL;
357 }
358
Al Viroc9f2b6a2015-11-12 05:09:35 -0500359 msg.msg_iter = *iter;
Al Viroc1696ca2015-11-12 04:51:19 -0500360
Mel Gorman7f338fe2012-07-31 16:44:32 -0700361 current->flags |= PF_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 do {
Mel Gorman7f338fe2012-07-31 16:44:32 -0700363 sock->sk->sk_allocation = GFP_NOIO | __GFP_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 msg.msg_name = NULL;
365 msg.msg_namelen = 0;
366 msg.msg_control = NULL;
367 msg.msg_controllen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
369
Markus Pargmann7e2893a2015-08-17 08:20:00 +0200370 if (send)
Al Viroc1696ca2015-11-12 04:51:19 -0500371 result = sock_sendmsg(sock, &msg);
Markus Pargmann7e2893a2015-08-17 08:20:00 +0200372 else
Al Viroc1696ca2015-11-12 04:51:19 -0500373 result = sock_recvmsg(sock, &msg, msg.msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (result <= 0) {
376 if (result == 0)
377 result = -EPIPE; /* short read */
378 break;
379 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400380 if (sent)
381 *sent += result;
Al Viroc1696ca2015-11-12 04:51:19 -0500382 } while (msg_data_left(&msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Mel Gorman7f338fe2012-07-31 16:44:32 -0700384 tsk_restore_flags(current, pflags, PF_MEMALLOC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 return result;
387}
388
Paul Clements7fdfd402007-10-16 23:27:37 -0700389/* always call with the tx_lock held */
Josef Bacik9561a7a2016-11-22 14:04:40 -0500390static int nbd_send_cmd(struct nbd_device *nbd, struct nbd_cmd *cmd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Josef Bacikfd8383f2016-09-08 12:33:37 -0700392 struct request *req = blk_mq_rq_from_pdu(cmd);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400393 struct nbd_config *config = nbd->config;
394 struct nbd_sock *nsock = config->socks[index];
Josef Bacikd61b7f92017-01-19 16:08:49 -0500395 int result;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500396 struct nbd_request request = {.magic = htonl(NBD_REQUEST_MAGIC)};
397 struct kvec iov = {.iov_base = &request, .iov_len = sizeof(request)};
398 struct iov_iter from;
Tejun Heo1011c1b2009-05-07 22:24:45 +0900399 unsigned long size = blk_rq_bytes(req);
Jens Axboe429a7872016-11-17 12:30:37 -0700400 struct bio *bio;
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200401 u32 type;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500402 u32 tag = blk_mq_unique_tag(req);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400403 int sent = nsock->sent, skip = 0;
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200404
Al Viroc9f2b6a2015-11-12 05:09:35 -0500405 iov_iter_kvec(&from, WRITE | ITER_KVEC, &iov, 1, sizeof(request));
406
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100407 switch (req_op(req)) {
408 case REQ_OP_DISCARD:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200409 type = NBD_CMD_TRIM;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100410 break;
411 case REQ_OP_FLUSH:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200412 type = NBD_CMD_FLUSH;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100413 break;
414 case REQ_OP_WRITE:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200415 type = NBD_CMD_WRITE;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100416 break;
417 case REQ_OP_READ:
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200418 type = NBD_CMD_READ;
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100419 break;
420 default:
421 return -EIO;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Christoph Hellwig09fc54cc2017-01-31 16:57:28 +0100424 if (rq_data_dir(req) == WRITE &&
Josef Bacik5ea8d102017-04-06 17:01:58 -0400425 (config->flags & NBD_FLAG_READ_ONLY)) {
Christoph Hellwig09fc54cc2017-01-31 16:57:28 +0100426 dev_err_ratelimited(disk_to_dev(nbd->disk),
427 "Write on read-only\n");
428 return -EIO;
429 }
430
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400431 /* We did a partial send previously, and we at least sent the whole
432 * request struct, so just go and send the rest of the pages in the
433 * request.
434 */
435 if (sent) {
436 if (sent >= sizeof(request)) {
437 skip = sent - sizeof(request);
438 goto send_pages;
439 }
440 iov_iter_advance(&from, sent);
441 }
Josef Bacikf3733242017-04-06 17:01:57 -0400442 cmd->index = index;
Josef Bacik799f9a32017-04-06 17:02:02 -0400443 cmd->cookie = nsock->cookie;
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200444 request.type = htonl(type);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500445 if (type != NBD_CMD_FLUSH) {
Alex Bligh75f187a2013-02-27 17:05:23 -0800446 request.from = cpu_to_be64((u64)blk_rq_pos(req) << 9);
447 request.len = htonl(size);
448 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500449 memcpy(request.handle, &tag, sizeof(tag));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Markus Pargmannd18509f2015-04-02 10:11:38 +0200451 dev_dbg(nbd_to_dev(nbd), "request %p: sending control (%s@%llu,%uB)\n",
Josef Bacikfd8383f2016-09-08 12:33:37 -0700452 cmd, nbdcmd_to_ascii(type),
Markus Pargmannd18509f2015-04-02 10:11:38 +0200453 (unsigned long long)blk_rq_pos(req) << 9, blk_rq_bytes(req));
Al Viroc9f2b6a2015-11-12 05:09:35 -0500454 result = sock_xmit(nbd, index, 1, &from,
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400455 (type == NBD_CMD_WRITE) ? MSG_MORE : 0, &sent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (result <= 0) {
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400457 if (result == -ERESTARTSYS) {
458 /* If we havne't sent anything we can just return BUSY,
459 * however if we have sent something we need to make
460 * sure we only allow this req to be sent until we are
461 * completely done.
462 */
463 if (sent) {
464 nsock->pending = req;
465 nsock->sent = sent;
466 }
467 return BLK_MQ_RQ_QUEUE_BUSY;
468 }
Josef Bacika897b662016-12-05 16:20:29 -0500469 dev_err_ratelimited(disk_to_dev(nbd->disk),
WANG Cong7f1b90f2011-08-19 14:48:22 +0200470 "Send control failed (result %d)\n", result);
Josef Bacikf3733242017-04-06 17:01:57 -0400471 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400473send_pages:
Jens Axboe429a7872016-11-17 12:30:37 -0700474 if (type != NBD_CMD_WRITE)
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400475 goto out;
Jens Axboe429a7872016-11-17 12:30:37 -0700476
Jens Axboe429a7872016-11-17 12:30:37 -0700477 bio = req->bio;
478 while (bio) {
479 struct bio *next = bio->bi_next;
480 struct bvec_iter iter;
Kent Overstreet79886132013-11-23 17:19:00 -0800481 struct bio_vec bvec;
Jens Axboe429a7872016-11-17 12:30:37 -0700482
483 bio_for_each_segment(bvec, bio, iter) {
484 bool is_last = !next && bio_iter_last(bvec, iter);
Josef Bacikd61b7f92017-01-19 16:08:49 -0500485 int flags = is_last ? 0 : MSG_MORE;
Jens Axboe429a7872016-11-17 12:30:37 -0700486
Markus Pargmannd18509f2015-04-02 10:11:38 +0200487 dev_dbg(nbd_to_dev(nbd), "request %p: sending %d bytes data\n",
Josef Bacikfd8383f2016-09-08 12:33:37 -0700488 cmd, bvec.bv_len);
Al Viroc9f2b6a2015-11-12 05:09:35 -0500489 iov_iter_bvec(&from, ITER_BVEC | WRITE,
490 &bvec, 1, bvec.bv_len);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400491 if (skip) {
492 if (skip >= iov_iter_count(&from)) {
493 skip -= iov_iter_count(&from);
494 continue;
495 }
496 iov_iter_advance(&from, skip);
497 skip = 0;
498 }
499 result = sock_xmit(nbd, index, 1, &from, flags, &sent);
Jens Axboe6c92e692007-08-16 13:43:12 +0200500 if (result <= 0) {
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400501 if (result == -ERESTARTSYS) {
502 /* We've already sent the header, we
503 * have no choice but to set pending and
504 * return BUSY.
505 */
506 nsock->pending = req;
507 nsock->sent = sent;
508 return BLK_MQ_RQ_QUEUE_BUSY;
509 }
Wanlong Gaof4507162012-03-28 14:42:51 -0700510 dev_err(disk_to_dev(nbd->disk),
WANG Cong7f1b90f2011-08-19 14:48:22 +0200511 "Send data failed (result %d)\n",
512 result);
Josef Bacikf3733242017-04-06 17:01:57 -0400513 return -EAGAIN;
Jens Axboe6c92e692007-08-16 13:43:12 +0200514 }
Jens Axboe429a7872016-11-17 12:30:37 -0700515 /*
516 * The completion might already have come in,
517 * so break for the last one instead of letting
518 * the iterator do it. This prevents use-after-free
519 * of the bio.
520 */
521 if (is_last)
522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 }
Jens Axboe429a7872016-11-17 12:30:37 -0700524 bio = next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400526out:
527 nsock->pending = NULL;
528 nsock->sent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/* NULL returned = something went wrong, inform userspace */
Josef Bacik9561a7a2016-11-22 14:04:40 -0500533static struct nbd_cmd *nbd_read_stat(struct nbd_device *nbd, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400535 struct nbd_config *config = nbd->config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int result;
537 struct nbd_reply reply;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700538 struct nbd_cmd *cmd;
539 struct request *req = NULL;
540 u16 hwq;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500541 u32 tag;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500542 struct kvec iov = {.iov_base = &reply, .iov_len = sizeof(reply)};
543 struct iov_iter to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 reply.magic = 0;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500546 iov_iter_kvec(&to, READ | ITER_KVEC, &iov, 1, sizeof(reply));
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400547 result = sock_xmit(nbd, index, 0, &to, MSG_WAITALL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (result <= 0) {
Josef Bacik5ea8d102017-04-06 17:01:58 -0400549 if (!nbd_disconnected(config))
Josef Bacik9561a7a2016-11-22 14:04:40 -0500550 dev_err(disk_to_dev(nbd->disk),
551 "Receive control failed (result %d)\n", result);
Markus Pargmann19391832015-08-17 08:20:03 +0200552 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Michal Feixe4b57e02006-07-30 03:03:31 -0700554
555 if (ntohl(reply.magic) != NBD_REPLY_MAGIC) {
Wanlong Gaof4507162012-03-28 14:42:51 -0700556 dev_err(disk_to_dev(nbd->disk), "Wrong magic (0x%lx)\n",
Michal Feixe4b57e02006-07-30 03:03:31 -0700557 (unsigned long)ntohl(reply.magic));
Markus Pargmann19391832015-08-17 08:20:03 +0200558 return ERR_PTR(-EPROTO);
Michal Feixe4b57e02006-07-30 03:03:31 -0700559 }
560
Josef Bacik9561a7a2016-11-22 14:04:40 -0500561 memcpy(&tag, reply.handle, sizeof(u32));
Herbert Xu4b2f0262006-01-06 00:09:47 -0800562
Josef Bacikfd8383f2016-09-08 12:33:37 -0700563 hwq = blk_mq_unique_tag_to_hwq(tag);
564 if (hwq < nbd->tag_set.nr_hw_queues)
565 req = blk_mq_tag_to_rq(nbd->tag_set.tags[hwq],
566 blk_mq_unique_tag_to_tag(tag));
567 if (!req || !blk_mq_request_started(req)) {
568 dev_err(disk_to_dev(nbd->disk), "Unexpected reply (%d) %p\n",
569 tag, req);
570 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Josef Bacikfd8383f2016-09-08 12:33:37 -0700572 cmd = blk_mq_rq_to_pdu(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (ntohl(reply.error)) {
Wanlong Gaof4507162012-03-28 14:42:51 -0700574 dev_err(disk_to_dev(nbd->disk), "Other side returned error (%d)\n",
WANG Cong7f1b90f2011-08-19 14:48:22 +0200575 ntohl(reply.error));
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200576 cmd->status = -EIO;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700577 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
Josef Bacikfd8383f2016-09-08 12:33:37 -0700580 dev_dbg(nbd_to_dev(nbd), "request %p: got reply\n", cmd);
Christoph Hellwig9dc6c802015-04-17 22:37:21 +0200581 if (rq_data_dir(req) != WRITE) {
NeilBrown5705f702007-09-25 12:35:59 +0200582 struct req_iterator iter;
Kent Overstreet79886132013-11-23 17:19:00 -0800583 struct bio_vec bvec;
NeilBrown5705f702007-09-25 12:35:59 +0200584
585 rq_for_each_segment(bvec, req, iter) {
Al Viroc9f2b6a2015-11-12 05:09:35 -0500586 iov_iter_bvec(&to, ITER_BVEC | READ,
587 &bvec, 1, bvec.bv_len);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400588 result = sock_xmit(nbd, index, 0, &to, MSG_WAITALL, NULL);
Jens Axboe6c92e692007-08-16 13:43:12 +0200589 if (result <= 0) {
Wanlong Gaof4507162012-03-28 14:42:51 -0700590 dev_err(disk_to_dev(nbd->disk), "Receive data failed (result %d)\n",
WANG Cong7f1b90f2011-08-19 14:48:22 +0200591 result);
Josef Bacikf3733242017-04-06 17:01:57 -0400592 /*
593 * If we've disconnected or we only have 1
594 * connection then we need to make sure we
595 * complete this request, otherwise error out
596 * and let the timeout stuff handle resubmitting
597 * this request onto another connection.
598 */
Josef Bacik5ea8d102017-04-06 17:01:58 -0400599 if (nbd_disconnected(config) ||
600 config->num_connections <= 1) {
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200601 cmd->status = -EIO;
Josef Bacikf3733242017-04-06 17:01:57 -0400602 return cmd;
603 }
604 return ERR_PTR(-EIO);
Jens Axboe6c92e692007-08-16 13:43:12 +0200605 }
Markus Pargmannd18509f2015-04-02 10:11:38 +0200606 dev_dbg(nbd_to_dev(nbd), "request %p: got %d bytes data\n",
Josef Bacikfd8383f2016-09-08 12:33:37 -0700607 cmd, bvec.bv_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500609 } else {
610 /* See the comment in nbd_queue_rq. */
611 wait_for_completion(&cmd->send_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Josef Bacikfd8383f2016-09-08 12:33:37 -0700613 return cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Josef Bacik9561a7a2016-11-22 14:04:40 -0500616static void recv_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Josef Bacik9561a7a2016-11-22 14:04:40 -0500618 struct recv_thread_args *args = container_of(work,
619 struct recv_thread_args,
620 work);
621 struct nbd_device *nbd = args->nbd;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400622 struct nbd_config *config = nbd->config;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700623 struct nbd_cmd *cmd;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500624 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Markus Pargmann19391832015-08-17 08:20:03 +0200626 while (1) {
Josef Bacik9561a7a2016-11-22 14:04:40 -0500627 cmd = nbd_read_stat(nbd, args->index);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700628 if (IS_ERR(cmd)) {
Josef Bacik5ea8d102017-04-06 17:01:58 -0400629 struct nbd_sock *nsock = config->socks[args->index];
Josef Bacikf3733242017-04-06 17:01:57 -0400630
631 mutex_lock(&nsock->tx_lock);
Josef Bacik799f9a32017-04-06 17:02:02 -0400632 nbd_mark_nsock_dead(nbd, nsock, 1);
Josef Bacikf3733242017-04-06 17:01:57 -0400633 mutex_unlock(&nsock->tx_lock);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700634 ret = PTR_ERR(cmd);
Markus Pargmann19391832015-08-17 08:20:03 +0200635 break;
636 }
637
Christoph Hellwig08e00292017-04-20 16:03:09 +0200638 blk_mq_complete_request(blk_mq_rq_from_pdu(cmd));
Markus Pargmann19391832015-08-17 08:20:03 +0200639 }
Josef Bacik5ea8d102017-04-06 17:01:58 -0400640 atomic_dec(&config->recv_threads);
641 wake_up(&config->recv_wq);
642 nbd_config_put(nbd);
643 kfree(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Josef Bacikfd8383f2016-09-08 12:33:37 -0700646static void nbd_clear_req(struct request *req, void *data, bool reserved)
647{
648 struct nbd_cmd *cmd;
649
650 if (!blk_mq_request_started(req))
651 return;
652 cmd = blk_mq_rq_to_pdu(req);
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200653 cmd->status = -EIO;
Christoph Hellwig08e00292017-04-20 16:03:09 +0200654 blk_mq_complete_request(req);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700655}
656
Wanlong Gaof4507162012-03-28 14:42:51 -0700657static void nbd_clear_que(struct nbd_device *nbd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Josef Bacik2516ab12017-04-06 17:02:03 -0400659 blk_mq_stop_hw_queues(nbd->disk->queue);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700660 blk_mq_tagset_busy_iter(&nbd->tag_set, nbd_clear_req, NULL);
Josef Bacik2516ab12017-04-06 17:02:03 -0400661 blk_mq_start_hw_queues(nbd->disk->queue);
Markus Pargmanne78273c2015-08-17 08:20:04 +0200662 dev_dbg(disk_to_dev(nbd->disk), "queue cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
Josef Bacikf3733242017-04-06 17:01:57 -0400665static int find_fallback(struct nbd_device *nbd, int index)
666{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400667 struct nbd_config *config = nbd->config;
Josef Bacikf3733242017-04-06 17:01:57 -0400668 int new_index = -1;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400669 struct nbd_sock *nsock = config->socks[index];
Josef Bacikf3733242017-04-06 17:01:57 -0400670 int fallback = nsock->fallback_index;
671
Josef Bacik5ea8d102017-04-06 17:01:58 -0400672 if (test_bit(NBD_DISCONNECTED, &config->runtime_flags))
Josef Bacikf3733242017-04-06 17:01:57 -0400673 return new_index;
674
Josef Bacik5ea8d102017-04-06 17:01:58 -0400675 if (config->num_connections <= 1) {
Josef Bacikf3733242017-04-06 17:01:57 -0400676 dev_err_ratelimited(disk_to_dev(nbd->disk),
677 "Attempted send on invalid socket\n");
678 return new_index;
679 }
680
Josef Bacik5ea8d102017-04-06 17:01:58 -0400681 if (fallback >= 0 && fallback < config->num_connections &&
682 !config->socks[fallback]->dead)
Josef Bacikf3733242017-04-06 17:01:57 -0400683 return fallback;
684
685 if (nsock->fallback_index < 0 ||
Josef Bacik5ea8d102017-04-06 17:01:58 -0400686 nsock->fallback_index >= config->num_connections ||
687 config->socks[nsock->fallback_index]->dead) {
Josef Bacikf3733242017-04-06 17:01:57 -0400688 int i;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400689 for (i = 0; i < config->num_connections; i++) {
Josef Bacikf3733242017-04-06 17:01:57 -0400690 if (i == index)
691 continue;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400692 if (!config->socks[i]->dead) {
Josef Bacikf3733242017-04-06 17:01:57 -0400693 new_index = i;
694 break;
695 }
696 }
697 nsock->fallback_index = new_index;
698 if (new_index < 0) {
699 dev_err_ratelimited(disk_to_dev(nbd->disk),
700 "Dead connection, failed to find a fallback\n");
701 return new_index;
702 }
703 }
704 new_index = nsock->fallback_index;
705 return new_index;
706}
Paul Clements7fdfd402007-10-16 23:27:37 -0700707
Josef Bacik560bc4b2017-04-06 17:02:04 -0400708static int wait_for_reconnect(struct nbd_device *nbd)
709{
710 struct nbd_config *config = nbd->config;
711 if (!config->dead_conn_timeout)
712 return 0;
713 if (test_bit(NBD_DISCONNECTED, &config->runtime_flags))
714 return 0;
715 wait_event_interruptible_timeout(config->conn_wait,
716 atomic_read(&config->live_connections),
717 config->dead_conn_timeout);
718 return atomic_read(&config->live_connections);
719}
720
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400721static int nbd_handle_cmd(struct nbd_cmd *cmd, int index)
Laurent Vivier48cf6062008-04-29 01:02:46 -0700722{
Josef Bacikfd8383f2016-09-08 12:33:37 -0700723 struct request *req = blk_mq_rq_from_pdu(cmd);
724 struct nbd_device *nbd = cmd->nbd;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400725 struct nbd_config *config;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500726 struct nbd_sock *nsock;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400727 int ret;
Josef Bacikfd8383f2016-09-08 12:33:37 -0700728
Josef Bacik5ea8d102017-04-06 17:01:58 -0400729 if (!refcount_inc_not_zero(&nbd->config_refs)) {
730 dev_err_ratelimited(disk_to_dev(nbd->disk),
731 "Socks array is empty\n");
732 return -EINVAL;
733 }
734 config = nbd->config;
735
736 if (index >= config->num_connections) {
Josef Bacika897b662016-12-05 16:20:29 -0500737 dev_err_ratelimited(disk_to_dev(nbd->disk),
738 "Attempted send on invalid socket\n");
Josef Bacik5ea8d102017-04-06 17:01:58 -0400739 nbd_config_put(nbd);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400740 return -EINVAL;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500741 }
Christoph Hellwig1e388ae2017-04-20 16:03:06 +0200742 cmd->status = 0;
Josef Bacikf3733242017-04-06 17:01:57 -0400743again:
Josef Bacik5ea8d102017-04-06 17:01:58 -0400744 nsock = config->socks[index];
Josef Bacik9561a7a2016-11-22 14:04:40 -0500745 mutex_lock(&nsock->tx_lock);
Josef Bacikf3733242017-04-06 17:01:57 -0400746 if (nsock->dead) {
Josef Bacik560bc4b2017-04-06 17:02:04 -0400747 int old_index = index;
Josef Bacikf3733242017-04-06 17:01:57 -0400748 index = find_fallback(nbd, index);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500749 mutex_unlock(&nsock->tx_lock);
Josef Bacik560bc4b2017-04-06 17:02:04 -0400750 if (index < 0) {
751 if (wait_for_reconnect(nbd)) {
752 index = old_index;
753 goto again;
754 }
755 /* All the sockets should already be down at this point,
756 * we just want to make sure that DISCONNECTED is set so
757 * any requests that come in that were queue'ed waiting
758 * for the reconnect timer don't trigger the timer again
759 * and instead just error out.
760 */
761 sock_shutdown(nbd);
762 nbd_config_put(nbd);
763 return -EIO;
764 }
Josef Bacikf3733242017-04-06 17:01:57 -0400765 goto again;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700766 }
767
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400768 /* Handle the case that we have a pending request that was partially
769 * transmitted that _has_ to be serviced first. We need to call requeue
770 * here so that it gets put _after_ the request that is already on the
771 * dispatch list.
772 */
773 if (unlikely(nsock->pending && nsock->pending != req)) {
774 blk_mq_requeue_request(req, true);
775 ret = 0;
776 goto out;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700777 }
Josef Bacikf3733242017-04-06 17:01:57 -0400778 /*
779 * Some failures are related to the link going down, so anything that
780 * returns EAGAIN can be retried on a different socket.
781 */
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400782 ret = nbd_send_cmd(nbd, cmd, index);
Josef Bacikf3733242017-04-06 17:01:57 -0400783 if (ret == -EAGAIN) {
784 dev_err_ratelimited(disk_to_dev(nbd->disk),
785 "Request send failed trying another connection\n");
Josef Bacik799f9a32017-04-06 17:02:02 -0400786 nbd_mark_nsock_dead(nbd, nsock, 1);
Josef Bacikf3733242017-04-06 17:01:57 -0400787 mutex_unlock(&nsock->tx_lock);
788 goto again;
789 }
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400790out:
Josef Bacik9561a7a2016-11-22 14:04:40 -0500791 mutex_unlock(&nsock->tx_lock);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400792 nbd_config_put(nbd);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400793 return ret;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700794}
795
Josef Bacikfd8383f2016-09-08 12:33:37 -0700796static int nbd_queue_rq(struct blk_mq_hw_ctx *hctx,
797 const struct blk_mq_queue_data *bd)
Laurent Vivier48cf6062008-04-29 01:02:46 -0700798{
Josef Bacikfd8383f2016-09-08 12:33:37 -0700799 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(bd->rq);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400800 int ret;
Laurent Vivier48cf6062008-04-29 01:02:46 -0700801
Josef Bacik9561a7a2016-11-22 14:04:40 -0500802 /*
803 * Since we look at the bio's to send the request over the network we
804 * need to make sure the completion work doesn't mark this request done
805 * before we are done doing our send. This keeps us from dereferencing
806 * freed data if we have particularly fast completions (ie we get the
807 * completion before we exit sock_xmit on the last bvec) or in the case
808 * that the server is misbehaving (or there was an error) before we're
809 * done sending everything over the wire.
810 */
811 init_completion(&cmd->send_complete);
Josef Bacikfd8383f2016-09-08 12:33:37 -0700812 blk_mq_start_request(bd->rq);
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400813
814 /* We can be called directly from the user space process, which means we
815 * could possibly have signals pending so our sendmsg will fail. In
816 * this case we need to return that we are busy, otherwise error out as
817 * appropriate.
818 */
819 ret = nbd_handle_cmd(cmd, hctx->queue_num);
820 if (ret < 0)
821 ret = BLK_MQ_RQ_QUEUE_ERROR;
822 if (!ret)
823 ret = BLK_MQ_RQ_QUEUE_OK;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500824 complete(&cmd->send_complete);
825
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400826 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Josef Bacike46c7282017-04-06 17:02:00 -0400829static int nbd_add_socket(struct nbd_device *nbd, unsigned long arg,
830 bool netlink)
Markus Pargmann23272a672015-10-29 11:51:16 +0100831{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400832 struct nbd_config *config = nbd->config;
Josef Bacik9442b732017-02-07 17:10:22 -0500833 struct socket *sock;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500834 struct nbd_sock **socks;
835 struct nbd_sock *nsock;
Josef Bacik9442b732017-02-07 17:10:22 -0500836 int err;
837
838 sock = sockfd_lookup(arg, &err);
839 if (!sock)
840 return err;
Markus Pargmann23272a672015-10-29 11:51:16 +0100841
Josef Bacike46c7282017-04-06 17:02:00 -0400842 if (!netlink && !nbd->task_setup &&
843 !test_bit(NBD_BOUND, &config->runtime_flags))
Josef Bacik9561a7a2016-11-22 14:04:40 -0500844 nbd->task_setup = current;
Josef Bacike46c7282017-04-06 17:02:00 -0400845
846 if (!netlink &&
847 (nbd->task_setup != current ||
848 test_bit(NBD_BOUND, &config->runtime_flags))) {
Josef Bacik9561a7a2016-11-22 14:04:40 -0500849 dev_err(disk_to_dev(nbd->disk),
850 "Device being setup by another task");
Josef Bacik9b1355d2017-04-06 17:01:56 -0400851 sockfd_put(sock);
Josef Bacike46c7282017-04-06 17:02:00 -0400852 return -EBUSY;
Markus Pargmann23272a672015-10-29 11:51:16 +0100853 }
854
Josef Bacik5ea8d102017-04-06 17:01:58 -0400855 socks = krealloc(config->socks, (config->num_connections + 1) *
Josef Bacik9561a7a2016-11-22 14:04:40 -0500856 sizeof(struct nbd_sock *), GFP_KERNEL);
Josef Bacik9b1355d2017-04-06 17:01:56 -0400857 if (!socks) {
858 sockfd_put(sock);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500859 return -ENOMEM;
Josef Bacik9b1355d2017-04-06 17:01:56 -0400860 }
Josef Bacik9561a7a2016-11-22 14:04:40 -0500861 nsock = kzalloc(sizeof(struct nbd_sock), GFP_KERNEL);
Josef Bacik9b1355d2017-04-06 17:01:56 -0400862 if (!nsock) {
863 sockfd_put(sock);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500864 return -ENOMEM;
Josef Bacik9b1355d2017-04-06 17:01:56 -0400865 }
Markus Pargmann23272a672015-10-29 11:51:16 +0100866
Josef Bacik5ea8d102017-04-06 17:01:58 -0400867 config->socks = socks;
Markus Pargmann23272a672015-10-29 11:51:16 +0100868
Josef Bacikf3733242017-04-06 17:01:57 -0400869 nsock->fallback_index = -1;
870 nsock->dead = false;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500871 mutex_init(&nsock->tx_lock);
872 nsock->sock = sock;
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400873 nsock->pending = NULL;
874 nsock->sent = 0;
Josef Bacik799f9a32017-04-06 17:02:02 -0400875 nsock->cookie = 0;
Josef Bacik5ea8d102017-04-06 17:01:58 -0400876 socks[config->num_connections++] = nsock;
Josef Bacik560bc4b2017-04-06 17:02:04 -0400877 atomic_inc(&config->live_connections);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500878
879 return 0;
Markus Pargmann23272a672015-10-29 11:51:16 +0100880}
881
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400882static int nbd_reconnect_socket(struct nbd_device *nbd, unsigned long arg)
883{
884 struct nbd_config *config = nbd->config;
885 struct socket *sock, *old;
886 struct recv_thread_args *args;
887 int i;
888 int err;
889
890 sock = sockfd_lookup(arg, &err);
891 if (!sock)
892 return err;
893
894 args = kzalloc(sizeof(*args), GFP_KERNEL);
895 if (!args) {
896 sockfd_put(sock);
897 return -ENOMEM;
898 }
899
900 for (i = 0; i < config->num_connections; i++) {
901 struct nbd_sock *nsock = config->socks[i];
902
903 if (!nsock->dead)
904 continue;
905
906 mutex_lock(&nsock->tx_lock);
907 if (!nsock->dead) {
908 mutex_unlock(&nsock->tx_lock);
909 continue;
910 }
911 sk_set_memalloc(sock->sk);
912 atomic_inc(&config->recv_threads);
913 refcount_inc(&nbd->config_refs);
914 old = nsock->sock;
915 nsock->fallback_index = -1;
916 nsock->sock = sock;
917 nsock->dead = false;
918 INIT_WORK(&args->work, recv_work);
919 args->index = i;
920 args->nbd = nbd;
Josef Bacik799f9a32017-04-06 17:02:02 -0400921 nsock->cookie++;
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400922 mutex_unlock(&nsock->tx_lock);
923 sockfd_put(old);
924
925 /* We take the tx_mutex in an error path in the recv_work, so we
926 * need to queue_work outside of the tx_mutex.
927 */
928 queue_work(recv_workqueue, &args->work);
Josef Bacik560bc4b2017-04-06 17:02:04 -0400929
930 atomic_inc(&config->live_connections);
931 wake_up(&config->conn_wait);
Josef Bacikb7aa3d32017-04-06 17:02:01 -0400932 return 0;
933 }
934 sockfd_put(sock);
935 kfree(args);
936 return -ENOSPC;
937}
938
Markus Pargmann0e4f0f62015-10-29 12:04:51 +0100939/* Reset all properties of an NBD device */
940static void nbd_reset(struct nbd_device *nbd)
941{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400942 nbd->config = NULL;
Josef Bacik0eadf372016-09-08 12:33:40 -0700943 nbd->tag_set.timeout = 0;
Markus Pargmann0e4f0f62015-10-29 12:04:51 +0100944 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue);
Markus Pargmann0e4f0f62015-10-29 12:04:51 +0100945}
946
947static void nbd_bdev_reset(struct block_device *bdev)
948{
Ratna Manoj Bollaabbbdf12017-03-24 14:08:29 -0400949 if (bdev->bd_openers > 1)
950 return;
Josef Bacik29eaadc2017-04-06 17:01:59 -0400951 bd_set_size(bdev, 0);
Markus Pargmann0e4f0f62015-10-29 12:04:51 +0100952 if (max_part > 0) {
953 blkdev_reread_part(bdev);
954 bdev->bd_invalidated = 1;
955 }
956}
957
Josef Bacik29eaadc2017-04-06 17:01:59 -0400958static void nbd_parse_flags(struct nbd_device *nbd)
Markus Pargmannd02cf532015-10-29 12:06:15 +0100959{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400960 struct nbd_config *config = nbd->config;
961 if (config->flags & NBD_FLAG_READ_ONLY)
Josef Bacik29eaadc2017-04-06 17:01:59 -0400962 set_disk_ro(nbd->disk, true);
963 else
964 set_disk_ro(nbd->disk, false);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400965 if (config->flags & NBD_FLAG_SEND_TRIM)
Markus Pargmannd02cf532015-10-29 12:06:15 +0100966 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, nbd->disk->queue);
Josef Bacik5ea8d102017-04-06 17:01:58 -0400967 if (config->flags & NBD_FLAG_SEND_FLUSH)
Jens Axboeaafb1ee2016-03-30 10:10:53 -0600968 blk_queue_write_cache(nbd->disk->queue, true, false);
Markus Pargmannd02cf532015-10-29 12:06:15 +0100969 else
Jens Axboeaafb1ee2016-03-30 10:10:53 -0600970 blk_queue_write_cache(nbd->disk->queue, false, false);
Markus Pargmannd02cf532015-10-29 12:06:15 +0100971}
972
Josef Bacik9561a7a2016-11-22 14:04:40 -0500973static void send_disconnects(struct nbd_device *nbd)
974{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400975 struct nbd_config *config = nbd->config;
Al Viroc9f2b6a2015-11-12 05:09:35 -0500976 struct nbd_request request = {
977 .magic = htonl(NBD_REQUEST_MAGIC),
978 .type = htonl(NBD_CMD_DISC),
979 };
980 struct kvec iov = {.iov_base = &request, .iov_len = sizeof(request)};
981 struct iov_iter from;
Josef Bacik9561a7a2016-11-22 14:04:40 -0500982 int i, ret;
983
Josef Bacik5ea8d102017-04-06 17:01:58 -0400984 for (i = 0; i < config->num_connections; i++) {
Al Viroc9f2b6a2015-11-12 05:09:35 -0500985 iov_iter_kvec(&from, WRITE | ITER_KVEC, &iov, 1, sizeof(request));
Josef Bacik9dd5d3a2017-03-24 14:08:26 -0400986 ret = sock_xmit(nbd, i, 1, &from, 0, NULL);
Josef Bacik9561a7a2016-11-22 14:04:40 -0500987 if (ret <= 0)
988 dev_err(disk_to_dev(nbd->disk),
989 "Send disconnect failed %d\n", ret);
990 }
991}
992
Josef Bacik29eaadc2017-04-06 17:01:59 -0400993static int nbd_disconnect(struct nbd_device *nbd)
Josef Bacik9442b732017-02-07 17:10:22 -0500994{
Josef Bacik5ea8d102017-04-06 17:01:58 -0400995 struct nbd_config *config = nbd->config;
Josef Bacik9442b732017-02-07 17:10:22 -0500996
Josef Bacik5ea8d102017-04-06 17:01:58 -0400997 dev_info(disk_to_dev(nbd->disk), "NBD_DISCONNECT\n");
Josef Bacik9442b732017-02-07 17:10:22 -0500998 if (!test_and_set_bit(NBD_DISCONNECT_REQUESTED,
Josef Bacik5ea8d102017-04-06 17:01:58 -0400999 &config->runtime_flags))
Josef Bacik9442b732017-02-07 17:10:22 -05001000 send_disconnects(nbd);
1001 return 0;
1002}
1003
Josef Bacik29eaadc2017-04-06 17:01:59 -04001004static void nbd_clear_sock(struct nbd_device *nbd)
Josef Bacik9442b732017-02-07 17:10:22 -05001005{
1006 sock_shutdown(nbd);
1007 nbd_clear_que(nbd);
Josef Bacik9442b732017-02-07 17:10:22 -05001008 nbd->task_setup = NULL;
Josef Bacik9442b732017-02-07 17:10:22 -05001009}
1010
Josef Bacik5ea8d102017-04-06 17:01:58 -04001011static void nbd_config_put(struct nbd_device *nbd)
1012{
1013 if (refcount_dec_and_mutex_lock(&nbd->config_refs,
1014 &nbd->config_lock)) {
Josef Bacik5ea8d102017-04-06 17:01:58 -04001015 struct nbd_config *config = nbd->config;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001016 nbd_dev_dbg_close(nbd);
Josef Bacik29eaadc2017-04-06 17:01:59 -04001017 nbd_size_clear(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001018 if (test_and_clear_bit(NBD_HAS_PID_FILE,
1019 &config->runtime_flags))
1020 device_remove_file(disk_to_dev(nbd->disk), &pid_attr);
1021 nbd->task_recv = NULL;
Josef Bacik29eaadc2017-04-06 17:01:59 -04001022 nbd_clear_sock(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001023 if (config->num_connections) {
1024 int i;
1025 for (i = 0; i < config->num_connections; i++) {
1026 sockfd_put(config->socks[i]->sock);
1027 kfree(config->socks[i]);
1028 }
1029 kfree(config->socks);
1030 }
1031 nbd_reset(nbd);
Josef Bacika2c97902017-04-06 17:02:07 -04001032
Josef Bacik5ea8d102017-04-06 17:01:58 -04001033 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001034 nbd_put(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001035 module_put(THIS_MODULE);
1036 }
1037}
1038
Josef Bacike46c7282017-04-06 17:02:00 -04001039static int nbd_start_device(struct nbd_device *nbd)
Josef Bacik9442b732017-02-07 17:10:22 -05001040{
Josef Bacik5ea8d102017-04-06 17:01:58 -04001041 struct nbd_config *config = nbd->config;
1042 int num_connections = config->num_connections;
Josef Bacik9442b732017-02-07 17:10:22 -05001043 int error = 0, i;
1044
1045 if (nbd->task_recv)
1046 return -EBUSY;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001047 if (!config->socks)
Josef Bacik9442b732017-02-07 17:10:22 -05001048 return -EINVAL;
1049 if (num_connections > 1 &&
Josef Bacik5ea8d102017-04-06 17:01:58 -04001050 !(config->flags & NBD_FLAG_CAN_MULTI_CONN)) {
Josef Bacik9442b732017-02-07 17:10:22 -05001051 dev_err(disk_to_dev(nbd->disk), "server does not support multiple connections per device.\n");
Josef Bacik5ea8d102017-04-06 17:01:58 -04001052 return -EINVAL;
Josef Bacik9442b732017-02-07 17:10:22 -05001053 }
1054
Josef Bacik5ea8d102017-04-06 17:01:58 -04001055 blk_mq_update_nr_hw_queues(&nbd->tag_set, config->num_connections);
Josef Bacik9442b732017-02-07 17:10:22 -05001056 nbd->task_recv = current;
Josef Bacik9442b732017-02-07 17:10:22 -05001057
Josef Bacik29eaadc2017-04-06 17:01:59 -04001058 nbd_parse_flags(nbd);
Josef Bacik9442b732017-02-07 17:10:22 -05001059
1060 error = device_create_file(disk_to_dev(nbd->disk), &pid_attr);
1061 if (error) {
1062 dev_err(disk_to_dev(nbd->disk), "device_create_file failed!\n");
Josef Bacik5ea8d102017-04-06 17:01:58 -04001063 return error;
Josef Bacik9442b732017-02-07 17:10:22 -05001064 }
Josef Bacik29eaadc2017-04-06 17:01:59 -04001065 set_bit(NBD_HAS_PID_FILE, &config->runtime_flags);
Josef Bacik9442b732017-02-07 17:10:22 -05001066
1067 nbd_dev_dbg_init(nbd);
1068 for (i = 0; i < num_connections; i++) {
Josef Bacik5ea8d102017-04-06 17:01:58 -04001069 struct recv_thread_args *args;
1070
1071 args = kzalloc(sizeof(*args), GFP_KERNEL);
1072 if (!args) {
1073 sock_shutdown(nbd);
1074 return -ENOMEM;
1075 }
1076 sk_set_memalloc(config->socks[i]->sock->sk);
1077 atomic_inc(&config->recv_threads);
1078 refcount_inc(&nbd->config_refs);
1079 INIT_WORK(&args->work, recv_work);
1080 args->nbd = nbd;
1081 args->index = i;
1082 queue_work(recv_workqueue, &args->work);
Josef Bacik9442b732017-02-07 17:10:22 -05001083 }
Josef Bacike46c7282017-04-06 17:02:00 -04001084 return error;
1085}
1086
1087static int nbd_start_device_ioctl(struct nbd_device *nbd, struct block_device *bdev)
1088{
1089 struct nbd_config *config = nbd->config;
1090 int ret;
1091
1092 ret = nbd_start_device(nbd);
1093 if (ret)
1094 return ret;
1095
1096 bd_set_size(bdev, config->bytesize);
1097 if (max_part)
1098 bdev->bd_invalidated = 1;
1099 mutex_unlock(&nbd->config_lock);
1100 ret = wait_event_interruptible(config->recv_wq,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001101 atomic_read(&config->recv_threads) == 0);
Josef Bacike46c7282017-04-06 17:02:00 -04001102 if (ret)
Josef Bacik5ea8d102017-04-06 17:01:58 -04001103 sock_shutdown(nbd);
Josef Bacik9442b732017-02-07 17:10:22 -05001104 mutex_lock(&nbd->config_lock);
Josef Bacike46c7282017-04-06 17:02:00 -04001105 bd_set_size(bdev, 0);
Josef Bacik9442b732017-02-07 17:10:22 -05001106 /* user requested, ignore socket errors */
Josef Bacik5ea8d102017-04-06 17:01:58 -04001107 if (test_bit(NBD_DISCONNECT_REQUESTED, &config->runtime_flags))
Josef Bacike46c7282017-04-06 17:02:00 -04001108 ret = 0;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001109 if (test_bit(NBD_TIMEDOUT, &config->runtime_flags))
Josef Bacike46c7282017-04-06 17:02:00 -04001110 ret = -ETIMEDOUT;
1111 return ret;
Josef Bacik9442b732017-02-07 17:10:22 -05001112}
Markus Pargmann30d53d92015-08-17 08:20:06 +02001113
Josef Bacik29eaadc2017-04-06 17:01:59 -04001114static void nbd_clear_sock_ioctl(struct nbd_device *nbd,
1115 struct block_device *bdev)
1116{
Josef Bacik2516ab12017-04-06 17:02:03 -04001117 sock_shutdown(nbd);
Josef Bacik29eaadc2017-04-06 17:01:59 -04001118 kill_bdev(bdev);
1119 nbd_bdev_reset(bdev);
Josef Bacike46c7282017-04-06 17:02:00 -04001120 if (test_and_clear_bit(NBD_HAS_CONFIG_REF,
1121 &nbd->config->runtime_flags))
1122 nbd_config_put(nbd);
Josef Bacik29eaadc2017-04-06 17:01:59 -04001123}
1124
Josef Bacik9561a7a2016-11-22 14:04:40 -05001125/* Must be called with config_lock held */
Wanlong Gaof4507162012-03-28 14:42:51 -07001126static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd,
Pavel Machek1a2ad212009-04-02 16:58:41 -07001127 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Josef Bacik5ea8d102017-04-06 17:01:58 -04001129 struct nbd_config *config = nbd->config;
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 switch (cmd) {
Josef Bacik9442b732017-02-07 17:10:22 -05001132 case NBD_DISCONNECT:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001133 return nbd_disconnect(nbd);
Markus Pargmann23272a672015-10-29 11:51:16 +01001134 case NBD_CLEAR_SOCK:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001135 nbd_clear_sock_ioctl(nbd, bdev);
1136 return 0;
Josef Bacik9442b732017-02-07 17:10:22 -05001137 case NBD_SET_SOCK:
Josef Bacike46c7282017-04-06 17:02:00 -04001138 return nbd_add_socket(nbd, arg, false);
Josef Bacik9442b732017-02-07 17:10:22 -05001139 case NBD_SET_BLKSIZE:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001140 nbd_size_set(nbd, arg,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001141 div_s64(config->bytesize, arg));
Josef Bacike5445412017-02-13 10:39:47 -05001142 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 case NBD_SET_SIZE:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001144 nbd_size_set(nbd, config->blksize,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001145 div_s64(arg, config->blksize));
Josef Bacike5445412017-02-13 10:39:47 -05001146 return 0;
Markus Pargmann37091fd2015-07-27 07:36:49 +02001147 case NBD_SET_SIZE_BLOCKS:
Josef Bacik29eaadc2017-04-06 17:01:59 -04001148 nbd_size_set(nbd, config->blksize, arg);
Josef Bacike5445412017-02-13 10:39:47 -05001149 return 0;
Paul Clements7fdfd402007-10-16 23:27:37 -07001150 case NBD_SET_TIMEOUT:
Josef Bacikf8586852017-03-24 14:08:28 -04001151 if (arg) {
1152 nbd->tag_set.timeout = arg * HZ;
1153 blk_queue_rq_timeout(nbd->disk->queue, arg * HZ);
1154 }
Paul Clements7fdfd402007-10-16 23:27:37 -07001155 return 0;
Pavel Machek1a2ad212009-04-02 16:58:41 -07001156
Paul Clements2f012502012-10-04 17:16:15 -07001157 case NBD_SET_FLAGS:
Josef Bacik5ea8d102017-04-06 17:01:58 -04001158 config->flags = arg;
Paul Clements2f012502012-10-04 17:16:15 -07001159 return 0;
Josef Bacik9442b732017-02-07 17:10:22 -05001160 case NBD_DO_IT:
Josef Bacike46c7282017-04-06 17:02:00 -04001161 return nbd_start_device_ioctl(nbd, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 case NBD_CLEAR_QUE:
Herbert Xu4b2f0262006-01-06 00:09:47 -08001163 /*
1164 * This is for compatibility only. The queue is always cleared
1165 * by NBD_DO_IT or NBD_CLEAR_SOCK.
1166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return 0;
1168 case NBD_PRINT_DEBUG:
Josef Bacikfd8383f2016-09-08 12:33:37 -07001169 /*
1170 * For compatibility only, we no longer keep a list of
1171 * outstanding requests.
1172 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return 0;
1174 }
Pavel Machek1a2ad212009-04-02 16:58:41 -07001175 return -ENOTTY;
1176}
1177
1178static int nbd_ioctl(struct block_device *bdev, fmode_t mode,
1179 unsigned int cmd, unsigned long arg)
1180{
Wanlong Gaof4507162012-03-28 14:42:51 -07001181 struct nbd_device *nbd = bdev->bd_disk->private_data;
Josef Bacike46c7282017-04-06 17:02:00 -04001182 struct nbd_config *config = nbd->config;
1183 int error = -EINVAL;
Pavel Machek1a2ad212009-04-02 16:58:41 -07001184
1185 if (!capable(CAP_SYS_ADMIN))
1186 return -EPERM;
1187
Josef Bacik9561a7a2016-11-22 14:04:40 -05001188 mutex_lock(&nbd->config_lock);
Josef Bacike46c7282017-04-06 17:02:00 -04001189
1190 /* Don't allow ioctl operations on a nbd device that was created with
1191 * netlink, unless it's DISCONNECT or CLEAR_SOCK, which are fine.
1192 */
1193 if (!test_bit(NBD_BOUND, &config->runtime_flags) ||
1194 (cmd == NBD_DISCONNECT || cmd == NBD_CLEAR_SOCK))
1195 error = __nbd_ioctl(bdev, nbd, cmd, arg);
1196 else
1197 dev_err(nbd_to_dev(nbd), "Cannot use ioctl interface on a netlink controlled device.\n");
Josef Bacik9561a7a2016-11-22 14:04:40 -05001198 mutex_unlock(&nbd->config_lock);
Pavel Machek1a2ad212009-04-02 16:58:41 -07001199 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Josef Bacik5ea8d102017-04-06 17:01:58 -04001202static struct nbd_config *nbd_alloc_config(void)
1203{
1204 struct nbd_config *config;
1205
1206 config = kzalloc(sizeof(struct nbd_config), GFP_NOFS);
1207 if (!config)
1208 return NULL;
1209 atomic_set(&config->recv_threads, 0);
1210 init_waitqueue_head(&config->recv_wq);
Josef Bacik560bc4b2017-04-06 17:02:04 -04001211 init_waitqueue_head(&config->conn_wait);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001212 config->blksize = 1024;
Josef Bacik560bc4b2017-04-06 17:02:04 -04001213 atomic_set(&config->live_connections, 0);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001214 try_module_get(THIS_MODULE);
1215 return config;
1216}
1217
1218static int nbd_open(struct block_device *bdev, fmode_t mode)
1219{
1220 struct nbd_device *nbd;
1221 int ret = 0;
1222
1223 mutex_lock(&nbd_index_mutex);
1224 nbd = bdev->bd_disk->private_data;
1225 if (!nbd) {
1226 ret = -ENXIO;
1227 goto out;
1228 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001229 if (!refcount_inc_not_zero(&nbd->refs)) {
1230 ret = -ENXIO;
1231 goto out;
1232 }
Josef Bacik5ea8d102017-04-06 17:01:58 -04001233 if (!refcount_inc_not_zero(&nbd->config_refs)) {
1234 struct nbd_config *config;
1235
1236 mutex_lock(&nbd->config_lock);
1237 if (refcount_inc_not_zero(&nbd->config_refs)) {
1238 mutex_unlock(&nbd->config_lock);
1239 goto out;
1240 }
1241 config = nbd->config = nbd_alloc_config();
1242 if (!config) {
1243 ret = -ENOMEM;
1244 mutex_unlock(&nbd->config_lock);
1245 goto out;
1246 }
1247 refcount_set(&nbd->config_refs, 1);
Josef Bacikc6a47592017-04-06 17:02:06 -04001248 refcount_inc(&nbd->refs);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001249 mutex_unlock(&nbd->config_lock);
1250 }
1251out:
1252 mutex_unlock(&nbd_index_mutex);
1253 return ret;
1254}
1255
1256static void nbd_release(struct gendisk *disk, fmode_t mode)
1257{
1258 struct nbd_device *nbd = disk->private_data;
1259 nbd_config_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04001260 nbd_put(nbd);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001261}
1262
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001263static const struct block_device_operations nbd_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
1265 .owner = THIS_MODULE,
Josef Bacik5ea8d102017-04-06 17:01:58 -04001266 .open = nbd_open,
1267 .release = nbd_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02001268 .ioctl = nbd_ioctl,
Al Viro263a3df2016-01-07 10:04:37 -05001269 .compat_ioctl = nbd_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270};
1271
Markus Pargmann30d53d92015-08-17 08:20:06 +02001272#if IS_ENABLED(CONFIG_DEBUG_FS)
1273
1274static int nbd_dbg_tasks_show(struct seq_file *s, void *unused)
1275{
1276 struct nbd_device *nbd = s->private;
1277
1278 if (nbd->task_recv)
1279 seq_printf(s, "recv: %d\n", task_pid_nr(nbd->task_recv));
Markus Pargmann30d53d92015-08-17 08:20:06 +02001280
1281 return 0;
1282}
1283
1284static int nbd_dbg_tasks_open(struct inode *inode, struct file *file)
1285{
1286 return single_open(file, nbd_dbg_tasks_show, inode->i_private);
1287}
1288
1289static const struct file_operations nbd_dbg_tasks_ops = {
1290 .open = nbd_dbg_tasks_open,
1291 .read = seq_read,
1292 .llseek = seq_lseek,
1293 .release = single_release,
1294};
1295
1296static int nbd_dbg_flags_show(struct seq_file *s, void *unused)
1297{
1298 struct nbd_device *nbd = s->private;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001299 u32 flags = nbd->config->flags;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001300
1301 seq_printf(s, "Hex: 0x%08x\n\n", flags);
1302
1303 seq_puts(s, "Known flags:\n");
1304
1305 if (flags & NBD_FLAG_HAS_FLAGS)
1306 seq_puts(s, "NBD_FLAG_HAS_FLAGS\n");
1307 if (flags & NBD_FLAG_READ_ONLY)
1308 seq_puts(s, "NBD_FLAG_READ_ONLY\n");
1309 if (flags & NBD_FLAG_SEND_FLUSH)
1310 seq_puts(s, "NBD_FLAG_SEND_FLUSH\n");
1311 if (flags & NBD_FLAG_SEND_TRIM)
1312 seq_puts(s, "NBD_FLAG_SEND_TRIM\n");
1313
1314 return 0;
1315}
1316
1317static int nbd_dbg_flags_open(struct inode *inode, struct file *file)
1318{
1319 return single_open(file, nbd_dbg_flags_show, inode->i_private);
1320}
1321
1322static const struct file_operations nbd_dbg_flags_ops = {
1323 .open = nbd_dbg_flags_open,
1324 .read = seq_read,
1325 .llseek = seq_lseek,
1326 .release = single_release,
1327};
1328
1329static int nbd_dev_dbg_init(struct nbd_device *nbd)
1330{
1331 struct dentry *dir;
Josef Bacik5ea8d102017-04-06 17:01:58 -04001332 struct nbd_config *config = nbd->config;
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001333
1334 if (!nbd_dbg_dir)
1335 return -EIO;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001336
1337 dir = debugfs_create_dir(nbd_name(nbd), nbd_dbg_dir);
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001338 if (!dir) {
1339 dev_err(nbd_to_dev(nbd), "Failed to create debugfs dir for '%s'\n",
1340 nbd_name(nbd));
1341 return -EIO;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001342 }
Josef Bacik5ea8d102017-04-06 17:01:58 -04001343 config->dbg_dir = dir;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001344
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001345 debugfs_create_file("tasks", 0444, dir, nbd, &nbd_dbg_tasks_ops);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001346 debugfs_create_u64("size_bytes", 0444, dir, &config->bytesize);
Josef Bacik0eadf372016-09-08 12:33:40 -07001347 debugfs_create_u32("timeout", 0444, dir, &nbd->tag_set.timeout);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001348 debugfs_create_u64("blocksize", 0444, dir, &config->blksize);
Josef Bacikd366a0f2016-06-08 10:32:10 -04001349 debugfs_create_file("flags", 0444, dir, nbd, &nbd_dbg_flags_ops);
Markus Pargmann30d53d92015-08-17 08:20:06 +02001350
1351 return 0;
1352}
1353
1354static void nbd_dev_dbg_close(struct nbd_device *nbd)
1355{
Josef Bacik5ea8d102017-04-06 17:01:58 -04001356 debugfs_remove_recursive(nbd->config->dbg_dir);
Markus Pargmann30d53d92015-08-17 08:20:06 +02001357}
1358
1359static int nbd_dbg_init(void)
1360{
1361 struct dentry *dbg_dir;
1362
1363 dbg_dir = debugfs_create_dir("nbd", NULL);
Markus Pargmann27ea43f2015-10-24 21:15:34 +02001364 if (!dbg_dir)
1365 return -EIO;
Markus Pargmann30d53d92015-08-17 08:20:06 +02001366
1367 nbd_dbg_dir = dbg_dir;
1368
1369 return 0;
1370}
1371
1372static void nbd_dbg_close(void)
1373{
1374 debugfs_remove_recursive(nbd_dbg_dir);
1375}
1376
1377#else /* IS_ENABLED(CONFIG_DEBUG_FS) */
1378
1379static int nbd_dev_dbg_init(struct nbd_device *nbd)
1380{
1381 return 0;
1382}
1383
1384static void nbd_dev_dbg_close(struct nbd_device *nbd)
1385{
1386}
1387
1388static int nbd_dbg_init(void)
1389{
1390 return 0;
1391}
1392
1393static void nbd_dbg_close(void)
1394{
1395}
1396
1397#endif
1398
Josef Bacikfd8383f2016-09-08 12:33:37 -07001399static int nbd_init_request(void *data, struct request *rq,
1400 unsigned int hctx_idx, unsigned int request_idx,
1401 unsigned int numa_node)
1402{
1403 struct nbd_cmd *cmd = blk_mq_rq_to_pdu(rq);
Josef Bacikfd8383f2016-09-08 12:33:37 -07001404 cmd->nbd = data;
Josef Bacikfd8383f2016-09-08 12:33:37 -07001405 return 0;
1406}
1407
Eric Biggersf363b082017-03-30 13:39:16 -07001408static const struct blk_mq_ops nbd_mq_ops = {
Josef Bacikfd8383f2016-09-08 12:33:37 -07001409 .queue_rq = nbd_queue_rq,
Christoph Hellwig1e388ae2017-04-20 16:03:06 +02001410 .complete = nbd_complete_rq,
Josef Bacikfd8383f2016-09-08 12:33:37 -07001411 .init_request = nbd_init_request,
Josef Bacik0eadf372016-09-08 12:33:40 -07001412 .timeout = nbd_xmit_timeout,
Josef Bacikfd8383f2016-09-08 12:33:37 -07001413};
1414
Josef Bacikb0d91112017-02-01 16:11:40 -05001415static int nbd_dev_add(int index)
1416{
1417 struct nbd_device *nbd;
1418 struct gendisk *disk;
1419 struct request_queue *q;
1420 int err = -ENOMEM;
1421
1422 nbd = kzalloc(sizeof(struct nbd_device), GFP_KERNEL);
1423 if (!nbd)
1424 goto out;
1425
1426 disk = alloc_disk(1 << part_shift);
1427 if (!disk)
1428 goto out_free_nbd;
1429
1430 if (index >= 0) {
1431 err = idr_alloc(&nbd_index_idr, nbd, index, index + 1,
1432 GFP_KERNEL);
1433 if (err == -ENOSPC)
1434 err = -EEXIST;
1435 } else {
1436 err = idr_alloc(&nbd_index_idr, nbd, 0, 0, GFP_KERNEL);
1437 if (err >= 0)
1438 index = err;
1439 }
1440 if (err < 0)
1441 goto out_free_disk;
1442
Josef Bacike46c7282017-04-06 17:02:00 -04001443 nbd->index = index;
Josef Bacikb0d91112017-02-01 16:11:40 -05001444 nbd->disk = disk;
1445 nbd->tag_set.ops = &nbd_mq_ops;
1446 nbd->tag_set.nr_hw_queues = 1;
1447 nbd->tag_set.queue_depth = 128;
1448 nbd->tag_set.numa_node = NUMA_NO_NODE;
1449 nbd->tag_set.cmd_size = sizeof(struct nbd_cmd);
1450 nbd->tag_set.flags = BLK_MQ_F_SHOULD_MERGE |
1451 BLK_MQ_F_SG_MERGE | BLK_MQ_F_BLOCKING;
1452 nbd->tag_set.driver_data = nbd;
1453
1454 err = blk_mq_alloc_tag_set(&nbd->tag_set);
1455 if (err)
1456 goto out_free_idr;
1457
1458 q = blk_mq_init_queue(&nbd->tag_set);
1459 if (IS_ERR(q)) {
1460 err = PTR_ERR(q);
1461 goto out_free_tags;
1462 }
1463 disk->queue = q;
1464
1465 /*
1466 * Tell the block layer that we are not a rotational device
1467 */
1468 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, disk->queue);
1469 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, disk->queue);
1470 disk->queue->limits.discard_granularity = 512;
1471 blk_queue_max_discard_sectors(disk->queue, UINT_MAX);
Josef Bacikebb16d02017-04-18 16:22:51 -04001472 blk_queue_max_segment_size(disk->queue, UINT_MAX);
Josef Bacik1cc1f172017-04-20 15:47:01 -04001473 blk_queue_max_segments(disk->queue, USHRT_MAX);
Josef Bacikb0d91112017-02-01 16:11:40 -05001474 blk_queue_max_hw_sectors(disk->queue, 65536);
1475 disk->queue->limits.max_sectors = 256;
1476
Josef Bacikb0d91112017-02-01 16:11:40 -05001477 mutex_init(&nbd->config_lock);
Josef Bacik5ea8d102017-04-06 17:01:58 -04001478 refcount_set(&nbd->config_refs, 0);
Josef Bacikc6a47592017-04-06 17:02:06 -04001479 refcount_set(&nbd->refs, 1);
1480 INIT_LIST_HEAD(&nbd->list);
Josef Bacikb0d91112017-02-01 16:11:40 -05001481 disk->major = NBD_MAJOR;
1482 disk->first_minor = index << part_shift;
1483 disk->fops = &nbd_fops;
1484 disk->private_data = nbd;
1485 sprintf(disk->disk_name, "nbd%d", index);
Josef Bacikb0d91112017-02-01 16:11:40 -05001486 nbd_reset(nbd);
1487 add_disk(disk);
Josef Bacik47d902b2017-04-06 17:02:05 -04001488 nbd_total_devices++;
Josef Bacikb0d91112017-02-01 16:11:40 -05001489 return index;
1490
1491out_free_tags:
1492 blk_mq_free_tag_set(&nbd->tag_set);
1493out_free_idr:
1494 idr_remove(&nbd_index_idr, index);
1495out_free_disk:
1496 put_disk(disk);
1497out_free_nbd:
1498 kfree(nbd);
1499out:
1500 return err;
1501}
1502
Josef Bacike46c7282017-04-06 17:02:00 -04001503static int find_free_cb(int id, void *ptr, void *data)
1504{
1505 struct nbd_device *nbd = ptr;
1506 struct nbd_device **found = data;
1507
1508 if (!refcount_read(&nbd->config_refs)) {
1509 *found = nbd;
1510 return 1;
1511 }
1512 return 0;
1513}
1514
1515/* Netlink interface. */
1516static struct nla_policy nbd_attr_policy[NBD_ATTR_MAX + 1] = {
1517 [NBD_ATTR_INDEX] = { .type = NLA_U32 },
1518 [NBD_ATTR_SIZE_BYTES] = { .type = NLA_U64 },
1519 [NBD_ATTR_BLOCK_SIZE_BYTES] = { .type = NLA_U64 },
1520 [NBD_ATTR_TIMEOUT] = { .type = NLA_U64 },
1521 [NBD_ATTR_SERVER_FLAGS] = { .type = NLA_U64 },
1522 [NBD_ATTR_CLIENT_FLAGS] = { .type = NLA_U64 },
1523 [NBD_ATTR_SOCKETS] = { .type = NLA_NESTED},
Josef Bacik560bc4b2017-04-06 17:02:04 -04001524 [NBD_ATTR_DEAD_CONN_TIMEOUT] = { .type = NLA_U64 },
Josef Bacik47d902b2017-04-06 17:02:05 -04001525 [NBD_ATTR_DEVICE_LIST] = { .type = NLA_NESTED},
Josef Bacike46c7282017-04-06 17:02:00 -04001526};
1527
1528static struct nla_policy nbd_sock_policy[NBD_SOCK_MAX + 1] = {
1529 [NBD_SOCK_FD] = { .type = NLA_U32 },
1530};
1531
Josef Bacik47d902b2017-04-06 17:02:05 -04001532/* We don't use this right now since we don't parse the incoming list, but we
1533 * still want it here so userspace knows what to expect.
1534 */
1535static struct nla_policy __attribute__((unused))
1536nbd_device_policy[NBD_DEVICE_ATTR_MAX + 1] = {
1537 [NBD_DEVICE_INDEX] = { .type = NLA_U32 },
1538 [NBD_DEVICE_CONNECTED] = { .type = NLA_U8 },
1539};
1540
Josef Bacike46c7282017-04-06 17:02:00 -04001541static int nbd_genl_connect(struct sk_buff *skb, struct genl_info *info)
1542{
1543 struct nbd_device *nbd = NULL;
1544 struct nbd_config *config;
1545 int index = -1;
1546 int ret;
Josef Bacika2c97902017-04-06 17:02:07 -04001547 bool put_dev = false;
Josef Bacike46c7282017-04-06 17:02:00 -04001548
1549 if (!netlink_capable(skb, CAP_SYS_ADMIN))
1550 return -EPERM;
1551
1552 if (info->attrs[NBD_ATTR_INDEX])
1553 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1554 if (!info->attrs[NBD_ATTR_SOCKETS]) {
1555 printk(KERN_ERR "nbd: must specify at least one socket\n");
1556 return -EINVAL;
1557 }
1558 if (!info->attrs[NBD_ATTR_SIZE_BYTES]) {
1559 printk(KERN_ERR "nbd: must specify a size in bytes for the device\n");
1560 return -EINVAL;
1561 }
1562again:
1563 mutex_lock(&nbd_index_mutex);
1564 if (index == -1) {
1565 ret = idr_for_each(&nbd_index_idr, &find_free_cb, &nbd);
1566 if (ret == 0) {
1567 int new_index;
1568 new_index = nbd_dev_add(-1);
1569 if (new_index < 0) {
1570 mutex_unlock(&nbd_index_mutex);
1571 printk(KERN_ERR "nbd: failed to add new device\n");
1572 return ret;
1573 }
1574 nbd = idr_find(&nbd_index_idr, new_index);
1575 }
1576 } else {
1577 nbd = idr_find(&nbd_index_idr, index);
1578 }
Josef Bacike46c7282017-04-06 17:02:00 -04001579 if (!nbd) {
1580 printk(KERN_ERR "nbd: couldn't find device at index %d\n",
1581 index);
Josef Bacikc6a47592017-04-06 17:02:06 -04001582 mutex_unlock(&nbd_index_mutex);
Josef Bacike46c7282017-04-06 17:02:00 -04001583 return -EINVAL;
1584 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001585 if (!refcount_inc_not_zero(&nbd->refs)) {
1586 mutex_unlock(&nbd_index_mutex);
1587 if (index == -1)
1588 goto again;
1589 printk(KERN_ERR "nbd: device at index %d is going down\n",
1590 index);
1591 return -EINVAL;
1592 }
1593 mutex_unlock(&nbd_index_mutex);
Josef Bacike46c7282017-04-06 17:02:00 -04001594
1595 mutex_lock(&nbd->config_lock);
1596 if (refcount_read(&nbd->config_refs)) {
1597 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001598 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001599 if (index == -1)
1600 goto again;
1601 printk(KERN_ERR "nbd: nbd%d already in use\n", index);
1602 return -EBUSY;
1603 }
1604 if (WARN_ON(nbd->config)) {
1605 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001606 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001607 return -EINVAL;
1608 }
1609 config = nbd->config = nbd_alloc_config();
1610 if (!nbd->config) {
1611 mutex_unlock(&nbd->config_lock);
Josef Bacikc6a47592017-04-06 17:02:06 -04001612 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001613 printk(KERN_ERR "nbd: couldn't allocate config\n");
1614 return -ENOMEM;
1615 }
1616 refcount_set(&nbd->config_refs, 1);
1617 set_bit(NBD_BOUND, &config->runtime_flags);
1618
1619 if (info->attrs[NBD_ATTR_SIZE_BYTES]) {
1620 u64 bytes = nla_get_u64(info->attrs[NBD_ATTR_SIZE_BYTES]);
1621 nbd_size_set(nbd, config->blksize,
1622 div64_u64(bytes, config->blksize));
1623 }
1624 if (info->attrs[NBD_ATTR_BLOCK_SIZE_BYTES]) {
1625 u64 bsize =
1626 nla_get_u64(info->attrs[NBD_ATTR_BLOCK_SIZE_BYTES]);
1627 nbd_size_set(nbd, bsize, div64_u64(config->bytesize, bsize));
1628 }
1629 if (info->attrs[NBD_ATTR_TIMEOUT]) {
1630 u64 timeout = nla_get_u64(info->attrs[NBD_ATTR_TIMEOUT]);
1631 nbd->tag_set.timeout = timeout * HZ;
1632 blk_queue_rq_timeout(nbd->disk->queue, timeout * HZ);
1633 }
Josef Bacik560bc4b2017-04-06 17:02:04 -04001634 if (info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]) {
1635 config->dead_conn_timeout =
1636 nla_get_u64(info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]);
1637 config->dead_conn_timeout *= HZ;
1638 }
Josef Bacike46c7282017-04-06 17:02:00 -04001639 if (info->attrs[NBD_ATTR_SERVER_FLAGS])
1640 config->flags =
1641 nla_get_u64(info->attrs[NBD_ATTR_SERVER_FLAGS]);
Josef Bacika2c97902017-04-06 17:02:07 -04001642 if (info->attrs[NBD_ATTR_CLIENT_FLAGS]) {
1643 u64 flags = nla_get_u64(info->attrs[NBD_ATTR_CLIENT_FLAGS]);
1644 if (flags & NBD_CFLAG_DESTROY_ON_DISCONNECT) {
1645 set_bit(NBD_DESTROY_ON_DISCONNECT,
1646 &config->runtime_flags);
1647 put_dev = true;
1648 }
1649 }
1650
Josef Bacike46c7282017-04-06 17:02:00 -04001651 if (info->attrs[NBD_ATTR_SOCKETS]) {
1652 struct nlattr *attr;
1653 int rem, fd;
1654
1655 nla_for_each_nested(attr, info->attrs[NBD_ATTR_SOCKETS],
1656 rem) {
1657 struct nlattr *socks[NBD_SOCK_MAX+1];
1658
1659 if (nla_type(attr) != NBD_SOCK_ITEM) {
1660 printk(KERN_ERR "nbd: socks must be embedded in a SOCK_ITEM attr\n");
1661 ret = -EINVAL;
1662 goto out;
1663 }
1664 ret = nla_parse_nested(socks, NBD_SOCK_MAX, attr,
1665 nbd_sock_policy);
1666 if (ret != 0) {
1667 printk(KERN_ERR "nbd: error processing sock list\n");
1668 ret = -EINVAL;
1669 goto out;
1670 }
1671 if (!socks[NBD_SOCK_FD])
1672 continue;
1673 fd = (int)nla_get_u32(socks[NBD_SOCK_FD]);
1674 ret = nbd_add_socket(nbd, fd, true);
1675 if (ret)
1676 goto out;
1677 }
1678 }
1679 ret = nbd_start_device(nbd);
1680out:
1681 mutex_unlock(&nbd->config_lock);
1682 if (!ret) {
1683 set_bit(NBD_HAS_CONFIG_REF, &config->runtime_flags);
1684 refcount_inc(&nbd->config_refs);
1685 nbd_connect_reply(info, nbd->index);
1686 }
1687 nbd_config_put(nbd);
Josef Bacika2c97902017-04-06 17:02:07 -04001688 if (put_dev)
1689 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001690 return ret;
1691}
1692
1693static int nbd_genl_disconnect(struct sk_buff *skb, struct genl_info *info)
1694{
1695 struct nbd_device *nbd;
1696 int index;
1697
1698 if (!netlink_capable(skb, CAP_SYS_ADMIN))
1699 return -EPERM;
1700
1701 if (!info->attrs[NBD_ATTR_INDEX]) {
1702 printk(KERN_ERR "nbd: must specify an index to disconnect\n");
1703 return -EINVAL;
1704 }
1705 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1706 mutex_lock(&nbd_index_mutex);
1707 nbd = idr_find(&nbd_index_idr, index);
Josef Bacike46c7282017-04-06 17:02:00 -04001708 if (!nbd) {
Josef Bacikc6a47592017-04-06 17:02:06 -04001709 mutex_unlock(&nbd_index_mutex);
Josef Bacike46c7282017-04-06 17:02:00 -04001710 printk(KERN_ERR "nbd: couldn't find device at index %d\n",
1711 index);
1712 return -EINVAL;
1713 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001714 if (!refcount_inc_not_zero(&nbd->refs)) {
1715 mutex_unlock(&nbd_index_mutex);
1716 printk(KERN_ERR "nbd: device at index %d is going down\n",
1717 index);
1718 return -EINVAL;
1719 }
1720 mutex_unlock(&nbd_index_mutex);
1721 if (!refcount_inc_not_zero(&nbd->config_refs)) {
1722 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001723 return 0;
Josef Bacikc6a47592017-04-06 17:02:06 -04001724 }
Josef Bacike46c7282017-04-06 17:02:00 -04001725 mutex_lock(&nbd->config_lock);
1726 nbd_disconnect(nbd);
1727 mutex_unlock(&nbd->config_lock);
1728 if (test_and_clear_bit(NBD_HAS_CONFIG_REF,
1729 &nbd->config->runtime_flags))
1730 nbd_config_put(nbd);
1731 nbd_config_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04001732 nbd_put(nbd);
Josef Bacike46c7282017-04-06 17:02:00 -04001733 return 0;
1734}
1735
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001736static int nbd_genl_reconfigure(struct sk_buff *skb, struct genl_info *info)
1737{
1738 struct nbd_device *nbd = NULL;
1739 struct nbd_config *config;
1740 int index;
1741 int ret = -EINVAL;
Josef Bacika2c97902017-04-06 17:02:07 -04001742 bool put_dev = false;
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001743
1744 if (!netlink_capable(skb, CAP_SYS_ADMIN))
1745 return -EPERM;
1746
1747 if (!info->attrs[NBD_ATTR_INDEX]) {
1748 printk(KERN_ERR "nbd: must specify a device to reconfigure\n");
1749 return -EINVAL;
1750 }
1751 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1752 mutex_lock(&nbd_index_mutex);
1753 nbd = idr_find(&nbd_index_idr, index);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001754 if (!nbd) {
Josef Bacikc6a47592017-04-06 17:02:06 -04001755 mutex_unlock(&nbd_index_mutex);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001756 printk(KERN_ERR "nbd: couldn't find a device at index %d\n",
1757 index);
1758 return -EINVAL;
1759 }
Josef Bacikc6a47592017-04-06 17:02:06 -04001760 if (!refcount_inc_not_zero(&nbd->refs)) {
1761 mutex_unlock(&nbd_index_mutex);
1762 printk(KERN_ERR "nbd: device at index %d is going down\n",
1763 index);
1764 return -EINVAL;
1765 }
1766 mutex_unlock(&nbd_index_mutex);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001767
1768 if (!refcount_inc_not_zero(&nbd->config_refs)) {
1769 dev_err(nbd_to_dev(nbd),
1770 "not configured, cannot reconfigure\n");
Josef Bacikc6a47592017-04-06 17:02:06 -04001771 nbd_put(nbd);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001772 return -EINVAL;
1773 }
1774
1775 mutex_lock(&nbd->config_lock);
1776 config = nbd->config;
1777 if (!test_bit(NBD_BOUND, &config->runtime_flags) ||
1778 !nbd->task_recv) {
1779 dev_err(nbd_to_dev(nbd),
1780 "not configured, cannot reconfigure\n");
1781 goto out;
1782 }
1783
1784 if (info->attrs[NBD_ATTR_TIMEOUT]) {
1785 u64 timeout = nla_get_u64(info->attrs[NBD_ATTR_TIMEOUT]);
1786 nbd->tag_set.timeout = timeout * HZ;
1787 blk_queue_rq_timeout(nbd->disk->queue, timeout * HZ);
1788 }
Josef Bacik560bc4b2017-04-06 17:02:04 -04001789 if (info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]) {
1790 config->dead_conn_timeout =
1791 nla_get_u64(info->attrs[NBD_ATTR_DEAD_CONN_TIMEOUT]);
1792 config->dead_conn_timeout *= HZ;
1793 }
Josef Bacika2c97902017-04-06 17:02:07 -04001794 if (info->attrs[NBD_ATTR_CLIENT_FLAGS]) {
1795 u64 flags = nla_get_u64(info->attrs[NBD_ATTR_CLIENT_FLAGS]);
1796 if (flags & NBD_CFLAG_DESTROY_ON_DISCONNECT) {
1797 if (!test_and_set_bit(NBD_DESTROY_ON_DISCONNECT,
1798 &config->runtime_flags))
1799 put_dev = true;
1800 } else {
1801 if (test_and_clear_bit(NBD_DESTROY_ON_DISCONNECT,
1802 &config->runtime_flags))
1803 refcount_inc(&nbd->refs);
1804 }
1805 }
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001806
1807 if (info->attrs[NBD_ATTR_SOCKETS]) {
1808 struct nlattr *attr;
1809 int rem, fd;
1810
1811 nla_for_each_nested(attr, info->attrs[NBD_ATTR_SOCKETS],
1812 rem) {
1813 struct nlattr *socks[NBD_SOCK_MAX+1];
1814
1815 if (nla_type(attr) != NBD_SOCK_ITEM) {
1816 printk(KERN_ERR "nbd: socks must be embedded in a SOCK_ITEM attr\n");
1817 ret = -EINVAL;
1818 goto out;
1819 }
1820 ret = nla_parse_nested(socks, NBD_SOCK_MAX, attr,
1821 nbd_sock_policy);
1822 if (ret != 0) {
1823 printk(KERN_ERR "nbd: error processing sock list\n");
1824 ret = -EINVAL;
1825 goto out;
1826 }
1827 if (!socks[NBD_SOCK_FD])
1828 continue;
1829 fd = (int)nla_get_u32(socks[NBD_SOCK_FD]);
1830 ret = nbd_reconnect_socket(nbd, fd);
1831 if (ret) {
1832 if (ret == -ENOSPC)
1833 ret = 0;
1834 goto out;
1835 }
1836 dev_info(nbd_to_dev(nbd), "reconnected socket\n");
1837 }
1838 }
1839out:
1840 mutex_unlock(&nbd->config_lock);
1841 nbd_config_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04001842 nbd_put(nbd);
Josef Bacika2c97902017-04-06 17:02:07 -04001843 if (put_dev)
1844 nbd_put(nbd);
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001845 return ret;
1846}
1847
Josef Bacike46c7282017-04-06 17:02:00 -04001848static const struct genl_ops nbd_connect_genl_ops[] = {
1849 {
1850 .cmd = NBD_CMD_CONNECT,
1851 .policy = nbd_attr_policy,
1852 .doit = nbd_genl_connect,
1853 },
1854 {
1855 .cmd = NBD_CMD_DISCONNECT,
1856 .policy = nbd_attr_policy,
1857 .doit = nbd_genl_disconnect,
1858 },
Josef Bacikb7aa3d32017-04-06 17:02:01 -04001859 {
1860 .cmd = NBD_CMD_RECONFIGURE,
1861 .policy = nbd_attr_policy,
1862 .doit = nbd_genl_reconfigure,
1863 },
Josef Bacik47d902b2017-04-06 17:02:05 -04001864 {
1865 .cmd = NBD_CMD_STATUS,
1866 .policy = nbd_attr_policy,
1867 .doit = nbd_genl_status,
1868 },
Josef Bacike46c7282017-04-06 17:02:00 -04001869};
1870
Josef Bacik799f9a32017-04-06 17:02:02 -04001871static const struct genl_multicast_group nbd_mcast_grps[] = {
1872 { .name = NBD_GENL_MCAST_GROUP_NAME, },
1873};
1874
Josef Bacike46c7282017-04-06 17:02:00 -04001875static struct genl_family nbd_genl_family __ro_after_init = {
1876 .hdrsize = 0,
1877 .name = NBD_GENL_FAMILY_NAME,
1878 .version = NBD_GENL_VERSION,
1879 .module = THIS_MODULE,
1880 .ops = nbd_connect_genl_ops,
1881 .n_ops = ARRAY_SIZE(nbd_connect_genl_ops),
1882 .maxattr = NBD_ATTR_MAX,
Josef Bacik799f9a32017-04-06 17:02:02 -04001883 .mcgrps = nbd_mcast_grps,
1884 .n_mcgrps = ARRAY_SIZE(nbd_mcast_grps),
Josef Bacike46c7282017-04-06 17:02:00 -04001885};
1886
Josef Bacik47d902b2017-04-06 17:02:05 -04001887static int populate_nbd_status(struct nbd_device *nbd, struct sk_buff *reply)
1888{
1889 struct nlattr *dev_opt;
1890 u8 connected = 0;
1891 int ret;
1892
1893 /* This is a little racey, but for status it's ok. The
1894 * reason we don't take a ref here is because we can't
1895 * take a ref in the index == -1 case as we would need
1896 * to put under the nbd_index_mutex, which could
1897 * deadlock if we are configured to remove ourselves
1898 * once we're disconnected.
1899 */
1900 if (refcount_read(&nbd->config_refs))
1901 connected = 1;
1902 dev_opt = nla_nest_start(reply, NBD_DEVICE_ITEM);
1903 if (!dev_opt)
1904 return -EMSGSIZE;
1905 ret = nla_put_u32(reply, NBD_DEVICE_INDEX, nbd->index);
1906 if (ret)
1907 return -EMSGSIZE;
1908 ret = nla_put_u8(reply, NBD_DEVICE_CONNECTED,
1909 connected);
1910 if (ret)
1911 return -EMSGSIZE;
1912 nla_nest_end(reply, dev_opt);
1913 return 0;
1914}
1915
1916static int status_cb(int id, void *ptr, void *data)
1917{
1918 struct nbd_device *nbd = ptr;
1919 return populate_nbd_status(nbd, (struct sk_buff *)data);
1920}
1921
1922static int nbd_genl_status(struct sk_buff *skb, struct genl_info *info)
1923{
1924 struct nlattr *dev_list;
1925 struct sk_buff *reply;
1926 void *reply_head;
1927 size_t msg_size;
1928 int index = -1;
1929 int ret = -ENOMEM;
1930
1931 if (info->attrs[NBD_ATTR_INDEX])
1932 index = nla_get_u32(info->attrs[NBD_ATTR_INDEX]);
1933
1934 mutex_lock(&nbd_index_mutex);
1935
1936 msg_size = nla_total_size(nla_attr_size(sizeof(u32)) +
1937 nla_attr_size(sizeof(u8)));
1938 msg_size *= (index == -1) ? nbd_total_devices : 1;
1939
1940 reply = genlmsg_new(msg_size, GFP_KERNEL);
1941 if (!reply)
1942 goto out;
1943 reply_head = genlmsg_put_reply(reply, info, &nbd_genl_family, 0,
1944 NBD_CMD_STATUS);
1945 if (!reply_head) {
1946 nlmsg_free(reply);
1947 goto out;
1948 }
1949
1950 dev_list = nla_nest_start(reply, NBD_ATTR_DEVICE_LIST);
1951 if (index == -1) {
1952 ret = idr_for_each(&nbd_index_idr, &status_cb, reply);
1953 if (ret) {
1954 nlmsg_free(reply);
1955 goto out;
1956 }
1957 } else {
1958 struct nbd_device *nbd;
1959 nbd = idr_find(&nbd_index_idr, index);
1960 if (nbd) {
1961 ret = populate_nbd_status(nbd, reply);
1962 if (ret) {
1963 nlmsg_free(reply);
1964 goto out;
1965 }
1966 }
1967 }
1968 nla_nest_end(reply, dev_list);
1969 genlmsg_end(reply, reply_head);
1970 genlmsg_reply(reply, info);
1971 ret = 0;
1972out:
1973 mutex_unlock(&nbd_index_mutex);
1974 return ret;
1975}
1976
Josef Bacike46c7282017-04-06 17:02:00 -04001977static void nbd_connect_reply(struct genl_info *info, int index)
1978{
1979 struct sk_buff *skb;
1980 void *msg_head;
1981 int ret;
1982
1983 skb = genlmsg_new(nla_total_size(sizeof(u32)), GFP_KERNEL);
1984 if (!skb)
1985 return;
1986 msg_head = genlmsg_put_reply(skb, info, &nbd_genl_family, 0,
1987 NBD_CMD_CONNECT);
1988 if (!msg_head) {
1989 nlmsg_free(skb);
1990 return;
1991 }
1992 ret = nla_put_u32(skb, NBD_ATTR_INDEX, index);
1993 if (ret) {
1994 nlmsg_free(skb);
1995 return;
1996 }
1997 genlmsg_end(skb, msg_head);
1998 genlmsg_reply(skb, info);
1999}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Josef Bacik799f9a32017-04-06 17:02:02 -04002001static void nbd_mcast_index(int index)
2002{
2003 struct sk_buff *skb;
2004 void *msg_head;
2005 int ret;
2006
2007 skb = genlmsg_new(nla_total_size(sizeof(u32)), GFP_KERNEL);
2008 if (!skb)
2009 return;
2010 msg_head = genlmsg_put(skb, 0, 0, &nbd_genl_family, 0,
2011 NBD_CMD_LINK_DEAD);
2012 if (!msg_head) {
2013 nlmsg_free(skb);
2014 return;
2015 }
2016 ret = nla_put_u32(skb, NBD_ATTR_INDEX, index);
2017 if (ret) {
2018 nlmsg_free(skb);
2019 return;
2020 }
2021 genlmsg_end(skb, msg_head);
2022 genlmsg_multicast(&nbd_genl_family, skb, 0, 0, GFP_KERNEL);
2023}
2024
2025static void nbd_dead_link_work(struct work_struct *work)
2026{
2027 struct link_dead_args *args = container_of(work, struct link_dead_args,
2028 work);
2029 nbd_mcast_index(args->index);
2030 kfree(args);
2031}
2032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033static int __init nbd_init(void)
2034{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 int i;
2036
Adrian Bunk5b7b18c2006-03-25 03:07:04 -08002037 BUILD_BUG_ON(sizeof(struct nbd_request) != 28);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002039 if (max_part < 0) {
WANG Cong7742ce42011-08-19 14:48:28 +02002040 printk(KERN_ERR "nbd: max_part must be >= 0\n");
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002041 return -EINVAL;
2042 }
2043
2044 part_shift = 0;
Namhyung Kim5988ce22011-05-28 14:44:46 +02002045 if (max_part > 0) {
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002046 part_shift = fls(max_part);
2047
Namhyung Kim5988ce22011-05-28 14:44:46 +02002048 /*
2049 * Adjust max_part according to part_shift as it is exported
2050 * to user space so that user can know the max number of
2051 * partition kernel should be able to manage.
2052 *
2053 * Note that -1 is required because partition 0 is reserved
2054 * for the whole disk.
2055 */
2056 max_part = (1UL << part_shift) - 1;
2057 }
2058
Namhyung Kim3b271082011-05-28 14:44:46 +02002059 if ((1UL << part_shift) > DISK_MAX_PARTS)
2060 return -EINVAL;
2061
2062 if (nbds_max > 1UL << (MINORBITS - part_shift))
2063 return -EINVAL;
Josef Bacik124d6db2017-02-01 16:11:11 -05002064 recv_workqueue = alloc_workqueue("knbd-recv",
2065 WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
2066 if (!recv_workqueue)
2067 return -ENOMEM;
Namhyung Kim3b271082011-05-28 14:44:46 +02002068
Josef Bacik6330a2d2017-02-15 16:49:48 -05002069 if (register_blkdev(NBD_MAJOR, "nbd")) {
2070 destroy_workqueue(recv_workqueue);
Josef Bacikb0d91112017-02-01 16:11:40 -05002071 return -EIO;
Josef Bacik6330a2d2017-02-15 16:49:48 -05002072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Josef Bacike46c7282017-04-06 17:02:00 -04002074 if (genl_register_family(&nbd_genl_family)) {
2075 unregister_blkdev(NBD_MAJOR, "nbd");
2076 destroy_workqueue(recv_workqueue);
2077 return -EINVAL;
2078 }
Markus Pargmann30d53d92015-08-17 08:20:06 +02002079 nbd_dbg_init();
2080
Josef Bacikb0d91112017-02-01 16:11:40 -05002081 mutex_lock(&nbd_index_mutex);
2082 for (i = 0; i < nbds_max; i++)
2083 nbd_dev_add(i);
2084 mutex_unlock(&nbd_index_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 return 0;
Josef Bacikb0d91112017-02-01 16:11:40 -05002086}
2087
2088static int nbd_exit_cb(int id, void *ptr, void *data)
2089{
Josef Bacikc6a47592017-04-06 17:02:06 -04002090 struct list_head *list = (struct list_head *)data;
Josef Bacikb0d91112017-02-01 16:11:40 -05002091 struct nbd_device *nbd = ptr;
Josef Bacikc6a47592017-04-06 17:02:06 -04002092
Josef Bacikc6a47592017-04-06 17:02:06 -04002093 list_add_tail(&nbd->list, list);
Josef Bacikb0d91112017-02-01 16:11:40 -05002094 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
2097static void __exit nbd_cleanup(void)
2098{
Josef Bacikc6a47592017-04-06 17:02:06 -04002099 struct nbd_device *nbd;
2100 LIST_HEAD(del_list);
2101
Markus Pargmann30d53d92015-08-17 08:20:06 +02002102 nbd_dbg_close();
2103
Josef Bacikc6a47592017-04-06 17:02:06 -04002104 mutex_lock(&nbd_index_mutex);
2105 idr_for_each(&nbd_index_idr, &nbd_exit_cb, &del_list);
2106 mutex_unlock(&nbd_index_mutex);
2107
Josef Bacik60ae36a2017-04-28 09:49:19 -04002108 while (!list_empty(&del_list)) {
2109 nbd = list_first_entry(&del_list, struct nbd_device, list);
2110 list_del_init(&nbd->list);
2111 if (refcount_read(&nbd->refs) != 1)
Josef Bacikc6a47592017-04-06 17:02:06 -04002112 printk(KERN_ERR "nbd: possibly leaking a device\n");
2113 nbd_put(nbd);
Josef Bacikc6a47592017-04-06 17:02:06 -04002114 }
2115
Josef Bacikb0d91112017-02-01 16:11:40 -05002116 idr_destroy(&nbd_index_idr);
Josef Bacike46c7282017-04-06 17:02:00 -04002117 genl_unregister_family(&nbd_genl_family);
Josef Bacik124d6db2017-02-01 16:11:11 -05002118 destroy_workqueue(recv_workqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 unregister_blkdev(NBD_MAJOR, "nbd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
2122module_init(nbd_init);
2123module_exit(nbd_cleanup);
2124
2125MODULE_DESCRIPTION("Network Block Device");
2126MODULE_LICENSE("GPL");
2127
Lars Marowsky-Bree40be0c22005-05-01 08:59:07 -07002128module_param(nbds_max, int, 0444);
Laurent Vivierd71a6d72008-04-29 01:02:51 -07002129MODULE_PARM_DESC(nbds_max, "number of network block devices to initialize (default: 16)");
2130module_param(max_part, int, 0444);
2131MODULE_PARM_DESC(max_part, "number of partitions per device (default: 0)");