blob: 102d795758959f427fdbb8329367d594cfc92bfb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/block/loop.c
3 *
4 * Written by Theodore Ts'o, 3/29/93
5 *
6 * Copyright 1993 by Theodore Ts'o. Redistribution of this file is
7 * permitted under the GNU General Public License.
8 *
9 * DES encryption plus some minor changes by Werner Almesberger, 30-MAY-1993
10 * more DES encryption plus IDEA encryption by Nicholas J. Leon, June 20, 1996
11 *
12 * Modularized and updated for 1.1.16 kernel - Mitch Dsouza 28th May 1994
13 * Adapted for 1.3.59 kernel - Andries Brouwer, 1 Feb 1996
14 *
15 * Fixed do_loop_request() re-entrancy - Vincent.Renardias@waw.com Mar 20, 1997
16 *
17 * Added devfs support - Richard Gooch <rgooch@atnf.csiro.au> 16-Jan-1998
18 *
19 * Handle sparse backing files correctly - Kenn Humborg, Jun 28, 1998
20 *
21 * Loadable modules and other fixes by AK, 1998
22 *
23 * Make real block number available to downstream transfer functions, enables
24 * CBC (and relatives) mode encryption requiring unique IVs per data block.
25 * Reed H. Petty, rhp@draper.net
26 *
27 * Maximum number of loop devices now dynamic via max_loop module parameter.
28 * Russell Kroll <rkroll@exploits.org> 19990701
29 *
30 * Maximum number of loop devices when compiled-in now selectable by passing
31 * max_loop=<1-255> to the kernel on boot.
Jan Engelhardt96de0e22007-10-19 23:21:04 +020032 * Erik I. Bolsø, <eriki@himolde.no>, Oct 31, 1999
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
34 * Completely rewrite request handling to be make_request_fn style and
35 * non blocking, pushing work to a helper thread. Lots of fixes from
36 * Al Viro too.
37 * Jens Axboe <axboe@suse.de>, Nov 2000
38 *
39 * Support up to 256 loop devices
40 * Heinz Mauelshagen <mge@sistina.com>, Feb 2002
41 *
42 * Support for falling back on the write file operation when the address space
Nick Piggin4e02ed42008-10-29 14:00:55 -070043 * operations write_begin is not available on the backing filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * Anton Altaparmakov, 16 Feb 2005
45 *
46 * Still To Fix:
47 * - Advisory locking is ignored here.
48 * - Should use an own CAP_* category instead of CAP_SYS_ADMIN
49 *
50 */
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/module.h>
53#include <linux/moduleparam.h>
54#include <linux/sched.h>
55#include <linux/fs.h>
56#include <linux/file.h>
57#include <linux/stat.h>
58#include <linux/errno.h>
59#include <linux/major.h>
60#include <linux/wait.h>
61#include <linux/blkdev.h>
62#include <linux/blkpg.h>
63#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/swap.h>
65#include <linux/slab.h>
David Howells863d5b822006-08-29 19:06:14 +010066#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <linux/suspend.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070068#include <linux/freezer.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020069#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <linux/completion.h>
72#include <linux/highmem.h>
Serge E. Hallyn6c997912006-09-29 01:59:11 -070073#include <linux/kthread.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020074#include <linux/splice.h>
Milan Brozee862732010-08-23 15:16:00 +020075#include <linux/sysfs.h>
Kay Sievers770fe302011-07-31 22:08:04 +020076#include <linux/miscdevice.h>
Lukas Czernerdfaa2ef2011-08-19 14:50:46 +020077#include <linux/falloc.h>
Al Viro283e7e52015-04-03 15:21:59 -040078#include <linux/uio.h>
Adam Manzanaresd9a08a92018-05-22 10:52:19 -070079#include <linux/ioprio.h>
Dennis Zhoudb6638d2018-12-05 12:10:35 -050080#include <linux/blk-cgroup.h>
Adam Manzanaresd9a08a92018-05-22 10:52:19 -070081
Al Viro83a87612013-05-12 10:14:07 -040082#include "loop.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080084#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Kay Sievers34dd82a2011-07-31 22:08:04 +020086static DEFINE_IDR(loop_index_idr);
Tetsuo Handa310ca162018-11-08 14:01:02 +010087static DEFINE_MUTEX(loop_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Laurent Vivier476a4812008-03-26 12:11:53 +010089static int max_part;
90static int part_shift;
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static int transfer_xor(struct loop_device *lo, int cmd,
93 struct page *raw_page, unsigned raw_off,
94 struct page *loop_page, unsigned loop_off,
95 int size, sector_t real_block)
96{
Cong Wangcfd80052011-11-25 23:14:18 +080097 char *raw_buf = kmap_atomic(raw_page) + raw_off;
98 char *loop_buf = kmap_atomic(loop_page) + loop_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 char *in, *out, *key;
100 int i, keysize;
101
102 if (cmd == READ) {
103 in = raw_buf;
104 out = loop_buf;
105 } else {
106 in = loop_buf;
107 out = raw_buf;
108 }
109
110 key = lo->lo_encrypt_key;
111 keysize = lo->lo_encrypt_key_size;
112 for (i = 0; i < size; i++)
113 *out++ = *in++ ^ key[(i & 511) % keysize];
114
Cong Wangcfd80052011-11-25 23:14:18 +0800115 kunmap_atomic(loop_buf);
116 kunmap_atomic(raw_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 cond_resched();
118 return 0;
119}
120
121static int xor_init(struct loop_device *lo, const struct loop_info64 *info)
122{
123 if (unlikely(info->lo_encrypt_key_size <= 0))
124 return -EINVAL;
125 return 0;
126}
127
128static struct loop_func_table none_funcs = {
129 .number = LO_CRYPT_NONE,
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200130};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132static struct loop_func_table xor_funcs = {
133 .number = LO_CRYPT_XOR,
134 .transfer = transfer_xor,
135 .init = xor_init
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200136};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/* xfer_funcs[0] is special - its release function is never called */
139static struct loop_func_table *xfer_funcs[MAX_LO_CRYPT] = {
140 &none_funcs,
141 &xor_funcs
142};
143
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100144static loff_t get_size(loff_t offset, loff_t sizelimit, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Guo Chaob7a1da62013-02-21 15:16:50 -0800146 loff_t loopsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* Compute loopsize in bytes */
Guo Chaob7a1da62013-02-21 15:16:50 -0800149 loopsize = i_size_read(file->f_mapping->host);
150 if (offset > 0)
151 loopsize -= offset;
152 /* offset is beyond i_size, weird but possible */
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100153 if (loopsize < 0)
154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100156 if (sizelimit > 0 && sizelimit < loopsize)
157 loopsize = sizelimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 /*
159 * Unfortunately, if we want to do I/O on the device,
160 * the number of 512-byte sectors has to fit into a sector_t.
161 */
162 return loopsize >> 9;
163}
164
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100165static loff_t get_loop_size(struct loop_device *lo, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100167 return get_size(lo->lo_offset, lo->lo_sizelimit, file);
168}
169
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800170static void __loop_update_dio(struct loop_device *lo, bool dio)
171{
172 struct file *file = lo->lo_backing_file;
173 struct address_space *mapping = file->f_mapping;
174 struct inode *inode = mapping->host;
175 unsigned short sb_bsize = 0;
176 unsigned dio_align = 0;
177 bool use_dio;
178
179 if (inode->i_sb->s_bdev) {
180 sb_bsize = bdev_logical_block_size(inode->i_sb->s_bdev);
181 dio_align = sb_bsize - 1;
182 }
183
184 /*
185 * We support direct I/O only if lo_offset is aligned with the
186 * logical I/O size of backing device, and the logical block
187 * size of loop is bigger than the backing device's and the loop
188 * needn't transform transfer.
189 *
190 * TODO: the above condition may be loosed in the future, and
191 * direct I/O may be switched runtime at that time because most
Masahiro Yamada89d790a2017-02-27 14:29:01 -0800192 * of requests in sane applications should be PAGE_SIZE aligned
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800193 */
194 if (dio) {
195 if (queue_logical_block_size(lo->lo_queue) >= sb_bsize &&
196 !(lo->lo_offset & dio_align) &&
197 mapping->a_ops->direct_IO &&
198 !lo->transfer)
199 use_dio = true;
200 else
201 use_dio = false;
202 } else {
203 use_dio = false;
204 }
205
206 if (lo->use_dio == use_dio)
207 return;
208
209 /* flush dirty pages before changing direct IO */
210 vfs_fsync(file, 0);
211
212 /*
213 * The flag of LO_FLAGS_DIRECT_IO is handled similarly with
214 * LO_FLAGS_READ_ONLY, both are set from kernel, and losetup
215 * will get updated by ioctl(LOOP_GET_STATUS)
216 */
217 blk_mq_freeze_queue(lo->lo_queue);
218 lo->use_dio = use_dio;
Shaohua Li40326d82017-08-31 22:09:46 -0700219 if (use_dio) {
Bart Van Assche8b904b52018-03-07 17:10:10 -0800220 blk_queue_flag_clear(QUEUE_FLAG_NOMERGES, lo->lo_queue);
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800221 lo->lo_flags |= LO_FLAGS_DIRECT_IO;
Shaohua Li40326d82017-08-31 22:09:46 -0700222 } else {
Bart Van Assche8b904b52018-03-07 17:10:10 -0800223 blk_queue_flag_set(QUEUE_FLAG_NOMERGES, lo->lo_queue);
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800224 lo->lo_flags &= ~LO_FLAGS_DIRECT_IO;
Shaohua Li40326d82017-08-31 22:09:46 -0700225 }
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800226 blk_mq_unfreeze_queue(lo->lo_queue);
227}
228
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100229static int
Omar Sandoval1e6ec9e2017-08-23 14:54:59 -0700230figure_loop_size(struct loop_device *lo, loff_t offset, loff_t sizelimit)
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100231{
232 loff_t size = get_size(offset, sizelimit, lo->lo_backing_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 sector_t x = (sector_t)size;
Guo Chao7b0576a2013-02-21 15:16:47 -0800234 struct block_device *bdev = lo->lo_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 if (unlikely((loff_t)x != size))
237 return -EFBIG;
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100238 if (lo->lo_offset != offset)
239 lo->lo_offset = offset;
240 if (lo->lo_sizelimit != sizelimit)
241 lo->lo_sizelimit = sizelimit;
Ken Chen73285082007-05-08 00:28:20 -0700242 set_capacity(lo->lo_disk, x);
Guo Chao7b0576a2013-02-21 15:16:47 -0800243 bd_set_size(bdev, (loff_t)get_capacity(bdev->bd_disk) << 9);
244 /* let user-space know about the new size */
245 kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, KOBJ_CHANGE);
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +0100246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249static inline int
250lo_do_transfer(struct loop_device *lo, int cmd,
251 struct page *rpage, unsigned roffs,
252 struct page *lpage, unsigned loffs,
253 int size, sector_t rblock)
254{
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200255 int ret;
256
257 ret = lo->transfer(lo, cmd, rpage, roffs, lpage, loffs, size, rblock);
258 if (likely(!ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
260
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200261 printk_ratelimited(KERN_ERR
262 "loop: Transfer error at byte offset %llu, length %i.\n",
263 (unsigned long long)rblock << 9, size);
264 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Ming Lei81ba6ab2019-03-28 11:05:31 +0800267static inline void loop_iov_iter_bvec(struct iov_iter *i,
268 unsigned int direction, const struct bio_vec *bvec,
269 unsigned long nr_segs, size_t count)
270{
271 iov_iter_bvec(i, direction, bvec, nr_segs, count);
272 i->type |= ITER_BVEC_FLAG_NO_REF;
273}
274
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200275static int lo_write_bvec(struct file *file, struct bio_vec *bvec, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200277 struct iov_iter i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 ssize_t bw;
Al Viro283e7e52015-04-03 15:21:59 -0400279
Ming Lei81ba6ab2019-03-28 11:05:31 +0800280 loop_iov_iter_bvec(&i, WRITE, bvec, 1, bvec->bv_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Al Viro03d95eb2013-03-20 13:04:20 -0400282 file_start_write(file);
Christoph Hellwigabbb65892017-05-27 11:16:52 +0300283 bw = vfs_iter_write(file, &i, ppos, 0);
Al Viro03d95eb2013-03-20 13:04:20 -0400284 file_end_write(file);
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200285
286 if (likely(bw == bvec->bv_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200288
289 printk_ratelimited(KERN_ERR
290 "loop: Write error at byte offset %llu, length %i.\n",
291 (unsigned long long)*ppos, bvec->bv_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (bw >= 0)
293 bw = -EIO;
294 return bw;
295}
296
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200297static int lo_write_simple(struct loop_device *lo, struct request *rq,
298 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200300 struct bio_vec bvec;
301 struct req_iterator iter;
302 int ret = 0;
303
304 rq_for_each_segment(bvec, rq, iter) {
305 ret = lo_write_bvec(lo->lo_backing_file, &bvec, &pos);
306 if (ret < 0)
307 break;
308 cond_resched();
309 }
310
311 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200314/*
Christoph Hellwig456be142011-10-17 12:57:20 +0200315 * This is the slow, transforming version that needs to double buffer the
316 * data as it cannot do the transformations in place without having direct
317 * access to the destination pages of the backing file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200319static int lo_write_transfer(struct loop_device *lo, struct request *rq,
320 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200322 struct bio_vec bvec, b;
Ming Lei30112012014-12-31 13:22:58 +0000323 struct req_iterator iter;
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200324 struct page *page;
Kent Overstreet79886132013-11-23 17:19:00 -0800325 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200327 page = alloc_page(GFP_NOIO);
328 if (unlikely(!page))
329 return -ENOMEM;
Christoph Hellwig456be142011-10-17 12:57:20 +0200330
Ming Lei30112012014-12-31 13:22:58 +0000331 rq_for_each_segment(bvec, rq, iter) {
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200332 ret = lo_do_transfer(lo, WRITE, page, 0, bvec.bv_page,
333 bvec.bv_offset, bvec.bv_len, pos >> 9);
334 if (unlikely(ret))
335 break;
336
337 b.bv_page = page;
338 b.bv_offset = 0;
339 b.bv_len = bvec.bv_len;
340 ret = lo_write_bvec(lo->lo_backing_file, &b, &pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (ret < 0)
342 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200344
345 __free_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200349static int lo_read_simple(struct loop_device *lo, struct request *rq,
350 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Kent Overstreet79886132013-11-23 17:19:00 -0800352 struct bio_vec bvec;
Ming Lei30112012014-12-31 13:22:58 +0000353 struct req_iterator iter;
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200354 struct iov_iter i;
355 ssize_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Ming Lei30112012014-12-31 13:22:58 +0000357 rq_for_each_segment(bvec, rq, iter) {
Ming Lei81ba6ab2019-03-28 11:05:31 +0800358 loop_iov_iter_bvec(&i, READ, &bvec, 1, bvec.bv_len);
Christoph Hellwig18e97102017-05-27 11:16:51 +0300359 len = vfs_iter_read(lo->lo_backing_file, &i, &pos, 0);
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200360 if (len < 0)
361 return len;
Dave Young306df072012-02-08 22:07:19 +0100362
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200363 flush_dcache_page(bvec.bv_page);
364
365 if (len != bvec.bv_len) {
Ming Lei30112012014-12-31 13:22:58 +0000366 struct bio *bio;
367
368 __rq_for_each_bio(bio, rq)
369 zero_fill_bio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 break;
Dave Young306df072012-02-08 22:07:19 +0100371 }
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200372 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200374
Dave Young306df072012-02-08 22:07:19 +0100375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200378static int lo_read_transfer(struct loop_device *lo, struct request *rq,
379 loff_t pos)
380{
381 struct bio_vec bvec, b;
382 struct req_iterator iter;
383 struct iov_iter i;
384 struct page *page;
385 ssize_t len;
386 int ret = 0;
387
388 page = alloc_page(GFP_NOIO);
389 if (unlikely(!page))
390 return -ENOMEM;
391
392 rq_for_each_segment(bvec, rq, iter) {
393 loff_t offset = pos;
394
395 b.bv_page = page;
396 b.bv_offset = 0;
397 b.bv_len = bvec.bv_len;
398
Ming Lei81ba6ab2019-03-28 11:05:31 +0800399 loop_iov_iter_bvec(&i, READ, &b, 1, b.bv_len);
Christoph Hellwig18e97102017-05-27 11:16:51 +0300400 len = vfs_iter_read(lo->lo_backing_file, &i, &pos, 0);
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200401 if (len < 0) {
402 ret = len;
403 goto out_free_page;
404 }
405
406 ret = lo_do_transfer(lo, READ, page, 0, bvec.bv_page,
407 bvec.bv_offset, len, offset >> 9);
408 if (ret)
409 goto out_free_page;
410
411 flush_dcache_page(bvec.bv_page);
412
413 if (len != bvec.bv_len) {
414 struct bio *bio;
415
416 __rq_for_each_bio(bio, rq)
417 zero_fill_bio(bio);
418 break;
419 }
420 }
421
422 ret = 0;
423out_free_page:
424 __free_page(page);
425 return ret;
426}
427
Ming Leicf655d92014-12-31 13:22:59 +0000428static int lo_discard(struct loop_device *lo, struct request *rq, loff_t pos)
429{
430 /*
431 * We use punch hole to reclaim the free space used by the
432 * image a.k.a. discard. However we do not support discard if
433 * encryption is enabled, because it may give an attacker
434 * useful information.
435 */
436 struct file *file = lo->lo_backing_file;
437 int mode = FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE;
438 int ret;
439
440 if ((!file->f_op->fallocate) || lo->lo_encrypt_key_size) {
441 ret = -EOPNOTSUPP;
442 goto out;
443 }
444
445 ret = file->f_op->fallocate(file, mode, pos, blk_rq_bytes(rq));
446 if (unlikely(ret && ret != -EINVAL && ret != -EOPNOTSUPP))
447 ret = -EIO;
448 out:
449 return ret;
450}
451
452static int lo_req_flush(struct loop_device *lo, struct request *rq)
453{
454 struct file *file = lo->lo_backing_file;
455 int ret = vfs_fsync(file, 0);
456 if (unlikely(ret && ret != -EINVAL))
457 ret = -EIO;
458
459 return ret;
460}
461
Christoph Hellwigfe2cb292017-04-20 16:03:02 +0200462static void lo_complete_rq(struct request *rq)
Ming Leibc07c102015-08-17 10:31:51 +0800463{
Christoph Hellwigfe2cb292017-04-20 16:03:02 +0200464 struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
Jens Axboef9de14b2018-04-13 16:25:57 -0600465 blk_status_t ret = BLK_STS_OK;
Ming Leibc07c102015-08-17 10:31:51 +0800466
Jens Axboef9de14b2018-04-13 16:25:57 -0600467 if (!cmd->use_aio || cmd->ret < 0 || cmd->ret == blk_rq_bytes(rq) ||
468 req_op(rq) != REQ_OP_READ) {
469 if (cmd->ret < 0)
470 ret = BLK_STS_IOERR;
471 goto end_io;
Ming Leibc07c102015-08-17 10:31:51 +0800472 }
Christoph Hellwigfe2cb292017-04-20 16:03:02 +0200473
Jens Axboef9de14b2018-04-13 16:25:57 -0600474 /*
475 * Short READ - if we got some data, advance our request and
476 * retry it. If we got no data, end the rest with EIO.
477 */
478 if (cmd->ret) {
479 blk_update_request(rq, BLK_STS_OK, cmd->ret);
480 cmd->ret = 0;
481 blk_mq_requeue_request(rq, true);
482 } else {
483 if (cmd->use_aio) {
484 struct bio *bio = rq->bio;
485
486 while (bio) {
487 zero_fill_bio(bio);
488 bio = bio->bi_next;
489 }
490 }
491 ret = BLK_STS_IOERR;
492end_io:
493 blk_mq_end_request(rq, ret);
494 }
Ming Leibc07c102015-08-17 10:31:51 +0800495}
496
Shaohua Li92d77332017-09-01 11:15:17 -0700497static void lo_rw_aio_do_completion(struct loop_cmd *cmd)
498{
Jens Axboe1894e912018-04-13 16:24:29 -0600499 struct request *rq = blk_mq_rq_from_pdu(cmd);
500
Shaohua Li92d77332017-09-01 11:15:17 -0700501 if (!atomic_dec_and_test(&cmd->ref))
502 return;
503 kfree(cmd->bvec);
504 cmd->bvec = NULL;
Jens Axboe1894e912018-04-13 16:24:29 -0600505 blk_mq_complete_request(rq);
Shaohua Li92d77332017-09-01 11:15:17 -0700506}
507
Ming Leibc07c102015-08-17 10:31:51 +0800508static void lo_rw_aio_complete(struct kiocb *iocb, long ret, long ret2)
509{
510 struct loop_cmd *cmd = container_of(iocb, struct loop_cmd, iocb);
Ming Leibc07c102015-08-17 10:31:51 +0800511
Shaohua Lid4478e92017-09-25 13:07:22 -0600512 if (cmd->css)
513 css_put(cmd->css);
Christoph Hellwigfe2cb292017-04-20 16:03:02 +0200514 cmd->ret = ret;
Shaohua Li92d77332017-09-01 11:15:17 -0700515 lo_rw_aio_do_completion(cmd);
Ming Leibc07c102015-08-17 10:31:51 +0800516}
517
518static int lo_rw_aio(struct loop_device *lo, struct loop_cmd *cmd,
519 loff_t pos, bool rw)
520{
521 struct iov_iter iter;
Ming Lei86af5952019-02-15 19:13:17 +0800522 struct req_iterator rq_iter;
Ming Leibc07c102015-08-17 10:31:51 +0800523 struct bio_vec *bvec;
Jens Axboe1894e912018-04-13 16:24:29 -0600524 struct request *rq = blk_mq_rq_from_pdu(cmd);
Shaohua Li40326d82017-08-31 22:09:46 -0700525 struct bio *bio = rq->bio;
Ming Leibc07c102015-08-17 10:31:51 +0800526 struct file *file = lo->lo_backing_file;
Ming Lei86af5952019-02-15 19:13:17 +0800527 struct bio_vec tmp;
Shaohua Li40326d82017-08-31 22:09:46 -0700528 unsigned int offset;
Ming Lei86af5952019-02-15 19:13:17 +0800529 int nr_bvec = 0;
Ming Leibc07c102015-08-17 10:31:51 +0800530 int ret;
531
Ming Lei86af5952019-02-15 19:13:17 +0800532 rq_for_each_bvec(tmp, rq, rq_iter)
533 nr_bvec++;
Ming Leibc07c102015-08-17 10:31:51 +0800534
Ming Lei86af5952019-02-15 19:13:17 +0800535 if (rq->bio != rq->biotail) {
536
537 bvec = kmalloc_array(nr_bvec, sizeof(struct bio_vec),
Kees Cook6da2ec52018-06-12 13:55:00 -0700538 GFP_NOIO);
Shaohua Li40326d82017-08-31 22:09:46 -0700539 if (!bvec)
540 return -EIO;
541 cmd->bvec = bvec;
542
543 /*
544 * The bios of the request may be started from the middle of
545 * the 'bvec' because of bio splitting, so we can't directly
Ming Lei86af5952019-02-15 19:13:17 +0800546 * copy bio->bi_iov_vec to new bvec. The rq_for_each_bvec
Shaohua Li40326d82017-08-31 22:09:46 -0700547 * API will take care of all details for us.
548 */
Ming Lei86af5952019-02-15 19:13:17 +0800549 rq_for_each_bvec(tmp, rq, rq_iter) {
Shaohua Li40326d82017-08-31 22:09:46 -0700550 *bvec = tmp;
551 bvec++;
552 }
553 bvec = cmd->bvec;
554 offset = 0;
555 } else {
556 /*
557 * Same here, this bio may be started from the middle of the
558 * 'bvec' because of bio splitting, so offset from the bvec
559 * must be passed to iov iterator
560 */
561 offset = bio->bi_iter.bi_bvec_done;
562 bvec = __bvec_iter_bvec(bio->bi_io_vec, bio->bi_iter);
Shaohua Li40326d82017-08-31 22:09:46 -0700563 }
Shaohua Li92d77332017-09-01 11:15:17 -0700564 atomic_set(&cmd->ref, 2);
Shaohua Li40326d82017-08-31 22:09:46 -0700565
Ming Lei81ba6ab2019-03-28 11:05:31 +0800566 loop_iov_iter_bvec(&iter, rw, bvec, nr_bvec, blk_rq_bytes(rq));
Shaohua Li40326d82017-08-31 22:09:46 -0700567 iter.iov_offset = offset;
Ming Leibc07c102015-08-17 10:31:51 +0800568
569 cmd->iocb.ki_pos = pos;
570 cmd->iocb.ki_filp = file;
571 cmd->iocb.ki_complete = lo_rw_aio_complete;
572 cmd->iocb.ki_flags = IOCB_DIRECT;
Adam Manzanaresd9a08a92018-05-22 10:52:19 -0700573 cmd->iocb.ki_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_NONE, 0);
Shaohua Lid4478e92017-09-25 13:07:22 -0600574 if (cmd->css)
575 kthread_associate_blkcg(cmd->css);
Ming Leibc07c102015-08-17 10:31:51 +0800576
577 if (rw == WRITE)
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100578 ret = call_write_iter(file, &cmd->iocb, &iter);
Ming Leibc07c102015-08-17 10:31:51 +0800579 else
Miklos Szeredibb7462b2017-02-20 16:51:23 +0100580 ret = call_read_iter(file, &cmd->iocb, &iter);
Ming Leibc07c102015-08-17 10:31:51 +0800581
Shaohua Li92d77332017-09-01 11:15:17 -0700582 lo_rw_aio_do_completion(cmd);
Shaohua Lid4478e92017-09-25 13:07:22 -0600583 kthread_associate_blkcg(NULL);
Shaohua Li92d77332017-09-01 11:15:17 -0700584
Ming Leibc07c102015-08-17 10:31:51 +0800585 if (ret != -EIOCBQUEUED)
586 cmd->iocb.ki_complete(&cmd->iocb, ret, 0);
587 return 0;
588}
589
Christoph Hellwigc1c87c22016-08-04 16:10:01 +0200590static int do_req_filebacked(struct loop_device *lo, struct request *rq)
Ming Leibc07c102015-08-17 10:31:51 +0800591{
592 struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
Christoph Hellwigc1c87c22016-08-04 16:10:01 +0200593 loff_t pos = ((loff_t) blk_rq_pos(rq) << 9) + lo->lo_offset;
Ming Leibc07c102015-08-17 10:31:51 +0800594
595 /*
596 * lo_write_simple and lo_read_simple should have been covered
597 * by io submit style function like lo_rw_aio(), one blocker
598 * is that lo_read_simple() need to call flush_dcache_page after
599 * the page is written from kernel, and it isn't easy to handle
600 * this in io submit style function which submits all segments
601 * of the req at one time. And direct read IO doesn't need to
602 * run flush_dcache_page().
603 */
Christoph Hellwigc1c87c22016-08-04 16:10:01 +0200604 switch (req_op(rq)) {
605 case REQ_OP_FLUSH:
606 return lo_req_flush(lo, rq);
607 case REQ_OP_DISCARD:
Christoph Hellwig19372e22017-04-05 19:21:15 +0200608 case REQ_OP_WRITE_ZEROES:
Christoph Hellwigc1c87c22016-08-04 16:10:01 +0200609 return lo_discard(lo, rq, pos);
610 case REQ_OP_WRITE:
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200611 if (lo->transfer)
Christoph Hellwigc1c87c22016-08-04 16:10:01 +0200612 return lo_write_transfer(lo, rq, pos);
613 else if (cmd->use_aio)
614 return lo_rw_aio(lo, cmd, pos, WRITE);
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200615 else
Christoph Hellwigc1c87c22016-08-04 16:10:01 +0200616 return lo_write_simple(lo, rq, pos);
617 case REQ_OP_READ:
618 if (lo->transfer)
619 return lo_read_transfer(lo, rq, pos);
620 else if (cmd->use_aio)
621 return lo_rw_aio(lo, cmd, pos, READ);
622 else
623 return lo_read_simple(lo, rq, pos);
624 default:
625 WARN_ON_ONCE(1);
626 return -EIO;
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800630static inline void loop_update_dio(struct loop_device *lo)
631{
632 __loop_update_dio(lo, io_is_direct(lo->lo_backing_file) |
633 lo->use_dio);
634}
635
Ming Lei06f0e9e2015-05-06 12:26:24 +0800636static void loop_reread_partitions(struct loop_device *lo,
637 struct block_device *bdev)
638{
639 int rc;
640
Jan Karad57f3372018-11-08 14:01:12 +0100641 rc = blkdev_reread_part(bdev);
Ming Lei06f0e9e2015-05-06 12:26:24 +0800642 if (rc)
643 pr_warn("%s: partition scan of loop%d (%s) failed (rc=%d)\n",
644 __func__, lo->lo_number, lo->lo_file_name, rc);
645}
646
Theodore Ts'od2ac8382018-05-07 11:37:58 -0400647static inline int is_loop_device(struct file *file)
648{
649 struct inode *i = file->f_mapping->host;
650
651 return i && S_ISBLK(i->i_mode) && MAJOR(i->i_rdev) == LOOP_MAJOR;
652}
653
654static int loop_validate_file(struct file *file, struct block_device *bdev)
655{
656 struct inode *inode = file->f_mapping->host;
657 struct file *f = file;
658
659 /* Avoid recursion */
660 while (is_loop_device(f)) {
661 struct loop_device *l;
662
663 if (f->f_mapping->host->i_bdev == bdev)
664 return -EBADF;
665
666 l = f->f_mapping->host->i_bdev->bd_disk->private_data;
Dongli Zhangf7c8a412019-03-18 20:23:17 +0800667 if (l->lo_state != Lo_bound) {
Theodore Ts'od2ac8382018-05-07 11:37:58 -0400668 return -EINVAL;
669 }
670 f = l->lo_backing_file;
671 }
672 if (!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))
673 return -EINVAL;
674 return 0;
675}
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/*
678 * loop_change_fd switched the backing store of a loopback device to
679 * a new file. This is useful for operating system installers to free up
680 * the original file and in High Availability environments to switch to
681 * an alternative location for the content in case of server meltdown.
682 * This can only work if the loop device is used read-only, and if the
683 * new backing store is the same size and type as the old backing store.
684 */
Al Virobb214882008-03-02 09:29:48 -0500685static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
686 unsigned int arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Jan Kara1dded9a2018-11-08 14:01:15 +0100688 struct file *file = NULL, *old_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 int error;
Jan Kara85b0a542018-11-08 14:01:13 +0100690 bool partscan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Jan Karac28445f2018-11-08 14:01:16 +0100692 error = mutex_lock_killable(&loop_ctl_mutex);
Jan Karac3710772018-11-08 14:01:11 +0100693 if (error)
694 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 error = -ENXIO;
696 if (lo->lo_state != Lo_bound)
Jan Kara1dded9a2018-11-08 14:01:15 +0100697 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 /* the loop device has to be read-only */
700 error = -EINVAL;
701 if (!(lo->lo_flags & LO_FLAGS_READ_ONLY))
Jan Kara1dded9a2018-11-08 14:01:15 +0100702 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 error = -EBADF;
705 file = fget(arg);
706 if (!file)
Jan Kara1dded9a2018-11-08 14:01:15 +0100707 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Theodore Ts'od2ac8382018-05-07 11:37:58 -0400709 error = loop_validate_file(file, bdev);
710 if (error)
Jan Kara1dded9a2018-11-08 14:01:15 +0100711 goto out_err;
Theodore Ts'od2ac8382018-05-07 11:37:58 -0400712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 old_file = lo->lo_backing_file;
714
715 error = -EINVAL;
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /* size of the new backing store needs to be the same */
718 if (get_loop_size(lo, file) != get_loop_size(lo, old_file))
Jan Kara1dded9a2018-11-08 14:01:15 +0100719 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 /* and ... switch */
Omar Sandoval43cade802017-08-24 00:03:44 -0700722 blk_mq_freeze_queue(lo->lo_queue);
723 mapping_set_gfp_mask(old_file->f_mapping, lo->old_gfp_mask);
724 lo->lo_backing_file = file;
725 lo->old_gfp_mask = mapping_gfp_mask(file->f_mapping);
726 mapping_set_gfp_mask(file->f_mapping,
727 lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
728 loop_update_dio(lo);
729 blk_mq_unfreeze_queue(lo->lo_queue);
Jan Kara85b0a542018-11-08 14:01:13 +0100730 partscan = lo->lo_flags & LO_FLAGS_PARTSCAN;
Jan Karac3710772018-11-08 14:01:11 +0100731 mutex_unlock(&loop_ctl_mutex);
Jan Kara1dded9a2018-11-08 14:01:15 +0100732 /*
733 * We must drop file reference outside of loop_ctl_mutex as dropping
734 * the file ref can take bd_mutex which creates circular locking
735 * dependency.
736 */
737 fput(old_file);
Jan Kara85b0a542018-11-08 14:01:13 +0100738 if (partscan)
739 loop_reread_partitions(lo, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return 0;
741
Jan Kara1dded9a2018-11-08 14:01:15 +0100742out_err:
Jan Karac3710772018-11-08 14:01:11 +0100743 mutex_unlock(&loop_ctl_mutex);
Jan Kara1dded9a2018-11-08 14:01:15 +0100744 if (file)
745 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return error;
747}
748
Milan Brozee862732010-08-23 15:16:00 +0200749/* loop sysfs attributes */
750
751static ssize_t loop_attr_show(struct device *dev, char *page,
752 ssize_t (*callback)(struct loop_device *, char *))
753{
Kay Sievers34dd82a2011-07-31 22:08:04 +0200754 struct gendisk *disk = dev_to_disk(dev);
755 struct loop_device *lo = disk->private_data;
Milan Brozee862732010-08-23 15:16:00 +0200756
Kay Sievers34dd82a2011-07-31 22:08:04 +0200757 return callback(lo, page);
Milan Brozee862732010-08-23 15:16:00 +0200758}
759
760#define LOOP_ATTR_RO(_name) \
761static ssize_t loop_attr_##_name##_show(struct loop_device *, char *); \
762static ssize_t loop_attr_do_show_##_name(struct device *d, \
763 struct device_attribute *attr, char *b) \
764{ \
765 return loop_attr_show(d, b, loop_attr_##_name##_show); \
766} \
767static struct device_attribute loop_attr_##_name = \
Joe Perches5657a812018-05-24 13:38:59 -0600768 __ATTR(_name, 0444, loop_attr_do_show_##_name, NULL);
Milan Brozee862732010-08-23 15:16:00 +0200769
770static ssize_t loop_attr_backing_file_show(struct loop_device *lo, char *buf)
771{
772 ssize_t ret;
773 char *p = NULL;
774
Kay Sievers05eb0f22011-07-31 22:21:35 +0200775 spin_lock_irq(&lo->lo_lock);
Milan Brozee862732010-08-23 15:16:00 +0200776 if (lo->lo_backing_file)
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +0200777 p = file_path(lo->lo_backing_file, buf, PAGE_SIZE - 1);
Kay Sievers05eb0f22011-07-31 22:21:35 +0200778 spin_unlock_irq(&lo->lo_lock);
Milan Brozee862732010-08-23 15:16:00 +0200779
780 if (IS_ERR_OR_NULL(p))
781 ret = PTR_ERR(p);
782 else {
783 ret = strlen(p);
784 memmove(buf, p, ret);
785 buf[ret++] = '\n';
786 buf[ret] = 0;
787 }
788
789 return ret;
790}
791
792static ssize_t loop_attr_offset_show(struct loop_device *lo, char *buf)
793{
794 return sprintf(buf, "%llu\n", (unsigned long long)lo->lo_offset);
795}
796
797static ssize_t loop_attr_sizelimit_show(struct loop_device *lo, char *buf)
798{
799 return sprintf(buf, "%llu\n", (unsigned long long)lo->lo_sizelimit);
800}
801
802static ssize_t loop_attr_autoclear_show(struct loop_device *lo, char *buf)
803{
804 int autoclear = (lo->lo_flags & LO_FLAGS_AUTOCLEAR);
805
806 return sprintf(buf, "%s\n", autoclear ? "1" : "0");
807}
808
Kay Sieverse03c8dd2011-08-23 20:12:04 +0200809static ssize_t loop_attr_partscan_show(struct loop_device *lo, char *buf)
810{
811 int partscan = (lo->lo_flags & LO_FLAGS_PARTSCAN);
812
813 return sprintf(buf, "%s\n", partscan ? "1" : "0");
814}
815
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800816static ssize_t loop_attr_dio_show(struct loop_device *lo, char *buf)
817{
818 int dio = (lo->lo_flags & LO_FLAGS_DIRECT_IO);
819
820 return sprintf(buf, "%s\n", dio ? "1" : "0");
821}
822
Milan Brozee862732010-08-23 15:16:00 +0200823LOOP_ATTR_RO(backing_file);
824LOOP_ATTR_RO(offset);
825LOOP_ATTR_RO(sizelimit);
826LOOP_ATTR_RO(autoclear);
Kay Sieverse03c8dd2011-08-23 20:12:04 +0200827LOOP_ATTR_RO(partscan);
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800828LOOP_ATTR_RO(dio);
Milan Brozee862732010-08-23 15:16:00 +0200829
830static struct attribute *loop_attrs[] = {
831 &loop_attr_backing_file.attr,
832 &loop_attr_offset.attr,
833 &loop_attr_sizelimit.attr,
834 &loop_attr_autoclear.attr,
Kay Sieverse03c8dd2011-08-23 20:12:04 +0200835 &loop_attr_partscan.attr,
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800836 &loop_attr_dio.attr,
Milan Brozee862732010-08-23 15:16:00 +0200837 NULL,
838};
839
840static struct attribute_group loop_attribute_group = {
841 .name = "loop",
842 .attrs= loop_attrs,
843};
844
Tetsuo Handad3349b62018-05-04 10:58:09 -0600845static void loop_sysfs_init(struct loop_device *lo)
Milan Brozee862732010-08-23 15:16:00 +0200846{
Tetsuo Handad3349b62018-05-04 10:58:09 -0600847 lo->sysfs_inited = !sysfs_create_group(&disk_to_dev(lo->lo_disk)->kobj,
848 &loop_attribute_group);
Milan Brozee862732010-08-23 15:16:00 +0200849}
850
851static void loop_sysfs_exit(struct loop_device *lo)
852{
Tetsuo Handad3349b62018-05-04 10:58:09 -0600853 if (lo->sysfs_inited)
854 sysfs_remove_group(&disk_to_dev(lo->lo_disk)->kobj,
855 &loop_attribute_group);
Milan Brozee862732010-08-23 15:16:00 +0200856}
857
Lukas Czernerdfaa2ef2011-08-19 14:50:46 +0200858static void loop_config_discard(struct loop_device *lo)
859{
860 struct file *file = lo->lo_backing_file;
861 struct inode *inode = file->f_mapping->host;
862 struct request_queue *q = lo->lo_queue;
863
864 /*
865 * We use punch hole to reclaim the free space used by the
Olaf Hering12a64d22014-01-21 14:39:24 -0800866 * image a.k.a. discard. However we do not support discard if
Lukas Czernerdfaa2ef2011-08-19 14:50:46 +0200867 * encryption is enabled, because it may give an attacker
868 * useful information.
869 */
870 if ((!file->f_op->fallocate) ||
871 lo->lo_encrypt_key_size) {
872 q->limits.discard_granularity = 0;
873 q->limits.discard_alignment = 0;
Jens Axboe2bb4cd52015-07-14 08:15:12 -0600874 blk_queue_max_discard_sectors(q, 0);
Christoph Hellwig19372e22017-04-05 19:21:15 +0200875 blk_queue_max_write_zeroes_sectors(q, 0);
Bart Van Assche8b904b52018-03-07 17:10:10 -0800876 blk_queue_flag_clear(QUEUE_FLAG_DISCARD, q);
Lukas Czernerdfaa2ef2011-08-19 14:50:46 +0200877 return;
878 }
879
880 q->limits.discard_granularity = inode->i_sb->s_blocksize;
Lukas Czernerdfaf3c02011-12-02 14:47:03 +0100881 q->limits.discard_alignment = 0;
Hannes Reineckef2c6df72017-06-08 13:46:45 +0200882
Omar Sandoval1e6ec9e2017-08-23 14:54:59 -0700883 blk_queue_max_discard_sectors(q, UINT_MAX >> 9);
884 blk_queue_max_write_zeroes_sectors(q, UINT_MAX >> 9);
Bart Van Assche8b904b52018-03-07 17:10:10 -0800885 blk_queue_flag_set(QUEUE_FLAG_DISCARD, q);
Lukas Czernerdfaa2ef2011-08-19 14:50:46 +0200886}
887
Ming Leie03a3d72015-08-17 10:31:48 +0800888static void loop_unprepare_queue(struct loop_device *lo)
889{
Petr Mladek39891442016-10-11 13:55:20 -0700890 kthread_flush_worker(&lo->worker);
Ming Leie03a3d72015-08-17 10:31:48 +0800891 kthread_stop(lo->worker_task);
892}
893
NeilBrownb2ee7d42017-06-16 15:02:09 +1000894static int loop_kthread_worker_fn(void *worker_ptr)
895{
896 current->flags |= PF_LESS_THROTTLE;
897 return kthread_worker_fn(worker_ptr);
898}
899
Ming Leie03a3d72015-08-17 10:31:48 +0800900static int loop_prepare_queue(struct loop_device *lo)
901{
Petr Mladek39891442016-10-11 13:55:20 -0700902 kthread_init_worker(&lo->worker);
NeilBrownb2ee7d42017-06-16 15:02:09 +1000903 lo->worker_task = kthread_run(loop_kthread_worker_fn,
Ming Leie03a3d72015-08-17 10:31:48 +0800904 &lo->worker, "loop%d", lo->lo_number);
905 if (IS_ERR(lo->worker_task))
906 return -ENOMEM;
907 set_user_nice(lo->worker_task, MIN_NICE);
908 return 0;
909}
910
Holger Hoffstätte56a85fd2019-02-12 15:54:24 -0700911static void loop_update_rotational(struct loop_device *lo)
912{
913 struct file *file = lo->lo_backing_file;
914 struct inode *file_inode = file->f_mapping->host;
915 struct block_device *file_bdev = file_inode->i_sb->s_bdev;
916 struct request_queue *q = lo->lo_queue;
917 bool nonrot = true;
918
919 /* not all filesystems (e.g. tmpfs) have a sb->s_bdev */
920 if (file_bdev)
921 nonrot = blk_queue_nonrot(bdev_get_queue(file_bdev));
922
923 if (nonrot)
924 blk_queue_flag_set(QUEUE_FLAG_NONROT, q);
925 else
926 blk_queue_flag_clear(QUEUE_FLAG_NONROT, q);
927}
928
Al Virobb214882008-03-02 09:29:48 -0500929static int loop_set_fd(struct loop_device *lo, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct block_device *bdev, unsigned int arg)
931{
Theodore Ts'od2ac8382018-05-07 11:37:58 -0400932 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 struct inode *inode;
934 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 int lo_flags = 0;
936 int error;
937 loff_t size;
Jan Kara85b0a542018-11-08 14:01:13 +0100938 bool partscan;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 /* This is safe, since we have a reference from open(). */
941 __module_get(THIS_MODULE);
942
943 error = -EBADF;
944 file = fget(arg);
945 if (!file)
946 goto out;
947
Jan Karac28445f2018-11-08 14:01:16 +0100948 error = mutex_lock_killable(&loop_ctl_mutex);
Jan Kara757ecf42018-11-08 14:01:10 +0100949 if (error)
950 goto out_putf;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 error = -EBUSY;
953 if (lo->lo_state != Lo_unbound)
Jan Kara757ecf42018-11-08 14:01:10 +0100954 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Theodore Ts'od2ac8382018-05-07 11:37:58 -0400956 error = loop_validate_file(file, bdev);
957 if (error)
Jan Kara757ecf42018-11-08 14:01:10 +0100958 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 mapping = file->f_mapping;
961 inode = mapping->host;
962
Christoph Hellwig456be142011-10-17 12:57:20 +0200963 if (!(file->f_mode & FMODE_WRITE) || !(mode & FMODE_WRITE) ||
Al Viro283e7e52015-04-03 15:21:59 -0400964 !file->f_op->write_iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 lo_flags |= LO_FLAGS_READ_ONLY;
966
Christoph Hellwig456be142011-10-17 12:57:20 +0200967 error = -EFBIG;
968 size = get_loop_size(lo, file);
969 if ((loff_t)(sector_t)size != size)
Jan Kara757ecf42018-11-08 14:01:10 +0100970 goto out_unlock;
Ming Leie03a3d72015-08-17 10:31:48 +0800971 error = loop_prepare_queue(lo);
972 if (error)
Jan Kara757ecf42018-11-08 14:01:10 +0100973 goto out_unlock;
Christoph Hellwig456be142011-10-17 12:57:20 +0200974
975 error = 0;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 set_device_ro(bdev, (lo_flags & LO_FLAGS_READ_ONLY) != 0);
978
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800979 lo->use_dio = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 lo->lo_device = bdev;
981 lo->lo_flags = lo_flags;
982 lo->lo_backing_file = file;
Christoph Hellwigaa4d8612015-04-07 18:23:29 +0200983 lo->transfer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 lo->ioctl = NULL;
985 lo->lo_sizelimit = 0;
986 lo->old_gfp_mask = mapping_gfp_mask(mapping);
987 mapping_set_gfp_mask(mapping, lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
988
Nikanth Karthikesan68db1962009-03-24 12:29:54 +0100989 if (!(lo_flags & LO_FLAGS_READ_ONLY) && file->f_op->fsync)
Jens Axboe21d07272016-03-30 10:09:35 -0600990 blk_queue_write_cache(lo->lo_queue, true, false);
Nikanth Karthikesan68db1962009-03-24 12:29:54 +0100991
Holger Hoffstätte56a85fd2019-02-12 15:54:24 -0700992 loop_update_rotational(lo);
Ming Lei2e5ab5f2015-08-17 10:31:49 +0800993 loop_update_dio(lo);
Ken Chen73285082007-05-08 00:28:20 -0700994 set_capacity(lo->lo_disk, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 bd_set_size(bdev, size << 9);
Milan Brozee862732010-08-23 15:16:00 +0200996 loop_sysfs_init(lo);
David Zeuthenc3473c62010-05-03 14:08:59 +0200997 /* let user-space know about the new size */
998 kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Omar Sandoval8a0740c2017-08-24 00:03:41 -07001000 set_blocksize(bdev, S_ISBLK(inode->i_mode) ?
1001 block_size(inode->i_bdev) : PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Serge E. Hallyn6c997912006-09-29 01:59:11 -07001003 lo->lo_state = Lo_bound;
Kay Sieverse03c8dd2011-08-23 20:12:04 +02001004 if (part_shift)
1005 lo->lo_flags |= LO_FLAGS_PARTSCAN;
Jan Kara85b0a542018-11-08 14:01:13 +01001006 partscan = lo->lo_flags & LO_FLAGS_PARTSCAN;
Anatol Pomozovc1681bf2013-04-01 09:47:56 -07001007
1008 /* Grab the block_device to prevent its destruction after we
Jan Karaa2505b72018-11-08 14:01:06 +01001009 * put /dev/loopXX inode. Later in __loop_clr_fd() we bdput(bdev).
Anatol Pomozovc1681bf2013-04-01 09:47:56 -07001010 */
1011 bdgrab(bdev);
Jan Kara757ecf42018-11-08 14:01:10 +01001012 mutex_unlock(&loop_ctl_mutex);
Jan Kara85b0a542018-11-08 14:01:13 +01001013 if (partscan)
1014 loop_reread_partitions(lo, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return 0;
1016
Jan Kara757ecf42018-11-08 14:01:10 +01001017out_unlock:
1018 mutex_unlock(&loop_ctl_mutex);
1019out_putf:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 fput(file);
Jan Kara757ecf42018-11-08 14:01:10 +01001021out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 /* This is safe: open() is still holding a reference. */
1023 module_put(THIS_MODULE);
1024 return error;
1025}
1026
1027static int
1028loop_release_xfer(struct loop_device *lo)
1029{
1030 int err = 0;
1031 struct loop_func_table *xfer = lo->lo_encryption;
1032
1033 if (xfer) {
1034 if (xfer->release)
1035 err = xfer->release(lo);
1036 lo->transfer = NULL;
1037 lo->lo_encryption = NULL;
1038 module_put(xfer->owner);
1039 }
1040 return err;
1041}
1042
1043static int
1044loop_init_xfer(struct loop_device *lo, struct loop_func_table *xfer,
1045 const struct loop_info64 *i)
1046{
1047 int err = 0;
1048
1049 if (xfer) {
1050 struct module *owner = xfer->owner;
1051
1052 if (!try_module_get(owner))
1053 return -EINVAL;
1054 if (xfer->init)
1055 err = xfer->init(lo, i);
1056 if (err)
1057 module_put(owner);
1058 else
1059 lo->lo_encryption = xfer;
1060 }
1061 return err;
1062}
1063
Jan Kara0da03ca2018-11-08 14:01:14 +01001064static int __loop_clr_fd(struct loop_device *lo, bool release)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Jan Kara7ccd0792018-11-08 14:01:07 +01001066 struct file *filp = NULL;
Al Virob4e3ca12005-10-21 03:22:34 -04001067 gfp_t gfp = lo->old_gfp_mask;
Ayan George4c823cc2011-09-21 10:02:13 +02001068 struct block_device *bdev = lo->lo_device;
Jan Kara7ccd0792018-11-08 14:01:07 +01001069 int err = 0;
Jan Kara0da03ca2018-11-08 14:01:14 +01001070 bool partscan = false;
1071 int lo_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Jan Kara7ccd0792018-11-08 14:01:07 +01001073 mutex_lock(&loop_ctl_mutex);
1074 if (WARN_ON_ONCE(lo->lo_state != Lo_rundown)) {
1075 err = -ENXIO;
1076 goto out_unlock;
1077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Jan Kara7ccd0792018-11-08 14:01:07 +01001079 filp = lo->lo_backing_file;
1080 if (filp == NULL) {
1081 err = -EINVAL;
1082 goto out_unlock;
1083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Ming Leif8933662015-05-06 12:26:23 +08001085 /* freeze request queue during the transition */
1086 blk_mq_freeze_queue(lo->lo_queue);
1087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 spin_lock_irq(&lo->lo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 lo->lo_backing_file = NULL;
Kay Sievers05eb0f22011-07-31 22:21:35 +02001090 spin_unlock_irq(&lo->lo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 loop_release_xfer(lo);
1093 lo->transfer = NULL;
1094 lo->ioctl = NULL;
1095 lo->lo_device = NULL;
1096 lo->lo_encryption = NULL;
1097 lo->lo_offset = 0;
1098 lo->lo_sizelimit = 0;
1099 lo->lo_encrypt_key_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 memset(lo->lo_encrypt_key, 0, LO_KEY_SIZE);
1101 memset(lo->lo_crypt_name, 0, LO_NAME_SIZE);
1102 memset(lo->lo_file_name, 0, LO_NAME_SIZE);
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001103 blk_queue_logical_block_size(lo->lo_queue, 512);
Omar Sandovalbf093752017-09-05 14:24:47 -07001104 blk_queue_physical_block_size(lo->lo_queue, 512);
1105 blk_queue_io_min(lo->lo_queue, 512);
Anatol Pomozovc1681bf2013-04-01 09:47:56 -07001106 if (bdev) {
1107 bdput(bdev);
Al Virobb214882008-03-02 09:29:48 -05001108 invalidate_bdev(bdev);
Jeff Laytoneedffa22018-05-21 14:35:03 -04001109 bdev->bd_inode->i_mapping->wb_err = 0;
Anatol Pomozovc1681bf2013-04-01 09:47:56 -07001110 }
Ken Chen73285082007-05-08 00:28:20 -07001111 set_capacity(lo->lo_disk, 0);
Milan Broz51a0bb02010-10-27 19:51:30 -06001112 loop_sysfs_exit(lo);
David Zeuthenc3473c62010-05-03 14:08:59 +02001113 if (bdev) {
Al Virobb214882008-03-02 09:29:48 -05001114 bd_set_size(bdev, 0);
David Zeuthenc3473c62010-05-03 14:08:59 +02001115 /* let user-space know about this change */
1116 kobject_uevent(&disk_to_dev(bdev->bd_disk)->kobj, KOBJ_CHANGE);
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 mapping_set_gfp_mask(filp->f_mapping, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 /* This is safe: open() is still holding a reference. */
1120 module_put(THIS_MODULE);
Ming Leif8933662015-05-06 12:26:23 +08001121 blk_mq_unfreeze_queue(lo->lo_queue);
1122
Jan Kara0da03ca2018-11-08 14:01:14 +01001123 partscan = lo->lo_flags & LO_FLAGS_PARTSCAN && bdev;
1124 lo_number = lo->lo_number;
Jan Kara0da03ca2018-11-08 14:01:14 +01001125 loop_unprepare_queue(lo);
1126out_unlock:
1127 mutex_unlock(&loop_ctl_mutex);
1128 if (partscan) {
Jan Karad57f3372018-11-08 14:01:12 +01001129 /*
1130 * bd_mutex has been held already in release path, so don't
1131 * acquire it if this function is called in such case.
1132 *
1133 * If the reread partition isn't from release path, lo_refcnt
1134 * must be at least one and it can only become zero when the
1135 * current holder is released.
1136 */
Jan Kara0da03ca2018-11-08 14:01:14 +01001137 if (release)
Jan Karad57f3372018-11-08 14:01:12 +01001138 err = __blkdev_reread_part(bdev);
1139 else
1140 err = blkdev_reread_part(bdev);
Dongli Zhang40853d62019-02-22 22:10:19 +08001141 if (err)
1142 pr_warn("%s: partition scan of loop%d failed (rc=%d)\n",
1143 __func__, lo_number, err);
Jan Karad57f3372018-11-08 14:01:12 +01001144 /* Device is gone, no point in returning error */
1145 err = 0;
1146 }
Dongli Zhang758a58d2019-02-22 22:10:20 +08001147
1148 /*
1149 * lo->lo_state is set to Lo_unbound here after above partscan has
1150 * finished.
1151 *
1152 * There cannot be anybody else entering __loop_clr_fd() as
1153 * lo->lo_backing_file is already cleared and Lo_rundown state
1154 * protects us from all the other places trying to change the 'lo'
1155 * device.
1156 */
1157 mutex_lock(&loop_ctl_mutex);
1158 lo->lo_flags = 0;
1159 if (!part_shift)
1160 lo->lo_disk->flags |= GENHD_FL_NO_PART_SCAN;
1161 lo->lo_state = Lo_unbound;
1162 mutex_unlock(&loop_ctl_mutex);
1163
Nikanth Karthikesanf028f3b2009-03-24 12:33:41 +01001164 /*
Tetsuo Handa310ca162018-11-08 14:01:02 +01001165 * Need not hold loop_ctl_mutex to fput backing file.
1166 * Calling fput holding loop_ctl_mutex triggers a circular
Nikanth Karthikesanf028f3b2009-03-24 12:33:41 +01001167 * lock dependency possibility warning as fput can take
Tetsuo Handa310ca162018-11-08 14:01:02 +01001168 * bd_mutex which is usually taken before loop_ctl_mutex.
Nikanth Karthikesanf028f3b2009-03-24 12:33:41 +01001169 */
Jan Kara7ccd0792018-11-08 14:01:07 +01001170 if (filp)
1171 fput(filp);
1172 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
Jan Karaa2505b72018-11-08 14:01:06 +01001175static int loop_clr_fd(struct loop_device *lo)
1176{
Jan Kara7ccd0792018-11-08 14:01:07 +01001177 int err;
1178
Jan Karac28445f2018-11-08 14:01:16 +01001179 err = mutex_lock_killable(&loop_ctl_mutex);
Jan Kara7ccd0792018-11-08 14:01:07 +01001180 if (err)
1181 return err;
1182 if (lo->lo_state != Lo_bound) {
1183 mutex_unlock(&loop_ctl_mutex);
Jan Karaa2505b72018-11-08 14:01:06 +01001184 return -ENXIO;
Jan Kara7ccd0792018-11-08 14:01:07 +01001185 }
Jan Karaa2505b72018-11-08 14:01:06 +01001186 /*
1187 * If we've explicitly asked to tear down the loop device,
1188 * and it has an elevated reference count, set it for auto-teardown when
1189 * the last reference goes away. This stops $!~#$@ udev from
1190 * preventing teardown because it decided that it needs to run blkid on
1191 * the loopback device whenever they appear. xfstests is notorious for
1192 * failing tests because blkid via udev races with a losetup
1193 * <dev>/do something like mkfs/losetup -d <dev> causing the losetup -d
1194 * command to fail with EBUSY.
1195 */
1196 if (atomic_read(&lo->lo_refcnt) > 1) {
1197 lo->lo_flags |= LO_FLAGS_AUTOCLEAR;
1198 mutex_unlock(&loop_ctl_mutex);
1199 return 0;
1200 }
1201 lo->lo_state = Lo_rundown;
Jan Kara7ccd0792018-11-08 14:01:07 +01001202 mutex_unlock(&loop_ctl_mutex);
Jan Karaa2505b72018-11-08 14:01:06 +01001203
Jan Kara0da03ca2018-11-08 14:01:14 +01001204 return __loop_clr_fd(lo, false);
Jan Karaa2505b72018-11-08 14:01:06 +01001205}
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207static int
1208loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
1209{
1210 int err;
1211 struct loop_func_table *xfer;
Eric W. Biedermane4849732012-02-11 11:23:51 -08001212 kuid_t uid = current_uid();
Jan Kara85b0a542018-11-08 14:01:13 +01001213 struct block_device *bdev;
1214 bool partscan = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Jan Karac28445f2018-11-08 14:01:16 +01001216 err = mutex_lock_killable(&loop_ctl_mutex);
Jan Kara550df5fd2018-11-08 14:01:09 +01001217 if (err)
1218 return err;
David Howellsb0fafa82008-11-14 10:38:41 +11001219 if (lo->lo_encrypt_key_size &&
Eric W. Biedermane4849732012-02-11 11:23:51 -08001220 !uid_eq(lo->lo_key_owner, uid) &&
Jan Kara550df5fd2018-11-08 14:01:09 +01001221 !capable(CAP_SYS_ADMIN)) {
1222 err = -EPERM;
1223 goto out_unlock;
1224 }
1225 if (lo->lo_state != Lo_bound) {
1226 err = -ENXIO;
1227 goto out_unlock;
1228 }
1229 if ((unsigned int) info->lo_encrypt_key_size > LO_KEY_SIZE) {
1230 err = -EINVAL;
1231 goto out_unlock;
1232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Jaegeuk Kim5db470e2019-01-09 19:17:14 -08001234 if (lo->lo_offset != info->lo_offset ||
1235 lo->lo_sizelimit != info->lo_sizelimit) {
1236 sync_blockdev(lo->lo_device);
1237 kill_bdev(lo->lo_device);
1238 }
1239
Ming Leiecdd0952017-02-11 11:40:45 +08001240 /* I/O need to be drained during transfer transition */
1241 blk_mq_freeze_queue(lo->lo_queue);
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 err = loop_release_xfer(lo);
1244 if (err)
Jan Kara550df5fd2018-11-08 14:01:09 +01001245 goto out_unfreeze;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 if (info->lo_encrypt_type) {
1248 unsigned int type = info->lo_encrypt_type;
1249
Tetsuo Handa1e047ea2018-04-06 10:03:17 +09001250 if (type >= MAX_LO_CRYPT) {
1251 err = -EINVAL;
Jan Kara550df5fd2018-11-08 14:01:09 +01001252 goto out_unfreeze;
Tetsuo Handa1e047ea2018-04-06 10:03:17 +09001253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 xfer = xfer_funcs[type];
Tetsuo Handa1e047ea2018-04-06 10:03:17 +09001255 if (xfer == NULL) {
1256 err = -EINVAL;
Jan Kara550df5fd2018-11-08 14:01:09 +01001257 goto out_unfreeze;
Tetsuo Handa1e047ea2018-04-06 10:03:17 +09001258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 } else
1260 xfer = NULL;
1261
1262 err = loop_init_xfer(lo, xfer, info);
1263 if (err)
Jan Kara550df5fd2018-11-08 14:01:09 +01001264 goto out_unfreeze;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 if (lo->lo_offset != info->lo_offset ||
Omar Sandoval1e6ec9e2017-08-23 14:54:59 -07001267 lo->lo_sizelimit != info->lo_sizelimit) {
Jaegeuk Kim5db470e2019-01-09 19:17:14 -08001268 /* kill_bdev should have truncated all the pages */
1269 if (lo->lo_device->bd_inode->i_mapping->nrpages) {
1270 err = -EAGAIN;
1271 pr_warn("%s: loop%d (%s) has still dirty pages (nrpages=%lu)\n",
1272 __func__, lo->lo_number, lo->lo_file_name,
1273 lo->lo_device->bd_inode->i_mapping->nrpages);
1274 goto out_unfreeze;
1275 }
Omar Sandoval1e6ec9e2017-08-23 14:54:59 -07001276 if (figure_loop_size(lo, info->lo_offset, info->lo_sizelimit)) {
Ming Leiecdd0952017-02-11 11:40:45 +08001277 err = -EFBIG;
Jan Kara550df5fd2018-11-08 14:01:09 +01001278 goto out_unfreeze;
Ming Leiecdd0952017-02-11 11:40:45 +08001279 }
Arnd Bergmannb040ad92017-06-09 12:19:18 +02001280 }
Guo Chao541c7422013-02-21 15:16:46 -08001281
Lukas Czernerdfaa2ef2011-08-19 14:50:46 +02001282 loop_config_discard(lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 memcpy(lo->lo_file_name, info->lo_file_name, LO_NAME_SIZE);
1285 memcpy(lo->lo_crypt_name, info->lo_crypt_name, LO_NAME_SIZE);
1286 lo->lo_file_name[LO_NAME_SIZE-1] = 0;
1287 lo->lo_crypt_name[LO_NAME_SIZE-1] = 0;
1288
1289 if (!xfer)
1290 xfer = &none_funcs;
1291 lo->transfer = xfer->transfer;
1292 lo->ioctl = xfer->ioctl;
1293
David Woodhouse96c58652008-02-06 01:36:27 -08001294 if ((lo->lo_flags & LO_FLAGS_AUTOCLEAR) !=
1295 (info->lo_flags & LO_FLAGS_AUTOCLEAR))
1296 lo->lo_flags ^= LO_FLAGS_AUTOCLEAR;
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 lo->lo_encrypt_key_size = info->lo_encrypt_key_size;
1299 lo->lo_init[0] = info->lo_init[0];
1300 lo->lo_init[1] = info->lo_init[1];
1301 if (info->lo_encrypt_key_size) {
1302 memcpy(lo->lo_encrypt_key, info->lo_encrypt_key,
1303 info->lo_encrypt_key_size);
David Howellsb0fafa82008-11-14 10:38:41 +11001304 lo->lo_key_owner = uid;
Christoph Hellwigaa4d8612015-04-07 18:23:29 +02001305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Ming Lei2e5ab5f2015-08-17 10:31:49 +08001307 /* update dio if lo_offset or transfer is changed */
1308 __loop_update_dio(lo, lo->use_dio);
1309
Jan Kara550df5fd2018-11-08 14:01:09 +01001310out_unfreeze:
Ming Leiecdd0952017-02-11 11:40:45 +08001311 blk_mq_unfreeze_queue(lo->lo_queue);
Omar Sandovale02898b42017-03-01 10:42:38 -08001312
1313 if (!err && (info->lo_flags & LO_FLAGS_PARTSCAN) &&
1314 !(lo->lo_flags & LO_FLAGS_PARTSCAN)) {
1315 lo->lo_flags |= LO_FLAGS_PARTSCAN;
1316 lo->lo_disk->flags &= ~GENHD_FL_NO_PART_SCAN;
Jan Kara85b0a542018-11-08 14:01:13 +01001317 bdev = lo->lo_device;
1318 partscan = true;
Omar Sandovale02898b42017-03-01 10:42:38 -08001319 }
Jan Kara550df5fd2018-11-08 14:01:09 +01001320out_unlock:
1321 mutex_unlock(&loop_ctl_mutex);
Jan Kara85b0a542018-11-08 14:01:13 +01001322 if (partscan)
1323 loop_reread_partitions(lo, bdev);
Omar Sandovale02898b42017-03-01 10:42:38 -08001324
Ming Leiecdd0952017-02-11 11:40:45 +08001325 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326}
1327
1328static int
1329loop_get_status(struct loop_device *lo, struct loop_info64 *info)
1330{
Tetsuo Handab1ab5fa2018-11-08 14:01:01 +01001331 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 struct kstat stat;
Omar Sandoval2d1d4c12018-03-26 21:39:11 -07001333 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Jan Karac28445f2018-11-08 14:01:16 +01001335 ret = mutex_lock_killable(&loop_ctl_mutex);
Jan Kara4a5ce9b2018-11-08 14:01:08 +01001336 if (ret)
1337 return ret;
Omar Sandoval2d1d4c12018-03-26 21:39:11 -07001338 if (lo->lo_state != Lo_bound) {
Tetsuo Handa310ca162018-11-08 14:01:02 +01001339 mutex_unlock(&loop_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return -ENXIO;
Omar Sandoval2d1d4c12018-03-26 21:39:11 -07001341 }
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 memset(info, 0, sizeof(*info));
1344 info->lo_number = lo->lo_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 info->lo_offset = lo->lo_offset;
1346 info->lo_sizelimit = lo->lo_sizelimit;
1347 info->lo_flags = lo->lo_flags;
1348 memcpy(info->lo_file_name, lo->lo_file_name, LO_NAME_SIZE);
1349 memcpy(info->lo_crypt_name, lo->lo_crypt_name, LO_NAME_SIZE);
1350 info->lo_encrypt_type =
1351 lo->lo_encryption ? lo->lo_encryption->number : 0;
1352 if (lo->lo_encrypt_key_size && capable(CAP_SYS_ADMIN)) {
1353 info->lo_encrypt_key_size = lo->lo_encrypt_key_size;
1354 memcpy(info->lo_encrypt_key, lo->lo_encrypt_key,
1355 lo->lo_encrypt_key_size);
1356 }
Omar Sandoval2d1d4c12018-03-26 21:39:11 -07001357
Tetsuo Handa310ca162018-11-08 14:01:02 +01001358 /* Drop loop_ctl_mutex while we call into the filesystem. */
Tetsuo Handab1ab5fa2018-11-08 14:01:01 +01001359 path = lo->lo_backing_file->f_path;
1360 path_get(&path);
Tetsuo Handa310ca162018-11-08 14:01:02 +01001361 mutex_unlock(&loop_ctl_mutex);
Tetsuo Handab1ab5fa2018-11-08 14:01:01 +01001362 ret = vfs_getattr(&path, &stat, STATX_INO, AT_STATX_SYNC_AS_STAT);
Omar Sandoval2d1d4c12018-03-26 21:39:11 -07001363 if (!ret) {
1364 info->lo_device = huge_encode_dev(stat.dev);
1365 info->lo_inode = stat.ino;
1366 info->lo_rdevice = huge_encode_dev(stat.rdev);
1367 }
Tetsuo Handab1ab5fa2018-11-08 14:01:01 +01001368 path_put(&path);
Omar Sandoval2d1d4c12018-03-26 21:39:11 -07001369 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
1372static void
1373loop_info64_from_old(const struct loop_info *info, struct loop_info64 *info64)
1374{
1375 memset(info64, 0, sizeof(*info64));
1376 info64->lo_number = info->lo_number;
1377 info64->lo_device = info->lo_device;
1378 info64->lo_inode = info->lo_inode;
1379 info64->lo_rdevice = info->lo_rdevice;
1380 info64->lo_offset = info->lo_offset;
1381 info64->lo_sizelimit = 0;
1382 info64->lo_encrypt_type = info->lo_encrypt_type;
1383 info64->lo_encrypt_key_size = info->lo_encrypt_key_size;
1384 info64->lo_flags = info->lo_flags;
1385 info64->lo_init[0] = info->lo_init[0];
1386 info64->lo_init[1] = info->lo_init[1];
1387 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1388 memcpy(info64->lo_crypt_name, info->lo_name, LO_NAME_SIZE);
1389 else
1390 memcpy(info64->lo_file_name, info->lo_name, LO_NAME_SIZE);
1391 memcpy(info64->lo_encrypt_key, info->lo_encrypt_key, LO_KEY_SIZE);
1392}
1393
1394static int
1395loop_info64_to_old(const struct loop_info64 *info64, struct loop_info *info)
1396{
1397 memset(info, 0, sizeof(*info));
1398 info->lo_number = info64->lo_number;
1399 info->lo_device = info64->lo_device;
1400 info->lo_inode = info64->lo_inode;
1401 info->lo_rdevice = info64->lo_rdevice;
1402 info->lo_offset = info64->lo_offset;
1403 info->lo_encrypt_type = info64->lo_encrypt_type;
1404 info->lo_encrypt_key_size = info64->lo_encrypt_key_size;
1405 info->lo_flags = info64->lo_flags;
1406 info->lo_init[0] = info64->lo_init[0];
1407 info->lo_init[1] = info64->lo_init[1];
1408 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1409 memcpy(info->lo_name, info64->lo_crypt_name, LO_NAME_SIZE);
1410 else
1411 memcpy(info->lo_name, info64->lo_file_name, LO_NAME_SIZE);
1412 memcpy(info->lo_encrypt_key, info64->lo_encrypt_key, LO_KEY_SIZE);
1413
1414 /* error in case values were truncated */
1415 if (info->lo_device != info64->lo_device ||
1416 info->lo_rdevice != info64->lo_rdevice ||
1417 info->lo_inode != info64->lo_inode ||
1418 info->lo_offset != info64->lo_offset)
1419 return -EOVERFLOW;
1420
1421 return 0;
1422}
1423
1424static int
1425loop_set_status_old(struct loop_device *lo, const struct loop_info __user *arg)
1426{
1427 struct loop_info info;
1428 struct loop_info64 info64;
1429
1430 if (copy_from_user(&info, arg, sizeof (struct loop_info)))
1431 return -EFAULT;
1432 loop_info64_from_old(&info, &info64);
1433 return loop_set_status(lo, &info64);
1434}
1435
1436static int
1437loop_set_status64(struct loop_device *lo, const struct loop_info64 __user *arg)
1438{
1439 struct loop_info64 info64;
1440
1441 if (copy_from_user(&info64, arg, sizeof (struct loop_info64)))
1442 return -EFAULT;
1443 return loop_set_status(lo, &info64);
1444}
1445
1446static int
1447loop_get_status_old(struct loop_device *lo, struct loop_info __user *arg) {
1448 struct loop_info info;
1449 struct loop_info64 info64;
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001450 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Jan Kara4a5ce9b2018-11-08 14:01:08 +01001452 if (!arg)
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001453 return -EINVAL;
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001454 err = loop_get_status(lo, &info64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (!err)
1456 err = loop_info64_to_old(&info64, &info);
1457 if (!err && copy_to_user(arg, &info, sizeof(info)))
1458 err = -EFAULT;
1459
1460 return err;
1461}
1462
1463static int
1464loop_get_status64(struct loop_device *lo, struct loop_info64 __user *arg) {
1465 struct loop_info64 info64;
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001466 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Jan Kara4a5ce9b2018-11-08 14:01:08 +01001468 if (!arg)
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001469 return -EINVAL;
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001470 err = loop_get_status(lo, &info64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (!err && copy_to_user(arg, &info64, sizeof(info64)))
1472 err = -EFAULT;
1473
1474 return err;
1475}
1476
Hannes Reinecke51001b72017-06-08 13:46:44 +02001477static int loop_set_capacity(struct loop_device *lo)
J. R. Okajima53d66602009-03-31 15:23:43 -07001478{
J. R. Okajima53d66602009-03-31 15:23:43 -07001479 if (unlikely(lo->lo_state != Lo_bound))
Guo Chao7b0576a2013-02-21 15:16:47 -08001480 return -ENXIO;
J. R. Okajima53d66602009-03-31 15:23:43 -07001481
Omar Sandoval1e6ec9e2017-08-23 14:54:59 -07001482 return figure_loop_size(lo, lo->lo_offset, lo->lo_sizelimit);
J. R. Okajima53d66602009-03-31 15:23:43 -07001483}
1484
Ming Leiab1cb272015-08-17 10:31:50 +08001485static int loop_set_dio(struct loop_device *lo, unsigned long arg)
1486{
1487 int error = -ENXIO;
1488 if (lo->lo_state != Lo_bound)
1489 goto out;
1490
1491 __loop_update_dio(lo, !!arg);
1492 if (lo->use_dio == !!arg)
1493 return 0;
1494 error = -EINVAL;
1495 out:
1496 return error;
1497}
1498
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001499static int loop_set_block_size(struct loop_device *lo, unsigned long arg)
1500{
Jaegeuk Kim5db470e2019-01-09 19:17:14 -08001501 int err = 0;
1502
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001503 if (lo->lo_state != Lo_bound)
1504 return -ENXIO;
1505
1506 if (arg < 512 || arg > PAGE_SIZE || !is_power_of_2(arg))
1507 return -EINVAL;
1508
Jaegeuk Kim5db470e2019-01-09 19:17:14 -08001509 if (lo->lo_queue->limits.logical_block_size != arg) {
1510 sync_blockdev(lo->lo_device);
1511 kill_bdev(lo->lo_device);
1512 }
1513
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001514 blk_mq_freeze_queue(lo->lo_queue);
1515
Jaegeuk Kim5db470e2019-01-09 19:17:14 -08001516 /* kill_bdev should have truncated all the pages */
1517 if (lo->lo_queue->limits.logical_block_size != arg &&
1518 lo->lo_device->bd_inode->i_mapping->nrpages) {
1519 err = -EAGAIN;
1520 pr_warn("%s: loop%d (%s) has still dirty pages (nrpages=%lu)\n",
1521 __func__, lo->lo_number, lo->lo_file_name,
1522 lo->lo_device->bd_inode->i_mapping->nrpages);
1523 goto out_unfreeze;
1524 }
1525
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001526 blk_queue_logical_block_size(lo->lo_queue, arg);
Omar Sandovalbf093752017-09-05 14:24:47 -07001527 blk_queue_physical_block_size(lo->lo_queue, arg);
1528 blk_queue_io_min(lo->lo_queue, arg);
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001529 loop_update_dio(lo);
Jaegeuk Kim5db470e2019-01-09 19:17:14 -08001530out_unfreeze:
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001531 blk_mq_unfreeze_queue(lo->lo_queue);
1532
Jaegeuk Kim5db470e2019-01-09 19:17:14 -08001533 return err;
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001534}
1535
Jan Karaa1316542018-11-08 14:01:05 +01001536static int lo_simple_ioctl(struct loop_device *lo, unsigned int cmd,
1537 unsigned long arg)
1538{
1539 int err;
1540
Jan Karac28445f2018-11-08 14:01:16 +01001541 err = mutex_lock_killable(&loop_ctl_mutex);
Jan Karaa1316542018-11-08 14:01:05 +01001542 if (err)
1543 return err;
1544 switch (cmd) {
1545 case LOOP_SET_CAPACITY:
1546 err = loop_set_capacity(lo);
1547 break;
1548 case LOOP_SET_DIRECT_IO:
1549 err = loop_set_dio(lo, arg);
1550 break;
1551 case LOOP_SET_BLOCK_SIZE:
1552 err = loop_set_block_size(lo, arg);
1553 break;
1554 default:
1555 err = lo->ioctl ? lo->ioctl(lo, cmd, arg) : -EINVAL;
1556 }
1557 mutex_unlock(&loop_ctl_mutex);
1558 return err;
1559}
1560
Al Virobb214882008-03-02 09:29:48 -05001561static int lo_ioctl(struct block_device *bdev, fmode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 unsigned int cmd, unsigned long arg)
1563{
Al Virobb214882008-03-02 09:29:48 -05001564 struct loop_device *lo = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 int err;
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 switch (cmd) {
1568 case LOOP_SET_FD:
Jan Kara757ecf42018-11-08 14:01:10 +01001569 return loop_set_fd(lo, mode, bdev, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 case LOOP_CHANGE_FD:
Jan Karac3710772018-11-08 14:01:11 +01001571 return loop_change_fd(lo, bdev, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 case LOOP_CLR_FD:
Jan Kara7ccd0792018-11-08 14:01:07 +01001573 return loop_clr_fd(lo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 case LOOP_SET_STATUS:
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +01001575 err = -EPERM;
Jan Karaa1316542018-11-08 14:01:05 +01001576 if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN)) {
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +01001577 err = loop_set_status_old(lo,
1578 (struct loop_info __user *)arg);
Jan Karaa1316542018-11-08 14:01:05 +01001579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 break;
1581 case LOOP_GET_STATUS:
Jan Kara4a5ce9b2018-11-08 14:01:08 +01001582 return loop_get_status_old(lo, (struct loop_info __user *) arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 case LOOP_SET_STATUS64:
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +01001584 err = -EPERM;
Jan Karaa1316542018-11-08 14:01:05 +01001585 if ((mode & FMODE_WRITE) || capable(CAP_SYS_ADMIN)) {
Dmitry Monakhov7035b5d2011-11-16 09:21:49 +01001586 err = loop_set_status64(lo,
1587 (struct loop_info64 __user *) arg);
Jan Karaa1316542018-11-08 14:01:05 +01001588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 break;
1590 case LOOP_GET_STATUS64:
Jan Kara4a5ce9b2018-11-08 14:01:08 +01001591 return loop_get_status64(lo, (struct loop_info64 __user *) arg);
J. R. Okajima53d66602009-03-31 15:23:43 -07001592 case LOOP_SET_CAPACITY:
Ming Leiab1cb272015-08-17 10:31:50 +08001593 case LOOP_SET_DIRECT_IO:
Omar Sandoval89e4fde2017-08-24 00:03:43 -07001594 case LOOP_SET_BLOCK_SIZE:
Jan Karaa1316542018-11-08 14:01:05 +01001595 if (!(mode & FMODE_WRITE) && !capable(CAP_SYS_ADMIN))
1596 return -EPERM;
1597 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 default:
Jan Karaa1316542018-11-08 14:01:05 +01001599 err = lo_simple_ioctl(lo, cmd, arg);
1600 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
Nikanth Karthikesanf028f3b2009-03-24 12:33:41 +01001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return err;
1604}
1605
David Howells863d5b822006-08-29 19:06:14 +01001606#ifdef CONFIG_COMPAT
1607struct compat_loop_info {
1608 compat_int_t lo_number; /* ioctl r/o */
1609 compat_dev_t lo_device; /* ioctl r/o */
1610 compat_ulong_t lo_inode; /* ioctl r/o */
1611 compat_dev_t lo_rdevice; /* ioctl r/o */
1612 compat_int_t lo_offset;
1613 compat_int_t lo_encrypt_type;
1614 compat_int_t lo_encrypt_key_size; /* ioctl w/o */
1615 compat_int_t lo_flags; /* ioctl r/o */
1616 char lo_name[LO_NAME_SIZE];
1617 unsigned char lo_encrypt_key[LO_KEY_SIZE]; /* ioctl w/o */
1618 compat_ulong_t lo_init[2];
1619 char reserved[4];
1620};
1621
1622/*
1623 * Transfer 32-bit compatibility structure in userspace to 64-bit loop info
1624 * - noinlined to reduce stack space usage in main part of driver
1625 */
1626static noinline int
Al Viroba674cf2006-10-10 22:48:27 +01001627loop_info64_from_compat(const struct compat_loop_info __user *arg,
David Howells863d5b822006-08-29 19:06:14 +01001628 struct loop_info64 *info64)
1629{
1630 struct compat_loop_info info;
1631
1632 if (copy_from_user(&info, arg, sizeof(info)))
1633 return -EFAULT;
1634
1635 memset(info64, 0, sizeof(*info64));
1636 info64->lo_number = info.lo_number;
1637 info64->lo_device = info.lo_device;
1638 info64->lo_inode = info.lo_inode;
1639 info64->lo_rdevice = info.lo_rdevice;
1640 info64->lo_offset = info.lo_offset;
1641 info64->lo_sizelimit = 0;
1642 info64->lo_encrypt_type = info.lo_encrypt_type;
1643 info64->lo_encrypt_key_size = info.lo_encrypt_key_size;
1644 info64->lo_flags = info.lo_flags;
1645 info64->lo_init[0] = info.lo_init[0];
1646 info64->lo_init[1] = info.lo_init[1];
1647 if (info.lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1648 memcpy(info64->lo_crypt_name, info.lo_name, LO_NAME_SIZE);
1649 else
1650 memcpy(info64->lo_file_name, info.lo_name, LO_NAME_SIZE);
1651 memcpy(info64->lo_encrypt_key, info.lo_encrypt_key, LO_KEY_SIZE);
1652 return 0;
1653}
1654
1655/*
1656 * Transfer 64-bit loop info to 32-bit compatibility structure in userspace
1657 * - noinlined to reduce stack space usage in main part of driver
1658 */
1659static noinline int
1660loop_info64_to_compat(const struct loop_info64 *info64,
1661 struct compat_loop_info __user *arg)
1662{
1663 struct compat_loop_info info;
1664
1665 memset(&info, 0, sizeof(info));
1666 info.lo_number = info64->lo_number;
1667 info.lo_device = info64->lo_device;
1668 info.lo_inode = info64->lo_inode;
1669 info.lo_rdevice = info64->lo_rdevice;
1670 info.lo_offset = info64->lo_offset;
1671 info.lo_encrypt_type = info64->lo_encrypt_type;
1672 info.lo_encrypt_key_size = info64->lo_encrypt_key_size;
1673 info.lo_flags = info64->lo_flags;
1674 info.lo_init[0] = info64->lo_init[0];
1675 info.lo_init[1] = info64->lo_init[1];
1676 if (info.lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1677 memcpy(info.lo_name, info64->lo_crypt_name, LO_NAME_SIZE);
1678 else
1679 memcpy(info.lo_name, info64->lo_file_name, LO_NAME_SIZE);
1680 memcpy(info.lo_encrypt_key, info64->lo_encrypt_key, LO_KEY_SIZE);
1681
1682 /* error in case values were truncated */
1683 if (info.lo_device != info64->lo_device ||
1684 info.lo_rdevice != info64->lo_rdevice ||
1685 info.lo_inode != info64->lo_inode ||
1686 info.lo_offset != info64->lo_offset ||
1687 info.lo_init[0] != info64->lo_init[0] ||
1688 info.lo_init[1] != info64->lo_init[1])
1689 return -EOVERFLOW;
1690
1691 if (copy_to_user(arg, &info, sizeof(info)))
1692 return -EFAULT;
1693 return 0;
1694}
1695
1696static int
1697loop_set_status_compat(struct loop_device *lo,
1698 const struct compat_loop_info __user *arg)
1699{
1700 struct loop_info64 info64;
1701 int ret;
1702
1703 ret = loop_info64_from_compat(arg, &info64);
1704 if (ret < 0)
1705 return ret;
1706 return loop_set_status(lo, &info64);
1707}
1708
1709static int
1710loop_get_status_compat(struct loop_device *lo,
1711 struct compat_loop_info __user *arg)
1712{
1713 struct loop_info64 info64;
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001714 int err;
David Howells863d5b822006-08-29 19:06:14 +01001715
Jan Kara4a5ce9b2018-11-08 14:01:08 +01001716 if (!arg)
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001717 return -EINVAL;
Omar Sandovalbdac616db2018-04-06 09:57:03 -07001718 err = loop_get_status(lo, &info64);
David Howells863d5b822006-08-29 19:06:14 +01001719 if (!err)
1720 err = loop_info64_to_compat(&info64, arg);
1721 return err;
1722}
1723
Al Virobb214882008-03-02 09:29:48 -05001724static int lo_compat_ioctl(struct block_device *bdev, fmode_t mode,
1725 unsigned int cmd, unsigned long arg)
David Howells863d5b822006-08-29 19:06:14 +01001726{
Al Virobb214882008-03-02 09:29:48 -05001727 struct loop_device *lo = bdev->bd_disk->private_data;
David Howells863d5b822006-08-29 19:06:14 +01001728 int err;
1729
David Howells863d5b822006-08-29 19:06:14 +01001730 switch(cmd) {
1731 case LOOP_SET_STATUS:
Jan Kara550df5fd2018-11-08 14:01:09 +01001732 err = loop_set_status_compat(lo,
1733 (const struct compat_loop_info __user *)arg);
David Howells863d5b822006-08-29 19:06:14 +01001734 break;
1735 case LOOP_GET_STATUS:
Jan Kara4a5ce9b2018-11-08 14:01:08 +01001736 err = loop_get_status_compat(lo,
1737 (struct compat_loop_info __user *)arg);
David Howells863d5b822006-08-29 19:06:14 +01001738 break;
J. R. Okajima53d66602009-03-31 15:23:43 -07001739 case LOOP_SET_CAPACITY:
David Howells863d5b822006-08-29 19:06:14 +01001740 case LOOP_CLR_FD:
1741 case LOOP_GET_STATUS64:
1742 case LOOP_SET_STATUS64:
1743 arg = (unsigned long) compat_ptr(arg);
Gustavo A. R. Silvad893ff82018-07-02 12:52:06 -05001744 /* fall through */
David Howells863d5b822006-08-29 19:06:14 +01001745 case LOOP_SET_FD:
1746 case LOOP_CHANGE_FD:
Evan Green9fea4b32018-07-02 16:03:46 -07001747 case LOOP_SET_BLOCK_SIZE:
Al Virobb214882008-03-02 09:29:48 -05001748 err = lo_ioctl(bdev, mode, cmd, arg);
David Howells863d5b822006-08-29 19:06:14 +01001749 break;
1750 default:
1751 err = -ENOIOCTLCMD;
1752 break;
1753 }
David Howells863d5b822006-08-29 19:06:14 +01001754 return err;
1755}
1756#endif
1757
Al Virobb214882008-03-02 09:29:48 -05001758static int lo_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Kay Sievers770fe302011-07-31 22:08:04 +02001760 struct loop_device *lo;
Jan Kara0a42e992018-11-08 14:01:04 +01001761 int err;
Kay Sievers770fe302011-07-31 22:08:04 +02001762
Jan Kara0a42e992018-11-08 14:01:04 +01001763 err = mutex_lock_killable(&loop_ctl_mutex);
1764 if (err)
1765 return err;
Kay Sievers770fe302011-07-31 22:08:04 +02001766 lo = bdev->bd_disk->private_data;
1767 if (!lo) {
1768 err = -ENXIO;
1769 goto out;
1770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Ming Leif8933662015-05-06 12:26:23 +08001772 atomic_inc(&lo->lo_refcnt);
Kay Sievers770fe302011-07-31 22:08:04 +02001773out:
Jan Kara0a42e992018-11-08 14:01:04 +01001774 mutex_unlock(&loop_ctl_mutex);
Kay Sievers770fe302011-07-31 22:08:04 +02001775 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
1777
Jan Kara967d1dc2018-11-08 14:01:03 +01001778static void lo_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Jan Kara967d1dc2018-11-08 14:01:03 +01001780 struct loop_device *lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Jan Kara0a42e992018-11-08 14:01:04 +01001782 mutex_lock(&loop_ctl_mutex);
Jan Kara967d1dc2018-11-08 14:01:03 +01001783 lo = disk->private_data;
Ming Leif8933662015-05-06 12:26:23 +08001784 if (atomic_dec_return(&lo->lo_refcnt))
Jan Kara0a42e992018-11-08 14:01:04 +01001785 goto out_unlock;
Ming Leif8933662015-05-06 12:26:23 +08001786
Milan Broz14f27932008-12-12 14:48:27 +01001787 if (lo->lo_flags & LO_FLAGS_AUTOCLEAR) {
Jan Karaa2505b72018-11-08 14:01:06 +01001788 if (lo->lo_state != Lo_bound)
1789 goto out_unlock;
1790 lo->lo_state = Lo_rundown;
Jan Kara7ccd0792018-11-08 14:01:07 +01001791 mutex_unlock(&loop_ctl_mutex);
Milan Broz14f27932008-12-12 14:48:27 +01001792 /*
1793 * In autoclear mode, stop the loop thread
1794 * and remove configuration after last close.
1795 */
Jan Kara0da03ca2018-11-08 14:01:14 +01001796 __loop_clr_fd(lo, true);
Jan Kara7ccd0792018-11-08 14:01:07 +01001797 return;
Omar Sandoval43cade802017-08-24 00:03:44 -07001798 } else if (lo->lo_state == Lo_bound) {
Milan Broz14f27932008-12-12 14:48:27 +01001799 /*
1800 * Otherwise keep thread (if running) and config,
1801 * but flush possible ongoing bios in thread.
1802 */
Omar Sandoval43cade802017-08-24 00:03:44 -07001803 blk_mq_freeze_queue(lo->lo_queue);
1804 blk_mq_unfreeze_queue(lo->lo_queue);
Milan Broz14f27932008-12-12 14:48:27 +01001805 }
David Woodhouse96c58652008-02-06 01:36:27 -08001806
Jan Kara0a42e992018-11-08 14:01:04 +01001807out_unlock:
Tetsuo Handa310ca162018-11-08 14:01:02 +01001808 mutex_unlock(&loop_ctl_mutex);
Linus Torvaldsae665012018-01-05 16:26:00 -08001809}
1810
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07001811static const struct block_device_operations lo_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 .owner = THIS_MODULE,
Al Virobb214882008-03-02 09:29:48 -05001813 .open = lo_open,
1814 .release = lo_release,
1815 .ioctl = lo_ioctl,
David Howells863d5b822006-08-29 19:06:14 +01001816#ifdef CONFIG_COMPAT
Al Virobb214882008-03-02 09:29:48 -05001817 .compat_ioctl = lo_compat_ioctl,
David Howells863d5b822006-08-29 19:06:14 +01001818#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819};
1820
1821/*
1822 * And now the modules code and kernel interface.
1823 */
Ken Chen73285082007-05-08 00:28:20 -07001824static int max_loop;
Joe Perches5657a812018-05-24 13:38:59 -06001825module_param(max_loop, int, 0444);
Ken Chena47653f2007-06-08 13:46:44 -07001826MODULE_PARM_DESC(max_loop, "Maximum number of loop devices");
Joe Perches5657a812018-05-24 13:38:59 -06001827module_param(max_part, int, 0444);
Laurent Vivier476a4812008-03-26 12:11:53 +01001828MODULE_PARM_DESC(max_part, "Maximum number of partitions per loop device");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829MODULE_LICENSE("GPL");
1830MODULE_ALIAS_BLOCKDEV_MAJOR(LOOP_MAJOR);
1831
1832int loop_register_transfer(struct loop_func_table *funcs)
1833{
1834 unsigned int n = funcs->number;
1835
1836 if (n >= MAX_LO_CRYPT || xfer_funcs[n])
1837 return -EINVAL;
1838 xfer_funcs[n] = funcs;
1839 return 0;
1840}
1841
Kay Sievers34dd82a2011-07-31 22:08:04 +02001842static int unregister_transfer_cb(int id, void *ptr, void *data)
1843{
1844 struct loop_device *lo = ptr;
1845 struct loop_func_table *xfer = data;
1846
Tetsuo Handa310ca162018-11-08 14:01:02 +01001847 mutex_lock(&loop_ctl_mutex);
Kay Sievers34dd82a2011-07-31 22:08:04 +02001848 if (lo->lo_encryption == xfer)
1849 loop_release_xfer(lo);
Tetsuo Handa310ca162018-11-08 14:01:02 +01001850 mutex_unlock(&loop_ctl_mutex);
Kay Sievers34dd82a2011-07-31 22:08:04 +02001851 return 0;
1852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854int loop_unregister_transfer(int number)
1855{
1856 unsigned int n = number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 struct loop_func_table *xfer;
1858
1859 if (n == 0 || n >= MAX_LO_CRYPT || (xfer = xfer_funcs[n]) == NULL)
1860 return -EINVAL;
1861
1862 xfer_funcs[n] = NULL;
Kay Sievers34dd82a2011-07-31 22:08:04 +02001863 idr_for_each(&loop_index_idr, &unregister_transfer_cb, xfer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return 0;
1865}
1866
1867EXPORT_SYMBOL(loop_register_transfer);
1868EXPORT_SYMBOL(loop_unregister_transfer);
1869
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001870static blk_status_t loop_queue_rq(struct blk_mq_hw_ctx *hctx,
Ming Leib5dd2f62014-12-31 13:22:57 +00001871 const struct blk_mq_queue_data *bd)
1872{
Jens Axboe1894e912018-04-13 16:24:29 -06001873 struct request *rq = bd->rq;
1874 struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
1875 struct loop_device *lo = rq->q->queuedata;
Ming Leib5dd2f62014-12-31 13:22:57 +00001876
Jens Axboe1894e912018-04-13 16:24:29 -06001877 blk_mq_start_request(rq);
Ming Leib5dd2f62014-12-31 13:22:57 +00001878
Ming Leif4aa4c72015-05-05 19:49:54 +08001879 if (lo->lo_state != Lo_bound)
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001880 return BLK_STS_IOERR;
Ming Leif4aa4c72015-05-05 19:49:54 +08001881
Jens Axboe1894e912018-04-13 16:24:29 -06001882 switch (req_op(rq)) {
Christoph Hellwigf0225ca2016-08-04 16:10:00 +02001883 case REQ_OP_FLUSH:
1884 case REQ_OP_DISCARD:
Christoph Hellwig19372e22017-04-05 19:21:15 +02001885 case REQ_OP_WRITE_ZEROES:
Ming Leibc07c102015-08-17 10:31:51 +08001886 cmd->use_aio = false;
Christoph Hellwigf0225ca2016-08-04 16:10:00 +02001887 break;
1888 default:
1889 cmd->use_aio = lo->use_dio;
1890 break;
1891 }
Ming Leibc07c102015-08-17 10:31:51 +08001892
Shaohua Lid4478e92017-09-25 13:07:22 -06001893 /* always use the first bio's css */
Shaohua Li0b508bc2017-09-26 11:02:12 -07001894#ifdef CONFIG_BLK_CGROUP
Dennis Zhoudb6638d2018-12-05 12:10:35 -05001895 if (cmd->use_aio && rq->bio && rq->bio->bi_blkg) {
1896 cmd->css = &bio_blkcg(rq->bio)->css;
Shaohua Lid4478e92017-09-25 13:07:22 -06001897 css_get(cmd->css);
1898 } else
1899#endif
1900 cmd->css = NULL;
Petr Mladek39891442016-10-11 13:55:20 -07001901 kthread_queue_work(&lo->worker, &cmd->work);
Ming Leib5dd2f62014-12-31 13:22:57 +00001902
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001903 return BLK_STS_OK;
Ming Leib5dd2f62014-12-31 13:22:57 +00001904}
1905
1906static void loop_handle_cmd(struct loop_cmd *cmd)
1907{
Jens Axboe1894e912018-04-13 16:24:29 -06001908 struct request *rq = blk_mq_rq_from_pdu(cmd);
1909 const bool write = op_is_write(req_op(rq));
1910 struct loop_device *lo = rq->q->queuedata;
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001911 int ret = 0;
Ming Leib5dd2f62014-12-31 13:22:57 +00001912
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001913 if (write && (lo->lo_flags & LO_FLAGS_READ_ONLY)) {
1914 ret = -EIO;
Ming Leib5dd2f62014-12-31 13:22:57 +00001915 goto failed;
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001916 }
Ming Leib5dd2f62014-12-31 13:22:57 +00001917
Jens Axboe1894e912018-04-13 16:24:29 -06001918 ret = do_req_filebacked(lo, rq);
Ming Leib5dd2f62014-12-31 13:22:57 +00001919 failed:
Ming Leibc07c102015-08-17 10:31:51 +08001920 /* complete non-aio request */
Christoph Hellwigfe2cb292017-04-20 16:03:02 +02001921 if (!cmd->use_aio || ret) {
1922 cmd->ret = ret ? -EIO : 0;
Jens Axboe1894e912018-04-13 16:24:29 -06001923 blk_mq_complete_request(rq);
Christoph Hellwigfe2cb292017-04-20 16:03:02 +02001924 }
Ming Leib5dd2f62014-12-31 13:22:57 +00001925}
1926
Ming Leie03a3d72015-08-17 10:31:48 +08001927static void loop_queue_work(struct kthread_work *work)
Ming Leib5dd2f62014-12-31 13:22:57 +00001928{
1929 struct loop_cmd *cmd =
Ming Leie03a3d72015-08-17 10:31:48 +08001930 container_of(work, struct loop_cmd, work);
Ming Leib5dd2f62014-12-31 13:22:57 +00001931
1932 loop_handle_cmd(cmd);
1933}
1934
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001935static int loop_init_request(struct blk_mq_tag_set *set, struct request *rq,
1936 unsigned int hctx_idx, unsigned int numa_node)
Ming Leib5dd2f62014-12-31 13:22:57 +00001937{
1938 struct loop_cmd *cmd = blk_mq_rq_to_pdu(rq);
1939
Petr Mladek39891442016-10-11 13:55:20 -07001940 kthread_init_work(&cmd->work, loop_queue_work);
Ming Leib5dd2f62014-12-31 13:22:57 +00001941 return 0;
1942}
1943
Eric Biggersf363b082017-03-30 13:39:16 -07001944static const struct blk_mq_ops loop_mq_ops = {
Ming Leib5dd2f62014-12-31 13:22:57 +00001945 .queue_rq = loop_queue_rq,
Ming Leib5dd2f62014-12-31 13:22:57 +00001946 .init_request = loop_init_request,
Christoph Hellwigfe2cb292017-04-20 16:03:02 +02001947 .complete = lo_complete_rq,
Ming Leib5dd2f62014-12-31 13:22:57 +00001948};
1949
Kay Sievers34dd82a2011-07-31 22:08:04 +02001950static int loop_add(struct loop_device **l, int i)
Ken Chen73285082007-05-08 00:28:20 -07001951{
1952 struct loop_device *lo;
1953 struct gendisk *disk;
Kay Sievers34dd82a2011-07-31 22:08:04 +02001954 int err;
Ken Chen73285082007-05-08 00:28:20 -07001955
Silva Paulo68d740d2012-07-14 15:39:58 -07001956 err = -ENOMEM;
Ken Chen73285082007-05-08 00:28:20 -07001957 lo = kzalloc(sizeof(*lo), GFP_KERNEL);
Silva Paulo68d740d2012-07-14 15:39:58 -07001958 if (!lo)
Ken Chen73285082007-05-08 00:28:20 -07001959 goto out;
Kay Sievers34dd82a2011-07-31 22:08:04 +02001960
Mikulas Patockaef7e7c82013-10-15 14:14:38 -06001961 lo->lo_state = Lo_unbound;
1962
Tejun Heoc718aa62013-02-27 17:03:58 -08001963 /* allocate id, if @id >= 0, we're requesting that specific id */
Kay Sievers34dd82a2011-07-31 22:08:04 +02001964 if (i >= 0) {
Tejun Heoc718aa62013-02-27 17:03:58 -08001965 err = idr_alloc(&loop_index_idr, lo, i, i + 1, GFP_KERNEL);
1966 if (err == -ENOSPC)
Kay Sievers34dd82a2011-07-31 22:08:04 +02001967 err = -EEXIST;
Kay Sievers34dd82a2011-07-31 22:08:04 +02001968 } else {
Tejun Heoc718aa62013-02-27 17:03:58 -08001969 err = idr_alloc(&loop_index_idr, lo, 0, 0, GFP_KERNEL);
Kay Sievers34dd82a2011-07-31 22:08:04 +02001970 }
1971 if (err < 0)
1972 goto out_free_dev;
Tejun Heoc718aa62013-02-27 17:03:58 -08001973 i = err;
Ken Chen73285082007-05-08 00:28:20 -07001974
Wei Yongjun183cfb52013-03-22 08:59:19 -06001975 err = -ENOMEM;
Ming Leib5dd2f62014-12-31 13:22:57 +00001976 lo->tag_set.ops = &loop_mq_ops;
1977 lo->tag_set.nr_hw_queues = 1;
1978 lo->tag_set.queue_depth = 128;
1979 lo->tag_set.numa_node = NUMA_NO_NODE;
1980 lo->tag_set.cmd_size = sizeof(struct loop_cmd);
Ming Lei56d18f62019-02-15 19:13:24 +08001981 lo->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
Ming Leib5dd2f62014-12-31 13:22:57 +00001982 lo->tag_set.driver_data = lo;
1983
1984 err = blk_mq_alloc_tag_set(&lo->tag_set);
1985 if (err)
Mikulas Patocka3ec981e2013-10-14 12:12:24 -04001986 goto out_free_idr;
Ken Chen73285082007-05-08 00:28:20 -07001987
Ming Leib5dd2f62014-12-31 13:22:57 +00001988 lo->lo_queue = blk_mq_init_queue(&lo->tag_set);
Chengguang Xu38a34992018-12-16 17:35:00 +08001989 if (IS_ERR(lo->lo_queue)) {
Ming Leib5dd2f62014-12-31 13:22:57 +00001990 err = PTR_ERR(lo->lo_queue);
1991 goto out_cleanup_tags;
1992 }
Mikulas Patockaef7e7c82013-10-15 14:14:38 -06001993 lo->lo_queue->queuedata = lo;
1994
Shaohua Li54bb0ad2017-08-31 22:09:45 -07001995 blk_queue_max_hw_sectors(lo->lo_queue, BLK_DEF_MAX_SECTORS);
Shaohua Li40326d82017-08-31 22:09:46 -07001996
Ming Lei5b5e20f2015-08-17 10:31:47 +08001997 /*
Shaohua Li40326d82017-08-31 22:09:46 -07001998 * By default, we do buffer IO, so it doesn't make sense to enable
1999 * merge because the I/O submitted to backing file is handled page by
2000 * page. For directio mode, merge does help to dispatch bigger request
2001 * to underlayer disk. We will enable merge once directio is enabled.
Ming Lei5b5e20f2015-08-17 10:31:47 +08002002 */
Bart Van Assche8b904b52018-03-07 17:10:10 -08002003 blk_queue_flag_set(QUEUE_FLAG_NOMERGES, lo->lo_queue);
Ming Lei5b5e20f2015-08-17 10:31:47 +08002004
Minfei Huang7a649732016-06-07 10:05:15 +08002005 err = -ENOMEM;
Laurent Vivier476a4812008-03-26 12:11:53 +01002006 disk = lo->lo_disk = alloc_disk(1 << part_shift);
Ken Chen73285082007-05-08 00:28:20 -07002007 if (!disk)
2008 goto out_free_queue;
2009
Kay Sieverse03c8dd2011-08-23 20:12:04 +02002010 /*
2011 * Disable partition scanning by default. The in-kernel partition
2012 * scanning can be requested individually per-device during its
2013 * setup. Userspace can always add and remove partitions from all
2014 * devices. The needed partition minors are allocated from the
2015 * extended minor space, the main loop device numbers will continue
2016 * to match the loop minors, regardless of the number of partitions
2017 * used.
2018 *
2019 * If max_part is given, partition scanning is globally enabled for
2020 * all loop devices. The minors for the main loop devices will be
2021 * multiples of max_part.
2022 *
2023 * Note: Global-for-all-devices, set-only-at-init, read-only module
2024 * parameteters like 'max_loop' and 'max_part' make things needlessly
2025 * complicated, are too static, inflexible and may surprise
2026 * userspace tools. Parameters like this in general should be avoided.
2027 */
2028 if (!part_shift)
2029 disk->flags |= GENHD_FL_NO_PART_SCAN;
2030 disk->flags |= GENHD_FL_EXT_DEVT;
Ming Leif8933662015-05-06 12:26:23 +08002031 atomic_set(&lo->lo_refcnt, 0);
Ken Chen73285082007-05-08 00:28:20 -07002032 lo->lo_number = i;
Ken Chen73285082007-05-08 00:28:20 -07002033 spin_lock_init(&lo->lo_lock);
2034 disk->major = LOOP_MAJOR;
Laurent Vivier476a4812008-03-26 12:11:53 +01002035 disk->first_minor = i << part_shift;
Ken Chen73285082007-05-08 00:28:20 -07002036 disk->fops = &lo_fops;
2037 disk->private_data = lo;
2038 disk->queue = lo->lo_queue;
2039 sprintf(disk->disk_name, "loop%d", i);
Kay Sievers34dd82a2011-07-31 22:08:04 +02002040 add_disk(disk);
2041 *l = lo;
2042 return lo->lo_number;
Ken Chen73285082007-05-08 00:28:20 -07002043
2044out_free_queue:
2045 blk_cleanup_queue(lo->lo_queue);
Ming Leib5dd2f62014-12-31 13:22:57 +00002046out_cleanup_tags:
2047 blk_mq_free_tag_set(&lo->tag_set);
Mikulas Patocka3ec981e2013-10-14 12:12:24 -04002048out_free_idr:
2049 idr_remove(&loop_index_idr, i);
Ken Chen73285082007-05-08 00:28:20 -07002050out_free_dev:
2051 kfree(lo);
2052out:
Kay Sievers34dd82a2011-07-31 22:08:04 +02002053 return err;
Ken Chen73285082007-05-08 00:28:20 -07002054}
2055
Kay Sievers34dd82a2011-07-31 22:08:04 +02002056static void loop_remove(struct loop_device *lo)
Ken Chen73285082007-05-08 00:28:20 -07002057{
NeilBrown6cd18e72015-04-27 14:12:22 +10002058 del_gendisk(lo->lo_disk);
Bart Van Assche0fa8ebd2018-02-28 10:15:28 -08002059 blk_cleanup_queue(lo->lo_queue);
Ming Leib5dd2f62014-12-31 13:22:57 +00002060 blk_mq_free_tag_set(&lo->tag_set);
Ken Chen73285082007-05-08 00:28:20 -07002061 put_disk(lo->lo_disk);
Ken Chen73285082007-05-08 00:28:20 -07002062 kfree(lo);
2063}
2064
Kay Sievers770fe302011-07-31 22:08:04 +02002065static int find_free_cb(int id, void *ptr, void *data)
Ken Chena47653f2007-06-08 13:46:44 -07002066{
Kay Sievers770fe302011-07-31 22:08:04 +02002067 struct loop_device *lo = ptr;
2068 struct loop_device **l = data;
Ken Chena47653f2007-06-08 13:46:44 -07002069
Kay Sievers770fe302011-07-31 22:08:04 +02002070 if (lo->lo_state == Lo_unbound) {
2071 *l = lo;
2072 return 1;
Ken Chena47653f2007-06-08 13:46:44 -07002073 }
Kay Sievers770fe302011-07-31 22:08:04 +02002074 return 0;
Ken Chena47653f2007-06-08 13:46:44 -07002075}
2076
Kay Sievers34dd82a2011-07-31 22:08:04 +02002077static int loop_lookup(struct loop_device **l, int i)
Ken Chena47653f2007-06-08 13:46:44 -07002078{
Ken Chena47653f2007-06-08 13:46:44 -07002079 struct loop_device *lo;
Kay Sievers34dd82a2011-07-31 22:08:04 +02002080 int ret = -ENODEV;
Ken Chena47653f2007-06-08 13:46:44 -07002081
Kay Sievers770fe302011-07-31 22:08:04 +02002082 if (i < 0) {
2083 int err;
2084
2085 err = idr_for_each(&loop_index_idr, &find_free_cb, &lo);
2086 if (err == 1) {
2087 *l = lo;
2088 ret = lo->lo_number;
2089 }
2090 goto out;
2091 }
2092
2093 /* lookup and return a specific i */
Kay Sievers34dd82a2011-07-31 22:08:04 +02002094 lo = idr_find(&loop_index_idr, i);
Ken Chena47653f2007-06-08 13:46:44 -07002095 if (lo) {
Kay Sievers34dd82a2011-07-31 22:08:04 +02002096 *l = lo;
2097 ret = lo->lo_number;
Ken Chena47653f2007-06-08 13:46:44 -07002098 }
Kay Sievers770fe302011-07-31 22:08:04 +02002099out:
Kay Sievers34dd82a2011-07-31 22:08:04 +02002100 return ret;
Ken Chena47653f2007-06-08 13:46:44 -07002101}
2102
Ken Chen73285082007-05-08 00:28:20 -07002103static struct kobject *loop_probe(dev_t dev, int *part, void *data)
2104{
Al Viro705962c2007-05-13 05:52:32 -04002105 struct loop_device *lo;
Al Viro07002e92007-05-12 16:23:15 -04002106 struct kobject *kobj;
Kay Sievers34dd82a2011-07-31 22:08:04 +02002107 int err;
Ken Chen73285082007-05-08 00:28:20 -07002108
Jan Kara0a42e992018-11-08 14:01:04 +01002109 mutex_lock(&loop_ctl_mutex);
Kay Sievers34dd82a2011-07-31 22:08:04 +02002110 err = loop_lookup(&lo, MINOR(dev) >> part_shift);
2111 if (err < 0)
2112 err = loop_add(&lo, MINOR(dev) >> part_shift);
2113 if (err < 0)
Mikulas Patockaa207f592013-10-14 12:13:24 -04002114 kobj = NULL;
Kay Sievers34dd82a2011-07-31 22:08:04 +02002115 else
Jan Kara3079c222018-02-26 13:01:38 +01002116 kobj = get_disk_and_module(lo->lo_disk);
Jan Kara0a42e992018-11-08 14:01:04 +01002117 mutex_unlock(&loop_ctl_mutex);
Ken Chen73285082007-05-08 00:28:20 -07002118
2119 *part = 0;
Al Viro07002e92007-05-12 16:23:15 -04002120 return kobj;
Ken Chen73285082007-05-08 00:28:20 -07002121}
2122
Kay Sievers770fe302011-07-31 22:08:04 +02002123static long loop_control_ioctl(struct file *file, unsigned int cmd,
2124 unsigned long parm)
2125{
2126 struct loop_device *lo;
Jan Kara0a42e992018-11-08 14:01:04 +01002127 int ret;
Kay Sievers770fe302011-07-31 22:08:04 +02002128
Jan Kara0a42e992018-11-08 14:01:04 +01002129 ret = mutex_lock_killable(&loop_ctl_mutex);
2130 if (ret)
2131 return ret;
2132
2133 ret = -ENOSYS;
Kay Sievers770fe302011-07-31 22:08:04 +02002134 switch (cmd) {
2135 case LOOP_CTL_ADD:
2136 ret = loop_lookup(&lo, parm);
2137 if (ret >= 0) {
2138 ret = -EEXIST;
2139 break;
2140 }
2141 ret = loop_add(&lo, parm);
2142 break;
2143 case LOOP_CTL_REMOVE:
2144 ret = loop_lookup(&lo, parm);
2145 if (ret < 0)
2146 break;
Kay Sievers770fe302011-07-31 22:08:04 +02002147 if (lo->lo_state != Lo_unbound) {
2148 ret = -EBUSY;
Kay Sievers770fe302011-07-31 22:08:04 +02002149 break;
2150 }
Ming Leif8933662015-05-06 12:26:23 +08002151 if (atomic_read(&lo->lo_refcnt) > 0) {
Kay Sievers770fe302011-07-31 22:08:04 +02002152 ret = -EBUSY;
Kay Sievers770fe302011-07-31 22:08:04 +02002153 break;
2154 }
2155 lo->lo_disk->private_data = NULL;
Kay Sievers770fe302011-07-31 22:08:04 +02002156 idr_remove(&loop_index_idr, lo->lo_number);
2157 loop_remove(lo);
2158 break;
2159 case LOOP_CTL_GET_FREE:
2160 ret = loop_lookup(&lo, -1);
2161 if (ret >= 0)
2162 break;
2163 ret = loop_add(&lo, -1);
2164 }
Jan Kara0a42e992018-11-08 14:01:04 +01002165 mutex_unlock(&loop_ctl_mutex);
Kay Sievers770fe302011-07-31 22:08:04 +02002166
2167 return ret;
2168}
2169
2170static const struct file_operations loop_ctl_fops = {
2171 .open = nonseekable_open,
2172 .unlocked_ioctl = loop_control_ioctl,
2173 .compat_ioctl = loop_control_ioctl,
2174 .owner = THIS_MODULE,
2175 .llseek = noop_llseek,
2176};
2177
2178static struct miscdevice loop_misc = {
2179 .minor = LOOP_CTRL_MINOR,
2180 .name = "loop-control",
2181 .fops = &loop_ctl_fops,
2182};
2183
2184MODULE_ALIAS_MISCDEV(LOOP_CTRL_MINOR);
2185MODULE_ALIAS("devname:loop-control");
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187static int __init loop_init(void)
2188{
Ken Chena47653f2007-06-08 13:46:44 -07002189 int i, nr;
2190 unsigned long range;
Kay Sievers34dd82a2011-07-31 22:08:04 +02002191 struct loop_device *lo;
Kay Sievers770fe302011-07-31 22:08:04 +02002192 int err;
Ken Chena47653f2007-06-08 13:46:44 -07002193
Laurent Vivier476a4812008-03-26 12:11:53 +01002194 part_shift = 0;
Namhyung Kimac04fee2011-05-27 07:59:25 +02002195 if (max_part > 0) {
Laurent Vivier476a4812008-03-26 12:11:53 +01002196 part_shift = fls(max_part);
2197
Namhyung Kimac04fee2011-05-27 07:59:25 +02002198 /*
2199 * Adjust max_part according to part_shift as it is exported
2200 * to user space so that user can decide correct minor number
2201 * if [s]he want to create more devices.
2202 *
2203 * Note that -1 is required because partition 0 is reserved
2204 * for the whole disk.
2205 */
2206 max_part = (1UL << part_shift) - 1;
2207 }
2208
Guo Chaob1a66502013-02-21 15:16:49 -08002209 if ((1UL << part_shift) > DISK_MAX_PARTS) {
2210 err = -EINVAL;
Anton Volkova8c1d062017-08-07 15:37:50 +03002211 goto err_out;
Guo Chaob1a66502013-02-21 15:16:49 -08002212 }
Namhyung Kim78f4bb32011-05-24 16:48:54 +02002213
Guo Chaob1a66502013-02-21 15:16:49 -08002214 if (max_loop > 1UL << (MINORBITS - part_shift)) {
2215 err = -EINVAL;
Anton Volkova8c1d062017-08-07 15:37:50 +03002216 goto err_out;
Guo Chaob1a66502013-02-21 15:16:49 -08002217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Kay Sieversd134b002011-07-31 22:08:04 +02002219 /*
2220 * If max_loop is specified, create that many devices upfront.
2221 * This also becomes a hard limit. If max_loop is not specified,
2222 * create CONFIG_BLK_DEV_LOOP_MIN_COUNT loop devices at module
2223 * init time. Loop devices can be requested on-demand with the
2224 * /dev/loop-control interface, or be instantiated by accessing
2225 * a 'dead' device node.
2226 */
Ken Chen73285082007-05-08 00:28:20 -07002227 if (max_loop) {
Ken Chena47653f2007-06-08 13:46:44 -07002228 nr = max_loop;
Namhyung Kima1c15c52011-05-24 16:48:55 +02002229 range = max_loop << part_shift;
Ken Chena47653f2007-06-08 13:46:44 -07002230 } else {
Kay Sieversd134b002011-07-31 22:08:04 +02002231 nr = CONFIG_BLK_DEV_LOOP_MIN_COUNT;
Namhyung Kima1c15c52011-05-24 16:48:55 +02002232 range = 1UL << MINORBITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
Ken Chena47653f2007-06-08 13:46:44 -07002234
Anton Volkova8c1d062017-08-07 15:37:50 +03002235 err = misc_register(&loop_misc);
2236 if (err < 0)
2237 goto err_out;
2238
2239
Guo Chaob1a66502013-02-21 15:16:49 -08002240 if (register_blkdev(LOOP_MAJOR, "loop")) {
2241 err = -EIO;
2242 goto misc_out;
2243 }
Ken Chena47653f2007-06-08 13:46:44 -07002244
Ken Chena47653f2007-06-08 13:46:44 -07002245 blk_register_region(MKDEV(LOOP_MAJOR, 0), range,
2246 THIS_MODULE, loop_probe, NULL, NULL);
2247
Kay Sieversd134b002011-07-31 22:08:04 +02002248 /* pre-create number of devices given by config or max_loop */
Jan Kara0a42e992018-11-08 14:01:04 +01002249 mutex_lock(&loop_ctl_mutex);
Kay Sievers34dd82a2011-07-31 22:08:04 +02002250 for (i = 0; i < nr; i++)
2251 loop_add(&lo, i);
Jan Kara0a42e992018-11-08 14:01:04 +01002252 mutex_unlock(&loop_ctl_mutex);
Kay Sievers34dd82a2011-07-31 22:08:04 +02002253
Ken Chen73285082007-05-08 00:28:20 -07002254 printk(KERN_INFO "loop: module loaded\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 return 0;
Guo Chaob1a66502013-02-21 15:16:49 -08002256
2257misc_out:
2258 misc_deregister(&loop_misc);
Anton Volkova8c1d062017-08-07 15:37:50 +03002259err_out:
Guo Chaob1a66502013-02-21 15:16:49 -08002260 return err;
Kay Sievers34dd82a2011-07-31 22:08:04 +02002261}
Ken Chena47653f2007-06-08 13:46:44 -07002262
Kay Sievers34dd82a2011-07-31 22:08:04 +02002263static int loop_exit_cb(int id, void *ptr, void *data)
2264{
2265 struct loop_device *lo = ptr;
Ken Chena47653f2007-06-08 13:46:44 -07002266
Kay Sievers34dd82a2011-07-31 22:08:04 +02002267 loop_remove(lo);
2268 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269}
2270
Ken Chen73285082007-05-08 00:28:20 -07002271static void __exit loop_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272{
Ken Chena47653f2007-06-08 13:46:44 -07002273 unsigned long range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Namhyung Kima1c15c52011-05-24 16:48:55 +02002275 range = max_loop ? max_loop << part_shift : 1UL << MINORBITS;
Ken Chena47653f2007-06-08 13:46:44 -07002276
Kay Sievers34dd82a2011-07-31 22:08:04 +02002277 idr_for_each(&loop_index_idr, &loop_exit_cb, NULL);
Kay Sievers34dd82a2011-07-31 22:08:04 +02002278 idr_destroy(&loop_index_idr);
Ken Chen73285082007-05-08 00:28:20 -07002279
Ken Chena47653f2007-06-08 13:46:44 -07002280 blk_unregister_region(MKDEV(LOOP_MAJOR, 0), range);
Akinobu Mita00d59402007-07-17 04:03:46 -07002281 unregister_blkdev(LOOP_MAJOR, "loop");
Kay Sievers770fe302011-07-31 22:08:04 +02002282
2283 misc_deregister(&loop_misc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284}
2285
2286module_init(loop_init);
2287module_exit(loop_exit);
2288
2289#ifndef MODULE
2290static int __init max_loop_setup(char *str)
2291{
2292 max_loop = simple_strtol(str, NULL, 0);
2293 return 1;
2294}
2295
2296__setup("max_loop=", max_loop_setup);
2297#endif